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