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 A 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
132 * @param string $fileName
133 * @param callable $callback
134 * @param array $options
136 protected function __construct( $fileName, $callback, $options ) {
137 $this->fileName
= $fileName;
138 $this->callback
= $callback;
140 if ( isset( $options['zip64'] ) ) {
141 $this->zip64
= $options['zip64'];
146 * Read the directory according to settings in $this.
151 $this->file
= fopen( $this->fileName
, 'r' );
152 $this->data
= array();
153 if ( !$this->file
) {
154 return Status
::newFatal( 'zip-file-open-error' );
157 $status = Status
::newGood();
159 $this->readEndOfCentralDirectoryRecord();
160 if ( $this->zip64
) {
161 list( $offset, $size ) = $this->findZip64CentralDirectory();
162 $this->readCentralDirectory( $offset, $size );
164 if ( $this->eocdr
['CD size'] == 0xffffffff
165 ||
$this->eocdr
['CD offset'] == 0xffffffff
166 ||
$this->eocdr
['CD entries total'] == 0xffff
168 $this->error( 'zip-unsupported', 'Central directory header indicates ZIP64, ' .
169 'but we are in legacy mode. Rejecting this upload is necessary to avoid ' .
170 'opening vulnerabilities on clients using OpenJDK 7 or later.' );
173 list( $offset, $size ) = $this->findOldCentralDirectory();
174 $this->readCentralDirectory( $offset, $size );
176 } catch ( ZipDirectoryReaderError
$e ) {
177 $status->fatal( $e->getErrorCode() );
180 fclose( $this->file
);
186 * Throw an error, and log a debug message
188 * @param string $debugMessage
190 function error( $code, $debugMessage ) {
191 wfDebug( __CLASS__
. ": Fatal error: $debugMessage\n" );
192 throw new ZipDirectoryReaderError( $code );
196 * Read the header which is at the end of the central directory,
197 * unimaginatively called the "end of central directory record" by the ZIP
200 function readEndOfCentralDirectoryRecord() {
204 'CD start disk' => 2,
205 'CD entries this disk' => 2,
206 'CD entries total' => 2,
209 'file comment length' => 2,
211 $structSize = $this->getStructSize( $info );
212 $startPos = $this->getFileLength() - 65536 - $structSize;
213 if ( $startPos < 0 ) {
217 $block = $this->getBlock( $startPos );
218 $sigPos = strrpos( $block, "PK\x05\x06" );
219 if ( $sigPos === false ) {
220 $this->error( 'zip-wrong-format',
221 "zip file lacks EOCDR signature. It probably isn't a zip file." );
224 $this->eocdr
= $this->unpack( substr( $block, $sigPos ), $info );
225 $this->eocdr
['EOCDR size'] = $structSize +
$this->eocdr
['file comment length'];
227 if ( $structSize +
$this->eocdr
['file comment length'] != strlen( $block ) - $sigPos ) {
228 $this->error( 'zip-bad', 'trailing bytes after the end of the file comment' );
230 if ( $this->eocdr
['disk'] !== 0
231 ||
$this->eocdr
['CD start disk'] !== 0
233 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR)' );
235 $this->eocdr +
= $this->unpack(
237 array( 'file comment' => array( 'string', $this->eocdr
['file comment length'] ) ),
238 $sigPos +
$structSize );
239 $this->eocdr
['position'] = $startPos +
$sigPos;
243 * Read the header called the "ZIP64 end of central directory locator". An
244 * error will be raised if it does not exist.
246 function readZip64EndOfCentralDirectoryLocator() {
248 'signature' => array( 'string', 4 ),
249 'eocdr64 start disk' => 4,
250 'eocdr64 offset' => 8,
251 'number of disks' => 4,
253 $structSize = $this->getStructSize( $info );
255 $start = $this->getFileLength() - $this->eocdr
['EOCDR size'] - $structSize;
256 $block = $this->getBlock( $start, $structSize );
257 $this->eocdr64Locator
= $data = $this->unpack( $block, $info );
259 if ( $data['signature'] !== "PK\x06\x07" ) {
260 // Note: Java will allow this and continue to read the
261 // EOCDR64, so we have to reject the upload, we can't
262 // just use the EOCDR header instead.
263 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory locator' );
268 * Read the header called the "ZIP64 end of central directory record". It
269 * may replace the regular "end of central directory record" in ZIP64 files.
271 function readZip64EndOfCentralDirectoryRecord() {
272 if ( $this->eocdr64Locator
['eocdr64 start disk'] != 0
273 ||
$this->eocdr64Locator
['number of disks'] != 0
275 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64 locator)' );
279 'signature' => array( 'string', 4 ),
281 'version made by' => 2,
282 'version needed' => 2,
284 'CD start disk' => 4,
285 'CD entries this disk' => 8,
286 'CD entries total' => 8,
290 $structSize = $this->getStructSize( $info );
291 $block = $this->getBlock( $this->eocdr64Locator
['eocdr64 offset'], $structSize );
292 $this->eocdr64
= $data = $this->unpack( $block, $info );
293 if ( $data['signature'] !== "PK\x06\x06" ) {
294 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory record' );
296 if ( $data['disk'] !== 0
297 ||
$data['CD start disk'] !== 0
299 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64)' );
304 * Find the location of the central directory, as would be seen by a
307 * @return array List containing offset, size and end position.
309 function findOldCentralDirectory() {
310 $size = $this->eocdr
['CD size'];
311 $offset = $this->eocdr
['CD offset'];
312 $endPos = $this->eocdr
['position'];
314 // Some readers use the EOCDR position instead of the offset field
315 // to find the directory, so to be safe, we check if they both agree.
316 if ( $offset +
$size != $endPos ) {
317 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
318 'of central directory record' );
321 return array( $offset, $size );
325 * Find the location of the central directory, as would be seen by a
326 * ZIP64-compliant reader.
328 * @return array List containing offset, size and end position.
330 function findZip64CentralDirectory() {
331 // The spec is ambiguous about the exact rules of precedence between the
332 // ZIP64 headers and the original headers. Here we follow zip_util.c
334 $size = $this->eocdr
['CD size'];
335 $offset = $this->eocdr
['CD offset'];
336 $numEntries = $this->eocdr
['CD entries total'];
337 $endPos = $this->eocdr
['position'];
338 if ( $size == 0xffffffff
339 ||
$offset == 0xffffffff
340 ||
$numEntries == 0xffff
342 $this->readZip64EndOfCentralDirectoryLocator();
344 if ( isset( $this->eocdr64Locator
['eocdr64 offset'] ) ) {
345 $this->readZip64EndOfCentralDirectoryRecord();
346 if ( isset( $this->eocdr64
['CD offset'] ) ) {
347 $size = $this->eocdr64
['CD size'];
348 $offset = $this->eocdr64
['CD offset'];
349 $endPos = $this->eocdr64Locator
['eocdr64 offset'];
353 // Some readers use the EOCDR position instead of the offset field
354 // to find the directory, so to be safe, we check if they both agree.
355 if ( $offset +
$size != $endPos ) {
356 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
357 'of central directory record' );
360 return array( $offset, $size );
364 * Read the central directory at the given location
368 function readCentralDirectory( $offset, $size ) {
369 $block = $this->getBlock( $offset, $size );
372 'signature' => array( 'string', 4 ),
373 'version made by' => 2,
374 'version needed' => 2,
376 'compression method' => 2,
380 'compressed size' => 4,
381 'uncompressed size' => 4,
383 'extra field length' => 2,
384 'comment length' => 2,
385 'disk number start' => 2,
386 'internal attrs' => 2,
387 'external attrs' => 4,
388 'local header offset' => 4,
390 $fixedSize = $this->getStructSize( $fixedInfo );
393 while ( $pos < $size ) {
394 $data = $this->unpack( $block, $fixedInfo, $pos );
397 if ( $data['signature'] !== "PK\x01\x02" ) {
398 $this->error( 'zip-bad', 'Invalid signature found in directory entry' );
401 $variableInfo = array(
402 'name' => array( 'string', $data['name length'] ),
403 'extra field' => array( 'string', $data['extra field length'] ),
404 'comment' => array( 'string', $data['comment length'] ),
406 $data +
= $this->unpack( $block, $variableInfo, $pos );
407 $pos +
= $this->getStructSize( $variableInfo );
409 if ( $this->zip64
&& (
410 $data['compressed size'] == 0xffffffff
411 ||
$data['uncompressed size'] == 0xffffffff
412 ||
$data['local header offset'] == 0xffffffff )
414 $zip64Data = $this->unpackZip64Extra( $data['extra field'] );
416 $data = $zip64Data +
$data;
420 if ( $this->testBit( $data['general bits'], self
::GENERAL_CD_ENCRYPTED
) ) {
421 $this->error( 'zip-unsupported', 'central directory encryption is not supported' );
424 // Convert the timestamp into MediaWiki format
425 // For the format, please see the MS-DOS 2.0 Programmer's Reference,
426 // pages 3-5 and 3-6.
427 $time = $data['mod time'];
428 $date = $data['mod date'];
430 $year = 1980 +
( $date >> 9 );
431 $month = ( $date >> 5 ) & 15;
433 $hour = ( $time >> 11 ) & 31;
434 $minute = ( $time >> 5 ) & 63;
435 $second = ( $time & 31 ) * 2;
436 $timestamp = sprintf( "%04d%02d%02d%02d%02d%02d",
437 $year, $month, $day, $hour, $minute, $second );
439 // Convert the character set in the file name
440 if ( $this->testBit( $data['general bits'], self
::GENERAL_UTF8
) ) {
441 $name = $data['name'];
443 $name = iconv( 'CP437', 'UTF-8', $data['name'] );
446 // Compile a data array for the user, with a sensible format
449 'mtime' => $timestamp,
450 'size' => $data['uncompressed size'],
452 call_user_func( $this->callback
, $userData );
457 * Interpret ZIP64 "extra field" data and return an associative array.
458 * @param string $extraField
461 function unpackZip64Extra( $extraField ) {
462 $extraHeaderInfo = array(
466 $extraHeaderSize = $this->getStructSize( $extraHeaderInfo );
468 $zip64ExtraInfo = array(
469 'uncompressed size' => 8,
470 'compressed size' => 8,
471 'local header offset' => 8,
472 'disk number start' => 4,
476 while ( $extraPos < strlen( $extraField ) ) {
477 $extra = $this->unpack( $extraField, $extraHeaderInfo, $extraPos );
478 $extraPos +
= $extraHeaderSize;
479 $extra +
= $this->unpack( $extraField,
480 array( 'data' => array( 'string', $extra['size'] ) ),
482 $extraPos +
= $extra['size'];
484 if ( $extra['id'] == self
::ZIP64_EXTRA_HEADER
) {
485 return $this->unpack( $extra['data'], $zip64ExtraInfo );
493 * Get the length of the file.
496 function getFileLength() {
497 if ( $this->fileLength
=== null ) {
498 $stat = fstat( $this->file
);
499 $this->fileLength
= $stat['size'];
502 return $this->fileLength
;
506 * Get the file contents from a given offset. If there are not enough bytes
507 * in the file to satisfy the request, an exception will be thrown.
509 * @param int $start The byte offset of the start of the block.
510 * @param int $length The number of bytes to return. If omitted, the remainder
511 * of the file will be returned.
515 function getBlock( $start, $length = null ) {
516 $fileLength = $this->getFileLength();
517 if ( $start >= $fileLength ) {
518 $this->error( 'zip-bad', "getBlock() requested position $start, " .
519 "file length is $fileLength" );
521 if ( $length === null ) {
522 $length = $fileLength - $start;
524 $end = $start +
$length;
525 if ( $end > $fileLength ) {
526 $this->error( 'zip-bad', "getBlock() requested end position $end, " .
527 "file length is $fileLength" );
529 $startSeg = floor( $start / self
::SEGSIZE
);
530 $endSeg = ceil( $end / self
::SEGSIZE
);
533 for ( $segIndex = $startSeg; $segIndex <= $endSeg; $segIndex++
) {
534 $block .= $this->getSegment( $segIndex );
537 $block = substr( $block,
538 $start - $startSeg * self
::SEGSIZE
,
541 if ( strlen( $block ) < $length ) {
542 $this->error( 'zip-bad', 'getBlock() returned an unexpectedly small amount of data' );
549 * Get a section of the file starting at position $segIndex * self::SEGSIZE,
550 * of length self::SEGSIZE. The result is cached. This is a helper function
553 * If there are not enough bytes in the file to satisfy the request, the
554 * return value will be truncated. If a request is made for a segment beyond
555 * the end of the file, an empty string will be returned.
557 * @param int $segIndex
561 function getSegment( $segIndex ) {
562 if ( !isset( $this->buffer
[$segIndex] ) ) {
563 $bytePos = $segIndex * self
::SEGSIZE
;
564 if ( $bytePos >= $this->getFileLength() ) {
565 $this->buffer
[$segIndex] = '';
569 if ( fseek( $this->file
, $bytePos ) ) {
570 $this->error( 'zip-bad', "seek to $bytePos failed" );
572 $seg = fread( $this->file
, self
::SEGSIZE
);
573 if ( $seg === false ) {
574 $this->error( 'zip-bad', "read from $bytePos failed" );
576 $this->buffer
[$segIndex] = $seg;
579 return $this->buffer
[$segIndex];
583 * Get the size of a structure in bytes. See unpack() for the format of $struct.
584 * @param array $struct
587 function getStructSize( $struct ) {
589 foreach ( $struct as $type ) {
590 if ( is_array( $type ) ) {
591 list( , $fieldSize ) = $type;
602 * Unpack a binary structure. This is like the built-in unpack() function
605 * @param string $string The binary data input
607 * @param array $struct An associative array giving structure members and their
608 * types. In the key is the field name. The value may be either an
609 * integer, in which case the field is a little-endian unsigned integer
610 * encoded in the given number of bytes, or an array, in which case the
611 * first element of the array is the type name, and the subsequent
612 * elements are type-dependent parameters. Only one such type is defined:
613 * - "string": The second array element gives the length of string.
614 * Not null terminated.
616 * @param int $offset The offset into the string at which to start unpacking.
618 * @throws MWException
619 * @return array Unpacked associative array. Note that large integers in the input
620 * may be represented as floating point numbers in the return value, so
621 * the use of weak comparison is advised.
623 function unpack( $string, $struct, $offset = 0 ) {
624 $size = $this->getStructSize( $struct );
625 if ( $offset +
$size > strlen( $string ) ) {
626 $this->error( 'zip-bad', 'unpack() would run past the end of the supplied string' );
631 foreach ( $struct as $key => $type ) {
632 if ( is_array( $type ) ) {
633 list( $typeName, $fieldSize ) = $type;
634 switch ( $typeName ) {
636 $data[$key] = substr( $string, $pos, $fieldSize );
640 throw new MWException( __METHOD__
. ": invalid type \"$typeName\"" );
643 // Unsigned little-endian integer
644 $length = intval( $type );
646 // Calculate the value. Use an algorithm which automatically
647 // upgrades the value to floating point if necessary.
649 for ( $i = $length - 1; $i >= 0; $i-- ) {
651 $value +
= ord( $string[$pos +
$i] );
654 // Throw an exception if there was loss of precision
655 if ( $value > pow( 2, 52 ) ) {
656 $this->error( 'zip-unsupported', 'number too large to be stored in a double. ' .
657 'This could happen if we tried to unpack a 64-bit structure ' .
658 'at an invalid location.' );
660 $data[$key] = $value;
669 * Returns a bit from a given position in an integer value, converted to
673 * @param int $bitIndex The index of the bit, where 0 is the LSB.
676 function testBit( $value, $bitIndex ) {
677 return (bool)( ( $value >> $bitIndex ) & 1 );
681 * Debugging helper function which dumps a string in hexdump -C format.
684 function hexDump( $s ) {
686 for ( $i = 0; $i < $n; $i +
= 16 ) {
687 printf( "%08X ", $i );
688 for ( $j = 0; $j < 16; $j++
) {
693 if ( $i +
$j >= $n ) {
696 printf( "%02X", ord( $s[$i +
$j] ) );
701 for ( $j = 0; $j < 16; $j++
) {
702 if ( $i +
$j >= $n ) {
704 } elseif ( ctype_print( $s[$i +
$j] ) ) {
716 * Internal exception class. Will be caught by private code.
718 class ZipDirectoryReaderError
extends Exception
{
719 protected $errorCode;
721 function __construct( $code ) {
722 $this->errorCode
= $code;
723 parent
::__construct( "ZipDirectoryReader error: $code" );
729 function getErrorCode() {
730 return $this->errorCode
;