Skip to content

Latest commit

 

History

History
1430 lines (1156 loc) · 42.7 KB

archiver_zip.c

File metadata and controls

1430 lines (1156 loc) · 42.7 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 13, 2002
Jul 13, 2002
12
#include <errno.h>
Nov 22, 2002
Nov 22, 2002
13
#include <time.h>
Sep 6, 2010
Sep 6, 2010
14
Jul 7, 2001
Jul 7, 2001
15
16
17
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Mar 10, 2012
Mar 10, 2012
18
19
20
21
22
23
24
#define USE_MINIZ 1
#if USE_MINIZ
#include "physfs_miniz.h"
#else
#include <zlib.h>
#endif
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
{
Aug 30, 2010
Aug 30, 2010
82
PHYSFS_Io *io;
Jul 13, 2002
Jul 13, 2002
83
84
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
ZIPentry *entry; /* Info on file. */
Aug 30, 2010
Aug 30, 2010
93
PHYSFS_Io *io; /* physical file handle. */
Jul 13, 2002
Jul 13, 2002
94
95
96
97
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 */
Mar 20, 2012
Mar 20, 2012
144
static PHYSFS_ErrorCode zlib_error_code(int rc)
Jul 13, 2002
Jul 13, 2002
145
146
147
{
switch (rc)
{
Mar 20, 2012
Mar 20, 2012
148
149
150
151
152
case Z_OK: return PHYSFS_ERR_OK; /* not an error. */
case Z_STREAM_END: return PHYSFS_ERR_OK; /* not an error. */
case Z_ERRNO: return PHYSFS_ERR_IO;
case Z_MEM_ERROR: return PHYSFS_ERR_OUT_OF_MEMORY;
default: return PHYSFS_ERR_CORRUPT;
Jul 13, 2002
Jul 13, 2002
153
} /* switch */
Jul 28, 2002
Jul 28, 2002
154
155
} /* zlib_error_string */
Jul 13, 2002
Jul 13, 2002
156
Jul 28, 2002
Jul 28, 2002
157
158
159
/*
* Wrap all zlib calls in this, so the physfs error state is set appropriately.
*/
Mar 20, 2012
Mar 20, 2012
160
static int zlib_err(const int rc)
Jul 28, 2002
Jul 28, 2002
161
{
Mar 20, 2012
Mar 20, 2012
162
__PHYSFS_setError(zlib_error_code(rc));
Jan 28, 2010
Jan 28, 2010
163
return rc;
Jul 13, 2002
Jul 13, 2002
164
165
166
167
168
169
} /* zlib_err */
/*
* Read an unsigned 32-bit int and swap to native byte order.
*/
Aug 30, 2010
Aug 30, 2010
170
static int readui32(PHYSFS_Io *io, PHYSFS_uint32 *val)
Jul 13, 2002
Jul 13, 2002
171
172
{
PHYSFS_uint32 v;
Mar 20, 2012
Mar 20, 2012
173
BAIL_IF_MACRO(!__PHYSFS_readAll(io, &v, sizeof (v)), ERRPASS, 0);
Jul 13, 2002
Jul 13, 2002
174
*val = PHYSFS_swapULE32(v);
Jan 28, 2010
Jan 28, 2010
175
return 1;
Jul 13, 2002
Jul 13, 2002
176
177
178
179
180
181
} /* readui32 */
/*
* Read an unsigned 16-bit int and swap to native byte order.
*/
Aug 30, 2010
Aug 30, 2010
182
static int readui16(PHYSFS_Io *io, PHYSFS_uint16 *val)
Jul 13, 2002
Jul 13, 2002
183
184
{
PHYSFS_uint16 v;
Mar 20, 2012
Mar 20, 2012
185
BAIL_IF_MACRO(!__PHYSFS_readAll(io, &v, sizeof (v)), ERRPASS, 0);
Jul 13, 2002
Jul 13, 2002
186
*val = PHYSFS_swapULE16(v);
Jan 28, 2010
Jan 28, 2010
187
return 1;
Jul 13, 2002
Jul 13, 2002
188
189
190
} /* readui16 */
Aug 30, 2010
Aug 30, 2010
191
static PHYSFS_sint64 ZIP_read(PHYSFS_Io *_io, void *buf, PHYSFS_uint64 len)
Jul 8, 2001
Jul 8, 2001
192
{
Aug 30, 2010
Aug 30, 2010
193
194
ZIPfileinfo *finfo = (ZIPfileinfo *) _io->opaque;
PHYSFS_Io *io = finfo->io;
Jul 13, 2002
Jul 13, 2002
195
196
ZIPentry *entry = finfo->entry;
PHYSFS_sint64 retval = 0;
Aug 21, 2010
Aug 21, 2010
197
PHYSFS_sint64 maxread = (PHYSFS_sint64) len;
Jul 13, 2002
Jul 13, 2002
198
199
200
201
PHYSFS_sint64 avail = entry->uncompressed_size -
finfo->uncompressed_position;
if (avail < maxread)
Aug 21, 2010
Aug 21, 2010
202
maxread = avail;
Jul 13, 2002
Jul 13, 2002
203
Mar 20, 2012
Mar 20, 2012
204
BAIL_IF_MACRO(maxread == 0, ERRPASS, 0); /* quick rejection. */
Jul 13, 2002
Jul 13, 2002
205
Aug 21, 2010
Aug 21, 2010
206
if (entry->compression_method == COMPMETH_NONE)
Aug 30, 2010
Aug 30, 2010
207
retval = io->read(io, buf, maxread);
Jul 13, 2002
Jul 13, 2002
208
209
210
else
{
finfo->stream.next_out = buf;
Mar 10, 2012
Mar 10, 2012
211
finfo->stream.avail_out = (uInt) maxread;
Jul 13, 2002
Jul 13, 2002
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
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;
Aug 30, 2010
Aug 30, 2010
228
br = io->read(io, finfo->buffer, (PHYSFS_uint64) br);
Jul 13, 2002
Jul 13, 2002
229
230
231
if (br <= 0)
break;
Mar 12, 2003
Mar 12, 2003
232
finfo->compressed_position += (PHYSFS_uint32) br;
Jul 13, 2002
Jul 13, 2002
233
finfo->stream.next_in = finfo->buffer;
Mar 12, 2003
Mar 12, 2003
234
finfo->stream.avail_in = (PHYSFS_uint32) br;
Jul 13, 2002
Jul 13, 2002
235
236
} /* if */
} /* if */
Jul 23, 2001
Jul 23, 2001
237
Jul 13, 2002
Jul 13, 2002
238
239
rc = zlib_err(inflate(&finfo->stream, Z_SYNC_FLUSH));
retval += (finfo->stream.total_out - before);
Jul 23, 2001
Jul 23, 2001
240
Jul 13, 2002
Jul 13, 2002
241
242
243
244
245
246
if (rc != Z_OK)
break;
} /* while */
} /* else */
if (retval > 0)
Aug 21, 2010
Aug 21, 2010
247
finfo->uncompressed_position += (PHYSFS_uint32) retval;
Jul 13, 2002
Jul 13, 2002
248
Jan 28, 2010
Jan 28, 2010
249
return retval;
Jul 8, 2001
Jul 8, 2001
250
251
252
} /* ZIP_read */
Aug 30, 2010
Aug 30, 2010
253
static PHYSFS_sint64 ZIP_write(PHYSFS_Io *io, const void *b, PHYSFS_uint64 len)
Aug 21, 2002
Aug 21, 2002
254
{
Mar 22, 2012
Mar 22, 2012
255
BAIL_MACRO(PHYSFS_ERR_READ_ONLY, -1);
Aug 21, 2002
Aug 21, 2002
256
257
258
} /* ZIP_write */
Aug 30, 2010
Aug 30, 2010
259
static PHYSFS_sint64 ZIP_tell(PHYSFS_Io *io)
Jul 8, 2001
Jul 8, 2001
260
{
Aug 30, 2010
Aug 30, 2010
261
return ((ZIPfileinfo *) io->opaque)->uncompressed_position;
Jul 8, 2001
Jul 8, 2001
262
263
264
} /* ZIP_tell */
Aug 30, 2010
Aug 30, 2010
265
static int ZIP_seek(PHYSFS_Io *_io, PHYSFS_uint64 offset)
Jul 8, 2001
Jul 8, 2001
266
{
Aug 30, 2010
Aug 30, 2010
267
ZIPfileinfo *finfo = (ZIPfileinfo *) _io->opaque;
Jul 13, 2002
Jul 13, 2002
268
ZIPentry *entry = finfo->entry;
Aug 30, 2010
Aug 30, 2010
269
PHYSFS_Io *io = finfo->io;
Jul 23, 2001
Jul 23, 2001
270
Mar 20, 2012
Mar 20, 2012
271
BAIL_IF_MACRO(offset > entry->uncompressed_size, PHYSFS_ERR_PAST_EOF, 0);
Jul 23, 2001
Jul 23, 2001
272
Jul 13, 2002
Jul 13, 2002
273
if (entry->compression_method == COMPMETH_NONE)
Jul 23, 2001
Jul 23, 2001
274
{
Aug 30, 2010
Aug 30, 2010
275
const PHYSFS_sint64 newpos = offset + entry->offset;
Mar 20, 2012
Mar 20, 2012
276
BAIL_IF_MACRO(!io->seek(io, newpos), ERRPASS, 0);
Mar 30, 2003
Mar 30, 2003
277
finfo->uncompressed_position = (PHYSFS_uint32) offset;
Jul 13, 2002
Jul 13, 2002
278
} /* if */
Jul 23, 2001
Jul 23, 2001
279
Jul 13, 2002
Jul 13, 2002
280
else
Jul 23, 2001
Jul 23, 2001
281
{
Jul 13, 2002
Jul 13, 2002
282
283
284
285
/*
* 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
286
* decode, but we don't rewind first.
Jul 13, 2002
Jul 13, 2002
287
288
289
290
291
*/
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
292
initializeZStream(&str);
Jul 13, 2002
Jul 13, 2002
293
if (zlib_err(inflateInit2(&str, -MAX_WBITS)) != Z_OK)
Jan 28, 2010
Jan 28, 2010
294
return 0;
Jul 13, 2002
Jul 13, 2002
295
Aug 30, 2010
Aug 30, 2010
296
if (!io->seek(io, entry->offset))
Jan 28, 2010
Jan 28, 2010
297
return 0;
Jul 17, 2002
Jul 17, 2002
298
Jul 13, 2002
Jul 13, 2002
299
300
301
302
303
304
305
306
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
307
308
309
PHYSFS_uint32 maxread;
maxread = (PHYSFS_uint32) (offset - finfo->uncompressed_position);
Jul 13, 2002
Jul 13, 2002
310
311
312
if (maxread > sizeof (buf))
maxread = sizeof (buf);
Aug 30, 2010
Aug 30, 2010
313
if (ZIP_read(_io, buf, maxread) != maxread)
Jan 28, 2010
Jan 28, 2010
314
return 0;
Jul 13, 2002
Jul 13, 2002
315
316
317
} /* while */
} /* else */
Jan 28, 2010
Jan 28, 2010
318
return 1;
Jul 8, 2001
Jul 8, 2001
319
320
321
} /* ZIP_seek */
Aug 30, 2010
Aug 30, 2010
322
static PHYSFS_sint64 ZIP_length(PHYSFS_Io *io)
Jul 9, 2001
Jul 9, 2001
323
{
Aug 30, 2010
Aug 30, 2010
324
const ZIPfileinfo *finfo = (ZIPfileinfo *) io->opaque;
Jan 28, 2010
Jan 28, 2010
325
return finfo->entry->uncompressed_size;
Aug 30, 2010
Aug 30, 2010
326
} /* ZIP_length */
Jul 9, 2001
Jul 9, 2001
327
328
Aug 30, 2010
Aug 30, 2010
329
330
331
static PHYSFS_Io *zip_get_io(PHYSFS_Io *io, ZIPinfo *inf, ZIPentry *entry);
static PHYSFS_Io *ZIP_duplicate(PHYSFS_Io *io)
Jul 8, 2001
Jul 8, 2001
332
{
Aug 30, 2010
Aug 30, 2010
333
334
335
ZIPfileinfo *origfinfo = (ZIPfileinfo *) io->opaque;
PHYSFS_Io *retval = (PHYSFS_Io *) allocator.Malloc(sizeof (PHYSFS_Io));
ZIPfileinfo *finfo = (ZIPfileinfo *) allocator.Malloc(sizeof (ZIPfileinfo));
Mar 20, 2012
Mar 20, 2012
336
337
GOTO_IF_MACRO(!retval, PHYSFS_ERR_OUT_OF_MEMORY, ZIP_duplicate_failed);
GOTO_IF_MACRO(!finfo, PHYSFS_ERR_OUT_OF_MEMORY, ZIP_duplicate_failed);
Aug 30, 2010
Aug 30, 2010
338
339
340
341
memset(finfo, '\0', sizeof (*finfo));
finfo->entry = origfinfo->entry;
finfo->io = zip_get_io(origfinfo->io, NULL, finfo->entry);
Mar 20, 2012
Mar 20, 2012
342
GOTO_IF_MACRO(!finfo->io, ERRPASS, ZIP_duplicate_failed);
Aug 30, 2010
Aug 30, 2010
343
344
345
346
if (finfo->entry->compression_method != COMPMETH_NONE)
{
finfo->buffer = (PHYSFS_uint8 *) allocator.Malloc(ZIP_READBUFSIZE);
Mar 20, 2012
Mar 20, 2012
347
348
349
if (!finfo->buffer)
GOTO_MACRO(PHYSFS_ERR_OUT_OF_MEMORY, ZIP_duplicate_failed);
else if (zlib_err(inflateInit2(&finfo->stream, -MAX_WBITS)) != Z_OK)
Aug 30, 2010
Aug 30, 2010
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
goto ZIP_duplicate_failed;
} /* if */
memcpy(retval, io, sizeof (PHYSFS_Io));
retval->opaque = finfo;
return retval;
ZIP_duplicate_failed:
if (finfo != NULL)
{
if (finfo->io != NULL)
finfo->io->destroy(finfo->io);
if (finfo->buffer != NULL)
{
allocator.Free(finfo->buffer);
inflateEnd(&finfo->stream);
} /* if */
allocator.Free(finfo);
} /* if */
if (retval != NULL)
allocator.Free(retval);
return NULL;
} /* ZIP_duplicate */
static int ZIP_flush(PHYSFS_Io *io) { return 1; /* no write support. */ }
static void ZIP_destroy(PHYSFS_Io *io)
{
ZIPfileinfo *finfo = (ZIPfileinfo *) io->opaque;
finfo->io->destroy(finfo->io);
Jul 13, 2002
Jul 13, 2002
384
385
386
387
388
if (finfo->entry->compression_method != COMPMETH_NONE)
inflateEnd(&finfo->stream);
if (finfo->buffer != NULL)
Mar 14, 2005
Mar 14, 2005
389
allocator.Free(finfo->buffer);
Jul 13, 2002
Jul 13, 2002
390
Mar 14, 2005
Mar 14, 2005
391
allocator.Free(finfo);
Aug 30, 2010
Aug 30, 2010
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
allocator.Free(io);
} /* ZIP_destroy */
static const PHYSFS_Io ZIP_Io =
{
ZIP_read,
ZIP_write,
ZIP_seek,
ZIP_tell,
ZIP_length,
ZIP_duplicate,
ZIP_flush,
ZIP_destroy,
NULL
};
Jul 8, 2001
Jul 8, 2001
409
410
Aug 30, 2010
Aug 30, 2010
411
static PHYSFS_sint64 zip_find_end_of_central_dir(PHYSFS_Io *io, PHYSFS_sint64 *len)
Jul 13, 2002
Jul 13, 2002
412
{
Jul 23, 2002
Jul 23, 2002
413
PHYSFS_uint8 buf[256];
Mar 25, 2010
Mar 25, 2010
414
PHYSFS_uint8 extra[4] = { 0, 0, 0, 0 };
Jul 27, 2002
Jul 27, 2002
415
PHYSFS_sint32 i = 0;
Jul 13, 2002
Jul 13, 2002
416
417
418
PHYSFS_sint64 filelen;
PHYSFS_sint64 filepos;
PHYSFS_sint32 maxread;
Jul 23, 2002
Jul 23, 2002
419
420
PHYSFS_sint32 totalread = 0;
int found = 0;
Jul 13, 2002
Jul 13, 2002
421
Aug 30, 2010
Aug 30, 2010
422
filelen = io->length(io);
Mar 20, 2012
Mar 20, 2012
423
BAIL_IF_MACRO(filelen == -1, ERRPASS, 0);
Jul 13, 2002
Jul 13, 2002
424
425
426
427
428
429
430
431
432
/*
* 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
433
434
* searching for that signature after a little more than 64k at most,
* and call it a corrupted zipfile.
Jul 13, 2002
Jul 13, 2002
435
436
437
438
439
440
441
442
443
444
*/
if (sizeof (buf) < filelen)
{
filepos = filelen - sizeof (buf);
maxread = sizeof (buf);
} /* if */
else
{
filepos = 0;
Mar 12, 2003
Mar 12, 2003
445
maxread = (PHYSFS_uint32) filelen;
Jul 13, 2002
Jul 13, 2002
446
447
} /* else */
Jul 23, 2002
Jul 23, 2002
448
while ((totalread < filelen) && (totalread < 65557))
Jul 13, 2002
Jul 13, 2002
449
{
Mar 20, 2012
Mar 20, 2012
450
BAIL_IF_MACRO(!io->seek(io, filepos), ERRPASS, -1);
Jul 23, 2002
Jul 23, 2002
451
452
453
/* make sure we catch a signature between buffers. */
if (totalread != 0)
Jul 13, 2002
Jul 13, 2002
454
{
Mar 9, 2012
Mar 9, 2012
455
if (!__PHYSFS_readAll(io, buf, maxread - 4))
Jan 28, 2010
Jan 28, 2010
456
return -1;
May 3, 2009
May 3, 2009
457
memcpy(&buf[maxread - 4], &extra, sizeof (extra));
Jul 23, 2002
Jul 23, 2002
458
totalread += maxread - 4;
Jul 13, 2002
Jul 13, 2002
459
} /* if */
Jul 23, 2002
Jul 23, 2002
460
461
else
{
Mar 9, 2012
Mar 9, 2012
462
if (!__PHYSFS_readAll(io, buf, maxread))
Jan 28, 2010
Jan 28, 2010
463
return -1;
Jul 23, 2002
Jul 23, 2002
464
465
466
totalread += maxread;
} /* else */
May 3, 2009
May 3, 2009
467
memcpy(&extra, buf, sizeof (extra));
Jul 13, 2002
Jul 13, 2002
468
Jul 23, 2002
Jul 23, 2002
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
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
485
486
if (filepos < 0)
filepos = 0;
Jul 23, 2002
Jul 23, 2002
487
488
} /* while */
Mar 20, 2012
Mar 20, 2012
489
BAIL_IF_MACRO(!found, PHYSFS_ERR_UNSUPPORTED, -1);
Jul 13, 2002
Jul 13, 2002
490
491
492
493
if (len != NULL)
*len = filelen;
Jan 28, 2010
Jan 28, 2010
494
return (filepos + i);
Jul 23, 2002
Jul 23, 2002
495
} /* zip_find_end_of_central_dir */
Jul 13, 2002
Jul 13, 2002
496
497
Aug 30, 2010
Aug 30, 2010
498
static int isZip(PHYSFS_Io *io)
Jul 8, 2001
Jul 8, 2001
499
{
Aug 30, 2010
Aug 30, 2010
500
PHYSFS_uint32 sig = 0;
Jul 31, 2002
Jul 31, 2002
501
int retval = 0;
Jul 13, 2002
Jul 13, 2002
502
503
504
505
506
/*
* The first thing in a zip file might be the signature of the
* first local file record, so it makes for a quick determination.
*/
Aug 30, 2010
Aug 30, 2010
507
if (readui32(io, &sig))
Jul 15, 2001
Jul 15, 2001
508
{
Jul 31, 2002
Jul 31, 2002
509
510
511
512
513
514
515
516
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...
*/
Aug 30, 2010
Aug 30, 2010
517
retval = (zip_find_end_of_central_dir(io, NULL) != -1);
Jul 31, 2002
Jul 31, 2002
518
} /* if */
Jul 15, 2001
Jul 15, 2001
519
520
} /* if */
Jan 28, 2010
Jan 28, 2010
521
return retval;
Aug 24, 2010
Aug 24, 2010
522
} /* isZip */
Jul 8, 2001
Jul 8, 2001
523
524
Jul 23, 2002
Jul 23, 2002
525
static void zip_free_entries(ZIPentry *entries, PHYSFS_uint32 max)
Jul 13, 2002
Jul 13, 2002
526
{
Jul 23, 2002
Jul 23, 2002
527
528
PHYSFS_uint32 i;
for (i = 0; i < max; i++)
Jul 13, 2002
Jul 13, 2002
529
{
Jul 23, 2002
Jul 23, 2002
530
531
ZIPentry *entry = &entries[i];
if (entry->name != NULL)
Mar 14, 2005
Mar 14, 2005
532
allocator.Free(entry->name);
Jul 23, 2002
Jul 23, 2002
533
534
} /* for */
Mar 14, 2005
Mar 14, 2005
535
allocator.Free(entries);
Jul 23, 2002
Jul 23, 2002
536
537
538
} /* zip_free_entries */
Aug 28, 2002
Aug 28, 2002
539
540
541
542
543
/*
* 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
544
545
static ZIPentry *zip_find_entry(const ZIPinfo *info, const char *path,
int *isDir)
Jul 23, 2002
Jul 23, 2002
546
547
{
ZIPentry *a = info->entries;
Mar 10, 2012
Mar 10, 2012
548
PHYSFS_sint32 pathlen = (PHYSFS_sint32) strlen(path);
Aug 30, 2002
Aug 30, 2002
549
PHYSFS_sint32 lo = 0;
Jul 23, 2002
Jul 23, 2002
550
551
PHYSFS_sint32 hi = (PHYSFS_sint32) (info->entryCount - 1);
PHYSFS_sint32 middle;
Aug 30, 2002
Aug 30, 2002
552
const char *thispath = NULL;
Jul 23, 2002
Jul 23, 2002
553
554
555
556
int rc;
while (lo <= hi)
{
Aug 30, 2002
Aug 30, 2002
557
558
559
middle = lo + ((hi - lo) / 2);
thispath = a[middle].name;
rc = strncmp(path, thispath, pathlen);
Aug 28, 2002
Aug 28, 2002
560
561
if (rc > 0)
Jul 23, 2002
Jul 23, 2002
562
lo = middle + 1;
Aug 28, 2002
Aug 28, 2002
563
564
else if (rc < 0)
Jul 23, 2002
Jul 23, 2002
565
hi = middle - 1;
Aug 28, 2002
Aug 28, 2002
566
Aug 30, 2002
Aug 30, 2002
567
568
else /* substring match...might be dir or entry or nothing. */
{
Aug 28, 2002
Aug 28, 2002
569
570
if (isDir != NULL)
{
Aug 30, 2002
Aug 30, 2002
571
572
*isDir = (thispath[pathlen] == '/');
if (*isDir)
Jan 28, 2010
Jan 28, 2010
573
return NULL;
Aug 28, 2002
Aug 28, 2002
574
575
576
} /* if */
if (thispath[pathlen] == '\0') /* found entry? */
Jan 28, 2010
Jan 28, 2010
577
return &a[middle];
Feb 18, 2011
Feb 18, 2011
578
579
580
/* adjust search params, try again. */
else if (thispath[pathlen] > '/')
hi = middle - 1;
Aug 30, 2002
Aug 30, 2002
581
else
Feb 18, 2011
Feb 18, 2011
582
lo = middle + 1;
Aug 30, 2002
Aug 30, 2002
583
584
} /* if */
} /* while */
Aug 28, 2002
Aug 28, 2002
585
586
587
if (isDir != NULL)
*isDir = 0;
Jul 23, 2002
Jul 23, 2002
588
Mar 20, 2012
Mar 20, 2012
589
BAIL_MACRO(PHYSFS_ERR_NO_SUCH_PATH, NULL);
Jul 23, 2002
Jul 23, 2002
590
} /* zip_find_entry */
Jul 13, 2002
Jul 13, 2002
591
592
Jul 23, 2002
Jul 23, 2002
593
594
595
596
597
598
599
600
601
602
603
604
605
606
/* 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
607
608
Jul 23, 2002
Jul 23, 2002
609
static void zip_expand_symlink_path(char *path)
Jul 8, 2001
Jul 8, 2001
610
{
Jul 23, 2002
Jul 23, 2002
611
612
char *ptr = path;
char *prevptr = path;
Jul 15, 2001
Jul 15, 2001
613
Jul 23, 2002
Jul 23, 2002
614
while (1)
Jul 28, 2001
Jul 28, 2001
615
{
Jul 23, 2002
Jul 23, 2002
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
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
651
Jul 23, 2002
Jul 23, 2002
652
653
654
655
656
657
658
659
660
661
if (*(ptr + 3) == '\0')
{
/* parent dir at end: move back one, if possible. */
*prevptr = '\0';
} /* if */
} /* if */
} /* if */
else
{
prevptr = ptr;
Jun 1, 2011
Jun 1, 2011
662
ptr++;
Jul 23, 2002
Jul 23, 2002
663
664
665
} /* else */
} /* while */
} /* zip_expand_symlink_path */
Jul 15, 2001
Jul 15, 2001
666
Sep 29, 2004
Sep 29, 2004
667
/* (forward reference: zip_follow_symlink and zip_resolve call each other.) */
Aug 30, 2010
Aug 30, 2010
668
static int zip_resolve(PHYSFS_Io *io, ZIPinfo *info, ZIPentry *entry);
Jul 15, 2001
Jul 15, 2001
669
Mar 29, 2002
Mar 29, 2002
670
/*
Jul 23, 2002
Jul 23, 2002
671
672
673
674
675
* 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
676
*/
Aug 30, 2010
Aug 30, 2010
677
static ZIPentry *zip_follow_symlink(PHYSFS_Io *io, ZIPinfo *info, char *path)
Jul 28, 2001
Jul 28, 2001
678
{
Jul 23, 2002
Jul 23, 2002
679
680
681
ZIPentry *entry;
zip_expand_symlink_path(path);
Aug 28, 2002
Aug 28, 2002
682
entry = zip_find_entry(info, path, NULL);
Jul 23, 2002
Jul 23, 2002
683
684
if (entry != NULL)
{
Aug 30, 2010
Aug 30, 2010
685
if (!zip_resolve(io, info, entry)) /* recursive! */
Jul 23, 2002
Jul 23, 2002
686
687
688
689
690
691
692
693
entry = NULL;
else
{
if (entry->symlink != NULL)
entry = entry->symlink;
} /* else */
} /* if */
Mar 14, 2005
Mar 14, 2005
694
allocator.Free(path);
Jan 28, 2010
Jan 28, 2010
695
return entry;
Jul 23, 2002
Jul 23, 2002
696
} /* zip_follow_symlink */
Jul 8, 2001
Jul 8, 2001
697
698
Aug 30, 2010
Aug 30, 2010
699
static int zip_resolve_symlink(PHYSFS_Io *io, ZIPinfo *info, ZIPentry *entry)
Jul 23, 2001
Jul 23, 2001
700
{
Jul 13, 2002
Jul 13, 2002
701
char *path;
Aug 30, 2010
Aug 30, 2010
702
const PHYSFS_uint32 size = entry->uncompressed_size;
Jul 13, 2002
Jul 13, 2002
703
704
int rc = 0;
Jul 23, 2002
Jul 23, 2002
705
706
707
708
709
710
/*
* 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.
*/
Mar 20, 2012
Mar 20, 2012
711
BAIL_IF_MACRO(!io->seek(io, entry->offset), ERRPASS, 0);
Jul 23, 2002
Jul 23, 2002
712
Mar 14, 2005
Mar 14, 2005
713
path = (char *) allocator.Malloc(size + 1);
Mar 20, 2012
Mar 20, 2012
714
BAIL_IF_MACRO(path == NULL, PHYSFS_ERR_OUT_OF_MEMORY, 0);
Jul 13, 2002
Jul 13, 2002
715
716
if (entry->compression_method == COMPMETH_NONE)
Mar 9, 2012
Mar 9, 2012
717
rc = __PHYSFS_readAll(io, path, size);
Jul 13, 2002
Jul 13, 2002
718
719
720
721
else /* symlink target path is compressed... */
{
z_stream stream;
Aug 30, 2010
Aug 30, 2010
722
const PHYSFS_uint32 complen = entry->compressed_size;
Mar 24, 2007
Mar 24, 2007
723
PHYSFS_uint8 *compressed = (PHYSFS_uint8*) __PHYSFS_smallAlloc(complen);
Jul 13, 2002
Jul 13, 2002
724
725
if (compressed != NULL)
{
Mar 9, 2012
Mar 9, 2012
726
if (__PHYSFS_readAll(io, compressed, complen))
Jul 13, 2002
Jul 13, 2002
727
{
Sep 23, 2004
Sep 23, 2004
728
initializeZStream(&stream);
Jul 13, 2002
Jul 13, 2002
729
stream.next_in = compressed;
Mar 24, 2007
Mar 24, 2007
730
stream.avail_in = complen;
Jan 31, 2003
Jan 31, 2003
731
stream.next_out = (unsigned char *) path;
Jul 13, 2002
Jul 13, 2002
732
733
734
stream.avail_out = size;
if (zlib_err(inflateInit2(&stream, -MAX_WBITS)) == Z_OK)
{
Jul 15, 2002
Jul 15, 2002
735
rc = zlib_err(inflate(&stream, Z_FINISH));
Jul 13, 2002
Jul 13, 2002
736
inflateEnd(&stream);
Jul 15, 2002
Jul 15, 2002
737
738
739
/* both are acceptable outcomes... */
rc = ((rc == Z_OK) || (rc == Z_STREAM_END));
Jul 13, 2002
Jul 13, 2002
740
741
} /* if */
} /* if */
Mar 24, 2007
Mar 24, 2007
742
__PHYSFS_smallFree(compressed);
Jul 13, 2002
Jul 13, 2002
743
744
} /* if */
} /* else */
Mar 29, 2002
Mar 29, 2002
745
Jul 13, 2002
Jul 13, 2002
746
if (!rc)
Mar 14, 2005
Mar 14, 2005
747
allocator.Free(path);
Jul 23, 2002
Jul 23, 2002
748
749
750
751
else
{
path[entry->uncompressed_size] = '\0'; /* null-terminate it. */
zip_convert_dos_path(entry, path);
Aug 30, 2010
Aug 30, 2010
752
entry->symlink = zip_follow_symlink(io, info, path);
Jul 23, 2002
Jul 23, 2002
753
754
} /* else */
Jan 28, 2010
Jan 28, 2010
755
return (entry->symlink != NULL);
Jul 23, 2002
Jul 23, 2002
756
757
758
759
760
761
} /* zip_resolve_symlink */
/*
* Parse the local file header of an entry, and update entry->offset.
*/
Aug 30, 2010
Aug 30, 2010
762
static int zip_parse_local(PHYSFS_Io *io, ZIPentry *entry)
Jul 23, 2002
Jul 23, 2002
763
764
765
766
767
768
{
PHYSFS_uint32 ui32;
PHYSFS_uint16 ui16;
PHYSFS_uint16 fnamelen;
PHYSFS_uint16 extralen;
Mar 30, 2003
Mar 30, 2003
769
770
771
772
773
774
775
/*
* 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.
*/
Mar 20, 2012
Mar 20, 2012
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
BAIL_IF_MACRO(!io->seek(io, entry->offset), ERRPASS, 0);
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0);
BAIL_IF_MACRO(ui32 != ZIP_LOCAL_FILE_SIG, PHYSFS_ERR_CORRUPT, 0);
BAIL_IF_MACRO(!readui16(io, &ui16), ERRPASS, 0);
BAIL_IF_MACRO(ui16 != entry->version_needed, PHYSFS_ERR_CORRUPT, 0);
BAIL_IF_MACRO(!readui16(io, &ui16), ERRPASS, 0); /* general bits. */
BAIL_IF_MACRO(!readui16(io, &ui16), ERRPASS, 0);
BAIL_IF_MACRO(ui16 != entry->compression_method, PHYSFS_ERR_CORRUPT, 0);
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0); /* date/time */
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0);
BAIL_IF_MACRO(ui32 && (ui32 != entry->crc), PHYSFS_ERR_CORRUPT, 0);
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0);
BAIL_IF_MACRO(ui32 && (ui32!=entry->compressed_size),PHYSFS_ERR_CORRUPT,0);
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0);
BAIL_IF_MACRO(ui32&&(ui32!=entry->uncompressed_size),PHYSFS_ERR_CORRUPT,0);
BAIL_IF_MACRO(!readui16(io, &fnamelen), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &extralen), ERRPASS, 0);
Jul 23, 2002
Jul 23, 2002
793
794
entry->offset += fnamelen + extralen + 30;
Jan 28, 2010
Jan 28, 2010
795
return 1;
Jul 23, 2002
Jul 23, 2002
796
797
798
} /* zip_parse_local */
Aug 30, 2010
Aug 30, 2010
799
static int zip_resolve(PHYSFS_Io *io, ZIPinfo *info, ZIPentry *entry)
Jul 23, 2002
Jul 23, 2002
800
801
802
803
804
{
int retval = 1;
ZipResolveType resolve_type = entry->resolved;
/* Don't bother if we've failed to resolve this entry before. */
Mar 20, 2012
Mar 20, 2012
805
806
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_FILE, PHYSFS_ERR_CORRUPT, 0);
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_SYMLINK, PHYSFS_ERR_CORRUPT, 0);
Jul 23, 2002
Jul 23, 2002
807
808
/* uhoh...infinite symlink loop! */
Mar 20, 2012
Mar 20, 2012
809
BAIL_IF_MACRO(resolve_type == ZIP_RESOLVING, PHYSFS_ERR_SYMLINK_LOOP, 0);
Jul 23, 2002
Jul 23, 2002
810
811
812
813
814
815
816
817
818
819
820
821
/*
* 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;
Aug 30, 2010
Aug 30, 2010
822
retval = zip_parse_local(io, entry);
Jul 23, 2002
Jul 23, 2002
823
824
825
826
827
828
829
830
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)
Aug 30, 2010
Aug 30, 2010
831
retval = zip_resolve_symlink(io, info, entry);
Jul 23, 2002
Jul 23, 2002
832
833
834
835
836
837
} /* 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
838
} /* if */
Mar 29, 2002
Mar 29, 2002
839
Jan 28, 2010
Jan 28, 2010
840
return retval;
Jul 23, 2002
Jul 23, 2002
841
} /* zip_resolve */
Jul 23, 2001
Jul 23, 2001
842
843
Jul 23, 2002
Jul 23, 2002
844
static int zip_version_does_symlinks(PHYSFS_uint32 version)
Jul 23, 2001
Jul 23, 2001
845
846
{
int retval = 0;
Apr 3, 2002
Apr 3, 2002
847
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((version >> 8) & 0xFF);
Jul 23, 2001
Jul 23, 2001
848
849
850
switch (hosttype)
{
Jul 15, 2002
Jul 15, 2002
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
/*
* 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
868
869
870
871
retval = 1;
break;
} /* switch */
Jan 28, 2010
Jan 28, 2010
872
return retval;
Jul 23, 2002
Jul 23, 2002
873
874
875
} /* zip_version_does_symlinks */
Apr 29, 2007
Apr 29, 2007
876
static int zip_entry_is_symlink(const ZIPentry *entry)
Jul 23, 2002
Jul 23, 2002
877
{
Jan 28, 2010
Jan 28, 2010
878
879
880
return ((entry->resolved == ZIP_UNRESOLVED_SYMLINK) ||
(entry->resolved == ZIP_BROKEN_SYMLINK) ||
(entry->symlink));
Jul 23, 2002
Jul 23, 2002
881
} /* zip_entry_is_symlink */
Jul 23, 2001
Jul 23, 2001
882
883
Jul 23, 2002
Jul 23, 2002
884
static int zip_has_symlink_attr(ZIPentry *entry, PHYSFS_uint32 extern_attr)
Jul 23, 2001
Jul 23, 2001
885
{
Jul 15, 2002
Jul 15, 2002
886
PHYSFS_uint16 xattr = ((extern_attr >> 16) & 0xFFFF);
Jan 28, 2010
Jan 28, 2010
887
888
889
return ( (zip_version_does_symlinks(entry->version)) &&
(entry->uncompressed_size > 0) &&
((xattr & UNIX_FILETYPE_MASK) == UNIX_FILETYPE_SYMLINK) );
Jul 23, 2002
Jul 23, 2002
890
} /* zip_has_symlink_attr */
Jul 23, 2001
Jul 23, 2001
891
892
Jan 31, 2003
Jan 31, 2003
893
static PHYSFS_sint64 zip_dos_time_to_physfs_time(PHYSFS_uint32 dostime)
Jul 23, 2001
Jul 23, 2001
894
{
Jul 23, 2002
Jul 23, 2002
895
PHYSFS_uint32 dosdate;
Jul 13, 2002
Jul 13, 2002
896
897
struct tm unixtime;
memset(&unixtime, '\0', sizeof (unixtime));
Jul 28, 2001
Jul 28, 2001
898
Jul 23, 2002
Jul 23, 2002
899
900
dosdate = (PHYSFS_uint32) ((dostime >> 16) & 0xFFFF);
dostime &= 0xFFFF;
Jul 23, 2001
Jul 23, 2001
901
Jul 23, 2002
Jul 23, 2002
902
903
904
905
906
907
908
909
910
911
912
913
/* 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
914
Jan 28, 2010
Jan 28, 2010
915
return ((PHYSFS_sint64) mktime(&unixtime));
Jul 23, 2002
Jul 23, 2002
916
} /* zip_dos_time_to_physfs_time */
Jul 13, 2002
Jul 13, 2002
917
918
Aug 30, 2010
Aug 30, 2010
919
static int zip_load_entry(PHYSFS_Io *io, ZIPentry *entry, PHYSFS_uint32 ofs_fixup)
Jul 13, 2002
Jul 13, 2002
920
921
922
923
924
925
926
927
{
PHYSFS_uint16 fnamelen, extralen, commentlen;
PHYSFS_uint32 external_attr;
PHYSFS_uint16 ui16;
PHYSFS_uint32 ui32;
PHYSFS_sint64 si64;
/* sanity check with central directory signature... */
Mar 20, 2012
Mar 20, 2012
928
929
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0);
BAIL_IF_MACRO(ui32 != ZIP_CENTRAL_DIR_SIG, PHYSFS_ERR_CORRUPT, 0);
Jul 13, 2002
Jul 13, 2002
930
931
/* Get the pertinent parts of the record... */
Mar 20, 2012
Mar 20, 2012
932
933
934
935
936
BAIL_IF_MACRO(!readui16(io, &entry->version), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &entry->version_needed), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &ui16), ERRPASS, 0); /* general bits */
BAIL_IF_MACRO(!readui16(io, &entry->compression_method), ERRPASS, 0);
BAIL_IF_MACRO(!readui32(io, &ui32), ERRPASS, 0);
Jul 23, 2002
Jul 23, 2002
937
entry->last_mod_time = zip_dos_time_to_physfs_time(ui32);
Mar 20, 2012
Mar 20, 2012
938
939
940
941
942
943
944
945
946
947
BAIL_IF_MACRO(!readui32(io, &entry->crc), ERRPASS, 0);
BAIL_IF_MACRO(!readui32(io, &entry->compressed_size), ERRPASS, 0);
BAIL_IF_MACRO(!readui32(io, &entry->uncompressed_size), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &fnamelen), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &extralen), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &commentlen), ERRPASS, 0);
BAIL_IF_MACRO(!readui16(io, &ui16), ERRPASS, 0); /* disk number start */
BAIL_IF_MACRO(!readui16(io, &ui16), ERRPASS, 0); /* internal file attribs */
BAIL_IF_MACRO(!readui32(io, &external_attr), ERRPASS, 0);
BAIL_IF_MACRO(!readui32(io, &entry->offset), ERRPASS, 0);
Jul 13, 2002
Jul 13, 2002
948
entry->offset += ofs_fixup;
Jul 23, 2002
Jul 23, 2002
949
950
951
952
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
953
Mar 14, 2005
Mar 14, 2005
954
entry->name = (char *) allocator.Malloc(fnamelen + 1);
Mar 20, 2012
Mar 20, 2012
955
BAIL_IF_MACRO(entry->name == NULL, PHYSFS_ERR_OUT_OF_MEMORY, 0);
Mar 9, 2012
Mar 9, 2012
956
if (!__PHYSFS_readAll(io, entry->name, fnamelen))
Jul 23, 2002
Jul 23, 2002
957
goto zip_load_entry_puked;
Jul 13, 2002
Jul 13, 2002
958
959
entry->name[fnamelen] = '\0'; /* null-terminate the filename. */
Jul 23, 2002
Jul 23, 2002
960
zip_convert_dos_path(entry, entry->name);
Jul 13, 2002
Jul 13, 2002
961
Aug 30, 2010
Aug 30, 2010
962
si64 = io->tell(io);
Jul 13, 2002
Jul 13, 2002
963
if (si64 == -1)
Jul 23, 2002
Jul 23, 2002
964
goto zip_load_entry_puked;
Jul 28, 2001
Jul 28, 2001
965
Jul 13, 2002
Jul 13, 2002
966
/* seek to the start of the next entry in the central directory... */
Aug 30, 2010
Aug 30, 2010
967
if (!io->seek(io, si64 + extralen + commentlen))
Jul 23, 2002
Jul 23, 2002
968
goto zip_load_entry_puked;
Jul 28, 2001
Jul 28, 2001
969
Jan 28, 2010
Jan 28, 2010
970
return 1; /* success. */
Jul 28, 2001
Jul 28, 2001
971
Jul 23, 2002
Jul 23, 2002
972
zip_load_entry_puked:
Mar 14, 2005
Mar 14, 2005
973
allocator.Free(entry->name);
Jan 28, 2010
Jan 28, 2010
974
return 0; /* failure. */
Jul 23, 2002
Jul 23, 2002
975
976
977
} /* zip_load_entry */
Aug 20, 2002
Aug 20, 2002
978
static int zip_entry_cmp(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
Jul 23, 2002
Jul 23, 2002
979
{
Feb 20, 2008
Feb 20, 2008
980
981
982
if (one != two)
{
const ZIPentry *a = (const ZIPentry *) _a;
Jan 28, 2010
Jan 28, 2010
983
return strcmp(a[one].name, a[two].name);
Feb 20, 2008
Feb 20, 2008
984
985
986
} /* if */
return 0;
Aug 20, 2002
Aug 20, 2002
987
} /* zip_entry_cmp */
Jul 23, 2002
Jul 23, 2002
988
989
Aug 20, 2002
Aug 20, 2002
990
static void zip_entry_swap(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two)
Jul 23, 2002
Jul 23, 2002
991
{
Feb 20, 2008
Feb 20, 2008
992
993
994
995
996
997
998
999
1000
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 */