123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498 |
- <?php
- /**
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- */
- namespace MediaWiki\Logger;
- use DateTimeZone;
- use Error;
- use Exception;
- use WikiMap;
- use MWDebug;
- use MWExceptionHandler;
- use Psr\Log\AbstractLogger;
- use Psr\Log\LogLevel;
- use Throwable;
- use UDPTransport;
- /**
- * PSR-3 logger that mimics the historic implementation of MediaWiki's former
- * wfErrorLog logging implementation.
- *
- * This logger is configured by the following global configuration variables:
- * - `$wgDebugLogFile`
- * - `$wgDebugLogGroups`
- * - `$wgDBerrorLog`
- * - `$wgDBerrorLogTZ`
- *
- * See documentation in DefaultSettings.php for detailed explanations of each
- * variable.
- *
- * @see \MediaWiki\Logger\LoggerFactory
- * @since 1.25
- * @copyright © 2014 Wikimedia Foundation and contributors
- */
- class LegacyLogger extends AbstractLogger {
- /**
- * @var string $channel
- */
- protected $channel;
- /**
- * Convert \Psr\Log\LogLevel constants into int for sane comparisons
- * These are the same values that Monlog uses
- *
- * @var array $levelMapping
- */
- protected static $levelMapping = [
- LogLevel::DEBUG => 100,
- LogLevel::INFO => 200,
- LogLevel::NOTICE => 250,
- LogLevel::WARNING => 300,
- LogLevel::ERROR => 400,
- LogLevel::CRITICAL => 500,
- LogLevel::ALERT => 550,
- LogLevel::EMERGENCY => 600,
- ];
- /**
- * @var array
- */
- protected static $dbChannels = [
- 'DBQuery' => true,
- 'DBConnection' => true
- ];
- /**
- * @param string $channel
- */
- public function __construct( $channel ) {
- $this->channel = $channel;
- }
- /**
- * Logs with an arbitrary level.
- *
- * @param string|int $level
- * @param string $message
- * @param array $context
- * @return null
- */
- public function log( $level, $message, array $context = [] ) {
- global $wgDBerrorLog;
- if ( is_string( $level ) ) {
- $level = self::$levelMapping[$level];
- }
- if ( $this->channel === 'DBQuery'
- && $level === self::$levelMapping[LogLevel::DEBUG]
- && isset( $context['sql'] )
- ) {
- // Also give the query information to the MWDebug tools
- $enabled = MWDebug::query(
- $context['sql'],
- $context['method'],
- $context['runtime'],
- $context['db_host']
- );
- if ( $enabled ) {
- // If we the toolbar was enabled, return early so that we don't
- // also log the query to the main debug output.
- return;
- }
- }
- // If this is a DB-related error, and the site has $wgDBerrorLog
- // configured, rewrite the channel as wfLogDBError instead.
- // Likewise, if the site does not use $wgDBerrorLog, it should
- // configurable like any other channel via $wgDebugLogGroups
- // or $wgMWLoggerDefaultSpi.
- if ( isset( self::$dbChannels[$this->channel] )
- && $level >= self::$levelMapping[LogLevel::ERROR]
- && $wgDBerrorLog
- ) {
- // Format and write DB errors to the legacy locations
- $effectiveChannel = 'wfLogDBError';
- } else {
- $effectiveChannel = $this->channel;
- }
- if ( self::shouldEmit( $effectiveChannel, $message, $level, $context ) ) {
- $text = self::format( $effectiveChannel, $message, $context );
- $destination = self::destination( $effectiveChannel, $message, $context );
- self::emit( $text, $destination );
- }
- if ( !isset( $context['private'] ) || !$context['private'] ) {
- // Add to debug toolbar if not marked as "private"
- MWDebug::debugMsg( $message, [ 'channel' => $this->channel ] + $context );
- }
- }
- /**
- * Determine if the given message should be emitted or not.
- *
- * @param string $channel
- * @param string $message
- * @param string|int $level \Psr\Log\LogEvent constant or Monolog level int
- * @param array $context
- * @return bool True if message should be sent to disk/network, false
- * otherwise
- */
- public static function shouldEmit( $channel, $message, $level, $context ) {
- global $wgDebugLogFile, $wgDBerrorLog, $wgDebugLogGroups;
- if ( is_string( $level ) ) {
- $level = self::$levelMapping[$level];
- }
- if ( $channel === 'wfLogDBError' ) {
- // wfLogDBError messages are emitted if a database log location is
- // specfied.
- $shouldEmit = (bool)$wgDBerrorLog;
- } elseif ( $channel === 'wfDebug' ) {
- // wfDebug messages are emitted if a catch all logging file has
- // been specified. Checked explicitly so that 'private' flagged
- // messages are not discarded by unset $wgDebugLogGroups channel
- // handling below.
- $shouldEmit = $wgDebugLogFile != '';
- } elseif ( isset( $wgDebugLogGroups[$channel] ) ) {
- $logConfig = $wgDebugLogGroups[$channel];
- if ( is_array( $logConfig ) ) {
- $shouldEmit = true;
- if ( isset( $logConfig['sample'] ) ) {
- // Emit randomly with a 1 in 'sample' chance for each message.
- $shouldEmit = mt_rand( 1, $logConfig['sample'] ) === 1;
- }
- if ( isset( $logConfig['level'] ) ) {
- $shouldEmit = $level >= self::$levelMapping[$logConfig['level']];
- }
- } else {
- // Emit unless the config value is explictly false.
- $shouldEmit = $logConfig !== false;
- }
- } elseif ( isset( $context['private'] ) && $context['private'] ) {
- // Don't emit if the message didn't match previous checks based on
- // the channel and the event is marked as private. This check
- // discards messages sent via wfDebugLog() with dest == 'private'
- // and no explicit wgDebugLogGroups configuration.
- $shouldEmit = false;
- } else {
- // Default return value is the same as the historic wfDebug
- // method: emit if $wgDebugLogFile has been set.
- $shouldEmit = $wgDebugLogFile != '';
- }
- return $shouldEmit;
- }
- /**
- * Format a message.
- *
- * Messages to the 'wfDebug' and 'wfLogDBError' channels receive special formatting to mimic the
- * historic output of the functions of the same name. All other channel values are formatted
- * based on the historic output of the `wfDebugLog()` global function.
- *
- * @param string $channel
- * @param string $message
- * @param array $context
- * @return string
- */
- public static function format( $channel, $message, $context ) {
- global $wgDebugLogGroups, $wgLogExceptionBacktrace;
- if ( $channel === 'wfDebug' ) {
- $text = self::formatAsWfDebug( $channel, $message, $context );
- } elseif ( $channel === 'wfLogDBError' ) {
- $text = self::formatAsWfLogDBError( $channel, $message, $context );
- } elseif ( $channel === 'profileoutput' ) {
- // Legacy wfLogProfilingData formatitng
- $forward = '';
- if ( isset( $context['forwarded_for'] ) ) {
- $forward = " forwarded for {$context['forwarded_for']}";
- }
- if ( isset( $context['client_ip'] ) ) {
- $forward .= " client IP {$context['client_ip']}";
- }
- if ( isset( $context['from'] ) ) {
- $forward .= " from {$context['from']}";
- }
- if ( $forward ) {
- $forward = "\t(proxied via {$context['proxy']}{$forward})";
- }
- if ( $context['anon'] ) {
- $forward .= ' anon';
- }
- if ( !isset( $context['url'] ) ) {
- $context['url'] = 'n/a';
- }
- $log = sprintf( "%s\t%04.3f\t%s%s\n",
- gmdate( 'YmdHis' ), $context['elapsed'], $context['url'], $forward );
- $text = self::formatAsWfDebugLog(
- $channel, $log . $context['output'], $context );
- } elseif ( !isset( $wgDebugLogGroups[$channel] ) ) {
- $text = self::formatAsWfDebug(
- $channel, "[{$channel}] {$message}", $context );
- } else {
- // Default formatting is wfDebugLog's historic style
- $text = self::formatAsWfDebugLog( $channel, $message, $context );
- }
- // Append stacktrace of exception if available
- if ( $wgLogExceptionBacktrace && isset( $context['exception'] ) ) {
- $e = $context['exception'];
- $backtrace = false;
- if ( $e instanceof Throwable || $e instanceof Exception ) {
- $backtrace = MWExceptionHandler::getRedactedTrace( $e );
- } elseif ( is_array( $e ) && isset( $e['trace'] ) ) {
- // Exception has already been unpacked as structured data
- $backtrace = $e['trace'];
- }
- if ( $backtrace ) {
- $text .= MWExceptionHandler::prettyPrintTrace( $backtrace ) .
- "\n";
- }
- }
- return self::interpolate( $text, $context );
- }
- /**
- * Format a message as `wfDebug()` would have formatted it.
- *
- * @param string $channel
- * @param string $message
- * @param array $context
- * @return string
- */
- protected static function formatAsWfDebug( $channel, $message, $context ) {
- $text = preg_replace( '![\x00-\x08\x0b\x0c\x0e-\x1f]!', ' ', $message );
- if ( isset( $context['seconds_elapsed'] ) ) {
- // Prepend elapsed request time and real memory usage with two
- // trailing spaces.
- $text = "{$context['seconds_elapsed']} {$context['memory_used']} {$text}";
- }
- if ( isset( $context['prefix'] ) ) {
- $text = "{$context['prefix']}{$text}";
- }
- return "{$text}\n";
- }
- /**
- * Format a message as `wfLogDBError()` would have formatted it.
- *
- * @param string $channel
- * @param string $message
- * @param array $context
- * @return string
- */
- protected static function formatAsWfLogDBError( $channel, $message, $context ) {
- global $wgDBerrorLogTZ;
- static $cachedTimezone = null;
- if ( !$cachedTimezone ) {
- $cachedTimezone = new DateTimeZone( $wgDBerrorLogTZ );
- }
- $d = date_create( 'now', $cachedTimezone );
- $date = $d->format( 'D M j G:i:s T Y' );
- $host = wfHostname();
- $wiki = WikiMap::getWikiIdFromDbDomain( WikiMap::getCurrentWikiDbDomain() );
- $text = "{$date}\t{$host}\t{$wiki}\t{$message}\n";
- return $text;
- }
- /**
- * Format a message as `wfDebugLog() would have formatted it.
- *
- * @param string $channel
- * @param string $message
- * @param array $context
- * @return string
- */
- protected static function formatAsWfDebugLog( $channel, $message, $context ) {
- $time = wfTimestamp( TS_DB );
- $wiki = WikiMap::getWikiIdFromDbDomain( WikiMap::getCurrentWikiDbDomain() );
- $host = wfHostname();
- $text = "{$time} {$host} {$wiki}: {$message}\n";
- return $text;
- }
- /**
- * Interpolate placeholders in logging message.
- *
- * @param string $message
- * @param array $context
- * @return string Interpolated message
- */
- public static function interpolate( $message, array $context ) {
- if ( strpos( $message, '{' ) !== false ) {
- $replace = [];
- foreach ( $context as $key => $val ) {
- $replace['{' . $key . '}'] = self::flatten( $val );
- }
- $message = strtr( $message, $replace );
- }
- return $message;
- }
- /**
- * Convert a logging context element to a string suitable for
- * interpolation.
- *
- * @param mixed $item
- * @return string
- */
- protected static function flatten( $item ) {
- if ( $item === null ) {
- return '[Null]';
- }
- if ( is_bool( $item ) ) {
- return $item ? 'true' : 'false';
- }
- if ( is_float( $item ) ) {
- if ( is_infinite( $item ) ) {
- return ( $item > 0 ? '' : '-' ) . 'INF';
- }
- if ( is_nan( $item ) ) {
- return 'NaN';
- }
- return (string)$item;
- }
- if ( is_scalar( $item ) ) {
- return (string)$item;
- }
- if ( is_array( $item ) ) {
- return '[Array(' . count( $item ) . ')]';
- }
- if ( $item instanceof \DateTime ) {
- return $item->format( 'c' );
- }
- if ( $item instanceof Throwable || $item instanceof Exception ) {
- $which = $item instanceof Error ? 'Error' : 'Exception';
- return '[' . $which . ' ' . get_class( $item ) . '( ' .
- $item->getFile() . ':' . $item->getLine() . ') ' .
- $item->getMessage() . ']';
- }
- if ( is_object( $item ) ) {
- if ( method_exists( $item, '__toString' ) ) {
- return (string)$item;
- }
- return '[Object ' . get_class( $item ) . ']';
- }
- if ( is_resource( $item ) ) {
- return '[Resource ' . get_resource_type( $item ) . ']';
- }
- return '[Unknown ' . gettype( $item ) . ']';
- }
- /**
- * Select the appropriate log output destination for the given log event.
- *
- * If the event context contains 'destination'
- *
- * @param string $channel
- * @param string $message
- * @param array $context
- * @return string
- */
- protected static function destination( $channel, $message, $context ) {
- global $wgDebugLogFile, $wgDBerrorLog, $wgDebugLogGroups;
- // Default destination is the debug log file as historically used by
- // the wfDebug function.
- $destination = $wgDebugLogFile;
- if ( isset( $context['destination'] ) ) {
- // Use destination explicitly provided in context
- $destination = $context['destination'];
- } elseif ( $channel === 'wfDebug' ) {
- $destination = $wgDebugLogFile;
- } elseif ( $channel === 'wfLogDBError' ) {
- $destination = $wgDBerrorLog;
- } elseif ( isset( $wgDebugLogGroups[$channel] ) ) {
- $logConfig = $wgDebugLogGroups[$channel];
- if ( is_array( $logConfig ) ) {
- $destination = $logConfig['destination'];
- } else {
- $destination = strval( $logConfig );
- }
- }
- return $destination;
- }
- /**
- * Log to a file without getting "file size exceeded" signals.
- *
- * Can also log to UDP with the syntax udp://host:port/prefix. This will send
- * lines to the specified port, prefixed by the specified prefix and a space.
- *
- * @param string $text
- * @param string $file Filename
- */
- public static function emit( $text, $file ) {
- if ( substr( $file, 0, 4 ) == 'udp:' ) {
- $transport = UDPTransport::newFromString( $file );
- $transport->emit( $text );
- } else {
- \Wikimedia\suppressWarnings();
- $exists = file_exists( $file );
- $size = $exists ? filesize( $file ) : false;
- if ( !$exists ||
- ( $size !== false && $size + strlen( $text ) < 0x7fffffff )
- ) {
- file_put_contents( $file, $text, FILE_APPEND );
- }
- \Wikimedia\restoreWarnings();
- }
- }
- }
|