MediaWiki master
ZipDirectoryReader.php
Go to the documentation of this file.
1<?php
9namespace Wikimedia\Mime;
10
11use StatusValue;
12use UnexpectedValueException;
13
90 public static function read( $fileName, $callback, $options = [] ) {
91 $file = fopen( $fileName, 'r' );
92 $zdr = new self( $file, $callback, $options );
93 return $zdr->execute();
94 }
95
107 public static function readHandle( $file, $callback, $options = [] ) {
108 $zdr = new self( $file, $callback, $options );
109 return $zdr->execute();
110 }
111
113 protected $file;
114
116 protected $fileLength;
117
119 protected $buffer;
120
122 protected $callback;
123
125 protected $zip64 = false;
126
128 protected $eocdr;
130 protected $eocdr64;
133
135 private const ZIP64_EXTRA_HEADER = 0x0001;
136
138 private const SEGSIZE = 16384;
139
141 private const GENERAL_UTF8 = 11;
142
144 private const GENERAL_CD_ENCRYPTED = 13;
145
151 protected function __construct( $file, $callback, $options ) {
152 $this->file = $file;
153 $this->callback = $callback;
154
155 if ( isset( $options['zip64'] ) ) {
156 $this->zip64 = $options['zip64'];
157 }
158 }
159
165 private function execute() {
166 if ( !$this->file ) {
167 return StatusValue::newFatal( 'zip-file-open-error' );
168 }
169
170 $status = StatusValue::newGood();
171 try {
172 $this->readEndOfCentralDirectoryRecord();
173 if ( $this->zip64 ) {
174 [ $offset, $size ] = $this->findZip64CentralDirectory();
175 $this->readCentralDirectory( $offset, $size );
176 } else {
177 if ( $this->eocdr['CD size'] == 0xffffffff
178 || $this->eocdr['CD offset'] == 0xffffffff
179 || $this->eocdr['CD entries total'] == 0xffff
180 ) {
181 $this->error( 'zip-unsupported', 'Central directory header indicates ZIP64, ' .
182 'but we are in legacy mode. Rejecting this upload is necessary to avoid ' .
183 'opening vulnerabilities on clients using OpenJDK 7 or later.' );
184 }
185
186 [ $offset, $size ] = $this->findOldCentralDirectory();
187 $this->readCentralDirectory( $offset, $size );
188 }
189 } catch ( ZipDirectoryReaderError $e ) {
190 $status->fatal( $e->getErrorCode() );
191 }
192
193 fclose( $this->file );
194
195 return $status;
196 }
197
205 private function error( $code, $debugMessage ): never {
206 wfDebug( __CLASS__ . ": Fatal error: $debugMessage" );
207 throw new ZipDirectoryReaderError( $code );
208 }
209
215 private function readEndOfCentralDirectoryRecord() {
216 $info = [
217 'signature' => 4,
218 'disk' => 2,
219 'CD start disk' => 2,
220 'CD entries this disk' => 2,
221 'CD entries total' => 2,
222 'CD size' => 4,
223 'CD offset' => 4,
224 'file comment length' => 2,
225 ];
226 $structSize = $this->getStructSize( $info );
227 $startPos = $this->getFileLength() - 65536 - $structSize;
228 if ( $startPos < 0 ) {
229 $startPos = 0;
230 }
231
232 if ( $this->getFileLength() === 0 ) {
233 $this->error( 'zip-wrong-format', "The file is empty." );
234 }
235
236 $block = $this->getBlock( $startPos );
237 $sigPos = strrpos( $block, "PK\x05\x06" );
238 if ( $sigPos === false ) {
239 $this->error( 'zip-wrong-format',
240 "zip file lacks EOCDR signature. It probably isn't a zip file." );
241 }
242
243 $this->eocdr = $this->unpack( substr( $block, $sigPos ), $info );
244 $this->eocdr['EOCDR size'] = $structSize + $this->eocdr['file comment length'];
245
246 if ( $structSize + $this->eocdr['file comment length'] != strlen( $block ) - $sigPos ) {
247 // T40432: MS binary documents frequently embed ZIP files
248 $this->error( 'zip-wrong-format', 'there is a ZIP signature but it is not at ' .
249 'the end of the file. It could be an OLE file with a ZIP file embedded.' );
250 }
251 if ( $this->eocdr['disk'] !== 0
252 || $this->eocdr['CD start disk'] !== 0
253 ) {
254 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR)' );
255 }
256 $this->eocdr += $this->unpack(
257 $block,
258 [ 'file comment' => [ 'string', $this->eocdr['file comment length'] ] ],
259 $sigPos + $structSize );
260 $this->eocdr['position'] = $startPos + $sigPos;
261 }
262
267 private function readZip64EndOfCentralDirectoryLocator() {
268 $info = [
269 'signature' => [ 'string', 4 ],
270 'eocdr64 start disk' => 4,
271 'eocdr64 offset' => 8,
272 'number of disks' => 4,
273 ];
274 $structSize = $this->getStructSize( $info );
275
276 $start = $this->getFileLength() - $this->eocdr['EOCDR size'] - $structSize;
277 $block = $this->getBlock( $start, $structSize );
278 $this->eocdr64Locator = $data = $this->unpack( $block, $info );
279
280 if ( $data['signature'] !== "PK\x06\x07" ) {
281 // Note: Java will allow this and continue to read the
282 // EOCDR64, so we have to reject the upload, we can't
283 // just use the EOCDR header instead.
284 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory locator' );
285 }
286 }
287
292 private function readZip64EndOfCentralDirectoryRecord() {
293 if ( $this->eocdr64Locator['eocdr64 start disk'] != 0
294 || $this->eocdr64Locator['number of disks'] != 0
295 ) {
296 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64 locator)' );
297 }
298
299 $info = [
300 'signature' => [ 'string', 4 ],
301 'EOCDR64 size' => 8,
302 'version made by' => 2,
303 'version needed' => 2,
304 'disk' => 4,
305 'CD start disk' => 4,
306 'CD entries this disk' => 8,
307 'CD entries total' => 8,
308 'CD size' => 8,
309 'CD offset' => 8
310 ];
311 $structSize = $this->getStructSize( $info );
312 $block = $this->getBlock( $this->eocdr64Locator['eocdr64 offset'], $structSize );
313 $this->eocdr64 = $data = $this->unpack( $block, $info );
314 if ( $data['signature'] !== "PK\x06\x06" ) {
315 $this->error( 'zip-bad', 'wrong signature on Zip64 end of central directory record' );
316 }
317 if ( $data['disk'] !== 0
318 || $data['CD start disk'] !== 0
319 ) {
320 $this->error( 'zip-unsupported', 'more than one disk (in EOCDR64)' );
321 }
322 }
323
330 private function findOldCentralDirectory() {
331 $size = $this->eocdr['CD size'];
332 $offset = $this->eocdr['CD offset'];
333 $endPos = $this->eocdr['position'];
334
335 // Some readers use the EOCDR position instead of the offset field
336 // to find the directory, so to be safe, we check if they both agree.
337 if ( $offset + $size != $endPos ) {
338 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
339 'of central directory record' );
340 }
341
342 return [ $offset, $size ];
343 }
344
351 private function findZip64CentralDirectory() {
352 // The spec is ambiguous about the exact rules of precedence between the
353 // ZIP64 headers and the original headers. Here we follow zip_util.c
354 // from OpenJDK 7.
355 $size = $this->eocdr['CD size'];
356 $offset = $this->eocdr['CD offset'];
357 $numEntries = $this->eocdr['CD entries total'];
358 $endPos = $this->eocdr['position'];
359 if ( $size == 0xffffffff
360 || $offset == 0xffffffff
361 || $numEntries == 0xffff
362 ) {
363 $this->readZip64EndOfCentralDirectoryLocator();
364
365 if ( isset( $this->eocdr64Locator['eocdr64 offset'] ) ) {
366 $this->readZip64EndOfCentralDirectoryRecord();
367 if ( isset( $this->eocdr64['CD offset'] ) ) {
368 $size = $this->eocdr64['CD size'];
369 $offset = $this->eocdr64['CD offset'];
370 $endPos = $this->eocdr64Locator['eocdr64 offset'];
371 }
372 }
373 }
374 // Some readers use the EOCDR position instead of the offset field
375 // to find the directory, so to be safe, we check if they both agree.
376 if ( $offset + $size != $endPos ) {
377 $this->error( 'zip-bad', 'the central directory does not immediately precede the end ' .
378 'of central directory record' );
379 }
380
381 return [ $offset, $size ];
382 }
383
389 private function readCentralDirectory( $offset, $size ) {
390 $block = $this->getBlock( $offset, $size );
391
392 $fixedInfo = [
393 'signature' => [ 'string', 4 ],
394 'version made by' => 2,
395 'version needed' => 2,
396 'general bits' => 2,
397 'compression method' => 2,
398 'mod time' => 2,
399 'mod date' => 2,
400 'crc-32' => 4,
401 'compressed size' => 4,
402 'uncompressed size' => 4,
403 'name length' => 2,
404 'extra field length' => 2,
405 'comment length' => 2,
406 'disk number start' => 2,
407 'internal attrs' => 2,
408 'external attrs' => 4,
409 'local header offset' => 4,
410 ];
411 $fixedSize = $this->getStructSize( $fixedInfo );
412
413 $pos = 0;
414 while ( $pos < $size ) {
415 $data = $this->unpack( $block, $fixedInfo, $pos );
416 $pos += $fixedSize;
417
418 if ( $data['signature'] !== "PK\x01\x02" ) {
419 $this->error( 'zip-bad', 'Invalid signature found in directory entry' );
420 }
421
422 $variableInfo = [
423 'name' => [ 'string', $data['name length'] ],
424 'extra field' => [ 'string', $data['extra field length'] ],
425 'comment' => [ 'string', $data['comment length'] ],
426 ];
427 $data += $this->unpack( $block, $variableInfo, $pos );
428 $pos += $this->getStructSize( $variableInfo );
429
430 if ( $this->zip64 && (
431 $data['compressed size'] == 0xffffffff
432 || $data['uncompressed size'] == 0xffffffff
433 || $data['local header offset'] == 0xffffffff )
434 ) {
435 $zip64Data = $this->unpackZip64Extra( $data['extra field'] );
436 if ( $zip64Data ) {
437 $data = $zip64Data + $data;
438 }
439 }
440
441 if ( $this->testBit( $data['general bits'], self::GENERAL_CD_ENCRYPTED ) ) {
442 $this->error( 'zip-unsupported', 'central directory encryption is not supported' );
443 }
444
445 // Convert the timestamp into MediaWiki format
446 // For the format, please see the MS-DOS 2.0 Programmer's Reference,
447 // pages 3-5 and 3-6.
448 $time = $data['mod time'];
449 $date = $data['mod date'];
450
451 $year = 1980 + ( $date >> 9 );
452 $month = ( $date >> 5 ) & 15;
453 $day = $date & 31;
454 $hour = ( $time >> 11 ) & 31;
455 $minute = ( $time >> 5 ) & 63;
456 $second = ( $time & 31 ) * 2;
457 $timestamp = sprintf( "%04d%02d%02d%02d%02d%02d",
458 $year, $month, $day, $hour, $minute, $second );
459
460 // Convert the character set in the file name
461 if ( $this->testBit( $data['general bits'], self::GENERAL_UTF8 ) ) {
462 $name = $data['name'];
463 } else {
464 $name = iconv( 'CP437', 'UTF-8', $data['name'] );
465 }
466
467 // Compile a data array for the user, with a sensible format
468 $userData = [
469 'name' => $name,
470 'mtime' => $timestamp,
471 'size' => $data['uncompressed size'],
472 'compression' => $data['compression method'],
473 'local_header_offset' => $data['local header offset'],
474 'compressed_size' => $data['compressed size'],
475 ];
476 ( $this->callback )( $userData );
477 }
478 }
479
485 private function unpackZip64Extra( $extraField ) {
486 $extraHeaderInfo = [
487 'id' => 2,
488 'size' => 2,
489 ];
490 $extraHeaderSize = $this->getStructSize( $extraHeaderInfo );
491
492 $zip64ExtraInfo = [
493 'uncompressed size' => 8,
494 'compressed size' => 8,
495 'local header offset' => 8,
496 'disk number start' => 4,
497 ];
498
499 $extraPos = 0;
500 while ( $extraPos < strlen( $extraField ) ) {
501 $extra = $this->unpack( $extraField, $extraHeaderInfo, $extraPos );
502 $extraPos += $extraHeaderSize;
503 $extra += $this->unpack( $extraField,
504 [ 'data' => [ 'string', $extra['size'] ] ],
505 $extraPos );
506 $extraPos += $extra['size'];
507
508 if ( $extra['id'] == self::ZIP64_EXTRA_HEADER ) {
509 return $this->unpack( $extra['data'], $zip64ExtraInfo );
510 }
511 }
512
513 return false;
514 }
515
520 private function getFileLength() {
521 if ( $this->fileLength === null ) {
522 $stat = fstat( $this->file );
523 $this->fileLength = $stat['size'];
524 }
525
526 return $this->fileLength;
527 }
528
539 private function getBlock( $start, $length = null ) {
540 $fileLength = $this->getFileLength();
541 if ( $start >= $fileLength ) {
542 $this->error( 'zip-bad', "getBlock() requested position $start, " .
543 "file length is $fileLength" );
544 }
545 $length ??= $fileLength - $start;
546 $end = $start + $length;
547 if ( $end > $fileLength ) {
548 $this->error( 'zip-bad', "getBlock() requested end position $end, " .
549 "file length is $fileLength" );
550 }
551 $startSeg = (int)floor( $start / self::SEGSIZE );
552 $endSeg = (int)ceil( $end / self::SEGSIZE );
553
554 $block = '';
555 for ( $segIndex = $startSeg; $segIndex <= $endSeg; $segIndex++ ) {
556 $block .= $this->getSegment( $segIndex );
557 }
558
559 $block = substr( $block,
560 $start - $startSeg * self::SEGSIZE,
561 $length );
562
563 if ( strlen( $block ) < $length ) {
564 $this->error( 'zip-bad', 'getBlock() returned an unexpectedly small amount of data' );
565 }
566
567 return $block;
568 }
569
583 private function getSegment( $segIndex ) {
584 if ( !isset( $this->buffer[$segIndex] ) ) {
585 $bytePos = $segIndex * self::SEGSIZE;
586 if ( $bytePos >= $this->getFileLength() ) {
587 $this->buffer[$segIndex] = '';
588
589 return '';
590 }
591 if ( fseek( $this->file, $bytePos ) ) {
592 $this->error( 'zip-bad', "seek to $bytePos failed" );
593 }
594 $seg = fread( $this->file, self::SEGSIZE );
595 if ( $seg === false ) {
596 $this->error( 'zip-bad', "read from $bytePos failed" );
597 }
598 $this->buffer[$segIndex] = $seg;
599 }
600
601 return $this->buffer[$segIndex];
602 }
603
609 private function getStructSize( $struct ) {
610 $size = 0;
611 foreach ( $struct as $type ) {
612 if ( is_array( $type ) ) {
613 [ , $fieldSize ] = $type;
614 $size += $fieldSize;
615 } else {
616 $size += $type;
617 }
618 }
619
620 return $size;
621 }
622
643 private function unpack( $string, $struct, $offset = 0 ) {
644 $size = $this->getStructSize( $struct );
645 if ( $offset + $size > strlen( $string ) ) {
646 $this->error( 'zip-bad', 'unpack() would run past the end of the supplied string' );
647 }
648
649 $data = [];
650 $pos = $offset;
651 foreach ( $struct as $key => $type ) {
652 if ( is_array( $type ) ) {
653 [ $typeName, $fieldSize ] = $type;
654 switch ( $typeName ) {
655 case 'string':
656 $data[$key] = substr( $string, $pos, $fieldSize );
657 $pos += $fieldSize;
658 break;
659 default:
660 throw new UnexpectedValueException( __METHOD__ . ": invalid type \"$typeName\"" );
661 }
662 } else {
663 // Unsigned little-endian integer
664 $length = intval( $type );
665
666 // Calculate the value. Use an algorithm which automatically
667 // upgrades the value to floating point if necessary.
668 $value = 0;
669 for ( $i = $length - 1; $i >= 0; $i-- ) {
670 $value *= 256;
671 $value += ord( $string[$pos + $i] );
672 }
673
674 // Throw an exception if there was loss of precision
675 if ( $value > 2 ** 52 ) {
676 $this->error( 'zip-unsupported', 'number too large to be stored in a double. ' .
677 'This could happen if we tried to unpack a 64-bit structure ' .
678 'at an invalid location.' );
679 }
680 $data[$key] = $value;
681 $pos += $length;
682 }
683 }
684
685 return $data;
686 }
687
696 private function testBit( $value, $bitIndex ) {
697 return (bool)( ( $value >> $bitIndex ) & 1 );
698 }
699}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
A class for reading ZIP file directories, for the purposes of upload verification.
static readHandle( $file, $callback, $options=[])
Read an opened file handle presumed to be a ZIP and call a function for each file discovered in it.
static read( $fileName, $callback, $options=[])
Read a ZIP file and call a function for each file discovered in it.
int null $fileLength
The cached length of the file, or null if it has not been loaded yet.
string[] $buffer
A segmented cache of the file contents.
resource $file
The opened file resource.
__construct( $file, $callback, $options)
callable $callback
The file data callback.