Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

module.archive.zip.php 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at https://github.com/JamesHeinrich/getID3 //
  5. // or https://www.getid3.org //
  6. // or http://getid3.sourceforge.net //
  7. // see readme.txt for more details //
  8. /////////////////////////////////////////////////////////////////
  9. // //
  10. // module.archive.zip.php //
  11. // module for analyzing pkZip files //
  12. // dependencies: NONE //
  13. // ///
  14. /////////////////////////////////////////////////////////////////
  15. if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly on public webservers
  16. exit;
  17. }
  18. class getid3_zip extends getid3_handler
  19. {
  20. /**
  21. * @return bool
  22. */
  23. public function Analyze() {
  24. $info = &$this->getid3->info;
  25. $info['fileformat'] = 'zip';
  26. $info['zip']['encoding'] = 'ISO-8859-1';
  27. $info['zip']['files'] = array();
  28. $info['zip']['compressed_size'] = 0;
  29. $info['zip']['uncompressed_size'] = 0;
  30. $info['zip']['entries_count'] = 0;
  31. if (!getid3_lib::intValueSupported($info['filesize'])) {
  32. $this->error('File is larger than '.round(PHP_INT_MAX / 1073741824).'GB, not supported by PHP');
  33. return false;
  34. } else {
  35. $EOCDsearchData = '';
  36. $EOCDsearchCounter = 0;
  37. while ($EOCDsearchCounter++ < 512) {
  38. $this->fseek(-128 * $EOCDsearchCounter, SEEK_END);
  39. $EOCDsearchData = $this->fread(128).$EOCDsearchData;
  40. if (strstr($EOCDsearchData, 'PK'."\x05\x06")) {
  41. $EOCDposition = strpos($EOCDsearchData, 'PK'."\x05\x06");
  42. $this->fseek((-128 * $EOCDsearchCounter) + $EOCDposition, SEEK_END);
  43. $info['zip']['end_central_directory'] = $this->ZIPparseEndOfCentralDirectory();
  44. $this->fseek($info['zip']['end_central_directory']['directory_offset']);
  45. $info['zip']['entries_count'] = 0;
  46. while ($centraldirectoryentry = $this->ZIPparseCentralDirectory()) {
  47. $info['zip']['central_directory'][] = $centraldirectoryentry;
  48. $info['zip']['entries_count']++;
  49. $info['zip']['compressed_size'] += $centraldirectoryentry['compressed_size'];
  50. $info['zip']['uncompressed_size'] += $centraldirectoryentry['uncompressed_size'];
  51. //if ($centraldirectoryentry['uncompressed_size'] > 0) { zero-byte files are valid
  52. if (!empty($centraldirectoryentry['filename'])) {
  53. $info['zip']['files'] = getid3_lib::array_merge_clobber($info['zip']['files'], getid3_lib::CreateDeepArray($centraldirectoryentry['filename'], '/', $centraldirectoryentry['uncompressed_size']));
  54. }
  55. }
  56. if ($info['zip']['entries_count'] == 0) {
  57. $this->error('No Central Directory entries found (truncated file?)');
  58. return false;
  59. }
  60. if (!empty($info['zip']['end_central_directory']['comment'])) {
  61. $info['zip']['comments']['comment'][] = $info['zip']['end_central_directory']['comment'];
  62. }
  63. if (isset($info['zip']['central_directory'][0]['compression_method'])) {
  64. $info['zip']['compression_method'] = $info['zip']['central_directory'][0]['compression_method'];
  65. }
  66. if (isset($info['zip']['central_directory'][0]['flags']['compression_speed'])) {
  67. $info['zip']['compression_speed'] = $info['zip']['central_directory'][0]['flags']['compression_speed'];
  68. }
  69. if (isset($info['zip']['compression_method']) && ($info['zip']['compression_method'] == 'store') && !isset($info['zip']['compression_speed'])) {
  70. $info['zip']['compression_speed'] = 'store';
  71. }
  72. // secondary check - we (should) already have all the info we NEED from the Central Directory above, but scanning each
  73. // Local File Header entry will
  74. foreach ($info['zip']['central_directory'] as $central_directory_entry) {
  75. $this->fseek($central_directory_entry['entry_offset']);
  76. if ($fileentry = $this->ZIPparseLocalFileHeader()) {
  77. $info['zip']['entries'][] = $fileentry;
  78. } else {
  79. $this->warning('Error parsing Local File Header at offset '.$central_directory_entry['entry_offset']);
  80. }
  81. }
  82. if (!empty($info['zip']['files']['[Content_Types].xml']) &&
  83. !empty($info['zip']['files']['_rels']['.rels']) &&
  84. !empty($info['zip']['files']['docProps']['app.xml']) &&
  85. !empty($info['zip']['files']['docProps']['core.xml'])) {
  86. // http://technet.microsoft.com/en-us/library/cc179224.aspx
  87. $info['fileformat'] = 'zip.msoffice';
  88. if (!empty($ThisFileInfo['zip']['files']['ppt'])) {
  89. $info['mime_type'] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation';
  90. } elseif (!empty($ThisFileInfo['zip']['files']['xl'])) {
  91. $info['mime_type'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
  92. } elseif (!empty($ThisFileInfo['zip']['files']['word'])) {
  93. $info['mime_type'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document.htm';
  94. }
  95. }
  96. return true;
  97. }
  98. }
  99. }
  100. if (!$this->getZIPentriesFilepointer()) {
  101. unset($info['zip']);
  102. $info['fileformat'] = '';
  103. $this->error('Cannot find End Of Central Directory (truncated file?)');
  104. return false;
  105. }
  106. // central directory couldn't be found and/or parsed
  107. // scan through actual file data entries, recover as much as possible from probable trucated file
  108. if ($info['zip']['compressed_size'] > ($info['filesize'] - 46 - 22)) {
  109. $this->error('Warning: Truncated file! - Total compressed file sizes ('.$info['zip']['compressed_size'].' bytes) is greater than filesize minus Central Directory and End Of Central Directory structures ('.($info['filesize'] - 46 - 22).' bytes)');
  110. }
  111. $this->error('Cannot find End Of Central Directory - returned list of files in [zip][entries] array may not be complete');
  112. foreach ($info['zip']['entries'] as $key => $valuearray) {
  113. $info['zip']['files'][$valuearray['filename']] = $valuearray['uncompressed_size'];
  114. }
  115. return true;
  116. }
  117. /**
  118. * @return bool
  119. */
  120. public function getZIPHeaderFilepointerTopDown() {
  121. $info = &$this->getid3->info;
  122. $info['fileformat'] = 'zip';
  123. $info['zip']['compressed_size'] = 0;
  124. $info['zip']['uncompressed_size'] = 0;
  125. $info['zip']['entries_count'] = 0;
  126. rewind($this->getid3->fp);
  127. while ($fileentry = $this->ZIPparseLocalFileHeader()) {
  128. $info['zip']['entries'][] = $fileentry;
  129. $info['zip']['entries_count']++;
  130. }
  131. if ($info['zip']['entries_count'] == 0) {
  132. $this->error('No Local File Header entries found');
  133. return false;
  134. }
  135. $info['zip']['entries_count'] = 0;
  136. while ($centraldirectoryentry = $this->ZIPparseCentralDirectory()) {
  137. $info['zip']['central_directory'][] = $centraldirectoryentry;
  138. $info['zip']['entries_count']++;
  139. $info['zip']['compressed_size'] += $centraldirectoryentry['compressed_size'];
  140. $info['zip']['uncompressed_size'] += $centraldirectoryentry['uncompressed_size'];
  141. }
  142. if ($info['zip']['entries_count'] == 0) {
  143. $this->error('No Central Directory entries found (truncated file?)');
  144. return false;
  145. }
  146. if ($EOCD = $this->ZIPparseEndOfCentralDirectory()) {
  147. $info['zip']['end_central_directory'] = $EOCD;
  148. } else {
  149. $this->error('No End Of Central Directory entry found (truncated file?)');
  150. return false;
  151. }
  152. if (!empty($info['zip']['end_central_directory']['comment'])) {
  153. $info['zip']['comments']['comment'][] = $info['zip']['end_central_directory']['comment'];
  154. }
  155. return true;
  156. }
  157. /**
  158. * @return bool
  159. */
  160. public function getZIPentriesFilepointer() {
  161. $info = &$this->getid3->info;
  162. $info['zip']['compressed_size'] = 0;
  163. $info['zip']['uncompressed_size'] = 0;
  164. $info['zip']['entries_count'] = 0;
  165. rewind($this->getid3->fp);
  166. while ($fileentry = $this->ZIPparseLocalFileHeader()) {
  167. $info['zip']['entries'][] = $fileentry;
  168. $info['zip']['entries_count']++;
  169. $info['zip']['compressed_size'] += $fileentry['compressed_size'];
  170. $info['zip']['uncompressed_size'] += $fileentry['uncompressed_size'];
  171. }
  172. if ($info['zip']['entries_count'] == 0) {
  173. $this->error('No Local File Header entries found');
  174. return false;
  175. }
  176. return true;
  177. }
  178. /**
  179. * @return array|false
  180. */
  181. public function ZIPparseLocalFileHeader() {
  182. $LocalFileHeader['offset'] = $this->ftell();
  183. $ZIPlocalFileHeader = $this->fread(30);
  184. $LocalFileHeader['raw']['signature'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 0, 4));
  185. if ($LocalFileHeader['raw']['signature'] != 0x04034B50) { // "PK\x03\x04"
  186. // invalid Local File Header Signature
  187. $this->fseek($LocalFileHeader['offset']); // seek back to where filepointer originally was so it can be handled properly
  188. return false;
  189. }
  190. $LocalFileHeader['raw']['extract_version'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 4, 2));
  191. $LocalFileHeader['raw']['general_flags'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 6, 2));
  192. $LocalFileHeader['raw']['compression_method'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 8, 2));
  193. $LocalFileHeader['raw']['last_mod_file_time'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 10, 2));
  194. $LocalFileHeader['raw']['last_mod_file_date'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 12, 2));
  195. $LocalFileHeader['raw']['crc_32'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 14, 4));
  196. $LocalFileHeader['raw']['compressed_size'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 18, 4));
  197. $LocalFileHeader['raw']['uncompressed_size'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 22, 4));
  198. $LocalFileHeader['raw']['filename_length'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 26, 2));
  199. $LocalFileHeader['raw']['extra_field_length'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 28, 2));
  200. $LocalFileHeader['extract_version'] = sprintf('%1.1f', $LocalFileHeader['raw']['extract_version'] / 10);
  201. $LocalFileHeader['host_os'] = $this->ZIPversionOSLookup(($LocalFileHeader['raw']['extract_version'] & 0xFF00) >> 8);
  202. $LocalFileHeader['compression_method'] = $this->ZIPcompressionMethodLookup($LocalFileHeader['raw']['compression_method']);
  203. $LocalFileHeader['compressed_size'] = $LocalFileHeader['raw']['compressed_size'];
  204. $LocalFileHeader['uncompressed_size'] = $LocalFileHeader['raw']['uncompressed_size'];
  205. $LocalFileHeader['flags'] = $this->ZIPparseGeneralPurposeFlags($LocalFileHeader['raw']['general_flags'], $LocalFileHeader['raw']['compression_method']);
  206. $LocalFileHeader['last_modified_timestamp'] = $this->DOStime2UNIXtime($LocalFileHeader['raw']['last_mod_file_date'], $LocalFileHeader['raw']['last_mod_file_time']);
  207. $FilenameExtrafieldLength = $LocalFileHeader['raw']['filename_length'] + $LocalFileHeader['raw']['extra_field_length'];
  208. if ($FilenameExtrafieldLength > 0) {
  209. $ZIPlocalFileHeader .= $this->fread($FilenameExtrafieldLength);
  210. if ($LocalFileHeader['raw']['filename_length'] > 0) {
  211. $LocalFileHeader['filename'] = substr($ZIPlocalFileHeader, 30, $LocalFileHeader['raw']['filename_length']);
  212. }
  213. if ($LocalFileHeader['raw']['extra_field_length'] > 0) {
  214. $LocalFileHeader['raw']['extra_field_data'] = substr($ZIPlocalFileHeader, 30 + $LocalFileHeader['raw']['filename_length'], $LocalFileHeader['raw']['extra_field_length']);
  215. }
  216. }
  217. if ($LocalFileHeader['compressed_size'] == 0) {
  218. // *Could* be a zero-byte file
  219. // But could also be a file written on the fly that didn't know compressed filesize beforehand.
  220. // Correct compressed filesize should be in the data_descriptor located after this file data, and also in Central Directory (at end of zip file)
  221. if (!empty($this->getid3->info['zip']['central_directory'])) {
  222. foreach ($this->getid3->info['zip']['central_directory'] as $central_directory_entry) {
  223. if ($central_directory_entry['entry_offset'] == $LocalFileHeader['offset']) {
  224. if ($central_directory_entry['compressed_size'] > 0) {
  225. // overwrite local zero value (but not ['raw']'compressed_size']) so that seeking for data_descriptor (and next file entry) works correctly
  226. $LocalFileHeader['compressed_size'] = $central_directory_entry['compressed_size'];
  227. }
  228. break;
  229. }
  230. }
  231. }
  232. }
  233. $LocalFileHeader['data_offset'] = $this->ftell();
  234. $this->fseek($LocalFileHeader['compressed_size'], SEEK_CUR); // this should (but may not) match value in $LocalFileHeader['raw']['compressed_size'] -- $LocalFileHeader['compressed_size'] could have been overwritten above with value from Central Directory
  235. if ($LocalFileHeader['flags']['data_descriptor_used']) {
  236. $DataDescriptor = $this->fread(16);
  237. $LocalFileHeader['data_descriptor']['signature'] = getid3_lib::LittleEndian2Int(substr($DataDescriptor, 0, 4));
  238. if ($LocalFileHeader['data_descriptor']['signature'] != 0x08074B50) { // "PK\x07\x08"
  239. $this->getid3->warning('invalid Local File Header Data Descriptor Signature at offset '.($this->ftell() - 16).' - expecting 08 07 4B 50, found '.getid3_lib::PrintHexBytes($LocalFileHeader['data_descriptor']['signature']));
  240. $this->fseek($LocalFileHeader['offset']); // seek back to where filepointer originally was so it can be handled properly
  241. return false;
  242. }
  243. $LocalFileHeader['data_descriptor']['crc_32'] = getid3_lib::LittleEndian2Int(substr($DataDescriptor, 4, 4));
  244. $LocalFileHeader['data_descriptor']['compressed_size'] = getid3_lib::LittleEndian2Int(substr($DataDescriptor, 8, 4));
  245. $LocalFileHeader['data_descriptor']['uncompressed_size'] = getid3_lib::LittleEndian2Int(substr($DataDescriptor, 12, 4));
  246. if (!$LocalFileHeader['raw']['compressed_size'] && $LocalFileHeader['data_descriptor']['compressed_size']) {
  247. foreach ($this->getid3->info['zip']['central_directory'] as $central_directory_entry) {
  248. if ($central_directory_entry['entry_offset'] == $LocalFileHeader['offset']) {
  249. if ($LocalFileHeader['data_descriptor']['compressed_size'] == $central_directory_entry['compressed_size']) {
  250. // $LocalFileHeader['compressed_size'] already set from Central Directory
  251. } else {
  252. $this->warning('conflicting compressed_size from data_descriptor ('.$LocalFileHeader['data_descriptor']['compressed_size'].') vs Central Directory ('.$central_directory_entry['compressed_size'].') for file at offset '.$LocalFileHeader['offset']);
  253. }
  254. if ($LocalFileHeader['data_descriptor']['uncompressed_size'] == $central_directory_entry['uncompressed_size']) {
  255. $LocalFileHeader['uncompressed_size'] = $LocalFileHeader['data_descriptor']['uncompressed_size'];
  256. } else {
  257. $this->warning('conflicting uncompressed_size from data_descriptor ('.$LocalFileHeader['data_descriptor']['uncompressed_size'].') vs Central Directory ('.$central_directory_entry['uncompressed_size'].') for file at offset '.$LocalFileHeader['offset']);
  258. }
  259. break;
  260. }
  261. }
  262. }
  263. }
  264. return $LocalFileHeader;
  265. }
  266. /**
  267. * @return array|false
  268. */
  269. public function ZIPparseCentralDirectory() {
  270. $CentralDirectory['offset'] = $this->ftell();
  271. $ZIPcentralDirectory = $this->fread(46);
  272. $CentralDirectory['raw']['signature'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 0, 4));
  273. if ($CentralDirectory['raw']['signature'] != 0x02014B50) {
  274. // invalid Central Directory Signature
  275. $this->fseek($CentralDirectory['offset']); // seek back to where filepointer originally was so it can be handled properly
  276. return false;
  277. }
  278. $CentralDirectory['raw']['create_version'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 4, 2));
  279. $CentralDirectory['raw']['extract_version'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 6, 2));
  280. $CentralDirectory['raw']['general_flags'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 8, 2));
  281. $CentralDirectory['raw']['compression_method'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 10, 2));
  282. $CentralDirectory['raw']['last_mod_file_time'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 12, 2));
  283. $CentralDirectory['raw']['last_mod_file_date'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 14, 2));
  284. $CentralDirectory['raw']['crc_32'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 16, 4));
  285. $CentralDirectory['raw']['compressed_size'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 20, 4));
  286. $CentralDirectory['raw']['uncompressed_size'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 24, 4));
  287. $CentralDirectory['raw']['filename_length'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 28, 2));
  288. $CentralDirectory['raw']['extra_field_length'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 30, 2));
  289. $CentralDirectory['raw']['file_comment_length'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 32, 2));
  290. $CentralDirectory['raw']['disk_number_start'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 34, 2));
  291. $CentralDirectory['raw']['internal_file_attrib'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 36, 2));
  292. $CentralDirectory['raw']['external_file_attrib'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 38, 4));
  293. $CentralDirectory['raw']['local_header_offset'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 42, 4));
  294. $CentralDirectory['entry_offset'] = $CentralDirectory['raw']['local_header_offset'];
  295. $CentralDirectory['create_version'] = sprintf('%1.1f', $CentralDirectory['raw']['create_version'] / 10);
  296. $CentralDirectory['extract_version'] = sprintf('%1.1f', $CentralDirectory['raw']['extract_version'] / 10);
  297. $CentralDirectory['host_os'] = $this->ZIPversionOSLookup(($CentralDirectory['raw']['extract_version'] & 0xFF00) >> 8);
  298. $CentralDirectory['compression_method'] = $this->ZIPcompressionMethodLookup($CentralDirectory['raw']['compression_method']);
  299. $CentralDirectory['compressed_size'] = $CentralDirectory['raw']['compressed_size'];
  300. $CentralDirectory['uncompressed_size'] = $CentralDirectory['raw']['uncompressed_size'];
  301. $CentralDirectory['flags'] = $this->ZIPparseGeneralPurposeFlags($CentralDirectory['raw']['general_flags'], $CentralDirectory['raw']['compression_method']);
  302. $CentralDirectory['last_modified_timestamp'] = $this->DOStime2UNIXtime($CentralDirectory['raw']['last_mod_file_date'], $CentralDirectory['raw']['last_mod_file_time']);
  303. $FilenameExtrafieldCommentLength = $CentralDirectory['raw']['filename_length'] + $CentralDirectory['raw']['extra_field_length'] + $CentralDirectory['raw']['file_comment_length'];
  304. if ($FilenameExtrafieldCommentLength > 0) {
  305. $FilenameExtrafieldComment = $this->fread($FilenameExtrafieldCommentLength);
  306. if ($CentralDirectory['raw']['filename_length'] > 0) {
  307. $CentralDirectory['filename'] = substr($FilenameExtrafieldComment, 0, $CentralDirectory['raw']['filename_length']);
  308. }
  309. if ($CentralDirectory['raw']['extra_field_length'] > 0) {
  310. $CentralDirectory['raw']['extra_field_data'] = substr($FilenameExtrafieldComment, $CentralDirectory['raw']['filename_length'], $CentralDirectory['raw']['extra_field_length']);
  311. }
  312. if ($CentralDirectory['raw']['file_comment_length'] > 0) {
  313. $CentralDirectory['file_comment'] = substr($FilenameExtrafieldComment, $CentralDirectory['raw']['filename_length'] + $CentralDirectory['raw']['extra_field_length'], $CentralDirectory['raw']['file_comment_length']);
  314. }
  315. }
  316. return $CentralDirectory;
  317. }
  318. /**
  319. * @return array|false
  320. */
  321. public function ZIPparseEndOfCentralDirectory() {
  322. $EndOfCentralDirectory['offset'] = $this->ftell();
  323. $ZIPendOfCentralDirectory = $this->fread(22);
  324. $EndOfCentralDirectory['signature'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 0, 4));
  325. if ($EndOfCentralDirectory['signature'] != 0x06054B50) {
  326. // invalid End Of Central Directory Signature
  327. $this->fseek($EndOfCentralDirectory['offset']); // seek back to where filepointer originally was so it can be handled properly
  328. return false;
  329. }
  330. $EndOfCentralDirectory['disk_number_current'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 4, 2));
  331. $EndOfCentralDirectory['disk_number_start_directory'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 6, 2));
  332. $EndOfCentralDirectory['directory_entries_this_disk'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 8, 2));
  333. $EndOfCentralDirectory['directory_entries_total'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 10, 2));
  334. $EndOfCentralDirectory['directory_size'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 12, 4));
  335. $EndOfCentralDirectory['directory_offset'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 16, 4));
  336. $EndOfCentralDirectory['comment_length'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 20, 2));
  337. if ($EndOfCentralDirectory['comment_length'] > 0) {
  338. $EndOfCentralDirectory['comment'] = $this->fread($EndOfCentralDirectory['comment_length']);
  339. }
  340. return $EndOfCentralDirectory;
  341. }
  342. /**
  343. * @param int $flagbytes
  344. * @param int $compressionmethod
  345. *
  346. * @return array
  347. */
  348. public static function ZIPparseGeneralPurposeFlags($flagbytes, $compressionmethod) {
  349. // https://users.cs.jmu.edu/buchhofp/forensics/formats/pkzip-printable.html
  350. $ParsedFlags = array();
  351. $ParsedFlags['encrypted'] = (bool) ($flagbytes & 0x0001);
  352. // 0x0002 -- see below
  353. // 0x0004 -- see below
  354. $ParsedFlags['data_descriptor_used'] = (bool) ($flagbytes & 0x0008);
  355. $ParsedFlags['enhanced_deflation'] = (bool) ($flagbytes & 0x0010);
  356. $ParsedFlags['compressed_patched_data'] = (bool) ($flagbytes & 0x0020);
  357. $ParsedFlags['strong_encryption'] = (bool) ($flagbytes & 0x0040);
  358. // 0x0080 - unused
  359. // 0x0100 - unused
  360. // 0x0200 - unused
  361. // 0x0400 - unused
  362. $ParsedFlags['language_encoding'] = (bool) ($flagbytes & 0x0800);
  363. // 0x1000 - reserved
  364. $ParsedFlags['mask_header_values'] = (bool) ($flagbytes & 0x2000);
  365. // 0x4000 - reserved
  366. // 0x8000 - reserved
  367. switch ($compressionmethod) {
  368. case 6:
  369. $ParsedFlags['dictionary_size'] = (($flagbytes & 0x0002) ? 8192 : 4096);
  370. $ParsedFlags['shannon_fano_trees'] = (($flagbytes & 0x0004) ? 3 : 2);
  371. break;
  372. case 8:
  373. case 9:
  374. switch (($flagbytes & 0x0006) >> 1) {
  375. case 0:
  376. $ParsedFlags['compression_speed'] = 'normal';
  377. break;
  378. case 1:
  379. $ParsedFlags['compression_speed'] = 'maximum';
  380. break;
  381. case 2:
  382. $ParsedFlags['compression_speed'] = 'fast';
  383. break;
  384. case 3:
  385. $ParsedFlags['compression_speed'] = 'superfast';
  386. break;
  387. }
  388. break;
  389. }
  390. return $ParsedFlags;
  391. }
  392. /**
  393. * @param int $index
  394. *
  395. * @return string
  396. */
  397. public static function ZIPversionOSLookup($index) {
  398. static $ZIPversionOSLookup = array(
  399. 0 => 'MS-DOS and OS/2 (FAT / VFAT / FAT32 file systems)',
  400. 1 => 'Amiga',
  401. 2 => 'OpenVMS',
  402. 3 => 'Unix',
  403. 4 => 'VM/CMS',
  404. 5 => 'Atari ST',
  405. 6 => 'OS/2 H.P.F.S.',
  406. 7 => 'Macintosh',
  407. 8 => 'Z-System',
  408. 9 => 'CP/M',
  409. 10 => 'Windows NTFS',
  410. 11 => 'MVS',
  411. 12 => 'VSE',
  412. 13 => 'Acorn Risc',
  413. 14 => 'VFAT',
  414. 15 => 'Alternate MVS',
  415. 16 => 'BeOS',
  416. 17 => 'Tandem',
  417. 18 => 'OS/400',
  418. 19 => 'OS/X (Darwin)',
  419. );
  420. return (isset($ZIPversionOSLookup[$index]) ? $ZIPversionOSLookup[$index] : '[unknown]');
  421. }
  422. /**
  423. * @param int $index
  424. *
  425. * @return string
  426. */
  427. public static function ZIPcompressionMethodLookup($index) {
  428. // http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/ZIP.html
  429. static $ZIPcompressionMethodLookup = array(
  430. 0 => 'store',
  431. 1 => 'shrink',
  432. 2 => 'reduce-1',
  433. 3 => 'reduce-2',
  434. 4 => 'reduce-3',
  435. 5 => 'reduce-4',
  436. 6 => 'implode',
  437. 7 => 'tokenize',
  438. 8 => 'deflate',
  439. 9 => 'deflate64',
  440. 10 => 'Imploded (old IBM TERSE)',
  441. 11 => 'RESERVED[11]',
  442. 12 => 'BZIP2',
  443. 13 => 'RESERVED[13]',
  444. 14 => 'LZMA (EFS)',
  445. 15 => 'RESERVED[15]',
  446. 16 => 'RESERVED[16]',
  447. 17 => 'RESERVED[17]',
  448. 18 => 'IBM TERSE (new)',
  449. 19 => 'IBM LZ77 z Architecture (PFS)',
  450. 96 => 'JPEG recompressed',
  451. 97 => 'WavPack compressed',
  452. 98 => 'PPMd version I, Rev 1',
  453. );
  454. return (isset($ZIPcompressionMethodLookup[$index]) ? $ZIPcompressionMethodLookup[$index] : '[unknown]');
  455. }
  456. /**
  457. * @param int $DOSdate
  458. * @param int $DOStime
  459. *
  460. * @return int
  461. */
  462. public static function DOStime2UNIXtime($DOSdate, $DOStime) {
  463. // wFatDate
  464. // Specifies the MS-DOS date. The date is a packed 16-bit value with the following format:
  465. // Bits Contents
  466. // 0-4 Day of the month (1-31)
  467. // 5-8 Month (1 = January, 2 = February, and so on)
  468. // 9-15 Year offset from 1980 (add 1980 to get actual year)
  469. $UNIXday = ($DOSdate & 0x001F);
  470. $UNIXmonth = (($DOSdate & 0x01E0) >> 5);
  471. $UNIXyear = (($DOSdate & 0xFE00) >> 9) + 1980;
  472. // wFatTime
  473. // Specifies the MS-DOS time. The time is a packed 16-bit value with the following format:
  474. // Bits Contents
  475. // 0-4 Second divided by 2
  476. // 5-10 Minute (0-59)
  477. // 11-15 Hour (0-23 on a 24-hour clock)
  478. $UNIXsecond = ($DOStime & 0x001F) * 2;
  479. $UNIXminute = (($DOStime & 0x07E0) >> 5);
  480. $UNIXhour = (($DOStime & 0xF800) >> 11);
  481. return gmmktime($UNIXhour, $UNIXminute, $UNIXsecond, $UNIXmonth, $UNIXday, $UNIXyear);
  482. }
  483. }