MediaWiki REL1_35
ZipDirectoryReader.php
Go to the documentation of this file.
1<?php
88 public static function read( $fileName, $callback, $options = [] ) {
89 $zdr = new self( $fileName, $callback, $options );
90
91 return $zdr->execute();
92 }
93
95 protected $fileName;
96
98 protected $file;
99
101 protected $fileLength;
102
104 protected $buffer;
105
107 protected $callback;
108
110 protected $zip64 = false;
111
114
115 protected $data;
116
118 private const ZIP64_EXTRA_HEADER = 0x0001;
119
121 private const SEGSIZE = 16384;
122
124 private const GENERAL_UTF8 = 11;
125
127 private const GENERAL_CD_ENCRYPTED = 13;
128
134 protected function __construct( $fileName, $callback, $options ) {
135 $this->fileName = $fileName;
136 $this->callback = $callback;
137
138 if ( isset( $options['zip64'] ) ) {
139 $this->zip64 = $options['zip64'];
140 }
141 }
142
148 private function execute() {
149 $this->file = fopen( $this->fileName, 'r' );
150 $this->data = [];
151 if ( !$this->file ) {
152 return Status::newFatal( 'zip-file-open-error' );
153 }
154
155 $status = Status::newGood();
156 try {
158 if ( $this->zip64 ) {
159 list( $offset, $size ) = $this->findZip64CentralDirectory();
160 $this->readCentralDirectory( $offset, $size );
161 } else {
162 if ( $this->eocdr['CD size'] == 0xffffffff
163 || $this->eocdr['CD offset'] == 0xffffffff
164 || $this->eocdr['CD entries total'] == 0xffff
165 ) {
166 $this->error( 'zip-unsupported', 'Central directory header indicates ZIP64, ' .
167 'but we are in legacy mode. Rejecting this upload is necessary to avoid ' .
168 'opening vulnerabilities on clients using OpenJDK 7 or later.' );
169 }
170
171 list( $offset, $size ) = $this->findOldCentralDirectory();
172 $this->readCentralDirectory( $offset, $size );
173 }
174 } catch ( ZipDirectoryReaderError $e ) {
175 $status->fatal( $e->getErrorCode() );
176 }
177
178 fclose( $this->file );
179
180 return $status;
181 }
182
189 private function error( $code, $debugMessage ) {
190 wfDebug( __CLASS__ . ": Fatal error: $debugMessage" );
191 throw new ZipDirectoryReaderError( $code );
192 }
193
200 $info = [
201 'signature' => 4,
202 'disk' => 2,
203 'CD start disk' => 2,
204 'CD entries this disk' => 2,
205 'CD entries total' => 2,
206 'CD size' => 4,
207 'CD offset' => 4,
208 'file comment length' => 2,
209 ];
210 $structSize = $this->getStructSize( $info );
211 $startPos = $this->getFileLength() - 65536 - $structSize;
212 if ( $startPos < 0 ) {
213 $startPos = 0;
214 }
215
216 if ( $this->getFileLength() === 0 ) {
217 $this->error( 'zip-wrong-format', "The file is empty." );
218 }
219
220 $block = $this->getBlock( $startPos );
221 $sigPos = strrpos( $block, "PK\x05\x06" );
222 if ( $sigPos === false ) {
223 $this->error( 'zip-wrong-format',
224 "zip file lacks EOCDR signature. It probably isn't a zip file." );
225 }
226
227 $this->eocdr = $this->unpack( substr( $block, $sigPos ), $info );
228 $this->eocdr['EOCDR size'] = $structSize + $this->eocdr['file comment length'];
229
230 if ( $structSize + $this->eocdr['file comment length'] != strlen( $block ) - $sigPos ) {
231 // T40432: MS binary documents frequently embed ZIP files
232 $this->error( 'zip-wrong-format', 'there is a ZIP signature but it is not at ' .
233 'the end of the file. It could be an OLE file with a ZIP file embedded.' );
234 }
235 if ( $this->eocdr['disk'] !== 0
236 || $this->eocdr['CD start disk'] !== 0
237 ) {
238 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR)' );
239 }
240 $this->eocdr += $this->unpack(
241 $block,
242 [ 'file comment' => [ 'string', $this->eocdr['file comment length'] ] ],
243 $sigPos + $structSize );
244 $this->eocdr['position'] = $startPos + $sigPos;
245 }
246
252 $info = [
253 'signature' => [ 'string', 4 ],
254 'eocdr64 start disk' => 4,
255 'eocdr64 offset' => 8,
256 'number of disks' => 4,
257 ];
258 $structSize = $this->getStructSize( $info );
259
260 $start = $this->getFileLength() - $this->eocdr['EOCDR size'] - $structSize;
261 $block = $this->getBlock( $start, $structSize );
262 $this->eocdr64Locator = $data = $this->unpack( $block, $info );
263
264 if ( $data['signature'] !== "PK\x06\x07" ) {
265 // Note: Java will allow this and continue to read the
266 // EOCDR64, so we have to reject the upload, we can't
267 // just use the EOCDR header instead.
268 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory locator' );
269 }
270 }
271
277 if ( $this->eocdr64Locator['eocdr64 start disk'] != 0
278 || $this->eocdr64Locator['number of disks'] != 0
279 ) {
280 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64 locator)' );
281 }
282
283 $info = [
284 'signature' => [ 'string', 4 ],
285 'EOCDR64 size' => 8,
286 'version made by' => 2,
287 'version needed' => 2,
288 'disk' => 4,
289 'CD start disk' => 4,
290 'CD entries this disk' => 8,
291 'CD entries total' => 8,
292 'CD size' => 8,
293 'CD offset' => 8
294 ];
295 $structSize = $this->getStructSize( $info );
296 $block = $this->getBlock( $this->eocdr64Locator['eocdr64 offset'], $structSize );
297 $this->eocdr64 = $data = $this->unpack( $block, $info );
298 if ( $data['signature'] !== "PK\x06\x06" ) {
299 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory record' );
300 }
301 if ( $data['disk'] !== 0
302 || $data['CD start disk'] !== 0
303 ) {
304 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64)' );
305 }
306 }
307
314 private function findOldCentralDirectory() {
315 $size = $this->eocdr['CD size'];
316 $offset = $this->eocdr['CD offset'];
317 $endPos = $this->eocdr['position'];
318
319 // Some readers use the EOCDR position instead of the offset field
320 // to find the directory, so to be safe, we check if they both agree.
321 if ( $offset + $size != $endPos ) {
322 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
323 'of central directory record' );
324 }
325
326 return [ $offset, $size ];
327 }
328
335 private function findZip64CentralDirectory() {
336 // The spec is ambiguous about the exact rules of precedence between the
337 // ZIP64 headers and the original headers. Here we follow zip_util.c
338 // from OpenJDK 7.
339 $size = $this->eocdr['CD size'];
340 $offset = $this->eocdr['CD offset'];
341 $numEntries = $this->eocdr['CD entries total'];
342 $endPos = $this->eocdr['position'];
343 if ( $size == 0xffffffff
344 || $offset == 0xffffffff
345 || $numEntries == 0xffff
346 ) {
348
349 if ( isset( $this->eocdr64Locator['eocdr64 offset'] ) ) {
351 if ( isset( $this->eocdr64['CD offset'] ) ) {
352 $size = $this->eocdr64['CD size'];
353 $offset = $this->eocdr64['CD offset'];
354 $endPos = $this->eocdr64Locator['eocdr64 offset'];
355 }
356 }
357 }
358 // Some readers use the EOCDR position instead of the offset field
359 // to find the directory, so to be safe, we check if they both agree.
360 if ( $offset + $size != $endPos ) {
361 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
362 'of central directory record' );
363 }
364
365 return [ $offset, $size ];
366 }
367
373 private function readCentralDirectory( $offset, $size ) {
374 $block = $this->getBlock( $offset, $size );
375
376 $fixedInfo = [
377 'signature' => [ 'string', 4 ],
378 'version made by' => 2,
379 'version needed' => 2,
380 'general bits' => 2,
381 'compression method' => 2,
382 'mod time' => 2,
383 'mod date' => 2,
384 'crc-32' => 4,
385 'compressed size' => 4,
386 'uncompressed size' => 4,
387 'name length' => 2,
388 'extra field length' => 2,
389 'comment length' => 2,
390 'disk number start' => 2,
391 'internal attrs' => 2,
392 'external attrs' => 4,
393 'local header offset' => 4,
394 ];
395 $fixedSize = $this->getStructSize( $fixedInfo );
396
397 $pos = 0;
398 while ( $pos < $size ) {
399 $data = $this->unpack( $block, $fixedInfo, $pos );
400 $pos += $fixedSize;
401
402 if ( $data['signature'] !== "PK\x01\x02" ) {
403 $this->error( 'zip-bad', 'Invalid signature found in directory entry' );
404 }
405
406 $variableInfo = [
407 'name' => [ 'string', $data['name length'] ],
408 'extra field' => [ 'string', $data['extra field length'] ],
409 'comment' => [ 'string', $data['comment length'] ],
410 ];
411 $data += $this->unpack( $block, $variableInfo, $pos );
412 $pos += $this->getStructSize( $variableInfo );
413
414 if ( $this->zip64 && (
415 $data['compressed size'] == 0xffffffff
416 || $data['uncompressed size'] == 0xffffffff
417 || $data['local header offset'] == 0xffffffff )
418 ) {
419 $zip64Data = $this->unpackZip64Extra( $data['extra field'] );
420 if ( $zip64Data ) {
421 $data = $zip64Data + $data;
422 }
423 }
424
425 if ( $this->testBit( $data['general bits'], self::GENERAL_CD_ENCRYPTED ) ) {
426 $this->error( 'zip-unsupported', 'central directory encryption is not supported' );
427 }
428
429 // Convert the timestamp into MediaWiki format
430 // For the format, please see the MS-DOS 2.0 Programmer's Reference,
431 // pages 3-5 and 3-6.
432 $time = $data['mod time'];
433 $date = $data['mod date'];
434
435 $year = 1980 + ( $date >> 9 );
436 $month = ( $date >> 5 ) & 15;
437 $day = $date & 31;
438 $hour = ( $time >> 11 ) & 31;
439 $minute = ( $time >> 5 ) & 63;
440 $second = ( $time & 31 ) * 2;
441 $timestamp = sprintf( "%04d%02d%02d%02d%02d%02d",
442 $year, $month, $day, $hour, $minute, $second );
443
444 // Convert the character set in the file name
445 if ( $this->testBit( $data['general bits'], self::GENERAL_UTF8 ) ) {
446 $name = $data['name'];
447 } else {
448 $name = iconv( 'CP437', 'UTF-8', $data['name'] );
449 }
450
451 // Compile a data array for the user, with a sensible format
452 $userData = [
453 'name' => $name,
454 'mtime' => $timestamp,
455 'size' => $data['uncompressed size'],
456 ];
457 call_user_func( $this->callback, $userData );
458 }
459 }
460
466 private function unpackZip64Extra( $extraField ) {
467 $extraHeaderInfo = [
468 'id' => 2,
469 'size' => 2,
470 ];
471 $extraHeaderSize = $this->getStructSize( $extraHeaderInfo );
472
473 $zip64ExtraInfo = [
474 'uncompressed size' => 8,
475 'compressed size' => 8,
476 'local header offset' => 8,
477 'disk number start' => 4,
478 ];
479
480 $extraPos = 0;
481 while ( $extraPos < strlen( $extraField ) ) {
482 $extra = $this->unpack( $extraField, $extraHeaderInfo, $extraPos );
483 $extraPos += $extraHeaderSize;
484 $extra += $this->unpack( $extraField,
485 [ 'data' => [ 'string', $extra['size'] ] ],
486 $extraPos );
487 $extraPos += $extra['size'];
488
489 if ( $extra['id'] == self::ZIP64_EXTRA_HEADER ) {
490 return $this->unpack( $extra['data'], $zip64ExtraInfo );
491 }
492 }
493
494 return false;
495 }
496
501 private function getFileLength() {
502 if ( $this->fileLength === null ) {
503 $stat = fstat( $this->file );
504 $this->fileLength = $stat['size'];
505 }
506
507 return $this->fileLength;
508 }
509
520 private function getBlock( $start, $length = null ) {
521 $fileLength = $this->getFileLength();
522 if ( $start >= $fileLength ) {
523 $this->error( 'zip-bad', "getBlock() requested position $start, " .
524 "file length is $fileLength" );
525 }
526 if ( $length === null ) {
527 $length = $fileLength - $start;
528 }
529 $end = $start + $length;
530 if ( $end > $fileLength ) {
531 $this->error( 'zip-bad', "getBlock() requested end position $end, " .
532 "file length is $fileLength" );
533 }
534 $startSeg = floor( $start / self::SEGSIZE );
535 $endSeg = ceil( $end / self::SEGSIZE );
536
537 $block = '';
538 for ( $segIndex = $startSeg; $segIndex <= $endSeg; $segIndex++ ) {
539 $block .= $this->getSegment( $segIndex );
540 }
541
542 $block = substr( $block,
543 $start - $startSeg * self::SEGSIZE,
544 $length );
545
546 if ( strlen( $block ) < $length ) {
547 $this->error( 'zip-bad', 'getBlock() returned an unexpectedly small amount of data' );
548 }
549
550 return $block;
551 }
552
566 private function getSegment( $segIndex ) {
567 if ( !isset( $this->buffer[$segIndex] ) ) {
568 $bytePos = $segIndex * self::SEGSIZE;
569 if ( $bytePos >= $this->getFileLength() ) {
570 $this->buffer[$segIndex] = '';
571
572 return '';
573 }
574 if ( fseek( $this->file, $bytePos ) ) {
575 $this->error( 'zip-bad', "seek to $bytePos failed" );
576 }
577 $seg = fread( $this->file, self::SEGSIZE );
578 if ( $seg === false ) {
579 $this->error( 'zip-bad', "read from $bytePos failed" );
580 }
581 $this->buffer[$segIndex] = $seg;
582 }
583
584 return $this->buffer[$segIndex];
585 }
586
592 private function getStructSize( $struct ) {
593 $size = 0;
594 foreach ( $struct as $type ) {
595 if ( is_array( $type ) ) {
596 list( , $fieldSize ) = $type;
597 $size += $fieldSize;
598 } else {
599 $size += $type;
600 }
601 }
602
603 return $size;
604 }
605
628 private function unpack( $string, $struct, $offset = 0 ) {
629 $size = $this->getStructSize( $struct );
630 if ( $offset + $size > strlen( $string ) ) {
631 $this->error( 'zip-bad', 'unpack() would run past the end of the supplied string' );
632 }
633
634 $data = [];
635 $pos = $offset;
636 foreach ( $struct as $key => $type ) {
637 if ( is_array( $type ) ) {
638 list( $typeName, $fieldSize ) = $type;
639 switch ( $typeName ) {
640 case 'string':
641 $data[$key] = substr( $string, $pos, $fieldSize );
642 $pos += $fieldSize;
643 break;
644 default:
645 throw new MWException( __METHOD__ . ": invalid type \"$typeName\"" );
646 }
647 } else {
648 // Unsigned little-endian integer
649 $length = intval( $type );
650
651 // Calculate the value. Use an algorithm which automatically
652 // upgrades the value to floating point if necessary.
653 $value = 0;
654 for ( $i = $length - 1; $i >= 0; $i-- ) {
655 $value *= 256;
656 $value += ord( $string[$pos + $i] );
657 }
658
659 // Throw an exception if there was loss of precision
660 if ( $value > 2 ** 52 ) {
661 $this->error( 'zip-unsupported', 'number too large to be stored in a double. ' .
662 'This could happen if we tried to unpack a 64-bit structure ' .
663 'at an invalid location.' );
664 }
665 $data[$key] = $value;
666 $pos += $length;
667 }
668 }
669
670 return $data;
671 }
672
681 private function testBit( $value, $bitIndex ) {
682 return (bool)( ( $value >> $bitIndex ) & 1 );
683 }
684}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
MediaWiki exception.
Internal exception class.
A class for reading ZIP file directories, for the purposes of upload verification.
$callback
The file data callback.
const GENERAL_UTF8
The index of the "general field" bit for UTF-8 file names.
readEndOfCentralDirectoryRecord()
Read the header which is at the end of the central directory, unimaginatively called the "end of cent...
error( $code, $debugMessage)
Throw an error, and log a debug message.
execute()
Read the directory according to settings in $this.
__construct( $fileName, $callback, $options)
readZip64EndOfCentralDirectoryRecord()
Read the header called the "ZIP64 end of central directory record".
getSegment( $segIndex)
Get a section of the file starting at position $segIndex * self::SEGSIZE, of length self::SEGSIZE.
const ZIP64_EXTRA_HEADER
The "extra field" ID for ZIP64 central directory entries.
findZip64CentralDirectory()
Find the location of the central directory, as would be seen by a ZIP64-compliant reader.
$file
The opened file resource.
static read( $fileName, $callback, $options=[])
Read a ZIP file and call a function for each file discovered in it.
testBit( $value, $bitIndex)
Returns a bit from a given position in an integer value, converted to boolean.
getFileLength()
Get the length of the file.
const GENERAL_CD_ENCRYPTED
The index of the "general field" bit for central directory encryption.
getStructSize( $struct)
Get the size of a structure in bytes.
readZip64EndOfCentralDirectoryLocator()
Read the header called the "ZIP64 end of central directory locator".
findOldCentralDirectory()
Find the location of the central directory, as would be seen by a non-ZIP64 reader.
$buffer
A segmented cache of the file contents.
getBlock( $start, $length=null)
Get the file contents from a given offset.
unpack( $string, $struct, $offset=0)
Unpack a binary structure.
const SEGSIZE
The segment size for the file contents cache.
$fileLength
The cached length of the file, or null if it has not been loaded yet.
readCentralDirectory( $offset, $size)
Read the central directory at the given location.
unpackZip64Extra( $extraField)
Interpret ZIP64 "extra field" data and return an associative array.