Blame view

sources/3rdparty/getid3/module.archive.zip.php 25.8 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  /////////////////////////////////////////////////////////////////
  /// getID3() by James Heinrich <info@getid3.org>               //
  //  available at http://getid3.sourceforge.net                 //
  //            or http://www.getid3.org                         //
  /////////////////////////////////////////////////////////////////
  // See readme.txt for more details                             //
  /////////////////////////////////////////////////////////////////
  //                                                             //
  // module.archive.zip.php                                      //
  // module for analyzing pkZip files                            //
  // dependencies: NONE                                          //
  //                                                            ///
  /////////////////////////////////////////////////////////////////
  
  
  class getid3_zip extends getid3_handler
  {
31b7f2792   Kload   Upgrade to ownclo...
19
  	public function Analyze() {
03e52840d   Kload   Init
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  		$info = &$this->getid3->info;
  
  		$info['fileformat']      = 'zip';
  		$info['zip']['encoding'] = 'ISO-8859-1';
  		$info['zip']['files']    = array();
  
  		$info['zip']['compressed_size']   = 0;
  		$info['zip']['uncompressed_size'] = 0;
  		$info['zip']['entries_count']     = 0;
  
  		if (!getid3_lib::intValueSupported($info['filesize'])) {
  			$info['error'][] = 'File is larger than '.round(PHP_INT_MAX / 1073741824).'GB, not supported by PHP';
  			return false;
  		} else {
  			$EOCDsearchData    = '';
  			$EOCDsearchCounter = 0;
  			while ($EOCDsearchCounter++ < 512) {
  
  				fseek($this->getid3->fp, -128 * $EOCDsearchCounter, SEEK_END);
  				$EOCDsearchData = fread($this->getid3->fp, 128).$EOCDsearchData;
  
  				if (strstr($EOCDsearchData, 'PK'."\x05\x06")) {
  
  					$EOCDposition = strpos($EOCDsearchData, 'PK'."\x05\x06");
  					fseek($this->getid3->fp, (-128 * $EOCDsearchCounter) + $EOCDposition, SEEK_END);
  					$info['zip']['end_central_directory'] = $this->ZIPparseEndOfCentralDirectory();
  
  					fseek($this->getid3->fp, $info['zip']['end_central_directory']['directory_offset'], SEEK_SET);
  					$info['zip']['entries_count'] = 0;
  					while ($centraldirectoryentry = $this->ZIPparseCentralDirectory($this->getid3->fp)) {
  						$info['zip']['central_directory'][] = $centraldirectoryentry;
  						$info['zip']['entries_count']++;
  						$info['zip']['compressed_size']   += $centraldirectoryentry['compressed_size'];
  						$info['zip']['uncompressed_size'] += $centraldirectoryentry['uncompressed_size'];
31b7f2792   Kload   Upgrade to ownclo...
54
55
  						//if ($centraldirectoryentry['uncompressed_size'] > 0) { zero-byte files are valid
  						if (!empty($centraldirectoryentry['filename'])) {
03e52840d   Kload   Init
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  							$info['zip']['files'] = getid3_lib::array_merge_clobber($info['zip']['files'], getid3_lib::CreateDeepArray($centraldirectoryentry['filename'], '/', $centraldirectoryentry['uncompressed_size']));
  						}
  					}
  
  					if ($info['zip']['entries_count'] == 0) {
  						$info['error'][] = 'No Central Directory entries found (truncated file?)';
  						return false;
  					}
  
  					if (!empty($info['zip']['end_central_directory']['comment'])) {
  						$info['zip']['comments']['comment'][] = $info['zip']['end_central_directory']['comment'];
  					}
  
  					if (isset($info['zip']['central_directory'][0]['compression_method'])) {
  						$info['zip']['compression_method'] = $info['zip']['central_directory'][0]['compression_method'];
  					}
  					if (isset($info['zip']['central_directory'][0]['flags']['compression_speed'])) {
  						$info['zip']['compression_speed']  = $info['zip']['central_directory'][0]['flags']['compression_speed'];
  					}
  					if (isset($info['zip']['compression_method']) && ($info['zip']['compression_method'] == 'store') && !isset($info['zip']['compression_speed'])) {
  						$info['zip']['compression_speed']  = 'store';
  					}
31b7f2792   Kload   Upgrade to ownclo...
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  					// secondary check - we (should) already have all the info we NEED from the Central Directory above, but scanning each
  					// Local File Header entry will
  					foreach ($info['zip']['central_directory'] as $central_directory_entry) {
  						fseek($this->getid3->fp, $central_directory_entry['entry_offset'], SEEK_SET);
  						if ($fileentry = $this->ZIPparseLocalFileHeader()) {
  							$info['zip']['entries'][] = $fileentry;
  						} else {
  							$info['warning'][] = 'Error parsing Local File Header at offset '.$central_directory_entry['entry_offset'];
  						}
  					}
  
  					if (!empty($info['zip']['files']['[Content_Types].xml']) &&
  					    !empty($info['zip']['files']['_rels']['.rels'])      &&
  					    !empty($info['zip']['files']['docProps']['app.xml']) &&
  					    !empty($info['zip']['files']['docProps']['core.xml'])) {
  						   // http://technet.microsoft.com/en-us/library/cc179224.aspx
  						   $info['fileformat'] = 'zip.msoffice';
  						   if (!empty($ThisFileInfo['zip']['files']['ppt'])) {
  						      $info['mime_type'] = 'application/vnd.openxmlformats-officedocument.presentationml.presentation';
  						   } elseif (!empty($ThisFileInfo['zip']['files']['xl'])) {
  						      $info['mime_type'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
  						   } elseif (!empty($ThisFileInfo['zip']['files']['word'])) {
  						      $info['mime_type'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
  						   }
  					}
03e52840d   Kload   Init
103

31b7f2792   Kload   Upgrade to ownclo...
104
  					return true;
03e52840d   Kload   Init
105
106
107
  				}
  			}
  		}
31b7f2792   Kload   Upgrade to ownclo...
108
  		if (!$this->getZIPentriesFilepointer()) {
03e52840d   Kload   Init
109
110
111
112
  			unset($info['zip']);
  			$info['fileformat'] = '';
  			$info['error'][] = 'Cannot find End Of Central Directory (truncated file?)';
  			return false;
31b7f2792   Kload   Upgrade to ownclo...
113
  		}
03e52840d   Kload   Init
114

31b7f2792   Kload   Upgrade to ownclo...
115
116
117
118
  		// central directory couldn't be found and/or parsed
  		// scan through actual file data entries, recover as much as possible from probable trucated file
  		if ($info['zip']['compressed_size'] > ($info['filesize'] - 46 - 22)) {
  			$info['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)';
03e52840d   Kload   Init
119
  		}
31b7f2792   Kload   Upgrade to ownclo...
120
121
122
123
124
  		$info['error'][] = 'Cannot find End Of Central Directory - returned list of files in [zip][entries] array may not be complete';
  		foreach ($info['zip']['entries'] as $key => $valuearray) {
  			$info['zip']['files'][$valuearray['filename']] = $valuearray['uncompressed_size'];
  		}
  		return true;
03e52840d   Kload   Init
125
  	}
31b7f2792   Kload   Upgrade to ownclo...
126
  	public function getZIPHeaderFilepointerTopDown() {
03e52840d   Kload   Init
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  		$info = &$this->getid3->info;
  
  		$info['fileformat'] = 'zip';
  
  		$info['zip']['compressed_size']   = 0;
  		$info['zip']['uncompressed_size'] = 0;
  		$info['zip']['entries_count']     = 0;
  
  		rewind($this->getid3->fp);
  		while ($fileentry = $this->ZIPparseLocalFileHeader()) {
  			$info['zip']['entries'][] = $fileentry;
  			$info['zip']['entries_count']++;
  		}
  		if ($info['zip']['entries_count'] == 0) {
  			$info['error'][] = 'No Local File Header entries found';
  			return false;
  		}
  
  		$info['zip']['entries_count']     = 0;
  		while ($centraldirectoryentry = $this->ZIPparseCentralDirectory($this->getid3->fp)) {
  			$info['zip']['central_directory'][] = $centraldirectoryentry;
  			$info['zip']['entries_count']++;
  			$info['zip']['compressed_size']   += $centraldirectoryentry['compressed_size'];
  			$info['zip']['uncompressed_size'] += $centraldirectoryentry['uncompressed_size'];
  		}
  		if ($info['zip']['entries_count'] == 0) {
  			$info['error'][] = 'No Central Directory entries found (truncated file?)';
  			return false;
  		}
  
  		if ($EOCD = $this->ZIPparseEndOfCentralDirectory()) {
  			$info['zip']['end_central_directory'] = $EOCD;
  		} else {
  			$info['error'][] = 'No End Of Central Directory entry found (truncated file?)';
  			return false;
  		}
  
  		if (!empty($info['zip']['end_central_directory']['comment'])) {
  			$info['zip']['comments']['comment'][] = $info['zip']['end_central_directory']['comment'];
  		}
  
  		return true;
  	}
31b7f2792   Kload   Upgrade to ownclo...
170
  	public function getZIPentriesFilepointer() {
03e52840d   Kload   Init
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
  		$info = &$this->getid3->info;
  
  		$info['zip']['compressed_size']   = 0;
  		$info['zip']['uncompressed_size'] = 0;
  		$info['zip']['entries_count']     = 0;
  
  		rewind($this->getid3->fp);
  		while ($fileentry = $this->ZIPparseLocalFileHeader()) {
  			$info['zip']['entries'][] = $fileentry;
  			$info['zip']['entries_count']++;
  			$info['zip']['compressed_size']   += $fileentry['compressed_size'];
  			$info['zip']['uncompressed_size'] += $fileentry['uncompressed_size'];
  		}
  		if ($info['zip']['entries_count'] == 0) {
  			$info['error'][] = 'No Local File Header entries found';
  			return false;
  		}
  
  		return true;
  	}
31b7f2792   Kload   Upgrade to ownclo...
191
  	public function ZIPparseLocalFileHeader() {
03e52840d   Kload   Init
192
193
194
195
196
  		$LocalFileHeader['offset'] = ftell($this->getid3->fp);
  
  		$ZIPlocalFileHeader = fread($this->getid3->fp, 30);
  
  		$LocalFileHeader['raw']['signature']          = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader,  0, 4));
31b7f2792   Kload   Upgrade to ownclo...
197
  		if ($LocalFileHeader['raw']['signature'] != 0x04034B50) { // "PK\x03\x04"
03e52840d   Kload   Init
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
  			// invalid Local File Header Signature
  			fseek($this->getid3->fp, $LocalFileHeader['offset'], SEEK_SET); // seek back to where filepointer originally was so it can be handled properly
  			return false;
  		}
  		$LocalFileHeader['raw']['extract_version']    = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader,  4, 2));
  		$LocalFileHeader['raw']['general_flags']      = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader,  6, 2));
  		$LocalFileHeader['raw']['compression_method'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader,  8, 2));
  		$LocalFileHeader['raw']['last_mod_file_time'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 10, 2));
  		$LocalFileHeader['raw']['last_mod_file_date'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 12, 2));
  		$LocalFileHeader['raw']['crc_32']             = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 14, 4));
  		$LocalFileHeader['raw']['compressed_size']    = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 18, 4));
  		$LocalFileHeader['raw']['uncompressed_size']  = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 22, 4));
  		$LocalFileHeader['raw']['filename_length']    = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 26, 2));
  		$LocalFileHeader['raw']['extra_field_length'] = getid3_lib::LittleEndian2Int(substr($ZIPlocalFileHeader, 28, 2));
  
  		$LocalFileHeader['extract_version']           = sprintf('%1.1f', $LocalFileHeader['raw']['extract_version'] / 10);
  		$LocalFileHeader['host_os']                   = $this->ZIPversionOSLookup(($LocalFileHeader['raw']['extract_version'] & 0xFF00) >> 8);
  		$LocalFileHeader['compression_method']        = $this->ZIPcompressionMethodLookup($LocalFileHeader['raw']['compression_method']);
  		$LocalFileHeader['compressed_size']           = $LocalFileHeader['raw']['compressed_size'];
  		$LocalFileHeader['uncompressed_size']         = $LocalFileHeader['raw']['uncompressed_size'];
  		$LocalFileHeader['flags']                     = $this->ZIPparseGeneralPurposeFlags($LocalFileHeader['raw']['general_flags'], $LocalFileHeader['raw']['compression_method']);
  		$LocalFileHeader['last_modified_timestamp']   = $this->DOStime2UNIXtime($LocalFileHeader['raw']['last_mod_file_date'], $LocalFileHeader['raw']['last_mod_file_time']);
  
  		$FilenameExtrafieldLength = $LocalFileHeader['raw']['filename_length'] + $LocalFileHeader['raw']['extra_field_length'];
  		if ($FilenameExtrafieldLength > 0) {
  			$ZIPlocalFileHeader .= fread($this->getid3->fp, $FilenameExtrafieldLength);
  
  			if ($LocalFileHeader['raw']['filename_length'] > 0) {
  				$LocalFileHeader['filename']                = substr($ZIPlocalFileHeader, 30, $LocalFileHeader['raw']['filename_length']);
  			}
  			if ($LocalFileHeader['raw']['extra_field_length'] > 0) {
  				$LocalFileHeader['raw']['extra_field_data'] = substr($ZIPlocalFileHeader, 30 + $LocalFileHeader['raw']['filename_length'], $LocalFileHeader['raw']['extra_field_length']);
  			}
  		}
31b7f2792   Kload   Upgrade to ownclo...
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
  		if ($LocalFileHeader['compressed_size'] == 0) {
  			// *Could* be a zero-byte file
  			// But could also be a file written on the fly that didn't know compressed filesize beforehand.
  			// Correct compressed filesize should be in the data_descriptor located after this file data, and also in Central Directory (at end of zip file)
  			if (!empty($this->getid3->info['zip']['central_directory'])) {
  				foreach ($this->getid3->info['zip']['central_directory'] as $central_directory_entry) {
  					if ($central_directory_entry['entry_offset'] == $LocalFileHeader['offset']) {
  						if ($central_directory_entry['compressed_size'] > 0) {
  							// overwrite local zero value (but not ['raw']'compressed_size']) so that seeking for data_descriptor (and next file entry) works correctly
  							$LocalFileHeader['compressed_size'] = $central_directory_entry['compressed_size'];
  						}
  						break;
  					}
  				}
  			}
  
  		}
03e52840d   Kload   Init
249
  		$LocalFileHeader['data_offset'] = ftell($this->getid3->fp);
31b7f2792   Kload   Upgrade to ownclo...
250
  		fseek($this->getid3->fp, $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
03e52840d   Kload   Init
251
252
  
  		if ($LocalFileHeader['flags']['data_descriptor_used']) {
31b7f2792   Kload   Upgrade to ownclo...
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
  			$DataDescriptor = fread($this->getid3->fp, 16);
  			$LocalFileHeader['data_descriptor']['signature']         = getid3_lib::LittleEndian2Int(substr($DataDescriptor,  0, 4));
  			if ($LocalFileHeader['data_descriptor']['signature'] != 0x08074B50) { // "PK\x07\x08"
  				$this->getid3->warning[] = 'invalid Local File Header Data Descriptor Signature at offset '.(ftell($this->getid3->fp) - 16).' - expecting 08 07 4B 50, found '.getid3_lib::PrintHexBytes($LocalFileHeader['data_descriptor']['signature']);
  				fseek($this->getid3->fp, $LocalFileHeader['offset'], SEEK_SET); // seek back to where filepointer originally was so it can be handled properly
  				return false;
  			}
  			$LocalFileHeader['data_descriptor']['crc_32']            = getid3_lib::LittleEndian2Int(substr($DataDescriptor,  4, 4));
  			$LocalFileHeader['data_descriptor']['compressed_size']   = getid3_lib::LittleEndian2Int(substr($DataDescriptor,  8, 4));
  			$LocalFileHeader['data_descriptor']['uncompressed_size'] = getid3_lib::LittleEndian2Int(substr($DataDescriptor, 12, 4));
  			if (!$LocalFileHeader['raw']['compressed_size'] && $LocalFileHeader['data_descriptor']['compressed_size']) {
  				foreach ($this->getid3->info['zip']['central_directory'] as $central_directory_entry) {
  					if ($central_directory_entry['entry_offset'] == $LocalFileHeader['offset']) {
  						if ($LocalFileHeader['data_descriptor']['compressed_size'] == $central_directory_entry['compressed_size']) {
  							// $LocalFileHeader['compressed_size'] already set from Central Directory
  						} else {
  							$this->getid3->info['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'];
  						}
03e52840d   Kload   Init
271

31b7f2792   Kload   Upgrade to ownclo...
272
273
274
275
276
277
278
279
280
281
  						if ($LocalFileHeader['data_descriptor']['uncompressed_size'] == $central_directory_entry['uncompressed_size']) {
  							$LocalFileHeader['uncompressed_size'] = $LocalFileHeader['data_descriptor']['uncompressed_size'];
  						} else {
  							$this->getid3->info['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'];
  						}
  						break;
  					}
  				}
  			}
  		}
03e52840d   Kload   Init
282
283
  		return $LocalFileHeader;
  	}
31b7f2792   Kload   Upgrade to ownclo...
284
  	public function ZIPparseCentralDirectory() {
03e52840d   Kload   Init
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
  		$CentralDirectory['offset'] = ftell($this->getid3->fp);
  
  		$ZIPcentralDirectory = fread($this->getid3->fp, 46);
  
  		$CentralDirectory['raw']['signature']            = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory,  0, 4));
  		if ($CentralDirectory['raw']['signature'] != 0x02014B50) {
  			// invalid Central Directory Signature
  			fseek($this->getid3->fp, $CentralDirectory['offset'], SEEK_SET); // seek back to where filepointer originally was so it can be handled properly
  			return false;
  		}
  		$CentralDirectory['raw']['create_version']       = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory,  4, 2));
  		$CentralDirectory['raw']['extract_version']      = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory,  6, 2));
  		$CentralDirectory['raw']['general_flags']        = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory,  8, 2));
  		$CentralDirectory['raw']['compression_method']   = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 10, 2));
  		$CentralDirectory['raw']['last_mod_file_time']   = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 12, 2));
  		$CentralDirectory['raw']['last_mod_file_date']   = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 14, 2));
  		$CentralDirectory['raw']['crc_32']               = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 16, 4));
  		$CentralDirectory['raw']['compressed_size']      = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 20, 4));
  		$CentralDirectory['raw']['uncompressed_size']    = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 24, 4));
  		$CentralDirectory['raw']['filename_length']      = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 28, 2));
  		$CentralDirectory['raw']['extra_field_length']   = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 30, 2));
  		$CentralDirectory['raw']['file_comment_length']  = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 32, 2));
  		$CentralDirectory['raw']['disk_number_start']    = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 34, 2));
  		$CentralDirectory['raw']['internal_file_attrib'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 36, 2));
  		$CentralDirectory['raw']['external_file_attrib'] = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 38, 4));
  		$CentralDirectory['raw']['local_header_offset']  = getid3_lib::LittleEndian2Int(substr($ZIPcentralDirectory, 42, 4));
  
  		$CentralDirectory['entry_offset']              = $CentralDirectory['raw']['local_header_offset'];
  		$CentralDirectory['create_version']            = sprintf('%1.1f', $CentralDirectory['raw']['create_version'] / 10);
  		$CentralDirectory['extract_version']           = sprintf('%1.1f', $CentralDirectory['raw']['extract_version'] / 10);
  		$CentralDirectory['host_os']                   = $this->ZIPversionOSLookup(($CentralDirectory['raw']['extract_version'] & 0xFF00) >> 8);
  		$CentralDirectory['compression_method']        = $this->ZIPcompressionMethodLookup($CentralDirectory['raw']['compression_method']);
  		$CentralDirectory['compressed_size']           = $CentralDirectory['raw']['compressed_size'];
  		$CentralDirectory['uncompressed_size']         = $CentralDirectory['raw']['uncompressed_size'];
  		$CentralDirectory['flags']                     = $this->ZIPparseGeneralPurposeFlags($CentralDirectory['raw']['general_flags'], $CentralDirectory['raw']['compression_method']);
  		$CentralDirectory['last_modified_timestamp']   = $this->DOStime2UNIXtime($CentralDirectory['raw']['last_mod_file_date'], $CentralDirectory['raw']['last_mod_file_time']);
  
  		$FilenameExtrafieldCommentLength = $CentralDirectory['raw']['filename_length'] + $CentralDirectory['raw']['extra_field_length'] + $CentralDirectory['raw']['file_comment_length'];
  		if ($FilenameExtrafieldCommentLength > 0) {
  			$FilenameExtrafieldComment = fread($this->getid3->fp, $FilenameExtrafieldCommentLength);
  
  			if ($CentralDirectory['raw']['filename_length'] > 0) {
  				$CentralDirectory['filename']                  = substr($FilenameExtrafieldComment, 0, $CentralDirectory['raw']['filename_length']);
  			}
  			if ($CentralDirectory['raw']['extra_field_length'] > 0) {
  				$CentralDirectory['raw']['extra_field_data']   = substr($FilenameExtrafieldComment, $CentralDirectory['raw']['filename_length'], $CentralDirectory['raw']['extra_field_length']);
  			}
  			if ($CentralDirectory['raw']['file_comment_length'] > 0) {
  				$CentralDirectory['file_comment']              = substr($FilenameExtrafieldComment, $CentralDirectory['raw']['filename_length'] + $CentralDirectory['raw']['extra_field_length'], $CentralDirectory['raw']['file_comment_length']);
  			}
  		}
  
  		return $CentralDirectory;
  	}
31b7f2792   Kload   Upgrade to ownclo...
339
  	public function ZIPparseEndOfCentralDirectory() {
03e52840d   Kload   Init
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  		$EndOfCentralDirectory['offset'] = ftell($this->getid3->fp);
  
  		$ZIPendOfCentralDirectory = fread($this->getid3->fp, 22);
  
  		$EndOfCentralDirectory['signature']                   = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory,  0, 4));
  		if ($EndOfCentralDirectory['signature'] != 0x06054B50) {
  			// invalid End Of Central Directory Signature
  			fseek($this->getid3->fp, $EndOfCentralDirectory['offset'], SEEK_SET); // seek back to where filepointer originally was so it can be handled properly
  			return false;
  		}
  		$EndOfCentralDirectory['disk_number_current']         = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory,  4, 2));
  		$EndOfCentralDirectory['disk_number_start_directory'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory,  6, 2));
  		$EndOfCentralDirectory['directory_entries_this_disk'] = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory,  8, 2));
  		$EndOfCentralDirectory['directory_entries_total']     = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 10, 2));
  		$EndOfCentralDirectory['directory_size']              = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 12, 4));
  		$EndOfCentralDirectory['directory_offset']            = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 16, 4));
  		$EndOfCentralDirectory['comment_length']              = getid3_lib::LittleEndian2Int(substr($ZIPendOfCentralDirectory, 20, 2));
  
  		if ($EndOfCentralDirectory['comment_length'] > 0) {
  			$EndOfCentralDirectory['comment']                 = fread($this->getid3->fp, $EndOfCentralDirectory['comment_length']);
  		}
  
  		return $EndOfCentralDirectory;
  	}
31b7f2792   Kload   Upgrade to ownclo...
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
  	public static function ZIPparseGeneralPurposeFlags($flagbytes, $compressionmethod) {
  		// https://users.cs.jmu.edu/buchhofp/forensics/formats/pkzip-printable.html
  		$ParsedFlags['encrypted']               = (bool) ($flagbytes & 0x0001);
  		//                                                             0x0002 -- see below
  		//                                                             0x0004 -- see below
  		$ParsedFlags['data_descriptor_used']    = (bool) ($flagbytes & 0x0008);
  		$ParsedFlags['enhanced_deflation']      = (bool) ($flagbytes & 0x0010);
  		$ParsedFlags['compressed_patched_data'] = (bool) ($flagbytes & 0x0020);
  		$ParsedFlags['strong_encryption']       = (bool) ($flagbytes & 0x0040);
  		//                                                             0x0080 - unused
  		//                                                             0x0100 - unused
  		//                                                             0x0200 - unused
  		//                                                             0x0400 - unused
  		$ParsedFlags['language_encoding']       = (bool) ($flagbytes & 0x0800);
  		//                                                             0x1000 - reserved
  		$ParsedFlags['mask_header_values']      = (bool) ($flagbytes & 0x2000);
  		//                                                             0x4000 - reserved
  		//                                                             0x8000 - reserved
03e52840d   Kload   Init
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
  
  		switch ($compressionmethod) {
  			case 6:
  				$ParsedFlags['dictionary_size']    = (($flagbytes & 0x0002) ? 8192 : 4096);
  				$ParsedFlags['shannon_fano_trees'] = (($flagbytes & 0x0004) ? 3    : 2);
  				break;
  
  			case 8:
  			case 9:
  				switch (($flagbytes & 0x0006) >> 1) {
  					case 0:
  						$ParsedFlags['compression_speed'] = 'normal';
  						break;
  					case 1:
  						$ParsedFlags['compression_speed'] = 'maximum';
  						break;
  					case 2:
  						$ParsedFlags['compression_speed'] = 'fast';
  						break;
  					case 3:
  						$ParsedFlags['compression_speed'] = 'superfast';
  						break;
  				}
  				break;
  		}
03e52840d   Kload   Init
407
408
409
  
  		return $ParsedFlags;
  	}
31b7f2792   Kload   Upgrade to ownclo...
410
  	public static function ZIPversionOSLookup($index) {
03e52840d   Kload   Init
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
  		static $ZIPversionOSLookup = array(
  			0  => 'MS-DOS and OS/2 (FAT / VFAT / FAT32 file systems)',
  			1  => 'Amiga',
  			2  => 'OpenVMS',
  			3  => 'Unix',
  			4  => 'VM/CMS',
  			5  => 'Atari ST',
  			6  => 'OS/2 H.P.F.S.',
  			7  => 'Macintosh',
  			8  => 'Z-System',
  			9  => 'CP/M',
  			10 => 'Windows NTFS',
  			11 => 'MVS',
  			12 => 'VSE',
  			13 => 'Acorn Risc',
  			14 => 'VFAT',
  			15 => 'Alternate MVS',
  			16 => 'BeOS',
31b7f2792   Kload   Upgrade to ownclo...
429
430
431
  			17 => 'Tandem',
  			18 => 'OS/400',
  			19 => 'OS/X (Darwin)',
03e52840d   Kload   Init
432
433
434
435
  		);
  
  		return (isset($ZIPversionOSLookup[$index]) ? $ZIPversionOSLookup[$index] : '[unknown]');
  	}
31b7f2792   Kload   Upgrade to ownclo...
436
437
  	public static function ZIPcompressionMethodLookup($index) {
  		// http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/ZIP.html
03e52840d   Kload   Init
438
439
440
441
442
443
444
445
446
447
448
  		static $ZIPcompressionMethodLookup = array(
  			0  => 'store',
  			1  => 'shrink',
  			2  => 'reduce-1',
  			3  => 'reduce-2',
  			4  => 'reduce-3',
  			5  => 'reduce-4',
  			6  => 'implode',
  			7  => 'tokenize',
  			8  => 'deflate',
  			9  => 'deflate64',
31b7f2792   Kload   Upgrade to ownclo...
449
450
451
452
453
454
455
456
457
458
459
460
461
  			10 => 'Imploded (old IBM TERSE)',
  			11 => 'RESERVED[11]',
  			12 => 'BZIP2',
  			13 => 'RESERVED[13]',
  			14 => 'LZMA (EFS)',
  			15 => 'RESERVED[15]',
  			16 => 'RESERVED[16]',
  			17 => 'RESERVED[17]',
  			18 => 'IBM TERSE (new)',
  			19 => 'IBM LZ77 z Architecture (PFS)',
  			96 => 'JPEG recompressed',
  			97 => 'WavPack compressed',
  			98 => 'PPMd version I, Rev 1',
03e52840d   Kload   Init
462
463
464
465
  		);
  
  		return (isset($ZIPcompressionMethodLookup[$index]) ? $ZIPcompressionMethodLookup[$index] : '[unknown]');
  	}
31b7f2792   Kload   Upgrade to ownclo...
466
  	public static function DOStime2UNIXtime($DOSdate, $DOStime) {
03e52840d   Kload   Init
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
  		// wFatDate
  		// Specifies the MS-DOS date. The date is a packed 16-bit value with the following format:
  		// Bits      Contents
  		// 0-4    Day of the month (1-31)
  		// 5-8    Month (1 = January, 2 = February, and so on)
  		// 9-15   Year offset from 1980 (add 1980 to get actual year)
  
  		$UNIXday    =  ($DOSdate & 0x001F);
  		$UNIXmonth  = (($DOSdate & 0x01E0) >> 5);
  		$UNIXyear   = (($DOSdate & 0xFE00) >> 9) + 1980;
  
  		// wFatTime
  		// Specifies the MS-DOS time. The time is a packed 16-bit value with the following format:
  		// Bits   Contents
  		// 0-4    Second divided by 2
  		// 5-10   Minute (0-59)
  		// 11-15  Hour (0-23 on a 24-hour clock)
  
  		$UNIXsecond =  ($DOStime & 0x001F) * 2;
  		$UNIXminute = (($DOStime & 0x07E0) >> 5);
  		$UNIXhour   = (($DOStime & 0xF800) >> 11);
  
  		return gmmktime($UNIXhour, $UNIXminute, $UNIXsecond, $UNIXmonth, $UNIXday, $UNIXyear);
  	}
  
  }