author | Ryan C. Gordon <icculus@icculus.org> |
Wed, 28 Aug 2002 23:32:29 +0000 | |
changeset 483 | d788c84d8694 |
parent 478 | d6fa323f448d |
child 491 | b8853d8a09cb |
permissions | -rw-r--r-- |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* ZIP support routines for PhysicsFS. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
* Please see the file LICENSE in the source's root directory. |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* |
337 | 6 |
* This file written by Ryan C. Gordon, with some peeking at "unzip.c" |
7 |
* by Gilles Vollant. |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
*/ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
|
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
10 |
#if HAVE_CONFIG_H |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
11 |
# include <config.h> |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
12 |
#endif |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
13 |
|
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
14 |
#if (defined PHYSFS_SUPPORTS_ZIP) |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
15 |
|
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
16 |
#include <stdio.h> |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
17 |
#include <stdlib.h> |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
18 |
#include <string.h> |
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
19 |
#include <assert.h> |
254
c66bbbe50f14
Implemeted getLastModTime method.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
20 |
#include <time.h> |
337 | 21 |
#include <errno.h> |
22 |
||
22
49f6101707b4
More tweaks; GRP completely implemented. Everything builds clean.
Ryan C. Gordon <icculus@icculus.org>
parents:
21
diff
changeset
|
23 |
#include "physfs.h" |
337 | 24 |
#include "zlib.h" |
17
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
25 |
|
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
26 |
#define __PHYSICSFS_INTERNAL__ |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
27 |
#include "physfs_internal.h" |
7337737f5120
Moved from root source dir.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
28 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
29 |
/* |
337 | 30 |
* A buffer of ZIP_READBUFSIZE is malloc() for each compressed file opened, |
31 |
* and is free()'d when you close the file; compressed data is read into |
|
32 |
* this buffer, and then is decompressed into the buffer passed to |
|
33 |
* PHYSFS_read(). |
|
34 |
* |
|
35 |
* Uncompressed entries in a zipfile do not allocate this buffer; they just |
|
36 |
* read data directly into the buffer passed to PHYSFS_read(). |
|
37 |
* |
|
38 |
* Depending on your speed and memory requirements, you should tweak this |
|
39 |
* value. |
|
40 |
*/ |
|
41 |
#define ZIP_READBUFSIZE (16 * 1024) |
|
42 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
43 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
44 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
45 |
* Entries are "unresolved" until they are first opened. At that time, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
46 |
* local file headers parsed/validated, data offsets will be updated to look |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
47 |
* at the actual file data instead of the header, and symlinks will be |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
48 |
* followed and optimized. This means that we don't seek and read around the |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
49 |
* archive until forced to do so, and after the first time, we had to do |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
50 |
* less reading and parsing, which is very CD-ROM friendly. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
51 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
52 |
typedef enum |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
53 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
54 |
ZIP_UNRESOLVED_FILE, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
55 |
ZIP_UNRESOLVED_SYMLINK, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
56 |
ZIP_RESOLVING, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
57 |
ZIP_RESOLVED, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
58 |
ZIP_BROKEN_FILE, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
59 |
ZIP_BROKEN_SYMLINK, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
60 |
} ZipResolveType; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
61 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
62 |
|
337 | 63 |
/* |
64 |
* One ZIPentry is kept for each file in an open ZIP archive. |
|
65 |
*/ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
66 |
typedef struct _ZIPentry |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
67 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
68 |
char *name; /* Name of file in archive */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
69 |
struct _ZIPentry *symlink; /* NULL or file we symlink to */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
70 |
ZipResolveType resolved; /* Have we resolved file/symlink? */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
71 |
PHYSFS_uint32 offset; /* offset of data in archive */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
72 |
PHYSFS_uint16 version; /* version made by */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
73 |
PHYSFS_uint16 version_needed; /* version needed to extract */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
74 |
PHYSFS_uint16 compression_method; /* compression method */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
75 |
PHYSFS_uint32 crc; /* crc-32 */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
76 |
PHYSFS_uint32 compressed_size; /* compressed size */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
77 |
PHYSFS_uint32 uncompressed_size; /* uncompressed size */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
78 |
PHYSFS_sint64 last_mod_time; /* last file mod time */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
79 |
} ZIPentry; |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
80 |
|
337 | 81 |
/* |
82 |
* One ZIPinfo is kept for each open ZIP archive. |
|
83 |
*/ |
|
84 |
typedef struct |
|
85 |
{ |
|
86 |
char *archiveName; /* path to ZIP in platform-dependent notation. */ |
|
87 |
PHYSFS_uint16 entryCount; /* Number of files in ZIP. */ |
|
88 |
ZIPentry *entries; /* info on all files in ZIP. */ |
|
89 |
} ZIPinfo; |
|
90 |
||
91 |
/* |
|
92 |
* One ZIPfileinfo is kept for each open file in a ZIP archive. |
|
93 |
*/ |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
94 |
typedef struct |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
95 |
{ |
337 | 96 |
ZIPentry *entry; /* Info on file. */ |
97 |
void *handle; /* physical file handle. */ |
|
98 |
PHYSFS_uint32 compressed_position; /* offset in compressed data. */ |
|
99 |
PHYSFS_uint32 uncompressed_position; /* tell() position. */ |
|
100 |
PHYSFS_uint8 *buffer; /* decompression buffer. */ |
|
101 |
z_stream stream; /* zlib stream state. */ |
|
102 |
} ZIPfileinfo; |
|
103 |
||
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
104 |
|
337 | 105 |
/* Magic numbers... */ |
106 |
#define ZIP_LOCAL_FILE_SIG 0x04034b50 |
|
107 |
#define ZIP_CENTRAL_DIR_SIG 0x02014b50 |
|
108 |
#define ZIP_END_OF_CENTRAL_DIR_SIG 0x06054b50 |
|
109 |
||
110 |
/* compression methods... */ |
|
111 |
#define COMPMETH_NONE 0 |
|
112 |
/* ...and others... */ |
|
113 |
||
114 |
||
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
115 |
#define UNIX_FILETYPE_MASK 0170000 |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
116 |
#define UNIX_FILETYPE_SYMLINK 0120000 |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
117 |
|
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
118 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
119 |
static PHYSFS_sint64 ZIP_read(FileHandle *handle, void *buffer, |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
120 |
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount); |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
121 |
static PHYSFS_sint64 ZIP_write(FileHandle *handle, const void *buffer, |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
122 |
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount); |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
123 |
static int ZIP_eof(FileHandle *handle); |
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
124 |
static PHYSFS_sint64 ZIP_tell(FileHandle *handle); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
125 |
static int ZIP_seek(FileHandle *handle, PHYSFS_uint64 offset); |
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
126 |
static PHYSFS_sint64 ZIP_fileLength(FileHandle *handle); |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
127 |
static int ZIP_fileClose(FileHandle *handle); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
128 |
static int ZIP_isArchive(const char *filename, int forWriting); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
129 |
static DirHandle *ZIP_openArchive(const char *name, int forWriting); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
130 |
static LinkedStringList *ZIP_enumerateFiles(DirHandle *h, |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
131 |
const char *dirname, |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
132 |
int omitSymLinks); |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
133 |
static int ZIP_exists(DirHandle *h, const char *name); |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
134 |
static int ZIP_isDirectory(DirHandle *h, const char *name, int *fileExists); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
135 |
static int ZIP_isSymLink(DirHandle *h, const char *name, int *fileExists); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
136 |
static PHYSFS_sint64 ZIP_getLastModTime(DirHandle *h, const char *n, int *e); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
137 |
static FileHandle *ZIP_openRead(DirHandle *h, const char *filename, int *e); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
138 |
static FileHandle *ZIP_openWrite(DirHandle *h, const char *filename); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
139 |
static FileHandle *ZIP_openAppend(DirHandle *h, const char *filename); |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
140 |
static void ZIP_dirClose(DirHandle *h); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
141 |
static int zip_resolve(void *in, ZIPinfo *info, ZIPentry *entry); |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
142 |
static int ZIP_remove(DirHandle *h, const char *name); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
143 |
static int ZIP_mkdir(DirHandle *h, const char *name); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
144 |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
145 |
|
399
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
146 |
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP = |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
147 |
{ |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
148 |
"ZIP", |
427
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
149 |
ZIP_ARCHIVE_DESCRIPTION, |
399
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
150 |
"Ryan C. Gordon <icculus@clutteredmind.org>", |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
151 |
"http://icculus.org/physfs/", |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
152 |
}; |
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
153 |
|
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
154 |
static const FileFunctions __PHYSFS_FileFunctions_ZIP = |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
155 |
{ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
156 |
ZIP_read, /* read() method */ |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
157 |
ZIP_write, /* write() method */ |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
158 |
ZIP_eof, /* eof() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
159 |
ZIP_tell, /* tell() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
160 |
ZIP_seek, /* seek() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
161 |
ZIP_fileLength, /* fileLength() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
162 |
ZIP_fileClose /* fileClose() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
163 |
}; |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
164 |
|
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
165 |
|
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
166 |
const DirFunctions __PHYSFS_DirFunctions_ZIP = |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
167 |
{ |
399
02dd53688315
Changed DirFunctions struct a little.
Ryan C. Gordon <icculus@icculus.org>
parents:
379
diff
changeset
|
168 |
&__PHYSFS_ArchiveInfo_ZIP, |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
169 |
ZIP_isArchive, /* isArchive() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
170 |
ZIP_openArchive, /* openArchive() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
171 |
ZIP_enumerateFiles, /* enumerateFiles() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
172 |
ZIP_exists, /* exists() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
173 |
ZIP_isDirectory, /* isDirectory() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
174 |
ZIP_isSymLink, /* isSymLink() method */ |
254
c66bbbe50f14
Implemeted getLastModTime method.
Ryan C. Gordon <icculus@icculus.org>
parents:
240
diff
changeset
|
175 |
ZIP_getLastModTime, /* getLastModTime() method */ |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
176 |
ZIP_openRead, /* openRead() method */ |
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
177 |
ZIP_openWrite, /* openWrite() method */ |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
178 |
ZIP_openAppend, /* openAppend() method */ |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
179 |
ZIP_remove, /* remove() method */ |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
180 |
ZIP_mkdir, /* mkdir() method */ |
93
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
181 |
ZIP_dirClose /* dirClose() method */ |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
182 |
}; |
74d1df359be3
Patched to compile with an ancient version of CodeWarrior.
Ryan C. Gordon <icculus@icculus.org>
parents:
71
diff
changeset
|
183 |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
184 |
|
427
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
185 |
static const char *zlib_error_string(int rc) |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
186 |
{ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
187 |
switch (rc) |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
188 |
{ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
189 |
case Z_OK: return(NULL); /* not an error. */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
190 |
case Z_STREAM_END: return(NULL); /* not an error. */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
191 |
case Z_ERRNO: return(strerror(errno)); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
192 |
case Z_NEED_DICT: return(ERR_ZLIB_NEED_DICT); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
193 |
case Z_DATA_ERROR: return(ERR_ZLIB_DATA_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
194 |
case Z_MEM_ERROR: return(ERR_ZLIB_MEMORY_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
195 |
case Z_BUF_ERROR: return(ERR_ZLIB_BUFFER_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
196 |
case Z_VERSION_ERROR: return(ERR_ZLIB_VERSION_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
197 |
default: return(ERR_ZLIB_UNKNOWN_ERROR); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
198 |
} /* switch */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
199 |
|
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
200 |
return(NULL); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
201 |
} /* zlib_error_string */ |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
202 |
|
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
203 |
|
337 | 204 |
/* |
205 |
* Wrap all zlib calls in this, so the physfs error state is set appropriately. |
|
206 |
*/ |
|
207 |
static int zlib_err(int rc) |
|
208 |
{ |
|
427
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
209 |
const char *str = zlib_error_string(rc); |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
210 |
if (str != NULL) |
c38ace41039f
Natural language #defines and build system support.
Ryan C. Gordon <icculus@icculus.org>
parents:
413
diff
changeset
|
211 |
__PHYSFS_setError(str); |
337 | 212 |
return(rc); |
213 |
} /* zlib_err */ |
|
214 |
||
215 |
||
216 |
/* |
|
217 |
* Read an unsigned 32-bit int and swap to native byte order. |
|
218 |
*/ |
|
219 |
static int readui32(void *in, PHYSFS_uint32 *val) |
|
220 |
{ |
|
221 |
PHYSFS_uint32 v; |
|
222 |
BAIL_IF_MACRO(__PHYSFS_platformRead(in, &v, sizeof (v), 1) != 1, NULL, 0); |
|
223 |
*val = PHYSFS_swapULE32(v); |
|
224 |
return(1); |
|
225 |
} /* readui32 */ |
|
226 |
||
227 |
||
228 |
/* |
|
229 |
* Read an unsigned 16-bit int and swap to native byte order. |
|
230 |
*/ |
|
231 |
static int readui16(void *in, PHYSFS_uint16 *val) |
|
232 |
{ |
|
233 |
PHYSFS_uint16 v; |
|
234 |
BAIL_IF_MACRO(__PHYSFS_platformRead(in, &v, sizeof (v), 1) != 1, NULL, 0); |
|
235 |
*val = PHYSFS_swapULE16(v); |
|
236 |
return(1); |
|
237 |
} /* readui16 */ |
|
238 |
||
239 |
||
240 |
static PHYSFS_sint64 ZIP_read(FileHandle *handle, void *buf, |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
241 |
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
242 |
{ |
337 | 243 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
244 |
ZIPentry *entry = finfo->entry; |
|
245 |
PHYSFS_sint64 retval = 0; |
|
246 |
PHYSFS_sint64 maxread = ((PHYSFS_sint64) objSize) * objCount; |
|
247 |
PHYSFS_sint64 avail = entry->uncompressed_size - |
|
248 |
finfo->uncompressed_position; |
|
249 |
||
250 |
BAIL_IF_MACRO(maxread == 0, NULL, 0); /* quick rejection. */ |
|
251 |
||
252 |
if (avail < maxread) |
|
253 |
{ |
|
254 |
maxread = avail - (avail % objSize); |
|
255 |
objCount = maxread / objSize; |
|
256 |
BAIL_IF_MACRO(objCount == 0, ERR_PAST_EOF, 0); /* quick rejection. */ |
|
257 |
__PHYSFS_setError(ERR_PAST_EOF); /* this is always true here. */ |
|
258 |
} /* if */ |
|
259 |
||
260 |
if (entry->compression_method == COMPMETH_NONE) |
|
261 |
{ |
|
262 |
retval = __PHYSFS_platformRead(finfo->handle, buf, objSize, objCount); |
|
263 |
} /* if */ |
|
264 |
||
265 |
else |
|
266 |
{ |
|
267 |
finfo->stream.next_out = buf; |
|
268 |
finfo->stream.avail_out = objSize * objCount; |
|
269 |
||
270 |
while (retval < maxread) |
|
271 |
{ |
|
272 |
PHYSFS_uint32 before = finfo->stream.total_out; |
|
273 |
int rc; |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
274 |
|
337 | 275 |
if (finfo->stream.avail_in == 0) |
276 |
{ |
|
277 |
PHYSFS_sint64 br; |
|
278 |
||
279 |
br = entry->compressed_size - finfo->compressed_position; |
|
280 |
if (br > 0) |
|
281 |
{ |
|
282 |
if (br > ZIP_READBUFSIZE) |
|
283 |
br = ZIP_READBUFSIZE; |
|
284 |
||
285 |
br = __PHYSFS_platformRead(finfo->handle, |
|
286 |
finfo->buffer, |
|
287 |
1, br); |
|
288 |
if (br <= 0) |
|
289 |
break; |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
290 |
|
337 | 291 |
finfo->compressed_position += br; |
292 |
finfo->stream.next_in = finfo->buffer; |
|
293 |
finfo->stream.avail_in = br; |
|
294 |
} /* if */ |
|
295 |
} /* if */ |
|
296 |
||
297 |
rc = zlib_err(inflate(&finfo->stream, Z_SYNC_FLUSH)); |
|
298 |
retval += (finfo->stream.total_out - before); |
|
299 |
||
300 |
if (rc != Z_OK) |
|
301 |
break; |
|
302 |
} /* while */ |
|
303 |
||
304 |
retval /= objSize; |
|
305 |
} /* else */ |
|
306 |
||
307 |
if (retval > 0) |
|
308 |
finfo->uncompressed_position += (retval * objSize); |
|
309 |
||
310 |
return(retval); |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
311 |
} /* ZIP_read */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
312 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
313 |
|
467
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
314 |
static PHYSFS_sint64 ZIP_write(FileHandle *handle, const void *buf, |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
315 |
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount) |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
316 |
{ |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
317 |
BAIL_MACRO(ERR_NOT_SUPPORTED, -1); |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
318 |
} /* ZIP_write */ |
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
319 |
|
99664d9842cb
Bunch of tedious corrections, optimizations, and cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
464
diff
changeset
|
320 |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
321 |
static int ZIP_eof(FileHandle *handle) |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
322 |
{ |
337 | 323 |
ZIPfileinfo *finfo = ((ZIPfileinfo *) (handle->opaque)); |
324 |
return(finfo->uncompressed_position >= finfo->entry->uncompressed_size); |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
325 |
} /* ZIP_eof */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
326 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
327 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
328 |
static PHYSFS_sint64 ZIP_tell(FileHandle *handle) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
329 |
{ |
337 | 330 |
return(((ZIPfileinfo *) (handle->opaque))->uncompressed_position); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
331 |
} /* ZIP_tell */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
332 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
333 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
334 |
static int ZIP_seek(FileHandle *handle, PHYSFS_uint64 offset) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
335 |
{ |
337 | 336 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
337 |
ZIPentry *entry = finfo->entry; |
|
338 |
void *in = finfo->handle; |
|
339 |
||
340 |
BAIL_IF_MACRO(offset > entry->uncompressed_size, ERR_PAST_EOF, 0); |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
341 |
|
337 | 342 |
if (entry->compression_method == COMPMETH_NONE) |
343 |
{ |
|
344 |
PHYSFS_sint64 newpos = offset + entry->offset; |
|
345 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, newpos), NULL, 0); |
|
346 |
finfo->uncompressed_position = newpos; |
|
347 |
} /* if */ |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
348 |
|
337 | 349 |
else |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
350 |
{ |
337 | 351 |
/* |
352 |
* If seeking backwards, we need to redecode the file |
|
353 |
* from the start and throw away the compressed bits until we hit |
|
354 |
* the offset we need. If seeking forward, we still need to |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
355 |
* decode, but we don't rewind first. |
337 | 356 |
*/ |
357 |
if (offset < finfo->uncompressed_position) |
|
358 |
{ |
|
359 |
/* we do a copy so state is sane if inflateInit2() fails. */ |
|
360 |
z_stream str; |
|
361 |
memset(&str, '\0', sizeof (z_stream)); |
|
362 |
if (zlib_err(inflateInit2(&str, -MAX_WBITS)) != Z_OK) |
|
363 |
return(0); |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
364 |
|
345
cbcb27547864
Seeking backwards in ZIP_seek() works now.
Ryan C. Gordon <icculus@icculus.org>
parents:
342
diff
changeset
|
365 |
if (!__PHYSFS_platformSeek(in, entry->offset)) |
cbcb27547864
Seeking backwards in ZIP_seek() works now.
Ryan C. Gordon <icculus@icculus.org>
parents:
342
diff
changeset
|
366 |
return(0); |
cbcb27547864
Seeking backwards in ZIP_seek() works now.
Ryan C. Gordon <icculus@icculus.org>
parents:
342
diff
changeset
|
367 |
|
337 | 368 |
inflateEnd(&finfo->stream); |
369 |
memcpy(&finfo->stream, &str, sizeof (z_stream)); |
|
370 |
finfo->uncompressed_position = finfo->compressed_position = 0; |
|
371 |
} /* if */ |
|
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
372 |
|
337 | 373 |
while (finfo->uncompressed_position != offset) |
374 |
{ |
|
375 |
PHYSFS_uint8 buf[512]; |
|
376 |
PHYSFS_uint32 maxread = offset - finfo->uncompressed_position; |
|
377 |
if (maxread > sizeof (buf)) |
|
378 |
maxread = sizeof (buf); |
|
379 |
||
380 |
if (ZIP_read(handle, buf, maxread, 1) != 1) |
|
381 |
return(0); |
|
382 |
} /* while */ |
|
383 |
} /* else */ |
|
384 |
||
385 |
return(1); |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
386 |
} /* ZIP_seek */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
387 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
388 |
|
132
b53fa5093749
Added typedefs and platform-specific i/o.
Ryan C. Gordon <icculus@icculus.org>
parents:
95
diff
changeset
|
389 |
static PHYSFS_sint64 ZIP_fileLength(FileHandle *handle) |
28
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
390 |
{ |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
391 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
337 | 392 |
return(finfo->entry->uncompressed_size); |
28
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
393 |
} /* ZIP_fileLength */ |
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
394 |
|
529214f57d1b
Added PHYSFS_fileLength(). Bleh.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
395 |
|
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
396 |
static int ZIP_fileClose(FileHandle *handle) |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
397 |
{ |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
398 |
ZIPfileinfo *finfo = (ZIPfileinfo *) (handle->opaque); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
399 |
BAIL_IF_MACRO(!__PHYSFS_platformClose(finfo->handle), NULL, 0); |
337 | 400 |
|
401 |
if (finfo->entry->compression_method != COMPMETH_NONE) |
|
402 |
inflateEnd(&finfo->stream); |
|
403 |
||
404 |
if (finfo->buffer != NULL) |
|
405 |
free(finfo->buffer); |
|
406 |
||
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
407 |
free(finfo); |
429
72ca216c756a
Patched memory leaks (thanks, Valgrind!)
Ryan C. Gordon <icculus@icculus.org>
parents:
427
diff
changeset
|
408 |
free(handle); |
50
989b413188e5
Added individual file i/o code. Untested.
Ryan C. Gordon <icculus@icculus.org>
parents:
46
diff
changeset
|
409 |
return(1); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
410 |
} /* ZIP_fileClose */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
411 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
412 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
413 |
static PHYSFS_sint64 zip_find_end_of_central_dir(void *in, PHYSFS_sint64 *len) |
337 | 414 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
415 |
PHYSFS_uint8 buf[256]; |
413
d669d303317d
Initialized some variables to stop compiler whining.
Ryan C. Gordon <icculus@icculus.org>
parents:
402
diff
changeset
|
416 |
PHYSFS_sint32 i = 0; |
337 | 417 |
PHYSFS_sint64 filelen; |
418 |
PHYSFS_sint64 filepos; |
|
419 |
PHYSFS_sint32 maxread; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
420 |
PHYSFS_sint32 totalread = 0; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
421 |
int found = 0; |
413
d669d303317d
Initialized some variables to stop compiler whining.
Ryan C. Gordon <icculus@icculus.org>
parents:
402
diff
changeset
|
422 |
PHYSFS_uint32 extra = 0; |
337 | 423 |
|
424 |
filelen = __PHYSFS_platformFileLength(in); |
|
425 |
BAIL_IF_MACRO(filelen == -1, NULL, 0); |
|
426 |
||
427 |
/* |
|
428 |
* Jump to the end of the file and start reading backwards. |
|
429 |
* The last thing in the file is the zipfile comment, which is variable |
|
430 |
* length, and the field that specifies its size is before it in the |
|
431 |
* file (argh!)...this means that we need to scan backwards until we |
|
432 |
* hit the end-of-central-dir signature. We can then sanity check that |
|
433 |
* the comment was as big as it should be to make sure we're in the |
|
434 |
* right place. The comment length field is 16 bits, so we can stop |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
435 |
* searching for that signature after a little more than 64k at most, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
436 |
* and call it a corrupted zipfile. |
337 | 437 |
*/ |
438 |
||
439 |
if (sizeof (buf) < filelen) |
|
440 |
{ |
|
441 |
filepos = filelen - sizeof (buf); |
|
442 |
maxread = sizeof (buf); |
|
443 |
} /* if */ |
|
444 |
else |
|
445 |
{ |
|
446 |
filepos = 0; |
|
447 |
maxread = filelen; |
|
448 |
} /* else */ |
|
449 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
450 |
while ((totalread < filelen) && (totalread < 65557)) |
337 | 451 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
452 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, filepos), NULL, -1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
453 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
454 |
/* make sure we catch a signature between buffers. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
455 |
if (totalread != 0) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
456 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
457 |
if (__PHYSFS_platformRead(in, buf, maxread - 4, 1) != 1) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
458 |
return(-1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
459 |
*((PHYSFS_uint32 *) (&buf[maxread - 4])) = extra; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
460 |
totalread += maxread - 4; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
461 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
462 |
else |
337 | 463 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
464 |
if (__PHYSFS_platformRead(in, buf, maxread, 1) != 1) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
465 |
return(-1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
466 |
totalread += maxread; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
467 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
468 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
469 |
extra = *((PHYSFS_uint32 *) (&buf[0])); |
337 | 470 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
471 |
for (i = maxread - 4; i > 0; i--) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
472 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
473 |
if ((buf[i + 0] == 0x50) && |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
474 |
(buf[i + 1] == 0x4B) && |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
475 |
(buf[i + 2] == 0x05) && |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
476 |
(buf[i + 3] == 0x06) ) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
477 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
478 |
found = 1; /* that's the signature! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
479 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
480 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
481 |
} /* for */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
482 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
483 |
if (found) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
484 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
485 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
486 |
filepos -= (maxread - 4); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
487 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
488 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
489 |
BAIL_IF_MACRO(!found, ERR_NOT_AN_ARCHIVE, -1); |
337 | 490 |
|
491 |
if (len != NULL) |
|
492 |
*len = filelen; |
|
493 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
494 |
return(filepos + i); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
495 |
} /* zip_find_end_of_central_dir */ |
337 | 496 |
|
497 |
||
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
498 |
static int ZIP_isArchive(const char *filename, int forWriting) |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
499 |
{ |
337 | 500 |
PHYSFS_uint32 sig; |
446
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
501 |
int retval = 0; |
337 | 502 |
void *in; |
503 |
||
504 |
in = __PHYSFS_platformOpenRead(filename); |
|
505 |
BAIL_IF_MACRO(in == NULL, NULL, 0); |
|
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
506 |
|
337 | 507 |
/* |
508 |
* The first thing in a zip file might be the signature of the |
|
509 |
* first local file record, so it makes for a quick determination. |
|
510 |
*/ |
|
446
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
511 |
if (readui32(in, &sig)) |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
512 |
{ |
446
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
513 |
retval = (sig == ZIP_LOCAL_FILE_SIG); |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
514 |
if (!retval) |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
515 |
{ |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
516 |
/* |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
517 |
* No sig...might be a ZIP with data at the start |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
518 |
* (a self-extracting executable, etc), so we'll have to do |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
519 |
* it the hard way... |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
520 |
*/ |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
521 |
retval = (zip_find_end_of_central_dir(in, NULL) != -1); |
e1f7fe003b70
Fix for correct cleanup on read error.
Ryan C. Gordon <icculus@icculus.org>
parents:
429
diff
changeset
|
522 |
} /* if */ |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
523 |
} /* if */ |
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
524 |
|
337 | 525 |
__PHYSFS_platformClose(in); |
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
526 |
return(retval); |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
527 |
} /* ZIP_isArchive */ |
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
528 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
529 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
530 |
static void zip_free_entries(ZIPentry *entries, PHYSFS_uint32 max) |
337 | 531 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
532 |
PHYSFS_uint32 i; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
533 |
for (i = 0; i < max; i++) |
337 | 534 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
535 |
ZIPentry *entry = &entries[i]; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
536 |
if (entry->name != NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
537 |
free(entry->name); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
538 |
} /* for */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
539 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
540 |
free(entries); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
541 |
} /* zip_free_entries */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
542 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
543 |
|
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
544 |
/* |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
545 |
* This will find the ZIPentry associated with a path in platform-independent |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
546 |
* notation. Directories don't have ZIPentries associated with them, but |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
547 |
* (*isDir) will be set to non-zero if a dir was hit. |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
548 |
*/ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
549 |
static ZIPentry *zip_find_entry(ZIPinfo *info, const char *path, int *isDir) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
550 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
551 |
ZIPentry *a = info->entries; |
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
552 |
PHYSFS_sint32 pathlen = strlen(path); |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
553 |
PHYSFS_sint32 lo = 0; |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
554 |
PHYSFS_sint32 hi = (PHYSFS_sint32) (info->entryCount - 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
555 |
PHYSFS_sint32 middle; |
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
556 |
const char *thispath = NULL; |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
557 |
int rc; |
337 | 558 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
559 |
while (lo <= hi) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
560 |
{ |
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
561 |
middle = lo + ((hi - lo) / 2); |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
562 |
thispath = a[middle].name; |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
563 |
rc = strncmp(path, thispath, pathlen); |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
564 |
|
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
565 |
if (rc > 0) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
566 |
lo = middle + 1; |
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
567 |
|
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
568 |
else if (rc < 0) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
569 |
hi = middle - 1; |
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
570 |
|
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
571 |
else /* substring match...might be dir or entry or nothing. */ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
572 |
{ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
573 |
if (isDir != NULL) |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
574 |
{ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
575 |
*isDir = (thispath[pathlen] == '/'); |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
576 |
if (*isDir) |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
577 |
return(NULL); |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
578 |
} /* if */ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
579 |
|
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
580 |
if (thispath[pathlen] == '\0') /* found entry? */ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
581 |
return(&a[middle]); |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
582 |
} /* else */ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
583 |
} /* while */ |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
584 |
|
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
585 |
if (isDir != NULL) |
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
586 |
*isDir = 0; |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
587 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
588 |
BAIL_MACRO(ERR_NO_SUCH_FILE, NULL); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
589 |
} /* zip_find_entry */ |
337 | 590 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
591 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
592 |
/* Convert paths from old, buggy DOS zippers... */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
593 |
static void zip_convert_dos_path(ZIPentry *entry, char *path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
594 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
595 |
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((entry->version >> 8) & 0xFF); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
596 |
if (hosttype == 0) /* FS_FAT_ */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
597 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
598 |
while (*path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
599 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
600 |
if (*path == '\\') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
601 |
*path = '/'; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
602 |
path++; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
603 |
} /* while */ |
337 | 604 |
} /* if */ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
605 |
} /* zip_convert_dos_path */ |
337 | 606 |
|
607 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
608 |
static void zip_expand_symlink_path(char *path) |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
609 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
610 |
char *ptr = path; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
611 |
char *prevptr = path; |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
612 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
613 |
while (1) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
614 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
615 |
ptr = strchr(ptr, '/'); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
616 |
if (ptr == NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
617 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
618 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
619 |
if (*(ptr + 1) == '.') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
620 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
621 |
if (*(ptr + 2) == '/') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
622 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
623 |
/* current dir in middle of string: ditch it. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
624 |
memmove(ptr, ptr + 2, strlen(ptr + 2) + 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
625 |
} /* else if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
626 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
627 |
else if (*(ptr + 2) == '\0') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
628 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
629 |
/* current dir at end of string: ditch it. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
630 |
*ptr = '\0'; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
631 |
} /* else if */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
632 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
633 |
else if (*(ptr + 2) == '.') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
634 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
635 |
if (*(ptr + 3) == '/') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
636 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
637 |
/* parent dir in middle: move back one, if possible. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
638 |
memmove(prevptr, ptr + 4, strlen(ptr + 4) + 1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
639 |
ptr = prevptr; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
640 |
while (prevptr != path) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
641 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
642 |
prevptr--; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
643 |
if (*prevptr == '/') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
644 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
645 |
prevptr++; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
646 |
break; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
647 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
648 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
649 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
650 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
651 |
if (*(ptr + 3) == '\0') |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
652 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
653 |
/* parent dir at end: move back one, if possible. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
654 |
*prevptr = '\0'; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
655 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
656 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
657 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
658 |
else |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
659 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
660 |
prevptr = ptr; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
661 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
662 |
} /* while */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
663 |
} /* zip_expand_symlink_path */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
664 |
|
32
09a8197fad3b
Initial work on ZIPfile support. Not complete. Not very pleased with this
Ryan C. Gordon <icculus@icculus.org>
parents:
29
diff
changeset
|
665 |
|
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
666 |
/* |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
667 |
* Look for the entry named by (path). If it exists, resolve it, and return |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
668 |
* a pointer to that entry. If it's another symlink, keep resolving until you |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
669 |
* hit a real file and then return a pointer to the final non-symlink entry. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
670 |
* If there's a problem, return NULL. (path) is always free()'d by this |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
671 |
* function. |
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
672 |
*/ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
673 |
static ZIPentry *zip_follow_symlink(void *in, ZIPinfo *info, char *path) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
674 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
675 |
ZIPentry *entry; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
676 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
677 |
zip_expand_symlink_path(path); |
483
d788c84d8694
Fixed bug that prevented use when symlinks were disallowed.
Ryan C. Gordon <icculus@icculus.org>
parents:
478
diff
changeset
|
678 |
entry = zip_find_entry(info, path, NULL); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
679 |
if (entry != NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
680 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
681 |
if (!zip_resolve(in, info, entry)) /* recursive! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
682 |
entry = NULL; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
683 |
else |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
684 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
685 |
if (entry->symlink != NULL) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
686 |
entry = entry->symlink; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
687 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
688 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
689 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
690 |
free(path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
691 |
return(entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
692 |
} /* zip_follow_symlink */ |
20
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
693 |
|
efdde0d21521
Implementation compiles and links with no actual archive support. No test
Ryan C. Gordon <icculus@icculus.org>
parents:
17
diff
changeset
|
694 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
695 |
static int zip_resolve_symlink(void *in, ZIPinfo *info, ZIPentry *entry) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
696 |
{ |
337 | 697 |
char *path; |
698 |
PHYSFS_uint32 size = entry->uncompressed_size; |
|
699 |
int rc = 0; |
|
700 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
701 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
702 |
* We've already parsed the local file header of the symlink at this |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
703 |
* point. Now we need to read the actual link from the file data and |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
704 |
* follow it. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
705 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
706 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
707 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, entry->offset), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
708 |
|
337 | 709 |
path = (char *) malloc(size + 1); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
710 |
BAIL_IF_MACRO(path == NULL, ERR_OUT_OF_MEMORY, 0); |
337 | 711 |
|
712 |
if (entry->compression_method == COMPMETH_NONE) |
|
713 |
rc = (__PHYSFS_platformRead(in, path, size, 1) == 1); |
|
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
714 |
|
337 | 715 |
else /* symlink target path is compressed... */ |
716 |
{ |
|
717 |
z_stream stream; |
|
340
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
718 |
PHYSFS_uint32 compsize = entry->compressed_size; |
337 | 719 |
PHYSFS_uint8 *compressed = (PHYSFS_uint8 *) malloc(compsize); |
720 |
if (compressed != NULL) |
|
721 |
{ |
|
722 |
if (__PHYSFS_platformRead(in, compressed, compsize, 1) == 1) |
|
723 |
{ |
|
724 |
memset(&stream, '\0', sizeof (z_stream)); |
|
725 |
stream.next_in = compressed; |
|
726 |
stream.avail_in = compsize; |
|
727 |
stream.next_out = path; |
|
728 |
stream.avail_out = size; |
|
729 |
if (zlib_err(inflateInit2(&stream, -MAX_WBITS)) == Z_OK) |
|
730 |
{ |
|
340
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
731 |
rc = zlib_err(inflate(&stream, Z_FINISH)); |
337 | 732 |
inflateEnd(&stream); |
340
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
733 |
|
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
734 |
/* both are acceptable outcomes... */ |
24a11f8566f8
Symlink fixes. Still broken, though.
Ryan C. Gordon <icculus@icculus.org>
parents:
337
diff
changeset
|
735 |
rc = ((rc == Z_OK) || (rc == Z_STREAM_END)); |
337 | 736 |
} /* if */ |
737 |
} /* if */ |
|
738 |
free(compressed); |
|
739 |
} /* if */ |
|
740 |
} /* else */ |
|
143
337505f94c10
Platform abstracted i/o, other bugfixes.
Ryan C. Gordon <icculus@icculus.org>
parents:
132
diff
changeset
|
741 |
|
337 | 742 |
if (!rc) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
743 |
free(path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
744 |
else |
337 | 745 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
746 |
path[entry->uncompressed_size] = '\0'; /* null-terminate it. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
747 |
zip_convert_dos_path(entry, path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
748 |
entry->symlink = zip_follow_symlink(in, info, path); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
749 |
} /* else */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
750 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
751 |
return(entry->symlink != NULL); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
752 |
} /* zip_resolve_symlink */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
753 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
754 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
755 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
756 |
* Parse the local file header of an entry, and update entry->offset. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
757 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
758 |
static int zip_parse_local(void *in, ZIPentry *entry) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
759 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
760 |
PHYSFS_uint32 ui32; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
761 |
PHYSFS_uint16 ui16; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
762 |
PHYSFS_uint16 fnamelen; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
763 |
PHYSFS_uint16 extralen; |
337 | 764 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
765 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, entry->offset), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
766 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
767 |
BAIL_IF_MACRO(ui32 != ZIP_LOCAL_FILE_SIG, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
768 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
769 |
BAIL_IF_MACRO(ui16 != entry->version_needed, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
770 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* general bits. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
771 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
772 |
BAIL_IF_MACRO(ui16 != entry->compression_method, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
773 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); /* date/time */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
774 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
775 |
BAIL_IF_MACRO(ui32 != entry->crc, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
776 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
777 |
BAIL_IF_MACRO(ui32 != entry->compressed_size, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
778 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
779 |
BAIL_IF_MACRO(ui32 != entry->uncompressed_size, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
780 |
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
781 |
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
782 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
783 |
entry->offset += fnamelen + extralen + 30; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
784 |
return(1); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
785 |
} /* zip_parse_local */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
786 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
787 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
788 |
static int zip_resolve(void *in, ZIPinfo *info, ZIPentry *entry) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
789 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
790 |
int retval = 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
791 |
ZipResolveType resolve_type = entry->resolved; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
792 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
793 |
/* Don't bother if we've failed to resolve this entry before. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
794 |
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_FILE, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
795 |
BAIL_IF_MACRO(resolve_type == ZIP_BROKEN_SYMLINK, ERR_CORRUPTED, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
796 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
797 |
/* uhoh...infinite symlink loop! */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
798 |
BAIL_IF_MACRO(resolve_type == ZIP_RESOLVING, ERR_SYMLINK_LOOP, 0); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
799 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
800 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
801 |
* We fix up the offset to point to the actual data on the |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
802 |
* first open, since we don't want to seek across the whole file on |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
803 |
* archive open (can be SLOW on large, CD-stored files), but we |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
804 |
* need to check the local file header...not just for corruption, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
805 |
* but since it stores offset info the central directory does not. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
806 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
807 |
if (resolve_type != ZIP_RESOLVED) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
808 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
809 |
entry->resolved = ZIP_RESOLVING; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
810 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
811 |
retval = zip_parse_local(in, entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
812 |
if (retval) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
813 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
814 |
/* |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
815 |
* If it's a symlink, find the original file. This will cause |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
816 |
* resolution of other entries (other symlinks and, eventually, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
817 |
* the real file) if all goes well. |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
818 |
*/ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
819 |
if (resolve_type == ZIP_UNRESOLVED_SYMLINK) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
820 |
retval = zip_resolve_symlink(in, info, entry); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
821 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
822 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
823 |
if (resolve_type == ZIP_UNRESOLVED_SYMLINK) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
824 |
entry->resolved = ((retval) ? ZIP_RESOLVED : ZIP_BROKEN_SYMLINK); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
825 |
else if (resolve_type == ZIP_UNRESOLVED_FILE) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
826 |
entry->resolved = ((retval) ? ZIP_RESOLVED : ZIP_BROKEN_FILE); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
827 |
} /* if */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
828 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
829 |
return(retval); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
830 |
} /* zip_resolve */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
831 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
832 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
833 |
static int zip_version_does_symlinks(PHYSFS_uint32 version) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
834 |
{ |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
835 |
int retval = 0; |
163
fc2b8ee5b420
Approved zeph's comments, fixed a few of my screwups.
Ryan C. Gordon <icculus@icculus.org>
parents:
161
diff
changeset
|
836 |
PHYSFS_uint8 hosttype = (PHYSFS_uint8) ((version >> 8) & 0xFF); |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
837 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
838 |
switch (hosttype) |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
839 |
{ |
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
840 |
/* |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
841 |
* These are the platforms that can NOT build an archive with |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
842 |
* symlinks, according to the Info-ZIP project. |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
843 |
*/ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
844 |
case 0: /* FS_FAT_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
845 |
case 1: /* AMIGA_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
846 |
case 2: /* VMS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
847 |
case 4: /* VM_CSM_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
848 |
case 6: /* FS_HPFS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
849 |
case 11: /* FS_NTFS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
850 |
case 14: /* FS_VFAT_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
851 |
case 13: /* ACORN_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
852 |
case 15: /* MVS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
853 |
case 18: /* THEOS_ */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
854 |
break; /* do nothing. */ |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
855 |
|
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
856 |
default: /* assume the rest to be unix-like. */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
857 |
retval = 1; |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
858 |
break; |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
859 |
} /* switch */ |
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
860 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
861 |
return(retval); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
862 |
} /* zip_version_does_symlinks */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
863 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
864 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
865 |
static int zip_entry_is_symlink(ZIPentry *entry) |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
866 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
867 |
return((entry->resolved == ZIP_UNRESOLVED_SYMLINK) || |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
868 |
(entry->resolved == ZIP_BROKEN_SYMLINK) || |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
869 |
(entry->symlink)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
870 |
} /* zip_entry_is_symlink */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
871 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
872 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
873 |
static int zip_has_symlink_attr(ZIPentry *entry, PHYSFS_uint32 extern_attr) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
874 |
{ |
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
875 |
PHYSFS_uint16 xattr = ((extern_attr >> 16) & 0xFFFF); |
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
876 |
|
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
877 |
return ( |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
878 |
(zip_version_does_symlinks(entry->version)) && |
337 | 879 |
(entry->uncompressed_size > 0) && |
342
cef50576cb0b
Fixed symlink detection.
Ryan C. Gordon <icculus@icculus.org>
parents:
340
diff
changeset
|
880 |
((xattr & UNIX_FILETYPE_MASK) == UNIX_FILETYPE_SYMLINK) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
881 |
); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
882 |
} /* zip_has_symlink_attr */ |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
883 |
|
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
884 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
885 |
PHYSFS_sint64 zip_dos_time_to_physfs_time(PHYSFS_uint32 dostime) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
886 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
887 |
PHYSFS_uint32 dosdate; |
337 | 888 |
struct tm unixtime; |
889 |
memset(&unixtime, '\0', sizeof (unixtime)); |
|
890 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
891 |
dosdate = (PHYSFS_uint32) ((dostime >> 16) & 0xFFFF); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
892 |
dostime &= 0xFFFF; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
893 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
894 |
/* dissect date */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
895 |
unixtime.tm_year = ((dosdate >> 9) & 0x7F) + 80; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
896 |
unixtime.tm_mon = ((dosdate >> 5) & 0x0F) - 1; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
897 |
unixtime.tm_mday = ((dosdate ) & 0x1F); |
337 | 898 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
899 |
/* dissect time */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
900 |
unixtime.tm_hour = ((dostime >> 11) & 0x1F); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
901 |
unixtime.tm_min = ((dostime >> 5) & 0x3F); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
902 |
unixtime.tm_sec = ((dostime << 1) & 0x3E); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
903 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
904 |
/* let mktime calculate daylight savings time. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
905 |
unixtime.tm_isdst = -1; |
337 | 906 |
|
907 |
return((PHYSFS_sint64) mktime(&unixtime)); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
908 |
} /* zip_dos_time_to_physfs_time */ |
337 | 909 |
|
910 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
911 |
static int zip_load_entry(void *in, ZIPentry *entry, PHYSFS_uint32 ofs_fixup) |
337 | 912 |
{ |
913 |
PHYSFS_uint16 fnamelen, extralen, commentlen; |
|
914 |
PHYSFS_uint32 external_attr; |
|
915 |
PHYSFS_uint16 ui16; |
|
916 |
PHYSFS_uint32 ui32; |
|
917 |
PHYSFS_sint64 si64; |
|
918 |
||
919 |
/* sanity check with central directory signature... */ |
|
920 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
921 |
BAIL_IF_MACRO(ui32 != ZIP_CENTRAL_DIR_SIG, ERR_CORRUPTED, 0); |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
922 |
|
337 | 923 |
/* Get the pertinent parts of the record... */ |
924 |
BAIL_IF_MACRO(!readui16(in, &entry->version), NULL, 0); |
|
925 |
BAIL_IF_MACRO(!readui16(in, &entry->version_needed), NULL, 0); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
926 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* general bits */ |
337 | 927 |
BAIL_IF_MACRO(!readui16(in, &entry->compression_method), NULL, 0); |
928 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
929 |
entry->last_mod_time = zip_dos_time_to_physfs_time(ui32); |
337 | 930 |
BAIL_IF_MACRO(!readui32(in, &entry->crc), NULL, 0); |
931 |
BAIL_IF_MACRO(!readui32(in, &entry->compressed_size), NULL, 0); |
|
932 |
BAIL_IF_MACRO(!readui32(in, &entry->uncompressed_size), NULL, 0); |
|
933 |
BAIL_IF_MACRO(!readui16(in, &fnamelen), NULL, 0); |
|
934 |
BAIL_IF_MACRO(!readui16(in, &extralen), NULL, 0); |
|
935 |
BAIL_IF_MACRO(!readui16(in, &commentlen), NULL, 0); |
|
936 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* disk number start */ |
|
937 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); /* internal file attribs */ |
|
938 |
BAIL_IF_MACRO(!readui32(in, &external_attr), NULL, 0); |
|
939 |
BAIL_IF_MACRO(!readui32(in, &entry->offset), NULL, 0); |
|
940 |
entry->offset += ofs_fixup; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
941 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
942 |
entry->symlink = NULL; /* will be resolved later, if necessary. */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
943 |
entry->resolved = (zip_has_symlink_attr(entry, external_attr)) ? |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
944 |
ZIP_UNRESOLVED_SYMLINK : ZIP_UNRESOLVED_FILE; |
337 | 945 |
|
946 |
entry->name = (char *) malloc(fnamelen + 1); |
|
947 |
BAIL_IF_MACRO(entry->name == NULL, ERR_OUT_OF_MEMORY, 0); |
|
948 |
if (__PHYSFS_platformRead(in, entry->name, fnamelen, 1) != 1) |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
949 |
goto zip_load_entry_puked; |
337 | 950 |
|
951 |
entry->name[fnamelen] = '\0'; /* null-terminate the filename. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
952 |
zip_convert_dos_path(entry, entry->name); |
337 | 953 |
|
954 |
si64 = __PHYSFS_platformTell(in); |
|
955 |
if (si64 == -1) |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
956 |
goto zip_load_entry_puked; |
337 | 957 |
|
958 |
/* seek to the start of the next entry in the central directory... */ |
|
959 |
if (!__PHYSFS_platformSeek(in, si64 + extralen + commentlen)) |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
960 |
goto zip_load_entry_puked; |
337 | 961 |
|
962 |
return(1); /* success. */ |
|
963 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
964 |
zip_load_entry_puked: |
337 | 965 |
free(entry->name); |
966 |
return(0); /* failure. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
967 |
} /* zip_load_entry */ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
968 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
969 |
|
464
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
970 |
static int zip_entry_cmp(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
971 |
{ |
464
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
972 |
ZIPentry *a = (ZIPentry *) _a; |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
973 |
return(strcmp(a[one].name, a[two].name)); |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
974 |
} /* zip_entry_cmp */ |
337 | 975 |
|
976 |
||
464
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
977 |
static void zip_entry_swap(void *_a, PHYSFS_uint32 one, PHYSFS_uint32 two) |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
978 |
{ |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
979 |
ZIPentry tmp; |
464
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
980 |
ZIPentry *first = &(((ZIPentry *) _a)[one]); |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
981 |
ZIPentry *second = &(((ZIPentry *) _a)[two]); |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
982 |
memcpy(&tmp, first, sizeof (ZIPentry)); |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
983 |
memcpy(first, second, sizeof (ZIPentry)); |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
984 |
memcpy(second, &tmp, sizeof (ZIPentry)); |
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
985 |
} /* zip_entry_swap */ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
986 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
987 |
|
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
988 |
static int zip_load_entries(void *in, DirHandle *dirh, |
337 | 989 |
PHYSFS_uint32 data_ofs, PHYSFS_uint32 central_ofs) |
990 |
{ |
|
991 |
ZIPinfo *info = (ZIPinfo *) dirh->opaque; |
|
992 |
PHYSFS_uint32 max = info->entryCount; |
|
993 |
PHYSFS_uint32 i; |
|
994 |
||
995 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, central_ofs), NULL, 0); |
|
996 |
||
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
997 |
info->entries = (ZIPentry *) malloc(sizeof (ZIPentry) * max); |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
998 |
BAIL_IF_MACRO(info->entries == NULL, ERR_OUT_OF_MEMORY, 0); |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
999 |
|
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1000 |
for (i = 0; i < max; i++) |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
1001 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1002 |
if (!zip_load_entry(in, &info->entries[i], data_ofs)) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1003 |
{ |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1004 |
zip_free_entries(info->entries, i); |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1005 |
return(0); |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
1006 |
} /* if */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1007 |
} /* for */ |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1008 |
|
464
21c8e0d1578c
Generalized sorting routines, and removed individual implementations.
Ryan C. Gordon <icculus@icculus.org>
parents:
446
diff
changeset
|
1009 |
__PHYSFS_sort(info->entries, max, zip_entry_cmp, zip_entry_swap); |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1010 |
return(1); |
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1011 |
} /* zip_load_entries */ |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1012 |
|
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1013 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1014 |
static int zip_parse_end_of_central_dir(void *in, DirHandle *dirh, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1015 |
PHYSFS_uint32 *data_start, |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1016 |
PHYSFS_uint32 *central_dir_ofs) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1017 |
{ |
337 | 1018 |
ZIPinfo *zipinfo = (ZIPinfo *) dirh->opaque; |
1019 |
PHYSFS_uint32 ui32; |
|
1020 |
PHYSFS_uint16 ui16; |
|
1021 |
PHYSFS_sint64 len; |
|
1022 |
PHYSFS_sint64 pos; |
|
1023 |
||
1024 |
/* find the end-of-central-dir record, and seek to it. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1025 |
pos = zip_find_end_of_central_dir(in, &len); |
337 | 1026 |
BAIL_IF_MACRO(pos == -1, NULL, 0); |
1027 |
BAIL_IF_MACRO(!__PHYSFS_platformSeek(in, pos), NULL, 0); |
|
1028 |
||
1029 |
/* check signature again, just in case. */ |
|
1030 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
1031 |
BAIL_IF_MACRO(ui32 != ZIP_END_OF_CENTRAL_DIR_SIG, ERR_NOT_AN_ARCHIVE, 0); |
|
1032 |
||
1033 |
/* number of this disk */ |
|
1034 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1035 |
BAIL_IF_MACRO(ui16 != 0, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1036 |
||
1037 |
/* number of the disk with the start of the central directory */ |
|
1038 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1039 |
BAIL_IF_MACRO(ui16 != 0, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1040 |
||
1041 |
/* total number of entries in the central dir on this disk */ |
|
1042 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1043 |
||
1044 |
/* total number of entries in the central dir */ |
|
1045 |
BAIL_IF_MACRO(!readui16(in, &zipinfo->entryCount), NULL, 0); |
|
1046 |
BAIL_IF_MACRO(ui16 != zipinfo->entryCount, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1047 |
||
1048 |
/* size of the central directory */ |
|
1049 |
BAIL_IF_MACRO(!readui32(in, &ui32), NULL, 0); |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1050 |
|
337 | 1051 |
/* offset of central directory */ |
1052 |
BAIL_IF_MACRO(!readui32(in, central_dir_ofs), NULL, 0); |
|
1053 |
BAIL_IF_MACRO(pos < *central_dir_ofs + ui32, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1054 |
||
1055 |
/* |
|
1056 |
* For self-extracting archives, etc, there's crapola in the file |
|
1057 |
* before the zipfile records; we calculate how much data there is |
|
1058 |
* prepended by determining how far the central directory offset is |
|
1059 |
* from where it is supposed to be (start of end-of-central-dir minus |
|
1060 |
* sizeof central dir)...the difference in bytes is how much arbitrary |
|
1061 |
* data is at the start of the physical file. |
|
1062 |
*/ |
|
1063 |
*data_start = pos - (*central_dir_ofs + ui32); |
|
1064 |
||
1065 |
/* Now that we know the difference, fix up the central dir offset... */ |
|
1066 |
*central_dir_ofs += *data_start; |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1067 |
|
337 | 1068 |
/* zipfile comment length */ |
1069 |
BAIL_IF_MACRO(!readui16(in, &ui16), NULL, 0); |
|
1070 |
||
1071 |
/* |
|
1072 |
* Make sure that the comment length matches to the end of file... |
|
1073 |
* If it doesn't, we're either in the wrong part of the file, or the |
|
1074 |
* file is corrupted, but we give up either way. |
|
1075 |
*/ |
|
1076 |
BAIL_IF_MACRO((pos + 22 + ui16) != len, ERR_UNSUPPORTED_ARCHIVE, 0); |
|
1077 |
||
1078 |
return(1); /* made it. */ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1079 |
} /* zip_parse_end_of_central_dir */ |
337 | 1080 |
|
1081 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1082 |
static DirHandle *zip_allocate_dirhandle(const char *name) |
337 | 1083 |
{ |
1084 |
char *ptr; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1085 |
ZIPinfo *info; |
337 | 1086 |
DirHandle *retval = malloc(sizeof (DirHandle)); |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1087 |
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL); |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1088 |
|
337 | 1089 |
memset(retval, '\0', sizeof (DirHandle)); |
46
66d9a112b0f7
Now with all directory functions implemented (and debugged?). No file
Ryan C. Gordon <icculus@icculus.org>
parents:
41
diff
changeset
|
1090 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1091 |
info = (ZIPinfo *) malloc(sizeof (ZIPinfo)); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1092 |
if (info == NULL) |
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1093 |
{ |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1094 |
free(retval); |
337 | 1095 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
1096 |
} /* if */ |
|
1097 |
||
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1098 |
memset(info, '\0', sizeof (ZIPinfo)); |
337 | 1099 |
|
1100 |
ptr = (char *) malloc(strlen(name) + 1); |
|
1101 |
if (ptr == NULL) |
|
1102 |
{ |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1103 |
free(info); |
337 | 1104 |
free(retval); |
1105 |
BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL); |
|
53
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1106 |
} /* if */ |
6c3c990f006e
ZIP entries are now cached at openArchive time, which cleans up the race
Ryan C. Gordon <icculus@icculus.org>
parents:
52
diff
changeset
|
1107 |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1108 |
info->archiveName = ptr; |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1109 |
strcpy(info->archiveName, name); |
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1110 |
retval->opaque = info; |
337 | 1111 |
retval->funcs = &__PHYSFS_DirFunctions_ZIP; |
1112 |
return(retval); |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1113 |
} /* zip_allocate_dirhandle */ |
337 | 1114 |
|
1115 |
||
1116 |
static DirHandle *ZIP_openArchive(const char *name, int forWriting) |
|
1117 |
{ |
|
1118 |
DirHandle *retval = NULL; |
|
1119 |
void *in = NULL; |
|
1120 |
PHYSFS_uint32 data_start; |
|
365
3d087cde1252
My rewrite continues. I'm mostly satisfied with this code now, minus debugging.
Ryan C. Gordon <icculus@icculus.org>
parents:
345
diff
changeset
|
1121 |
PHYSFS_uint32 cent_dir_ofs; |
337 | 1122 |
int success = 0; |
1123 |
||