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;
72 const SESSION_STATUS_KEY
= 'wsUploadStatusData';
78 public function getVerificationErrorCode( $error ) {
79 $code_to_status = array(
80 self
::EMPTY_FILE
=> 'empty-file',
81 self
::FILE_TOO_LARGE
=> 'file-too-large',
82 self
::FILETYPE_MISSING
=> 'filetype-missing',
83 self
::FILETYPE_BADTYPE
=> 'filetype-banned',
84 self
::MIN_LENGTH_PARTNAME
=> 'filename-tooshort',
85 self
::ILLEGAL_FILENAME
=> 'illegal-filename',
86 self
::OVERWRITE_EXISTING_FILE
=> 'overwrite',
87 self
::VERIFICATION_ERROR
=> 'verification-error',
88 self
::HOOK_ABORTED
=> 'hookaborted',
89 self
::WINDOWS_NONASCII_FILENAME
=> 'windows-nonascii-filename',
90 self
::FILENAME_TOO_LONG
=> 'filename-toolong',
92 if ( isset( $code_to_status[$error] ) ) {
93 return $code_to_status[$error];
96 return 'unknown-error';
100 * Returns true if uploads are enabled.
101 * Can be override by subclasses.
104 public static function isEnabled() {
105 global $wgEnableUploads;
107 if ( !$wgEnableUploads ) {
111 # Check php's file_uploads setting
112 return wfIsHHVM() ||
wfIniGetBool( 'file_uploads' );
116 * Returns true if the user can use this upload module or else a string
117 * identifying the missing permission.
118 * Can be overridden by subclasses.
121 * @return bool|string
123 public static function isAllowed( $user ) {
124 foreach ( array( 'upload', 'edit' ) as $permission ) {
125 if ( !$user->isAllowed( $permission ) ) {
133 // Upload handlers. Should probably just be a global.
134 private static $uploadHandlers = array( 'Stash', 'File', 'Url' );
137 * Create a form of UploadBase depending on wpSourceType and initializes it
139 * @param WebRequest $request
140 * @param string|null $type
141 * @return null|UploadBase
143 public static function createFromRequest( &$request, $type = null ) {
144 $type = $type ?
$type : $request->getVal( 'wpSourceType', 'File' );
150 // Get the upload class
151 $type = ucfirst( $type );
153 // Give hooks the chance to handle this request
155 wfRunHooks( 'UploadCreateFromRequest', array( $type, &$className ) );
156 if ( is_null( $className ) ) {
157 $className = 'UploadFrom' . $type;
158 wfDebug( __METHOD__
. ": class name: $className\n" );
159 if ( !in_array( $type, self
::$uploadHandlers ) ) {
164 // Check whether this upload class is enabled
165 if ( !call_user_func( array( $className, 'isEnabled' ) ) ) {
169 // Check whether the request is valid
170 if ( !call_user_func( array( $className, 'isValidRequest' ), $request ) ) {
174 /** @var UploadBase $handler */
175 $handler = new $className;
177 $handler->initializeFromRequest( $request );
183 * Check whether a request if valid for this handler
184 * @param WebRequest $request
187 public static function isValidRequest( $request ) {
191 public function __construct() {
195 * Returns the upload type. Should be overridden by child classes
200 public function getSourceType() {
205 * Initialize the path information
206 * @param string $name The desired destination name
207 * @param string $tempPath The temporary path
208 * @param int $fileSize The file size
209 * @param bool $removeTempFile (false) remove the temporary file?
210 * @throws MWException
212 public function initializePathInfo( $name, $tempPath, $fileSize, $removeTempFile = false ) {
213 $this->mDesiredDestName
= $name;
214 if ( FileBackend
::isStoragePath( $tempPath ) ) {
215 throw new MWException( __METHOD__
. " given storage path `$tempPath`." );
217 $this->mTempPath
= $tempPath;
218 $this->mFileSize
= $fileSize;
219 $this->mRemoveTempFile
= $removeTempFile;
223 * Initialize from a WebRequest. Override this in a subclass.
225 * @param WebRequest $request
227 abstract public function initializeFromRequest( &$request );
230 * Fetch the file. Usually a no-op
233 public function fetchFile() {
234 return Status
::newGood();
238 * Return true if the file is empty
241 public function isEmptyFile() {
242 return empty( $this->mFileSize
);
246 * Return the file size
249 public function getFileSize() {
250 return $this->mFileSize
;
254 * Get the base 36 SHA1 of the file
257 public function getTempFileSha1Base36() {
258 return FSFile
::getSha1Base36FromPath( $this->mTempPath
);
262 * @param string $srcPath The source path
263 * @return string|bool The real path if it was a virtual URL Returns false on failure
265 function getRealPath( $srcPath ) {
266 wfProfileIn( __METHOD__
);
267 $repo = RepoGroup
::singleton()->getLocalRepo();
268 if ( $repo->isVirtualUrl( $srcPath ) ) {
269 /** @todo Just make uploads work with storage paths UploadFromStash
270 * loads files via virtual URLs.
272 $tmpFile = $repo->getLocalCopy( $srcPath );
274 $tmpFile->bind( $this ); // keep alive with $this
276 $path = $tmpFile ?
$tmpFile->getPath() : false;
280 wfProfileOut( __METHOD__
);
286 * Verify whether the upload is sane.
287 * @return mixed Const self::OK or else an array with error information
289 public function verifyUpload() {
290 wfProfileIn( __METHOD__
);
293 * If there was no filename or a zero size given, give up quick.
295 if ( $this->isEmptyFile() ) {
296 wfProfileOut( __METHOD__
);
298 return array( 'status' => self
::EMPTY_FILE
);
302 * Honor $wgMaxUploadSize
304 $maxSize = self
::getMaxUploadSize( $this->getSourceType() );
305 if ( $this->mFileSize
> $maxSize ) {
306 wfProfileOut( __METHOD__
);
309 'status' => self
::FILE_TOO_LARGE
,
315 * Look at the contents of the file; if we can recognize the
316 * type but it's corrupt or data of the wrong type, we should
317 * probably not accept it.
319 $verification = $this->verifyFile();
320 if ( $verification !== true ) {
321 wfProfileOut( __METHOD__
);
324 'status' => self
::VERIFICATION_ERROR
,
325 'details' => $verification
330 * Make sure this file can be created
332 $result = $this->validateName();
333 if ( $result !== true ) {
334 wfProfileOut( __METHOD__
);
340 if ( !wfRunHooks( 'UploadVerification',
341 array( $this->mDestName
, $this->mTempPath
, &$error ) )
343 wfProfileOut( __METHOD__
);
345 return array( 'status' => self
::HOOK_ABORTED
, 'error' => $error );
348 wfProfileOut( __METHOD__
);
350 return array( 'status' => self
::OK
);
354 * Verify that the name is valid and, if necessary, that we can overwrite
356 * @return mixed True if valid, otherwise and array with 'status'
359 public function validateName() {
360 $nt = $this->getTitle();
361 if ( is_null( $nt ) ) {
362 $result = array( 'status' => $this->mTitleError
);
363 if ( $this->mTitleError
== self
::ILLEGAL_FILENAME
) {
364 $result['filtered'] = $this->mFilteredName
;
366 if ( $this->mTitleError
== self
::FILETYPE_BADTYPE
) {
367 $result['finalExt'] = $this->mFinalExtension
;
368 if ( count( $this->mBlackListedExtensions
) ) {
369 $result['blacklistedExt'] = $this->mBlackListedExtensions
;
375 $this->mDestName
= $this->getLocalFile()->getName();
381 * Verify the MIME type.
383 * @note Only checks that it is not an evil MIME. The "does it have
384 * correct extension given its MIME type?" check is in verifyFile.
385 * in `verifyFile()` that MIME type and file extension correlate.
386 * @param string $mime Representing the MIME
387 * @return mixed True if the file is verified, an array otherwise
389 protected function verifyMimeType( $mime ) {
390 global $wgVerifyMimeType;
391 wfProfileIn( __METHOD__
);
392 if ( $wgVerifyMimeType ) {
393 wfDebug( "mime: <$mime> extension: <{$this->mFinalExtension}>\n" );
394 global $wgMimeTypeBlacklist;
395 if ( $this->checkFileExtension( $mime, $wgMimeTypeBlacklist ) ) {
396 wfProfileOut( __METHOD__
);
398 return array( 'filetype-badmime', $mime );
401 # Check what Internet Explorer would detect
402 $fp = fopen( $this->mTempPath
, 'rb' );
403 $chunk = fread( $fp, 256 );
406 $magic = MimeMagic
::singleton();
407 $extMime = $magic->guessTypesForExtension( $this->mFinalExtension
);
408 $ieTypes = $magic->getIEMimeTypes( $this->mTempPath
, $chunk, $extMime );
409 foreach ( $ieTypes as $ieType ) {
410 if ( $this->checkFileExtension( $ieType, $wgMimeTypeBlacklist ) ) {
411 wfProfileOut( __METHOD__
);
413 return array( 'filetype-bad-ie-mime', $ieType );
418 wfProfileOut( __METHOD__
);
424 * Verifies that it's ok to include the uploaded file
426 * @return mixed True of the file is verified, array otherwise.
428 protected function verifyFile() {
429 global $wgVerifyMimeType;
430 wfProfileIn( __METHOD__
);
432 $status = $this->verifyPartialFile();
433 if ( $status !== true ) {
434 wfProfileOut( __METHOD__
);
439 $this->mFileProps
= FSFile
::getPropsFromPath( $this->mTempPath
, $this->mFinalExtension
);
440 $mime = $this->mFileProps
['mime'];
442 if ( $wgVerifyMimeType ) {
443 # XXX: Missing extension will be caught by validateName() via getTitle()
444 if ( $this->mFinalExtension
!= '' && !$this->verifyExtension( $mime, $this->mFinalExtension
) ) {
445 wfProfileOut( __METHOD__
);
447 return array( 'filetype-mime-mismatch', $this->mFinalExtension
, $mime );
451 $handler = MediaHandler
::getHandler( $mime );
453 $handlerStatus = $handler->verifyUpload( $this->mTempPath
);
454 if ( !$handlerStatus->isOK() ) {
455 $errors = $handlerStatus->getErrorsArray();
456 wfProfileOut( __METHOD__
);
458 return reset( $errors );
462 wfRunHooks( 'UploadVerifyFile', array( $this, $mime, &$status ) );
463 if ( $status !== true ) {
464 wfProfileOut( __METHOD__
);
469 wfDebug( __METHOD__
. ": all clear; passing.\n" );
470 wfProfileOut( __METHOD__
);
476 * A verification routine suitable for partial files
478 * Runs the blacklist checks, but not any checks that may
479 * assume the entire file is present.
481 * @return mixed True for valid or array with error message key.
483 protected function verifyPartialFile() {
484 global $wgAllowJavaUploads, $wgDisableUploadScriptChecks;
485 wfProfileIn( __METHOD__
);
487 # getTitle() sets some internal parameters like $this->mFinalExtension
490 $this->mFileProps
= FSFile
::getPropsFromPath( $this->mTempPath
, $this->mFinalExtension
);
492 # check MIME type, if desired
493 $mime = $this->mFileProps
['file-mime'];
494 $status = $this->verifyMimeType( $mime );
495 if ( $status !== true ) {
496 wfProfileOut( __METHOD__
);
501 # check for htmlish code and javascript
502 if ( !$wgDisableUploadScriptChecks ) {
503 if ( self
::detectScript( $this->mTempPath
, $mime, $this->mFinalExtension
) ) {
504 wfProfileOut( __METHOD__
);
506 return array( 'uploadscripted' );
508 if ( $this->mFinalExtension
== 'svg' ||
$mime == 'image/svg+xml' ) {
509 $svgStatus = $this->detectScriptInSvg( $this->mTempPath
);
510 if ( $svgStatus !== false ) {
511 wfProfileOut( __METHOD__
);
518 # Check for Java applets, which if uploaded can bypass cross-site
520 if ( !$wgAllowJavaUploads ) {
521 $this->mJavaDetected
= false;
522 $zipStatus = ZipDirectoryReader
::read( $this->mTempPath
,
523 array( $this, 'zipEntryCallback' ) );
524 if ( !$zipStatus->isOK() ) {
525 $errors = $zipStatus->getErrorsArray();
526 $error = reset( $errors );
527 if ( $error[0] !== 'zip-wrong-format' ) {
528 wfProfileOut( __METHOD__
);
533 if ( $this->mJavaDetected
) {
534 wfProfileOut( __METHOD__
);
536 return array( 'uploadjava' );
540 # Scan the uploaded file for viruses
541 $virus = $this->detectVirus( $this->mTempPath
);
543 wfProfileOut( __METHOD__
);
545 return array( 'uploadvirus', $virus );
548 wfProfileOut( __METHOD__
);
554 * Callback for ZipDirectoryReader to detect Java class files.
556 * @param array $entry
558 function zipEntryCallback( $entry ) {
559 $names = array( $entry['name'] );
561 // If there is a null character, cut off the name at it, because JDK's
562 // ZIP_GetEntry() uses strcmp() if the name hashes match. If a file name
563 // were constructed which had ".class\0" followed by a string chosen to
564 // make the hash collide with the truncated name, that file could be
565 // returned in response to a request for the .class file.
566 $nullPos = strpos( $entry['name'], "\000" );
567 if ( $nullPos !== false ) {
568 $names[] = substr( $entry['name'], 0, $nullPos );
571 // If there is a trailing slash in the file name, we have to strip it,
572 // because that's what ZIP_GetEntry() does.
573 if ( preg_grep( '!\.class/?$!', $names ) ) {
574 $this->mJavaDetected
= true;
579 * Alias for verifyTitlePermissions. The function was originally
580 * 'verifyPermissions', but that suggests it's checking the user, when it's
581 * really checking the title + user combination.
583 * @param User $user User object to verify the permissions against
584 * @return mixed An array as returned by getUserPermissionsErrors or true
585 * in case the user has proper permissions.
587 public function verifyPermissions( $user ) {
588 return $this->verifyTitlePermissions( $user );
592 * Check whether the user can edit, upload and create the image. This
593 * checks only against the current title; if it returns errors, it may
594 * very well be that another title will not give errors. Therefore
595 * isAllowed() should be called as well for generic is-user-blocked or
596 * can-user-upload checking.
598 * @param User $user User object to verify the permissions against
599 * @return mixed An array as returned by getUserPermissionsErrors or true
600 * in case the user has proper permissions.
602 public function verifyTitlePermissions( $user ) {
604 * If the image is protected, non-sysop users won't be able
605 * to modify it by uploading a new revision.
607 $nt = $this->getTitle();
608 if ( is_null( $nt ) ) {
611 $permErrors = $nt->getUserPermissionsErrors( 'edit', $user );
612 $permErrorsUpload = $nt->getUserPermissionsErrors( 'upload', $user );
613 if ( !$nt->exists() ) {
614 $permErrorsCreate = $nt->getUserPermissionsErrors( 'create', $user );
616 $permErrorsCreate = array();
618 if ( $permErrors ||
$permErrorsUpload ||
$permErrorsCreate ) {
619 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsUpload, $permErrors ) );
620 $permErrors = array_merge( $permErrors, wfArrayDiff2( $permErrorsCreate, $permErrors ) );
625 $overwriteError = $this->checkOverwrite( $user );
626 if ( $overwriteError !== true ) {
627 return array( $overwriteError );
634 * Check for non fatal problems with the file.
636 * This should not assume that mTempPath is set.
638 * @return array Array of warnings
640 public function checkWarnings() {
642 wfProfileIn( __METHOD__
);
646 $localFile = $this->getLocalFile();
647 $filename = $localFile->getName();
650 * Check whether the resulting filename is different from the desired one,
651 * but ignore things like ucfirst() and spaces/underscore things
653 $comparableName = str_replace( ' ', '_', $this->mDesiredDestName
);
654 $comparableName = Title
::capitalize( $comparableName, NS_FILE
);
656 if ( $this->mDesiredDestName
!= $filename && $comparableName != $filename ) {
657 $warnings['badfilename'] = $filename;
658 // Debugging for bug 62241
659 wfDebugLog( 'upload', "Filename: '$filename', mDesiredDestName: "
660 . "'$this->mDesiredDestName', comparableName: '$comparableName'" );
663 // Check whether the file extension is on the unwanted list
664 global $wgCheckFileExtensions, $wgFileExtensions;
665 if ( $wgCheckFileExtensions ) {
666 $extensions = array_unique( $wgFileExtensions );
667 if ( !$this->checkFileExtension( $this->mFinalExtension
, $extensions ) ) {
668 $warnings['filetype-unwanted-type'] = array( $this->mFinalExtension
,
669 $wgLang->commaList( $extensions ), count( $extensions ) );
673 global $wgUploadSizeWarning;
674 if ( $wgUploadSizeWarning && ( $this->mFileSize
> $wgUploadSizeWarning ) ) {
675 $warnings['large-file'] = array( $wgUploadSizeWarning, $this->mFileSize
);
678 if ( $this->mFileSize
== 0 ) {
679 $warnings['emptyfile'] = true;
682 $exists = self
::getExistsWarning( $localFile );
683 if ( $exists !== false ) {
684 $warnings['exists'] = $exists;
687 // Check dupes against existing files
688 $hash = $this->getTempFileSha1Base36();
689 $dupes = RepoGroup
::singleton()->findBySha1( $hash );
690 $title = $this->getTitle();
691 // Remove all matches against self
692 foreach ( $dupes as $key => $dupe ) {
693 if ( $title->equals( $dupe->getTitle() ) ) {
694 unset( $dupes[$key] );
698 $warnings['duplicate'] = $dupes;
701 // Check dupes against archives
702 $archivedImage = new ArchivedFile( null, 0, "{$hash}.{$this->mFinalExtension}" );
703 if ( $archivedImage->getID() > 0 ) {
704 if ( $archivedImage->userCan( File
::DELETED_FILE
) ) {
705 $warnings['duplicate-archive'] = $archivedImage->getName();
707 $warnings['duplicate-archive'] = '';
711 wfProfileOut( __METHOD__
);
717 * Really perform the upload. Stores the file in the local repo, watches
718 * if necessary and runs the UploadComplete hook.
720 * @param string $comment
721 * @param string $pageText
725 * @return Status Indicating the whether the upload succeeded.
727 public function performUpload( $comment, $pageText, $watch, $user ) {
728 wfProfileIn( __METHOD__
);
730 $status = $this->getLocalFile()->upload(
740 if ( $status->isGood() ) {
742 WatchAction
::doWatch(
743 $this->getLocalFile()->getTitle(),
745 WatchedItem
::IGNORE_USER_RIGHTS
748 wfRunHooks( 'UploadComplete', array( &$this ) );
751 wfProfileOut( __METHOD__
);
757 * Returns the title of the file to be uploaded. Sets mTitleError in case
758 * the name was illegal.
760 * @return Title The title of the file or null in case the name was illegal
762 public function getTitle() {
763 if ( $this->mTitle
!== false ) {
764 return $this->mTitle
;
766 /* Assume that if a user specified File:Something.jpg, this is an error
767 * and that the namespace prefix needs to be stripped of.
769 $title = Title
::newFromText( $this->mDesiredDestName
);
770 if ( $title && $title->getNamespace() == NS_FILE
) {
771 $this->mFilteredName
= $title->getDBkey();
773 $this->mFilteredName
= $this->mDesiredDestName
;
776 # oi_archive_name is max 255 bytes, which include a timestamp and an
777 # exclamation mark, so restrict file name to 240 bytes.
778 if ( strlen( $this->mFilteredName
) > 240 ) {
779 $this->mTitleError
= self
::FILENAME_TOO_LONG
;
780 $this->mTitle
= null;
782 return $this->mTitle
;
786 * Chop off any directories in the given filename. Then
787 * filter out illegal characters, and try to make a legible name
788 * out of it. We'll strip some silently that Title would die on.
790 $this->mFilteredName
= wfStripIllegalFilenameChars( $this->mFilteredName
);
791 /* Normalize to title form before we do any further processing */
792 $nt = Title
::makeTitleSafe( NS_FILE
, $this->mFilteredName
);
793 if ( is_null( $nt ) ) {
794 $this->mTitleError
= self
::ILLEGAL_FILENAME
;
795 $this->mTitle
= null;
797 return $this->mTitle
;
799 $this->mFilteredName
= $nt->getDBkey();
802 * We'll want to blacklist against *any* 'extension', and use
803 * only the final one for the whitelist.
805 list( $partname, $ext ) = $this->splitExtensions( $this->mFilteredName
);
807 if ( count( $ext ) ) {
808 $this->mFinalExtension
= trim( $ext[count( $ext ) - 1] );
810 $this->mFinalExtension
= '';
812 # No extension, try guessing one
813 $magic = MimeMagic
::singleton();
814 $mime = $magic->guessMimeType( $this->mTempPath
);
815 if ( $mime !== 'unknown/unknown' ) {
816 # Get a space separated list of extensions
817 $extList = $magic->getExtensionsForType( $mime );
819 # Set the extension to the canonical extension
820 $this->mFinalExtension
= strtok( $extList, ' ' );
822 # Fix up the other variables
823 $this->mFilteredName
.= ".{$this->mFinalExtension}";
824 $nt = Title
::makeTitleSafe( NS_FILE
, $this->mFilteredName
);
825 $ext = array( $this->mFinalExtension
);
830 /* Don't allow users to override the blacklist (check file extension) */
831 global $wgCheckFileExtensions, $wgStrictFileExtensions;
832 global $wgFileExtensions, $wgFileBlacklist;
834 $blackListedExtensions = $this->checkFileExtensionList( $ext, $wgFileBlacklist );
836 if ( $this->mFinalExtension
== '' ) {
837 $this->mTitleError
= self
::FILETYPE_MISSING
;
838 $this->mTitle
= null;
840 return $this->mTitle
;
841 } elseif ( $blackListedExtensions ||
842 ( $wgCheckFileExtensions && $wgStrictFileExtensions &&
843 !$this->checkFileExtension( $this->mFinalExtension
, $wgFileExtensions ) )
845 $this->mBlackListedExtensions
= $blackListedExtensions;
846 $this->mTitleError
= self
::FILETYPE_BADTYPE
;
847 $this->mTitle
= null;
849 return $this->mTitle
;
852 // Windows may be broken with special characters, see bug 1780
853 if ( !preg_match( '/^[\x0-\x7f]*$/', $nt->getText() )
854 && !RepoGroup
::singleton()->getLocalRepo()->backendSupportsUnicodePaths()
856 $this->mTitleError
= self
::WINDOWS_NONASCII_FILENAME
;
857 $this->mTitle
= null;
859 return $this->mTitle
;
862 # If there was more than one "extension", reassemble the base
863 # filename to prevent bogus complaints about length
864 if ( count( $ext ) > 1 ) {
865 $iterations = count( $ext ) - 1;
866 for ( $i = 0; $i < $iterations; $i++
) {
867 $partname .= '.' . $ext[$i];
871 if ( strlen( $partname ) < 1 ) {
872 $this->mTitleError
= self
::MIN_LENGTH_PARTNAME
;
873 $this->mTitle
= null;
875 return $this->mTitle
;
880 return $this->mTitle
;
884 * Return the local file and initializes if necessary.
886 * @return LocalFile|UploadStashFile|null
888 public function getLocalFile() {
889 if ( is_null( $this->mLocalFile
) ) {
890 $nt = $this->getTitle();
891 $this->mLocalFile
= is_null( $nt ) ?
null : wfLocalFile( $nt );
894 return $this->mLocalFile
;
898 * If the user does not supply all necessary information in the first upload
899 * form submission (either by accident or by design) then we may want to
900 * stash the file temporarily, get more information, and publish the file
903 * This method will stash a file in a temporary directory for later
904 * processing, and save the necessary descriptive info into the database.
905 * This method returns the file object, which also has a 'fileKey' property
906 * which can be passed through a form or API request to find this stashed
910 * @return UploadStashFile Stashed file
912 public function stashFile( User
$user = null ) {
913 // was stashSessionFile
914 wfProfileIn( __METHOD__
);
916 $stash = RepoGroup
::singleton()->getLocalRepo()->getUploadStash( $user );
917 $file = $stash->stashFile( $this->mTempPath
, $this->getSourceType() );
918 $this->mLocalFile
= $file;
920 wfProfileOut( __METHOD__
);
926 * Stash a file in a temporary directory, returning a key which can be used
927 * to find the file again. See stashFile().
929 * @return string File key
931 public function stashFileGetKey() {
932 return $this->stashFile()->getFileKey();
936 * alias for stashFileGetKey, for backwards compatibility
938 * @return string File key
940 public function stashSession() {
941 return $this->stashFileGetKey();
945 * If we've modified the upload file we need to manually remove it
946 * on exit to clean up.
948 public function cleanupTempFile() {
949 if ( $this->mRemoveTempFile
&& $this->mTempPath
&& file_exists( $this->mTempPath
) ) {
950 wfDebug( __METHOD__
. ": Removing temporary file {$this->mTempPath}\n" );
951 unlink( $this->mTempPath
);
955 public function getTempPath() {
956 return $this->mTempPath
;
960 * Split a file into a base name and all dot-delimited 'extensions'
961 * on the end. Some web server configurations will fall back to
962 * earlier pseudo-'extensions' to determine type and execute
963 * scripts, so the blacklist needs to check them all.
965 * @param string $filename
968 public static function splitExtensions( $filename ) {
969 $bits = explode( '.', $filename );
970 $basename = array_shift( $bits );
972 return array( $basename, $bits );
976 * Perform case-insensitive match against a list of file extensions.
977 * Returns true if the extension is in the list.
983 public static function checkFileExtension( $ext, $list ) {
984 return in_array( strtolower( $ext ), $list );
988 * Perform case-insensitive match against a list of file extensions.
989 * Returns an array of matching extensions.
995 public static function checkFileExtensionList( $ext, $list ) {
996 return array_intersect( array_map( 'strtolower', $ext ), $list );
1000 * Checks if the MIME type of the uploaded file matches the file extension.
1002 * @param string $mime The MIME type of the uploaded file
1003 * @param string $extension The filename extension that the file is to be served with
1006 public static function verifyExtension( $mime, $extension ) {
1007 $magic = MimeMagic
::singleton();
1009 if ( !$mime ||
$mime == 'unknown' ||
$mime == 'unknown/unknown' ) {
1010 if ( !$magic->isRecognizableExtension( $extension ) ) {
1011 wfDebug( __METHOD__
. ": passing file with unknown detected mime type; " .
1012 "unrecognized extension '$extension', can't verify\n" );
1016 wfDebug( __METHOD__
. ": rejecting file with unknown detected mime type; " .
1017 "recognized extension '$extension', so probably invalid file\n" );
1023 $match = $magic->isMatchingExtension( $extension, $mime );
1025 if ( $match === null ) {
1026 if ( $magic->getTypesForExtension( $extension ) !== null ) {
1027 wfDebug( __METHOD__
. ": No extension known for $mime, but we know a mime for $extension\n" );
1031 wfDebug( __METHOD__
. ": no file extension known for mime type $mime, passing file\n" );
1035 } elseif ( $match === true ) {
1036 wfDebug( __METHOD__
. ": mime type $mime matches extension $extension, passing file\n" );
1038 /** @todo If it's a bitmap, make sure PHP or ImageMagick resp. can handle it! */
1042 . ": mime type $mime mismatches file extension $extension, rejecting file\n" );
1049 * Heuristic for detecting files that *could* contain JavaScript instructions or
1050 * things that may look like HTML to a browser and are thus
1051 * potentially harmful. The present implementation will produce false
1052 * positives in some situations.
1054 * @param string $file Pathname to the temporary upload file
1055 * @param string $mime The MIME type of the file
1056 * @param string $extension The extension of the file
1057 * @return bool True if the file contains something looking like embedded scripts
1059 public static function detectScript( $file, $mime, $extension ) {
1060 global $wgAllowTitlesInSVG;
1061 wfProfileIn( __METHOD__
);
1063 # ugly hack: for text files, always look at the entire file.
1064 # For binary field, just check the first K.
1066 if ( strpos( $mime, 'text/' ) === 0 ) {
1067 $chunk = file_get_contents( $file );
1069 $fp = fopen( $file, 'rb' );
1070 $chunk = fread( $fp, 1024 );
1074 $chunk = strtolower( $chunk );
1077 wfProfileOut( __METHOD__
);
1082 # decode from UTF-16 if needed (could be used for obfuscation).
1083 if ( substr( $chunk, 0, 2 ) == "\xfe\xff" ) {
1085 } elseif ( substr( $chunk, 0, 2 ) == "\xff\xfe" ) {
1092 $chunk = iconv( $enc, "ASCII//IGNORE", $chunk );
1095 $chunk = trim( $chunk );
1097 /** @todo FIXME: Convert from UTF-16 if necessary! */
1098 wfDebug( __METHOD__
. ": checking for embedded scripts and HTML stuff\n" );
1100 # check for HTML doctype
1101 if ( preg_match( "/<!DOCTYPE *X?HTML/i", $chunk ) ) {
1102 wfProfileOut( __METHOD__
);
1107 // Some browsers will interpret obscure xml encodings as UTF-8, while
1108 // PHP/expat will interpret the given encoding in the xml declaration (bug 47304)
1109 if ( $extension == 'svg' ||
strpos( $mime, 'image/svg' ) === 0 ) {
1110 if ( self
::checkXMLEncodingMissmatch( $file ) ) {
1111 wfProfileOut( __METHOD__
);
1118 * Internet Explorer for Windows performs some really stupid file type
1119 * autodetection which can cause it to interpret valid image files as HTML
1120 * and potentially execute JavaScript, creating a cross-site scripting
1123 * Apple's Safari browser also performs some unsafe file type autodetection
1124 * which can cause legitimate files to be interpreted as HTML if the
1125 * web server is not correctly configured to send the right content-type
1126 * (or if you're really uploading plain text and octet streams!)
1128 * Returns true if IE is likely to mistake the given file for HTML.
1129 * Also returns true if Safari would mistake the given file for HTML
1130 * when served with a generic content-type.
1136 '<html', #also in safari
1139 '<script', #also in safari
1143 if ( !$wgAllowTitlesInSVG && $extension !== 'svg' && $mime !== 'image/svg' ) {
1147 foreach ( $tags as $tag ) {
1148 if ( false !== strpos( $chunk, $tag ) ) {
1149 wfDebug( __METHOD__
. ": found something that may make it be mistaken for html: $tag\n" );
1150 wfProfileOut( __METHOD__
);
1157 * look for JavaScript
1160 # resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1161 $chunk = Sanitizer
::decodeCharReferences( $chunk );
1163 # look for script-types
1164 if ( preg_match( '!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim', $chunk ) ) {
1165 wfDebug( __METHOD__
. ": found script types\n" );
1166 wfProfileOut( __METHOD__
);
1171 # look for html-style script-urls
1172 if ( preg_match( '!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1173 wfDebug( __METHOD__
. ": found html-style script urls\n" );
1174 wfProfileOut( __METHOD__
);
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" );
1182 wfProfileOut( __METHOD__
);
1187 wfDebug( __METHOD__
. ": no scripts found\n" );
1188 wfProfileOut( __METHOD__
);
1194 * Check a whitelist of xml encodings that are known not to be interpreted differently
1195 * by the server's xml parser (expat) and some common browsers.
1197 * @param string $file Pathname to the temporary upload file
1198 * @return bool True if the file contains an encoding that could be misinterpreted
1200 public static function checkXMLEncodingMissmatch( $file ) {
1201 global $wgSVGMetadataCutoff;
1202 $contents = file_get_contents( $file, false, null, -1, $wgSVGMetadataCutoff );
1203 $encodingRegex = '!encoding[ \t\n\r]*=[ \t\n\r]*[\'"](.*?)[\'"]!si';
1205 if ( preg_match( "!<\?xml\b(.*?)\?>!si", $contents, $matches ) ) {
1206 if ( preg_match( $encodingRegex, $matches[1], $encMatch )
1207 && !in_array( strtoupper( $encMatch[1] ), self
::$safeXmlEncodings )
1209 wfDebug( __METHOD__
. ": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1213 } elseif ( preg_match( "!<\?xml\b!si", $contents ) ) {
1214 // Start of XML declaration without an end in the first $wgSVGMetadataCutoff
1215 // bytes. There shouldn't be a legitimate reason for this to happen.
1216 wfDebug( __METHOD__
. ": Unmatched XML declaration start\n" );
1219 } elseif ( substr( $contents, 0, 4 ) == "\x4C\x6F\xA7\x94" ) {
1220 // EBCDIC encoded XML
1221 wfDebug( __METHOD__
. ": EBCDIC Encoded XML\n" );
1226 // It's possible the file is encoded with multi-byte encoding, so re-encode attempt to
1227 // detect the encoding in case is specifies an encoding not whitelisted in self::$safeXmlEncodings
1228 $attemptEncodings = array( 'UTF-16', 'UTF-16BE', 'UTF-32', 'UTF-32BE' );
1229 foreach ( $attemptEncodings as $encoding ) {
1230 wfSuppressWarnings();
1231 $str = iconv( $encoding, 'UTF-8', $contents );
1232 wfRestoreWarnings();
1233 if ( $str != '' && preg_match( "!<\?xml\b(.*?)\?>!si", $str, $matches ) ) {
1234 if ( preg_match( $encodingRegex, $matches[1], $encMatch )
1235 && !in_array( strtoupper( $encMatch[1] ), self
::$safeXmlEncodings )
1237 wfDebug( __METHOD__
. ": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1241 } elseif ( $str != '' && preg_match( "!<\?xml\b!si", $str ) ) {
1242 // Start of XML declaration without an end in the first $wgSVGMetadataCutoff
1243 // bytes. There shouldn't be a legitimate reason for this to happen.
1244 wfDebug( __METHOD__
. ": Unmatched XML declaration start\n" );
1254 * @param string $filename
1255 * @return mixed False of the file is verified (does not contain scripts), array otherwise.
1257 protected function detectScriptInSvg( $filename ) {
1258 $this->mSVGNSError
= false;
1259 $check = new XmlTypeCheck(
1261 array( $this, 'checkSvgScriptCallback' ),
1263 array( 'processing_instruction_handler' => 'UploadBase::checkSvgPICallback' )
1265 if ( $check->wellFormed
!== true ) {
1266 // Invalid xml (bug 58553)
1267 return 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 ) {
1301 list( $namespace, $strippedElement ) = $this->splitXmlNamespace( $element );
1303 // We specifically don't include:
1304 // http://www.w3.org/1999/xhtml (bug 60771)
1305 static $validNamespaces = array(
1308 'http://creativecommons.org/ns#',
1309 'http://inkscape.sourceforge.net/dtd/sodipodi-0.dtd',
1310 'http://ns.adobe.com/adobeillustrator/10.0/',
1311 'http://ns.adobe.com/adobesvgviewerextensions/3.0/',
1312 'http://ns.adobe.com/extensibility/1.0/',
1313 'http://ns.adobe.com/flows/1.0/',
1314 'http://ns.adobe.com/illustrator/1.0/',
1315 'http://ns.adobe.com/imagereplacement/1.0/',
1316 'http://ns.adobe.com/pdf/1.3/',
1317 'http://ns.adobe.com/photoshop/1.0/',
1318 'http://ns.adobe.com/saveforweb/1.0/',
1319 'http://ns.adobe.com/variables/1.0/',
1320 'http://ns.adobe.com/xap/1.0/',
1321 'http://ns.adobe.com/xap/1.0/g/',
1322 'http://ns.adobe.com/xap/1.0/g/img/',
1323 'http://ns.adobe.com/xap/1.0/mm/',
1324 'http://ns.adobe.com/xap/1.0/rights/',
1325 'http://ns.adobe.com/xap/1.0/stype/dimensions#',
1326 'http://ns.adobe.com/xap/1.0/stype/font#',
1327 'http://ns.adobe.com/xap/1.0/stype/manifestitem#',
1328 'http://ns.adobe.com/xap/1.0/stype/resourceevent#',
1329 'http://ns.adobe.com/xap/1.0/stype/resourceref#',
1330 'http://ns.adobe.com/xap/1.0/t/pg/',
1331 'http://purl.org/dc/elements/1.1/',
1332 'http://purl.org/dc/elements/1.1',
1333 'http://schemas.microsoft.com/visio/2003/svgextensions/',
1334 'http://sodipodi.sourceforge.net/dtd/sodipodi-0.dtd',
1335 'http://taptrix.com/inkpad/svg_extensions',
1336 'http://web.resource.org/cc/',
1337 'http://www.freesoftware.fsf.org/bkchem/cdml',
1338 'http://www.inkscape.org/namespaces/inkscape',
1339 'http://www.opengis.net/gml',
1340 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
1341 'http://www.w3.org/2000/svg',
1342 'http://www.w3.org/tr/rec-rdf-syntax/',
1345 if ( !in_array( $namespace, $validNamespaces ) ) {
1346 wfDebug( __METHOD__
. ": Non-svg namespace '$namespace' in uploaded file.\n" );
1347 /** @todo Return a status object to a closure in XmlTypeCheck, for MW1.21+ */
1348 $this->mSVGNSError
= $namespace;
1354 * check for elements that can contain javascript
1356 if ( $strippedElement == 'script' ) {
1357 wfDebug( __METHOD__
. ": Found script element '$element' in uploaded file.\n" );
1362 # e.g., <svg xmlns="http://www.w3.org/2000/svg">
1363 # <handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(1)</handler> </svg>
1364 if ( $strippedElement == 'handler' ) {
1365 wfDebug( __METHOD__
. ": Found scriptable element '$element' in uploaded file.\n" );
1370 # SVG reported in Feb '12 that used xml:stylesheet to generate javascript block
1371 if ( $strippedElement == 'stylesheet' ) {
1372 wfDebug( __METHOD__
. ": Found scriptable element '$element' in uploaded file.\n" );
1377 # Block iframes, in case they pass the namespace check
1378 if ( $strippedElement == 'iframe' ) {
1379 wfDebug( __METHOD__
. ": iframe in uploaded file.\n" );
1384 foreach ( $attribs as $attrib => $value ) {
1385 $stripped = $this->stripXmlNamespace( $attrib );
1386 $value = strtolower( $value );
1388 if ( substr( $stripped, 0, 2 ) == 'on' ) {
1390 . ": Found event-handler attribute '$attrib'='$value' in uploaded file.\n" );
1395 # href with non-local target (don't allow http://, javascript:, etc)
1396 if ( $stripped == 'href'
1397 && strpos( $value, 'data:' ) !== 0
1398 && strpos( $value, '#' ) !== 0
1400 if ( !( $strippedElement === 'a'
1401 && preg_match( '!^https?://!im', $value ) )
1403 wfDebug( __METHOD__
. ": Found href attribute <$strippedElement "
1404 . "'$attrib'='$value' in uploaded file.\n" );
1410 # href with embedded svg as target
1411 if ( $stripped == 'href' && preg_match( '!data:[^,]*image/svg[^,]*,!sim', $value ) ) {
1412 wfDebug( __METHOD__
. ": Found href to embedded svg "
1413 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1418 # href with embedded (text/xml) svg as target
1419 if ( $stripped == 'href' && preg_match( '!data:[^,]*text/xml[^,]*,!sim', $value ) ) {
1420 wfDebug( __METHOD__
. ": Found href to embedded svg "
1421 . "\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1426 # use set/animate to add event-handler attribute to parent
1427 if ( ( $strippedElement == 'set' ||
$strippedElement == 'animate' )
1428 && $stripped == 'attributename'
1429 && substr( $value, 0, 2 ) == 'on'
1431 wfDebug( __METHOD__
. ": Found svg setting event-handler attribute with "
1432 . "\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1437 # use set to add href attribute to parent element
1438 if ( $strippedElement == 'set'
1439 && $stripped == 'attributename'
1440 && strpos( $value, 'href' ) !== false
1442 wfDebug( __METHOD__
. ": Found svg setting href attribute '$value' in uploaded file.\n" );
1447 # use set to add a remote / data / script target to an element
1448 if ( $strippedElement == 'set'
1449 && $stripped == 'to'
1450 && preg_match( '!(http|https|data|script):!sim', $value )
1452 wfDebug( __METHOD__
. ": Found svg setting attribute to '$value' in uploaded file.\n" );
1457 # use handler attribute with remote / data / script
1458 if ( $stripped == 'handler' && preg_match( '!(http|https|data|script):!sim', $value ) ) {
1459 wfDebug( __METHOD__
. ": Found svg setting handler with remote/data/script "
1460 . "'$attrib'='$value' in uploaded file.\n" );
1465 # use CSS styles to bring in remote code
1466 # catch url("http:..., url('http:..., url(http:..., but not url("#..., url('#..., url(#....
1467 $tagsList = "font|clip-path|fill|filter|marker|marker-end|marker-mid|marker-start|mask|stroke";
1468 if ( $stripped == 'style'
1470 '!((?:' . $tagsList . ')\s*:\s*url\s*\(\s*["\']?\s*[^#]+.*?\))!sim',
1475 foreach ( $matches[1] as $match ) {
1476 if ( !preg_match( '!(?:' . $tagsList . ')\s*:\s*url\s*\(\s*(#|\'#|"#)!sim', $match ) ) {
1477 wfDebug( __METHOD__
. ": Found svg setting a style with "
1478 . "remote url '$attrib'='$value' in uploaded file.\n" );
1485 # image filters can pull in url, which could be svg that executes scripts
1486 if ( $strippedElement == 'image'
1487 && $stripped == 'filter'
1488 && preg_match( '!url\s*\(!sim', $value )
1490 wfDebug( __METHOD__
. ": Found image filter with url: "
1491 . "\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1497 return false; //No scripts detected
1501 * Divide the element name passed by the xml parser to the callback into URI and prifix.
1502 * @param string $element
1503 * @return array Containing the namespace URI and prefix
1505 private static function splitXmlNamespace( $element ) {
1506 // 'http://www.w3.org/2000/svg:script' -> array( 'http://www.w3.org/2000/svg', 'script' )
1507 $parts = explode( ':', strtolower( $element ) );
1508 $name = array_pop( $parts );
1509 $ns = implode( ':', $parts );
1511 return array( $ns, $name );
1515 * @param string $name
1518 private function stripXmlNamespace( $name ) {
1519 // 'http://www.w3.org/2000/svg:script' -> 'script'
1520 $parts = explode( ':', strtolower( $name ) );
1522 return array_pop( $parts );
1526 * Generic wrapper function for a virus scanner program.
1527 * This relies on the $wgAntivirus and $wgAntivirusSetup variables.
1528 * $wgAntivirusRequired may be used to deny upload if the scan fails.
1530 * @param string $file Pathname to the temporary upload file
1531 * @return mixed False if not virus is found, null if the scan fails or is disabled,
1532 * or a string containing feedback from the virus scanner if a virus was found.
1533 * If textual feedback is missing but a virus was found, this function returns true.
1535 public static function detectVirus( $file ) {
1536 global $wgAntivirus, $wgAntivirusSetup, $wgAntivirusRequired, $wgOut;
1537 wfProfileIn( __METHOD__
);
1539 if ( !$wgAntivirus ) {
1540 wfDebug( __METHOD__
. ": virus scanner disabled\n" );
1541 wfProfileOut( __METHOD__
);
1546 if ( !$wgAntivirusSetup[$wgAntivirus] ) {
1547 wfDebug( __METHOD__
. ": unknown virus scanner: $wgAntivirus\n" );
1548 $wgOut->wrapWikiMsg( "<div class=\"error\">\n$1\n</div>",
1549 array( 'virus-badscanner', $wgAntivirus ) );
1550 wfProfileOut( __METHOD__
);
1552 return wfMessage( 'virus-unknownscanner' )->text() . " $wgAntivirus";
1555 # look up scanner configuration
1556 $command = $wgAntivirusSetup[$wgAntivirus]['command'];
1557 $exitCodeMap = $wgAntivirusSetup[$wgAntivirus]['codemap'];
1558 $msgPattern = isset( $wgAntivirusSetup[$wgAntivirus]['messagepattern'] ) ?
1559 $wgAntivirusSetup[$wgAntivirus]['messagepattern'] : null;
1561 if ( strpos( $command, "%f" ) === false ) {
1562 # simple pattern: append file to scan
1563 $command .= " " . wfEscapeShellArg( $file );
1565 # complex pattern: replace "%f" with file to scan
1566 $command = str_replace( "%f", wfEscapeShellArg( $file ), $command );
1569 wfDebug( __METHOD__
. ": running virus scan: $command \n" );
1571 # execute virus scanner
1574 # NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1575 # that does not seem to be worth the pain.
1576 # Ask me (Duesentrieb) about it if it's ever needed.
1577 $output = wfShellExecWithStderr( $command, $exitCode );
1579 # map exit code to AV_xxx constants.
1580 $mappedCode = $exitCode;
1581 if ( $exitCodeMap ) {
1582 if ( isset( $exitCodeMap[$exitCode] ) ) {
1583 $mappedCode = $exitCodeMap[$exitCode];
1584 } elseif ( isset( $exitCodeMap["*"] ) ) {
1585 $mappedCode = $exitCodeMap["*"];
1589 /* NB: AV_NO_VIRUS is 0 but AV_SCAN_FAILED is false,
1590 * so we need the strict equalities === and thus can't use a switch here
1592 if ( $mappedCode === AV_SCAN_FAILED
) {
1593 # scan failed (code was mapped to false by $exitCodeMap)
1594 wfDebug( __METHOD__
. ": failed to scan $file (code $exitCode).\n" );
1596 $output = $wgAntivirusRequired
1597 ?
wfMessage( 'virus-scanfailed', array( $exitCode ) )->text()
1599 } elseif ( $mappedCode === AV_SCAN_ABORTED
) {
1600 # scan failed because filetype is unknown (probably imune)
1601 wfDebug( __METHOD__
. ": unsupported file type $file (code $exitCode).\n" );
1603 } elseif ( $mappedCode === AV_NO_VIRUS
) {
1605 wfDebug( __METHOD__
. ": file passed virus scan.\n" );
1608 $output = trim( $output );
1611 $output = true; #if there's no output, return true
1612 } elseif ( $msgPattern ) {
1614 if ( preg_match( $msgPattern, $output, $groups ) ) {
1616 $output = $groups[1];
1621 wfDebug( __METHOD__
. ": FOUND VIRUS! scanner feedback: $output \n" );
1624 wfProfileOut( __METHOD__
);
1630 * Check if there's an overwrite conflict and, if so, if restrictions
1631 * forbid this user from performing the upload.
1635 * @return mixed True on success, array on failure
1637 private function checkOverwrite( $user ) {
1638 // First check whether the local file can be overwritten
1639 $file = $this->getLocalFile();
1640 if ( $file->exists() ) {
1641 if ( !self
::userCanReUpload( $user, $file ) ) {
1642 return array( 'fileexists-forbidden', $file->getName() );
1648 /* Check shared conflicts: if the local file does not exist, but
1649 * wfFindFile finds a file, it exists in a shared repository.
1651 $file = wfFindFile( $this->getTitle() );
1652 if ( $file && !$user->isAllowed( 'reupload-shared' ) ) {
1653 return array( 'fileexists-shared-forbidden', $file->getName() );
1660 * Check if a user is the last uploader
1663 * @param string $img Image name
1666 public static function userCanReUpload( User
$user, $img ) {
1667 if ( $user->isAllowed( 'reupload' ) ) {
1668 return true; // non-conditional
1670 if ( !$user->isAllowed( 'reupload-own' ) ) {
1673 if ( is_string( $img ) ) {
1674 $img = wfLocalFile( $img );
1676 if ( !( $img instanceof LocalFile
) ) {
1680 return $user->getId() == $img->getUser( 'id' );
1684 * Helper function that does various existence checks for a file.
1685 * The following checks are performed:
1687 * - Article with the same name as the file exists
1688 * - File exists with normalized extension
1689 * - The file looks like a thumbnail and the original exists
1691 * @param File $file The File object to check
1692 * @return mixed False if the file does not exists, else an array
1694 public static function getExistsWarning( $file ) {
1695 if ( $file->exists() ) {
1696 return array( 'warning' => 'exists', 'file' => $file );
1699 if ( $file->getTitle()->getArticleID() ) {
1700 return array( 'warning' => 'page-exists', 'file' => $file );
1703 if ( $file->wasDeleted() && !$file->exists() ) {
1704 return array( 'warning' => 'was-deleted', 'file' => $file );
1707 if ( strpos( $file->getName(), '.' ) == false ) {
1708 $partname = $file->getName();
1711 $n = strrpos( $file->getName(), '.' );
1712 $extension = substr( $file->getName(), $n +
1 );
1713 $partname = substr( $file->getName(), 0, $n );
1715 $normalizedExtension = File
::normalizeExtension( $extension );
1717 if ( $normalizedExtension != $extension ) {
1718 // We're not using the normalized form of the extension.
1719 // Normal form is lowercase, using most common of alternate
1720 // extensions (eg 'jpg' rather than 'JPEG').
1722 // Check for another file using the normalized form...
1723 $nt_lc = Title
::makeTitle( NS_FILE
, "{$partname}.{$normalizedExtension}" );
1724 $file_lc = wfLocalFile( $nt_lc );
1726 if ( $file_lc->exists() ) {
1728 'warning' => 'exists-normalized',
1730 'normalizedFile' => $file_lc
1735 // Check for files with the same name but a different extension
1736 $similarFiles = RepoGroup
::singleton()->getLocalRepo()->findFilesByPrefix(
1737 "{$partname}.", 1 );
1738 if ( count( $similarFiles ) ) {
1740 'warning' => 'exists-normalized',
1742 'normalizedFile' => $similarFiles[0],
1746 if ( self
::isThumbName( $file->getName() ) ) {
1747 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
1748 $nt_thb = Title
::newFromText(
1749 substr( $partname, strpos( $partname, '-' ) +
1 ) . '.' . $extension,
1752 $file_thb = wfLocalFile( $nt_thb );
1753 if ( $file_thb->exists() ) {
1755 'warning' => 'thumb',
1757 'thumbFile' => $file_thb
1760 // File does not exist, but we just don't like the name
1762 'warning' => 'thumb-name',
1764 'thumbFile' => $file_thb
1769 foreach ( self
::getFilenamePrefixBlacklist() as $prefix ) {
1770 if ( substr( $partname, 0, strlen( $prefix ) ) == $prefix ) {
1772 'warning' => 'bad-prefix',
1783 * Helper function that checks whether the filename looks like a thumbnail
1784 * @param string $filename
1787 public static function isThumbName( $filename ) {
1788 $n = strrpos( $filename, '.' );
1789 $partname = $n ?
substr( $filename, 0, $n ) : $filename;
1792 substr( $partname, 3, 3 ) == 'px-' ||
1793 substr( $partname, 2, 3 ) == 'px-'
1795 preg_match( "/[0-9]{2}/", substr( $partname, 0, 2 ) );
1799 * Get a list of blacklisted filename prefixes from [[MediaWiki:Filename-prefix-blacklist]]
1801 * @return array List of prefixes
1803 public static function getFilenamePrefixBlacklist() {
1804 $blacklist = array();
1805 $message = wfMessage( 'filename-prefix-blacklist' )->inContentLanguage();
1806 if ( !$message->isDisabled() ) {
1807 $lines = explode( "\n", $message->plain() );
1808 foreach ( $lines as $line ) {
1809 // Remove comment lines
1810 $comment = substr( trim( $line ), 0, 1 );
1811 if ( $comment == '#' ||
$comment == '' ) {
1814 // Remove additional comments after a prefix
1815 $comment = strpos( $line, '#' );
1816 if ( $comment > 0 ) {
1817 $line = substr( $line, 0, $comment - 1 );
1819 $blacklist[] = trim( $line );
1827 * Gets image info about the file just uploaded.
1829 * Also has the effect of setting metadata to be an 'indexed tag name' in
1830 * returned API result if 'metadata' was requested. Oddly, we have to pass
1831 * the "result" object down just so it can do that with the appropriate
1832 * format, presumably.
1834 * @param ApiResult $result
1835 * @return array Image info
1837 public function getImageInfo( $result ) {
1838 $file = $this->getLocalFile();
1839 /** @todo This cries out for refactoring.
1840 * We really want to say $file->getAllInfo(); here.
1841 * Perhaps "info" methods should be moved into files, and the API should
1842 * just wrap them in queries.
1844 if ( $file instanceof UploadStashFile
) {
1845 $imParam = ApiQueryStashImageInfo
::getPropertyNames();
1846 $info = ApiQueryStashImageInfo
::getInfo( $file, array_flip( $imParam ), $result );
1848 $imParam = ApiQueryImageInfo
::getPropertyNames();
1849 $info = ApiQueryImageInfo
::getInfo( $file, array_flip( $imParam ), $result );
1856 * @param array $error
1859 public function convertVerifyErrorToStatus( $error ) {
1860 $code = $error['status'];
1861 unset( $code['status'] );
1863 return Status
::newFatal( $this->getVerificationErrorCode( $code ), $error );
1867 * @param null|string $forType
1870 public static function getMaxUploadSize( $forType = null ) {
1871 global $wgMaxUploadSize;
1873 if ( is_array( $wgMaxUploadSize ) ) {
1874 if ( !is_null( $forType ) && isset( $wgMaxUploadSize[$forType] ) ) {
1875 return $wgMaxUploadSize[$forType];
1877 return $wgMaxUploadSize['*'];
1880 return intval( $wgMaxUploadSize );
1885 * Get the current status of a chunked upload (used for polling).
1886 * The status will be read from the *current* user session.
1887 * @param string $statusKey
1888 * @return Status[]|bool
1890 public static function getSessionStatus( $statusKey ) {
1891 return isset( $_SESSION[self
::SESSION_STATUS_KEY
][$statusKey] )
1892 ?
$_SESSION[self
::SESSION_STATUS_KEY
][$statusKey]
1897 * Set the current status of a chunked upload (used for polling).
1898 * The status will be stored in the *current* user session.
1899 * @param string $statusKey
1900 * @param array|bool $value
1903 public static function setSessionStatus( $statusKey, $value ) {
1904 if ( $value === false ) {
1905 unset( $_SESSION[self
::SESSION_STATUS_KEY
][$statusKey] );
1907 $_SESSION[self
::SESSION_STATUS_KEY
][$statusKey] = $value;