Skip to content

Latest commit

 

History

History
334 lines (265 loc) · 8.75 KB

platform_unix.c

File metadata and controls

334 lines (265 loc) · 8.75 KB
 
Jul 7, 2001
Jul 7, 2001
1
2
3
/*
* Unix support routines for PhysicsFS.
*
Mar 11, 2007
Mar 11, 2007
4
* Please see the file LICENSE.txt in the source's root directory.
Jul 7, 2001
Jul 7, 2001
5
6
7
8
*
* This file written by Ryan C. Gordon.
*/
Mar 11, 2007
Mar 11, 2007
9
10
11
12
#define __PHYSICSFS_INTERNAL__
#include "physfs_platforms.h"
#ifdef PHYSFS_PLATFORM_UNIX
Jun 29, 2002
Jun 29, 2002
13
Jul 8, 2001
Jul 8, 2001
14
15
16
17
18
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <pwd.h>
#include <sys/stat.h>
Jul 16, 2001
Jul 16, 2001
19
#include <sys/param.h>
Jul 8, 2001
Jul 8, 2001
20
21
22
#include <dirent.h>
#include <time.h>
#include <errno.h>
Mar 5, 2002
Mar 5, 2002
23
Mar 20, 2012
Mar 20, 2012
24
25
26
27
28
29
30
31
#if PHYSFS_PLATFORM_LINUX && !defined(PHYSFS_HAVE_MNTENT_H)
#define PHYSFS_HAVE_MNTENT_H 1
#elif PHYSFS_PLATFORM_SOLARIS && !defined(PHYSFS_HAVE_SYS_MNTTAB_H)
#define PHYSFS_HAVE_SYS_MNTTAB_H 1
#elif PHYSFS_PLATFORM_BSD && !defined(PHYSFS_HAVE_SYS_UCRED_H)
#define PHYSFS_HAVE_SYS_UCRED_H 1
#endif
Jul 20, 2002
Jul 20, 2002
32
33
34
35
#ifdef PHYSFS_HAVE_SYS_UCRED_H
# ifdef PHYSFS_HAVE_MNTENT_H
# undef PHYSFS_HAVE_MNTENT_H /* don't do both... */
# endif
May 3, 2009
May 3, 2009
36
# include <sys/mount.h>
Jul 20, 2002
Jul 20, 2002
37
# include <sys/ucred.h>
Mar 5, 2002
Mar 5, 2002
38
#endif
Jul 7, 2001
Jul 7, 2001
39
Jul 20, 2002
Jul 20, 2002
40
41
42
#ifdef PHYSFS_HAVE_MNTENT_H
#include <mntent.h>
#endif
Apr 6, 2002
Apr 6, 2002
43
Apr 13, 2009
Apr 13, 2009
44
45
46
47
#ifdef PHYSFS_HAVE_SYS_MNTTAB_H
#include <sys/mnttab.h>
#endif
Jul 7, 2001
Jul 7, 2001
48
49
#include "physfs_internal.h"
Mar 24, 2002
Mar 24, 2002
50
51
int __PHYSFS_platformInit(void)
{
Jan 28, 2010
Jan 28, 2010
52
return 1; /* always succeed. */
Mar 24, 2002
Mar 24, 2002
53
54
55
56
57
} /* __PHYSFS_platformInit */
int __PHYSFS_platformDeinit(void)
{
Jan 28, 2010
Jan 28, 2010
58
return 1; /* always succeed. */
Mar 24, 2002
Mar 24, 2002
59
60
61
} /* __PHYSFS_platformDeinit */
Jul 25, 2002
Jul 25, 2002
62
/* Stub version for platforms without CD-ROM support. */
Sep 29, 2004
Sep 29, 2004
63
void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data)
Jul 25, 2002
Jul 25, 2002
64
{
Apr 13, 2009
Apr 13, 2009
65
66
#if (defined PHYSFS_NO_CDROM_SUPPORT)
/* no-op. */
Jul 25, 2002
Jul 25, 2002
67
May 24, 2003
May 24, 2003
68
#elif (defined PHYSFS_HAVE_SYS_UCRED_H)
Jul 25, 2002
Jul 25, 2002
69
int i;
Sep 29, 2004
Sep 29, 2004
70
71
struct statfs *mntbufp = NULL;
int mounts = getmntinfo(&mntbufp, MNT_WAIT);
Mar 5, 2002
Mar 5, 2002
72
Jul 25, 2002
Jul 25, 2002
73
74
for (i = 0; i < mounts; i++)
{
Mar 5, 2002
Mar 5, 2002
75
76
int add_it = 0;
Jul 25, 2002
Jul 25, 2002
77
if (strcmp(mntbufp[i].f_fstypename, "iso9660") == 0)
Mar 5, 2002
Mar 5, 2002
78
add_it = 1;
Jul 25, 2002
Jul 25, 2002
79
else if (strcmp( mntbufp[i].f_fstypename, "cd9660") == 0)
Apr 6, 2002
Apr 6, 2002
80
add_it = 1;
May 21, 2002
May 21, 2002
81
82
/* add other mount types here */
Mar 5, 2002
Mar 5, 2002
83
84
if (add_it)
Sep 29, 2004
Sep 29, 2004
85
cb(data, mntbufp[i].f_mntonname);
Jul 25, 2002
Jul 25, 2002
86
} /* for */
Mar 5, 2002
Mar 5, 2002
87
May 24, 2003
May 24, 2003
88
#elif (defined PHYSFS_HAVE_MNTENT_H)
Aug 7, 2001
Aug 7, 2001
89
90
91
92
FILE *mounts = NULL;
struct mntent *ent = NULL;
mounts = setmntent("/etc/mtab", "r");
Mar 20, 2012
Mar 20, 2012
93
BAIL_IF_MACRO(mounts == NULL, PHYSFS_ERR_IO, /*return void*/);
Aug 7, 2001
Aug 7, 2001
94
95
96
97
98
99
while ( (ent = getmntent(mounts)) != NULL )
{
int add_it = 0;
if (strcmp(ent->mnt_type, "iso9660") == 0)
add_it = 1;
Mar 22, 2010
Mar 22, 2010
100
101
102
103
104
105
106
107
else if (strcmp(ent->mnt_type, "udf") == 0)
add_it = 1;
/* !!! FIXME: these might pick up floppy drives, right? */
else if (strcmp(ent->mnt_type, "auto") == 0)
add_it = 1;
else if (strcmp(ent->mnt_type, "supermount") == 0)
add_it = 1;
May 21, 2002
May 21, 2002
108
Mar 1, 2010
Mar 1, 2010
109
110
/* !!! FIXME: udf? automount? */
May 21, 2002
May 21, 2002
111
/* add other mount types here */
Aug 7, 2001
Aug 7, 2001
112
113
if (add_it)
Sep 29, 2004
Sep 29, 2004
114
cb(data, ent->mnt_dir);
Aug 7, 2001
Aug 7, 2001
115
116
117
} /* while */
endmntent(mounts);
Apr 13, 2009
Apr 13, 2009
118
119
120
121
122
#elif (defined PHYSFS_HAVE_SYS_MNTTAB_H)
FILE *mounts = fopen(MNTTAB, "r");
struct mnttab ent;
Mar 20, 2012
Mar 20, 2012
123
BAIL_IF_MACRO(mounts == NULL, PHYSFS_ERR_IO, /*return void*/);
Apr 13, 2009
Apr 13, 2009
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
while (getmntent(mounts, &ent) == 0)
{
int add_it = 0;
if (strcmp(ent.mnt_fstype, "hsfs") == 0)
add_it = 1;
/* add other mount types here */
if (add_it)
cb(data, ent.mnt_mountp);
} /* while */
fclose(mounts);
#else
#error Unknown platform. Should have defined PHYSFS_NO_CDROM_SUPPORT, perhaps.
Mar 5, 2002
Mar 5, 2002
140
#endif
Apr 13, 2009
Apr 13, 2009
141
} /* __PHYSFS_platformDetectAvailableCDs */
Jul 7, 2001
Jul 7, 2001
142
143
May 24, 2002
May 24, 2002
144
145
/* this is in posix.c ... */
extern char *__PHYSFS_platformCopyEnvironmentVariable(const char *varname);
Jul 8, 2001
Jul 8, 2001
146
147
May 21, 2002
May 21, 2002
148
149
150
151
152
153
/*
* See where program (bin) resides in the $PATH specified by (envr).
* returns a copy of the first element in envr that contains it, or NULL
* if it doesn't exist or there were other problems. PHYSFS_SetError() is
* called if we have a problem.
*
Mar 14, 2005
Mar 14, 2005
154
* (envr) will be scribbled over, and you are expected to allocator.Free() the
May 21, 2002
May 21, 2002
155
156
157
* return value when you're done with it.
*/
static char *findBinaryInPath(const char *bin, char *envr)
Jul 8, 2001
Jul 8, 2001
158
{
May 21, 2002
May 21, 2002
159
160
161
size_t alloc_size = 0;
char *exe = NULL;
char *start = envr;
Jul 8, 2001
Jul 8, 2001
162
163
char *ptr;
Mar 20, 2012
Mar 20, 2012
164
165
assert(bin != NULL);
assert(envr != NULL);
Jul 8, 2001
Jul 8, 2001
166
167
168
do
{
May 21, 2002
May 21, 2002
169
170
size_t size;
ptr = strchr(start, ':'); /* find next $PATH separator. */
Jul 8, 2001
Jul 8, 2001
171
172
173
if (ptr)
*ptr = '\0';
May 21, 2002
May 21, 2002
174
175
size = strlen(start) + strlen(bin) + 2;
if (size > alloc_size)
Jul 8, 2001
Jul 8, 2001
176
{
Mar 14, 2005
Mar 14, 2005
177
char *x = (char *) allocator.Realloc(exe, size);
Mar 20, 2012
Mar 20, 2012
178
if (!x)
May 21, 2002
May 21, 2002
179
180
{
if (exe != NULL)
Mar 14, 2005
Mar 14, 2005
181
allocator.Free(exe);
Mar 20, 2012
Mar 20, 2012
182
BAIL_MACRO(PHYSFS_ERR_OUT_OF_MEMORY, NULL);
May 21, 2002
May 21, 2002
183
184
185
186
} /* if */
alloc_size = size;
exe = x;
Jul 8, 2001
Jul 8, 2001
187
} /* if */
May 21, 2002
May 21, 2002
188
189
/* build full binary path... */
Jul 8, 2001
Jul 8, 2001
190
strcpy(exe, start);
Nov 30, 2002
Nov 30, 2002
191
if ((exe[0] == '\0') || (exe[strlen(exe) - 1] != '/'))
Aug 29, 2001
Aug 29, 2001
192
strcat(exe, "/");
May 21, 2002
May 21, 2002
193
194
195
strcat(exe, bin);
if (access(exe, X_OK) == 0) /* Exists as executable? We're done. */
Jul 8, 2001
Jul 8, 2001
196
{
May 21, 2002
May 21, 2002
197
strcpy(exe, start); /* i'm lazy. piss off. */
Jan 28, 2010
Jan 28, 2010
198
return exe;
May 21, 2002
May 21, 2002
199
} /* if */
Jul 8, 2001
Jul 8, 2001
200
May 21, 2002
May 21, 2002
201
start = ptr + 1; /* start points to beginning of next element. */
Jul 8, 2001
Jul 8, 2001
202
203
} while (ptr != NULL);
May 21, 2002
May 21, 2002
204
if (exe != NULL)
Mar 14, 2005
Mar 14, 2005
205
allocator.Free(exe);
May 21, 2002
May 21, 2002
206
Jan 28, 2010
Jan 28, 2010
207
return NULL; /* doesn't exist in path. */
May 21, 2002
May 21, 2002
208
209
210
} /* findBinaryInPath */
Jul 8, 2009
Jul 8, 2009
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
static char *readSymLink(const char *path)
{
ssize_t len = 64;
ssize_t rc = -1;
char *retval = NULL;
while (1)
{
char *ptr = (char *) allocator.Realloc(retval, (size_t) len);
if (ptr == NULL)
break; /* out of memory. */
retval = ptr;
rc = readlink(path, retval, len);
if (rc == -1)
break; /* not a symlink, i/o error, etc. */
else if (rc < len)
{
retval[rc] = '\0'; /* readlink doesn't null-terminate. */
return retval; /* we're good to go. */
} /* else if */
len *= 2; /* grow buffer, try again. */
} /* while */
if (retval != NULL)
allocator.Free(retval);
return NULL;
} /* readSymLink */
May 21, 2002
May 21, 2002
243
244
char *__PHYSFS_platformCalcBaseDir(const char *argv0)
{
Mar 19, 2007
Mar 19, 2007
245
246
247
248
249
char *retval = NULL;
char *envr = NULL;
/* fast path: default behaviour can handle this. */
if ( (argv0 != NULL) && (strchr(argv0, '/') != NULL) )
Jan 28, 2010
Jan 28, 2010
250
return NULL; /* higher level will parse out real path from argv0. */
May 21, 2002
May 21, 2002
251
Mar 19, 2007
Mar 19, 2007
252
253
254
255
256
/*
* Try to avoid using argv0 unless forced to. If there's a Linux-like
* /proc filesystem, you can get the full path to the current process from
* the /proc/self/exe symlink.
*/
Jul 8, 2009
Jul 8, 2009
257
retval = readSymLink("/proc/self/exe");
Jul 8, 2009
Jul 8, 2009
258
259
260
261
262
263
264
265
266
267
if (retval == NULL)
{
/* older kernels don't have /proc/self ... try PID version... */
const unsigned long long pid = (unsigned long long) getpid();
char path[64];
const int rc = (int) snprintf(path,sizeof(path),"/proc/%llu/exe",pid);
if ( (rc > 0) && (rc < sizeof(path)) )
retval = readSymLink(path);
} /* if */
Jul 8, 2009
Jul 8, 2009
268
if (retval != NULL) /* chop off filename. */
Mar 19, 2007
Mar 19, 2007
269
{
Jul 8, 2009
Jul 8, 2009
270
271
272
char *ptr = strrchr(retval, '/');
if (ptr != NULL)
*ptr = '\0';
Mar 19, 2007
Mar 19, 2007
273
} /* if */
May 21, 2002
May 21, 2002
274
Mar 19, 2007
Mar 19, 2007
275
276
277
278
if ((retval == NULL) && (argv0 != NULL))
{
/* If there's no dirsep on argv0, then look through $PATH for it. */
envr = __PHYSFS_platformCopyEnvironmentVariable("PATH");
Mar 20, 2012
Mar 20, 2012
279
BAIL_IF_MACRO(!envr, ERRPASS, NULL);
Mar 19, 2007
Mar 19, 2007
280
281
282
retval = findBinaryInPath(argv0, envr);
allocator.Free(envr);
} /* if */
May 21, 2002
May 21, 2002
283
Jul 8, 2009
Jul 8, 2009
284
285
286
287
288
289
290
291
if (retval != NULL)
{
/* try to shrink buffer... */
char *ptr = (char *) allocator.Realloc(retval, strlen(retval) + 1);
if (ptr != NULL)
retval = ptr; /* oh well if it failed. */
} /* if */
Jan 28, 2010
Jan 28, 2010
292
return retval;
Jul 8, 2001
Jul 8, 2001
293
294
295
} /* __PHYSFS_platformCalcBaseDir */
Mar 22, 2012
Mar 22, 2012
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
char *__PHYSFS_platformCalcPrefDir(const char *org, const char *app)
{
/*
* We use XDG's base directory spec, even if you're not on Linux.
* This isn't strictly correct, but the results are relatively sane
* in any case.
*
* http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
*/
const char *envr = getenv("XDG_DATA_HOME");
const char *append = "/";
char *retval = NULL;
size_t len = 0;
if (!envr)
{
/* You end up with "$HOME/.local/share/Game Name 2" */
envr = __PHYSFS_getUserDir();
BAIL_IF_MACRO(!envr, ERRPASS, NULL); /* oh well. */
append = ".local/share/";
} /* if */
Mar 22, 2012
Mar 22, 2012
318
len = strlen(envr) + strlen(append) + strlen(app) + 2;
Mar 22, 2012
Mar 22, 2012
319
320
retval = (char *) allocator.Malloc(len);
BAIL_IF_MACRO(!retval, PHYSFS_ERR_OUT_OF_MEMORY, NULL);
Mar 22, 2012
Mar 22, 2012
321
snprintf(retval, len, "%s%s%s/", envr, append, app);
Mar 22, 2012
Mar 22, 2012
322
323
324
325
return retval;
} /* __PHYSFS_platformCalcPrefDir */
Mar 20, 2007
Mar 20, 2007
326
327
int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a)
{
Jan 28, 2010
Jan 28, 2010
328
return 0; /* just use malloc() and friends. */
Mar 20, 2007
Mar 20, 2007
329
330
} /* __PHYSFS_platformSetDefaultAllocator */
Mar 11, 2007
Mar 11, 2007
331
#endif /* PHYSFS_PLATFORM_UNIX */
May 24, 2002
May 24, 2002
332
Jul 7, 2001
Jul 7, 2001
333
/* end of unix.c ... */