91 return $zdr->execute();
138 if ( isset( $options[
'zip64'] ) ) {
139 $this->zip64 = $options[
'zip64'];
149 $this->file = fopen( $this->fileName,
'r' );
151 if ( !$this->file ) {
158 if ( $this->zip64 ) {
162 if ( $this->eocdr[
'CD size'] == 0xffffffff
163 || $this->eocdr[
'CD offset'] == 0xffffffff
164 || $this->eocdr[
'CD entries total'] == 0xffff
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.' );
178 fclose( $this->file );
189 function error( $code, $debugMessage ) {
190 wfDebug( __CLASS__ .
": Fatal error: $debugMessage\n" );
203 'CD start disk' => 2,
204 'CD entries this disk' => 2,
205 'CD entries total' => 2,
208 'file comment length' => 2,
212 if ( $startPos < 0 ) {
217 $this->
error(
'zip-wrong-format',
"The file is empty." );
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." );
227 $this->eocdr = $this->
unpack( substr( $block, $sigPos ), $info );
228 $this->eocdr[
'EOCDR size'] = $structSize + $this->eocdr[
'file comment length'];
230 if ( $structSize + $this->eocdr[
'file comment length'] != strlen( $block ) - $sigPos ) {
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.' );
235 if ( $this->eocdr[
'disk'] !== 0
236 || $this->eocdr[
'CD start disk'] !== 0
238 $this->
error(
'zip-unsupported',
'more than one disk (in EOCDR)' );
240 $this->eocdr += $this->
unpack(
242 [
'file comment' => [
'string', $this->eocdr[
'file comment length'] ] ],
243 $sigPos + $structSize );
244 $this->eocdr[
'position'] = $startPos + $sigPos;
253 'signature' => [
'string', 4 ],
254 'eocdr64 start disk' => 4,
255 'eocdr64 offset' => 8,
256 'number of disks' => 4,
260 $start = $this->
getFileLength() - $this->eocdr[
'EOCDR size'] - $structSize;
261 $block = $this->
getBlock( $start, $structSize );
262 $this->eocdr64Locator =
$data = $this->
unpack( $block, $info );
264 if (
$data[
'signature'] !==
"PK\x06\x07" ) {
268 $this->
error(
'zip-bad',
'wrong signature on Zip64 end of central directory locator' );
277 if ( $this->eocdr64Locator[
'eocdr64 start disk'] != 0
278 || $this->eocdr64Locator[
'number of disks'] != 0
280 $this->
error(
'zip-unsupported',
'more than one disk (in EOCDR64 locator)' );
284 'signature' => [
'string', 4 ],
286 'version made by' => 2,
287 'version needed' => 2,
289 'CD start disk' => 4,
290 'CD entries this disk' => 8,
291 'CD entries total' => 8,
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' );
301 if (
$data[
'disk'] !== 0
302 ||
$data[
'CD start disk'] !== 0
304 $this->
error(
'zip-unsupported',
'more than one disk (in EOCDR64)' );
315 $size = $this->eocdr[
'CD size'];
316 $offset = $this->eocdr[
'CD offset'];
317 $endPos = $this->eocdr[
'position'];
321 if ( $offset + $size != $endPos ) {
322 $this->
error(
'zip-bad',
'the central directory does not immediately precede the end ' .
323 'of central directory record' );
326 return [ $offset, $size ];
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
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'];
360 if ( $offset + $size != $endPos ) {
361 $this->
error(
'zip-bad',
'the central directory does not immediately precede the end ' .
362 'of central directory record' );
365 return [ $offset, $size ];
375 $block = $this->
getBlock( $offset, $size );
378 'signature' => [
'string', 4 ],
379 'version made by' => 2,
380 'version needed' => 2,
382 'compression method' => 2,
386 'compressed size' => 4,
387 'uncompressed size' => 4,
389 'extra field length' => 2,
390 'comment length' => 2,
391 'disk number start' => 2,
392 'internal attrs' => 2,
393 'external attrs' => 4,
394 'local header offset' => 4,
399 while ( $pos < $size ) {
403 if (
$data[
'signature'] !==
"PK\x01\x02" ) {
404 $this->
error(
'zip-bad',
'Invalid signature found in directory entry' );
408 'name' => [
'string',
$data[
'name length'] ],
409 'extra field' => [
'string',
$data[
'extra field length'] ],
410 'comment' => [
'string',
$data[
'comment length'] ],
412 $data += $this->
unpack( $block, $variableInfo, $pos );
415 if ( $this->zip64 && (
416 $data[
'compressed size'] == 0xffffffff
417 ||
$data[
'uncompressed size'] == 0xffffffff
418 ||
$data[
'local header offset'] == 0xffffffff )
426 if ( $this->
testBit(
$data[
'general bits'], self::GENERAL_CD_ENCRYPTED ) ) {
427 $this->
error(
'zip-unsupported',
'central directory encryption is not supported' );
433 $time =
$data[
'mod time'];
434 $date =
$data[
'mod date'];
436 $year = 1980 + ( $date >> 9 );
437 $month = ( $date >> 5 ) & 15;
439 $hour = ( $time >> 11 ) & 31;
440 $minute = ( $time >> 5 ) & 63;
441 $second = ( $time & 31 ) * 2;
442 $timestamp = sprintf(
"%04d%02d%02d%02d%02d%02d",
443 $year, $month, $day, $hour, $minute, $second );
446 if ( $this->
testBit(
$data[
'general bits'], self::GENERAL_UTF8 ) ) {
447 $name =
$data[
'name'];
449 $name = iconv(
'CP437',
'UTF-8',
$data[
'name'] );
455 'mtime' => $timestamp,
456 'size' =>
$data[
'uncompressed size'],
458 call_user_func( $this->callback, $userData );
475 'uncompressed size' => 8,
476 'compressed size' => 8,
477 'local header offset' => 8,
478 'disk number start' => 4,
482 while ( $extraPos < strlen( $extraField ) ) {
483 $extra = $this->
unpack( $extraField, $extraHeaderInfo, $extraPos );
484 $extraPos += $extraHeaderSize;
485 $extra += $this->
unpack( $extraField,
486 [
'data' => [
'string', $extra[
'size'] ] ],
488 $extraPos += $extra[
'size'];
490 if ( $extra[
'id'] == self::ZIP64_EXTRA_HEADER ) {
491 return $this->
unpack( $extra[
'data'], $zip64ExtraInfo );
503 if ( $this->fileLength ===
null ) {
504 $stat = fstat( $this->file );
505 $this->fileLength = $stat[
'size'];
524 $this->
error(
'zip-bad',
"getBlock() requested position $start, " .
525 "file length is $fileLength" );
527 if ( $length ===
null ) {
530 $end = $start + $length;
532 $this->
error(
'zip-bad',
"getBlock() requested end position $end, " .
533 "file length is $fileLength" );
535 $startSeg = floor( $start / self::SEGSIZE );
536 $endSeg = ceil( $end / self::SEGSIZE );
539 for ( $segIndex = $startSeg; $segIndex <= $endSeg; $segIndex++ ) {
543 $block = substr( $block,
544 $start - $startSeg * self::SEGSIZE,
547 if ( strlen( $block ) < $length ) {
548 $this->
error(
'zip-bad',
'getBlock() returned an unexpectedly small amount of data' );
568 if ( !isset( $this->buffer[$segIndex] ) ) {
571 $this->buffer[$segIndex] =
'';
575 if ( fseek( $this->file, $bytePos ) ) {
576 $this->
error(
'zip-bad',
"seek to $bytePos failed" );
578 $seg = fread( $this->file, self::SEGSIZE );
579 if ( $seg ===
false ) {
580 $this->
error(
'zip-bad',
"read from $bytePos failed" );
582 $this->buffer[$segIndex] = $seg;
585 return $this->buffer[$segIndex];
595 foreach ( $struct as
$type ) {
596 if ( is_array(
$type ) ) {
597 list( , $fieldSize ) =
$type;
629 function unpack( $string, $struct, $offset = 0 ) {
631 if ( $offset + $size > strlen( $string ) ) {
632 $this->
error(
'zip-bad',
'unpack() would run past the end of the supplied string' );
637 foreach ( $struct as $key =>
$type ) {
638 if ( is_array(
$type ) ) {
639 list( $typeName, $fieldSize ) =
$type;
640 switch ( $typeName ) {
642 $data[$key] = substr( $string, $pos, $fieldSize );
646 throw new MWException( __METHOD__ .
": invalid type \"$typeName\"" );
650 $length = intval(
$type );
655 for ( $i = $length - 1; $i >= 0; $i-- ) {
657 $value += ord( $string[$pos + $i] );
661 if ( $value > 2 ** 52 ) {
662 $this->
error(
'zip-unsupported',
'number too large to be stored in a double. ' .
663 'This could happen if we tried to unpack a 64-bit structure ' .
664 'at an invalid location.' );
666 $data[$key] = $value;
683 return (
bool)( ( $value >> $bitIndex ) & 1 );
692 for ( $i = 0; $i < $n; $i += 16 ) {
693 printf(
"%08X ", $i );
694 for ( $j = 0; $j < 16; $j++ ) {
699 if ( $i + $j >= $n ) {
702 printf(
"%02X", ord(
$s[$i + $j] ) );
707 for ( $j = 0; $j < 16; $j++ ) {
708 if ( $i + $j >= $n ) {
710 } elseif ( ctype_print(
$s[$i + $j] ) ) {