Skip to content

Latest commit

 

History

History
1486 lines (1211 loc) · 44.8 KB

archiver_zip.c

File metadata and controls

1486 lines (1211 loc) · 44.8 KB
 
Jul 7, 2001
Jul 7, 2001
1
2
3
/*
* ZIP support routines for PhysicsFS.
*
Mar 11, 2007
Mar 11, 2007
4
* Please see the file LICENSE.txt in the source's root directory.
Jul 7, 2001
Jul 7, 2001
5
*
Jul 13, 2002
Jul 13, 2002
6
7
* This file written by Ryan C. Gordon, with some peeking at "unzip.c"
* by Gilles Vollant.
Jul 7, 2001
Jul 7, 2001
8
9
*/
May 10, 2002
May 10, 2002
10
11
#if (defined PHYSFS_SUPPORTS_ZIP)
Jul 7, 2001
Jul 7, 2001
12
13
#include <stdio.h>
#include <stdlib.h>
Jul 15, 2001
Jul 15, 2001
14
#include <string.h>
May 18, 2003
May 18, 2003
15
#ifndef _WIN32_WCE
Jul 13, 2002
Jul 13, 2002
16
#include <errno.h>
Nov 22, 2002
Nov 22, 2002
17
#include <time.h>
May 18, 2003
May 18, 2003
18
#endif
Jul 13, 2002
Jul 13, 2002
19
20
#include "physfs.h"
#include "zlib.h"
Jul 7, 2001
Jul 7, 2001
21
22
23
24
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Jul 13, 2002
Jul 13, 2002
25
/*
Mar 14, 2005
Mar 14, 2005
26
27
* A buffer of ZIP_READBUFSIZE is allocated for each compressed file opened,
* and is freed when you close the file; compressed data is read into
Jul 13, 2002
Jul 13, 2002
28
29
30
31
32
33
34
35
36
37
38
* this buffer, and then is decompressed into the buffer passed to
* PHYSFS_read().
*
* Uncompressed entries in a zipfile do not allocate this buffer; they just
* read data directly into the buffer passed to PHYSFS_read().
*
* Depending on your speed and memory requirements, you should tweak this
* value.
*/
#define ZIP_READBUFSIZE (16 * 1024)
Jul 23, 2002
Jul 23, 2002
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Entries are "unresolved" until they are first opened. At that time,
* local file headers parsed/validated, data offsets will be updated to look
* at the actual file data instead of the header, and symlinks will be
* followed and optimized. This means that we don't seek and read around the
* archive until forced to do so, and after the first time, we had to do
* less reading and parsing, which is very CD-ROM friendly.
*/
typedef enum
{
ZIP_UNRESOLVED_FILE,
ZIP_UNRESOLVED_SYMLINK,
ZIP_RESOLVING,
ZIP_RESOLVED,
ZIP_BROKEN_FILE,
Jan 31, 2003
Jan 31, 2003
55
ZIP_BROKEN_SYMLINK
Jul 23, 2002
Jul 23, 2002
56
57
58
} ZipResolveType;
Jul 13, 2002
Jul 13, 2002
59
60
61
/*
* One ZIPentry is kept for each file in an open ZIP archive.
*/
Jul 23, 2002
Jul 23, 2002
62
typedef struct _ZIPentry
Jul 15, 2001
Jul 15, 2001
63
{
Jul 23, 2002
Jul 23, 2002
64
65
66
67
68
69
70
71
72
73
74
char *name; /* Name of file in archive */
struct _ZIPentry *symlink; /* NULL or file we symlink to */
ZipResolveType resolved; /* Have we resolved file/symlink? */
PHYSFS_uint32 offset; /* offset of data in archive */
PHYSFS_uint16 version; /* version made by */
PHYSFS_uint16 version_needed; /* version needed to extract */
PHYSFS_uint16 compression_method; /* compression method */
PHYSFS_uint32 crc; /* crc-32 */
PHYSFS_uint32 compressed_size; /* compressed size */
PHYSFS_uint32 uncompressed_size; /* uncompressed size */
PHYSFS_sint64 last_mod_time; /* last file mod time */
Jul 28, 2001
Jul 28, 2001
75
76
} ZIPentry;
Jul 13, 2002
Jul 13, 2002
77
78
79
/*
* One ZIPinfo is kept for each open ZIP archive.
*/
Jul 28, 2001
Jul 28, 2001
80
81
typedef struct
{
Jul 13, 2002
Jul 13, 2002
82
83
84
char *archiveName; /* path to ZIP in platform-dependent notation. */
PHYSFS_uint16 entryCount; /* Number of files in ZIP. */
ZIPentry *entries; /* info on all files in ZIP. */
Jul 15, 2001
Jul 15, 2001
85
86
} ZIPinfo;
Jul 13, 2002
Jul 13, 2002
87
88
89
/*
* One ZIPfileinfo is kept for each open file in a ZIP archive.
*/
Jul 15, 2001
Jul 15, 2001
90
91
typedef struct
{
Jul 13, 2002
Jul 13, 2002
92
93
94
95
96
97
ZIPentry *entry; /* Info on file. */
void *handle; /* physical file handle. */
PHYSFS_uint32 compressed_position; /* offset in compressed data. */
PHYSFS_uint32 uncompressed_position; /* tell() position. */
PHYSFS_uint8 *buffer; /* decompression buffer. */
z_stream stream; /* zlib stream state. */
Jul 15, 2001
Jul 15, 2001
98
99
100
} ZIPfileinfo;
Jul 13, 2002
Jul 13, 2002
101
102
103
104
105
106
107
108
109
110
/* Magic numbers... */
#define ZIP_LOCAL_FILE_SIG 0x04034b50
#define ZIP_CENTRAL_DIR_SIG 0x02014b50
#define ZIP_END_OF_CENTRAL_DIR_SIG 0x06054b50
/* compression methods... */
#define COMPMETH_NONE 0
/* ...and others... */
Jul 15, 2002
Jul 15, 2002
111
112
113
114
#define UNIX_FILETYPE_MASK 0170000
#define UNIX_FILETYPE_SYMLINK 0120000
Sep 23, 2004
Sep 23, 2004
115
116
117
118
119
/*
* Bridge physfs allocation functions to zlib's format...
*/
static voidpf zlibPhysfsAlloc(voidpf opaque, uInt items, uInt size)
{
Jan 28, 2010
Jan 28, 2010
120
return ((PHYSFS_Allocator *) opaque)->Malloc(items * size);
Sep 23, 2004
Sep 23, 2004
121
122
123
124
125
126
127
} /* zlibPhysfsAlloc */
/*
* Bridge physfs allocation functions to zlib's format...
*/
static void zlibPhysfsFree(voidpf opaque, voidpf address)
{
Mar 14, 2005
Mar 14, 2005
128
((PHYSFS_Allocator *) opaque)->Free(address);
Sep 23, 2004
Sep 23, 2004
129
130
131
132
133
134
135
136
137
138
139
} /* zlibPhysfsFree */
/*
* Construct a new z_stream to a sane state.
*/
static void initializeZStream(z_stream *pstr)
{
memset(pstr, '\0', sizeof (z_stream));
pstr->zalloc = zlibPhysfsAlloc;
pstr->zfree = zlibPhysfsFree;
Mar 14, 2005
Mar 14, 2005
140
pstr->opaque = &allocator;
Sep 23, 2004
Sep 23, 2004
141
142
143
} /* initializeZStream */
Jul 28, 2002
Jul 28, 2002
144
static const char *zlib_error_string(int rc)
Jul 13, 2002
Jul 13, 2002
145
146
147
{
switch (rc)
{
Jan 28, 2010
Jan 28, 2010
148
149
case Z_OK: return NULL; /* not an error. */
case Z_STREAM_END: return NULL; /* not an error. */
May 18, 2003
May 18, 2003
150
#ifndef _WIN32_WCE
Jan 28, 2010
Jan 28, 2010
151
case Z_ERRNO: return strerror(errno);
May 18, 2003
May 18, 2003
152
#endif
Jan 28, 2010
Jan 28, 2010
153
154
155
156
157
158
case Z_NEED_DICT: return ERR_NEED_DICT;
case Z_DATA_ERROR: return ERR_DATA_ERROR;
case Z_MEM_ERROR: return ERR_MEMORY_ERROR;
case Z_BUF_ERROR: return ERR_BUFFER_ERROR;
case Z_VERSION_ERROR: return ERR_VERSION_ERROR;
default: return ERR_UNKNOWN_ERROR;
Jul 13, 2002
Jul 13, 2002
159
} /* switch */
Jul 28, 2002
Jul 28, 2002
160
161
} /* zlib_error_string */
Jul 13, 2002
Jul 13, 2002
162
Jul 28, 2002
Jul 28, 2002
163
164
165
166
167
168
169
170
/*
* Wrap all zlib calls in this, so the physfs error state is set appropriately.
*/
static int zlib_err(int rc)
{
const char *str = zlib_error_string(rc);
if (str != NULL)
__PHYSFS_setError(str);
Jan 28, 2010
Jan 28, 2010
171
return rc;
Jul 13, 2002
Jul 13, 2002
172
173
174
175
176
177
178
179
180
181
182
} /* zlib_err */
/*
* Read an unsigned 32-bit int and swap to native byte order.
*/
static int readui32(void *in, PHYSFS_uint32 *val)
{
PHYSFS_uint32 v;
BAIL_IF_MACRO(__PHYSFS_platformRead(in, &v, sizeof (v), 1) != 1, NULL, 0);
*val = PHYSFS_swapULE32(v);
Jan 28, 2010
Jan 28, 2010
183
return 1;
Jul 13, 2002
Jul 13, 2002
184
185
186
187
188
189
190
191
192
193
194
} /* readui32 */
/*
* Read an unsigned 16-bit int and swap to native byte order.
*/
static int readui16(void *in, PHYSFS_uint16 *val)
{
PHYSFS_uint16 v;
BAIL_IF_MACRO(__PHYSFS_platformRead(in, &v, sizeof (v), 1) != 1, NULL, 0);
*val = PHYSFS_swapULE16(v);
Jan 28, 2010
Jan 28, 2010
195
return 1;
Jul 13, 2002
Jul 13, 2002
196
197
198
} /* readui16 */
Sep 26, 2004
Sep 26, 2004
199
static PHYSFS_sint64 ZIP_read(fvoid *opaque, void *buf,
Mar 24, 2002
Mar 24, 2002
200
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
Jul 8, 2001
Jul 8, 2001
201
{
Sep 26, 2004
Sep 26, 2004
202
ZIPfileinfo *finfo = (ZIPfileinfo *) opaque;
Jul 13, 2002
Jul 13, 2002
203
204
205
206
207
208
209
210
211
212
213
ZIPentry *entry = finfo->entry;
PHYSFS_sint64 retval = 0;
PHYSFS_sint64 maxread = ((PHYSFS_sint64) objSize) * objCount;
PHYSFS_sint64 avail = entry->uncompressed_size -
finfo->uncompressed_position;
BAIL_IF_MACRO(maxread == 0, NULL, 0); /* quick rejection. */
if (avail < maxread)
{
maxread = avail - (avail % objSize);
Mar 12, 2003
Mar 12, 2003
214
objCount = (PHYSFS_uint32) (maxread / objSize);
Jul 13, 2002
Jul 13, 2002
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
BAIL_IF_MACRO(objCount == 0, ERR_PAST_EOF, 0); /* quick rejection. */
__PHYSFS_setError(ERR_PAST_EOF); /* this is always true here. */
} /* if */
if (entry->compression_method == COMPMETH_NONE)
{
retval = __PHYSFS_platformRead(finfo->handle, buf, objSize, objCount);
} /* if */
else
{
finfo->stream.next_out = buf;
finfo->stream.avail_out = objSize * objCount;
while (retval < maxread)
{
PHYSFS_uint32 before = finfo->stream.total_out;
int rc;
if (finfo->stream.avail_in == 0)
{
PHYSFS_sint64 br;
br = entry->compressed_size - finfo->compressed_position;
if (br > 0)
{
if (br > ZIP_READBUFSIZE)
br = ZIP_READBUFSIZE;
br = __PHYSFS_platformRead(finfo->handle,
finfo->buffer,
Mar 12, 2003
Mar 12, 2003
246
1, (PHYSFS_uint32) br);
Jul 13, 2002
Jul 13, 2002
247
248
249
if (br <= 0)
break;
Mar 12, 2003
Mar 12, 2003
250
finfo->compressed_position += (PHYSFS_uint32) br;
Jul 13, 2002
Jul 13, 2002
251
finfo->stream.next_in = finfo->buffer;
Mar 12, 2003
Mar 12, 2003
252
finfo->stream.avail_in = (PHYSFS_uint32) br;
Jul 13, 2002
Jul 13, 2002
253
254
} /* if */
} /* if */
Jul 23, 2001
Jul 23, 2001
255
Jul 13, 2002
Jul 13, 2002
256
257
rc = zlib_err(inflate(&finfo->stream, Z_SYNC_FLUSH));
retval += (finfo->stream.total_out - before);
Jul 23, 2001
Jul 23, 2001
258
Jul 13, 2002
Jul 13, 2002
259
260
261
262
263
264
265
266
if (rc != Z_OK)
break;
} /* while */
retval /= objSize;
} /* else */
if (retval > 0)
Mar 12, 2003
Mar 12, 2003
267
finfo->uncompressed_position += (PHYSFS_uint32) (retval * objSize);
Jul 13, 2002
Jul 13, 2002
268
Jan 28, 2010
Jan 28, 2010
269
return retval;
Jul 8, 2001
Jul 8, 2001
270
271
272
} /* ZIP_read */
Sep 26, 2004
Sep 26, 2004
273
static PHYSFS_sint64 ZIP_write(fvoid *opaque, const void *buf,
Aug 21, 2002
Aug 21, 2002
274
275
276
277
278
279
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, -1);
} /* ZIP_write */
Sep 26, 2004
Sep 26, 2004
280
static int ZIP_eof(fvoid *opaque)
Jul 8, 2001
Jul 8, 2001
281
{
Sep 26, 2004
Sep 26, 2004
282
ZIPfileinfo *finfo = (ZIPfileinfo *) opaque;
Jan 28, 2010
Jan 28, 2010
283
return (finfo->uncompressed_position >= finfo->entry->uncompressed_size);
Jul 8, 2001
Jul 8, 2001
284
285
286
} /* ZIP_eof */
Sep 26, 2004
Sep 26, 2004
287
static PHYSFS_sint64 ZIP_tell(fvoid *opaque)
Jul 8, 2001
Jul 8, 2001
288
{
Jan 28, 2010
Jan 28, 2010
289
return ((ZIPfileinfo *) opaque)->uncompressed_position;
Jul 8, 2001
Jul 8, 2001
290
291
292
} /* ZIP_tell */
Sep 26, 2004
Sep 26, 2004
293
static int ZIP_seek(fvoid *opaque, PHYSFS_uint64 offset)
Jul 8, 2001
Jul 8, 2001
294
{
Sep 26, 2004
Sep 26, 2004
295
ZIPfileinfo *finfo = (ZIPfileinfo *) opaque;
Jul 13, 2002
Jul 13, 2002
296
297
ZIPentry *entry = finfo->entry;
void *in = finfo->handle;
Jul 23, 2001
Jul 23, 2001
298
Jul 13, 2002
Jul 13, 2002
299
BAIL_IF_MACRO(offset > entry->uncompressed_size, ERR_PAST_EOF, 0);
Jul 23, 2001
Jul 23, 2001
300
Jul 13, 2002
Jul 13, 2002
301
if (entry->compression_method == COMPMETH_NONE)
Jul 23, 2001
Jul 23, 2001
302
{
Jul 13, 2002
Jul 13, 2002
303
304
PHYSFS_sint64 newpos = offset + entry->offset;
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, newpos), NULL, 0);
Mar 30, 2003
Mar 30, 2003
305
finfo->uncompressed_position = (PHYSFS_uint32) offset;
Jul 13, 2002
Jul 13, 2002
306
} /* if */
Jul 23, 2001
Jul 23, 2001
307
Jul 13, 2002
Jul 13, 2002
308
else
Jul 23, 2001
Jul 23, 2001
309
{
Jul 13, 2002
Jul 13, 2002
310
311
312
313
/*
* If seeking backwards, we need to redecode the file
* from the start and throw away the compressed bits until we hit
* the offset we need. If seeking forward, we still need to
Jul 23, 2002
Jul 23, 2002
314
* decode, but we don't rewind first.
Jul 13, 2002
Jul 13, 2002
315
316
317
318
319
*/
if (offset < finfo->uncompressed_position)
{
/* we do a copy so state is sane if inflateInit2() fails. */
z_stream str;
Sep 23, 2004
Sep 23, 2004
320
initializeZStream(&str);
Jul 13, 2002
Jul 13, 2002
321
if (zlib_err(inflateInit2(&str, -MAX_WBITS)) != Z_OK)
Jan 28, 2010
Jan 28, 2010
322
return 0;
Jul 13, 2002
Jul 13, 2002
323
Jul 17, 2002
Jul 17, 2002
324
if (!__PHYSFS_platformSeek(in, entry->offset))
Jan 28, 2010
Jan 28, 2010
325
return 0;
Jul 17, 2002
Jul 17, 2002
326
Jul 13, 2002
Jul 13, 2002
327
328
329
330
331
332
333
334
inflateEnd(&finfo->stream);
memcpy(&finfo->stream, &str, sizeof (z_stream));
finfo->uncompressed_position = finfo->compressed_position = 0;
} /* if */
while (finfo->uncompressed_position != offset)
{
PHYSFS_uint8 buf[512];
Mar 12, 2003
Mar 12, 2003
335
336
337
PHYSFS_uint32 maxread;
maxread = (PHYSFS_uint32) (offset - finfo->uncompressed_position);
Jul 13, 2002
Jul 13, 2002
338
339
340
if (maxread > sizeof (buf))
maxread = sizeof (buf);
Sep 26, 2004
Sep 26, 2004
341
if (ZIP_read(finfo, buf, maxread, 1) != 1)
Jan 28, 2010
Jan 28, 2010
342
return 0;
Jul 13, 2002
Jul 13, 2002
343
344
345
} /* while */
} /* else */
Jan 28, 2010
Jan 28, 2010
346
return 1;
Jul 8, 2001
Jul 8, 2001
347
348
349
} /* ZIP_seek */
Sep 26, 2004
Sep 26, 2004
350
static PHYSFS_sint64 ZIP_fileLength(fvoid *opaque)
Jul 9, 2001
Jul 9, 2001
351
{
Sep 26, 2004
Sep 26, 2004
352
ZIPfileinfo *finfo = (ZIPfileinfo *) opaque;
Jan 28, 2010
Jan 28, 2010
353
return finfo->entry->uncompressed_size;
Jul 9, 2001
Jul 9, 2001
354
355
356
} /* ZIP_fileLength */
Sep 26, 2004
Sep 26, 2004
357
static int ZIP_fileClose(fvoid *opaque)
Jul 8, 2001
Jul 8, 2001
358
{
Sep 26, 2004
Sep 26, 2004
359
ZIPfileinfo *finfo = (ZIPfileinfo *) opaque;
Jul 23, 2002
Jul 23, 2002
360
BAIL_IF_MACRO(!__PHYSFS_platformClose(finfo->handle), NULL, 0);
Jul 13, 2002
Jul 13, 2002
361
362
363
364
365
if (finfo->entry->compression_method != COMPMETH_NONE)
inflateEnd(&finfo->stream);
if (finfo->buffer != NULL)
Mar 14, 2005
Mar 14, 2005
366
allocator.Free(finfo->buffer);
Jul 13, 2002
Jul 13, 2002
367
Mar 14, 2005
Mar 14, 2005
368
allocator.Free(finfo);
Jan 28, 2010
Jan 28, 2010
369
return 1;
Jul 8, 2001
Jul 8, 2001
370
371
372
} /* ZIP_fileClose */
Jul 23, 2002
Jul 23, 2002
373
static PHYSFS_sint64 zip_find_end_of_central_dir(void *in, PHYSFS_sint64 *len)
Jul 13, 2002
Jul 13, 2002
374
{
Jul 23, 2002
Jul 23, 2002
375
PHYSFS_uint8 buf[256];
Mar 25, 2010
Mar 25, 2010
376
PHYSFS_uint8 extra[4] = { 0, 0, 0, 0 };
Jul 27, 2002
Jul 27, 2002
377
PHYSFS_sint32 i = 0;
Jul 13, 2002
Jul 13, 2002
378
379
380
PHYSFS_sint64 filelen;
PHYSFS_sint64 filepos;
PHYSFS_sint32 maxread;
Jul 23, 2002
Jul 23, 2002
381
382
PHYSFS_sint32 totalread = 0;
int found = 0;
Jul 13, 2002
Jul 13, 2002
383
384
filelen = __PHYSFS_platformFileLength(in);
Mar 14, 2005
Mar 14, 2005
385
BAIL_IF_MACRO(filelen == -1, NULL, 0); /* !!! FIXME: unlocalized string */
Mar 12, 2003
Mar 12, 2003
386
BAIL_IF_MACRO(filelen > 0xFFFFFFFF, "ZIP bigger than 2 gigs?!", 0);
Jul 13, 2002
Jul 13, 2002
387
388
389
390
391
392
393
394
395
/*
* Jump to the end of the file and start reading backwards.
* The last thing in the file is the zipfile comment, which is variable
* length, and the field that specifies its size is before it in the
* file (argh!)...this means that we need to scan backwards until we
* hit the end-of-central-dir signature. We can then sanity check that
* the comment was as big as it should be to make sure we're in the
* right place. The comment length field is 16 bits, so we can stop
Jul 23, 2002
Jul 23, 2002
396
397
* searching for that signature after a little more than 64k at most,
* and call it a corrupted zipfile.
Jul 13, 2002
Jul 13, 2002
398
399
400
401
402
403
404
405
406
407
*/
if (sizeof (buf) < filelen)
{
filepos = filelen - sizeof (buf);
maxread = sizeof (buf);
} /* if */
else
{
filepos = 0;
Mar 12, 2003
Mar 12, 2003
408
maxread = (PHYSFS_uint32) filelen;
Jul 13, 2002
Jul 13, 2002
409
410
} /* else */
Jul 23, 2002
Jul 23, 2002
411
while ((totalread < filelen) && (totalread < 65557))
Jul 13, 2002
Jul 13, 2002
412
{
Jul 23, 2002
Jul 23, 2002
413
414
415
416
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, filepos), NULL, -1);
/* make sure we catch a signature between buffers. */
if (totalread != 0)
Jul 13, 2002
Jul 13, 2002
417
{
Jul 23, 2002
Jul 23, 2002
418
if (__PHYSFS_platformRead(in, buf, maxread - 4, 1) != 1)
Jan 28, 2010
Jan 28, 2010
419
return -1;
May 3, 2009
May 3, 2009
420
memcpy(&buf[maxread - 4], &extra, sizeof (extra));
Jul 23, 2002
Jul 23, 2002
421
totalread += maxread - 4;
Jul 13, 2002
Jul 13, 2002
422
} /* if */
Jul 23, 2002
Jul 23, 2002
423
424
425
else
{
if (__PHYSFS_platformRead(in, buf, maxread, 1) != 1)
Jan 28, 2010
Jan 28, 2010
426
return -1;
Jul 23, 2002
Jul 23, 2002
427
428
429
totalread += maxread;
} /* else */
May 3, 2009
May 3, 2009
430
memcpy(&extra, buf, sizeof (extra));
Jul 13, 2002
Jul 13, 2002
431
Jul 23, 2002
Jul 23, 2002
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
for (i = maxread - 4; i > 0; i--)
{
if ((buf[i + 0] == 0x50) &&
(buf[i + 1] == 0x4B) &&
(buf[i + 2] == 0x05) &&
(buf[i + 3] == 0x06) )
{
found = 1; /* that's the signature! */
break;
} /* if */
} /* for */
if (found)
break;
filepos -= (maxread - 4);
May 5, 2007
May 5, 2007
448
449
if (filepos < 0)
filepos = 0;
Jul 23, 2002
Jul 23, 2002
450
451
452
} /* while */
BAIL_IF_MACRO(!found, ERR_NOT_AN_ARCHIVE, -1);
Jul 13, 2002
Jul 13, 2002
453
454
455
456
if (len != NULL)
*len = filelen;
Jan 28, 2010
Jan 28, 2010
457
return (filepos + i);
Jul 23, 2002
Jul 23, 2002
458
} /* zip_find_end_of_central_dir */
Jul 13, 2002
Jul 13, 2002
459
460
Jul 8, 2001
Jul 8, 2001
461
462
static int ZIP_isArchive(const char *filename, int forWriting)
{
Jul 13, 2002
Jul 13, 2002
463
PHYSFS_uint32 sig;
Jul 31, 2002
Jul 31, 2002
464
int retval = 0;
Jul 13, 2002
Jul 13, 2002
465
void *in;
Jul 15, 2001
Jul 15, 2001
466
Jul 13, 2002
Jul 13, 2002
467
468
469
470
471
472
473
in = __PHYSFS_platformOpenRead(filename);
BAIL_IF_MACRO(in == NULL, NULL, 0);
/*
* The first thing in a zip file might be the signature of the
* first local file record, so it makes for a quick determination.
*/
Jul 31, 2002
Jul 31, 2002
474
if (readui32(in, &sig))
Jul 15, 2001
Jul 15, 2001
475
{
Jul 31, 2002
Jul 31, 2002
476
477
478
479
480
481
482
483
484
485
retval = (sig == ZIP_LOCAL_FILE_SIG);
if (!retval)
{
/*
* No sig...might be a ZIP with data at the start
* (a self-extracting executable, etc), so we'll have to do
* it the hard way...
*/
retval = (zip_find_end_of_central_dir(in, NULL) != -1);
} /* if */
Jul 15, 2001
Jul 15, 2001
486
487
} /* if */
Jul 13, 2002
Jul 13, 2002
488
__PHYSFS_platformClose(in);
Jan 28, 2010
Jan 28, 2010
489
return retval;
Jul 8, 2001
Jul 8, 2001
490
491
492
} /* ZIP_isArchive */
Jul 23, 2002
Jul 23, 2002
493
static void zip_free_entries(ZIPentry *entries, PHYSFS_uint32 max)
Jul 13, 2002
Jul 13, 2002
494
{
Jul 23, 2002
Jul 23, 2002
495
496
PHYSFS_uint32 i;
for (i = 0; i < max; i++)
Jul 13, 2002
Jul 13, 2002
497
{
Jul 23, 2002
Jul 23, 2002
498
499
ZIPentry *entry = &entries[i];
if (entry->name != NULL)
Mar 14, 2005
Mar 14, 2005
500
allocator.Free(entry->name);
Jul 23, 2002
Jul 23, 2002
501
502
} /* for */
Mar 14, 2005
Mar 14, 2005
503
allocator.Free(entries);
Jul 23, 2002
Jul 23, 2002
504
505
506
} /* zip_free_entries */
Aug 28, 2002
Aug 28, 2002
507
508
509
510
511
/*
* This will find the ZIPentry associated with a path in platform-independent
* notation. Directories don't have ZIPentries associated with them, but
* (*isDir) will be set to non-zero if a dir was hit.
*/
Feb 15, 2010
Feb 15, 2010
512
513
static ZIPentry *zip_find_entry(const ZIPinfo *info, const char *path,
int *isDir)
Jul 23, 2002
Jul 23, 2002
514
515
{
ZIPentry *a = info->entries;
Aug 30, 2002
Aug 30, 2002
516
517
PHYSFS_sint32 pathlen = strlen(path);
PHYSFS_sint32 lo = 0;
Jul 23, 2002
Jul 23, 2002
518
519
PHYSFS_sint32 hi = (PHYSFS_sint32) (info->entryCount - 1);
PHYSFS_sint32 middle;
Aug 30, 2002
Aug 30, 2002
520
const char *thispath = NULL;
Jul 23, 2002
Jul 23, 2002
521
522
523
524
int rc;
while (lo <= hi)
{
Aug 30, 2002
Aug 30, 2002
525
526
527
middle = lo + ((hi - lo) / 2);
thispath = a[middle].name;
rc = strncmp(path, thispath, pathlen);
Aug 28, 2002
Aug 28, 2002
528
529
if (rc > 0)
Jul 23, 2002
Jul 23, 2002
530
lo = middle + 1;
Aug 28, 2002
Aug 28, 2002
531
532
else if (rc < 0)
Jul 23, 2002
Jul 23, 2002
533
hi = middle - 1;
Aug 28, 2002
Aug 28, 2002
534
Aug 30, 2002
Aug 30, 2002
535
536
else /* substring match...might be dir or entry or nothing. */
{
Aug 28, 2002
Aug 28, 2002
537
538
if (isDir != NULL)
{
Aug 30, 2002
Aug 30, 2002
539
540
*isDir = (thispath[pathlen] == '/');
if (*isDir)
Jan 28, 2010
Jan 28, 2010
541
return NULL;
Aug 28, 2002
Aug 28, 2002
542
543
544
} /* if */
if (thispath[pathlen] == '\0') /* found entry? */
Jan 28, 2010
Jan 28, 2010
545
return &a[middle];
Aug 30, 2002
Aug 30, 2002
546
547
548
549
else
hi = middle - 1; /* adjust search params, try again. */
} /* if */
} /* while */
Aug 28, 2002
Aug 28, 2002
550
551
552
if (isDir != NULL)
*isDir = 0;
Jul 23, 2002
Jul 23, 2002
553
554
555
BAIL_MACRO(ERR_NO_SUCH_FILE, NULL);
} /* zip_find_entry */
Jul 13, 2002
Jul 13, 2002
556
557
Jul 23, 2002
Jul 23, 2002
558
559
560
561
562
563
564
565
566
567
568
569
570
571
/* Convert paths from old, buggy DOS zippers... */
static void zip_convert_dos_path(ZIPentry *entry, char *path)
{
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((entry->version >> 8) & 0xFF);
if (hosttype == 0) /* FS_FAT_ */
{
while (*path)
{
if (*path == '\\')
*path = '/';
path++;
} /* while */
} /* if */
} /* zip_convert_dos_path */
Jul 13, 2002
Jul 13, 2002
572
573
Jul 23, 2002
Jul 23, 2002
574
static void zip_expand_symlink_path(char *path)
Jul 8, 2001
Jul 8, 2001
575
{
Jul 23, 2002
Jul 23, 2002
576
577
char *ptr = path;
char *prevptr = path;
Jul 15, 2001
Jul 15, 2001
578
Jul 23, 2002
Jul 23, 2002
579
while (1)
Jul 28, 2001
Jul 28, 2001
580
{
Jul 23, 2002
Jul 23, 2002
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
ptr = strchr(ptr, '/');
if (ptr == NULL)
break;
if (*(ptr + 1) == '.')
{
if (*(ptr + 2) == '/')
{
/* current dir in middle of string: ditch it. */
memmove(ptr, ptr + 2, strlen(ptr + 2) + 1);
} /* else if */
else if (*(ptr + 2) == '\0')
{
/* current dir at end of string: ditch it. */
*ptr = '\0';
} /* else if */
else if (*(ptr + 2) == '.')
{
if (*(ptr + 3) == '/')
{
/* parent dir in middle: move back one, if possible. */
memmove(prevptr, ptr + 4, strlen(ptr + 4) + 1);
ptr = prevptr;
while (prevptr != path)
{
prevptr--;
if (*prevptr == '/')
{
prevptr++;
break;
} /* if */
} /* while */
} /* if */
Jul 15, 2001
Jul 15, 2001
616
Jul 23, 2002
Jul 23, 2002
617
618
619
620
621
622
623
624
625
626
627
628
629
if (*(ptr + 3) == '\0')
{
/* parent dir at end: move back one, if possible. */
*prevptr = '\0';
} /* if */
} /* if */
} /* if */
else
{
prevptr = ptr;
} /* else */
} /* while */
} /* zip_expand_symlink_path */
Jul 15, 2001
Jul 15, 2001
630
Sep 29, 2004
Sep 29, 2004
631
632
/* (forward reference: zip_follow_symlink and zip_resolve call each other.) */
static int zip_resolve(void *in, ZIPinfo *info, ZIPentry *entry);
Jul 15, 2001
Jul 15, 2001
633
Mar 29, 2002
Mar 29, 2002
634
/*
Jul 23, 2002
Jul 23, 2002
635
636
637
638
639
* Look for the entry named by (path). If it exists, resolve it, and return
* a pointer to that entry. If it's another symlink, keep resolving until you
* hit a real file and then return a pointer to the final non-symlink entry.
* If there's a problem, return NULL. (path) is always free()'d by this
* function.
Mar 29, 2002
Mar 29, 2002
640
*/
Jul 23, 2002
Jul 23, 2002
641
static ZIPentry *zip_follow_symlink(void *in, ZIPinfo *info, char *path)
Jul 28, 2001
Jul 28, 2001
642
{
Jul 23, 2002
Jul 23, 2002
643
644
645
ZIPentry *entry;
zip_expand_symlink_path(path);
Aug 28, 2002
Aug 28, 2002
646
entry = zip_find_entry(info, path, NULL);
Jul 23, 2002
Jul 23, 2002
647
648
649
650
651
652
653
654
655
656
657
if (entry != NULL)
{
if (!zip_resolve(in, info, entry)) /* recursive! */
entry = NULL;
else
{
if (entry->symlink != NULL)
entry = entry->symlink;
} /* else */
} /* if */
Mar 14, 2005
Mar 14, 2005
658
allocator.Free(path);
Jan 28, 2010
Jan 28, 2010
659
return entry;
Jul 23, 2002
Jul 23, 2002
660
} /* zip_follow_symlink */
Jul 8, 2001
Jul 8, 2001
661
662
Jul 23, 2002
Jul 23, 2002
663
static int zip_resolve_symlink(void *in, ZIPinfo *info, ZIPentry *entry)
Jul 23, 2001
Jul 23, 2001
664
{
Jul 13, 2002
Jul 13, 2002
665
666
667
668
char *path;
PHYSFS_uint32 size = entry->uncompressed_size;
int rc = 0;
Jul 23, 2002
Jul 23, 2002
669
670
671
672
673
674
675
676
/*
* We've already parsed the local file header of the symlink at this
* point. Now we need to read the actual link from the file data and
* follow it.
*/
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, entry->offset), NULL, 0);
Mar 14, 2005
Mar 14, 2005
677
path = (char *) allocator.Malloc(size + 1);
Jul 23, 2002
Jul 23, 2002
678
BAIL_IF_MACRO(path == NULL, ERR_OUT_OF_MEMORY, 0);
Jul 13, 2002
Jul 13, 2002
679
680
681
682
683
684
685
if (entry->compression_method == COMPMETH_NONE)
rc = (__PHYSFS_platformRead(in, path, size, 1) == 1);
else /* symlink target path is compressed... */
{
z_stream stream;
Mar 24, 2007
Mar 24, 2007
686
687
PHYSFS_uint32 complen = entry->compressed_size;
PHYSFS_uint8 *compressed = (PHYSFS_uint8*) __PHYSFS_smallAlloc(complen);
Jul 13, 2002
Jul 13, 2002
688
689
if (compressed != NULL)
{
Mar 24, 2007
Mar 24, 2007
690
if (__PHYSFS_platformRead(in, compressed, complen, 1) == 1)
Jul 13, 2002
Jul 13, 2002
691
{
Sep 23, 2004
Sep 23, 2004
692
initializeZStream(&stream);
Jul 13, 2002
Jul 13, 2002
693
stream.next_in = compressed;
Mar 24, 2007
Mar 24, 2007
694
stream.avail_in = complen;
Jan 31, 2003
Jan 31, 2003
695
stream.next_out = (unsigned char *) path;
Jul 13, 2002
Jul 13, 2002
696
697
698
stream.avail_out = size;
if (zlib_err(inflateInit2(&stream, -MAX_WBITS)) == Z_OK)
{
Jul 15, 2002
Jul 15, 2002
699
rc = zlib_err(inflate(&stream, Z_FINISH));
Jul 13, 2002
Jul 13, 2002
700
inflateEnd(&stream);
Jul 15, 2002
Jul 15, 2002
701
702
703
/* both are acceptable outcomes... */
rc = ((rc == Z_OK) || (rc == Z_STREAM_END));
Jul 13, 2002
Jul 13, 2002
704
705
} /* if */
} /* if */
Mar 24, 2007
Mar 24, 2007
706
__PHYSFS_smallFree(compressed);
Jul 13, 2002
Jul 13, 2002
707
708
} /* if */
} /* else */
Mar 29, 2002
Mar 29, 2002
709
Jul 13, 2002
Jul 13, 2002
710
if (!rc)
Mar 14, 2005
Mar 14, 2005
711
allocator.Free(path);
Jul 23, 2002
Jul 23, 2002
712
713
714
715
716
717
718
else
{
path[entry->uncompressed_size] = '\0'; /* null-terminate it. */
zip_convert_dos_path(entry, path);
entry->symlink = zip_follow_symlink(in, info, path);
} /* else */
Jan 28, 2010
Jan 28, 2010
719
return (entry->symlink != NULL);
Jul 23, 2002
Jul 23, 2002
720
721
722
723
724
725
726
727
728
729
730
731
732
} /* zip_resolve_symlink */
/*
* Parse the local file header of an entry, and update entry->offset.
*/
static int zip_parse_local(void *in, ZIPentry *entry)
{
PHYSFS_uint32 ui32;
PHYSFS_uint16 ui16;
PHYSFS_uint16 fnamelen;
PHYSFS_uint16 extralen;
Mar 30, 2003
Mar 30, 2003
733
734
735
736
737
738
739
/*
* crc and (un)compressed_size are always zero if this is a "JAR"
* archive created with Sun's Java tools, apparently. We only
* consider this archive corrupted if those entries don't match and
* aren't zero. That seems to work well.
*/
Jul 23, 2002
Jul 23, 2002
740
741
742
743
744
745
746
747
748
749
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, entry->offset), NULL, 0);
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
BAIL_IF_MACRO(ui32 != ZIP_LOCAL_FILE_SIG, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0);
BAIL_IF_MACRO(ui16 != entry->version_needed, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* general bits. */
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0);
BAIL_IF_MACRO(ui16 != entry->compression_method, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); /* date/time */
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
Mar 30, 2003
Mar 30, 2003
750
BAIL_IF_MACRO(ui32 && (ui32 != entry->crc), ERR_CORRUPTED, 0);
Jul 23, 2002
Jul 23, 2002
751
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
Mar 30, 2003
Mar 30, 2003
752
BAIL_IF_MACRO(ui32 && (ui32 != entry->compressed_size), ERR_CORRUPTED, 0);
Jul 23, 2002
Jul 23, 2002
753
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
Mar 30, 2003
Mar 30, 2003
754
BAIL_IF_MACRO(ui32 && (ui32 != entry->uncompressed_size),ERR_CORRUPTED,0);
Jul 23, 2002
Jul 23, 2002
755
756
757
758
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0);
entry->offset += fnamelen + extralen + 30;
Jan 28, 2010
Jan 28, 2010
759
return 1;
Jul 23, 2002
Jul 23, 2002
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
} /* zip_parse_local */
static int zip_resolve(void *in, ZIPinfo *info, ZIPentry *entry)
{
int retval = 1;
ZipResolveType resolve_type = entry->resolved;
/* Don't bother if we've failed to resolve this entry before. */
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_FILE, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_SYMLINK, ERR_CORRUPTED, 0);
/* uhoh...infinite symlink loop! */
BAIL_IF_MACRO(resolve_type == ZIP_RESOLVING, ERR_SYMLINK_LOOP, 0);
/*
* We fix up the offset to point to the actual data on the
* first open, since we don't want to seek across the whole file on
* archive open (can be SLOW on large, CD-stored files), but we
* need to check the local file header...not just for corruption,
* but since it stores offset info the central directory does not.
*/
if (resolve_type != ZIP_RESOLVED)
{
entry->resolved = ZIP_RESOLVING;
retval = zip_parse_local(in, entry);
if (retval)
{
/*
* If it's a symlink, find the original file. This will cause
* resolution of other entries (other symlinks and, eventually,
* the real file) if all goes well.
*/
if (resolve_type == ZIP_UNRESOLVED_SYMLINK)
retval = zip_resolve_symlink(in, info, entry);
} /* if */
if (resolve_type == ZIP_UNRESOLVED_SYMLINK)
entry->resolved = ((retval) ? ZIP_RESOLVED : ZIP_BROKEN_SYMLINK);
else if (resolve_type == ZIP_UNRESOLVED_FILE)
entry->resolved = ((retval) ? ZIP_RESOLVED : ZIP_BROKEN_FILE);
Jul 13, 2002
Jul 13, 2002
802
} /* if */
Mar 29, 2002
Mar 29, 2002
803
Jan 28, 2010
Jan 28, 2010
804
return retval;
Jul 23, 2002
Jul 23, 2002
805
} /* zip_resolve */
Jul 23, 2001
Jul 23, 2001
806
807
Jul 23, 2002
Jul 23, 2002
808
static int zip_version_does_symlinks(PHYSFS_uint32 version)
Jul 23, 2001
Jul 23, 2001
809
810
{
int retval = 0;
Apr 3, 2002
Apr 3, 2002
811
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((version >> 8) & 0xFF);
Jul 23, 2001
Jul 23, 2001
812
813
814
switch (hosttype)
{
Jul 15, 2002
Jul 15, 2002
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
/*
* These are the platforms that can NOT build an archive with
* symlinks, according to the Info-ZIP project.
*/
case 0: /* FS_FAT_ */
case 1: /* AMIGA_ */
case 2: /* VMS_ */
case 4: /* VM_CSM_ */
case 6: /* FS_HPFS_ */
case 11: /* FS_NTFS_ */
case 14: /* FS_VFAT_ */
case 13: /* ACORN_ */
case 15: /* MVS_ */
case 18: /* THEOS_ */
break; /* do nothing. */
default: /* assume the rest to be unix-like. */
Jul 23, 2001
Jul 23, 2001
832
833
834
835
retval = 1;
break;
} /* switch */
Jan 28, 2010
Jan 28, 2010
836
return retval;
Jul 23, 2002
Jul 23, 2002
837
838
839
} /* zip_version_does_symlinks */
Apr 29, 2007
Apr 29, 2007
840
static int zip_entry_is_symlink(const ZIPentry *entry)
Jul 23, 2002
Jul 23, 2002
841
{
Jan 28, 2010
Jan 28, 2010
842
843
844
return ((entry->resolved == ZIP_UNRESOLVED_SYMLINK) ||
(entry->resolved == ZIP_BROKEN_SYMLINK) ||
(entry->symlink));
Jul 23, 2002
Jul 23, 2002
845
} /* zip_entry_is_symlink */
Jul 23, 2001
Jul 23, 2001
846
847
Jul 23, 2002
Jul 23, 2002
848
static int zip_has_symlink_attr(ZIPentry *entry, PHYSFS_uint32 extern_attr)
Jul 23, 2001
Jul 23, 2001
849
{
Jul 15, 2002
Jul 15, 2002
850
PHYSFS_uint16 xattr = ((extern_attr >> 16) & 0xFFFF);
Jan 28, 2010
Jan 28, 2010
851
852
853
return ( (zip_version_does_symlinks(entry->version)) &&
(entry->uncompressed_size > 0) &&
((xattr & UNIX_FILETYPE_MASK) == UNIX_FILETYPE_SYMLINK) );
Jul 23, 2002
Jul 23, 2002
854
} /* zip_has_symlink_attr */
Jul 23, 2001
Jul 23, 2001
855
856
Jan 31, 2003
Jan 31, 2003
857
static PHYSFS_sint64 zip_dos_time_to_physfs_time(PHYSFS_uint32 dostime)
Jul 23, 2001
Jul 23, 2001
858
{
May 18, 2003
May 18, 2003
859
#ifdef _WIN32_WCE
Jul 20, 2003
Jul 20, 2003
860
861
862
/* We have no struct tm and no mktime right now.
FIXME: This should probably be fixed at some point.
*/
May 18, 2003
May 18, 2003
863
864
return -1;
#else
Jul 23, 2002
Jul 23, 2002
865
PHYSFS_uint32 dosdate;
Jul 13, 2002
Jul 13, 2002
866
867
struct tm unixtime;
memset(&unixtime, '\0', sizeof (unixtime));
Jul 28, 2001
Jul 28, 2001
868
Jul 23, 2002
Jul 23, 2002
869
870
dosdate = (PHYSFS_uint32) ((dostime >> 16) & 0xFFFF);
dostime &= 0xFFFF;
Jul 23, 2001
Jul 23, 2001
871
Jul 23, 2002
Jul 23, 2002
872
873
874
875
876
877
878
879
880
881
882
883
/* dissect date */
unixtime.tm_year = ((dosdate >> 9) & 0x7F) + 80;
unixtime.tm_mon = ((dosdate >> 5) & 0x0F) - 1;
unixtime.tm_mday = ((dosdate ) & 0x1F);
/* dissect time */
unixtime.tm_hour = ((dostime >> 11) & 0x1F);
unixtime.tm_min = ((dostime >> 5) & 0x3F);
unixtime.tm_sec = ((dostime << 1) & 0x3E);
/* let mktime calculate daylight savings time. */
unixtime.tm_isdst = -1;
Jul 28, 2001
Jul 28, 2001
884
Jan 28, 2010
Jan 28, 2010
885
return ((PHYSFS_sint64) mktime(&unixtime));
May 18, 2003
May 18, 2003
886
#endif
Jul 23, 2002
Jul 23, 2002
887
} /* zip_dos_time_to_physfs_time */
Jul 13, 2002
Jul 13, 2002
888
889
Jul 23, 2002
Jul 23, 2002
890
static int zip_load_entry(void *in, ZIPentry *entry, PHYSFS_uint32 ofs_fixup)
Jul 13, 2002
Jul 13, 2002
891
892
893
894
895
896
897
898
899
900
901
902
903
904
{
PHYSFS_uint16 fnamelen, extralen, commentlen;
PHYSFS_uint32 external_attr;
PHYSFS_uint16 ui16;
PHYSFS_uint32 ui32;
PHYSFS_sint64 si64;
/* sanity check with central directory signature... */
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
BAIL_IF_MACRO(ui32 != ZIP_CENTRAL_DIR_SIG, ERR_CORRUPTED, 0);
/* Get the pertinent parts of the record... */
BAIL_IF_MACRO(!readui16(in, &entry->version), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &entry->version_needed), NULL, 0);
Jul 23, 2002
Jul 23, 2002
905
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* general bits */
Jul 13, 2002
Jul 13, 2002
906
907
BAIL_IF_MACRO(!readui16(in, &entry->compression_method), NULL, 0);
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
Jul 23, 2002
Jul 23, 2002
908
entry->last_mod_time = zip_dos_time_to_physfs_time(ui32);
Jul 13, 2002
Jul 13, 2002
909
910
911
912
913
914
915
916
917
918
919
BAIL_IF_MACRO(!readui32(in, &entry->crc), NULL, 0);
BAIL_IF_MACRO(!readui32(in, &entry->compressed_size), NULL, 0);
BAIL_IF_MACRO(!readui32(in, &entry->uncompressed_size), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &commentlen), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* disk number start */
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* internal file attribs */
BAIL_IF_MACRO(!readui32(in, &external_attr), NULL, 0);
BAIL_IF_MACRO(!readui32(in, &entry->offset), NULL, 0);
entry->offset += ofs_fixup;
Jul 23, 2002
Jul 23, 2002
920
921
922
923
entry->symlink = NULL; /* will be resolved later, if necessary. */
entry->resolved = (zip_has_symlink_attr(entry, external_attr)) ?
ZIP_UNRESOLVED_SYMLINK : ZIP_UNRESOLVED_FILE;
Jul 13, 2002
Jul 13, 2002
924
Mar 14, 2005
Mar 14, 2005
925
entry->name = (char *) allocator.Malloc(fnamelen + 1);
Jul 13, 2002
Jul 13, 2002
926
927
BAIL_IF_MACRO(entry->name == NULL, ERR_OUT_OF_MEMORY, 0);
if (__PHYSFS_platformRead(in, entry->name, fnamelen, 1) != 1)
Jul 23, 2002
Jul 23, 2002
928
goto zip_load_entry_puked;
Jul 13, 2002
Jul 13, 2002
929
930
entry->name[fnamelen] = '\0'; /* null-terminate the filename. */
Jul 23, 2002
Jul 23, 2002
931
zip_convert_dos_path(entry, entry->name);
Jul 13, 2002
Jul 13, 2002
932
933
934
si64 = __PHYSFS_platformTell(in);
if (si64 == -1)
Jul 23, 2002
Jul 23, 2002
935
goto zip_load_entry_puked;
Jul 28, 2001
Jul 28, 2001
936
Jul 13, 2002
Jul 13, 2002
937
938
/* seek to the start of the next entry in the central directory... */
if (!__PHYSFS_platformSeek(in, si64 + extralen + commentlen))
Jul 23, 2002
Jul 23, 2002
939
goto zip_load_entry_puked;
Jul 28, 2001
Jul 28, 2001
940
Jan 28, 2010
Jan 28, 2010
941
return 1; /* success. */
Jul 28, 2001
Jul 28, 2001
942
Jul 23, 2002
Jul 23, 2002
943
zip_load_entry_puked:
Mar 14, 2005
Mar 14, 2005
944
allocator.Free(entry->name);
Jan 28, 2010
Jan 28, 2010
945
return 0; /* failure. */
Jul 23, 2002
Jul 23, 2002
946
947
948
} /* zip_load_entry */
Aug 20, 2002
Aug 20, 2002
949
static int zip_entry_cmp(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
Jul 23, 2002
Jul 23, 2002
950
{
Feb 20, 2008
Feb 20, 2008
951
952
953
if (one != two)
{
const ZIPentry *a = (const ZIPentry *) _a;
Jan 28, 2010
Jan 28, 2010
954
return strcmp(a[one].name, a[two].name);
Feb 20, 2008
Feb 20, 2008
955
956
957
} /* if */
return 0;
Aug 20, 2002
Aug 20, 2002
958
} /* zip_entry_cmp */
Jul 23, 2002
Jul 23, 2002
959
960
Aug 20, 2002
Aug 20, 2002
961
static void zip_entry_swap(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
Jul 23, 2002
Jul 23, 2002
962
{
Feb 20, 2008
Feb 20, 2008
963
964
965
966
967
968
969
970
971
if (one != two)
{
ZIPentry tmp;
ZIPentry *first = &(((ZIPentry *) _a)[one]);
ZIPentry *second = &(((ZIPentry *) _a)[two]);
memcpy(&tmp, first, sizeof (ZIPentry));
memcpy(first, second, sizeof (ZIPentry));
memcpy(second, &tmp, sizeof (ZIPentry));
} /* if */
Aug 20, 2002
Aug 20, 2002
972
} /* zip_entry_swap */
Jul 23, 2002
Jul 23, 2002
973
974
Sep 26, 2004
Sep 26, 2004
975
static int zip_load_entries(void *in, ZIPinfo *info,
Jul 13, 2002
Jul 13, 2002
976
977
978
979
980
981
982
PHYSFS_uint32 data_ofs, PHYSFS_uint32 central_ofs)
{
PHYSFS_uint32 max = info->entryCount;
PHYSFS_uint32 i;
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, central_ofs), NULL, 0);
Mar 14, 2005
Mar 14, 2005
983
info->entries = (ZIPentry *) allocator.Malloc(sizeof (ZIPentry) * max);
Jul 13, 2002
Jul 13, 2002
984
985
986
987
BAIL_IF_MACRO(info->entries == NULL, ERR_OUT_OF_MEMORY, 0);
for (i = 0; i < max; i++)
{
Jul 23, 2002
Jul 23, 2002
988
if (!zip_load_entry(in, &info->entries[i], data_ofs))
Jul 28, 2001
Jul 28, 2001
989
{
Jul 23, 2002
Jul 23, 2002
990
zip_free_entries(info->entries, i);
Jan 28, 2010
Jan 28, 2010
991
return 0;
Jul 28, 2001
Jul 28, 2001
992
993
994
} /* if */
} /* for */
Aug 20, 2002
Aug 20, 2002
995
__PHYSFS_sort(info->entries, max, zip_entry_cmp, zip_entry_swap);
Jan 28, 2010
Jan 28, 2010
996
return 1;
Jul 23, 2002
Jul 23, 2002
997
} /* zip_load_entries */
Jul 28, 2001
Jul 28, 2001
998
999
Sep 26, 2004
Sep 26, 2004
1000
static int zip_parse_end_of_central_dir(void *in, ZIPinfo *info,