bind_physfs.c
8.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*
* Bind physfs directories to other places.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Nicolas Casalini.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "physfs.h"
#define __PHYSICSFS_INTERNAL__
#include "physfs_internal.h"
static char *__BIND_PHYSFS_toDependent(dvoid *opaque, const char *name, const char *append)
{
char *f = __PHYSFS_platformCvtToDependent((char *)opaque, name, NULL);
// printf("== %s [%s] ::: %s\n", name, opaque, f);
// if ((strlen(d) > strlen(dname)) && strncmp(d+strlen(dname), dname, strlen(dname))) return;
// Forbid recursions
if (!strncmp(name, opaque+1, strlen(opaque+1)))
{
return NULL;
}
// Forbid recursions
else if (strstr(name+strlen(opaque), opaque))
{
// printf("FORBID: %s [%s] => %s\n", name, opaque, f);
return NULL;
}
else
{
char *f = __PHYSFS_platformCvtToDependent((char *)opaque, name, NULL);
// FIXME: I'm a very very dirty hack; __PHYSFS_platformCvtToDependent is not really meant to return a platform independant path, so why turn it into one (for poor windows users)
char *c = f;
while (*c) { if (*c == '\\') *c = '/'; c++; }
return f;
}
}
static PHYSFS_sint64 BIND_PHYSFS_read(fvoid *opaque, void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
{
PHYSFS_sint64 retval;
retval = PHYSFS_read(opaque, buffer, objSize, objCount);
return(retval);
} /* BIND_PHYSFS_read */
static PHYSFS_sint64 BIND_PHYSFS_write(fvoid *opaque, const void *buffer,
PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, -1);
} /* BIND_PHYSFS_write */
static int BIND_PHYSFS_eof(fvoid *opaque)
{
return(PHYSFS_eof(opaque));
} /* BIND_PHYSFS_eof */
static PHYSFS_sint64 BIND_PHYSFS_tell(fvoid *opaque)
{
return(PHYSFS_tell(opaque));
} /* BIND_PHYSFS_tell */
static int BIND_PHYSFS_seek(fvoid *opaque, PHYSFS_uint64 offset)
{
return(PHYSFS_seek(opaque, offset));
} /* BIND_PHYSFS_seek */
static PHYSFS_sint64 BIND_PHYSFS_fileLength(fvoid *opaque)
{
return(PHYSFS_fileLength(opaque));
} /* BIND_PHYSFS_fileLength */
static int BIND_PHYSFS_fileClose(fvoid *opaque)
{
/*
* we manually flush the buffer, since that's the place a close will
* most likely fail, but that will leave the file handle in an undefined
* state if it fails. Flush failures we can recover from.
*/
BAIL_IF_MACRO(!PHYSFS_flush(opaque), NULL, 0);
BAIL_IF_MACRO(!PHYSFS_close(opaque), NULL, 0);
return(1);
} /* BIND_PHYSFS_fileClose */
static int BIND_PHYSFS_isArchive(const char *filename, int forWriting)
{
if (forWriting) return(0);
if (strncmp(filename, "bind::/", 7)) return(0);
filename = filename + 6;
/* directories ARE archives in this driver... */
return(PHYSFS_isDirectory(filename));
} /* BIND_PHYSFS_isArchive */
static void *BIND_PHYSFS_openArchive(const char *name, int forWriting)
{
const char *dirsep = "/";
char *retval = NULL;
/* !!! FIXME: when is this not called right before openArchive? */
BAIL_IF_MACRO(!BIND_PHYSFS_isArchive(name, forWriting),
ERR_UNSUPPORTED_ARCHIVE, 0);
name = name + 6;
size_t namelen = strlen(name);
size_t seplen = strlen(dirsep);
retval = allocator.Malloc(namelen + seplen + 1);
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
/* make sure there's a dir separator at the end of the string */
strcpy(retval, name);
if (strcmp((name + namelen) - seplen, dirsep) != 0)
strcat(retval, dirsep);
return(retval);
} /* BIND_PHYSFS_openArchive */
static void BIND_PHYSFS_enumerateFiles(dvoid *opaque, const char *dname,
int omitSymLinks, PHYSFS_EnumFilesCallback cb,
const char *origdir, void *callbackdata)
{
char *d = __BIND_PHYSFS_toDependent((char *)opaque, dname, NULL);
if (d != NULL)
{
PHYSFS_enumerateFilesCallback(d, cb, callbackdata);
allocator.Free(d);
} /* if */
} /* BIND_PHYSFS_enumerateFiles */
static int BIND_PHYSFS_exists(dvoid *opaque, const char *name)
{
char *f = __BIND_PHYSFS_toDependent((char *) opaque, name, NULL);
int retval;
BAIL_IF_MACRO(f == NULL, NULL, 0);
retval = PHYSFS_exists(f);
allocator.Free(f);
return(retval);
} /* BIND_PHYSFS_exists */
static int BIND_PHYSFS_isDirectory(dvoid *opaque, const char *name, int *fileExists)
{
char *d = __BIND_PHYSFS_toDependent((char *) opaque, name, NULL);
int retval = 0;
BAIL_IF_MACRO(d == NULL, NULL, 0);
*fileExists = PHYSFS_exists(d);
if (*fileExists)
retval = PHYSFS_isDirectory(d);
allocator.Free(d);
return(retval);
} /* BIND_PHYSFS_isDirectory */
static int BIND_PHYSFS_isSymLink(dvoid *opaque, const char *name, int *fileExists)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
} /* BIND_PHYSFS_isSymLink */
static PHYSFS_sint64 BIND_PHYSFS_getLastModTime(dvoid *opaque,
const char *name,
int *fileExists)
{
char *d = __BIND_PHYSFS_toDependent((char *) opaque, name, NULL);
PHYSFS_sint64 retval = -1;
BAIL_IF_MACRO(d == NULL, NULL, 0);
*fileExists = PHYSFS_exists(d);
if (*fileExists)
retval = PHYSFS_getLastModTime(d);
allocator.Free(d);
return(retval);
} /* BIND_PHYSFS_getLastModTime */
static fvoid *doOpen(dvoid *opaque, const char *name,
void *(*openFunc)(const char *filename),
int *fileExists)
{
char *f = __BIND_PHYSFS_toDependent((char *) opaque, name, NULL);
void *rc = NULL;
BAIL_IF_MACRO(f == NULL, NULL, NULL);
if (fileExists != NULL)
{
*fileExists = PHYSFS_exists(f);
if (!(*fileExists))
{
allocator.Free(f);
return(NULL);
} /* if */
} /* if */
rc = openFunc(f);
allocator.Free(f);
return((fvoid *) rc);
} /* doOpen */
static fvoid *BIND_PHYSFS_openRead(dvoid *opaque, const char *fnm, int *exist)
{
return(doOpen(opaque, fnm, PHYSFS_openRead, exist));
} /* BIND_PHYSFS_openRead */
static fvoid *BIND_PHYSFS_openWrite(dvoid *opaque, const char *filename)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
} /* BIND_PHYSFS_openWrite */
static fvoid *BIND_PHYSFS_openAppend(dvoid *opaque, const char *filename)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
} /* BIND_PHYSFS_openAppend */
static int BIND_PHYSFS_remove(dvoid *opaque, const char *name)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
} /* BIND_PHYSFS_remove */
static int BIND_PHYSFS_mkdir(dvoid *opaque, const char *name)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
} /* BIND_PHYSFS_mkdir */
static int BIND_PHYSFS_rename(dvoid *opaque, const char *src, const char *dst)
{
BAIL_MACRO(ERR_NOT_SUPPORTED, 0);
} /* BIND_PHYSFS_mkdir */
static void BIND_PHYSFS_dirClose(dvoid *opaque)
{
allocator.Free(opaque);
} /* BIND_PHYSFS_dirClose */
const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_BIND_PHYSFS =
{
"",
"Binds physfs mounted dirs into other ones",
"Nicolas Casalini <darkgod@te4.org>",
"http://te4.org/",
};
const PHYSFS_Archiver __PHYSFS_Archiver_BIND_PHYSFS =
{
&__PHYSFS_ArchiveInfo_BIND_PHYSFS,
BIND_PHYSFS_isArchive, /* isArchive() method */
BIND_PHYSFS_openArchive, /* openArchive() method */
BIND_PHYSFS_enumerateFiles, /* enumerateFiles() method */
BIND_PHYSFS_exists, /* exists() method */
BIND_PHYSFS_isDirectory, /* isDirectory() method */
BIND_PHYSFS_isSymLink, /* isSymLink() method */
BIND_PHYSFS_getLastModTime, /* getLastModTime() method */
BIND_PHYSFS_openRead, /* openRead() method */
BIND_PHYSFS_openWrite, /* openWrite() method */
BIND_PHYSFS_openAppend, /* openAppend() method */
BIND_PHYSFS_remove, /* remove() method */
BIND_PHYSFS_rename, /* rename() method */
BIND_PHYSFS_mkdir, /* mkdir() method */
BIND_PHYSFS_dirClose, /* dirClose() method */
BIND_PHYSFS_read, /* read() method */
BIND_PHYSFS_write, /* write() method */
BIND_PHYSFS_eof, /* eof() method */
BIND_PHYSFS_tell, /* tell() method */
BIND_PHYSFS_seek, /* seek() method */
BIND_PHYSFS_fileLength, /* fileLength() method */
BIND_PHYSFS_fileClose /* fileClose() method */
};