Merge "OutputPage: Add addHeadItems() method"
[lhc/web/wiklou.git] / includes / upload / UploadBase.php
1 <?php
2 /**
3 * Base class for the backend of file upload.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Upload
22 */
23
24 /**
25 * @defgroup Upload Upload related
26 */
27
28 /**
29 * @ingroup Upload
30 *
31 * UploadBase and subclasses are the backend of MediaWiki's file uploads.
32 * The frontends are formed by ApiUpload and SpecialUpload.
33 *
34 * @author Brion Vibber
35 * @author Bryan Tong Minh
36 * @author Michael Dale
37 */
38 abstract class UploadBase {
39 /** @var string Local file system path to the file to upload (or a local copy) */
40 protected $mTempPath;
41 /** @var TempFSFile|null Wrapper to handle deleting the temp file */
42 protected $tempFileObj;
43
44 protected $mDesiredDestName, $mDestName, $mRemoveTempFile, $mSourceType;
45 protected $mTitle = false, $mTitleError = 0;
46 protected $mFilteredName, $mFinalExtension;
47 protected $mLocalFile, $mFileSize, $mFileProps;
48 protected $mBlackListedExtensions;
49 protected $mJavaDetected, $mSVGNSError;
50
51 protected static $safeXmlEncodings = [
52 'UTF-8',
53 'ISO-8859-1',
54 'ISO-8859-2',
55 'UTF-16',
56 'UTF-32',
57 'WINDOWS-1250',
58 'WINDOWS-1251',
59 'WINDOWS-1252',
60 'WINDOWS-1253',
61 'WINDOWS-1254',
62 'WINDOWS-1255',
63 'WINDOWS-1256',
64 'WINDOWS-1257',
65 'WINDOWS-1258',
66 ];
67
68 const SUCCESS = 0;
69 const OK = 0;
70 const EMPTY_FILE = 3;
71 const MIN_LENGTH_PARTNAME = 4;
72 const ILLEGAL_FILENAME = 5;
73 const OVERWRITE_EXISTING_FILE = 7; # Not used anymore; handled by verifyTitlePermissions()
74 const FILETYPE_MISSING = 8;
75 const FILETYPE_BADTYPE = 9;
76 const VERIFICATION_ERROR = 10;
77 const HOOK_ABORTED = 11;
78 const FILE_TOO_LARGE = 12;
79 const WINDOWS_NONASCII_FILENAME = 13;
80 const FILENAME_TOO_LONG = 14;
81
82 /**
83 * @param int $error
84 * @return string
85 */
86 public function getVerificationErrorCode( $error ) {
87 $code_to_status = [
88 self::EMPTY_FILE => 'empty-file',
89 self::FILE_TOO_LARGE => 'file-too-large',
90 self::FILETYPE_MISSING => 'filetype-missing',
91 self::FILETYPE_BADTYPE => 'filetype-banned',
92 self::MIN_LENGTH_PARTNAME => 'filename-tooshort',
93 self::ILLEGAL_FILENAME => 'illegal-filename',
94 self::OVERWRITE_EXISTING_FILE => 'overwrite',
95 self::VERIFICATION_ERROR => 'verification-error',
96 self::HOOK_ABORTED => 'hookaborted',
97 self::WINDOWS_NONASCII_FILENAME => 'windows-nonascii-filename',
98 self::FILENAME_TOO_LONG => 'filename-toolong',
99 ];
100 if ( isset( $code_to_status[$error] ) ) {
101 return $code_to_status[$error];
102 }
103
104 return 'unknown-error';
105 }
106
107 /**
108 * Returns true if uploads are enabled.
109 * Can be override by subclasses.
110 * @return bool
111 */
112 public static function isEnabled() {
113 global $wgEnableUploads;
114
115 if ( !$wgEnableUploads ) {
116 return false;
117 }
118
119 # Check php's file_uploads setting
120 return wfIsHHVM() || wfIniGetBool( 'file_uploads' );
121 }
122
123 /**
124 * Returns true if the user can use this upload module or else a string
125 * identifying the missing permission.
126 * Can be overridden by subclasses.
127 *
128 * @param User $user
129 * @return bool|string
130 */
131 public static function isAllowed( $user ) {
132 foreach ( [ 'upload', 'edit' ] as $permission ) {
133 if ( !$user->isAllowed( $permission ) ) {
134 return $permission;
135 }
136 }
137
138 return true;
139 }
140
141 /**
142 * Returns true if the user has surpassed the upload rate limit, false otherwise.
143 *
144 * @param User $user
145 * @return bool
146 */
147 public static function isThrottled( $user ) {
148 return $user->pingLimiter( 'upload' );
149 }
150
151 // Upload handlers. Should probably just be a global.
152 private static $uploadHandlers = [ 'Stash', 'File', 'Url' ];
153
154 /**
155 * Create a form of UploadBase depending on wpSourceType and initializes it
156 *
157 * @param WebRequest $request
158 * @param string|null $type
159 * @return null|UploadBase
160 */
161 public static function createFromRequest( &$request, $type = null ) {
162 $type = $type ? $type : $request->getVal( 'wpSourceType', 'File' );
163
164 if ( !$type ) {
165 return null;
166 }
167
168 // Get the upload class
169 $type = ucfirst( $type );
170
171 // Give hooks the chance to handle this request
172 $className = null;
173 Hooks::run( 'UploadCreateFromRequest', [ $type, &$className ] );
174 if ( is_null( $className ) ) {
175 $className = 'UploadFrom' . $type;
176 wfDebug( __METHOD__ . ": class name: $className\n" );
177 if ( !in_array( $type, self::$uploadHandlers ) ) {
178 return null;
179 }
180 }
181
182 // Check whether this upload class is enabled
183 if ( !call_user_func( [ $className, 'isEnabled' ] ) ) {
184 return null;
185 }
186
187 // Check whether the request is valid
188 if ( !call_user_func( [ $className, 'isValidRequest' ], $request ) ) {
189 return null;
190 }
191
192 /** @var UploadBase $handler */
193 $handler = new $className;
194
195 $handler->initializeFromRequest( $request );
196
197 return $handler;
198 }
199
200 /**
201 * Check whether a request if valid for this handler
202 * @param WebRequest $request
203 * @return bool
204 */
205 public static function isValidRequest( $request ) {
206 return false;
207 }
208
209 public function __construct() {
210 }
211
212 /**
213 * Returns the upload type. Should be overridden by child classes
214 *
215 * @since 1.18
216 * @return string
217 */
218 public function getSourceType() {
219 return null;
220 }
221
222 /**
223 * Initialize the path information
224 * @param string $name The desired destination name
225 * @param string $tempPath The temporary path
226 * @param int $fileSize The file size
227 * @param bool $removeTempFile (false) remove the temporary file?
228 * @throws MWException
229 */
230 public function initializePathInfo( $name, $tempPath, $fileSize, $removeTempFile = false ) {
231 $this->mDesiredDestName = $name;
232 if ( FileBackend::isStoragePath( $tempPath ) ) {
233 throw new MWException( __METHOD__ . " given storage path `$tempPath`." );
234 }
235
236 $this->setTempFile( $tempPath, $fileSize );
237 $this->mRemoveTempFile = $removeTempFile;
238 }
239
240 /**
241 * Initialize from a WebRequest. Override this in a subclass.
242 *
243 * @param WebRequest $request
244 */
245 abstract public function initializeFromRequest( &$request );
246
247 /**
248 * @param string $tempPath File system path to temporary file containing the upload
249 * @param integer $fileSize
250 */
251 protected function setTempFile( $tempPath, $fileSize = null ) {
252 $this->mTempPath = $tempPath;
253 $this->mFileSize = $fileSize ?: null;
254 if ( strlen( $this->mTempPath ) && file_exists( $this->mTempPath ) ) {
255 $this->tempFileObj = new TempFSFile( $this->mTempPath );
256 if ( !$fileSize ) {
257 $this->mFileSize = filesize( $this->mTempPath );
258 }
259 } else {
260 $this->tempFileObj = null;
261 }
262 }
263
264 /**
265 * Fetch the file. Usually a no-op
266 * @return Status
267 */
268 public function fetchFile() {
269 return Status::newGood();
270 }
271
272 /**
273 * Return true if the file is empty
274 * @return bool
275 */
276 public function isEmptyFile() {
277 return empty( $this->mFileSize );
278 }
279
280 /**
281 * Return the file size
282 * @return int
283 */
284 public function getFileSize() {
285 return $this->mFileSize;
286 }
287
288 /**
289 * Get the base 36 SHA1 of the file
290 * @return string
291 */
292 public function getTempFileSha1Base36() {
293 return FSFile::getSha1Base36FromPath( $this->mTempPath );
294 }
295
296 /**
297 * @param string $srcPath The source path
298 * @return string|bool The real path if it was a virtual URL Returns false on failure
299 */
300 function getRealPath( $srcPath ) {
301 $repo = RepoGroup::singleton()->getLocalRepo();
302 if ( $repo->isVirtualUrl( $srcPath ) ) {
303 /** @todo Just make uploads work with storage paths UploadFromStash
304 * loads files via virtual URLs.
305 */
306 $tmpFile = $repo->getLocalCopy( $srcPath );
307 if ( $tmpFile ) {
308 $tmpFile->bind( $this ); // keep alive with $this
309 }
310 $path = $tmpFile ? $tmpFile->getPath() : false;
311 } else {
312 $path = $srcPath;
313 }
314
315 return $path;
316 }
317
318 /**
319 * Verify whether the upload is sane.
320 * @return mixed Const self::OK or else an array with error information
321 */
322 public function verifyUpload() {
323
324 /**
325 * If there was no filename or a zero size given, give up quick.
326 */
327 if ( $this->isEmptyFile() ) {
328 return [ 'status' => self::EMPTY_FILE ];
329 }
330
331 /**
332 * Honor $wgMaxUploadSize
333 */
334 $maxSize = self::getMaxUploadSize( $this->getSourceType() );
335 if ( $this->mFileSize > $maxSize ) {
336 return [
337 'status' => self::FILE_TOO_LARGE,
338 'max' => $maxSize,
339 ];
340 }
341
342 /**
343 * Look at the contents of the file; if we can recognize the
344 * type but it's corrupt or data of the wrong type, we should
345 * probably not accept it.
346 */
347 $verification = $this->verifyFile();
348 if ( $verification !== true ) {
349 return [
350 'status' => self::VERIFICATION_ERROR,
351 'details' => $verification
352 ];
353 }
354
355 /**
356 * Make sure this file can be created
357 */
358 $result = $this->validateName();
359 if ( $result !== true ) {
360 return $result;
361 }
362
363 $error = '';
364 if ( !Hooks::run( 'UploadVerification',
365 [ $this->mDestName, $this->mTempPath, &$error ], '1.28' )
366 ) {
367 return [ 'status' => self::HOOK_ABORTED, 'error' => $error ];
368 }
369
370 return [ 'status' => self::OK ];
371 }
372
373 /**
374 * Verify that the name is valid and, if necessary, that we can overwrite
375 *
376 * @return mixed True if valid, otherwise and array with 'status'
377 * and other keys
378 */
379 public function validateName() {
380 $nt = $this->getTitle();
381 if ( is_null( $nt ) ) {
382 $result = [ 'status' => $this->mTitleError ];
383 if ( $this->mTitleError == self::ILLEGAL_FILENAME ) {
384 $result['filtered'] = $this->mFilteredName;
385 }
386 if ( $this->mTitleError == self::FILETYPE_BADTYPE ) {
387 $result['finalExt'] = $this->mFinalExtension;
388 if ( count( $this->mBlackListedExtensions ) ) {
389 $result['blacklistedExt'] = $this->mBlackListedExtensions;
390 }
391 }
392
393 return $result;
394 }
395 $this->mDestName = $this->getLocalFile()->getName();
396
397 return true;
398 }
399
400 /**
401 * Verify the MIME type.
402 *
403 * @note Only checks that it is not an evil MIME. The "does it have
404 * correct extension given its MIME type?" check is in verifyFile.
405 * in `verifyFile()` that MIME type and file extension correlate.
406 * @param string $mime Representing the MIME
407 * @return mixed True if the file is verified, an array otherwise
408 */
409 protected function verifyMimeType( $mime ) {
410 global $wgVerifyMimeType;
411 if ( $wgVerifyMimeType ) {
412 wfDebug( "mime: <$mime> extension: <{$this->mFinalExtension}>\n" );
413 global $wgMimeTypeBlacklist;
414 if ( $this->checkFileExtension( $mime, $wgMimeTypeBlacklist ) ) {
415 return [ 'filetype-badmime', $mime ];
416 }
417
418 # Check what Internet Explorer would detect
419 $fp = fopen( $this->mTempPath, 'rb' );
420 $chunk = fread( $fp, 256 );
421 fclose( $fp );
422
423 $magic = MimeMagic::singleton();
424 $extMime = $magic->guessTypesForExtension( $this->mFinalExtension );
425 $ieTypes = $magic->getIEMimeTypes( $this->mTempPath, $chunk, $extMime );
426 foreach ( $ieTypes as $ieType ) {
427 if ( $this->checkFileExtension( $ieType, $wgMimeTypeBlacklist ) ) {
428 return [ 'filetype-bad-ie-mime', $ieType ];
429 }
430 }
431 }
432
433 return true;
434 }
435
436 /**
437 * Verifies that it's ok to include the uploaded file
438 *
439 * @return mixed True of the file is verified, array otherwise.
440 */
441 protected function verifyFile() {
442 global $wgVerifyMimeType, $wgDisableUploadScriptChecks;
443
444 $status = $this->verifyPartialFile();
445 if ( $status !== true ) {
446 return $status;
447 }
448
449 $this->mFileProps = FSFile::getPropsFromPath( $this->mTempPath, $this->mFinalExtension );
450 $mime = $this->mFileProps['mime'];
451
452 if ( $wgVerifyMimeType ) {
453 # XXX: Missing extension will be caught by validateName() via getTitle()
454 if ( $this->mFinalExtension != '' && !$this->verifyExtension( $mime, $this->mFinalExtension ) ) {
455 return [ 'filetype-mime-mismatch', $this->mFinalExtension, $mime ];
456 }
457 }
458
459 # check for htmlish code and javascript
460 if ( !$wgDisableUploadScriptChecks ) {
461 if ( $this->mFinalExtension == 'svg' || $mime == 'image/svg+xml' ) {
462 $svgStatus = $this->detectScriptInSvg( $this->mTempPath, false );
463 if ( $svgStatus !== false ) {
464 return $svgStatus;
465 }
466 }
467 }
468
469 $handler = MediaHandler::getHandler( $mime );
470 if ( $handler ) {
471 $handlerStatus = $handler->verifyUpload( $this->mTempPath );
472 if ( !$handlerStatus->isOK() ) {
473 $errors = $handlerStatus->getErrorsArray();
474
475 return reset( $errors );
476 }
477 }
478
479 $error = true;
480 Hooks::run( 'UploadVerifyFile', [ $this, $mime, &$error ] );
481 if ( $error !== true ) {
482 if ( !is_array( $error ) ) {
483 $error = [ $error ];
484 }
485 return $error;
486 }
487
488 wfDebug( __METHOD__ . ": all clear; passing.\n" );
489
490 return true;
491 }
492
493 /**
494 * A verification routine suitable for partial files
495 *
496 * Runs the blacklist checks, but not any checks that may
497 * assume the entire file is present.
498 *
499 * @return mixed True for valid or array with error message key.
500 */
501 protected function verifyPartialFile() {
502 global $wgAllowJavaUploads, $wgDisableUploadScriptChecks;
503
504 # getTitle() sets some internal parameters like $this->mFinalExtension
505 $this->getTitle();
506
507 $this->mFileProps = FSFile::getPropsFromPath( $this->mTempPath, $this->mFinalExtension );
508
509 # check MIME type, if desired
510 $mime = $this->mFileProps['file-mime'];
511 $status = $this->verifyMimeType( $mime );
512 if ( $status !== true ) {
513 return $status;
514 }
515
516 # check for htmlish code and javascript
517 if ( !$wgDisableUploadScriptChecks ) {
518 if ( self::detectScript( $this->mTempPath, $mime, $this->mFinalExtension ) ) {
519 return [ 'uploadscripted' ];
520 }
521 if ( $this->mFinalExtension == 'svg' || $mime == 'image/svg+xml' ) {
522 $svgStatus = $this->detectScriptInSvg( $this->mTempPath, true );
523 if ( $svgStatus !== false ) {
524 return $svgStatus;
525 }
526 }
527 }
528
529 # Check for Java applets, which if uploaded can bypass cross-site
530 # restrictions.
531 if ( !$wgAllowJavaUploads ) {
532 $this->mJavaDetected = false;
533 $zipStatus = ZipDirectoryReader::read( $this->mTempPath,
534 [ $this, 'zipEntryCallback' ] );
535 if ( !$zipStatus->isOK() ) {
536 $errors = $zipStatus->getErrorsArray();
537 $error = reset( $errors );
538 if ( $error[0] !== 'zip-wrong-format' ) {
539 return $error;
540 }
541 }
542 if ( $this->mJavaDetected ) {
543 return [ 'uploadjava' ];
544 }
545 }
546
547 # Scan the uploaded file for viruses
548 $virus = $this->detectVirus( $this->mTempPath );
549 if ( $virus ) {
550 return [ 'uploadvirus', $virus ];
551 }
552
553 return true;
554 }
555
556 /**
557 * Callback for ZipDirectoryReader to detect Java class files.
558 *
559 * @param array $entry
560 */
561 function zipEntryCallback( $entry ) {
562 $names = [ $entry['name'] ];
563
564 // If there is a null character, cut off the name at it, because JDK's
565 // ZIP_GetEntry() uses strcmp() if the name hashes match. If a file name
566 // were constructed which had ".class\0" followed by a string chosen to
567 // make the hash collide with the truncated name, that file could be
568 // returned in response to a request for the .class file.
569 $nullPos = strpos( $entry['name'], "\000" );
570 if ( $nullPos !== false ) {
571 $names[] = substr( $entry['name'], 0, $nullPos );
572 }
573
574 // If there is a trailing slash in the file name, we have to strip it,
575 // because that's what ZIP_GetEntry() does.
576 if ( preg_grep( '!\.class/?$!', $names ) ) {
577 $this->mJavaDetected = true;
578 }
579 }
580
581 /**
582 * Alias for verifyTitlePermissions. The function was originally
583 * 'verifyPermissions', but that suggests it's checking the user, when it's
584 * really checking the title + user combination.
585 *
586 * @param User $user User object to verify the permissions against
587 * @return mixed An array as returned by getUserPermissionsErrors or true
588 * in case the user has proper permissions.
589 */
590 public function verifyPermissions( $user ) {
591 return $this->verifyTitlePermissions( $user );
592 }
593
594 /**
595 * Check whether the user can edit, upload and create the image. This
596 * checks only against the current title; if it returns errors, it may
597 * very well be that another title will not give errors. Therefore
598 * isAllowed() should be called as well for generic is-user-blocked or
599 * can-user-upload checking.
600 *
601 * @param User $user User object to verify the permissions against
602 * @return mixed An array as returned by getUserPermissionsErrors or true
603 * in case the user has proper permissions.
604 */
605 public function verifyTitlePermissions( $user ) {
606 /**
607 * If the image is protected, non-sysop users won't be able
608 * to modify it by uploading a new revision.
609 */
610 $nt = $this->getTitle();
611 if ( is_null( $nt ) ) {
612 return true;
613 }
614 $permErrors = $nt->getUserPermissionsErrors( 'edit', $user );
615 $permErrorsUpload = $nt->getUserPermissionsErrors( 'upload', $user );
616 if ( !$nt->exists() ) {
617 $permErrorsCreate = $nt->getUserPermissionsErrors( 'create', $user );
618 } else {
619 $permErrorsCreate = [];
620 }
621 if ( $permErrors || $permErrorsUpload || $permErrorsCreate ) {
622 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsUpload, $permErrors ) );
623 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsCreate, $permErrors ) );
624
625 return $permErrors;
626 }
627
628 $overwriteError = $this->checkOverwrite( $user );
629 if ( $overwriteError !== true ) {
630 return [ $overwriteError ];
631 }
632
633 return true;
634 }
635
636 /**
637 * Check for non fatal problems with the file.
638 *
639 * This should not assume that mTempPath is set.
640 *
641 * @return array Array of warnings
642 */
643 public function checkWarnings() {
644 global $wgLang;
645
646 $warnings = [];
647
648 $localFile = $this->getLocalFile();
649 $localFile->load( File::READ_LATEST );
650 $filename = $localFile->getName();
651
652 /**
653 * Check whether the resulting filename is different from the desired one,
654 * but ignore things like ucfirst() and spaces/underscore things
655 */
656 $comparableName = str_replace( ' ', '_', $this->mDesiredDestName );
657 $comparableName = Title::capitalize( $comparableName, NS_FILE );
658
659 if ( $this->mDesiredDestName != $filename && $comparableName != $filename ) {
660 $warnings['badfilename'] = $filename;
661 }
662
663 // Check whether the file extension is on the unwanted list
664 global $wgCheckFileExtensions, $wgFileExtensions;
665 if ( $wgCheckFileExtensions ) {
666 $extensions = array_unique( $wgFileExtensions );
667 if ( !$this->checkFileExtension( $this->mFinalExtension, $extensions ) ) {
668 $warnings['filetype-unwanted-type'] = [ $this->mFinalExtension,
669 $wgLang->commaList( $extensions ), count( $extensions ) ];
670 }
671 }
672
673 global $wgUploadSizeWarning;
674 if ( $wgUploadSizeWarning && ( $this->mFileSize > $wgUploadSizeWarning ) ) {
675 $warnings['large-file'] = [ $wgUploadSizeWarning, $this->mFileSize ];
676 }
677
678 if ( $this->mFileSize == 0 ) {
679 $warnings['empty-file'] = true;
680 }
681
682 $exists = self::getExistsWarning( $localFile );
683 if ( $exists !== false ) {
684 $warnings['exists'] = $exists;
685 }
686
687 if ( $localFile->wasDeleted() && !$localFile->exists() ) {
688 $warnings['was-deleted'] = $filename;
689 }
690
691 // Check dupes against existing files
692 $hash = $this->getTempFileSha1Base36();
693 $dupes = RepoGroup::singleton()->findBySha1( $hash );
694 $title = $this->getTitle();
695 // Remove all matches against self
696 foreach ( $dupes as $key => $dupe ) {
697 if ( $title->equals( $dupe->getTitle() ) ) {
698 unset( $dupes[$key] );
699 }
700 }
701 if ( $dupes ) {
702 $warnings['duplicate'] = $dupes;
703 }
704
705 // Check dupes against archives
706 $archivedFile = new ArchivedFile( null, 0, '', $hash );
707 if ( $archivedFile->getID() > 0 ) {
708 if ( $archivedFile->userCan( File::DELETED_FILE ) ) {
709 $warnings['duplicate-archive'] = $archivedFile->getName();
710 } else {
711 $warnings['duplicate-archive'] = '';
712 }
713 }
714
715 return $warnings;
716 }
717
718 /**
719 * Really perform the upload. Stores the file in the local repo, watches
720 * if necessary and runs the UploadComplete hook.
721 *
722 * @param string $comment
723 * @param string $pageText
724 * @param bool $watch Whether the file page should be added to user's watchlist.
725 * (This doesn't check $user's permissions.)
726 * @param User $user
727 * @param string[] $tags Change tags to add to the log entry and page revision.
728 * (This doesn't check $user's permissions.)
729 * @return Status Indicating the whether the upload succeeded.
730 */
731 public function performUpload( $comment, $pageText, $watch, $user, $tags = [] ) {
732 $this->getLocalFile()->load( File::READ_LATEST );
733 $props = $this->mFileProps;
734
735 $error = null;
736 Hooks::run( 'UploadVerifyUpload', [ $this, $user, $props, $comment, $pageText, &$error ] );
737 if ( $error ) {
738 if ( !is_array( $error ) ) {
739 $error = [ $error ];
740 }
741 return call_user_func_array( 'Status::newFatal', $error );
742 }
743
744 $status = $this->getLocalFile()->upload(
745 $this->mTempPath,
746 $comment,
747 $pageText,
748 File::DELETE_SOURCE,
749 $props,
750 false,
751 $user,
752 $tags
753 );
754
755 if ( $status->isGood() ) {
756 if ( $watch ) {
757 WatchAction::doWatch(
758 $this->getLocalFile()->getTitle(),
759 $user,
760 User::IGNORE_USER_RIGHTS
761 );
762 }
763 Hooks::run( 'UploadComplete', [ &$this ] );
764
765 $this->postProcessUpload();
766 }
767
768 return $status;
769 }
770
771 /**
772 * Perform extra steps after a successful upload.
773 *
774 * @since 1.25
775 */
776 public function postProcessUpload() {
777 global $wgUploadThumbnailRenderMap;
778
779 $jobs = [];
780
781 $sizes = $wgUploadThumbnailRenderMap;
782 rsort( $sizes );
783
784 $file = $this->getLocalFile();
785
786 foreach ( $sizes as $size ) {
787 if ( $file->isVectorized() || $file->getWidth() > $size ) {
788 $jobs[] = new ThumbnailRenderJob(
789 $file->getTitle(),
790 [ 'transformParams' => [ 'width' => $size ] ]
791 );
792 }
793 }
794
795 if ( $jobs ) {
796 JobQueueGroup::singleton()->push( $jobs );
797 }
798 }
799
800 /**
801 * Returns the title of the file to be uploaded. Sets mTitleError in case
802 * the name was illegal.
803 *
804 * @return Title The title of the file or null in case the name was illegal
805 */
806 public function getTitle() {
807 if ( $this->mTitle !== false ) {
808 return $this->mTitle;
809 }
810 if ( !is_string( $this->mDesiredDestName ) ) {
811 $this->mTitleError = self::ILLEGAL_FILENAME;
812 $this->mTitle = null;
813
814 return $this->mTitle;
815 }
816 /* Assume that if a user specified File:Something.jpg, this is an error
817 * and that the namespace prefix needs to be stripped of.
818 */
819 $title = Title::newFromText( $this->mDesiredDestName );
820 if ( $title && $title->getNamespace() == NS_FILE ) {
821 $this->mFilteredName = $title->getDBkey();
822 } else {
823 $this->mFilteredName = $this->mDesiredDestName;
824 }
825
826 # oi_archive_name is max 255 bytes, which include a timestamp and an
827 # exclamation mark, so restrict file name to 240 bytes.
828 if ( strlen( $this->mFilteredName ) > 240 ) {
829 $this->mTitleError = self::FILENAME_TOO_LONG;
830 $this->mTitle = null;
831
832 return $this->mTitle;
833 }
834
835 /**
836 * Chop off any directories in the given filename. Then
837 * filter out illegal characters, and try to make a legible name
838 * out of it. We'll strip some silently that Title would die on.
839 */
840 $this->mFilteredName = wfStripIllegalFilenameChars( $this->mFilteredName );
841 /* Normalize to title form before we do any further processing */
842 $nt = Title::makeTitleSafe( NS_FILE, $this->mFilteredName );
843 if ( is_null( $nt ) ) {
844 $this->mTitleError = self::ILLEGAL_FILENAME;
845 $this->mTitle = null;
846
847 return $this->mTitle;
848 }
849 $this->mFilteredName = $nt->getDBkey();
850
851 /**
852 * We'll want to blacklist against *any* 'extension', and use
853 * only the final one for the whitelist.
854 */
855 list( $partname, $ext ) = $this->splitExtensions( $this->mFilteredName );
856
857 if ( count( $ext ) ) {
858 $this->mFinalExtension = trim( $ext[count( $ext ) - 1] );
859 } else {
860 $this->mFinalExtension = '';
861
862 # No extension, try guessing one
863 $magic = MimeMagic::singleton();
864 $mime = $magic->guessMimeType( $this->mTempPath );
865 if ( $mime !== 'unknown/unknown' ) {
866 # Get a space separated list of extensions
867 $extList = $magic->getExtensionsForType( $mime );
868 if ( $extList ) {
869 # Set the extension to the canonical extension
870 $this->mFinalExtension = strtok( $extList, ' ' );
871
872 # Fix up the other variables
873 $this->mFilteredName .= ".{$this->mFinalExtension}";
874 $nt = Title::makeTitleSafe( NS_FILE, $this->mFilteredName );
875 $ext = [ $this->mFinalExtension ];
876 }
877 }
878 }
879
880 /* Don't allow users to override the blacklist (check file extension) */
881 global $wgCheckFileExtensions, $wgStrictFileExtensions;
882 global $wgFileExtensions, $wgFileBlacklist;
883
884 $blackListedExtensions = $this->checkFileExtensionList( $ext, $wgFileBlacklist );
885
886 if ( $this->mFinalExtension == '' ) {
887 $this->mTitleError = self::FILETYPE_MISSING;
888 $this->mTitle = null;
889
890 return $this->mTitle;
891 } elseif ( $blackListedExtensions ||
892 ( $wgCheckFileExtensions && $wgStrictFileExtensions &&
893 !$this->checkFileExtension( $this->mFinalExtension, $wgFileExtensions ) )
894 ) {
895 $this->mBlackListedExtensions = $blackListedExtensions;
896 $this->mTitleError = self::FILETYPE_BADTYPE;
897 $this->mTitle = null;
898
899 return $this->mTitle;
900 }
901
902 // Windows may be broken with special characters, see bug 1780
903 if ( !preg_match( '/^[\x0-\x7f]*$/', $nt->getText() )
904 && !RepoGroup::singleton()->getLocalRepo()->backendSupportsUnicodePaths()
905 ) {
906 $this->mTitleError = self::WINDOWS_NONASCII_FILENAME;
907 $this->mTitle = null;
908
909 return $this->mTitle;
910 }
911
912 # If there was more than one "extension", reassemble the base
913 # filename to prevent bogus complaints about length
914 if ( count( $ext ) > 1 ) {
915 $iterations = count( $ext ) - 1;
916 for ( $i = 0; $i < $iterations; $i++ ) {
917 $partname .= '.' . $ext[$i];
918 }
919 }
920
921 if ( strlen( $partname ) < 1 ) {
922 $this->mTitleError = self::MIN_LENGTH_PARTNAME;
923 $this->mTitle = null;
924
925 return $this->mTitle;
926 }
927
928 $this->mTitle = $nt;
929
930 return $this->mTitle;
931 }
932
933 /**
934 * Return the local file and initializes if necessary.
935 *
936 * @return LocalFile|UploadStashFile|null
937 */
938 public function getLocalFile() {
939 if ( is_null( $this->mLocalFile ) ) {
940 $nt = $this->getTitle();
941 $this->mLocalFile = is_null( $nt ) ? null : wfLocalFile( $nt );
942 }
943
944 return $this->mLocalFile;
945 }
946
947 /**
948 * If the user does not supply all necessary information in the first upload
949 * form submission (either by accident or by design) then we may want to
950 * stash the file temporarily, get more information, and publish the file
951 * later.
952 *
953 * This method will stash a file in a temporary directory for later
954 * processing, and save the necessary descriptive info into the database.
955 * This method returns the file object, which also has a 'fileKey' property
956 * which can be passed through a form or API request to find this stashed
957 * file again.
958 *
959 * @param User $user
960 * @return UploadStashFile Stashed file
961 */
962 public function stashFile( User $user = null ) {
963 $stash = RepoGroup::singleton()->getLocalRepo()->getUploadStash( $user );
964 $file = $stash->stashFile( $this->mTempPath, $this->getSourceType() );
965 $this->mLocalFile = $file;
966
967 return $file;
968 }
969
970 /**
971 * Stash a file in a temporary directory, returning a key which can be used
972 * to find the file again. See stashFile().
973 *
974 * @deprecated since 1.28
975 * @return string File key
976 */
977 public function stashFileGetKey() {
978 wfDeprecated( __METHOD__, '1.28' );
979 return $this->stashFile()->getFileKey();
980 }
981
982 /**
983 * alias for stashFileGetKey, for backwards compatibility
984 *
985 * @deprecated since 1.28
986 * @return string File key
987 */
988 public function stashSession() {
989 wfDeprecated( __METHOD__, '1.28' );
990 return $this->stashFile()->getFileKey();
991 }
992
993 /**
994 * If we've modified the upload file we need to manually remove it
995 * on exit to clean up.
996 */
997 public function cleanupTempFile() {
998 if ( $this->mRemoveTempFile && $this->tempFileObj ) {
999 // Delete when all relevant TempFSFile handles go out of scope
1000 wfDebug( __METHOD__ . ": Marked temporary file '{$this->mTempPath}' for removal\n" );
1001 $this->tempFileObj->autocollect();
1002 }
1003 }
1004
1005 public function getTempPath() {
1006 return $this->mTempPath;
1007 }
1008
1009 /**
1010 * Split a file into a base name and all dot-delimited 'extensions'
1011 * on the end. Some web server configurations will fall back to
1012 * earlier pseudo-'extensions' to determine type and execute
1013 * scripts, so the blacklist needs to check them all.
1014 *
1015 * @param string $filename
1016 * @return array
1017 */
1018 public static function splitExtensions( $filename ) {
1019 $bits = explode( '.', $filename );
1020 $basename = array_shift( $bits );
1021
1022 return [ $basename, $bits ];
1023 }
1024
1025 /**
1026 * Perform case-insensitive match against a list of file extensions.
1027 * Returns true if the extension is in the list.
1028 *
1029 * @param string $ext
1030 * @param array $list
1031 * @return bool
1032 */
1033 public static function checkFileExtension( $ext, $list ) {
1034 return in_array( strtolower( $ext ), $list );
1035 }
1036
1037 /**
1038 * Perform case-insensitive match against a list of file extensions.
1039 * Returns an array of matching extensions.
1040 *
1041 * @param array $ext
1042 * @param array $list
1043 * @return bool
1044 */
1045 public static function checkFileExtensionList( $ext, $list ) {
1046 return array_intersect( array_map( 'strtolower', $ext ), $list );
1047 }
1048
1049 /**
1050 * Checks if the MIME type of the uploaded file matches the file extension.
1051 *
1052 * @param string $mime The MIME type of the uploaded file
1053 * @param string $extension The filename extension that the file is to be served with
1054 * @return bool
1055 */
1056 public static function verifyExtension( $mime, $extension ) {
1057 $magic = MimeMagic::singleton();
1058
1059 if ( !$mime || $mime == 'unknown' || $mime == 'unknown/unknown' ) {
1060 if ( !$magic->isRecognizableExtension( $extension ) ) {
1061 wfDebug( __METHOD__ . ": passing file with unknown detected mime type; " .
1062 "unrecognized extension '$extension', can't verify\n" );
1063
1064 return true;
1065 } else {
1066 wfDebug( __METHOD__ . ": rejecting file with unknown detected mime type; " .
1067 "recognized extension '$extension', so probably invalid file\n" );
1068
1069 return false;
1070 }
1071 }
1072
1073 $match = $magic->isMatchingExtension( $extension, $mime );
1074
1075 if ( $match === null ) {
1076 if ( $magic->getTypesForExtension( $extension ) !== null ) {
1077 wfDebug( __METHOD__ . ": No extension known for $mime, but we know a mime for $extension\n" );
1078
1079 return false;
1080 } else {
1081 wfDebug( __METHOD__ . ": no file extension known for mime type $mime, passing file\n" );
1082
1083 return true;
1084 }
1085 } elseif ( $match === true ) {
1086 wfDebug( __METHOD__ . ": mime type $mime matches extension $extension, passing file\n" );
1087
1088 /** @todo If it's a bitmap, make sure PHP or ImageMagick resp. can handle it! */
1089 return true;
1090 } else {
1091 wfDebug( __METHOD__
1092 . ": mime type $mime mismatches file extension $extension, rejecting file\n" );
1093
1094 return false;
1095 }
1096 }
1097
1098 /**
1099 * Heuristic for detecting files that *could* contain JavaScript instructions or
1100 * things that may look like HTML to a browser and are thus
1101 * potentially harmful. The present implementation will produce false
1102 * positives in some situations.
1103 *
1104 * @param string $file Pathname to the temporary upload file
1105 * @param string $mime The MIME type of the file
1106 * @param string $extension The extension of the file
1107 * @return bool True if the file contains something looking like embedded scripts
1108 */
1109 public static function detectScript( $file, $mime, $extension ) {
1110 global $wgAllowTitlesInSVG;
1111
1112 # ugly hack: for text files, always look at the entire file.
1113 # For binary field, just check the first K.
1114
1115 if ( strpos( $mime, 'text/' ) === 0 ) {
1116 $chunk = file_get_contents( $file );
1117 } else {
1118 $fp = fopen( $file, 'rb' );
1119 $chunk = fread( $fp, 1024 );
1120 fclose( $fp );
1121 }
1122
1123 $chunk = strtolower( $chunk );
1124
1125 if ( !$chunk ) {
1126 return false;
1127 }
1128
1129 # decode from UTF-16 if needed (could be used for obfuscation).
1130 if ( substr( $chunk, 0, 2 ) == "\xfe\xff" ) {
1131 $enc = 'UTF-16BE';
1132 } elseif ( substr( $chunk, 0, 2 ) == "\xff\xfe" ) {
1133 $enc = 'UTF-16LE';
1134 } else {
1135 $enc = null;
1136 }
1137
1138 if ( $enc ) {
1139 $chunk = iconv( $enc, "ASCII//IGNORE", $chunk );
1140 }
1141
1142 $chunk = trim( $chunk );
1143
1144 /** @todo FIXME: Convert from UTF-16 if necessary! */
1145 wfDebug( __METHOD__ . ": checking for embedded scripts and HTML stuff\n" );
1146
1147 # check for HTML doctype
1148 if ( preg_match( "/<!DOCTYPE *X?HTML/i", $chunk ) ) {
1149 return true;
1150 }
1151
1152 // Some browsers will interpret obscure xml encodings as UTF-8, while
1153 // PHP/expat will interpret the given encoding in the xml declaration (bug 47304)
1154 if ( $extension == 'svg' || strpos( $mime, 'image/svg' ) === 0 ) {
1155 if ( self::checkXMLEncodingMissmatch( $file ) ) {
1156 return true;
1157 }
1158 }
1159
1160 /**
1161 * Internet Explorer for Windows performs some really stupid file type
1162 * autodetection which can cause it to interpret valid image files as HTML
1163 * and potentially execute JavaScript, creating a cross-site scripting
1164 * attack vectors.
1165 *
1166 * Apple's Safari browser also performs some unsafe file type autodetection
1167 * which can cause legitimate files to be interpreted as HTML if the
1168 * web server is not correctly configured to send the right content-type
1169 * (or if you're really uploading plain text and octet streams!)
1170 *
1171 * Returns true if IE is likely to mistake the given file for HTML.
1172 * Also returns true if Safari would mistake the given file for HTML
1173 * when served with a generic content-type.
1174 */
1175 $tags = [
1176 '<a href',
1177 '<body',
1178 '<head',
1179 '<html', # also in safari
1180 '<img',
1181 '<pre',
1182 '<script', # also in safari
1183 '<table'
1184 ];
1185
1186 if ( !$wgAllowTitlesInSVG && $extension !== 'svg' && $mime !== 'image/svg' ) {
1187 $tags[] = '<title';
1188 }
1189
1190 foreach ( $tags as $tag ) {
1191 if ( false !== strpos( $chunk, $tag ) ) {
1192 wfDebug( __METHOD__ . ": found something that may make it be mistaken for html: $tag\n" );
1193
1194 return true;
1195 }
1196 }
1197
1198 /*
1199 * look for JavaScript
1200 */
1201
1202 # resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1203 $chunk = Sanitizer::decodeCharReferences( $chunk );
1204
1205 # look for script-types
1206 if ( preg_match( '!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim', $chunk ) ) {
1207 wfDebug( __METHOD__ . ": found script types\n" );
1208
1209 return true;
1210 }
1211
1212 # look for html-style script-urls
1213 if ( preg_match( '!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1214 wfDebug( __METHOD__ . ": found html-style script urls\n" );
1215
1216 return true;
1217 }
1218
1219 # look for css-style script-urls
1220 if ( preg_match( '!url\s*\(\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1221 wfDebug( __METHOD__ . ": found css-style script urls\n" );
1222
1223 return true;
1224 }
1225
1226 wfDebug( __METHOD__ . ": no scripts found\n" );
1227
1228 return false;
1229 }
1230
1231 /**
1232 * Check a whitelist of xml encodings that are known not to be interpreted differently
1233 * by the server's xml parser (expat) and some common browsers.
1234 *
1235 * @param string $file Pathname to the temporary upload file
1236 * @return bool True if the file contains an encoding that could be misinterpreted
1237 */
1238 public static function checkXMLEncodingMissmatch( $file ) {
1239 global $wgSVGMetadataCutoff;
1240 $contents = file_get_contents( $file, false, null, -1, $wgSVGMetadataCutoff );
1241 $encodingRegex = '!encoding[ \t\n\r]*=[ \t\n\r]*[\'"](.*?)[\'"]!si';
1242
1243 if ( preg_match( "!<\?xml\b(.*?)\?>!si", $contents, $matches ) ) {
1244 if ( preg_match( $encodingRegex, $matches[1], $encMatch )
1245 && !in_array( strtoupper( $encMatch[1] ), self::$safeXmlEncodings )
1246 ) {
1247 wfDebug( __METHOD__ . ": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1248
1249 return true;
1250 }
1251 } elseif ( preg_match( "!<\?xml\b!si", $contents ) ) {
1252 // Start of XML declaration without an end in the first $wgSVGMetadataCutoff
1253 // bytes. There shouldn't be a legitimate reason for this to happen.
1254 wfDebug( __METHOD__ . ": Unmatched XML declaration start\n" );
1255
1256 return true;
1257 } elseif ( substr( $contents, 0, 4 ) == "\x4C\x6F\xA7\x94" ) {
1258 // EBCDIC encoded XML
1259 wfDebug( __METHOD__ . ": EBCDIC Encoded XML\n" );
1260
1261 return true;
1262 }
1263
1264 // It's possible the file is encoded with multi-byte encoding, so re-encode attempt to
1265 // detect the encoding in case is specifies an encoding not whitelisted in self::$safeXmlEncodings
1266 $attemptEncodings = [ 'UTF-16', 'UTF-16BE', 'UTF-32', 'UTF-32BE' ];
1267 foreach ( $attemptEncodings as $encoding ) {
1268 MediaWiki\suppressWarnings();
1269 $str = iconv( $encoding, 'UTF-8', $contents );
1270 MediaWiki\restoreWarnings();
1271 if ( $str != '' && preg_match( "!<\?xml\b(.*?)\?>!si", $str, $matches ) ) {
1272 if ( preg_match( $encodingRegex, $matches[1], $encMatch )
1273 && !in_array( strtoupper( $encMatch[1] ), self::$safeXmlEncodings )
1274 ) {
1275 wfDebug( __METHOD__ . ": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1276
1277 return true;
1278 }
1279 } elseif ( $str != '' && preg_match( "!<\?xml\b!si", $str ) ) {
1280 // Start of XML declaration without an end in the first $wgSVGMetadataCutoff
1281 // bytes. There shouldn't be a legitimate reason for this to happen.
1282 wfDebug( __METHOD__ . ": Unmatched XML declaration start\n" );
1283
1284 return true;
1285 }
1286 }
1287
1288 return false;
1289 }
1290
1291 /**
1292 * @param string $filename
1293 * @param bool $partial
1294 * @return mixed False of the file is verified (does not contain scripts), array otherwise.
1295 */
1296 protected function detectScriptInSvg( $filename, $partial ) {
1297 $this->mSVGNSError = false;
1298 $check = new XmlTypeCheck(
1299 $filename,
1300 [ $this, 'checkSvgScriptCallback' ],
1301 true,
1302 [ 'processing_instruction_handler' => 'UploadBase::checkSvgPICallback' ]
1303 );
1304 if ( $check->wellFormed !== true ) {
1305 // Invalid xml (bug 58553)
1306 // But only when non-partial (bug 65724)
1307 return $partial ? false : [ 'uploadinvalidxml' ];
1308 } elseif ( $check->filterMatch ) {
1309 if ( $this->mSVGNSError ) {
1310 return [ 'uploadscriptednamespace', $this->mSVGNSError ];
1311 }
1312
1313 return $check->filterMatchType;
1314 }
1315
1316 return false;
1317 }
1318
1319 /**
1320 * Callback to filter SVG Processing Instructions.
1321 * @param string $target Processing instruction name
1322 * @param string $data Processing instruction attribute and value
1323 * @return bool (true if the filter identified something bad)
1324 */
1325 public static function checkSvgPICallback( $target, $data ) {
1326 // Don't allow external stylesheets (bug 57550)
1327 if ( preg_match( '/xml-stylesheet/i', $target ) ) {
1328 return [ 'upload-scripted-pi-callback' ];
1329 }
1330
1331 return false;
1332 }
1333
1334 /**
1335 * @todo Replace this with a whitelist filter!
1336 * @param string $element
1337 * @param array $attribs
1338 * @return bool
1339 */
1340 public function checkSvgScriptCallback( $element, $attribs, $data = null ) {
1341
1342 list( $namespace, $strippedElement ) = $this->splitXmlNamespace( $element );
1343
1344 // We specifically don't include:
1345 // http://www.w3.org/1999/xhtml (bug 60771)
1346 static $validNamespaces = [
1347 '',
1348 'adobe:ns:meta/',
1349 'http://creativecommons.org/ns#',
1350 'http://inkscape.sourceforge.net/dtd/sodipodi-0.dtd',
1351 'http://ns.adobe.com/adobeillustrator/10.0/',
1352 'http://ns.adobe.com/adobesvgviewerextensions/3.0/',
1353 'http://ns.adobe.com/extensibility/1.0/',
1354 'http://ns.adobe.com/flows/1.0/',
1355 'http://ns.adobe.com/illustrator/1.0/',
1356 'http://ns.adobe.com/imagereplacement/1.0/',
1357 'http://ns.adobe.com/pdf/1.3/',
1358 'http://ns.adobe.com/photoshop/1.0/',
1359 'http://ns.adobe.com/saveforweb/1.0/',
1360 'http://ns.adobe.com/variables/1.0/',
1361 'http://ns.adobe.com/xap/1.0/',
1362 'http://ns.adobe.com/xap/1.0/g/',
1363 'http://ns.adobe.com/xap/1.0/g/img/',
1364 'http://ns.adobe.com/xap/1.0/mm/',
1365 'http://ns.adobe.com/xap/1.0/rights/',
1366 'http://ns.adobe.com/xap/1.0/stype/dimensions#',
1367 'http://ns.adobe.com/xap/1.0/stype/font#',
1368 'http://ns.adobe.com/xap/1.0/stype/manifestitem#',
1369 'http://ns.adobe.com/xap/1.0/stype/resourceevent#',
1370 'http://ns.adobe.com/xap/1.0/stype/resourceref#',
1371 'http://ns.adobe.com/xap/1.0/t/pg/',
1372 'http://purl.org/dc/elements/1.1/',
1373 'http://purl.org/dc/elements/1.1',
1374 'http://schemas.microsoft.com/visio/2003/svgextensions/',
1375 'http://sodipodi.sourceforge.net/dtd/sodipodi-0.dtd',
1376 'http://taptrix.com/inkpad/svg_extensions',
1377 'http://web.resource.org/cc/',
1378 'http://www.freesoftware.fsf.org/bkchem/cdml',
1379 'http://www.inkscape.org/namespaces/inkscape',
1380 'http://www.opengis.net/gml',
1381 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
1382 'http://www.w3.org/2000/svg',
1383 'http://www.w3.org/tr/rec-rdf-syntax/',
1384 ];
1385
1386 if ( !in_array( $namespace, $validNamespaces ) ) {
1387 wfDebug( __METHOD__ . ": Non-svg namespace '$namespace' in uploaded file.\n" );
1388 /** @todo Return a status object to a closure in XmlTypeCheck, for MW1.21+ */
1389 $this->mSVGNSError = $namespace;
1390
1391 return true;
1392 }
1393
1394 /*
1395 * check for elements that can contain javascript
1396 */
1397 if ( $strippedElement == 'script' ) {
1398 wfDebug( __METHOD__ . ": Found script element '$element' in uploaded file.\n" );
1399
1400 return [ 'uploaded-script-svg', $strippedElement ];
1401 }
1402
1403 # e.g., <svg xmlns="http://www.w3.org/2000/svg">
1404 # <handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(1)</handler> </svg>
1405 if ( $strippedElement == 'handler' ) {
1406 wfDebug( __METHOD__ . ": Found scriptable element '$element' in uploaded file.\n" );
1407
1408 return [ 'uploaded-script-svg', $strippedElement ];
1409 }
1410
1411 # SVG reported in Feb '12 that used xml:stylesheet to generate javascript block
1412 if ( $strippedElement == 'stylesheet' ) {
1413 wfDebug( __METHOD__ . ": Found scriptable element '$element' in uploaded file.\n" );
1414
1415 return [ 'uploaded-script-svg', $strippedElement ];
1416 }
1417
1418 # Block iframes, in case they pass the namespace check
1419 if ( $strippedElement == 'iframe' ) {
1420 wfDebug( __METHOD__ . ": iframe in uploaded file.\n" );
1421
1422 return [ 'uploaded-script-svg', $strippedElement ];
1423 }
1424
1425 # Check <style> css
1426 if ( $strippedElement == 'style'
1427 && self::checkCssFragment( Sanitizer::normalizeCss( $data ) )
1428 ) {
1429 wfDebug( __METHOD__ . ": hostile css in style element.\n" );
1430 return [ 'uploaded-hostile-svg' ];
1431 }
1432
1433 foreach ( $attribs as $attrib => $value ) {
1434 $stripped = $this->stripXmlNamespace( $attrib );
1435 $value = strtolower( $value );
1436
1437 if ( substr( $stripped, 0, 2 ) == 'on' ) {
1438 wfDebug( __METHOD__
1439 . ": Found event-handler attribute '$attrib'='$value' in uploaded file.\n" );
1440
1441 return [ 'uploaded-event-handler-on-svg', $attrib, $value ];
1442 }
1443
1444 # Do not allow relative links, or unsafe url schemas.
1445 # For <a> tags, only data:, http: and https: and same-document
1446 # fragment links are allowed. For all other tags, only data:
1447 # and fragment are allowed.
1448 if ( $stripped == 'href'
1449 && strpos( $value, 'data:' ) !== 0
1450 && strpos( $value, '#' ) !== 0
1451 ) {
1452 if ( !( $strippedElement === 'a'
1453 && preg_match( '!^https?://!i', $value ) )
1454 ) {
1455 wfDebug( __METHOD__ . ": Found href attribute <$strippedElement "
1456 . "'$attrib'='$value' in uploaded file.\n" );
1457
1458 return [ 'uploaded-href-attribute-svg', $strippedElement, $attrib, $value ];
1459 }
1460 }
1461
1462 # only allow data: targets that should be safe. This prevents vectors like,
1463 # image/svg, text/xml, application/xml, and text/html, which can contain scripts
1464 if ( $stripped == 'href' && strncasecmp( 'data:', $value, 5 ) === 0 ) {
1465 // rfc2397 parameters. This is only slightly slower than (;[\w;]+)*.
1466 // @codingStandardsIgnoreStart Generic.Files.LineLength
1467 $parameters = '(?>;[a-zA-Z0-9\!#$&\'*+.^_`{|}~-]+=(?>[a-zA-Z0-9\!#$&\'*+.^_`{|}~-]+|"(?>[\0-\x0c\x0e-\x21\x23-\x5b\x5d-\x7f]+|\\\\[\0-\x7f])*"))*(?:;base64)?';
1468 // @codingStandardsIgnoreEnd
1469
1470 if ( !preg_match( "!^data:\s*image/(gif|jpeg|jpg|png)$parameters,!i", $value ) ) {
1471 wfDebug( __METHOD__ . ": Found href to unwhitelisted data: uri "
1472 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1473 return [ 'uploaded-href-unsafe-target-svg', $strippedElement, $attrib, $value ];
1474 }
1475 }
1476
1477 # Change href with animate from (http://html5sec.org/#137).
1478 if ( $stripped === 'attributename'
1479 && $strippedElement === 'animate'
1480 && $this->stripXmlNamespace( $value ) == 'href'
1481 ) {
1482 wfDebug( __METHOD__ . ": Found animate that might be changing href using from "
1483 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1484
1485 return [ 'uploaded-animate-svg', $strippedElement, $attrib, $value ];
1486 }
1487
1488 # use set/animate to add event-handler attribute to parent
1489 if ( ( $strippedElement == 'set' || $strippedElement == 'animate' )
1490 && $stripped == 'attributename'
1491 && substr( $value, 0, 2 ) == 'on'
1492 ) {
1493 wfDebug( __METHOD__ . ": Found svg setting event-handler attribute with "
1494 . "\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1495
1496 return [ 'uploaded-setting-event-handler-svg', $strippedElement, $stripped, $value ];
1497 }
1498
1499 # use set to add href attribute to parent element
1500 if ( $strippedElement == 'set'
1501 && $stripped == 'attributename'
1502 && strpos( $value, 'href' ) !== false
1503 ) {
1504 wfDebug( __METHOD__ . ": Found svg setting href attribute '$value' in uploaded file.\n" );
1505
1506 return [ 'uploaded-setting-href-svg' ];
1507 }
1508
1509 # use set to add a remote / data / script target to an element
1510 if ( $strippedElement == 'set'
1511 && $stripped == 'to'
1512 && preg_match( '!(http|https|data|script):!sim', $value )
1513 ) {
1514 wfDebug( __METHOD__ . ": Found svg setting attribute to '$value' in uploaded file.\n" );
1515
1516 return [ 'uploaded-wrong-setting-svg', $value ];
1517 }
1518
1519 # use handler attribute with remote / data / script
1520 if ( $stripped == 'handler' && preg_match( '!(http|https|data|script):!sim', $value ) ) {
1521 wfDebug( __METHOD__ . ": Found svg setting handler with remote/data/script "
1522 . "'$attrib'='$value' in uploaded file.\n" );
1523
1524 return [ 'uploaded-setting-handler-svg', $attrib, $value ];
1525 }
1526
1527 # use CSS styles to bring in remote code
1528 if ( $stripped == 'style'
1529 && self::checkCssFragment( Sanitizer::normalizeCss( $value ) )
1530 ) {
1531 wfDebug( __METHOD__ . ": Found svg setting a style with "
1532 . "remote url '$attrib'='$value' in uploaded file.\n" );
1533 return [ 'uploaded-remote-url-svg', $attrib, $value ];
1534 }
1535
1536 # Several attributes can include css, css character escaping isn't allowed
1537 $cssAttrs = [ 'font', 'clip-path', 'fill', 'filter', 'marker',
1538 'marker-end', 'marker-mid', 'marker-start', 'mask', 'stroke' ];
1539 if ( in_array( $stripped, $cssAttrs )
1540 && self::checkCssFragment( $value )
1541 ) {
1542 wfDebug( __METHOD__ . ": Found svg setting a style with "
1543 . "remote url '$attrib'='$value' in uploaded file.\n" );
1544 return [ 'uploaded-remote-url-svg', $attrib, $value ];
1545 }
1546
1547 # image filters can pull in url, which could be svg that executes scripts
1548 if ( $strippedElement == 'image'
1549 && $stripped == 'filter'
1550 && preg_match( '!url\s*\(!sim', $value )
1551 ) {
1552 wfDebug( __METHOD__ . ": Found image filter with url: "
1553 . "\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1554
1555 return [ 'uploaded-image-filter-svg', $strippedElement, $stripped, $value ];
1556 }
1557 }
1558
1559 return false; // No scripts detected
1560 }
1561
1562 /**
1563 * Check a block of CSS or CSS fragment for anything that looks like
1564 * it is bringing in remote code.
1565 * @param string $value a string of CSS
1566 * @param bool $propOnly only check css properties (start regex with :)
1567 * @return bool true if the CSS contains an illegal string, false if otherwise
1568 */
1569 private static function checkCssFragment( $value ) {
1570
1571 # Forbid external stylesheets, for both reliability and to protect viewer's privacy
1572 if ( stripos( $value, '@import' ) !== false ) {
1573 return true;
1574 }
1575
1576 # We allow @font-face to embed fonts with data: urls, so we snip the string
1577 # 'url' out so this case won't match when we check for urls below
1578 $pattern = '!(@font-face\s*{[^}]*src:)url(\("data:;base64,)!im';
1579 $value = preg_replace( $pattern, '$1$2', $value );
1580
1581 # Check for remote and executable CSS. Unlike in Sanitizer::checkCss, the CSS
1582 # properties filter and accelerator don't seem to be useful for xss in SVG files.
1583 # Expression and -o-link don't seem to work either, but filtering them here in case.
1584 # Additionally, we catch remote urls like url("http:..., url('http:..., url(http:...,
1585 # but not local ones such as url("#..., url('#..., url(#....
1586 if ( preg_match( '!expression
1587 | -o-link\s*:
1588 | -o-link-source\s*:
1589 | -o-replace\s*:!imx', $value ) ) {
1590 return true;
1591 }
1592
1593 if ( preg_match_all(
1594 "!(\s*(url|image|image-set)\s*\(\s*[\"']?\s*[^#]+.*?\))!sim",
1595 $value,
1596 $matches
1597 ) !== 0
1598 ) {
1599 # TODO: redo this in one regex. Until then, url("#whatever") matches the first
1600 foreach ( $matches[1] as $match ) {
1601 if ( !preg_match( "!\s*(url|image|image-set)\s*\(\s*(#|'#|\"#)!im", $match ) ) {
1602 return true;
1603 }
1604 }
1605 }
1606
1607 if ( preg_match( '/[\000-\010\013\016-\037\177]/', $value ) ) {
1608 return true;
1609 }
1610
1611 return false;
1612 }
1613
1614 /**
1615 * Divide the element name passed by the xml parser to the callback into URI and prifix.
1616 * @param string $element
1617 * @return array Containing the namespace URI and prefix
1618 */
1619 private static function splitXmlNamespace( $element ) {
1620 // 'http://www.w3.org/2000/svg:script' -> array( 'http://www.w3.org/2000/svg', 'script' )
1621 $parts = explode( ':', strtolower( $element ) );
1622 $name = array_pop( $parts );
1623 $ns = implode( ':', $parts );
1624
1625 return [ $ns, $name ];
1626 }
1627
1628 /**
1629 * @param string $name
1630 * @return string
1631 */
1632 private function stripXmlNamespace( $name ) {
1633 // 'http://www.w3.org/2000/svg:script' -> 'script'
1634 $parts = explode( ':', strtolower( $name ) );
1635
1636 return array_pop( $parts );
1637 }
1638
1639 /**
1640 * Generic wrapper function for a virus scanner program.
1641 * This relies on the $wgAntivirus and $wgAntivirusSetup variables.
1642 * $wgAntivirusRequired may be used to deny upload if the scan fails.
1643 *
1644 * @param string $file Pathname to the temporary upload file
1645 * @return mixed False if not virus is found, null if the scan fails or is disabled,
1646 * or a string containing feedback from the virus scanner if a virus was found.
1647 * If textual feedback is missing but a virus was found, this function returns true.
1648 */
1649 public static function detectVirus( $file ) {
1650 global $wgAntivirus, $wgAntivirusSetup, $wgAntivirusRequired, $wgOut;
1651
1652 if ( !$wgAntivirus ) {
1653 wfDebug( __METHOD__ . ": virus scanner disabled\n" );
1654
1655 return null;
1656 }
1657
1658 if ( !$wgAntivirusSetup[$wgAntivirus] ) {
1659 wfDebug( __METHOD__ . ": unknown virus scanner: $wgAntivirus\n" );
1660 $wgOut->wrapWikiMsg( "<div class=\"error\">\n$1\n</div>",
1661 [ 'virus-badscanner', $wgAntivirus ] );
1662
1663 return wfMessage( 'virus-unknownscanner' )->text() . " $wgAntivirus";
1664 }
1665
1666 # look up scanner configuration
1667 $command = $wgAntivirusSetup[$wgAntivirus]['command'];
1668 $exitCodeMap = $wgAntivirusSetup[$wgAntivirus]['codemap'];
1669 $msgPattern = isset( $wgAntivirusSetup[$wgAntivirus]['messagepattern'] ) ?
1670 $wgAntivirusSetup[$wgAntivirus]['messagepattern'] : null;
1671
1672 if ( strpos( $command, "%f" ) === false ) {
1673 # simple pattern: append file to scan
1674 $command .= " " . wfEscapeShellArg( $file );
1675 } else {
1676 # complex pattern: replace "%f" with file to scan
1677 $command = str_replace( "%f", wfEscapeShellArg( $file ), $command );
1678 }
1679
1680 wfDebug( __METHOD__ . ": running virus scan: $command \n" );
1681
1682 # execute virus scanner
1683 $exitCode = false;
1684
1685 # NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1686 # that does not seem to be worth the pain.
1687 # Ask me (Duesentrieb) about it if it's ever needed.
1688 $output = wfShellExecWithStderr( $command, $exitCode );
1689
1690 # map exit code to AV_xxx constants.
1691 $mappedCode = $exitCode;
1692 if ( $exitCodeMap ) {
1693 if ( isset( $exitCodeMap[$exitCode] ) ) {
1694 $mappedCode = $exitCodeMap[$exitCode];
1695 } elseif ( isset( $exitCodeMap["*"] ) ) {
1696 $mappedCode = $exitCodeMap["*"];
1697 }
1698 }
1699
1700 /* NB: AV_NO_VIRUS is 0 but AV_SCAN_FAILED is false,
1701 * so we need the strict equalities === and thus can't use a switch here
1702 */
1703 if ( $mappedCode === AV_SCAN_FAILED ) {
1704 # scan failed (code was mapped to false by $exitCodeMap)
1705 wfDebug( __METHOD__ . ": failed to scan $file (code $exitCode).\n" );
1706
1707 $output = $wgAntivirusRequired
1708 ? wfMessage( 'virus-scanfailed', [ $exitCode ] )->text()
1709 : null;
1710 } elseif ( $mappedCode === AV_SCAN_ABORTED ) {
1711 # scan failed because filetype is unknown (probably imune)
1712 wfDebug( __METHOD__ . ": unsupported file type $file (code $exitCode).\n" );
1713 $output = null;
1714 } elseif ( $mappedCode === AV_NO_VIRUS ) {
1715 # no virus found
1716 wfDebug( __METHOD__ . ": file passed virus scan.\n" );
1717 $output = false;
1718 } else {
1719 $output = trim( $output );
1720
1721 if ( !$output ) {
1722 $output = true; # if there's no output, return true
1723 } elseif ( $msgPattern ) {
1724 $groups = [];
1725 if ( preg_match( $msgPattern, $output, $groups ) ) {
1726 if ( $groups[1] ) {
1727 $output = $groups[1];
1728 }
1729 }
1730 }
1731
1732 wfDebug( __METHOD__ . ": FOUND VIRUS! scanner feedback: $output \n" );
1733 }
1734
1735 return $output;
1736 }
1737
1738 /**
1739 * Check if there's an overwrite conflict and, if so, if restrictions
1740 * forbid this user from performing the upload.
1741 *
1742 * @param User $user
1743 *
1744 * @return mixed True on success, array on failure
1745 */
1746 private function checkOverwrite( $user ) {
1747 // First check whether the local file can be overwritten
1748 $file = $this->getLocalFile();
1749 $file->load( File::READ_LATEST );
1750 if ( $file->exists() ) {
1751 if ( !self::userCanReUpload( $user, $file ) ) {
1752 return [ 'fileexists-forbidden', $file->getName() ];
1753 } else {
1754 return true;
1755 }
1756 }
1757
1758 /* Check shared conflicts: if the local file does not exist, but
1759 * wfFindFile finds a file, it exists in a shared repository.
1760 */
1761 $file = wfFindFile( $this->getTitle(), [ 'latest' => true ] );
1762 if ( $file && !$user->isAllowed( 'reupload-shared' ) ) {
1763 return [ 'fileexists-shared-forbidden', $file->getName() ];
1764 }
1765
1766 return true;
1767 }
1768
1769 /**
1770 * Check if a user is the last uploader
1771 *
1772 * @param User $user
1773 * @param File $img
1774 * @return bool
1775 */
1776 public static function userCanReUpload( User $user, File $img ) {
1777 if ( $user->isAllowed( 'reupload' ) ) {
1778 return true; // non-conditional
1779 } elseif ( !$user->isAllowed( 'reupload-own' ) ) {
1780 return false;
1781 }
1782
1783 if ( !( $img instanceof LocalFile ) ) {
1784 return false;
1785 }
1786
1787 $img->load();
1788
1789 return $user->getId() == $img->getUser( 'id' );
1790 }
1791
1792 /**
1793 * Helper function that does various existence checks for a file.
1794 * The following checks are performed:
1795 * - The file exists
1796 * - Article with the same name as the file exists
1797 * - File exists with normalized extension
1798 * - The file looks like a thumbnail and the original exists
1799 *
1800 * @param File $file The File object to check
1801 * @return mixed False if the file does not exists, else an array
1802 */
1803 public static function getExistsWarning( $file ) {
1804 if ( $file->exists() ) {
1805 return [ 'warning' => 'exists', 'file' => $file ];
1806 }
1807
1808 if ( $file->getTitle()->getArticleID() ) {
1809 return [ 'warning' => 'page-exists', 'file' => $file ];
1810 }
1811
1812 if ( strpos( $file->getName(), '.' ) == false ) {
1813 $partname = $file->getName();
1814 $extension = '';
1815 } else {
1816 $n = strrpos( $file->getName(), '.' );
1817 $extension = substr( $file->getName(), $n + 1 );
1818 $partname = substr( $file->getName(), 0, $n );
1819 }
1820 $normalizedExtension = File::normalizeExtension( $extension );
1821
1822 if ( $normalizedExtension != $extension ) {
1823 // We're not using the normalized form of the extension.
1824 // Normal form is lowercase, using most common of alternate
1825 // extensions (eg 'jpg' rather than 'JPEG').
1826
1827 // Check for another file using the normalized form...
1828 $nt_lc = Title::makeTitle( NS_FILE, "{$partname}.{$normalizedExtension}" );
1829 $file_lc = wfLocalFile( $nt_lc );
1830
1831 if ( $file_lc->exists() ) {
1832 return [
1833 'warning' => 'exists-normalized',
1834 'file' => $file,
1835 'normalizedFile' => $file_lc
1836 ];
1837 }
1838 }
1839
1840 // Check for files with the same name but a different extension
1841 $similarFiles = RepoGroup::singleton()->getLocalRepo()->findFilesByPrefix(
1842 "{$partname}.", 1 );
1843 if ( count( $similarFiles ) ) {
1844 return [
1845 'warning' => 'exists-normalized',
1846 'file' => $file,
1847 'normalizedFile' => $similarFiles[0],
1848 ];
1849 }
1850
1851 if ( self::isThumbName( $file->getName() ) ) {
1852 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
1853 $nt_thb = Title::newFromText(
1854 substr( $partname, strpos( $partname, '-' ) + 1 ) . '.' . $extension,
1855 NS_FILE
1856 );
1857 $file_thb = wfLocalFile( $nt_thb );
1858 if ( $file_thb->exists() ) {
1859 return [
1860 'warning' => 'thumb',
1861 'file' => $file,
1862 'thumbFile' => $file_thb
1863 ];
1864 } else {
1865 // File does not exist, but we just don't like the name
1866 return [
1867 'warning' => 'thumb-name',
1868 'file' => $file,
1869 'thumbFile' => $file_thb
1870 ];
1871 }
1872 }
1873
1874 foreach ( self::getFilenamePrefixBlacklist() as $prefix ) {
1875 if ( substr( $partname, 0, strlen( $prefix ) ) == $prefix ) {
1876 return [
1877 'warning' => 'bad-prefix',
1878 'file' => $file,
1879 'prefix' => $prefix
1880 ];
1881 }
1882 }
1883
1884 return false;
1885 }
1886
1887 /**
1888 * Helper function that checks whether the filename looks like a thumbnail
1889 * @param string $filename
1890 * @return bool
1891 */
1892 public static function isThumbName( $filename ) {
1893 $n = strrpos( $filename, '.' );
1894 $partname = $n ? substr( $filename, 0, $n ) : $filename;
1895
1896 return (
1897 substr( $partname, 3, 3 ) == 'px-' ||
1898 substr( $partname, 2, 3 ) == 'px-'
1899 ) &&
1900 preg_match( "/[0-9]{2}/", substr( $partname, 0, 2 ) );
1901 }
1902
1903 /**
1904 * Get a list of blacklisted filename prefixes from [[MediaWiki:Filename-prefix-blacklist]]
1905 *
1906 * @return array List of prefixes
1907 */
1908 public static function getFilenamePrefixBlacklist() {
1909 $blacklist = [];
1910 $message = wfMessage( 'filename-prefix-blacklist' )->inContentLanguage();
1911 if ( !$message->isDisabled() ) {
1912 $lines = explode( "\n", $message->plain() );
1913 foreach ( $lines as $line ) {
1914 // Remove comment lines
1915 $comment = substr( trim( $line ), 0, 1 );
1916 if ( $comment == '#' || $comment == '' ) {
1917 continue;
1918 }
1919 // Remove additional comments after a prefix
1920 $comment = strpos( $line, '#' );
1921 if ( $comment > 0 ) {
1922 $line = substr( $line, 0, $comment - 1 );
1923 }
1924 $blacklist[] = trim( $line );
1925 }
1926 }
1927
1928 return $blacklist;
1929 }
1930
1931 /**
1932 * Gets image info about the file just uploaded.
1933 *
1934 * Also has the effect of setting metadata to be an 'indexed tag name' in
1935 * returned API result if 'metadata' was requested. Oddly, we have to pass
1936 * the "result" object down just so it can do that with the appropriate
1937 * format, presumably.
1938 *
1939 * @param ApiResult $result
1940 * @return array Image info
1941 */
1942 public function getImageInfo( $result ) {
1943 $file = $this->getLocalFile();
1944 /** @todo This cries out for refactoring.
1945 * We really want to say $file->getAllInfo(); here.
1946 * Perhaps "info" methods should be moved into files, and the API should
1947 * just wrap them in queries.
1948 */
1949 if ( $file instanceof UploadStashFile ) {
1950 $imParam = ApiQueryStashImageInfo::getPropertyNames();
1951 $info = ApiQueryStashImageInfo::getInfo( $file, array_flip( $imParam ), $result );
1952 } else {
1953 $imParam = ApiQueryImageInfo::getPropertyNames();
1954 $info = ApiQueryImageInfo::getInfo( $file, array_flip( $imParam ), $result );
1955 }
1956
1957 return $info;
1958 }
1959
1960 /**
1961 * @param array $error
1962 * @return Status
1963 */
1964 public function convertVerifyErrorToStatus( $error ) {
1965 $code = $error['status'];
1966 unset( $code['status'] );
1967
1968 return Status::newFatal( $this->getVerificationErrorCode( $code ), $error );
1969 }
1970
1971 /**
1972 * Get the MediaWiki maximum uploaded file size for given type of upload, based on
1973 * $wgMaxUploadSize.
1974 *
1975 * @param null|string $forType
1976 * @return int
1977 */
1978 public static function getMaxUploadSize( $forType = null ) {
1979 global $wgMaxUploadSize;
1980
1981 if ( is_array( $wgMaxUploadSize ) ) {
1982 if ( !is_null( $forType ) && isset( $wgMaxUploadSize[$forType] ) ) {
1983 return $wgMaxUploadSize[$forType];
1984 } else {
1985 return $wgMaxUploadSize['*'];
1986 }
1987 } else {
1988 return intval( $wgMaxUploadSize );
1989 }
1990 }
1991
1992 /**
1993 * Get the PHP maximum uploaded file size, based on ini settings. If there is no limit or the
1994 * limit can't be guessed, returns a very large number (PHP_INT_MAX).
1995 *
1996 * @since 1.27
1997 * @return int
1998 */
1999 public static function getMaxPhpUploadSize() {
2000 $phpMaxFileSize = wfShorthandToInteger(
2001 ini_get( 'upload_max_filesize' ) ?: ini_get( 'hhvm.server.upload.upload_max_file_size' ),
2002 PHP_INT_MAX
2003 );
2004 $phpMaxPostSize = wfShorthandToInteger(
2005 ini_get( 'post_max_size' ) ?: ini_get( 'hhvm.server.max_post_size' ),
2006 PHP_INT_MAX
2007 ) ?: PHP_INT_MAX;
2008 return min( $phpMaxFileSize, $phpMaxPostSize );
2009 }
2010
2011 /**
2012 * Get the current status of a chunked upload (used for polling)
2013 *
2014 * The value will be read from cache.
2015 *
2016 * @param User $user
2017 * @param string $statusKey
2018 * @return Status[]|bool
2019 */
2020 public static function getSessionStatus( User $user, $statusKey ) {
2021 $key = wfMemcKey( 'uploadstatus', $user->getId() ?: md5( $user->getName() ), $statusKey );
2022
2023 return ObjectCache::getMainStashInstance()->get( $key );
2024 }
2025
2026 /**
2027 * Set the current status of a chunked upload (used for polling)
2028 *
2029 * The value will be set in cache for 1 day
2030 *
2031 * @param User $user
2032 * @param string $statusKey
2033 * @param array|bool $value
2034 * @return void
2035 */
2036 public static function setSessionStatus( User $user, $statusKey, $value ) {
2037 $key = wfMemcKey( 'uploadstatus', $user->getId() ?: md5( $user->getName() ), $statusKey );
2038
2039 $cache = ObjectCache::getMainStashInstance();
2040 if ( $value === false ) {
2041 $cache->delete( $key );
2042 } else {
2043 $cache->set( $key, $value, $cache::TTL_DAY );
2044 }
2045 }
2046 }