MediaWiki
1.34.0
|
A class for reading ZIP file directories, for the purposes of upload verification. More...
Public Member Functions | |
error ( $code, $debugMessage) | |
Throw an error, and log a debug message. More... | |
execute () | |
Read the directory according to settings in $this. More... | |
findOldCentralDirectory () | |
Find the location of the central directory, as would be seen by a non-ZIP64 reader. More... | |
findZip64CentralDirectory () | |
Find the location of the central directory, as would be seen by a ZIP64-compliant reader. More... | |
getBlock ( $start, $length=null) | |
Get the file contents from a given offset. More... | |
getFileLength () | |
Get the length of the file. More... | |
getSegment ( $segIndex) | |
Get a section of the file starting at position $segIndex * self::SEGSIZE, of length self::SEGSIZE. More... | |
getStructSize ( $struct) | |
Get the size of a structure in bytes. More... | |
hexDump ( $s) | |
Debugging helper function which dumps a string in hexdump -C format. More... | |
readCentralDirectory ( $offset, $size) | |
Read the central directory at the given location. More... | |
readEndOfCentralDirectoryRecord () | |
Read the header which is at the end of the central directory, unimaginatively called the "end of central directory record" by the ZIP spec. More... | |
readZip64EndOfCentralDirectoryLocator () | |
Read the header called the "ZIP64 end of central directory locator". More... | |
readZip64EndOfCentralDirectoryRecord () | |
Read the header called the "ZIP64 end of central directory record". More... | |
testBit ( $value, $bitIndex) | |
Returns a bit from a given position in an integer value, converted to boolean. More... | |
unpack ( $string, $struct, $offset=0) | |
Unpack a binary structure. More... | |
unpackZip64Extra ( $extraField) | |
Interpret ZIP64 "extra field" data and return an associative array. More... | |
Static Public Member Functions | |
static | read ( $fileName, $callback, $options=[]) |
Read a ZIP file and call a function for each file discovered in it. More... | |
Public Attributes | |
$eocdr64 | |
$eocdr64Locator | |
const | GENERAL_CD_ENCRYPTED = 13 |
The index of the "general field" bit for central directory encryption. More... | |
const | GENERAL_UTF8 = 11 |
The index of the "general field" bit for UTF-8 file names. More... | |
const | SEGSIZE = 16384 |
The segment size for the file contents cache. More... | |
const | ZIP64_EXTRA_HEADER = 0x0001 |
The "extra field" ID for ZIP64 central directory entries. More... | |
Protected Member Functions | |
__construct ( $fileName, $callback, $options) | |
Protected Attributes | |
$buffer | |
A segmented cache of the file contents. More... | |
$callback | |
The file data callback. More... | |
$data | |
$eocdr | |
Stored headers. More... | |
$file | |
The opened file resource. More... | |
$fileLength | |
The cached length of the file, or null if it has not been loaded yet. More... | |
$fileName | |
The file name. More... | |
$zip64 = false | |
The ZIP64 mode. More... | |
A class for reading ZIP file directories, for the purposes of upload verification.
Only a functional interface is provided: ZipFileReader::read(). No access is given to object instances.
Definition at line 30 of file ZipDirectoryReader.php.
|
protected |
string | $fileName | |
callable | $callback | |
array | $options |
Definition at line 134 of file ZipDirectoryReader.php.
ZipDirectoryReader::error | ( | $code, | |
$debugMessage | |||
) |
Throw an error, and log a debug message.
mixed | $code | |
string | $debugMessage |
ZipDirectoryReaderError |
Definition at line 189 of file ZipDirectoryReader.php.
References wfDebug().
Referenced by execute(), findOldCentralDirectory(), findZip64CentralDirectory(), getBlock(), getSegment(), readCentralDirectory(), readEndOfCentralDirectoryRecord(), readZip64EndOfCentralDirectoryLocator(), readZip64EndOfCentralDirectoryRecord(), and unpack().
ZipDirectoryReader::execute | ( | ) |
Read the directory according to settings in $this.
Definition at line 148 of file ZipDirectoryReader.php.
References $status, error(), findOldCentralDirectory(), findZip64CentralDirectory(), ZipDirectoryReaderError\getErrorCode(), StatusValue\newFatal(), StatusValue\newGood(), readCentralDirectory(), and readEndOfCentralDirectoryRecord().
ZipDirectoryReader::findOldCentralDirectory | ( | ) |
Find the location of the central directory, as would be seen by a non-ZIP64 reader.
Definition at line 314 of file ZipDirectoryReader.php.
References error().
Referenced by execute().
ZipDirectoryReader::findZip64CentralDirectory | ( | ) |
Find the location of the central directory, as would be seen by a ZIP64-compliant reader.
Definition at line 335 of file ZipDirectoryReader.php.
References error(), readZip64EndOfCentralDirectoryLocator(), and readZip64EndOfCentralDirectoryRecord().
Referenced by execute().
ZipDirectoryReader::getBlock | ( | $start, | |
$length = null |
|||
) |
Get the file contents from a given offset.
If there are not enough bytes in the file to satisfy the request, an exception will be thrown.
int | $start | The byte offset of the start of the block. |
int | null | $length | The number of bytes to return. If omitted, the remainder of the file will be returned. |
Definition at line 521 of file ZipDirectoryReader.php.
References $fileLength, error(), getFileLength(), and getSegment().
Referenced by readCentralDirectory(), readEndOfCentralDirectoryRecord(), readZip64EndOfCentralDirectoryLocator(), and readZip64EndOfCentralDirectoryRecord().
ZipDirectoryReader::getFileLength | ( | ) |
Get the length of the file.
Definition at line 502 of file ZipDirectoryReader.php.
References $fileLength.
Referenced by getBlock(), getSegment(), readEndOfCentralDirectoryRecord(), and readZip64EndOfCentralDirectoryLocator().
ZipDirectoryReader::getSegment | ( | $segIndex | ) |
Get a section of the file starting at position $segIndex * self::SEGSIZE, of length self::SEGSIZE.
The result is cached. This is a helper function for getBlock().
If there are not enough bytes in the file to satisfy the request, the return value will be truncated. If a request is made for a segment beyond the end of the file, an empty string will be returned.
int | $segIndex |
Definition at line 567 of file ZipDirectoryReader.php.
References error(), getFileLength(), and SEGSIZE.
Referenced by getBlock().
ZipDirectoryReader::getStructSize | ( | $struct | ) |
Get the size of a structure in bytes.
See unpack() for the format of $struct.
array | $struct |
Definition at line 593 of file ZipDirectoryReader.php.
References $type.
Referenced by readCentralDirectory(), readEndOfCentralDirectoryRecord(), readZip64EndOfCentralDirectoryLocator(), readZip64EndOfCentralDirectoryRecord(), unpack(), and unpackZip64Extra().
ZipDirectoryReader::hexDump | ( | $s | ) |
Debugging helper function which dumps a string in hexdump -C format.
string | $s |
Definition at line 690 of file ZipDirectoryReader.php.
References $s.
|
static |
Read a ZIP file and call a function for each file discovered in it.
Because this class is aimed at verification, an error is raised on suspicious or ambiguous input, instead of emulating some standard behavior.
string | $fileName | The archive file name |
array | $callback | The callback function. It will be called for each file with a single associative array each time, with members: |
array | $options | An associative array of read options, with the option name in the key. This may currently contain: |
zip64: If this is set to true, then we will emulate a library with ZIP64 support, like OpenJDK 7. If it is set to false, then we will emulate a library with no knowledge of ZIP64.
NOTE: The ZIP64 code is untested and probably doesn't work. It turned out to be easier to just reject ZIP64 archive uploads, since they are likely to be very rare. Confirming safety of a ZIP64 file is fairly complex. What do you do with a file that is ambiguous and broken when read with a non-ZIP64 reader, but valid when read with a ZIP64 reader? This situation is normal for a valid ZIP64 file, and working out what non-ZIP64 readers will make of such a file is not trivial.
- zip-file-open-error: The file could not be opened. - zip-wrong-format: The file does not appear to be a ZIP file. - zip-bad: There was something wrong or ambiguous about the file data. - zip-unsupported: The ZIP file uses features which ZipDirectoryReader does not support.
The default messages for those fatal errors are written in a way that makes sense for upload verification.
If a fatal error is returned, more information about the error will be available in the debug log.
Note that the callback function may be called any number of times before a fatal error is returned. If this occurs, the data sent to the callback function should be discarded.
Definition at line 88 of file ZipDirectoryReader.php.
ZipDirectoryReader::readCentralDirectory | ( | $offset, | |
$size | |||
) |
Read the central directory at the given location.
int | $offset | |
int | $size | PhanTypeInvalidLeftOperandOfIntegerOp |
Definition at line 374 of file ZipDirectoryReader.php.
References $data, error(), getBlock(), getStructSize(), testBit(), unpack(), and unpackZip64Extra().
Referenced by execute().
ZipDirectoryReader::readEndOfCentralDirectoryRecord | ( | ) |
Read the header which is at the end of the central directory, unimaginatively called the "end of central directory record" by the ZIP spec.
Definition at line 199 of file ZipDirectoryReader.php.
References error(), getBlock(), getFileLength(), getStructSize(), and unpack().
Referenced by execute().
ZipDirectoryReader::readZip64EndOfCentralDirectoryLocator | ( | ) |
Read the header called the "ZIP64 end of central directory locator".
An error will be raised if it does not exist.
Definition at line 251 of file ZipDirectoryReader.php.
References $data, error(), getBlock(), getFileLength(), getStructSize(), and unpack().
Referenced by findZip64CentralDirectory().
ZipDirectoryReader::readZip64EndOfCentralDirectoryRecord | ( | ) |
Read the header called the "ZIP64 end of central directory record".
It may replace the regular "end of central directory record" in ZIP64 files.
Definition at line 276 of file ZipDirectoryReader.php.
References $data, error(), getBlock(), getStructSize(), and unpack().
Referenced by findZip64CentralDirectory().
ZipDirectoryReader::testBit | ( | $value, | |
$bitIndex | |||
) |
Returns a bit from a given position in an integer value, converted to boolean.
int | $value | |
int | $bitIndex | The index of the bit, where 0 is the LSB. |
Definition at line 682 of file ZipDirectoryReader.php.
Referenced by readCentralDirectory().
ZipDirectoryReader::unpack | ( | $string, | |
$struct, | |||
$offset = 0 |
|||
) |
Unpack a binary structure.
This is like the built-in unpack() function except nicer.
string | $string | The binary data input |
array | $struct | An associative array giving structure members and their types. In the key is the field name. The value may be either an integer, in which case the field is a little-endian unsigned integer encoded in the given number of bytes, or an array, in which case the first element of the array is the type name, and the subsequent elements are type-dependent parameters. Only one such type is defined:
|
int | $offset | The offset into the string at which to start unpacking. |
MWException |
Definition at line 629 of file ZipDirectoryReader.php.
References $data, $type, error(), and getStructSize().
Referenced by readCentralDirectory(), readEndOfCentralDirectoryRecord(), readZip64EndOfCentralDirectoryLocator(), readZip64EndOfCentralDirectoryRecord(), and unpackZip64Extra().
ZipDirectoryReader::unpackZip64Extra | ( | $extraField | ) |
Interpret ZIP64 "extra field" data and return an associative array.
string | $extraField |
Definition at line 467 of file ZipDirectoryReader.php.
References getStructSize(), and unpack().
Referenced by readCentralDirectory().
|
protected |
A segmented cache of the file contents.
Definition at line 104 of file ZipDirectoryReader.php.
|
protected |
The file data callback.
Definition at line 107 of file ZipDirectoryReader.php.
Referenced by __construct(), and read().
|
protected |
Definition at line 115 of file ZipDirectoryReader.php.
Referenced by readCentralDirectory(), readZip64EndOfCentralDirectoryLocator(), readZip64EndOfCentralDirectoryRecord(), and unpack().
|
protected |
Stored headers.
Definition at line 113 of file ZipDirectoryReader.php.
ZipDirectoryReader::$eocdr64 |
Definition at line 113 of file ZipDirectoryReader.php.
ZipDirectoryReader::$eocdr64Locator |
Definition at line 113 of file ZipDirectoryReader.php.
|
protected |
The opened file resource.
Definition at line 98 of file ZipDirectoryReader.php.
|
protected |
The cached length of the file, or null if it has not been loaded yet.
Definition at line 101 of file ZipDirectoryReader.php.
Referenced by getBlock(), and getFileLength().
|
protected |
The file name.
Definition at line 95 of file ZipDirectoryReader.php.
Referenced by __construct(), and read().
|
protected |
The ZIP64 mode.
Definition at line 110 of file ZipDirectoryReader.php.
const ZipDirectoryReader::GENERAL_CD_ENCRYPTED = 13 |
The index of the "general field" bit for central directory encryption.
Definition at line 127 of file ZipDirectoryReader.php.
const ZipDirectoryReader::GENERAL_UTF8 = 11 |
The index of the "general field" bit for UTF-8 file names.
Definition at line 124 of file ZipDirectoryReader.php.
const ZipDirectoryReader::SEGSIZE = 16384 |
The segment size for the file contents cache.
Definition at line 121 of file ZipDirectoryReader.php.
Referenced by getSegment().
const ZipDirectoryReader::ZIP64_EXTRA_HEADER = 0x0001 |
The "extra field" ID for ZIP64 central directory entries.
Definition at line 118 of file ZipDirectoryReader.php.