MediaWiki  1.34.0
LegacyLogger.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Logger;
22 
23 use DateTimeZone;
24 use Error;
25 use Exception;
26 use WikiMap;
27 use MWDebug;
29 use Psr\Log\AbstractLogger;
30 use Psr\Log\LogLevel;
31 use Throwable;
32 use UDPTransport;
33 
51 class LegacyLogger extends AbstractLogger {
52 
56  protected $channel;
57 
64  protected static $levelMapping = [
65  LogLevel::DEBUG => 100,
66  LogLevel::INFO => 200,
67  LogLevel::NOTICE => 250,
68  LogLevel::WARNING => 300,
69  LogLevel::ERROR => 400,
70  LogLevel::CRITICAL => 500,
71  LogLevel::ALERT => 550,
72  LogLevel::EMERGENCY => 600,
73  ];
74 
78  protected static $dbChannels = [
79  'DBQuery' => true,
80  'DBConnection' => true
81  ];
82 
86  public function __construct( $channel ) {
87  $this->channel = $channel;
88  }
89 
98  public function log( $level, $message, array $context = [] ) {
99  global $wgDBerrorLog;
100 
101  if ( is_string( $level ) ) {
102  $level = self::$levelMapping[$level];
103  }
104  if ( $this->channel === 'DBQuery'
105  && $level === self::$levelMapping[LogLevel::DEBUG]
106  && isset( $context['sql'] )
107  ) {
108  // Also give the query information to the MWDebug tools
109  $enabled = MWDebug::query(
110  $context['sql'],
111  $context['method'],
112  $context['runtime'],
113  $context['db_host']
114  );
115  if ( $enabled ) {
116  // If we the toolbar was enabled, return early so that we don't
117  // also log the query to the main debug output.
118  return;
119  }
120  }
121 
122  // If this is a DB-related error, and the site has $wgDBerrorLog
123  // configured, rewrite the channel as wfLogDBError instead.
124  // Likewise, if the site does not use $wgDBerrorLog, it should
125  // configurable like any other channel via $wgDebugLogGroups
126  // or $wgMWLoggerDefaultSpi.
127  if ( isset( self::$dbChannels[$this->channel] )
128  && $level >= self::$levelMapping[LogLevel::ERROR]
129  && $wgDBerrorLog
130  ) {
131  // Format and write DB errors to the legacy locations
132  $effectiveChannel = 'wfLogDBError';
133  } else {
134  $effectiveChannel = $this->channel;
135  }
136 
137  if ( self::shouldEmit( $effectiveChannel, $message, $level, $context ) ) {
138  $text = self::format( $effectiveChannel, $message, $context );
139  $destination = self::destination( $effectiveChannel, $message, $context );
140  self::emit( $text, $destination );
141  }
142  if ( !isset( $context['private'] ) || !$context['private'] ) {
143  // Add to debug toolbar if not marked as "private"
144  MWDebug::debugMsg( $message, [ 'channel' => $this->channel ] + $context );
145  }
146  }
147 
158  public static function shouldEmit( $channel, $message, $level, $context ) {
160 
161  if ( is_string( $level ) ) {
162  $level = self::$levelMapping[$level];
163  }
164 
165  if ( $channel === 'wfLogDBError' ) {
166  // wfLogDBError messages are emitted if a database log location is
167  // specfied.
168  $shouldEmit = (bool)$wgDBerrorLog;
169 
170  } elseif ( $channel === 'wfDebug' ) {
171  // wfDebug messages are emitted if a catch all logging file has
172  // been specified. Checked explicitly so that 'private' flagged
173  // messages are not discarded by unset $wgDebugLogGroups channel
174  // handling below.
175  $shouldEmit = $wgDebugLogFile != '';
176 
177  } elseif ( isset( $wgDebugLogGroups[$channel] ) ) {
178  $logConfig = $wgDebugLogGroups[$channel];
179 
180  if ( is_array( $logConfig ) ) {
181  $shouldEmit = true;
182  if ( isset( $logConfig['sample'] ) ) {
183  // Emit randomly with a 1 in 'sample' chance for each message.
184  $shouldEmit = mt_rand( 1, $logConfig['sample'] ) === 1;
185  }
186 
187  if ( isset( $logConfig['level'] ) ) {
188  $shouldEmit = $level >= self::$levelMapping[$logConfig['level']];
189  }
190  } else {
191  // Emit unless the config value is explictly false.
192  $shouldEmit = $logConfig !== false;
193  }
194 
195  } elseif ( isset( $context['private'] ) && $context['private'] ) {
196  // Don't emit if the message didn't match previous checks based on
197  // the channel and the event is marked as private. This check
198  // discards messages sent via wfDebugLog() with dest == 'private'
199  // and no explicit wgDebugLogGroups configuration.
200  $shouldEmit = false;
201  } else {
202  // Default return value is the same as the historic wfDebug
203  // method: emit if $wgDebugLogFile has been set.
204  $shouldEmit = $wgDebugLogFile != '';
205  }
206 
207  return $shouldEmit;
208  }
209 
222  public static function format( $channel, $message, $context ) {
224 
225  if ( $channel === 'wfDebug' ) {
226  $text = self::formatAsWfDebug( $channel, $message, $context );
227 
228  } elseif ( $channel === 'wfLogDBError' ) {
229  $text = self::formatAsWfLogDBError( $channel, $message, $context );
230 
231  } elseif ( $channel === 'profileoutput' ) {
232  // Legacy wfLogProfilingData formatitng
233  $forward = '';
234  if ( isset( $context['forwarded_for'] ) ) {
235  $forward = " forwarded for {$context['forwarded_for']}";
236  }
237  if ( isset( $context['client_ip'] ) ) {
238  $forward .= " client IP {$context['client_ip']}";
239  }
240  if ( isset( $context['from'] ) ) {
241  $forward .= " from {$context['from']}";
242  }
243  if ( $forward ) {
244  $forward = "\t(proxied via {$context['proxy']}{$forward})";
245  }
246  if ( $context['anon'] ) {
247  $forward .= ' anon';
248  }
249  if ( !isset( $context['url'] ) ) {
250  $context['url'] = 'n/a';
251  }
252 
253  $log = sprintf( "%s\t%04.3f\t%s%s\n",
254  gmdate( 'YmdHis' ), $context['elapsed'], $context['url'], $forward );
255 
256  $text = self::formatAsWfDebugLog(
257  $channel, $log . $context['output'], $context );
258 
259  } elseif ( !isset( $wgDebugLogGroups[$channel] ) ) {
260  $text = self::formatAsWfDebug(
261  $channel, "[{$channel}] {$message}", $context );
262 
263  } else {
264  // Default formatting is wfDebugLog's historic style
265  $text = self::formatAsWfDebugLog( $channel, $message, $context );
266  }
267 
268  // Append stacktrace of exception if available
269  if ( $wgLogExceptionBacktrace && isset( $context['exception'] ) ) {
270  $e = $context['exception'];
271  $backtrace = false;
272 
273  if ( $e instanceof Throwable || $e instanceof Exception ) {
274  $backtrace = MWExceptionHandler::getRedactedTrace( $e );
275 
276  } elseif ( is_array( $e ) && isset( $e['trace'] ) ) {
277  // Exception has already been unpacked as structured data
278  $backtrace = $e['trace'];
279  }
280 
281  if ( $backtrace ) {
282  $text .= MWExceptionHandler::prettyPrintTrace( $backtrace ) .
283  "\n";
284  }
285  }
286 
287  return self::interpolate( $text, $context );
288  }
289 
298  protected static function formatAsWfDebug( $channel, $message, $context ) {
299  $text = preg_replace( '![\x00-\x08\x0b\x0c\x0e-\x1f]!', ' ', $message );
300  if ( isset( $context['seconds_elapsed'] ) ) {
301  // Prepend elapsed request time and real memory usage with two
302  // trailing spaces.
303  $text = "{$context['seconds_elapsed']} {$context['memory_used']} {$text}";
304  }
305  if ( isset( $context['prefix'] ) ) {
306  $text = "{$context['prefix']}{$text}";
307  }
308  return "{$text}\n";
309  }
310 
319  protected static function formatAsWfLogDBError( $channel, $message, $context ) {
320  global $wgDBerrorLogTZ;
321  static $cachedTimezone = null;
322 
323  if ( !$cachedTimezone ) {
324  $cachedTimezone = new DateTimeZone( $wgDBerrorLogTZ );
325  }
326 
327  $d = date_create( 'now', $cachedTimezone );
328  $date = $d->format( 'D M j G:i:s T Y' );
329 
330  $host = wfHostname();
332 
333  $text = "{$date}\t{$host}\t{$wiki}\t{$message}\n";
334  return $text;
335  }
336 
345  protected static function formatAsWfDebugLog( $channel, $message, $context ) {
346  $time = wfTimestamp( TS_DB );
348  $host = wfHostname();
349  $text = "{$time} {$host} {$wiki}: {$message}\n";
350  return $text;
351  }
352 
360  public static function interpolate( $message, array $context ) {
361  if ( strpos( $message, '{' ) !== false ) {
362  $replace = [];
363  foreach ( $context as $key => $val ) {
364  $replace['{' . $key . '}'] = self::flatten( $val );
365  }
366  $message = strtr( $message, $replace );
367  }
368  return $message;
369  }
370 
378  protected static function flatten( $item ) {
379  if ( $item === null ) {
380  return '[Null]';
381  }
382 
383  if ( is_bool( $item ) ) {
384  return $item ? 'true' : 'false';
385  }
386 
387  if ( is_float( $item ) ) {
388  if ( is_infinite( $item ) ) {
389  return ( $item > 0 ? '' : '-' ) . 'INF';
390  }
391  if ( is_nan( $item ) ) {
392  return 'NaN';
393  }
394  return (string)$item;
395  }
396 
397  if ( is_scalar( $item ) ) {
398  return (string)$item;
399  }
400 
401  if ( is_array( $item ) ) {
402  return '[Array(' . count( $item ) . ')]';
403  }
404 
405  if ( $item instanceof \DateTime ) {
406  return $item->format( 'c' );
407  }
408 
409  if ( $item instanceof Throwable || $item instanceof Exception ) {
410  $which = $item instanceof Error ? 'Error' : 'Exception';
411  return '[' . $which . ' ' . get_class( $item ) . '( ' .
412  $item->getFile() . ':' . $item->getLine() . ') ' .
413  $item->getMessage() . ']';
414  }
415 
416  if ( is_object( $item ) ) {
417  if ( method_exists( $item, '__toString' ) ) {
418  return (string)$item;
419  }
420 
421  return '[Object ' . get_class( $item ) . ']';
422  }
423 
424  if ( is_resource( $item ) ) {
425  return '[Resource ' . get_resource_type( $item ) . ']';
426  }
427 
428  return '[Unknown ' . gettype( $item ) . ']';
429  }
430 
441  protected static function destination( $channel, $message, $context ) {
443 
444  // Default destination is the debug log file as historically used by
445  // the wfDebug function.
446  $destination = $wgDebugLogFile;
447 
448  if ( isset( $context['destination'] ) ) {
449  // Use destination explicitly provided in context
450  $destination = $context['destination'];
451 
452  } elseif ( $channel === 'wfDebug' ) {
453  $destination = $wgDebugLogFile;
454 
455  } elseif ( $channel === 'wfLogDBError' ) {
456  $destination = $wgDBerrorLog;
457 
458  } elseif ( isset( $wgDebugLogGroups[$channel] ) ) {
459  $logConfig = $wgDebugLogGroups[$channel];
460 
461  if ( is_array( $logConfig ) ) {
462  $destination = $logConfig['destination'];
463  } else {
464  $destination = strval( $logConfig );
465  }
466  }
467 
468  return $destination;
469  }
470 
480  public static function emit( $text, $file ) {
481  if ( substr( $file, 0, 4 ) == 'udp:' ) {
482  $transport = UDPTransport::newFromString( $file );
483  $transport->emit( $text );
484  } else {
485  \Wikimedia\suppressWarnings();
486  $exists = file_exists( $file );
487  $size = $exists ? filesize( $file ) : false;
488  if ( !$exists ||
489  ( $size !== false && $size + strlen( $text ) < 0x7fffffff )
490  ) {
491  file_put_contents( $file, $text, FILE_APPEND );
492  }
493  \Wikimedia\restoreWarnings();
494  }
495  }
496 
497 }
MWDebug\query
static query( $sql, $function, $runTime, $dbhost)
Begins profiling on a database query.
Definition: MWDebug.php:378
MediaWiki\Logger\LegacyLogger\interpolate
static interpolate( $message, array $context)
Interpolate placeholders in logging message.
Definition: LegacyLogger.php:360
UDPTransport\newFromString
static newFromString( $info)
Definition: UDPTransport.php:52
MWExceptionHandler\getRedactedTrace
static getRedactedTrace( $e)
Return a copy of an exception's backtrace as an array.
Definition: MWExceptionHandler.php:463
WikiMap\getCurrentWikiDbDomain
static getCurrentWikiDbDomain()
Definition: WikiMap.php:292
MediaWiki\Logger\LegacyLogger\$levelMapping
static $levelMapping
Convert \Psr\Log\LogLevel constants into int for sane comparisons These are the same values that Monl...
Definition: LegacyLogger.php:64
MediaWiki\Logger\LegacyLogger\flatten
static flatten( $item)
Convert a logging context element to a string suitable for interpolation.
Definition: LegacyLogger.php:378
MWDebug
New debugger system that outputs a toolbar on page view.
Definition: MWDebug.php:33
MediaWiki\Logger\LegacyLogger\$dbChannels
static array $dbChannels
Definition: LegacyLogger.php:78
MediaWiki\Logger\LegacyLogger\destination
static destination( $channel, $message, $context)
Select the appropriate log output destination for the given log event.
Definition: LegacyLogger.php:441
true
return true
Definition: router.php:92
MWExceptionHandler
Handler class for MWExceptions.
Definition: MWExceptionHandler.php:30
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1869
MediaWiki\Logger\LegacyLogger\log
log( $level, $message, array $context=[])
Logs with an arbitrary level.
Definition: LegacyLogger.php:98
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition: router.php:42
wfHostname
wfHostname()
Fetch server name for use in error reporting etc.
Definition: GlobalFunctions.php:1326
$wgDBerrorLog
$wgDBerrorLog
File to log database errors to.
Definition: DefaultSettings.php:2133
MediaWiki\Logger\LegacyLogger\formatAsWfDebugLog
static formatAsWfDebugLog( $channel, $message, $context)
Format a message as `wfDebugLog() would have formatted it.
Definition: LegacyLogger.php:345
MediaWiki\Logger\LegacyLogger\$channel
$channel
Definition: LegacyLogger.php:56
MWExceptionHandler\prettyPrintTrace
static prettyPrintTrace(array $trace, $pad='')
Generate a string representation of a stacktrace.
Definition: MWExceptionHandler.php:416
MediaWiki\Logger
Definition: ConsoleLogger.php:3
WikiMap\getWikiIdFromDbDomain
static getWikiIdFromDbDomain( $domain)
Get the wiki ID of a database domain.
Definition: WikiMap.php:268
MWDebug\debugMsg
static debugMsg( $str, $context=[])
This is a method to pass messages from wfDebug to the pretty debugger.
Definition: MWDebug.php:347
$wgDebugLogGroups
$wgDebugLogGroups
Map of string log group names to log destinations.
Definition: DefaultSettings.php:6249
$wgLogExceptionBacktrace
$wgLogExceptionBacktrace
If true, send the exception backtrace to the error log.
Definition: DefaultSettings.php:6327
$wgDebugLogFile
$wgDebugLogFile
Filename for debug logging.
Definition: DefaultSettings.php:6121
UDPTransport
A generic class to send a message over UDP.
Definition: UDPTransport.php:31
MediaWiki\Logger\LegacyLogger\formatAsWfDebug
static formatAsWfDebug( $channel, $message, $context)
Format a message as wfDebug() would have formatted it.
Definition: LegacyLogger.php:298
WikiMap
Helper tools for dealing with other locally-hosted wikis.
Definition: WikiMap.php:29
MediaWiki\Logger\LegacyLogger\emit
static emit( $text, $file)
Log to a file without getting "file size exceeded" signals.
Definition: LegacyLogger.php:480
MediaWiki\Logger\LegacyLogger\format
static format( $channel, $message, $context)
Format a message.
Definition: LegacyLogger.php:222
MediaWiki\Logger\LegacyLogger\formatAsWfLogDBError
static formatAsWfLogDBError( $channel, $message, $context)
Format a message as wfLogDBError() would have formatted it.
Definition: LegacyLogger.php:319
MediaWiki\Logger\LegacyLogger
PSR-3 logger that mimics the historic implementation of MediaWiki's former wfErrorLog logging impleme...
Definition: LegacyLogger.php:51
$wgDBerrorLogTZ
$wgDBerrorLogTZ
Timezone to use in the error log.
Definition: DefaultSettings.php:2153
MediaWiki\Logger\LegacyLogger\__construct
__construct( $channel)
Definition: LegacyLogger.php:86
MediaWiki\$context
IContextSource $context
Definition: MediaWiki.php:38
MediaWiki\Logger\LegacyLogger\shouldEmit
static shouldEmit( $channel, $message, $level, $context)
Determine if the given message should be emitted or not.
Definition: LegacyLogger.php:158