Skip to content

Latest commit

 

History

History
1211 lines (972 loc) · 36.6 KB

zip.c

File metadata and controls

1211 lines (972 loc) · 36.6 KB
 
Jul 7, 2001
Jul 7, 2001
1
2
3
4
5
/*
* ZIP support routines for PhysicsFS.
*
* Please see the file LICENSE in the source's root directory.
*
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
12
13
14
15
#if HAVE_CONFIG_H
# include <config.h>
#endif
#if (defined PHYSFS_SUPPORTS_ZIP)
Jul 7, 2001
Jul 7, 2001
16
17
#include <stdio.h>
#include <stdlib.h>
Jul 15, 2001
Jul 15, 2001
18
#include <string.h>
Mar 29, 2002
Mar 29, 2002
19
#include <assert.h>
Jun 6, 2002
Jun 6, 2002
20
#include <time.h>
Jul 13, 2002
Jul 13, 2002
21
#include <errno.h>
Jul 15, 2001
Jul 15, 2001
22
Jul 13, 2002
Jul 13, 2002
23
24
#include "physfs.h"
#include "zlib.h"
Jul 7, 2001
Jul 7, 2001
25
26
27
28
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
Jul 15, 2001
Jul 15, 2001
29
Jul 13, 2002
Jul 13, 2002
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* A buffer of ZIP_READBUFSIZE is malloc() for each compressed file opened,
* and is free()'d when you close the file; compressed data is read into
* 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)
/*
* One ZIPentry is kept for each file in an open ZIP archive.
*/
Jul 15, 2001
Jul 15, 2001
47
48
typedef struct
{
Jul 13, 2002
Jul 13, 2002
49
50
51
52
53
54
55
56
57
58
59
60
char *name; /* Name of file in archive */
char *symlink; /* NULL or file we link to */
int fixed_up; /* Have we updated offset? */
PHYSFS_uint32 offset; /* offset of data in file */
PHYSFS_uint16 version; /* version made by */
PHYSFS_uint16 version_needed; /* version needed to extract */
PHYSFS_uint16 flag; /* general purpose bit flag */
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
61
62
} ZIPentry;
Jul 13, 2002
Jul 13, 2002
63
64
65
/*
* One ZIPinfo is kept for each open ZIP archive.
*/
Jul 28, 2001
Jul 28, 2001
66
67
typedef struct
{
Jul 13, 2002
Jul 13, 2002
68
69
70
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
71
72
} ZIPinfo;
Jul 13, 2002
Jul 13, 2002
73
74
75
/*
* One ZIPfileinfo is kept for each open file in a ZIP archive.
*/
Jul 15, 2001
Jul 15, 2001
76
77
typedef struct
{
Jul 13, 2002
Jul 13, 2002
78
79
80
81
82
83
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
84
85
86
} ZIPfileinfo;
Jul 13, 2002
Jul 13, 2002
87
88
89
90
91
92
93
94
95
96
/* 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
97
98
99
100
#define UNIX_FILETYPE_MASK 0170000
#define UNIX_FILETYPE_SYMLINK 0120000
Jul 13, 2002
Jul 13, 2002
101
102
103
#define MAXZIPENTRYSIZE 256 /* !!! FIXME: get rid of this. */
Jul 28, 2001
Jul 28, 2001
104
105
106
107
/* Number of symlinks to follow before we assume it's a recursive link... */
#define SYMLINK_RECURSE_COUNT 20
Mar 24, 2002
Mar 24, 2002
108
109
static PHYSFS_sint64 ZIP_read(FileHandle *handle, void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount);
Sep 2, 2001
Sep 2, 2001
110
static int ZIP_eof(FileHandle *handle);
Mar 24, 2002
Mar 24, 2002
111
112
113
static PHYSFS_sint64 ZIP_tell(FileHandle *handle);
static int ZIP_seek(FileHandle *handle, PHYSFS_uint64 offset);
static PHYSFS_sint64 ZIP_fileLength(FileHandle *handle);
Sep 2, 2001
Sep 2, 2001
114
115
static int ZIP_fileClose(FileHandle *handle);
static int ZIP_isArchive(const char *filename, int forWriting);
Jul 13, 2002
Jul 13, 2002
116
static char *get_zip_realpath(void *in, ZIPentry *entry);
Sep 2, 2001
Sep 2, 2001
117
118
119
120
121
122
123
static DirHandle *ZIP_openArchive(const char *name, int forWriting);
static LinkedStringList *ZIP_enumerateFiles(DirHandle *h,
const char *dirname,
int omitSymLinks);
static int ZIP_exists(DirHandle *h, const char *name);
static int ZIP_isDirectory(DirHandle *h, const char *name);
static int ZIP_isSymLink(DirHandle *h, const char *name);
Jun 6, 2002
Jun 6, 2002
124
static PHYSFS_sint64 ZIP_getLastModTime(DirHandle *h, const char *name);
Sep 2, 2001
Sep 2, 2001
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
static FileHandle *ZIP_openRead(DirHandle *h, const char *filename);
static void ZIP_dirClose(DirHandle *h);
static const FileFunctions __PHYSFS_FileFunctions_ZIP =
{
ZIP_read, /* read() method */
NULL, /* write() method */
ZIP_eof, /* eof() method */
ZIP_tell, /* tell() method */
ZIP_seek, /* seek() method */
ZIP_fileLength, /* fileLength() method */
ZIP_fileClose /* fileClose() method */
};
const DirFunctions __PHYSFS_DirFunctions_ZIP =
{
ZIP_isArchive, /* isArchive() method */
ZIP_openArchive, /* openArchive() method */
ZIP_enumerateFiles, /* enumerateFiles() method */
ZIP_exists, /* exists() method */
ZIP_isDirectory, /* isDirectory() method */
ZIP_isSymLink, /* isSymLink() method */
Jun 6, 2002
Jun 6, 2002
149
ZIP_getLastModTime, /* getLastModTime() method */
Sep 2, 2001
Sep 2, 2001
150
151
152
153
154
155
156
157
158
159
160
161
ZIP_openRead, /* openRead() method */
NULL, /* openWrite() method */
NULL, /* openAppend() method */
NULL, /* remove() method */
NULL, /* mkdir() method */
ZIP_dirClose /* dirClose() method */
};
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP =
{
"ZIP",
"PkZip/WinZip/Info-Zip compatible",
Sep 14, 2001
Sep 14, 2001
162
"Ryan C. Gordon <icculus@clutteredmind.org>",
Sep 2, 2001
Sep 2, 2001
163
164
165
166
167
"http://www.icculus.org/physfs/",
};
Jul 13, 2002
Jul 13, 2002
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
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
232
233
234
235
236
/*
* Wrap all zlib calls in this, so the physfs error state is set appropriately.
*/
static int zlib_err(int rc)
{
const char *err = NULL;
switch (rc)
{
case Z_OK:
case Z_STREAM_END:
break; /* not errors. */
case Z_ERRNO:
err = strerror(errno);
break;
case Z_NEED_DICT:
err = "zlib: need dictionary";
break;
case Z_DATA_ERROR:
err = "zlib: need dictionary";
break;
case Z_MEM_ERROR:
err = "zlib: memory error";
break;
case Z_BUF_ERROR:
err = "zlib: buffer error";
break;
case Z_VERSION_ERROR:
err = "zlib: version error";
break;
default:
err = "unknown zlib error";
break;
} /* switch */
if (err != NULL)
__PHYSFS_setError(err);
return(rc);
} /* 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);
return(1);
} /* 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);
return(1);
} /* readui16 */
static PHYSFS_sint64 ZIP_read(FileHandle *handle, void *buf,
Mar 24, 2002
Mar 24, 2002
237
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
Jul 8, 2001
Jul 8, 2001
238
{
Jul 13, 2002
Jul 13, 2002
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque);
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);
objCount = maxread / objSize;
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,
1, br);
if (br <= 0)
break;
finfo->compressed_position += br;
finfo->stream.next_in = finfo->buffer;
finfo->stream.avail_in = br;
} /* if */
} /* if */
Jul 23, 2001
Jul 23, 2001
292
Jul 13, 2002
Jul 13, 2002
293
294
rc = zlib_err(inflate(&finfo->stream, Z_SYNC_FLUSH));
retval += (finfo->stream.total_out - before);
Jul 23, 2001
Jul 23, 2001
295
Jul 13, 2002
Jul 13, 2002
296
297
298
299
300
301
302
303
304
305
306
if (rc != Z_OK)
break;
} /* while */
retval /= objSize;
} /* else */
if (retval > 0)
finfo->uncompressed_position += (retval * objSize);
return(retval);
Jul 8, 2001
Jul 8, 2001
307
308
309
310
311
} /* ZIP_read */
static int ZIP_eof(FileHandle *handle)
{
Jul 13, 2002
Jul 13, 2002
312
313
ZIPfileinfo *finfo = ((ZIPfileinfo *) (handle->opaque));
return(finfo->uncompressed_position >= finfo->entry->uncompressed_size);
Jul 8, 2001
Jul 8, 2001
314
315
316
} /* ZIP_eof */
Mar 24, 2002
Mar 24, 2002
317
static PHYSFS_sint64 ZIP_tell(FileHandle *handle)
Jul 8, 2001
Jul 8, 2001
318
{
Jul 13, 2002
Jul 13, 2002
319
return(((ZIPfileinfo *) (handle->opaque))->uncompressed_position);
Jul 8, 2001
Jul 8, 2001
320
321
322
} /* ZIP_tell */
Mar 24, 2002
Mar 24, 2002
323
static int ZIP_seek(FileHandle *handle, PHYSFS_uint64 offset)
Jul 8, 2001
Jul 8, 2001
324
{
Jul 13, 2002
Jul 13, 2002
325
326
327
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque);
ZIPentry *entry = finfo->entry;
void *in = finfo->handle;
Jul 23, 2001
Jul 23, 2001
328
Jul 13, 2002
Jul 13, 2002
329
BAIL_IF_MACRO(offset > entry->uncompressed_size, ERR_PAST_EOF, 0);
Jul 23, 2001
Jul 23, 2001
330
Jul 13, 2002
Jul 13, 2002
331
if (entry->compression_method == COMPMETH_NONE)
Jul 23, 2001
Jul 23, 2001
332
{
Jul 13, 2002
Jul 13, 2002
333
334
335
336
PHYSFS_sint64 newpos = offset + entry->offset;
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, newpos), NULL, 0);
finfo->uncompressed_position = newpos;
} /* if */
Jul 23, 2001
Jul 23, 2001
337
Jul 13, 2002
Jul 13, 2002
338
else
Jul 23, 2001
Jul 23, 2001
339
{
Jul 13, 2002
Jul 13, 2002
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/*
* 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
* redecode, but we don't rewind first.
*/
if (offset < finfo->uncompressed_position)
{
/* we do a copy so state is sane if inflateInit2() fails. */
z_stream str;
memset(&str, '\0', sizeof (z_stream));
if (zlib_err(inflateInit2(&str, -MAX_WBITS)) != Z_OK)
return(0);
Jul 17, 2002
Jul 17, 2002
354
355
356
if (!__PHYSFS_platformSeek(in, entry->offset))
return(0);
Jul 13, 2002
Jul 13, 2002
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
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];
PHYSFS_uint32 maxread = offset - finfo->uncompressed_position;
if (maxread > sizeof (buf))
maxread = sizeof (buf);
if (ZIP_read(handle, buf, maxread, 1) != 1)
return(0);
} /* while */
} /* else */
return(1);
Jul 8, 2001
Jul 8, 2001
375
376
377
} /* ZIP_seek */
Mar 24, 2002
Mar 24, 2002
378
static PHYSFS_sint64 ZIP_fileLength(FileHandle *handle)
Jul 9, 2001
Jul 9, 2001
379
{
Jul 23, 2001
Jul 23, 2001
380
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque);
Jul 13, 2002
Jul 13, 2002
381
return(finfo->entry->uncompressed_size);
Jul 9, 2001
Jul 9, 2001
382
383
384
} /* ZIP_fileLength */
Jul 8, 2001
Jul 8, 2001
385
386
static int ZIP_fileClose(FileHandle *handle)
{
Jul 23, 2001
Jul 23, 2001
387
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque);
Jul 13, 2002
Jul 13, 2002
388
389
390
391
392
393
394
395
__PHYSFS_platformClose(finfo->handle);
if (finfo->entry->compression_method != COMPMETH_NONE)
inflateEnd(&finfo->stream);
if (finfo->buffer != NULL)
free(finfo->buffer);
Jul 23, 2001
Jul 23, 2001
396
397
free(finfo);
return(1);
Jul 8, 2001
Jul 8, 2001
398
399
400
} /* ZIP_fileClose */
Jul 13, 2002
Jul 13, 2002
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
static PHYSFS_sint64 find_end_of_central_dir(void *in, PHYSFS_sint64 *len)
{
/* !!! FIXME: potential race condition! */
/* !!! FIXME: mutex this or switch to smaller stack-based buffer. */
static PHYSFS_uint8 buf[0xFFFF + 20];
PHYSFS_sint32 i;
PHYSFS_sint64 filelen;
PHYSFS_sint64 filepos;
PHYSFS_sint32 maxread;
filelen = __PHYSFS_platformFileLength(in);
BAIL_IF_MACRO(filelen == -1, NULL, 0);
/*
* 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
* searching for that signature after 64k at most, and call it a
* corrupted zipfile.
*/
/*
* !!! FIXME: This was easier than reading backwards in chunks, but it's
* !!! FIXME: rather memory hungry.
*/
if (sizeof (buf) < filelen)
{
filepos = filelen - sizeof (buf);
maxread = sizeof (buf);
} /* if */
else
{
filepos = 0;
maxread = filelen;
} /* else */
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, filepos), NULL, -1);
BAIL_IF_MACRO(__PHYSFS_platformRead(in, buf, maxread, 1) != 1, NULL, -1);
for (i = maxread - 4; i > 0; i--)
{
if ((buf[i + 0] == 0x50) &&
(buf[i + 1] == 0x4B) &&
(buf[i + 2] == 0x05) &&
(buf[i + 3] == 0x06) )
{
break; /* that's the signature! */
} /* if */
} /* for */
BAIL_IF_MACRO(i < 0, ERR_NOT_AN_ARCHIVE, -1);
if (len != NULL)
*len = filelen;
return(filelen - (maxread - i));
} /* find_end_of_central_dir */
Jul 8, 2001
Jul 8, 2001
465
466
static int ZIP_isArchive(const char *filename, int forWriting)
{
Jul 13, 2002
Jul 13, 2002
467
468
469
PHYSFS_uint32 sig;
int retval;
void *in;
Jul 15, 2001
Jul 15, 2001
470
Jul 13, 2002
Jul 13, 2002
471
472
473
474
475
476
477
478
479
480
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.
*/
BAIL_IF_MACRO(!readui32(in, &sig), NULL, 0);
retval = (sig == ZIP_LOCAL_FILE_SIG);
if (!retval)
Jul 15, 2001
Jul 15, 2001
481
{
Jul 13, 2002
Jul 13, 2002
482
483
484
485
486
487
/*
* 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 = (find_end_of_central_dir(in, NULL) == -1);
Jul 15, 2001
Jul 15, 2001
488
489
} /* if */
Jul 13, 2002
Jul 13, 2002
490
__PHYSFS_platformClose(in);
Jul 15, 2001
Jul 15, 2001
491
return(retval);
Jul 8, 2001
Jul 8, 2001
492
493
494
} /* ZIP_isArchive */
Jul 13, 2002
Jul 13, 2002
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
static int zip_set_open_position(void *in, ZIPentry *entry)
{
/*
* 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 (!entry->fixed_up)
{
PHYSFS_uint32 ui32;
PHYSFS_uint16 ui16;
PHYSFS_uint16 fnamelen;
PHYSFS_uint16 extralen;
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);
BAIL_IF_MACRO(ui32 != entry->crc, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
BAIL_IF_MACRO(ui32 != entry->compressed_size, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
BAIL_IF_MACRO(ui32 != entry->uncompressed_size, ERR_CORRUPTED, 0);
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0);
entry->offset += fnamelen + extralen + 30;
entry->fixed_up = 1;
} /* if */
return(__PHYSFS_platformSeek(in, entry->offset));
} /* zip_set_open_position */
static void freeEntries(ZIPinfo *info, int count)
Jul 8, 2001
Jul 8, 2001
539
{
Jul 28, 2001
Jul 28, 2001
540
int i;
Jul 15, 2001
Jul 15, 2001
541
Jul 28, 2001
Jul 28, 2001
542
543
544
545
546
547
for (i = 0; i < count; i++)
{
free(info->entries[i].name);
if (info->entries[i].symlink != NULL)
free(info->entries[i].symlink);
} /* for */
Jul 15, 2001
Jul 15, 2001
548
Jul 28, 2001
Jul 28, 2001
549
550
free(info->entries);
} /* freeEntries */
Jul 15, 2001
Jul 15, 2001
551
552
Mar 29, 2002
Mar 29, 2002
553
554
555
556
557
558
/*
* !!! FIXME: Really implement this.
* !!! FIXME: symlinks in zipfiles can be relative paths, including
* !!! FIXME: "." and ".." entries. These need to be parsed out.
* !!! FIXME: For now, though, we're just copying the relative path. Oh well.
*/
Jul 13, 2002
Jul 13, 2002
559
static char *expand_symlink_path(char *path, ZIPentry *entry)
Jul 28, 2001
Jul 28, 2001
560
{
Jul 13, 2002
Jul 13, 2002
561
/*
Mar 29, 2002
Mar 29, 2002
562
char *retval = (char *) malloc(strlen(path) + 1);
Jul 28, 2001
Jul 28, 2001
563
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
Mar 29, 2002
Mar 29, 2002
564
strcpy(retval, path);
Jul 15, 2001
Jul 15, 2001
565
return(retval);
Jul 13, 2002
Jul 13, 2002
566
567
*/
return(path); /* !!! FIXME */
Mar 29, 2002
Mar 29, 2002
568
} /* expand_symlink_path */
Jul 8, 2001
Jul 8, 2001
569
570
Jul 13, 2002
Jul 13, 2002
571
static char *get_zip_realpath(void *in, ZIPentry *entry)
Jul 23, 2001
Jul 23, 2001
572
{
Jul 13, 2002
Jul 13, 2002
573
574
575
576
577
578
579
580
581
582
583
584
585
586
char *path;
PHYSFS_uint32 size = entry->uncompressed_size;
int rc = 0;
BAIL_IF_MACRO(!zip_set_open_position(in, entry), NULL, NULL);
path = (char *) malloc(size + 1);
BAIL_IF_MACRO(path == NULL, ERR_OUT_OF_MEMORY, NULL);
if (entry->compression_method == COMPMETH_NONE)
rc = (__PHYSFS_platformRead(in, path, size, 1) == 1);
else /* symlink target path is compressed... */
{
z_stream stream;
Jul 15, 2002
Jul 15, 2002
587
PHYSFS_uint32 compsize = entry->compressed_size;
Jul 13, 2002
Jul 13, 2002
588
589
590
591
592
593
594
595
596
597
598
599
PHYSFS_uint8 *compressed = (PHYSFS_uint8 *) malloc(compsize);
if (compressed != NULL)
{
if (__PHYSFS_platformRead(in, compressed, compsize, 1) == 1)
{
memset(&stream, '\0', sizeof (z_stream));
stream.next_in = compressed;
stream.avail_in = compsize;
stream.next_out = path;
stream.avail_out = size;
if (zlib_err(inflateInit2(&stream, -MAX_WBITS)) == Z_OK)
{
Jul 15, 2002
Jul 15, 2002
600
rc = zlib_err(inflate(&stream, Z_FINISH));
Jul 13, 2002
Jul 13, 2002
601
inflateEnd(&stream);
Jul 15, 2002
Jul 15, 2002
602
603
604
/* both are acceptable outcomes... */
rc = ((rc == Z_OK) || (rc == Z_STREAM_END));
Jul 13, 2002
Jul 13, 2002
605
606
607
608
609
} /* if */
} /* if */
free(compressed);
} /* if */
} /* else */
Mar 29, 2002
Mar 29, 2002
610
Jul 13, 2002
Jul 13, 2002
611
612
613
614
615
616
if (!rc)
{
free(path);
return(NULL);
} /* if */
path[entry->uncompressed_size] = '\0'; /* null-terminate it. */
Mar 29, 2002
Mar 29, 2002
617
Jul 13, 2002
Jul 13, 2002
618
619
return(expand_symlink_path(path, entry)); /* retval is realloc()'d path. */
} /* get_zip_realpath */
Jul 23, 2001
Jul 23, 2001
620
621
Jul 13, 2002
Jul 13, 2002
622
static int version_does_symlinks(PHYSFS_uint32 version)
Jul 23, 2001
Jul 23, 2001
623
624
{
int retval = 0;
Apr 3, 2002
Apr 3, 2002
625
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((version >> 8) & 0xFF);
Jul 23, 2001
Jul 23, 2001
626
627
628
switch (hosttype)
{
Jul 15, 2002
Jul 15, 2002
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
/*
* 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
646
647
648
649
650
651
652
653
retval = 1;
break;
} /* switch */
return(retval);
} /* version_does_symlinks */
Jul 13, 2002
Jul 13, 2002
654
static int entry_is_symlink(ZIPentry *entry, PHYSFS_uint32 extern_attr)
Jul 23, 2001
Jul 23, 2001
655
{
Jul 15, 2002
Jul 15, 2002
656
657
PHYSFS_uint16 xattr = ((extern_attr >> 16) & 0xFFFF);
Jul 23, 2001
Jul 23, 2001
658
return (
Jul 13, 2002
Jul 13, 2002
659
660
(version_does_symlinks(entry->version)) &&
(entry->uncompressed_size > 0) &&
Jul 15, 2002
Jul 15, 2002
661
((xattr & UNIX_FILETYPE_MASK) == UNIX_FILETYPE_SYMLINK)
Jul 23, 2001
Jul 23, 2001
662
663
664
665
);
} /* entry_is_symlink */
Jul 13, 2002
Jul 13, 2002
666
PHYSFS_sint64 dos_time_to_physfs_time(PHYSFS_uint32 dostime)
Jul 23, 2001
Jul 23, 2001
667
{
Jul 13, 2002
Jul 13, 2002
668
669
670
PHYSFS_uint32 dosdate = (PHYSFS_uint32) (dostime >> 16);
struct tm unixtime;
memset(&unixtime, '\0', sizeof (unixtime));
Jul 28, 2001
Jul 28, 2001
671
Jul 13, 2002
Jul 13, 2002
672
673
674
unixtime.tm_mday = (PHYSFS_uint32) (dosdate & 0x1F);
unixtime.tm_mon = (PHYSFS_uint32) ((((dosdate) & 0x1E0) / 0x20) - 1);
unixtime.tm_year = (PHYSFS_uint32) (((dosdate & 0x0FE00) / 0x0200) + 80);
Jul 23, 2001
Jul 23, 2001
675
Jul 13, 2002
Jul 13, 2002
676
677
678
unixtime.tm_hour = (PHYSFS_uint32) ((dostime & 0xF800) / 0x800);
unixtime.tm_min = (PHYSFS_uint32) ((dostime & 0x7E0) / 0x20);
unixtime.tm_sec = (PHYSFS_uint32) (2 * (dostime & 0x1F));
Jul 28, 2001
Jul 28, 2001
679
Jul 13, 2002
Jul 13, 2002
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
return((PHYSFS_sint64) mktime(&unixtime));
} /* dos_time_to_physfs_time */
static int load_zip_entry(void *in, ZIPentry *entry, PHYSFS_uint32 ofs_fixup)
{
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);
BAIL_IF_MACRO(!readui16(in, &entry->flag), NULL, 0);
BAIL_IF_MACRO(!readui16(in, &entry->compression_method), NULL, 0);
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
entry->last_mod_time = dos_time_to_physfs_time(ui32);
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;
entry->fixed_up = 0; /* we need to do a second fixup at openRead(). */
entry->name = (char *) malloc(fnamelen + 1);
BAIL_IF_MACRO(entry->name == NULL, ERR_OUT_OF_MEMORY, 0);
if (__PHYSFS_platformRead(in, entry->name, fnamelen, 1) != 1)
goto load_zip_entry_puked;
entry->name[fnamelen] = '\0'; /* null-terminate the filename. */
si64 = __PHYSFS_platformTell(in);
if (si64 == -1)
goto load_zip_entry_puked;
/* If this is a symlink, resolve it. */
if (!entry_is_symlink(entry, external_attr))
entry->symlink = NULL;
else
Jul 23, 2001
Jul 23, 2001
731
{
Jul 13, 2002
Jul 13, 2002
732
733
734
735
entry->symlink = get_zip_realpath(in, entry);
if (entry->symlink == NULL)
goto load_zip_entry_puked;
} /* else */
Jul 28, 2001
Jul 28, 2001
736
Jul 13, 2002
Jul 13, 2002
737
738
739
/* seek to the start of the next entry in the central directory... */
if (!__PHYSFS_platformSeek(in, si64 + extralen + commentlen))
goto load_zip_entry_puked;
Jul 28, 2001
Jul 28, 2001
740
Jul 13, 2002
Jul 13, 2002
741
return(1); /* success. */
Jul 28, 2001
Jul 28, 2001
742
Jul 13, 2002
Jul 13, 2002
743
744
745
746
load_zip_entry_puked:
free(entry->name);
return(0); /* failure. */
} /* load_zip_entry */
Jul 28, 2001
Jul 28, 2001
747
748
Jul 13, 2002
Jul 13, 2002
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
static int load_zip_entries(void *in, DirHandle *dirh,
PHYSFS_uint32 data_ofs, PHYSFS_uint32 central_ofs)
{
ZIPinfo *info = (ZIPinfo *) dirh->opaque;
PHYSFS_uint32 max = info->entryCount;
PHYSFS_uint32 i;
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, central_ofs), NULL, 0);
info->entries = (ZIPentry *) malloc(sizeof (ZIPentry) * max);
BAIL_IF_MACRO(info->entries == NULL, ERR_OUT_OF_MEMORY, 0);
for (i = 0; i < max; i++)
{
if (!load_zip_entry(in, &info->entries[i], data_ofs))
Jul 28, 2001
Jul 28, 2001
764
{
Jul 13, 2002
Jul 13, 2002
765
freeEntries(info, i);
Jul 28, 2001
Jul 28, 2001
766
767
768
769
770
return(0);
} /* if */
} /* for */
return(1);
Jul 13, 2002
Jul 13, 2002
771
} /* load_zip_entries */
Jul 28, 2001
Jul 28, 2001
772
773
Jul 13, 2002
Jul 13, 2002
774
775
776
static int parse_end_of_central_dir(void *in, DirHandle *dirh,
PHYSFS_uint32 *data_start,
PHYSFS_uint32 *central_dir_ofs)
Jul 28, 2001
Jul 28, 2001
777
{
Jul 13, 2002
Jul 13, 2002
778
779
780
781
782
ZIPinfo *zipinfo = (ZIPinfo *) dirh->opaque;
PHYSFS_uint32 ui32;
PHYSFS_uint16 ui16;
PHYSFS_sint64 len;
PHYSFS_sint64 pos;
Jul 28, 2001
Jul 28, 2001
783
Jul 13, 2002
Jul 13, 2002
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
/* find the end-of-central-dir record, and seek to it. */
pos = find_end_of_central_dir(in, &len);
BAIL_IF_MACRO(pos == -1, NULL, 0);
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, pos), NULL, 0);
/* check signature again, just in case. */
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
BAIL_IF_MACRO(ui32 != ZIP_END_OF_CENTRAL_DIR_SIG, ERR_NOT_AN_ARCHIVE, 0);
/* number of this disk */
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0);
BAIL_IF_MACRO(ui16 != 0, ERR_UNSUPPORTED_ARCHIVE, 0);
/* number of the disk with the start of the central directory */
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0);
BAIL_IF_MACRO(ui16 != 0, ERR_UNSUPPORTED_ARCHIVE, 0);
Jul 28, 2001
Jul 28, 2001
800
Jul 13, 2002
Jul 13, 2002
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
/* total number of entries in the central dir on this disk */
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0);
/* total number of entries in the central dir */
BAIL_IF_MACRO(!readui16(in, &zipinfo->entryCount), NULL, 0);
BAIL_IF_MACRO(ui16 != zipinfo->entryCount, ERR_UNSUPPORTED_ARCHIVE, 0);
/* size of the central directory */
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0);
/* offset of central directory */
BAIL_IF_MACRO(!readui32(in, central_dir_ofs), NULL, 0);
BAIL_IF_MACRO(pos < *central_dir_ofs + ui32, ERR_UNSUPPORTED_ARCHIVE, 0);
/*
* For self-extracting archives, etc, there's crapola in the file
* before the zipfile records; we calculate how much data there is
* prepended by determining how far the central directory offset is
* from where it is supposed to be (start of end-of-central-dir minus
* sizeof central dir)...the difference in bytes is how much arbitrary
* data is at the start of the physical file.
*/
*data_start = pos - (*central_dir_ofs + ui32);
/* Now that we know the difference, fix up the central dir offset... */
*central_dir_ofs += *data_start;
/* zipfile comment length */
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0);
/*
* Make sure that the comment length matches to the end of file...
* If it doesn't, we're either in the wrong part of the file, or the
* file is corrupted, but we give up either way.
*/
BAIL_IF_MACRO((pos + 22 + ui16) != len, ERR_UNSUPPORTED_ARCHIVE, 0);
return(1); /* made it. */
} /* parse_end_of_central_dir */
static DirHandle *allocate_zip_dirhandle(const char *name)
{
char *ptr;
DirHandle *retval = malloc(sizeof (DirHandle));
Jul 28, 2001
Jul 28, 2001
846
847
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
Jul 13, 2002
Jul 13, 2002
848
memset(retval, '\0', sizeof (DirHandle));
Jul 28, 2001
Jul 28, 2001
849
850
851
852
853
retval->opaque = malloc(sizeof (ZIPinfo));
if (retval->opaque == NULL)
{
free(retval);
Jul 13, 2002
Jul 13, 2002
854
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
Jul 28, 2001
Jul 28, 2001
855
856
} /* if */
Jul 13, 2002
Jul 13, 2002
857
858
859
860
memset(retval->opaque, '\0', sizeof (ZIPinfo));
ptr = (char *) malloc(strlen(name) + 1);
if (ptr == NULL)
Jul 28, 2001
Jul 28, 2001
861
862
863
{
free(retval->opaque);
free(retval);
Jul 13, 2002
Jul 13, 2002
864
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
Jul 23, 2001
Jul 23, 2001
865
866
} /* if */
Jul 13, 2002
Jul 13, 2002
867
((ZIPinfo *) (retval->opaque))->archiveName = ptr;
Jul 28, 2001
Jul 28, 2001
868
strcpy(((ZIPinfo *) (retval->opaque))->archiveName, name);
Jul 13, 2002
Jul 13, 2002
869
Jul 28, 2001
Jul 28, 2001
870
871
retval->funcs = &__PHYSFS_DirFunctions_ZIP;
Jul 13, 2002
Jul 13, 2002
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
return(retval);
} /* allocate_zip_dirhandle */
static DirHandle *ZIP_openArchive(const char *name, int forWriting)
{
DirHandle *retval = NULL;
void *in = NULL;
PHYSFS_uint32 data_start;
PHYSFS_uint32 central_dir_ofs;
int success = 0;
BAIL_IF_MACRO(forWriting, ERR_ARC_IS_READ_ONLY, NULL);
if ((in = __PHYSFS_platformOpenRead(name)) == NULL)
goto zip_openarchive_end;
if ((retval = allocate_zip_dirhandle(name)) == NULL)
goto zip_openarchive_end;
if (!parse_end_of_central_dir(in, retval, &data_start, &central_dir_ofs))
goto zip_openarchive_end;
if (!load_zip_entries(in, retval, data_start, central_dir_ofs))
goto zip_openarchive_end;
success = 1; /* ...and we're good to go. :) */
zip_openarchive_end:
if (!success) /* clean up for failures. */
{
if (retval != NULL)
{
if (retval->opaque != NULL)
{
if (((ZIPinfo *) (retval->opaque))->archiveName != NULL)
free(((ZIPinfo *) (retval->opaque))->archiveName);
free(retval->opaque);
} /* if */
free(retval);
retval = NULL;
} /* if */
} /* if */
if (in != NULL)
__PHYSFS_platformClose(in); /* Close this even with success. */
Jul 23, 2001
Jul 23, 2001
921
return(retval);
Jul 28, 2001
Jul 28, 2001
922
} /* ZIP_openArchive */
Jul 23, 2001
Jul 23, 2001
923
924
Jul 11, 2002
Jul 11, 2002
925
/* !!! FIXME: This is seriously ugly. */
Jul 16, 2001
Jul 16, 2001
926
927
928
static LinkedStringList *ZIP_enumerateFiles(DirHandle *h,
const char *dirname,
int omitSymLinks)
Jul 8, 2001
Jul 8, 2001
929
{
Jul 15, 2001
Jul 15, 2001
930
ZIPinfo *zi = (ZIPinfo *) (h->opaque);
Aug 23, 2001
Aug 23, 2001
931
unsigned int i;
Jul 23, 2001
Jul 23, 2001
932
int dlen;
Jul 15, 2001
Jul 15, 2001
933
934
935
936
LinkedStringList *retval = NULL;
LinkedStringList *l = NULL;
LinkedStringList *prev = NULL;
char *d;
Jul 28, 2001
Jul 28, 2001
937
938
ZIPentry *entry;
char buf[MAXZIPENTRYSIZE];
Jul 15, 2001
Jul 15, 2001
939
Jul 23, 2001
Jul 23, 2001
940
941
942
dlen = strlen(dirname);
d = malloc(dlen + 1);
BAIL_IF_MACRO(d == NULL, ERR_OUT_OF_MEMORY, NULL);
Jul 15, 2001
Jul 15, 2001
943
strcpy(d, dirname);
Jul 13, 2002
Jul 13, 2002
944
if ((dlen > 0) && (d[dlen - 1] == '/')) /* remove trailing slash. */
Jul 23, 2001
Jul 23, 2001
945
946
947
948
{
dlen--;
d[dlen] = '\0';
} /* if */
Jul 15, 2001
Jul 15, 2001
949
Jul 13, 2002
Jul 13, 2002
950
for (i = 0, entry = zi->entries; i < zi->entryCount; i++, entry++)
Jul 15, 2001
Jul 15, 2001
951
952
{
char *ptr;
Jul 23, 2001
Jul 23, 2001
953
954
955
char *add_file;
int this_dlen;
Jul 28, 2001
Jul 28, 2001
956
if ((omitSymLinks) && (entry->symlink != NULL))
Jul 23, 2001
Jul 23, 2001
957
958
continue;
Jul 28, 2001
Jul 28, 2001
959
this_dlen = strlen(entry->name);
Jul 13, 2002
Jul 13, 2002
960
if (this_dlen + 1 > MAXZIPENTRYSIZE) /* !!! FIXME */
Jul 28, 2001
Jul 28, 2001
961
962
963
964
continue; /* ugh. */
strcpy(buf, entry->name);
Jul 23, 2001
Jul 23, 2001
965
if ((this_dlen > 0) && (buf[this_dlen - 1] == '/')) /* no trailing slash. */
Jul 15, 2001
Jul 15, 2001
966
{
Jul 23, 2001
Jul 23, 2001
967
968
969
970
971
972
973
974
975
this_dlen--;
buf[this_dlen] = '\0';
} /* if */
if (this_dlen <= dlen) /* not in this dir. */
continue;
if (*d == '\0')
add_file = buf;
Jul 15, 2001
Jul 15, 2001
976
977
else
{
Jul 23, 2001
Jul 23, 2001
978
979
980
981
if (buf[dlen] != '/') /* can't be in same directory? */
continue;
buf[dlen] = '\0';
Jul 23, 2001
Jul 23, 2001
982
if (__PHYSFS_platformStricmp(d, buf) != 0) /* not same directory? */
Jul 23, 2001
Jul 23, 2001
983
984
985
continue;
add_file = buf + dlen + 1;
Jul 15, 2001
Jul 15, 2001
986
987
} /* else */
Jul 23, 2001
Jul 23, 2001
988
989
990
991
992
993
994
995
/* handle subdirectories... */
ptr = strchr(add_file, '/');
if (ptr != NULL)
{
LinkedStringList *j;
*ptr = '\0';
for (j = retval; j != NULL; j = j->next)
{
Jul 23, 2001
Jul 23, 2001
996
if (__PHYSFS_platformStricmp(j->str, ptr) == 0)
Jul 23, 2001
Jul 23, 2001
997
998
999
1000
break;
} /* for */
if (j != NULL)