3 * ZIP file directories reader, for the purposes of upload verification.
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
24 * A class for reading ZIP file directories, for the purposes of upload
27 * Only a functional interface is provided: ZipFileReader::read(). No access is
28 * given to object instances.
31 class ZipDirectoryReader
{
33 * Read a ZIP file and call a function for each file discovered in it.
35 * Because this class is aimed at verification, an error is raised on
36 * suspicious or ambiguous input, instead of emulating some standard
39 * @param string $fileName The archive file name
40 * @param array $callback The callback function. It will be called for each file
41 * with a single associative array each time, with members:
43 * - name: The file name. Directories conventionally have a trailing
46 * - mtime: The file modification time, in MediaWiki 14-char format
48 * - size: The uncompressed file size
50 * @param array $options An associative array of read options, with the option
51 * name in the key. This may currently contain:
53 * - zip64: If this is set to true, then we will emulate a
54 * library with ZIP64 support, like OpenJDK 7. If it is set to
55 * false, then we will emulate a library with no knowledge of
58 * NOTE: The ZIP64 code is untested and probably doesn't work. It
59 * turned out to be easier to just reject ZIP64 archive uploads,
60 * since they are likely to be very rare. Confirming safety of a
61 * ZIP64 file is fairly complex. What do you do with a file that is
62 * ambiguous and broken when read with a non-ZIP64 reader, but valid
63 * when read with a ZIP64 reader? This situation is normal for a
64 * valid ZIP64 file, and working out what non-ZIP64 readers will make
65 * of such a file is not trivial.
67 * @return Status object. The following fatal errors are defined:
69 * - zip-file-open-error: The file could not be opened.
71 * - zip-wrong-format: The file does not appear to be a ZIP file.
73 * - zip-bad: There was something wrong or ambiguous about the file
76 * - zip-unsupported: The ZIP file uses features which
77 * ZipDirectoryReader does not support.
79 * The default messages for those fatal errors are written in a way that
80 * makes sense for upload verification.
82 * If a fatal error is returned, more information about the error will be
83 * available in the debug log.
85 * Note that the callback function may be called any number of times before
86 * a fatal error is returned. If this occurs, the data sent to the callback
87 * function should be discarded.
89 public static function read( $fileName, $callback, $options = array() ) {
90 $zdr = new self( $fileName, $callback, $options );
92 return $zdr->execute();
98 /** The opened file resource */
101 /** The cached length of the file, or null if it has not been loaded yet. */
102 protected $fileLength;
104 /** A segmented cache of the file contents */
107 /** The file data callback */
110 /** The ZIP64 mode */
111 protected $zip64 = false;
113 /** Stored headers */
114 protected $eocdr, $eocdr64, $eocdr64Locator;
118 /** The "extra field" ID for ZIP64 central directory entries */
119 const ZIP64_EXTRA_HEADER
= 0x0001;
121 /** The segment size for the file contents cache */
122 const SEGSIZE
= 16384;
124 /** The index of the "general field" bit for UTF-8 file names */
125 const GENERAL_UTF8
= 11;
127 /** The index of the "general field" bit for central directory encryption */
128 const GENERAL_CD_ENCRYPTED
= 13;
131 * Private constructor
133 protected function __construct( $fileName, $callback, $options ) {
134 $this->fileName
= $fileName;
135 $this->callback
= $callback;
137 if ( isset( $options['zip64'] ) ) {
138 $this->zip64
= $options['zip64'];
143 * Read the directory according to settings in $this.
148 $this->file
= fopen( $this->fileName
, 'r' );
149 $this->data
= array();
150 if ( !$this->file
) {
151 return Status
::newFatal( 'zip-file-open-error' );
154 $status = Status
::newGood();
156 $this->readEndOfCentralDirectoryRecord();
157 if ( $this->zip64
) {
158 list( $offset, $size ) = $this->findZip64CentralDirectory();
159 $this->readCentralDirectory( $offset, $size );
161 if ( $this->eocdr
['CD size'] == 0xffffffff
162 ||
$this->eocdr
['CD offset'] == 0xffffffff
163 ||
$this->eocdr
['CD entries total'] == 0xffff
165 $this->error( 'zip-unsupported', 'Central directory header indicates ZIP64, ' .
166 'but we are in legacy mode. Rejecting this upload is necessary to avoid ' .
167 'opening vulnerabilities on clients using OpenJDK 7 or later.' );
170 list( $offset, $size ) = $this->findOldCentralDirectory();
171 $this->readCentralDirectory( $offset, $size );
173 } catch ( ZipDirectoryReaderError
$e ) {
174 $status->fatal( $e->getErrorCode() );
177 fclose( $this->file
);
183 * Throw an error, and log a debug message
185 function error( $code, $debugMessage ) {
186 wfDebug( __CLASS__
. ": Fatal error: $debugMessage\n" );
187 throw new ZipDirectoryReaderError( $code );
191 * Read the header which is at the end of the central directory,
192 * unimaginatively called the "end of central directory record" by the ZIP
195 function readEndOfCentralDirectoryRecord() {
199 'CD start disk' => 2,
200 'CD entries this disk' => 2,
201 'CD entries total' => 2,
204 'file comment length' => 2,
206 $structSize = $this->getStructSize( $info );
207 $startPos = $this->getFileLength() - 65536 - $structSize;
208 if ( $startPos < 0 ) {
212 $block = $this->getBlock( $startPos );
213 $sigPos = strrpos( $block, "PK\x05\x06" );
214 if ( $sigPos === false ) {
215 $this->error( 'zip-wrong-format',
216 "zip file lacks EOCDR signature. It probably isn't a zip file." );
219 $this->eocdr
= $this->unpack( substr( $block, $sigPos ), $info );
220 $this->eocdr
['EOCDR size'] = $structSize +
$this->eocdr
['file comment length'];
222 if ( $structSize +
$this->eocdr
['file comment length'] != strlen( $block ) - $sigPos ) {
223 $this->error( 'zip-bad', 'trailing bytes after the end of the file comment' );
225 if ( $this->eocdr
['disk'] !== 0
226 ||
$this->eocdr
['CD start disk'] !== 0
228 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR)' );
230 $this->eocdr +
= $this->unpack(
232 array( 'file comment' => array( 'string', $this->eocdr
['file comment length'] ) ),
233 $sigPos +
$structSize );
234 $this->eocdr
['position'] = $startPos +
$sigPos;
238 * Read the header called the "ZIP64 end of central directory locator". An
239 * error will be raised if it does not exist.
241 function readZip64EndOfCentralDirectoryLocator() {
243 'signature' => array( 'string', 4 ),
244 'eocdr64 start disk' => 4,
245 'eocdr64 offset' => 8,
246 'number of disks' => 4,
248 $structSize = $this->getStructSize( $info );
250 $start = $this->getFileLength() - $this->eocdr
['EOCDR size'] - $structSize;
251 $block = $this->getBlock( $start, $structSize );
252 $this->eocdr64Locator
= $data = $this->unpack( $block, $info );
254 if ( $data['signature'] !== "PK\x06\x07" ) {
255 // Note: Java will allow this and continue to read the
256 // EOCDR64, so we have to reject the upload, we can't
257 // just use the EOCDR header instead.
258 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory locator' );
263 * Read the header called the "ZIP64 end of central directory record". It
264 * may replace the regular "end of central directory record" in ZIP64 files.
266 function readZip64EndOfCentralDirectoryRecord() {
267 if ( $this->eocdr64Locator
['eocdr64 start disk'] != 0
268 ||
$this->eocdr64Locator
['number of disks'] != 0
270 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64 locator)' );
274 'signature' => array( 'string', 4 ),
276 'version made by' => 2,
277 'version needed' => 2,
279 'CD start disk' => 4,
280 'CD entries this disk' => 8,
281 'CD entries total' => 8,
285 $structSize = $this->getStructSize( $info );
286 $block = $this->getBlock( $this->eocdr64Locator
['eocdr64 offset'], $structSize );
287 $this->eocdr64
= $data = $this->unpack( $block, $info );
288 if ( $data['signature'] !== "PK\x06\x06" ) {
289 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory record' );
291 if ( $data['disk'] !== 0
292 ||
$data['CD start disk'] !== 0
294 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64)' );
299 * Find the location of the central directory, as would be seen by a
302 * @return List containing offset, size and end position.
304 function findOldCentralDirectory() {
305 $size = $this->eocdr
['CD size'];
306 $offset = $this->eocdr
['CD offset'];
307 $endPos = $this->eocdr
['position'];
309 // Some readers use the EOCDR position instead of the offset field
310 // to find the directory, so to be safe, we check if they both agree.
311 if ( $offset +
$size != $endPos ) {
312 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
313 'of central directory record' );
316 return array( $offset, $size );
320 * Find the location of the central directory, as would be seen by a
321 * ZIP64-compliant reader.
323 * @return array List containing offset, size and end position.
325 function findZip64CentralDirectory() {
326 // The spec is ambiguous about the exact rules of precedence between the
327 // ZIP64 headers and the original headers. Here we follow zip_util.c
329 $size = $this->eocdr
['CD size'];
330 $offset = $this->eocdr
['CD offset'];
331 $numEntries = $this->eocdr
['CD entries total'];
332 $endPos = $this->eocdr
['position'];
333 if ( $size == 0xffffffff
334 ||
$offset == 0xffffffff
335 ||
$numEntries == 0xffff
337 $this->readZip64EndOfCentralDirectoryLocator();
339 if ( isset( $this->eocdr64Locator
['eocdr64 offset'] ) ) {
340 $this->readZip64EndOfCentralDirectoryRecord();
341 if ( isset( $this->eocdr64
['CD offset'] ) ) {
342 $size = $this->eocdr64
['CD size'];
343 $offset = $this->eocdr64
['CD offset'];
344 $endPos = $this->eocdr64Locator
['eocdr64 offset'];
348 // Some readers use the EOCDR position instead of the offset field
349 // to find the directory, so to be safe, we check if they both agree.
350 if ( $offset +
$size != $endPos ) {
351 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
352 'of central directory record' );
355 return array( $offset, $size );
359 * Read the central directory at the given location
361 function readCentralDirectory( $offset, $size ) {
362 $block = $this->getBlock( $offset, $size );
365 'signature' => array( 'string', 4 ),
366 'version made by' => 2,
367 'version needed' => 2,
369 'compression method' => 2,
373 'compressed size' => 4,
374 'uncompressed size' => 4,
376 'extra field length' => 2,
377 'comment length' => 2,
378 'disk number start' => 2,
379 'internal attrs' => 2,
380 'external attrs' => 4,
381 'local header offset' => 4,
383 $fixedSize = $this->getStructSize( $fixedInfo );
386 while ( $pos < $size ) {
387 $data = $this->unpack( $block, $fixedInfo, $pos );
390 if ( $data['signature'] !== "PK\x01\x02" ) {
391 $this->error( 'zip-bad', 'Invalid signature found in directory entry' );
394 $variableInfo = array(
395 'name' => array( 'string', $data['name length'] ),
396 'extra field' => array( 'string', $data['extra field length'] ),
397 'comment' => array( 'string', $data['comment length'] ),
399 $data +
= $this->unpack( $block, $variableInfo, $pos );
400 $pos +
= $this->getStructSize( $variableInfo );
402 if ( $this->zip64
&& (
403 $data['compressed size'] == 0xffffffff
404 ||
$data['uncompressed size'] == 0xffffffff
405 ||
$data['local header offset'] == 0xffffffff )
407 $zip64Data = $this->unpackZip64Extra( $data['extra field'] );
409 $data = $zip64Data +
$data;
413 if ( $this->testBit( $data['general bits'], self
::GENERAL_CD_ENCRYPTED
) ) {
414 $this->error( 'zip-unsupported', 'central directory encryption is not supported' );
417 // Convert the timestamp into MediaWiki format
418 // For the format, please see the MS-DOS 2.0 Programmer's Reference,
419 // pages 3-5 and 3-6.
420 $time = $data['mod time'];
421 $date = $data['mod date'];
423 $year = 1980 +
( $date >> 9 );
424 $month = ( $date >> 5 ) & 15;
426 $hour = ( $time >> 11 ) & 31;
427 $minute = ( $time >> 5 ) & 63;
428 $second = ( $time & 31 ) * 2;
429 $timestamp = sprintf( "%04d%02d%02d%02d%02d%02d",
430 $year, $month, $day, $hour, $minute, $second );
432 // Convert the character set in the file name
433 if ( !function_exists( 'iconv' )
434 ||
$this->testBit( $data['general bits'], self
::GENERAL_UTF8
)
436 $name = $data['name'];
438 $name = iconv( 'CP437', 'UTF-8', $data['name'] );
441 // Compile a data array for the user, with a sensible format
444 'mtime' => $timestamp,
445 'size' => $data['uncompressed size'],
447 call_user_func( $this->callback
, $userData );
452 * Interpret ZIP64 "extra field" data and return an associative array.
455 function unpackZip64Extra( $extraField ) {
456 $extraHeaderInfo = array(
460 $extraHeaderSize = $this->getStructSize( $extraHeaderInfo );
462 $zip64ExtraInfo = array(
463 'uncompressed size' => 8,
464 'compressed size' => 8,
465 'local header offset' => 8,
466 'disk number start' => 4,
470 while ( $extraPos < strlen( $extraField ) ) {
471 $extra = $this->unpack( $extraField, $extraHeaderInfo, $extraPos );
472 $extraPos +
= $extraHeaderSize;
473 $extra +
= $this->unpack( $extraField,
474 array( 'data' => array( 'string', $extra['size'] ) ),
476 $extraPos +
= $extra['size'];
478 if ( $extra['id'] == self
::ZIP64_EXTRA_HEADER
) {
479 return $this->unpack( $extra['data'], $zip64ExtraInfo );
487 * Get the length of the file.
489 function getFileLength() {
490 if ( $this->fileLength
=== null ) {
491 $stat = fstat( $this->file
);
492 $this->fileLength
= $stat['size'];
495 return $this->fileLength
;
499 * Get the file contents from a given offset. If there are not enough bytes
500 * in the file to satisfy the request, an exception will be thrown.
502 * @param int $start The byte offset of the start of the block.
503 * @param int $length The number of bytes to return. If omitted, the remainder
504 * of the file will be returned.
508 function getBlock( $start, $length = null ) {
509 $fileLength = $this->getFileLength();
510 if ( $start >= $fileLength ) {
511 $this->error( 'zip-bad', "getBlock() requested position $start, " .
512 "file length is $fileLength" );
514 if ( $length === null ) {
515 $length = $fileLength - $start;
517 $end = $start +
$length;
518 if ( $end > $fileLength ) {
519 $this->error( 'zip-bad', "getBlock() requested end position $end, " .
520 "file length is $fileLength" );
522 $startSeg = floor( $start / self
::SEGSIZE
);
523 $endSeg = ceil( $end / self
::SEGSIZE
);
526 for ( $segIndex = $startSeg; $segIndex <= $endSeg; $segIndex++
) {
527 $block .= $this->getSegment( $segIndex );
530 $block = substr( $block,
531 $start - $startSeg * self
::SEGSIZE
,
534 if ( strlen( $block ) < $length ) {
535 $this->error( 'zip-bad', 'getBlock() returned an unexpectedly small amount of data' );
542 * Get a section of the file starting at position $segIndex * self::SEGSIZE,
543 * of length self::SEGSIZE. The result is cached. This is a helper function
546 * If there are not enough bytes in the file to satisfy the request, the
547 * return value will be truncated. If a request is made for a segment beyond
548 * the end of the file, an empty string will be returned.
551 function getSegment( $segIndex ) {
552 if ( !isset( $this->buffer
[$segIndex] ) ) {
553 $bytePos = $segIndex * self
::SEGSIZE
;
554 if ( $bytePos >= $this->getFileLength() ) {
555 $this->buffer
[$segIndex] = '';
559 if ( fseek( $this->file
, $bytePos ) ) {
560 $this->error( 'zip-bad', "seek to $bytePos failed" );
562 $seg = fread( $this->file
, self
::SEGSIZE
);
563 if ( $seg === false ) {
564 $this->error( 'zip-bad', "read from $bytePos failed" );
566 $this->buffer
[$segIndex] = $seg;
569 return $this->buffer
[$segIndex];
573 * Get the size of a structure in bytes. See unpack() for the format of $struct.
576 function getStructSize( $struct ) {
578 foreach ( $struct as $type ) {
579 if ( is_array( $type ) ) {
580 list( , $fieldSize ) = $type;
591 * Unpack a binary structure. This is like the built-in unpack() function
594 * @param string $string The binary data input
596 * @param array $struct An associative array giving structure members and their
597 * types. In the key is the field name. The value may be either an
598 * integer, in which case the field is a little-endian unsigned integer
599 * encoded in the given number of bytes, or an array, in which case the
600 * first element of the array is the type name, and the subsequent
601 * elements are type-dependent parameters. Only one such type is defined:
602 * - "string": The second array element gives the length of string.
603 * Not null terminated.
605 * @param int $offset The offset into the string at which to start unpacking.
607 * @throws MWException
608 * @return array Unpacked associative array. Note that large integers in the input
609 * may be represented as floating point numbers in the return value, so
610 * the use of weak comparison is advised.
612 function unpack( $string, $struct, $offset = 0 ) {
613 $size = $this->getStructSize( $struct );
614 if ( $offset +
$size > strlen( $string ) ) {
615 $this->error( 'zip-bad', 'unpack() would run past the end of the supplied string' );
620 foreach ( $struct as $key => $type ) {
621 if ( is_array( $type ) ) {
622 list( $typeName, $fieldSize ) = $type;
623 switch ( $typeName ) {
625 $data[$key] = substr( $string, $pos, $fieldSize );
629 throw new MWException( __METHOD__
. ": invalid type \"$typeName\"" );
632 // Unsigned little-endian integer
633 $length = intval( $type );
635 // Calculate the value. Use an algorithm which automatically
636 // upgrades the value to floating point if necessary.
638 for ( $i = $length - 1; $i >= 0; $i-- ) {
640 $value +
= ord( $string[$pos +
$i] );
643 // Throw an exception if there was loss of precision
644 if ( $value > pow( 2, 52 ) ) {
645 $this->error( 'zip-unsupported', 'number too large to be stored in a double. ' .
646 'This could happen if we tried to unpack a 64-bit structure ' .
647 'at an invalid location.' );
649 $data[$key] = $value;
658 * Returns a bit from a given position in an integer value, converted to
661 * @param $value integer
662 * @param int $bitIndex The index of the bit, where 0 is the LSB.
665 function testBit( $value, $bitIndex ) {
666 return (bool)( ( $value >> $bitIndex ) & 1 );
670 * Debugging helper function which dumps a string in hexdump -C format.
672 function hexDump( $s ) {
674 for ( $i = 0; $i < $n; $i +
= 16 ) {
675 printf( "%08X ", $i );
676 for ( $j = 0; $j < 16; $j++
) {
681 if ( $i +
$j >= $n ) {
684 printf( "%02X", ord( $s[$i +
$j] ) );
689 for ( $j = 0; $j < 16; $j++
) {
690 if ( $i +
$j >= $n ) {
692 } elseif ( ctype_print( $s[$i +
$j] ) ) {
704 * Internal exception class. Will be caught by private code.
706 class ZipDirectoryReaderError
extends Exception
{
707 protected $errorCode;
709 function __construct( $code ) {
710 $this->errorCode
= $code;
711 parent
::__construct( "ZipDirectoryReader error: $code" );
717 function getErrorCode() {
718 return $this->errorCode
;