31use Wikimedia\NormalizedException\INormalizedException;
35use Wikimedia\Services\RecursiveServiceDependencyException;
60 private const FATAL_ERROR_TYPES = [
76 private static $logExceptionBacktrace =
true;
83 private static $propagateErrors;
93 bool $logExceptionBacktrace =
true,
94 bool $propagateErrors =
true
96 self::$logExceptionBacktrace = $logExceptionBacktrace;
97 self::$propagateErrors = $propagateErrors;
112 set_exception_handler( [ self::class,
'handleUncaughtException' ] );
116 set_error_handler( [ self::class,
'handleError' ] );
121 self::$reservedMemory = str_repeat(
' ', 16384 );
122 register_shutdown_function( [ self::class,
'handleFatalError' ] );
128 protected static function report( Throwable $e ) {
131 if ( $e instanceof
MWException && $e->hasOverriddenHandler() ) {
139 }
catch ( Throwable $e2 ) {
152 private static function rollbackPrimaryChanges() {
160 $lbFactory = $services->peekService(
'DBLoadBalancerFactory' );
161 '@phan-var LBFactory $lbFactory';
172 $lbFactory->rollbackPrimaryChanges( __METHOD__ );
173 $lbFactory->flushPrimarySessions( __METHOD__ );
174 }
catch ( DBError $e ) {
195 $catcher = self::CAUGHT_BY_OTHER
197 self::rollbackPrimaryChanges();
213 register_shutdown_function(
239 public static function handleException( Throwable $e, $catcher = self::CAUGHT_BY_OTHER ) {
266 if ( defined(
'E_STRICT' ) && $level == @constant(
'E_STRICT' ) ) {
267 $level = E_USER_NOTICE;
288 case E_COMPILE_WARNING:
289 $prefix =
'PHP Warning: ';
290 $severity = LogLevel::ERROR;
293 $prefix =
'PHP Notice: ';
294 $severity = LogLevel::ERROR;
298 $prefix =
'PHP Notice: ';
299 $severity = LogLevel::WARNING;
303 $prefix =
'PHP Warning: ';
304 $severity = LogLevel::WARNING;
307 $prefix =
'PHP Deprecated: ';
308 $severity = LogLevel::WARNING;
310 case E_USER_DEPRECATED:
311 $prefix =
'PHP Deprecated: ';
312 $severity = LogLevel::WARNING;
313 $real = MWDebug::parseCallerDescription( $message );
318 $file = $real[
'file'];
319 $line = $real[
'line'];
320 $message = $real[
'message'];
324 $prefix =
'PHP Unknown error: ';
325 $severity = LogLevel::ERROR;
330 $e =
new ErrorException( $prefix . $message, 0, $level, $file, $line );
331 self::logError( $e, $severity, self::CAUGHT_BY_HANDLER );
336 return !( self::$propagateErrors || ini_get(
'track_errors' ) );
356 self::$reservedMemory =
null;
358 $lastError = error_get_last();
359 if ( $lastError ===
null ) {
363 $level = $lastError[
'type'];
364 $message = $lastError[
'message'];
365 $file = $lastError[
'file'];
366 $line = $lastError[
'line'];
368 if ( !in_array( $level, self::FATAL_ERROR_TYPES ) ) {
375 '[{reqId}] {exception_url} PHP Fatal Error',
376 ( $line || $file ) ?
' from' :
'',
377 $line ?
" line $line" :
'',
378 ( $line && $file ) ?
' of' :
'',
379 $file ?
" $file" :
'',
382 $msg = implode(
'', $msgParts );
385 if ( preg_match(
"/Class '\w+' not found/", $message ) ) {
390MediaWiki or an installed extension
requires this class but it is not embedded directly in
MediaWiki's git repository and must be installed separately by the end user.
392Please see <a href=
"https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries">mediawiki.org</a>
for help on installing the required components.
397 $e =
new ErrorException(
"PHP Fatal Error: {$message}", 0, $level, $file, $line );
398 $logger = LoggerFactory::getInstance(
'exception' );
399 $logger->error( $msg, self::getLogContext( $e, self::CAUGHT_BY_HANDLER ) );
415 $from =
'from ' . $e->getFile() .
'(' . $e->getLine() .
')' .
"\n";
431 foreach ( $trace as $level => $frame ) {
432 if ( isset( $frame[
'file'] ) && isset( $frame[
'line'] ) ) {
433 $text .=
"{$pad}#{$level} {$frame['file']}({$frame['line']}): ";
439 $text .=
"{$pad}#{$level} [internal function]: ";
442 if ( isset( $frame[
'class'] ) && isset( $frame[
'type'] ) && isset( $frame[
'function'] ) ) {
443 $text .= $frame[
'class'] . $frame[
'type'] . $frame[
'function'];
445 $text .= $frame[
'function'] ??
'NO_FUNCTION_GIVEN';
448 if ( isset( $frame[
'args'] ) ) {
449 $text .=
'(' . implode(
', ', $frame[
'args'] ) .
")\n";
456 $text .=
"{$pad}#{$level} {main}";
473 return static::redactTrace( $e->getTrace() );
487 return array_map(
static function ( $frame ) {
488 if ( isset( $frame[
'args'] ) ) {
489 $frame[
'args'] = array_map(
'get_debug_type', $frame[
'args'] );
506 return WebRequest::getGlobalRequestURL();
520 $id = WebRequest::getRequestId();
521 $type = get_class( $e );
522 $message = $e->getMessage();
526 $message =
"A database query error has occurred. Did you forget to run"
527 .
" your application's database schema updater after upgrading"
528 .
" or after adding a new extension?\n\nPlease see"
529 .
" https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Upgrading and"
530 .
" https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:How_to_debug"
531 .
" for more information.\n\n"
535 return "[$id] $url $type: $message";
548 if ( $e instanceof INormalizedException ) {
549 $message = $e->getNormalizedMessage();
551 $message = $e->getMessage();
553 if ( !$e instanceof ErrorException ) {
558 $message = get_class( $e ) .
": $message";
561 return "[{reqId}] {exception_url} $message";
569 $reqId = WebRequest::getRequestId();
570 $type = get_class( $e );
571 return '[' . $reqId .
'] '
572 . gmdate(
'Y-m-d H:i:s' ) .
': '
573 .
'Fatal exception of type "' . $type .
'"';
588 public static function getLogContext( Throwable $e, $catcher = self::CAUGHT_BY_OTHER ) {
598 'reqId' => WebRequest::getRequestId(),
599 'caught_by' => $catcher
601 if ( $e instanceof INormalizedException ) {
602 $context += $e->getMessageContext();
621 $catcher = self::CAUGHT_BY_OTHER
624 'id' => WebRequest::getRequestId(),
625 'type' => get_class( $e ),
626 'file' => $e->getFile(),
627 'line' => $e->getLine(),
628 'message' => $e->getMessage(),
629 'code' => $e->getCode(),
631 'caught_by' => $catcher
634 if ( $e instanceof ErrorException &&
635 ( error_reporting() & $e->getSeverity() ) === 0
638 $data[
'suppressed'] =
true;
641 if ( self::$logExceptionBacktrace ) {
645 $previous = $e->getPrevious();
646 if ( $previous !==
null ) {
666 $catcher = self::CAUGHT_BY_OTHER,
669 if ( !( $e instanceof
MWException ) || $e->isLoggable() ) {
670 $logger = LoggerFactory::getInstance(
'exception' );
673 $context[
'extraData'] = $extraData;
676 self::getLogNormalMessage( $e ),
680 self::callLogExceptionHook( $e,
false );
691 private static function logError(
697 $suppressed = ( error_reporting() & $e->getSeverity() ) === 0;
704 $channel =
'silenced-error';
705 $level = LogLevel::DEBUG;
709 $logger = LoggerFactory::getInstance( $channel );
712 self::getLogNormalMessage( $e ),
713 self::getLogContext( $e, $catcher )
716 self::callLogExceptionHook( $e, $suppressed );
725 private static function callLogExceptionHook( Throwable $e,
bool $suppressed ) {
736 ->onLogException( $e, $suppressed );
737 }
catch ( RecursiveServiceDependencyException $e ) {
744class_alias( MWExceptionHandler::class,
'MWExceptionHandler' );
wfIsCLI()
Check if we are running from the commandline.