3 * Base class for the backend of file upload.
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.
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.
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
25 * @defgroup Upload Upload related
31 * UploadBase and subclasses are the backend of MediaWiki's file uploads.
32 * The frontends are formed by ApiUpload and SpecialUpload.
34 * @author Brion Vibber
35 * @author Bryan Tong Minh
36 * @author Michael Dale
38 abstract class UploadBase
{
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;
47 protected static $safeXmlEncodings = array(
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;
65 # HOOK_ABORTED is the new name of UPLOAD_VERIFICATION_ERROR
66 const UPLOAD_VERIFICATION_ERROR
= 11;
67 const HOOK_ABORTED
= 11;
68 const FILE_TOO_LARGE
= 12;
69 const WINDOWS_NONASCII_FILENAME
= 13;
70 const FILENAME_TOO_LONG
= 14;
76 public function getVerificationErrorCode( $error ) {
77 $code_to_status = array(
78 self
::EMPTY_FILE
=> 'empty-file',
79 self
::FILE_TOO_LARGE
=> 'file-too-large',
80 self
::FILETYPE_MISSING
=> 'filetype-missing',
81 self
::FILETYPE_BADTYPE
=> 'filetype-banned',
82 self
::MIN_LENGTH_PARTNAME
=> 'filename-tooshort',
83 self
::ILLEGAL_FILENAME
=> 'illegal-filename',
84 self
::OVERWRITE_EXISTING_FILE
=> 'overwrite',
85 self
::VERIFICATION_ERROR
=> 'verification-error',
86 self
::HOOK_ABORTED
=> 'hookaborted',
87 self
::WINDOWS_NONASCII_FILENAME
=> 'windows-nonascii-filename',
88 self
::FILENAME_TOO_LONG
=> 'filename-toolong',
90 if ( isset( $code_to_status[$error] ) ) {
91 return $code_to_status[$error];
94 return 'unknown-error';
98 * Returns true if uploads are enabled.
99 * Can be override by subclasses.
102 public static function isEnabled() {
103 global $wgEnableUploads;
105 if ( !$wgEnableUploads ) {
109 # Check php's file_uploads setting
110 return wfIsHHVM() ||
wfIniGetBool( 'file_uploads' );
114 * Returns true if the user can use this upload module or else a string
115 * identifying the missing permission.
116 * Can be overridden by subclasses.
119 * @return bool|string
121 public static function isAllowed( $user ) {
122 foreach ( array( 'upload', 'edit' ) as $permission ) {
123 if ( !$user->isAllowed( $permission ) ) {
131 // Upload handlers. Should probably just be a global.
132 private static $uploadHandlers = array( 'Stash', 'File', 'Url' );
135 * Create a form of UploadBase depending on wpSourceType and initializes it
137 * @param WebRequest $request
138 * @param string|null $type
139 * @return null|UploadBase
141 public static function createFromRequest( &$request, $type = null ) {
142 $type = $type ?
$type : $request->getVal( 'wpSourceType', 'File' );
148 // Get the upload class
149 $type = ucfirst( $type );
151 // Give hooks the chance to handle this request
153 Hooks
::run( 'UploadCreateFromRequest', array( $type, &$className ) );
154 if ( is_null( $className ) ) {
155 $className = 'UploadFrom' . $type;
156 wfDebug( __METHOD__
. ": class name: $className\n" );
157 if ( !in_array( $type, self
::$uploadHandlers ) ) {
162 // Check whether this upload class is enabled
163 if ( !call_user_func( array( $className, 'isEnabled' ) ) ) {
167 // Check whether the request is valid
168 if ( !call_user_func( array( $className, 'isValidRequest' ), $request ) ) {
172 /** @var UploadBase $handler */
173 $handler = new $className;
175 $handler->initializeFromRequest( $request );
181 * Check whether a request if valid for this handler
182 * @param WebRequest $request
185 public static function isValidRequest( $request ) {
189 public function __construct() {
193 * Returns the upload type. Should be overridden by child classes
198 public function getSourceType() {
203 * Initialize the path information
204 * @param string $name The desired destination name
205 * @param string $tempPath The temporary path
206 * @param int $fileSize The file size
207 * @param bool $removeTempFile (false) remove the temporary file?
208 * @throws MWException
210 public function initializePathInfo( $name, $tempPath, $fileSize, $removeTempFile = false ) {
211 $this->mDesiredDestName
= $name;
212 if ( FileBackend
::isStoragePath( $tempPath ) ) {
213 throw new MWException( __METHOD__
. " given storage path `$tempPath`." );
215 $this->mTempPath
= $tempPath;
216 $this->mFileSize
= $fileSize;
217 $this->mRemoveTempFile
= $removeTempFile;
221 * Initialize from a WebRequest. Override this in a subclass.
223 * @param WebRequest $request
225 abstract public function initializeFromRequest( &$request );
228 * Fetch the file. Usually a no-op
231 public function fetchFile() {
232 return Status
::newGood();
236 * Return true if the file is empty
239 public function isEmptyFile() {
240 return empty( $this->mFileSize
);
244 * Return the file size
247 public function getFileSize() {
248 return $this->mFileSize
;
252 * Get the base 36 SHA1 of the file
255 public function getTempFileSha1Base36() {
256 return FSFile
::getSha1Base36FromPath( $this->mTempPath
);
260 * @param string $srcPath The source path
261 * @return string|bool The real path if it was a virtual URL Returns false on failure
263 function getRealPath( $srcPath ) {
264 $repo = RepoGroup
::singleton()->getLocalRepo();
265 if ( $repo->isVirtualUrl( $srcPath ) ) {
266 /** @todo Just make uploads work with storage paths UploadFromStash
267 * loads files via virtual URLs.
269 $tmpFile = $repo->getLocalCopy( $srcPath );
271 $tmpFile->bind( $this ); // keep alive with $this
273 $path = $tmpFile ?
$tmpFile->getPath() : false;
282 * Verify whether the upload is sane.
283 * @return mixed Const self::OK or else an array with error information
285 public function verifyUpload() {
288 * If there was no filename or a zero size given, give up quick.
290 if ( $this->isEmptyFile() ) {
292 return array( 'status' => self
::EMPTY_FILE
);
296 * Honor $wgMaxUploadSize
298 $maxSize = self
::getMaxUploadSize( $this->getSourceType() );
299 if ( $this->mFileSize
> $maxSize ) {
302 'status' => self
::FILE_TOO_LARGE
,
308 * Look at the contents of the file; if we can recognize the
309 * type but it's corrupt or data of the wrong type, we should
310 * probably not accept it.
312 $verification = $this->verifyFile();
313 if ( $verification !== true ) {
316 'status' => self
::VERIFICATION_ERROR
,
317 'details' => $verification
322 * Make sure this file can be created
324 $result = $this->validateName();
325 if ( $result !== true ) {
331 if ( !Hooks
::run( 'UploadVerification',
332 array( $this->mDestName
, $this->mTempPath
, &$error ) )
335 return array( 'status' => self
::HOOK_ABORTED
, 'error' => $error );
339 return array( 'status' => self
::OK
);
343 * Verify that the name is valid and, if necessary, that we can overwrite
345 * @return mixed True if valid, otherwise and array with 'status'
348 public function validateName() {
349 $nt = $this->getTitle();
350 if ( is_null( $nt ) ) {
351 $result = array( 'status' => $this->mTitleError
);
352 if ( $this->mTitleError
== self
::ILLEGAL_FILENAME
) {
353 $result['filtered'] = $this->mFilteredName
;
355 if ( $this->mTitleError
== self
::FILETYPE_BADTYPE
) {
356 $result['finalExt'] = $this->mFinalExtension
;
357 if ( count( $this->mBlackListedExtensions
) ) {
358 $result['blacklistedExt'] = $this->mBlackListedExtensions
;
364 $this->mDestName
= $this->getLocalFile()->getName();
370 * Verify the MIME type.
372 * @note Only checks that it is not an evil MIME. The "does it have
373 * correct extension given its MIME type?" check is in verifyFile.
374 * in `verifyFile()` that MIME type and file extension correlate.
375 * @param string $mime Representing the MIME
376 * @return mixed True if the file is verified, an array otherwise
378 protected function verifyMimeType( $mime ) {
379 global $wgVerifyMimeType;
380 if ( $wgVerifyMimeType ) {
381 wfDebug( "mime: <$mime> extension: <{$this->mFinalExtension}>\n" );
382 global $wgMimeTypeBlacklist;
383 if ( $this->checkFileExtension( $mime, $wgMimeTypeBlacklist ) ) {
385 return array( 'filetype-badmime', $mime );
388 # Check what Internet Explorer would detect
389 $fp = fopen( $this->mTempPath
, 'rb' );
390 $chunk = fread( $fp, 256 );
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 ) ) {
399 return array( 'filetype-bad-ie-mime', $ieType );
409 * Verifies that it's ok to include the uploaded file
411 * @return mixed True of the file is verified, array otherwise.
413 protected function verifyFile() {
414 global $wgVerifyMimeType, $wgDisableUploadScriptChecks;
416 $status = $this->verifyPartialFile();
417 if ( $status !== true ) {
422 $this->mFileProps
= FSFile
::getPropsFromPath( $this->mTempPath
, $this->mFinalExtension
);
423 $mime = $this->mFileProps
['mime'];
425 if ( $wgVerifyMimeType ) {
426 # XXX: Missing extension will be caught by validateName() via getTitle()
427 if ( $this->mFinalExtension
!= '' && !$this->verifyExtension( $mime, $this->mFinalExtension
) ) {
429 return array( 'filetype-mime-mismatch', $this->mFinalExtension
, $mime );
433 # check for htmlish code and javascript
434 if ( !$wgDisableUploadScriptChecks ) {
435 if ( $this->mFinalExtension
== 'svg' ||
$mime == 'image/svg+xml' ) {
436 $svgStatus = $this->detectScriptInSvg( $this->mTempPath
, false );
437 if ( $svgStatus !== false ) {
444 $handler = MediaHandler
::getHandler( $mime );
446 $handlerStatus = $handler->verifyUpload( $this->mTempPath
);
447 if ( !$handlerStatus->isOK() ) {
448 $errors = $handlerStatus->getErrorsArray();
450 return reset( $errors );
454 Hooks
::run( 'UploadVerifyFile', array( $this, $mime, &$status ) );
455 if ( $status !== true ) {
460 wfDebug( __METHOD__
. ": all clear; passing.\n" );
466 * A verification routine suitable for partial files
468 * Runs the blacklist checks, but not any checks that may
469 * assume the entire file is present.
471 * @return mixed True for valid or array with error message key.
473 protected function verifyPartialFile() {
474 global $wgAllowJavaUploads, $wgDisableUploadScriptChecks;
476 # getTitle() sets some internal parameters like $this->mFinalExtension
479 $this->mFileProps
= FSFile
::getPropsFromPath( $this->mTempPath
, $this->mFinalExtension
);
481 # check MIME type, if desired
482 $mime = $this->mFileProps
['file-mime'];
483 $status = $this->verifyMimeType( $mime );
484 if ( $status !== true ) {
489 # check for htmlish code and javascript
490 if ( !$wgDisableUploadScriptChecks ) {
491 if ( self
::detectScript( $this->mTempPath
, $mime, $this->mFinalExtension
) ) {
493 return array( 'uploadscripted' );
495 if ( $this->mFinalExtension
== 'svg' ||
$mime == 'image/svg+xml' ) {
496 $svgStatus = $this->detectScriptInSvg( $this->mTempPath
, true );
497 if ( $svgStatus !== false ) {
504 # Check for Java applets, which if uploaded can bypass cross-site
506 if ( !$wgAllowJavaUploads ) {
507 $this->mJavaDetected
= false;
508 $zipStatus = ZipDirectoryReader
::read( $this->mTempPath
,
509 array( $this, 'zipEntryCallback' ) );
510 if ( !$zipStatus->isOK() ) {
511 $errors = $zipStatus->getErrorsArray();
512 $error = reset( $errors );
513 if ( $error[0] !== 'zip-wrong-format' ) {
518 if ( $this->mJavaDetected
) {
520 return array( 'uploadjava' );
524 # Scan the uploaded file for viruses
525 $virus = $this->detectVirus( $this->mTempPath
);
528 return array( 'uploadvirus', $virus );
536 * Callback for ZipDirectoryReader to detect Java class files.
538 * @param array $entry
540 function zipEntryCallback( $entry ) {
541 $names = array( $entry['name'] );
543 // If there is a null character, cut off the name at it, because JDK's
544 // ZIP_GetEntry() uses strcmp() if the name hashes match. If a file name
545 // were constructed which had ".class\0" followed by a string chosen to
546 // make the hash collide with the truncated name, that file could be
547 // returned in response to a request for the .class file.
548 $nullPos = strpos( $entry['name'], "\000" );
549 if ( $nullPos !== false ) {
550 $names[] = substr( $entry['name'], 0, $nullPos );
553 // If there is a trailing slash in the file name, we have to strip it,
554 // because that's what ZIP_GetEntry() does.
555 if ( preg_grep( '!\.class/?$!', $names ) ) {
556 $this->mJavaDetected
= true;
561 * Alias for verifyTitlePermissions. The function was originally
562 * 'verifyPermissions', but that suggests it's checking the user, when it's
563 * really checking the title + user combination.
565 * @param User $user User object to verify the permissions against
566 * @return mixed An array as returned by getUserPermissionsErrors or true
567 * in case the user has proper permissions.
569 public function verifyPermissions( $user ) {
570 return $this->verifyTitlePermissions( $user );
574 * Check whether the user can edit, upload and create the image. This
575 * checks only against the current title; if it returns errors, it may
576 * very well be that another title will not give errors. Therefore
577 * isAllowed() should be called as well for generic is-user-blocked or
578 * can-user-upload checking.
580 * @param User $user User object to verify the permissions against
581 * @return mixed An array as returned by getUserPermissionsErrors or true
582 * in case the user has proper permissions.
584 public function verifyTitlePermissions( $user ) {
586 * If the image is protected, non-sysop users won't be able
587 * to modify it by uploading a new revision.
589 $nt = $this->getTitle();
590 if ( is_null( $nt ) ) {
593 $permErrors = $nt->getUserPermissionsErrors( 'edit', $user );
594 $permErrorsUpload = $nt->getUserPermissionsErrors( 'upload', $user );
595 if ( !$nt->exists() ) {
596 $permErrorsCreate = $nt->getUserPermissionsErrors( 'create', $user );
598 $permErrorsCreate = array();
600 if ( $permErrors ||
$permErrorsUpload ||
$permErrorsCreate ) {
601 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsUpload, $permErrors ) );
602 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsCreate, $permErrors ) );
607 $overwriteError = $this->checkOverwrite( $user );
608 if ( $overwriteError !== true ) {
609 return array( $overwriteError );
616 * Check for non fatal problems with the file.
618 * This should not assume that mTempPath is set.
620 * @return array Array of warnings
622 public function checkWarnings() {
627 $localFile = $this->getLocalFile();
628 $filename = $localFile->getName();
631 * Check whether the resulting filename is different from the desired one,
632 * but ignore things like ucfirst() and spaces/underscore things
634 $comparableName = str_replace( ' ', '_', $this->mDesiredDestName
);
635 $comparableName = Title
::capitalize( $comparableName, NS_FILE
);
637 if ( $this->mDesiredDestName
!= $filename && $comparableName != $filename ) {
638 $warnings['badfilename'] = $filename;
639 // Debugging for bug 62241
640 wfDebugLog( 'upload', "Filename: '$filename', mDesiredDestName: "
641 . "'$this->mDesiredDestName', comparableName: '$comparableName'" );
644 // Check whether the file extension is on the unwanted list
645 global $wgCheckFileExtensions, $wgFileExtensions;
646 if ( $wgCheckFileExtensions ) {
647 $extensions = array_unique( $wgFileExtensions );
648 if ( !$this->checkFileExtension( $this->mFinalExtension
, $extensions ) ) {
649 $warnings['filetype-unwanted-type'] = array( $this->mFinalExtension
,
650 $wgLang->commaList( $extensions ), count( $extensions ) );
654 global $wgUploadSizeWarning;
655 if ( $wgUploadSizeWarning && ( $this->mFileSize
> $wgUploadSizeWarning ) ) {
656 $warnings['large-file'] = array( $wgUploadSizeWarning, $this->mFileSize
);
659 if ( $this->mFileSize
== 0 ) {
660 $warnings['emptyfile'] = true;
663 $exists = self
::getExistsWarning( $localFile );
664 if ( $exists !== false ) {
665 $warnings['exists'] = $exists;
668 // Check dupes against existing files
669 $hash = $this->getTempFileSha1Base36();
670 $dupes = RepoGroup
::singleton()->findBySha1( $hash );
671 $title = $this->getTitle();
672 // Remove all matches against self
673 foreach ( $dupes as $key => $dupe ) {
674 if ( $title->equals( $dupe->getTitle() ) ) {
675 unset( $dupes[$key] );
679 $warnings['duplicate'] = $dupes;
682 // Check dupes against archives
683 $archivedImage = new ArchivedFile( null, 0, "{$hash}.{$this->mFinalExtension}" );
684 if ( $archivedImage->getID() > 0 ) {
685 if ( $archivedImage->userCan( File
::DELETED_FILE
) ) {
686 $warnings['duplicate-archive'] = $archivedImage->getName();
688 $warnings['duplicate-archive'] = '';
697 * Really perform the upload. Stores the file in the local repo, watches
698 * if necessary and runs the UploadComplete hook.
700 * @param string $comment
701 * @param string $pageText
705 * @return Status Indicating the whether the upload succeeded.
707 public function performUpload( $comment, $pageText, $watch, $user ) {
709 $status = $this->getLocalFile()->upload(
719 if ( $status->isGood() ) {
721 WatchAction
::doWatch(
722 $this->getLocalFile()->getTitle(),
724 WatchedItem
::IGNORE_USER_RIGHTS
727 Hooks
::run( 'UploadComplete', array( &$this ) );
729 $this->postProcessUpload();
737 * Perform extra steps after a successful upload.
741 public function postProcessUpload() {
742 global $wgUploadThumbnailRenderMap;
746 $sizes = $wgUploadThumbnailRenderMap;
749 $file = $this->getLocalFile();
751 foreach ( $sizes as $size ) {
752 if ( $file->isVectorized()
753 ||
$file->getWidth() > $size ) {
754 $jobs[] = new ThumbnailRenderJob( $file->getTitle(), array(
755 'transformParams' => array( 'width' => $size ),
761 JobQueueGroup
::singleton()->push( $jobs );
766 * Returns the title of the file to be uploaded. Sets mTitleError in case
767 * the name was illegal.
769 * @return Title The title of the file or null in case the name was illegal
771 public function getTitle() {
772 if ( $this->mTitle
!== false ) {
773 return $this->mTitle
;
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.
778 $title = Title
::newFromText( $this->mDesiredDestName
);
779 if ( $title && $title->getNamespace() == NS_FILE
) {
780 $this->mFilteredName
= $title->getDBkey();
782 $this->mFilteredName
= $this->mDesiredDestName
;
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;
791 return $this->mTitle
;
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.
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;
806 return $this->mTitle
;
808 $this->mFilteredName
= $nt->getDBkey();
811 * We'll want to blacklist against *any* 'extension', and use
812 * only the final one for the whitelist.
814 list( $partname, $ext ) = $this->splitExtensions( $this->mFilteredName
);
816 if ( count( $ext ) ) {
817 $this->mFinalExtension
= trim( $ext[count( $ext ) - 1] );
819 $this->mFinalExtension
= '';
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 );
828 # Set the extension to the canonical extension
829 $this->mFinalExtension
= strtok( $extList, ' ' );
831 # Fix up the other variables
832 $this->mFilteredName
.= ".{$this->mFinalExtension}";
833 $nt = Title
::makeTitleSafe( NS_FILE
, $this->mFilteredName
);
834 $ext = array( $this->mFinalExtension
);
839 /* Don't allow users to override the blacklist (check file extension) */
840 global $wgCheckFileExtensions, $wgStrictFileExtensions;
841 global $wgFileExtensions, $wgFileBlacklist;
843 $blackListedExtensions = $this->checkFileExtensionList( $ext, $wgFileBlacklist );
845 if ( $this->mFinalExtension
== '' ) {
846 $this->mTitleError
= self
::FILETYPE_MISSING
;
847 $this->mTitle
= null;
849 return $this->mTitle
;
850 } elseif ( $blackListedExtensions ||
851 ( $wgCheckFileExtensions && $wgStrictFileExtensions &&
852 !$this->checkFileExtension( $this->mFinalExtension
, $wgFileExtensions ) )
854 $this->mBlackListedExtensions
= $blackListedExtensions;
855 $this->mTitleError
= self
::FILETYPE_BADTYPE
;
856 $this->mTitle
= null;
858 return $this->mTitle
;
861 // Windows may be broken with special characters, see bug 1780
862 if ( !preg_match( '/^[\x0-\x7f]*$/', $nt->getText() )
863 && !RepoGroup
::singleton()->getLocalRepo()->backendSupportsUnicodePaths()
865 $this->mTitleError
= self
::WINDOWS_NONASCII_FILENAME
;
866 $this->mTitle
= null;
868 return $this->mTitle
;
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];
880 if ( strlen( $partname ) < 1 ) {
881 $this->mTitleError
= self
::MIN_LENGTH_PARTNAME
;
882 $this->mTitle
= null;
884 return $this->mTitle
;
889 return $this->mTitle
;
893 * Return the local file and initializes if necessary.
895 * @return LocalFile|UploadStashFile|null
897 public function getLocalFile() {
898 if ( is_null( $this->mLocalFile
) ) {
899 $nt = $this->getTitle();
900 $this->mLocalFile
= is_null( $nt ) ?
null : wfLocalFile( $nt );
903 return $this->mLocalFile
;
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
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
919 * @return UploadStashFile Stashed file
921 public function stashFile( User
$user = null ) {
922 // was stashSessionFile
924 $stash = RepoGroup
::singleton()->getLocalRepo()->getUploadStash( $user );
925 $file = $stash->stashFile( $this->mTempPath
, $this->getSourceType() );
926 $this->mLocalFile
= $file;
933 * Stash a file in a temporary directory, returning a key which can be used
934 * to find the file again. See stashFile().
936 * @return string File key
938 public function stashFileGetKey() {
939 return $this->stashFile()->getFileKey();
943 * alias for stashFileGetKey, for backwards compatibility
945 * @return string File key
947 public function stashSession() {
948 return $this->stashFileGetKey();
952 * If we've modified the upload file we need to manually remove it
953 * on exit to clean up.
955 public function cleanupTempFile() {
956 if ( $this->mRemoveTempFile
&& $this->mTempPath
&& file_exists( $this->mTempPath
) ) {
957 wfDebug( __METHOD__
. ": Removing temporary file {$this->mTempPath}\n" );
958 unlink( $this->mTempPath
);
962 public function getTempPath() {
963 return $this->mTempPath
;
967 * Split a file into a base name and all dot-delimited 'extensions'
968 * on the end. Some web server configurations will fall back to
969 * earlier pseudo-'extensions' to determine type and execute
970 * scripts, so the blacklist needs to check them all.
972 * @param string $filename
975 public static function splitExtensions( $filename ) {
976 $bits = explode( '.', $filename );
977 $basename = array_shift( $bits );
979 return array( $basename, $bits );
983 * Perform case-insensitive match against a list of file extensions.
984 * Returns true if the extension is in the list.
990 public static function checkFileExtension( $ext, $list ) {
991 return in_array( strtolower( $ext ), $list );
995 * Perform case-insensitive match against a list of file extensions.
996 * Returns an array of matching extensions.
1002 public static function checkFileExtensionList( $ext, $list ) {
1003 return array_intersect( array_map( 'strtolower', $ext ), $list );
1007 * Checks if the MIME type of the uploaded file matches the file extension.
1009 * @param string $mime The MIME type of the uploaded file
1010 * @param string $extension The filename extension that the file is to be served with
1013 public static function verifyExtension( $mime, $extension ) {
1014 $magic = MimeMagic
::singleton();
1016 if ( !$mime ||
$mime == 'unknown' ||
$mime == 'unknown/unknown' ) {
1017 if ( !$magic->isRecognizableExtension( $extension ) ) {
1018 wfDebug( __METHOD__
. ": passing file with unknown detected mime type; " .
1019 "unrecognized extension '$extension', can't verify\n" );
1023 wfDebug( __METHOD__
. ": rejecting file with unknown detected mime type; " .
1024 "recognized extension '$extension', so probably invalid file\n" );
1030 $match = $magic->isMatchingExtension( $extension, $mime );
1032 if ( $match === null ) {
1033 if ( $magic->getTypesForExtension( $extension ) !== null ) {
1034 wfDebug( __METHOD__
. ": No extension known for $mime, but we know a mime for $extension\n" );
1038 wfDebug( __METHOD__
. ": no file extension known for mime type $mime, passing file\n" );
1042 } elseif ( $match === true ) {
1043 wfDebug( __METHOD__
. ": mime type $mime matches extension $extension, passing file\n" );
1045 /** @todo If it's a bitmap, make sure PHP or ImageMagick resp. can handle it! */
1049 . ": mime type $mime mismatches file extension $extension, rejecting file\n" );
1056 * Heuristic for detecting files that *could* contain JavaScript instructions or
1057 * things that may look like HTML to a browser and are thus
1058 * potentially harmful. The present implementation will produce false
1059 * positives in some situations.
1061 * @param string $file Pathname to the temporary upload file
1062 * @param string $mime The MIME type of the file
1063 * @param string $extension The extension of the file
1064 * @return bool True if the file contains something looking like embedded scripts
1066 public static function detectScript( $file, $mime, $extension ) {
1067 global $wgAllowTitlesInSVG;
1069 # ugly hack: for text files, always look at the entire file.
1070 # For binary field, just check the first K.
1072 if ( strpos( $mime, 'text/' ) === 0 ) {
1073 $chunk = file_get_contents( $file );
1075 $fp = fopen( $file, 'rb' );
1076 $chunk = fread( $fp, 1024 );
1080 $chunk = strtolower( $chunk );
1087 # decode from UTF-16 if needed (could be used for obfuscation).
1088 if ( substr( $chunk, 0, 2 ) == "\xfe\xff" ) {
1090 } elseif ( substr( $chunk, 0, 2 ) == "\xff\xfe" ) {
1097 $chunk = iconv( $enc, "ASCII//IGNORE", $chunk );
1100 $chunk = trim( $chunk );
1102 /** @todo FIXME: Convert from UTF-16 if necessary! */
1103 wfDebug( __METHOD__
. ": checking for embedded scripts and HTML stuff\n" );
1105 # check for HTML doctype
1106 if ( preg_match( "/<!DOCTYPE *X?HTML/i", $chunk ) ) {
1111 // Some browsers will interpret obscure xml encodings as UTF-8, while
1112 // PHP/expat will interpret the given encoding in the xml declaration (bug 47304)
1113 if ( $extension == 'svg' ||
strpos( $mime, 'image/svg' ) === 0 ) {
1114 if ( self
::checkXMLEncodingMissmatch( $file ) ) {
1121 * Internet Explorer for Windows performs some really stupid file type
1122 * autodetection which can cause it to interpret valid image files as HTML
1123 * and potentially execute JavaScript, creating a cross-site scripting
1126 * Apple's Safari browser also performs some unsafe file type autodetection
1127 * which can cause legitimate files to be interpreted as HTML if the
1128 * web server is not correctly configured to send the right content-type
1129 * (or if you're really uploading plain text and octet streams!)
1131 * Returns true if IE is likely to mistake the given file for HTML.
1132 * Also returns true if Safari would mistake the given file for HTML
1133 * when served with a generic content-type.
1139 '<html', #also in safari
1142 '<script', #also in safari
1146 if ( !$wgAllowTitlesInSVG && $extension !== 'svg' && $mime !== 'image/svg' ) {
1150 foreach ( $tags as $tag ) {
1151 if ( false !== strpos( $chunk, $tag ) ) {
1152 wfDebug( __METHOD__
. ": found something that may make it be mistaken for html: $tag\n" );
1159 * look for JavaScript
1162 # resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1163 $chunk = Sanitizer
::decodeCharReferences( $chunk );
1165 # look for script-types
1166 if ( preg_match( '!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim', $chunk ) ) {
1167 wfDebug( __METHOD__
. ": found script types\n" );
1172 # look for html-style script-urls
1173 if ( preg_match( '!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1174 wfDebug( __METHOD__
. ": found html-style script urls\n" );
1179 # look for css-style script-urls
1180 if ( preg_match( '!url\s*\(\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1181 wfDebug( __METHOD__
. ": found css-style script urls\n" );
1186 wfDebug( __METHOD__
. ": no scripts found\n" );
1192 * Check a whitelist of xml encodings that are known not to be interpreted differently
1193 * by the server's xml parser (expat) and some common browsers.
1195 * @param string $file Pathname to the temporary upload file
1196 * @return bool True if the file contains an encoding that could be misinterpreted
1198 public static function checkXMLEncodingMissmatch( $file ) {
1199 global $wgSVGMetadataCutoff;
1200 $contents = file_get_contents( $file, false, null, -1, $wgSVGMetadataCutoff );
1201 $encodingRegex = '!encoding[ \t\n\r]*=[ \t\n\r]*[\'"](.*?)[\'"]!si';
1203 if ( preg_match( "!<\?xml\b(.*?)\?>!si", $contents, $matches ) ) {
1204 if ( preg_match( $encodingRegex, $matches[1], $encMatch )
1205 && !in_array( strtoupper( $encMatch[1] ), self
::$safeXmlEncodings )
1207 wfDebug( __METHOD__
. ": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1211 } elseif ( preg_match( "!<\?xml\b!si", $contents ) ) {
1212 // Start of XML declaration without an end in the first $wgSVGMetadataCutoff
1213 // bytes. There shouldn't be a legitimate reason for this to happen.
1214 wfDebug( __METHOD__
. ": Unmatched XML declaration start\n" );
1217 } elseif ( substr( $contents, 0, 4 ) == "\x4C\x6F\xA7\x94" ) {
1218 // EBCDIC encoded XML
1219 wfDebug( __METHOD__
. ": EBCDIC Encoded XML\n" );
1224 // It's possible the file is encoded with multi-byte encoding, so re-encode attempt to
1225 // detect the encoding in case is specifies an encoding not whitelisted in self::$safeXmlEncodings
1226 $attemptEncodings = array( 'UTF-16', 'UTF-16BE', 'UTF-32', 'UTF-32BE' );
1227 foreach ( $attemptEncodings as $encoding ) {
1228 wfSuppressWarnings();
1229 $str = iconv( $encoding, 'UTF-8', $contents );
1230 wfRestoreWarnings();
1231 if ( $str != '' && preg_match( "!<\?xml\b(.*?)\?>!si", $str, $matches ) ) {
1232 if ( preg_match( $encodingRegex, $matches[1], $encMatch )
1233 && !in_array( strtoupper( $encMatch[1] ), self
::$safeXmlEncodings )
1235 wfDebug( __METHOD__
. ": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1239 } elseif ( $str != '' && preg_match( "!<\?xml\b!si", $str ) ) {
1240 // Start of XML declaration without an end in the first $wgSVGMetadataCutoff
1241 // bytes. There shouldn't be a legitimate reason for this to happen.
1242 wfDebug( __METHOD__
. ": Unmatched XML declaration start\n" );
1252 * @param string $filename
1253 * @param bool $partial
1254 * @return mixed False of the file is verified (does not contain scripts), array otherwise.
1256 protected function detectScriptInSvg( $filename, $partial ) {
1257 $this->mSVGNSError
= false;
1258 $check = new XmlTypeCheck(
1260 array( $this, 'checkSvgScriptCallback' ),
1262 array( 'processing_instruction_handler' => 'UploadBase::checkSvgPICallback' )
1264 if ( $check->wellFormed
!== true ) {
1265 // Invalid xml (bug 58553)
1266 // But only when non-partial (bug 65724)
1267 return $partial ?
false : array( 'uploadinvalidxml' );
1268 } elseif ( $check->filterMatch
) {
1269 if ( $this->mSVGNSError
) {
1270 return array( 'uploadscriptednamespace', $this->mSVGNSError
);
1273 return array( 'uploadscripted' );
1280 * Callback to filter SVG Processing Instructions.
1281 * @param string $target Processing instruction name
1282 * @param string $data Processing instruction attribute and value
1283 * @return bool (true if the filter identified something bad)
1285 public static function checkSvgPICallback( $target, $data ) {
1286 // Don't allow external stylesheets (bug 57550)
1287 if ( preg_match( '/xml-stylesheet/i', $target ) ) {
1295 * @todo Replace this with a whitelist filter!
1296 * @param string $element
1297 * @param array $attribs
1300 public function checkSvgScriptCallback( $element, $attribs, $data = null ) {
1302 list( $namespace, $strippedElement ) = $this->splitXmlNamespace( $element );
1304 // We specifically don't include:
1305 // http://www.w3.org/1999/xhtml (bug 60771)
1306 static $validNamespaces = array(
1309 'http://creativecommons.org/ns#',
1310 'http://inkscape.sourceforge.net/dtd/sodipodi-0.dtd',
1311 'http://ns.adobe.com/adobeillustrator/10.0/',
1312 'http://ns.adobe.com/adobesvgviewerextensions/3.0/',
1313 'http://ns.adobe.com/extensibility/1.0/',
1314 'http://ns.adobe.com/flows/1.0/',
1315 'http://ns.adobe.com/illustrator/1.0/',
1316 'http://ns.adobe.com/imagereplacement/1.0/',
1317 'http://ns.adobe.com/pdf/1.3/',
1318 'http://ns.adobe.com/photoshop/1.0/',
1319 'http://ns.adobe.com/saveforweb/1.0/',
1320 'http://ns.adobe.com/variables/1.0/',
1321 'http://ns.adobe.com/xap/1.0/',
1322 'http://ns.adobe.com/xap/1.0/g/',
1323 'http://ns.adobe.com/xap/1.0/g/img/',
1324 'http://ns.adobe.com/xap/1.0/mm/',
1325 'http://ns.adobe.com/xap/1.0/rights/',
1326 'http://ns.adobe.com/xap/1.0/stype/dimensions#',
1327 'http://ns.adobe.com/xap/1.0/stype/font#',
1328 'http://ns.adobe.com/xap/1.0/stype/manifestitem#',
1329 'http://ns.adobe.com/xap/1.0/stype/resourceevent#',
1330 'http://ns.adobe.com/xap/1.0/stype/resourceref#',
1331 'http://ns.adobe.com/xap/1.0/t/pg/',
1332 'http://purl.org/dc/elements/1.1/',
1333 'http://purl.org/dc/elements/1.1',
1334 'http://schemas.microsoft.com/visio/2003/svgextensions/',
1335 'http://sodipodi.sourceforge.net/dtd/sodipodi-0.dtd',
1336 'http://taptrix.com/inkpad/svg_extensions',
1337 'http://web.resource.org/cc/',
1338 'http://www.freesoftware.fsf.org/bkchem/cdml',
1339 'http://www.inkscape.org/namespaces/inkscape',
1340 'http://www.opengis.net/gml',
1341 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
1342 'http://www.w3.org/2000/svg',
1343 'http://www.w3.org/tr/rec-rdf-syntax/',
1346 if ( !in_array( $namespace, $validNamespaces ) ) {
1347 wfDebug( __METHOD__
. ": Non-svg namespace '$namespace' in uploaded file.\n" );
1348 /** @todo Return a status object to a closure in XmlTypeCheck, for MW1.21+ */
1349 $this->mSVGNSError
= $namespace;
1355 * check for elements that can contain javascript
1357 if ( $strippedElement == 'script' ) {
1358 wfDebug( __METHOD__
. ": Found script element '$element' in uploaded file.\n" );
1363 # e.g., <svg xmlns="http://www.w3.org/2000/svg">
1364 # <handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(1)</handler> </svg>
1365 if ( $strippedElement == 'handler' ) {
1366 wfDebug( __METHOD__
. ": Found scriptable element '$element' in uploaded file.\n" );
1371 # SVG reported in Feb '12 that used xml:stylesheet to generate javascript block
1372 if ( $strippedElement == 'stylesheet' ) {
1373 wfDebug( __METHOD__
. ": Found scriptable element '$element' in uploaded file.\n" );
1378 # Block iframes, in case they pass the namespace check
1379 if ( $strippedElement == 'iframe' ) {
1380 wfDebug( __METHOD__
. ": iframe in uploaded file.\n" );
1386 if ( $strippedElement == 'style'
1387 && self
::checkCssFragment( Sanitizer
::normalizeCss( $data ) )
1389 wfDebug( __METHOD__
. ": hostile css in style element.\n" );
1393 foreach ( $attribs as $attrib => $value ) {
1394 $stripped = $this->stripXmlNamespace( $attrib );
1395 $value = strtolower( $value );
1397 if ( substr( $stripped, 0, 2 ) == 'on' ) {
1399 . ": Found event-handler attribute '$attrib'='$value' in uploaded file.\n" );
1404 # href with non-local target (don't allow http://, javascript:, etc)
1405 if ( $stripped == 'href'
1406 && strpos( $value, 'data:' ) !== 0
1407 && strpos( $value, '#' ) !== 0
1409 if ( !( $strippedElement === 'a'
1410 && preg_match( '!^https?://!im', $value ) )
1412 wfDebug( __METHOD__
. ": Found href attribute <$strippedElement "
1413 . "'$attrib'='$value' in uploaded file.\n" );
1419 # href with embedded svg as target
1420 if ( $stripped == 'href' && preg_match( '!data:[^,]*image/svg[^,]*,!sim', $value ) ) {
1421 wfDebug( __METHOD__
. ": Found href to embedded svg "
1422 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1427 # href with embedded (text/xml) svg as target
1428 if ( $stripped == 'href' && preg_match( '!data:[^,]*text/xml[^,]*,!sim', $value ) ) {
1429 wfDebug( __METHOD__
. ": Found href to embedded svg "
1430 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1435 # Change href with animate from (http://html5sec.org/#137). This doesn't seem
1436 # possible without embedding the svg, but filter here in case.
1437 if ( $stripped == 'from'
1438 && $strippedElement === 'animate'
1439 && !preg_match( '!^https?://!im', $value )
1441 wfDebug( __METHOD__
. ": Found animate that might be changing href using from "
1442 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1447 # use set/animate to add event-handler attribute to parent
1448 if ( ( $strippedElement == 'set' ||
$strippedElement == 'animate' )
1449 && $stripped == 'attributename'
1450 && substr( $value, 0, 2 ) == 'on'
1452 wfDebug( __METHOD__
. ": Found svg setting event-handler attribute with "
1453 . "\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1458 # use set to add href attribute to parent element
1459 if ( $strippedElement == 'set'
1460 && $stripped == 'attributename'
1461 && strpos( $value, 'href' ) !== false
1463 wfDebug( __METHOD__
. ": Found svg setting href attribute '$value' in uploaded file.\n" );
1468 # use set to add a remote / data / script target to an element
1469 if ( $strippedElement == 'set'
1470 && $stripped == 'to'
1471 && preg_match( '!(http|https|data|script):!sim', $value )
1473 wfDebug( __METHOD__
. ": Found svg setting attribute to '$value' in uploaded file.\n" );
1478 # use handler attribute with remote / data / script
1479 if ( $stripped == 'handler' && preg_match( '!(http|https|data|script):!sim', $value ) ) {
1480 wfDebug( __METHOD__
. ": Found svg setting handler with remote/data/script "
1481 . "'$attrib'='$value' in uploaded file.\n" );
1486 # use CSS styles to bring in remote code
1487 if ( $stripped == 'style'
1488 && self
::checkCssFragment( Sanitizer
::normalizeCss( $value ) )
1490 wfDebug( __METHOD__
. ": Found svg setting a style with "
1491 . "remote url '$attrib'='$value' in uploaded file.\n" );
1495 # Several attributes can include css, css character escaping isn't allowed
1496 $cssAttrs = array( 'font', 'clip-path', 'fill', 'filter', 'marker',
1497 'marker-end', 'marker-mid', 'marker-start', 'mask', 'stroke' );
1498 if ( in_array( $stripped, $cssAttrs )
1499 && self
::checkCssFragment( $value )
1501 wfDebug( __METHOD__
. ": Found svg setting a style with "
1502 . "remote url '$attrib'='$value' in uploaded file.\n" );
1506 # image filters can pull in url, which could be svg that executes scripts
1507 if ( $strippedElement == 'image'
1508 && $stripped == 'filter'
1509 && preg_match( '!url\s*\(!sim', $value )
1511 wfDebug( __METHOD__
. ": Found image filter with url: "
1512 . "\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1518 return false; //No scripts detected
1522 * Check a block of CSS or CSS fragment for anything that looks like
1523 * it is bringing in remote code.
1524 * @param string $value a string of CSS
1525 * @param bool $propOnly only check css properties (start regex with :)
1526 * @return bool true if the CSS contains an illegal string, false if otherwise
1528 private static function checkCssFragment( $value ) {
1530 # Forbid external stylesheets, for both reliability and to protect viewer's privacy
1531 if ( strpos( $value, '@import' ) !== false ) {
1535 # We allow @font-face to embed fonts with data: urls, so we snip the string
1536 # 'url' out so this case won't match when we check for urls below
1537 $pattern = '!(@font-face\s*{[^}]*src:)url(\("data:;base64,)!im';
1538 $value = preg_replace( $pattern, '$1$2', $value );
1540 # Check for remote and executable CSS. Unlike in Sanitizer::checkCss, the CSS
1541 # properties filter and accelerator don't seem to be useful for xss in SVG files.
1542 # Expression and -o-link don't seem to work either, but filtering them here in case.
1543 # Additionally, we catch remote urls like url("http:..., url('http:..., url(http:...,
1544 # but not local ones such as url("#..., url('#..., url(#....
1545 if ( preg_match( '!expression
1547 | -o-link-source\s*:
1548 | -o-replace\s*:!imx', $value ) ) {
1552 if ( preg_match_all(
1553 "!(\s*(url|image|image-set)\s*\(\s*[\"']?\s*[^#]+.*?\))!sim",
1558 # TODO: redo this in one regex. Until then, url("#whatever") matches the first
1559 foreach ( $matches[1] as $match ) {
1560 if ( !preg_match( "!\s*(url|image|image-set)\s*\(\s*(#|'#|\"#)!im", $match ) ) {
1566 if ( preg_match( '/[\000-\010\013\016-\037\177]/', $value ) ) {
1574 * Divide the element name passed by the xml parser to the callback into URI and prifix.
1575 * @param string $element
1576 * @return array Containing the namespace URI and prefix
1578 private static function splitXmlNamespace( $element ) {
1579 // 'http://www.w3.org/2000/svg:script' -> array( 'http://www.w3.org/2000/svg', 'script' )
1580 $parts = explode( ':', strtolower( $element ) );
1581 $name = array_pop( $parts );
1582 $ns = implode( ':', $parts );
1584 return array( $ns, $name );
1588 * @param string $name
1591 private function stripXmlNamespace( $name ) {
1592 // 'http://www.w3.org/2000/svg:script' -> 'script'
1593 $parts = explode( ':', strtolower( $name ) );
1595 return array_pop( $parts );
1599 * Generic wrapper function for a virus scanner program.
1600 * This relies on the $wgAntivirus and $wgAntivirusSetup variables.
1601 * $wgAntivirusRequired may be used to deny upload if the scan fails.
1603 * @param string $file Pathname to the temporary upload file
1604 * @return mixed False if not virus is found, null if the scan fails or is disabled,
1605 * or a string containing feedback from the virus scanner if a virus was found.
1606 * If textual feedback is missing but a virus was found, this function returns true.
1608 public static function detectVirus( $file ) {
1609 global $wgAntivirus, $wgAntivirusSetup, $wgAntivirusRequired, $wgOut;
1611 if ( !$wgAntivirus ) {
1612 wfDebug( __METHOD__
. ": virus scanner disabled\n" );
1617 if ( !$wgAntivirusSetup[$wgAntivirus] ) {
1618 wfDebug( __METHOD__
. ": unknown virus scanner: $wgAntivirus\n" );
1619 $wgOut->wrapWikiMsg( "<div class=\"error\">\n$1\n</div>",
1620 array( 'virus-badscanner', $wgAntivirus ) );
1622 return wfMessage( 'virus-unknownscanner' )->text() . " $wgAntivirus";
1625 # look up scanner configuration
1626 $command = $wgAntivirusSetup[$wgAntivirus]['command'];
1627 $exitCodeMap = $wgAntivirusSetup[$wgAntivirus]['codemap'];
1628 $msgPattern = isset( $wgAntivirusSetup[$wgAntivirus]['messagepattern'] ) ?
1629 $wgAntivirusSetup[$wgAntivirus]['messagepattern'] : null;
1631 if ( strpos( $command, "%f" ) === false ) {
1632 # simple pattern: append file to scan
1633 $command .= " " . wfEscapeShellArg( $file );
1635 # complex pattern: replace "%f" with file to scan
1636 $command = str_replace( "%f", wfEscapeShellArg( $file ), $command );
1639 wfDebug( __METHOD__
. ": running virus scan: $command \n" );
1641 # execute virus scanner
1644 # NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1645 # that does not seem to be worth the pain.
1646 # Ask me (Duesentrieb) about it if it's ever needed.
1647 $output = wfShellExecWithStderr( $command, $exitCode );
1649 # map exit code to AV_xxx constants.
1650 $mappedCode = $exitCode;
1651 if ( $exitCodeMap ) {
1652 if ( isset( $exitCodeMap[$exitCode] ) ) {
1653 $mappedCode = $exitCodeMap[$exitCode];
1654 } elseif ( isset( $exitCodeMap["*"] ) ) {
1655 $mappedCode = $exitCodeMap["*"];
1659 /* NB: AV_NO_VIRUS is 0 but AV_SCAN_FAILED is false,
1660 * so we need the strict equalities === and thus can't use a switch here
1662 if ( $mappedCode === AV_SCAN_FAILED
) {
1663 # scan failed (code was mapped to false by $exitCodeMap)
1664 wfDebug( __METHOD__
. ": failed to scan $file (code $exitCode).\n" );
1666 $output = $wgAntivirusRequired
1667 ?
wfMessage( 'virus-scanfailed', array( $exitCode ) )->text()
1669 } elseif ( $mappedCode === AV_SCAN_ABORTED
) {
1670 # scan failed because filetype is unknown (probably imune)
1671 wfDebug( __METHOD__
. ": unsupported file type $file (code $exitCode).\n" );
1673 } elseif ( $mappedCode === AV_NO_VIRUS
) {
1675 wfDebug( __METHOD__
. ": file passed virus scan.\n" );
1678 $output = trim( $output );
1681 $output = true; #if there's no output, return true
1682 } elseif ( $msgPattern ) {
1684 if ( preg_match( $msgPattern, $output, $groups ) ) {
1686 $output = $groups[1];
1691 wfDebug( __METHOD__
. ": FOUND VIRUS! scanner feedback: $output \n" );
1699 * Check if there's an overwrite conflict and, if so, if restrictions
1700 * forbid this user from performing the upload.
1704 * @return mixed True on success, array on failure
1706 private function checkOverwrite( $user ) {
1707 // First check whether the local file can be overwritten
1708 $file = $this->getLocalFile();
1709 if ( $file->exists() ) {
1710 if ( !self
::userCanReUpload( $user, $file ) ) {
1711 return array( 'fileexists-forbidden', $file->getName() );
1717 /* Check shared conflicts: if the local file does not exist, but
1718 * wfFindFile finds a file, it exists in a shared repository.
1720 $file = wfFindFile( $this->getTitle() );
1721 if ( $file && !$user->isAllowed( 'reupload-shared' ) ) {
1722 return array( 'fileexists-shared-forbidden', $file->getName() );
1729 * Check if a user is the last uploader
1732 * @param string $img Image name
1735 public static function userCanReUpload( User
$user, $img ) {
1736 if ( $user->isAllowed( 'reupload' ) ) {
1737 return true; // non-conditional
1739 if ( !$user->isAllowed( 'reupload-own' ) ) {
1742 if ( is_string( $img ) ) {
1743 $img = wfLocalFile( $img );
1745 if ( !( $img instanceof LocalFile
) ) {
1749 return $user->getId() == $img->getUser( 'id' );
1753 * Helper function that does various existence checks for a file.
1754 * The following checks are performed:
1756 * - Article with the same name as the file exists
1757 * - File exists with normalized extension
1758 * - The file looks like a thumbnail and the original exists
1760 * @param File $file The File object to check
1761 * @return mixed False if the file does not exists, else an array
1763 public static function getExistsWarning( $file ) {
1764 if ( $file->exists() ) {
1765 return array( 'warning' => 'exists', 'file' => $file );
1768 if ( $file->getTitle()->getArticleID() ) {
1769 return array( 'warning' => 'page-exists', 'file' => $file );
1772 if ( $file->wasDeleted() && !$file->exists() ) {
1773 return array( 'warning' => 'was-deleted', 'file' => $file );
1776 if ( strpos( $file->getName(), '.' ) == false ) {
1777 $partname = $file->getName();
1780 $n = strrpos( $file->getName(), '.' );
1781 $extension = substr( $file->getName(), $n +
1 );
1782 $partname = substr( $file->getName(), 0, $n );
1784 $normalizedExtension = File
::normalizeExtension( $extension );
1786 if ( $normalizedExtension != $extension ) {
1787 // We're not using the normalized form of the extension.
1788 // Normal form is lowercase, using most common of alternate
1789 // extensions (eg 'jpg' rather than 'JPEG').
1791 // Check for another file using the normalized form...
1792 $nt_lc = Title
::makeTitle( NS_FILE
, "{$partname}.{$normalizedExtension}" );
1793 $file_lc = wfLocalFile( $nt_lc );
1795 if ( $file_lc->exists() ) {
1797 'warning' => 'exists-normalized',
1799 'normalizedFile' => $file_lc
1804 // Check for files with the same name but a different extension
1805 $similarFiles = RepoGroup
::singleton()->getLocalRepo()->findFilesByPrefix(
1806 "{$partname}.", 1 );
1807 if ( count( $similarFiles ) ) {
1809 'warning' => 'exists-normalized',
1811 'normalizedFile' => $similarFiles[0],
1815 if ( self
::isThumbName( $file->getName() ) ) {
1816 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
1817 $nt_thb = Title
::newFromText(
1818 substr( $partname, strpos( $partname, '-' ) +
1 ) . '.' . $extension,
1821 $file_thb = wfLocalFile( $nt_thb );
1822 if ( $file_thb->exists() ) {
1824 'warning' => 'thumb',
1826 'thumbFile' => $file_thb
1829 // File does not exist, but we just don't like the name
1831 'warning' => 'thumb-name',
1833 'thumbFile' => $file_thb
1838 foreach ( self
::getFilenamePrefixBlacklist() as $prefix ) {
1839 if ( substr( $partname, 0, strlen( $prefix ) ) == $prefix ) {
1841 'warning' => 'bad-prefix',
1852 * Helper function that checks whether the filename looks like a thumbnail
1853 * @param string $filename
1856 public static function isThumbName( $filename ) {
1857 $n = strrpos( $filename, '.' );
1858 $partname = $n ?
substr( $filename, 0, $n ) : $filename;
1861 substr( $partname, 3, 3 ) == 'px-' ||
1862 substr( $partname, 2, 3 ) == 'px-'
1864 preg_match( "/[0-9]{2}/", substr( $partname, 0, 2 ) );
1868 * Get a list of blacklisted filename prefixes from [[MediaWiki:Filename-prefix-blacklist]]
1870 * @return array List of prefixes
1872 public static function getFilenamePrefixBlacklist() {
1873 $blacklist = array();
1874 $message = wfMessage( 'filename-prefix-blacklist' )->inContentLanguage();
1875 if ( !$message->isDisabled() ) {
1876 $lines = explode( "\n", $message->plain() );
1877 foreach ( $lines as $line ) {
1878 // Remove comment lines
1879 $comment = substr( trim( $line ), 0, 1 );
1880 if ( $comment == '#' ||
$comment == '' ) {
1883 // Remove additional comments after a prefix
1884 $comment = strpos( $line, '#' );
1885 if ( $comment > 0 ) {
1886 $line = substr( $line, 0, $comment - 1 );
1888 $blacklist[] = trim( $line );
1896 * Gets image info about the file just uploaded.
1898 * Also has the effect of setting metadata to be an 'indexed tag name' in
1899 * returned API result if 'metadata' was requested. Oddly, we have to pass
1900 * the "result" object down just so it can do that with the appropriate
1901 * format, presumably.
1903 * @param ApiResult $result
1904 * @return array Image info
1906 public function getImageInfo( $result ) {
1907 $file = $this->getLocalFile();
1908 /** @todo This cries out for refactoring.
1909 * We really want to say $file->getAllInfo(); here.
1910 * Perhaps "info" methods should be moved into files, and the API should
1911 * just wrap them in queries.
1913 if ( $file instanceof UploadStashFile
) {
1914 $imParam = ApiQueryStashImageInfo
::getPropertyNames();
1915 $info = ApiQueryStashImageInfo
::getInfo( $file, array_flip( $imParam ), $result );
1917 $imParam = ApiQueryImageInfo
::getPropertyNames();
1918 $info = ApiQueryImageInfo
::getInfo( $file, array_flip( $imParam ), $result );
1925 * @param array $error
1928 public function convertVerifyErrorToStatus( $error ) {
1929 $code = $error['status'];
1930 unset( $code['status'] );
1932 return Status
::newFatal( $this->getVerificationErrorCode( $code ), $error );
1936 * @param null|string $forType
1939 public static function getMaxUploadSize( $forType = null ) {
1940 global $wgMaxUploadSize;
1942 if ( is_array( $wgMaxUploadSize ) ) {
1943 if ( !is_null( $forType ) && isset( $wgMaxUploadSize[$forType] ) ) {
1944 return $wgMaxUploadSize[$forType];
1946 return $wgMaxUploadSize['*'];
1949 return intval( $wgMaxUploadSize );
1954 * Get the current status of a chunked upload (used for polling)
1956 * The value will be read from cache.
1959 * @param string $statusKey
1960 * @return Status[]|bool
1962 public static function getSessionStatus( User
$user, $statusKey ) {
1963 $key = wfMemcKey( 'uploadstatus', $user->getId() ?
: md5( $user->getName() ), $statusKey );
1965 return wfGetCache( CACHE_ANYTHING
)->get( $key );
1969 * Set the current status of a chunked upload (used for polling)
1971 * The value will be set in cache for 1 day
1974 * @param string $statusKey
1975 * @param array|bool $value
1978 public static function setSessionStatus( User
$user, $statusKey, $value ) {
1979 $key = wfMemcKey( 'uploadstatus', $user->getId() ?
: md5( $user->getName() ), $statusKey );
1981 $cache = wfGetCache( CACHE_ANYTHING
);
1982 if ( $value === false ) {
1983 $cache->delete( $key );
1985 $cache->set( $key, $value, 86400 );