Skip to content

Latest commit

 

History

History
1434 lines (1175 loc) · 36.7 KB

platform_unix.c

File metadata and controls

1434 lines (1175 loc) · 36.7 KB
 
May 12, 2007
May 12, 2007
1
2
3
4
5
6
7
8
/**
* MojoSetup; a portable, flexible installation application.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
May 8, 2007
May 8, 2007
9
#if PLATFORM_UNIX
May 2, 2007
May 2, 2007
10
Dec 4, 2006
Dec 4, 2006
11
12
#if PLATFORM_MACOSX
#include <Carbon/Carbon.h>
Dec 9, 2006
Dec 9, 2006
13
14
#undef true
#undef false
Dec 4, 2006
Dec 4, 2006
15
16
#endif
Dec 8, 2006
Dec 8, 2006
17
#include <sys/time.h>
Mar 25, 2006
Mar 25, 2006
18
19
20
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>
Dec 13, 2006
Dec 13, 2006
21
#include <sys/utsname.h>
Apr 22, 2007
Apr 22, 2007
22
#include <sys/mount.h>
Dec 9, 2006
Dec 9, 2006
23
24
#include <time.h>
#include <unistd.h>
May 7, 2007
May 7, 2007
25
#include <signal.h>
May 9, 2007
May 9, 2007
26
#include <syslog.h>
Sep 20, 2007
Sep 20, 2007
27
#include <dirent.h>
Sep 20, 2007
Sep 20, 2007
28
#include <fcntl.h>
Feb 13, 2008
Feb 13, 2008
29
#include <sys/wait.h>
Dec 13, 2006
Dec 13, 2006
30
Apr 22, 2007
Apr 22, 2007
31
32
33
34
35
36
37
38
39
40
41
#if MOJOSETUP_HAVE_SYS_UCRED_H
# ifdef MOJOSETUP_HAVE_MNTENT_H
# undef MOJOSETUP_HAVE_MNTENT_H /* don't do both... */
# endif
# include <sys/ucred.h>
#endif
#if MOJOSETUP_HAVE_MNTENT_H
# include <mntent.h>
#endif
Dec 13, 2006
Dec 13, 2006
42
#if PLATFORM_BEOS
Dec 13, 2006
Dec 13, 2006
43
44
45
46
#define DLOPEN_ARGS 0
void *beos_dlopen(const char *fname, int unused);
void *beos_dlsym(void *lib, const char *sym);
void beos_dlclose(void *lib);
May 7, 2007
May 7, 2007
47
void beos_usleep(unsigned long ticks);
Dec 13, 2006
Dec 13, 2006
48
49
50
#define dlopen beos_dlopen
#define dlsym beos_dlsym
#define dlclose beos_dlclose
May 7, 2007
May 7, 2007
51
#define usleep beos_usleep
Dec 13, 2006
Dec 13, 2006
52
53
54
55
#else
#include <dlfcn.h>
#define DLOPEN_ARGS (RTLD_NOW | RTLD_GLOBAL)
#endif
Dec 13, 2006
Dec 13, 2006
56
May 8, 2007
May 8, 2007
57
#include "platform.h"
May 17, 2007
May 17, 2007
58
#include "gui.h"
Jan 25, 2008
Jan 25, 2008
59
#include "fileio.h"
Mar 25, 2006
Mar 25, 2006
60
Dec 4, 2006
Dec 4, 2006
61
62
static struct timeval startup_time;
Nov 21, 2007
Nov 21, 2007
63
64
65
66
67
68
69
70
71
72
73
74
75
76
boolean MojoPlatform_istty(void)
{
static boolean already_checked = false; // this never changes in a run.
static boolean retval = false;
if (!already_checked)
{
retval = isatty(0) && isatty(1) ? true : false;
already_checked = true;
} // if
return retval;
} // MojoPlatform_istty
May 20, 2007
May 20, 2007
77
char *MojoPlatform_currentWorkingDir(void)
Dec 14, 2006
Dec 14, 2006
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
char *retval = NULL;
size_t len;
// loop a few times in case we don't have a large enough buffer.
for (len = 128; len <= (16*1024); len *= 2)
{
retval = (char *) xrealloc(retval, len);
if (getcwd(retval, len-1) != NULL)
{
size_t slen = strlen(retval);
if (retval[slen-1] != '/') // make sure this ends with '/' ...
{
retval[slen] = '/';
retval[slen+1] = '\0';
} // if
return retval;
} // if
} // for
free(retval);
return NULL;
May 20, 2007
May 20, 2007
100
} // MojoPlatform_currentWorkingDir
Dec 14, 2006
Dec 14, 2006
101
102
Jul 2, 2007
Jul 2, 2007
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
char *MojoPlatform_readlink(const char *linkname)
{
size_t alloclen = 16;
char *retval = NULL;
char *buf = NULL;
size_t len = -1;
do
{
alloclen *= 2;
buf = xrealloc(buf, alloclen);
len = readlink(linkname, buf, alloclen-1);
if ( (len != -1) && (len < (alloclen-1)) ) // !error && !overflow
{
buf[len] = '\0'; // readlink() doesn't null-terminate!
retval = xrealloc(buf, len+1); // shrink it down.
} // if
} while (len >= (alloclen-1)); // loop if we need a bigger buffer.
return retval; // caller must free() this.
} // MojoPlatform_readlink
Dec 14, 2006
Dec 14, 2006
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
static void *guaranteeAllocation(void *ptr, size_t len, size_t *_alloclen)
{
void *retval = NULL;
size_t alloclen = *_alloclen;
if (alloclen > len)
return ptr;
if (!alloclen)
alloclen = 1;
while (alloclen <= len)
alloclen *= 2;
retval = xrealloc(ptr, alloclen);
if (retval != NULL)
*_alloclen = alloclen;
return retval;
} // guaranteeAllocation
// This is a mess, but I'm not sure it can be done more cleanly.
static char *realpathInternal(char *path, const char *cwd, int linkloop)
{
char *linkname = NULL;
char *retval = NULL;
size_t len = 0;
size_t alloclen = 0;
if (*path == '/') // absolute path.
{
retval = xstrdup("/");
path++;
len = 1;
} // if
else // relative path.
{
if (cwd != NULL)
retval = xstrdup(cwd);
else
{
May 20, 2007
May 20, 2007
167
if ((retval = MojoPlatform_currentWorkingDir()) == NULL)
Dec 14, 2006
Dec 14, 2006
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
return NULL;
} // else
len = strlen(retval);
} // else
while (true)
{
struct stat statbuf;
size_t newlen;
char *nextpath = strchr(path, '/');
if (nextpath != NULL)
*nextpath = '\0';
newlen = strlen(path);
retval = guaranteeAllocation(retval, len + newlen + 2, &alloclen);
strcpy(retval + len, path);
if (*path == '\0')
retval[--len] = '\0'; // chop ending "/" bit, it gets readded later.
else if (strcmp(path, ".") == 0)
{
retval[--len] = '\0'; // chop ending "/." bit
newlen = 0;
} // else if
else if (strcmp(path, "..") == 0)
{
char *ptr;
retval[--len] = '\0'; // chop ending "/.." bit
ptr = strrchr(retval, '/');
if ((ptr == NULL) || (ptr == retval))
{
strcpy(retval, "/");
len = 0;
} // if
else
{
*ptr = '\0';
len -= (size_t) ((retval+len)-ptr);
} // else
newlen = 0;
} // else if
// it may be a symlink...check it.
else if (lstat(retval, &statbuf) == -1)
goto realpathInternal_failed;
else if (S_ISLNK(statbuf.st_mode))
{
char *newresolve = NULL;
if (linkloop > 255)
goto realpathInternal_failed;
Jul 2, 2007
Jul 2, 2007
223
224
linkname = MojoPlatform_readlink(retval);
if (linkname == NULL)
Dec 14, 2006
Dec 14, 2006
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
goto realpathInternal_failed;
// chop off symlink name for its cwd.
retval[len] = '\0';
// resolve the link...
newresolve = realpathInternal(linkname, retval, linkloop + 1);
if (newresolve == NULL)
goto realpathInternal_failed;
len = strlen(newresolve);
retval = guaranteeAllocation(retval, len + 2, &alloclen);
strcpy(retval, newresolve);
free(newresolve);
free(linkname);
Jul 2, 2007
Jul 2, 2007
240
linkname = NULL;
Dec 14, 2006
Dec 14, 2006
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
} // else if
else
{
len += newlen;
} // else
if (nextpath == NULL)
break; // holy crap we're done!
else // append a '/' before the next path element.
{
path = nextpath + 1;
retval[len++] = '/';
retval[len] = '\0';
} // else
} // while
// Shrink string if we're using more memory than necessary...
if (alloclen > len+1)
retval = (char *) xrealloc(retval, len+1);
return retval;
realpathInternal_failed:
free(linkname);
free(retval);
return NULL;
} // realpathInternal
// Rolling my own realpath, even if the runtime has one, since apparently
// the spec is a little flakey, and it can overflow PATH_MAX. On BeOS <= 5,
// we'd have to resort to BPath to do this, too, and I'd rather avoid the C++
// dependencies and headers.
char *MojoPlatform_realpath(const char *_path)
{
char *path = xstrdup(_path);
char *retval = realpathInternal(path, NULL, 0);
free(path);
return retval;
} // MojoPlatform_realpath
Dec 2, 2006
Dec 2, 2006
284
285
286
287
288
289
290
291
292
293
// (Stolen from physicsfs: http://icculus.org/physfs/ ...)
/*
* See where program (bin) resides in the $PATH. Returns a copy of the first
* element in $PATH that contains it, or NULL if it doesn't exist or there
* were other problems.
*
* You are expected to free() the return value when you're done with it.
*/
static char *findBinaryInPath(const char *bin)
{
Dec 2, 2006
Dec 2, 2006
294
const char *_envr = getenv("PATH");
Dec 2, 2006
Dec 2, 2006
295
size_t alloc_size = 0;
Dec 2, 2006
Dec 2, 2006
296
char *envr = NULL;
Dec 2, 2006
Dec 2, 2006
297
char *exe = NULL;
Dec 2, 2006
Dec 2, 2006
298
char *start = NULL;
Dec 2, 2006
Dec 2, 2006
299
300
char *ptr = NULL;
Dec 2, 2006
Dec 2, 2006
301
if ((_envr == NULL) || (bin == NULL))
Dec 2, 2006
Dec 2, 2006
302
303
return NULL;
Dec 2, 2006
Dec 2, 2006
304
305
306
307
envr = (char *) alloca(strlen(_envr) + 1);
strcpy(envr, _envr);
start = envr;
Dec 2, 2006
Dec 2, 2006
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
do
{
size_t size;
ptr = strchr(start, ':'); // find next $PATH separator.
if (ptr)
*ptr = '\0';
size = strlen(start) + strlen(bin) + 2;
if (size > alloc_size)
{
char *x = (char *) xrealloc(exe, size);
alloc_size = size;
exe = x;
} // if
// build full binary path...
strcpy(exe, start);
if ((exe[0] == '\0') || (exe[strlen(exe) - 1] != '/'))
strcat(exe, "/");
strcat(exe, bin);
if (access(exe, X_OK) == 0) // Exists as executable? We're done.
{
strcpy(exe, start); // i'm lazy. piss off.
return(exe);
} // if
start = ptr + 1; // start points to beginning of next element.
} while (ptr != NULL);
if (exe != NULL)
free(exe);
return(NULL); // doesn't exist in path.
} // findBinaryInPath
Dec 9, 2006
Dec 9, 2006
345
char *MojoPlatform_appBinaryPath(void)
Mar 25, 2006
Mar 25, 2006
346
{
Dec 2, 2006
Dec 2, 2006
347
const char *argv0 = GArgv[0];
Dec 9, 2006
Dec 9, 2006
348
char *retval = NULL;
Mar 25, 2006
Mar 25, 2006
349
Dec 14, 2006
Dec 14, 2006
350
351
if (strchr(argv0, '/') != NULL)
retval = MojoPlatform_realpath(argv0); // argv[0] contains a path?
Dec 2, 2006
Dec 2, 2006
352
353
else // slow path...have to search the whole $PATH for this one...
{
Dec 2, 2006
Dec 2, 2006
354
char *found = findBinaryInPath(argv0);
Dec 14, 2006
Dec 14, 2006
355
356
if (found)
retval = MojoPlatform_realpath(found);
Dec 2, 2006
Dec 2, 2006
357
358
free(found);
} // else
Mar 25, 2006
Mar 25, 2006
359
360
361
362
return retval;
} // MojoPlatform_appBinaryPath
Dec 3, 2006
Dec 3, 2006
363
May 10, 2007
May 10, 2007
364
365
366
367
368
369
370
char *MojoPlatform_homedir(void)
{
const char *envr = getenv("HOME");
return xstrdup(envr ? envr : "/");
} // MojoPlatform_homedir
Dec 3, 2006
Dec 3, 2006
371
// This implementation is a bit naive.
Jan 20, 2008
Jan 20, 2008
372
char *MojoPlatform_locale(void)
Dec 3, 2006
Dec 3, 2006
373
{
Jan 20, 2008
Jan 20, 2008
374
char *retval = NULL;
Jan 20, 2008
Jan 20, 2008
375
char *ptr = NULL;
Dec 3, 2006
Dec 3, 2006
376
377
378
const char *envr = getenv("LANG");
if (envr != NULL)
{
Jan 20, 2008
Jan 20, 2008
379
380
retval = xstrdup(envr);
ptr = strchr(retval, '.'); // chop off encoding if explicitly listed.
Dec 3, 2006
Dec 3, 2006
381
382
if (ptr != NULL)
*ptr = '\0';
Feb 29, 2008
Feb 29, 2008
383
384
385
ptr = strchr(retval, '@'); // chop off extra bits if explicitly listed.
if (ptr != NULL)
*ptr = '\0';
Dec 3, 2006
Dec 3, 2006
386
387
} // if
Feb 16, 2007
Feb 16, 2007
388
389
#if PLATFORM_MACOSX
else if (CFLocaleCreateCanonicalLocaleIdentifierFromString == NULL)
Jan 20, 2008
Jan 20, 2008
390
retval = NULL; // !!! FIXME: 10.2 compatibility?
Feb 16, 2007
Feb 16, 2007
391
392
393
394
395
396
397
398
399
400
401
402
403
else if (CFLocaleCreateCanonicalLocaleIdentifierFromString != NULL)
{
CFPropertyListRef languages = CFPreferencesCopyAppValue(
CFSTR("AppleLanguages"),
kCFPreferencesCurrentApplication);
if (languages != NULL)
{
CFStringRef primary = CFArrayGetValueAtIndex(languages, 0);
if (primary != NULL)
{
CFStringRef locale =
CFLocaleCreateCanonicalLocaleIdentifierFromString(
Feb 29, 2008
Feb 29, 2008
404
kCFAllocatorDefault, primary);
Feb 16, 2007
Feb 16, 2007
405
406
if (locale != NULL)
{
Jan 20, 2008
Jan 20, 2008
407
const CFIndex len = (CFStringGetLength(locale) + 1) * 6;
Jan 20, 2008
Jan 20, 2008
408
ptr = (char*) xmalloc(len);
Jan 20, 2008
Jan 20, 2008
409
CFStringGetCString(locale, ptr, len, kCFStringEncodingUTF8);
Feb 16, 2007
Feb 16, 2007
410
CFRelease(locale);
Jan 20, 2008
Jan 20, 2008
411
retval = xrealloc(ptr, strlen(ptr) + 1);
Feb 16, 2007
Feb 16, 2007
412
413
414
415
416
417
418
} // if
} // if
CFRelease(languages);
} // if
} // else if
#endif
Dec 3, 2006
Dec 3, 2006
419
420
421
return retval;
} // MojoPlatform_locale
Dec 4, 2006
Dec 4, 2006
422
Jan 20, 2008
Jan 20, 2008
423
char *MojoPlatform_osType(void)
Dec 4, 2006
Dec 4, 2006
424
425
{
#if PLATFORM_MACOSX
Jan 20, 2008
Jan 20, 2008
426
return xstrdup("macosx");
Dec 13, 2006
Dec 13, 2006
427
#elif PLATFORM_BEOS
Jan 20, 2008
Jan 20, 2008
428
return xstrdup("beos"); // !!! FIXME: zeta? haiku?
Dec 4, 2006
Dec 4, 2006
429
#elif defined(linux) || defined(__linux) || defined(__linux__)
Jan 20, 2008
Jan 20, 2008
430
return xstrdup("linux");
Dec 4, 2006
Dec 4, 2006
431
#elif defined(__FreeBSD__) || defined(__DragonFly__)
Jan 20, 2008
Jan 20, 2008
432
return xstrdup("freebsd");
Dec 4, 2006
Dec 4, 2006
433
#elif defined(__NetBSD__)
Jan 20, 2008
Jan 20, 2008
434
return xstrdup("netbsd");
Dec 4, 2006
Dec 4, 2006
435
#elif defined(__OpenBSD__)
Jan 20, 2008
Jan 20, 2008
436
return xstrdup("openbsd");
Dec 4, 2006
Dec 4, 2006
437
#elif defined(bsdi) || defined(__bsdi) || defined(__bsdi__)
Jan 20, 2008
Jan 20, 2008
438
return xstrdup("bsdi");
Dec 4, 2006
Dec 4, 2006
439
#elif defined(_AIX)
Jan 20, 2008
Jan 20, 2008
440
return xstrdup("aix");
Dec 4, 2006
Dec 4, 2006
441
#elif defined(hpux) || defined(__hpux) || defined(__hpux__)
Jan 20, 2008
Jan 20, 2008
442
return xstrdup("hpux");
Dec 4, 2006
Dec 4, 2006
443
#elif defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE)
Jan 20, 2008
Jan 20, 2008
444
return xstrdup("irix");
Dec 4, 2006
Dec 4, 2006
445
446
447
448
#else
# error Please define your platform.
#endif
Jan 20, 2008
Jan 20, 2008
449
return NULL;
Dec 4, 2006
Dec 4, 2006
450
451
452
} // MojoPlatform_ostype
Jan 20, 2008
Jan 20, 2008
453
char *MojoPlatform_osVersion()
Dec 4, 2006
Dec 4, 2006
454
455
{
#if PLATFORM_MACOSX
Aug 11, 2008
Aug 11, 2008
456
457
458
459
460
461
462
463
464
465
466
467
long ver, major, minor, patch;
boolean convert = false;
char *buf = NULL;
char dummy = 0;
int len = 0;
if (Gestalt(gestaltSystemVersion, &ver) != noErr)
return NULL;
if (ver < 0x1030)
convert = true; // split (ver) into (major),(minor),(patch).
else
Dec 4, 2006
Dec 4, 2006
468
{
Aug 11, 2008
Aug 11, 2008
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
// presumably this won't fail. But if it does, we'll just use the
// original version value. This might cut the value--10.12.11 will
// come out to 10.9.9, for example--but it's better than nothing.
if (Gestalt(gestaltSystemVersionMajor, &major) != noErr)
convert = true;
if (Gestalt(gestaltSystemVersionMinor, &minor) != noErr)
convert = true;
if (Gestalt(gestaltSystemVersionBugFix, &patch) != noErr)
convert = true;
} /* else */
if (convert)
{
major = ((ver & 0xFF00) >> 8);
major = (((major / 16) * 10) + (major % 16));
minor = ((ver & 0xF0) >> 4);
patch = (ver & 0xF);
} /* if */
len = snprintf(&dummy, sizeof (dummy), "%ld.%ld.%ld", major, minor, patch);
buf = (char *) xmalloc(len+1);
snprintf(buf, len+1, "%ld.%ld.%ld", major, minor, patch);
return buf;
Dec 13, 2006
Dec 13, 2006
493
494
495
496
497
498
#else
// This information may or may not actually MEAN anything. On BeOS, it's
// useful, but on other things, like Linux, it'll give you the kernel
// version, which doesn't necessarily help.
struct utsname un;
if (uname(&un) == 0)
Jan 20, 2008
Jan 20, 2008
499
return xstrdup(un.release);
Dec 4, 2006
Dec 4, 2006
500
501
#endif
Jan 20, 2008
Jan 20, 2008
502
return NULL;
Dec 4, 2006
Dec 4, 2006
503
504
} // MojoPlatform_osversion
Dec 4, 2006
Dec 4, 2006
505
May 7, 2007
May 7, 2007
506
507
508
509
510
511
void MojoPlatform_sleep(uint32 ticks)
{
usleep(ticks * 1000);
} // MojoPlatform_sleep
Dec 4, 2006
Dec 4, 2006
512
513
514
515
516
517
518
519
520
521
522
uint32 MojoPlatform_ticks(void)
{
uint64 then_ms, now_ms;
struct timeval now;
gettimeofday(&now, NULL);
then_ms = (((uint64) startup_time.tv_sec) * 1000) +
(((uint64) startup_time.tv_usec) / 1000);
now_ms = (((uint64) now.tv_sec) * 1000) + (((uint64) now.tv_usec) / 1000);
return ((uint32) (now_ms - then_ms));
} // MojoPlatform_ticks
Dec 9, 2006
Dec 9, 2006
523
524
525
526
527
528
void MojoPlatform_die(void)
{
_exit(86);
} // MojoPlatform_die
Dec 9, 2006
Dec 9, 2006
529
530
531
boolean MojoPlatform_unlink(const char *fname)
{
May 7, 2007
May 7, 2007
532
533
boolean retval = false;
struct stat statbuf;
May 31, 2008
May 31, 2008
534
if (lstat(fname, &statbuf) != -1)
May 7, 2007
May 7, 2007
535
536
537
538
539
540
541
{
if (S_ISDIR(statbuf.st_mode))
retval = (rmdir(fname) == 0);
else
retval = (unlink(fname) == 0);
} // if
return retval;
Dec 9, 2006
Dec 9, 2006
542
543
544
} // MojoPlatform_unlink
May 1, 2007
May 1, 2007
545
546
547
548
549
550
boolean MojoPlatform_symlink(const char *src, const char *dst)
{
return (symlink(dst, src) == 0);
} // MojoPlatform_symlink
May 18, 2007
May 18, 2007
551
boolean MojoPlatform_mkdir(const char *path, uint16 perms)
May 1, 2007
May 1, 2007
552
553
{
// !!! FIXME: error if already exists?
May 18, 2007
May 18, 2007
554
return (mkdir(path, perms) == 0);
May 1, 2007
May 1, 2007
555
556
557
558
559
560
561
562
563
} // MojoPlatform_mkdir
boolean MojoPlatform_rename(const char *src, const char *dst)
{
return (rename(src, dst) == 0);
} // MojoPlatform_rename
Apr 22, 2007
Apr 22, 2007
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
boolean MojoPlatform_exists(const char *dir, const char *fname)
{
boolean retval = false;
if (fname == NULL)
retval = (access(dir, F_OK) != -1);
else
{
const size_t len = strlen(dir) + strlen(fname) + 2;
char *buf = (char *) xmalloc(strlen(dir) + strlen(fname) + 2);
snprintf(buf, len, "%s/%s", dir, fname);
retval = (access(buf, F_OK) != -1);
free(buf);
} // else
return retval;
} // MojoPlatform_exists
May 10, 2007
May 10, 2007
581
582
583
584
585
586
587
588
589
590
boolean MojoPlatform_writable(const char *fname)
{
return (access(fname, W_OK) == 0);
} // MojoPlatform_writable
boolean MojoPlatform_isdir(const char *dir)
{
boolean retval = false;
struct stat statbuf;
Sep 20, 2007
Sep 20, 2007
591
if (lstat(dir, &statbuf) != -1)
May 10, 2007
May 10, 2007
592
593
594
595
596
597
598
599
{
if (S_ISDIR(statbuf.st_mode))
retval = true;
} // if
return retval;
} // MojoPlatform_isdir
Sep 20, 2007
Sep 20, 2007
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
boolean MojoPlatform_issymlink(const char *dir)
{
boolean retval = false;
struct stat statbuf;
if (lstat(dir, &statbuf) != -1)
{
if (S_ISLNK(statbuf.st_mode))
retval = true;
} // if
return retval;
} // MojoPlatform_issymlink
boolean MojoPlatform_isfile(const char *dir)
{
boolean retval = false;
struct stat statbuf;
if (lstat(dir, &statbuf) != -1)
{
if (S_ISREG(statbuf.st_mode))
retval = true;
} // if
return retval;
Sep 26, 2007
Sep 26, 2007
623
} // MojoPlatform_isfile
Sep 20, 2007
Sep 20, 2007
624
625
Jan 14, 2008
Jan 14, 2008
626
627
628
629
630
631
632
633
void *MojoPlatform_stdout(void)
{
int *retval = (int *) xmalloc(sizeof (int));
*retval = 1; // stdout.
return retval;
} // MojoPlatform_stdout
Sep 20, 2007
Sep 20, 2007
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
void *MojoPlatform_open(const char *fname, uint32 flags, uint16 mode)
{
void *retval = NULL;
int fd = -1;
int unixflags = 0;
if ((flags & MOJOFILE_READ) && (flags & MOJOFILE_WRITE))
unixflags |= O_RDWR;
else if (flags & MOJOFILE_READ)
unixflags |= O_RDONLY;
else if (flags & MOJOFILE_WRITE)
unixflags |= O_WRONLY;
else
return NULL; // have to specify SOMETHING.
if (flags & MOJOFILE_APPEND)
unixflags |= O_APPEND;
if (flags & MOJOFILE_TRUNCATE)
unixflags |= O_TRUNC;
if (flags & MOJOFILE_CREATE)
unixflags |= O_CREAT;
if (flags & MOJOFILE_EXCLUSIVE)
unixflags |= O_EXCL;
fd = open(fname, unixflags, (mode_t) mode);
if (fd != -1)
{
int *intptr = (int *) xmalloc(sizeof (int));
*intptr = fd;
retval = intptr;
} // if
return retval;
} // MojoPlatform_open
int64 MojoPlatform_read(void *fd, void *buf, uint32 bytes)
{
return (int64) read(*((int *) fd), buf, bytes);
} // MojoPlatform_read
int64 MojoPlatform_write(void *fd, const void *buf, uint32 bytes)
{
return (int64) write(*((int *) fd), buf, bytes);
} // MojoPlatform_write
int64 MojoPlatform_tell(void *fd)
{
return (int64) lseek(*((int *) fd), 0, SEEK_CUR);
} // MojoPlatform_tell
int64 MojoPlatform_seek(void *fd, int64 offset, MojoFileSeek whence)
{
int unixwhence;
switch (whence)
{
case MOJOSEEK_SET: unixwhence = SEEK_SET; break;
case MOJOSEEK_CURRENT: unixwhence = SEEK_CUR; break;
case MOJOSEEK_END: unixwhence = SEEK_END; break;
default: return -1; // !!! FIXME: maybe just abort?
} // switch
return (int64) lseek(*((int *) fd), offset, unixwhence);
} // MojoPlatform_seek
int64 MojoPlatform_flen(void *fd)
{
struct stat statbuf;
if (fstat(*((int *) fd), &statbuf) == -1)
return -1;
return((int64) statbuf.st_size);
} // MojoPlatform_flen
boolean MojoPlatform_flush(void *fd)
{
return (fsync(*((int *) fd)) == 0);
} // MojoPlatform_flush
boolean MojoPlatform_close(void *fd)
{
boolean retval = false;
Jan 14, 2008
Jan 14, 2008
721
722
723
724
725
726
727
728
729
730
int handle = *((int *) fd);
// don't close stdin, stdout, or stderr.
if ((handle == 0) || (handle == 1) || (handle == 2))
{
free(fd);
return true;
} // if
if (close(handle) == 0)
Sep 20, 2007
Sep 20, 2007
731
732
733
734
735
free(fd);
return retval;
} // MojoPlatform_close
Sep 20, 2007
Sep 20, 2007
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
void *MojoPlatform_opendir(const char *dirname)
{
return opendir(dirname);
} // MojoPlatform_opendir
char *MojoPlatform_readdir(void *_dirhandle)
{
DIR *dirhandle = (DIR *) _dirhandle;
struct dirent *dent = NULL;
while ((dent = readdir(dirhandle)) != NULL)
{
if (strcmp(dent->d_name, ".") == 0)
continue; // skip these.
else if (strcmp(dent->d_name, "..") == 0)
continue; // skip these, too.
else
break; // found a valid entry, go on.
} // while
return ((dent) ? xstrdup(dent->d_name) : NULL);
} // MojoPlatform_readdir
void MojoPlatform_closedir(void *dirhandle)
{
closedir((DIR *) dirhandle);
} // MojoPlatform_closedir
Sep 20, 2007
Sep 20, 2007
769
770
771
772
int64 MojoPlatform_filesize(const char *fname)
{
int retval = -1;
struct stat statbuf;
Sep 25, 2007
Sep 25, 2007
773
if ( (lstat(fname, &statbuf) != -1) && (S_ISREG(statbuf.st_mode)) )
Sep 20, 2007
Sep 20, 2007
774
775
776
777
778
retval = (int64) statbuf.st_size;
return retval;
} // MojoPlatform_filesize
May 3, 2007
May 3, 2007
779
780
781
782
783
784
785
786
787
788
789
790
791
boolean MojoPlatform_perms(const char *fname, uint16 *p)
{
boolean retval = false;
struct stat statbuf;
if (stat(fname, &statbuf) != -1)
{
*p = statbuf.st_mode;
retval = true;
} // if
return retval;
} // MojoPlatform_perms
May 18, 2007
May 18, 2007
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
uint16 MojoPlatform_defaultFilePerms(void)
{
return 0644;
} // MojoPlatform_defaultFilePerms
uint16 MojoPlatform_defaultDirPerms(void)
{
return 0755;
} // MojoPlatform_defaultDirPerms
uint16 MojoPlatform_makePermissions(const char *str, boolean *_valid)
{
uint16 retval = 0644;
boolean valid = true;
if (str != NULL)
{
char *endptr = NULL;
long strval = strtol(str, &endptr, 8);
// complete string was a valid number?
valid = ((*endptr == '\0') && (strval >= 0) && (strval <= 0xFFFF));
if (valid)
retval = (uint16) strval;
} // if
*_valid = valid;
return retval;
} // MojoPlatform_makePermissions
May 3, 2007
May 3, 2007
823
824
825
826
827
828
boolean MojoPlatform_chmod(const char *fname, uint16 p)
{
return (chmod(fname, p) != -1);
} // MojoPlatform_chmod
Apr 22, 2007
Apr 22, 2007
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
char *MojoPlatform_findMedia(const char *uniquefile)
{
#if MOJOSETUP_HAVE_SYS_UCRED_H
int i = 0;
struct statfs *mntbufp = NULL;
int mounts = getmntinfo(&mntbufp, MNT_WAIT);
for (i = 0; i < mounts; i++)
{
const char *mnt = mntbufp[i].f_mntonname;
if (MojoPlatform_exists(mnt, uniquefile))
return xstrdup(mnt);
} // for
#elif MOJOSETUP_HAVE_MNTENT_H
FILE *mounts = setmntent("/etc/mtab", "r");
if (mounts != NULL)
{
struct mntent *ent = NULL;
while ((ent = getmntent(mounts)) != NULL)
{
const char *mnt = ent->mnt_dir;
if (MojoPlatform_exists(mnt, uniquefile))
{
endmntent(mounts);
return xstrdup(mnt);
} // if
} // while
endmntent(mounts);
} // if
#else
# warning No mountpoint detection on this platform...
#endif
return NULL;
} // MojoPlatform_findMedia
Dec 10, 2006
Dec 10, 2006
867
868
void MojoPlatform_log(const char *str)
{
May 9, 2007
May 9, 2007
869
syslog(LOG_USER | LOG_INFO, "%s", str);
May 17, 2007
May 17, 2007
870
871
872
873
874
875
876
#if PLATFORM_MACOSX
// put to stdout too, if this isn't the stdio UI.
// This will let the info show up in /Applications/Utilities/Console.app
if ((GGui != NULL) && (strcmp(GGui->name(), "stdio") != 0))
printf("%s\n", str);
#endif
Dec 10, 2006
Dec 10, 2006
877
878
} // MojoPlatform_log
Dec 9, 2006
Dec 9, 2006
879
Dec 9, 2006
Dec 9, 2006
880
881
static boolean testTmpDir(const char *dname, char *buf,
size_t len, const char *tmpl)
Dec 9, 2006
Dec 9, 2006
882
{
Dec 9, 2006
Dec 9, 2006
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
boolean retval = false;
if ( (dname != NULL) && (access(dname, R_OK | W_OK | X_OK) == 0) )
{
struct stat statbuf;
if ( (stat(dname, &statbuf) == 0) && (S_ISDIR(statbuf.st_mode)) )
{
const size_t rc = snprintf(buf, len, "%s/%s", dname, tmpl);
if (rc < len)
retval = true;
} // if
} // if
return retval;
} // testTmpDir
void *MojoPlatform_dlopen(const uint8 *img, size_t len)
{
// Write the image to a temporary file, dlopen() it, and delete it
// immediately. The inode will be kept around by the Unix kernel until
// we either dlclose() it or the process terminates, but we don't have
// to worry about polluting the /tmp directory or cleaning this up later.
Jan 14, 2007
Jan 14, 2007
905
906
907
// We'll try every reasonable temp directory location until we find one
// that works, in case (say) one lets us write a file, but there
// isn't enough space for the data.
Dec 9, 2006
Dec 9, 2006
908
Jan 14, 2007
Jan 14, 2007
909
910
// /dev/shm may be able to avoid writing to physical media...try it first.
const char *dirs[] = { "/dev/shm", getenv("TMPDIR"), P_tmpdir, "/tmp" };
Sep 26, 2007
Sep 26, 2007
911
const char *tmpl = "mojosetup-plugin-XXXXXX";
Dec 9, 2006
Dec 9, 2006
912
char fname[PATH_MAX];
Jan 14, 2007
Jan 14, 2007
913
914
void *retval = NULL;
int i = 0;
Dec 13, 2006
Dec 13, 2006
915
916
917
918
if (dlopen == NULL) // weak symbol on older Mac OS X
return NULL;
Jan 14, 2007
Jan 14, 2007
919
920
921
922
923
#ifndef P_tmpdir // glibc defines this, maybe others.
#define P_tmpdir NULL
#endif
for (i = 0; (i < STATICARRAYLEN(dirs)) && (retval == NULL); i++)
Dec 9, 2006
Dec 9, 2006
924
{
Jan 14, 2007
Jan 14, 2007
925
if (testTmpDir(dirs[i], fname, len, tmpl))
Dec 9, 2006
Dec 9, 2006
926
{
Jan 14, 2007
Jan 14, 2007
927
928
929
930
931
932
933
934
935
const int fd = mkstemp(fname);
if (fd != -1)
{
const size_t bw = write(fd, img, len);
const int rc = close(fd);
if ((bw == len) && (rc != -1))
retval = dlopen(fname, DLOPEN_ARGS);
unlink(fname);
} // if
Dec 9, 2006
Dec 9, 2006
936
} // if
Jan 14, 2007
Jan 14, 2007
937
} // for
Dec 9, 2006
Dec 9, 2006
938
939
return retval;
Dec 9, 2006
Dec 9, 2006
940
941
942
943
944
} // MojoPlatform_dlopen
void *MojoPlatform_dlsym(void *lib, const char *sym)
{
Apr 21, 2007
Apr 21, 2007
945
946
947
948
#if PLATFORM_MACOSX
if (dlsym == NULL) return NULL; // weak symbol on older Mac OS X
#endif
Dec 9, 2006
Dec 9, 2006
949
950
951
952
953
954
return dlsym(lib, sym);
} // MojoPlatform_dlsym
void MojoPlatform_dlclose(void *lib)
{
Apr 21, 2007
Apr 21, 2007
955
956
957
958
959
#if PLATFORM_MACOSX
if (dlclose == NULL) return; // weak symbol on older Mac OS X
#endif
dlclose(lib);
Dec 9, 2006
Dec 9, 2006
960
961
} // MojoPlatform_dlclose
May 7, 2007
May 7, 2007
962
Jan 25, 2008
Jan 25, 2008
963
#if !PLATFORM_MACOSX && !PLATFORM_BEOS
Jan 25, 2008
Jan 25, 2008
964
static int runScriptString(const char *str, boolean devnull, const char **_argv)
Jan 25, 2008
Jan 25, 2008
965
{
Jan 25, 2008
Jan 25, 2008
966
967
968
int retval = 127;
pid_t pid = 0;
int pipes[2];
Jan 25, 2008
Jan 25, 2008
969
Jan 25, 2008
Jan 25, 2008
970
971
if (pipe(pipes) == -1)
return retval;
Jan 25, 2008
Jan 25, 2008
972
Jan 25, 2008
Jan 25, 2008
973
974
975
976
977
978
979
980
981
pid = fork();
if (pid == -1) // -1 == fork() failed.
{
close(pipes[0]);
close(pipes[1]);
return retval;
} // if
else if (pid == 0) // we're the child process.
Jan 25, 2008
Jan 25, 2008
982
{
Jan 25, 2008
Jan 25, 2008
983
984
985
986
987
988
int argc = 0;
const char **argv = NULL;
close(pipes[1]); // close the writing end.
dup2(pipes[0], 0); // replace stdin.
if (devnull)
Jan 25, 2008
Jan 25, 2008
989
{
Jan 25, 2008
Jan 25, 2008
990
991
992
993
994
995
996
997
998
999
1000
dup2(open("/dev/null", O_WRONLY), 1); // replace stdout
dup2(open("/dev/null", O_WRONLY), 2); // replace stderr
} // if
while (_argv[argc++] != NULL) { /* no-op */ }
argv = (const char **) xmalloc(sizeof (char *) * argc+3);
argv[0] = "/bin/sh";
argv[1] = "-s";
for (argc = 0; _argv[argc] != NULL; argc++)
argv[argc+2] = _argv[argc];
argv[argc+2] = NULL;