MediaWiki  master
ApiCSPReport.php
Go to the documentation of this file.
1 <?php
24 
30 class ApiCSPReport extends ApiBase {
31 
32  private $log;
33 
37  const MAX_POST_SIZE = 8192;
38 
42  public function execute() {
43  $reportOnly = $this->getParameter( 'reportonly' );
44  $logname = $reportOnly ? 'csp-report-only' : 'csp';
45  $this->log = LoggerFactory::getInstance( $logname );
46  $userAgent = $this->getRequest()->getHeader( 'user-agent' );
47 
48  $this->verifyPostBodyOk();
49  $report = $this->getReport();
50  $flags = $this->getFlags( $report );
51 
52  $warningText = $this->generateLogLine( $flags, $report );
53  $this->logReport( $flags, $warningText, [
54  // XXX Is it ok to put untrusted data into log??
55  'csp-report' => $report,
56  'method' => __METHOD__,
57  'user' => $this->getUser()->getName(),
58  'user-agent' => $userAgent,
59  'source' => $this->getParameter( 'source' ),
60  ] );
61  $this->getResult()->addValue( null, $this->getModuleName(), 'success' );
62  }
63 
70  private function logReport( $flags, $logLine, $context ) {
71  if ( in_array( 'false-positive', $flags ) ) {
72  // These reports probably don't matter much
73  $this->log->debug( $logLine, $context );
74  } else {
75  // Normal report.
76  $this->log->warning( $logLine, $context );
77  }
78  }
79 
86  private function getFlags( $report ) {
87  $reportOnly = $this->getParameter( 'reportonly' );
88  $userAgent = $this->getRequest()->getHeader( 'user-agent' );
89  $source = $this->getParameter( 'source' );
90 
91  $flags = [];
92  if ( $source !== 'internal' ) {
93  $flags[] = 'source=' . $source;
94  }
95  if ( $reportOnly ) {
96  $flags[] = 'report-only';
97  }
98  return $flags;
99  }
100 
104  private function verifyPostBodyOk() {
105  $req = $this->getRequest();
106  $contentType = $req->getHeader( 'content-type' );
107  if ( $contentType !== 'application/json'
108  && $contentType !=='application/csp-report'
109  ) {
110  $this->error( 'wrongformat', __METHOD__ );
111  }
112  if ( $req->getHeader( 'content-length' ) > self::MAX_POST_SIZE ) {
113  $this->error( 'toobig', __METHOD__ );
114  }
115  }
116 
122  private function getReport() {
123  $postBody = $this->getRequest()->getRawInput();
124  if ( strlen( $postBody ) > self::MAX_POST_SIZE ) {
125  // paranoia, already checked content-length earlier.
126  $this->error( 'toobig', __METHOD__ );
127  }
129  if ( !$status->isGood() ) {
130  list( $code, ) = $this->getErrorFromStatus( $status );
131  $this->error( $code, __METHOD__ );
132  }
133 
134  $report = $status->getValue();
135 
136  if ( !isset( $report['csp-report'] ) ) {
137  $this->error( 'missingkey', __METHOD__ );
138  }
139  return $report['csp-report'];
140  }
141 
149  private function generateLogLine( $flags, $report ) {
150  $flagText = '';
151  if ( $flags ) {
152  $flagText = '[' . implode( $flags, ', ' ) . ']';
153  }
154 
155  $blockedFile = isset( $report['blocked-uri'] ) ? $report['blocked-uri'] : 'n/a';
156  $page = isset( $report['document-uri'] ) ? $report['document-uri'] : 'n/a';
157  $line = isset( $report['line-number'] ) ? ':' . $report['line-number'] : '';
158  $warningText = $flagText .
159  ' Received CSP report: <' . $blockedFile .
160  '> blocked from being loaded on <' . $page . '>' . $line;
161  return $warningText;
162  }
163 
171  private function error( $code, $method ) {
172  $this->log->info( 'Error reading CSP report: ' . $code, [
173  'method' => $method,
174  'user-agent' => $this->getRequest()->getHeader( 'user-agent' )
175  ] );
176  // 500 so it shows up in browser's developer console.
177  $this->dieUsage( "Error processing CSP report: $code", 'cspreport-' . $code, 500 );
178  }
179 
180  public function getAllowedParams() {
181  return [
182  'reportonly' => [
183  ApiBase::PARAM_TYPE => 'boolean',
185  ],
186  'source' => [
187  ApiBase::PARAM_TYPE => 'string',
188  ApiBase::PARAM_DFLT => 'internal',
190  ]
191  ];
192  }
193 
194  public function mustBePosted() {
195  return true;
196  }
197 
198  public function isWriteMode() {
199  return false;
200  }
201 
205  public function isInternal() {
206  return true;
207  }
208 
212  public function isReadMode() {
213  return false;
214  }
215 
221  public function shouldCheckMaxLag() {
222  return false;
223  }
224 }
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
Definition: ApiBase.php:88
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
getResult()
Get the result object.
Definition: ApiBase.php:577
getParameter($paramName, $parseLimit=true)
Get a value for the given parameter.
Definition: ApiBase.php:702
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:189
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:50
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition: ApiBase.php:112
$source
isReadMode()
Even if you don't have read rights, we still want your report.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2588
Api module to receive and log CSP violation reports.
isInternal()
Mark as internal.
IContextSource $context
static parse($value, $options=0)
Decodes a JSON string.
Definition: FormatJson.php:201
getRequest()
Get the WebRequest object.
generateLogLine($flags, $report)
Get text of log line.
getErrorFromStatus($status, &$extraData=null)
Get error (as code, string) from a Status object.
Definition: ApiBase.php:1526
execute()
Logs a content-security-policy violation report from web browser.
const FORCE_ASSOC
If set, treat json objects '{...}' as associative arrays.
Definition: FormatJson.php:64
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:457
shouldCheckMaxLag()
Doesn't touch db, so max lag should be rather irrelavent.
getReport()
Get the report from post body and turn into associative array.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition: hooks.txt:776
getFlags($report)
Get extra notes about the report.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
this hook is for auditing only $req
Definition: hooks.txt:981
const MAX_POST_SIZE
These reports should be small.
$line
Definition: cdb.php:59
dieUsage($description, $errorCode, $httpRespCode=0, $extradata=null)
Throw a UsageException, which will (if uncaught) call the main module's error handler and die with an...
Definition: ApiBase.php:1481
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1020
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
This abstract class implements many basic API functions, and is the base of all API classes...
Definition: ApiBase.php:39
logReport($flags, $logLine, $context)
Log CSP report, with a different severity depending on $flags.
error($code, $method)
Stop processing the request, and output/log an error.
getUser()
Get the User object.
verifyPostBodyOk()
Output an api error if post body is obviously not OK.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2376