-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
platform_unix.c
1586 lines (1308 loc) · 41 KB
/
platform_unix.c
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
301
302
303
304
305
306
307
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
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
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
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
823
824
825
826
827
828
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
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* 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.
*/
#if PLATFORM_UNIX
#define panic NOT_MOJOSETUP_panic
#if PLATFORM_MACOSX
#include <Carbon/Carbon.h>
#undef true
#undef false
#endif
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/utsname.h>
#include <sys/mount.h>
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <syslog.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <limits.h>
#include <errno.h>
#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
#if MOJOSETUP_HAVE_SYS_MNTTAB_H
# include <sys/mnttab.h>
#endif
#if PLATFORM_BEOS
#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);
void beos_usleep(unsigned long ticks);
#define dlopen beos_dlopen
#define dlsym beos_dlsym
#define dlclose beos_dlclose
#define usleep beos_usleep
#else
#include <dlfcn.h>
#define DLOPEN_ARGS (RTLD_NOW | RTLD_GLOBAL)
#endif
#undef panic
#include "platform.h"
#include "fileio.h"
static struct timeval startup_time;
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
char *MojoPlatform_currentWorkingDir(void)
{
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;
} // MojoPlatform_currentWorkingDir
char *MojoPlatform_readlink(const char *linkname)
{
size_t alloclen = 16;
char *retval = NULL;
char *buf = NULL;
ssize_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, (size_t) (len+1)); // shrink it down.
} // if
} while (len >= (((ssize_t)alloclen)-1)); // loop if we need bigger buf.
return retval; // caller must free() this.
} // MojoPlatform_readlink
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
{
if ((retval = MojoPlatform_currentWorkingDir()) == NULL)
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
} // 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
} // 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;
linkname = MojoPlatform_readlink(retval);
if (linkname == NULL)
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);
linkname = NULL;
} // 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
// (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)
{
const char *_envr = getenv("PATH");
size_t alloc_size = 64;
char *envr = NULL;
char *exe = NULL;
char *start = NULL;
char *ptr = NULL;
if ((_envr == NULL) || (bin == NULL))
return NULL;
envr = xstrdup(_envr);
exe = (char *) xmalloc(alloc_size);
start = envr;
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.
free(envr);
return(exe);
} // if
start = ptr + 1; // start points to beginning of next element.
} while (ptr != NULL);
free(exe);
free(envr);
return NULL; // doesn't exist in path.
} // findBinaryInPath
char *MojoPlatform_appBinaryPath(void)
{
const char *argv0 = GArgv[0];
char *retval = NULL;
// !!! FIXME: try /proc/$PID/exe here?
if (strchr(argv0, '/') != NULL)
retval = MojoPlatform_realpath(argv0); // argv[0] contains a path?
else // slow path...have to search the whole $PATH for this one...
{
char *found = findBinaryInPath(argv0);
if (found)
retval = MojoPlatform_realpath(found);
free(found);
} // else
return retval;
} // MojoPlatform_appBinaryPath
char *MojoPlatform_homedir(void)
{
const char *envr = getenv("HOME");
return xstrdup(envr ? envr : "/");
} // MojoPlatform_homedir
// This implementation is a bit naive.
char *MojoPlatform_locale(void)
{
char *retval = NULL;
char *ptr = NULL;
const char *envr = getenv("LANG");
if (envr != NULL)
{
retval = xstrdup(envr);
ptr = strchr(retval, '.'); // chop off encoding if explicitly listed.
if (ptr != NULL)
*ptr = '\0';
ptr = strchr(retval, '@'); // chop off extra bits if explicitly listed.
if (ptr != NULL)
*ptr = '\0';
} // if
#if PLATFORM_MACOSX
else if (CFLocaleCreateCanonicalLocaleIdentifierFromString == NULL)
retval = NULL; // !!! FIXME: 10.2 compatibility?
else if (CFLocaleCreateCanonicalLocaleIdentifierFromString != NULL)
{
CFPropertyListRef languages = CFPreferencesCopyAppValue(
CFSTR("AppleLanguages"),
kCFPreferencesCurrentApplication);
if (languages != NULL)
{
CFStringRef primary = CFArrayGetValueAtIndex(languages, 0);
if (primary != NULL)
{
CFStringRef locale =
CFLocaleCreateCanonicalLocaleIdentifierFromString(
kCFAllocatorDefault, primary);
if (locale != NULL)
{
const CFIndex len = (CFStringGetLength(locale) + 1) * 6;
ptr = (char*) xmalloc(len);
CFStringGetCString(locale, ptr, len, kCFStringEncodingUTF8);
CFRelease(locale);
retval = xrealloc(ptr, strlen(ptr) + 1);
// !!! FIXME: this may not be 100% right, but change
// !!! FIXME: xx-YY to xx_YY (lang_country).
if (retval[2] == '-')
retval[2] = '_';
if (retval[3] == '-')
retval[3] = '_';
} // if
} // if
CFRelease(languages);
} // if
} // else if
#endif
return retval;
} // MojoPlatform_locale
char *MojoPlatform_osType(void)
{
#if PLATFORM_MACOSX
return xstrdup("macosx");
#elif PLATFORM_BEOS
return xstrdup("beos"); // !!! FIXME: zeta? haiku?
#elif defined(linux) || defined(__linux) || defined(__linux__)
return xstrdup("linux");
#elif defined(__FreeBSD__) || defined(__DragonFly__)
return xstrdup("freebsd");
#elif defined(__NetBSD__)
return xstrdup("netbsd");
#elif defined(__OpenBSD__)
return xstrdup("openbsd");
#elif defined(bsdi) || defined(__bsdi) || defined(__bsdi__)
return xstrdup("bsdi");
#elif defined(_AIX)
return xstrdup("aix");
#elif defined(hpux) || defined(__hpux) || defined(__hpux__)
return xstrdup("hpux");
#elif defined(sgi) || defined(__sgi) || defined(__sgi__) || defined(_SGI_SOURCE)
return xstrdup("irix");
#elif defined(sun)
return xstrdup("solaris");
#else
# error Please define your platform.
return NULL;
#endif
} // MojoPlatform_ostype
char *MojoPlatform_osVersion(void)
{
#if PLATFORM_MACOSX
SInt32 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
{
// 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), "%d.%d.%d",
(int) major, (int) minor, (int) patch);
buf = (char *) xmalloc(len+1);
snprintf(buf, len+1, "%d.%d.%d", (int) major, (int) minor, (int) patch);
return buf;
#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)
return xstrdup(un.release);
#endif
return NULL;
} // MojoPlatform_osversion
char *MojoPlatform_osMachine(void)
{
struct utsname un;
if (uname(&un) == 0)
return xstrdup(un.machine);
return NULL;
} // MojoPlatform_osMachine
void MojoPlatform_sleep(uint32 ticks)
{
usleep(ticks * 1000);
} // MojoPlatform_sleep
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
void MojoPlatform_die(void)
{
_exit(86);
} // MojoPlatform_die
boolean MojoPlatform_unlink(const char *fname)
{
boolean retval = false;
struct stat statbuf;
if (lstat(fname, &statbuf) != -1)
{
if (S_ISDIR(statbuf.st_mode))
retval = (rmdir(fname) == 0);
else
retval = (unlink(fname) == 0);
} // if
return retval;
} // MojoPlatform_unlink
boolean MojoPlatform_symlink(const char *src, const char *dst)
{
return (symlink(dst, src) == 0);
} // MojoPlatform_symlink
boolean MojoPlatform_mkdir(const char *path, uint16 perms)
{
// !!! FIXME: error if already exists?
return (mkdir(path, perms) == 0);
} // MojoPlatform_mkdir
boolean MojoPlatform_rename(const char *src, const char *dst)
{
return (rename(src, dst) == 0);
} // MojoPlatform_rename
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(len);
snprintf(buf, len, "%s/%s", dir, fname);
retval = (access(buf, F_OK) != -1);
free(buf);
} // else
return retval;
} // MojoPlatform_exists
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;
if (stat(dir, &statbuf) != -1)
{
if (S_ISDIR(statbuf.st_mode))
retval = true;
} // if
return retval;
} // MojoPlatform_isdir
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 (stat(dir, &statbuf) != -1)
{
if (S_ISREG(statbuf.st_mode))
retval = true;
} // if
return retval;
} // MojoPlatform_isfile
void *MojoPlatform_stdout(void)
{
int *retval = (int *) xmalloc(sizeof (int));
*retval = 1; // stdout.
return retval;
} // MojoPlatform_stdout
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;
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)
free(fd);
return retval;
} // MojoPlatform_close
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
int64 MojoPlatform_filesize(const char *fname)
{
int retval = -1;
struct stat statbuf;
if ( (lstat(fname, &statbuf) != -1) && (S_ISREG(statbuf.st_mode)) )
retval = (int64) statbuf.st_size;
return retval;
} // MojoPlatform_filesize
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
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
boolean MojoPlatform_chmod(const char *fname, uint16 p)
{
return (chmod(fname, p) != -1);
} // MojoPlatform_chmod
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
#elif MOJOSETUP_HAVE_SYS_MNTTAB_H
FILE *mounts = fopen(MNTTAB, "r");
if (mounts != NULL)
{
struct mnttab ent;
while (getmntent(mounts, &ent) == 0)
{
const char *mnt = ent.mnt_mountp;
if (MojoPlatform_exists(mnt, uniquefile))
{
fclose(mounts);
return xstrdup(mnt);
} // if
} // while
fclose(mounts);
} // if
#else
# warning No mountpoint detection on this platform...
#endif
return NULL;
} // MojoPlatform_findMedia
void MojoPlatform_log(const char *str)
{
syslog(LOG_USER | LOG_INFO, "%s", str);
#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
} // MojoPlatform_log
static boolean testTmpDir(const char *dname, char *buf,
size_t len, const char *tmpl)
{
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.
// 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.
// /dev/shm may be able to avoid writing to physical media...try it first.
const char *dirs[] = { "/dev/shm", getenv("TMPDIR"), P_tmpdir, "/tmp" };
const char *tmpl = "mojosetup-plugin-XXXXXX";
char fname[PATH_MAX];
void *retval = NULL;
int i = 0;
#if PLATFORM_MACOSX
if (dlopen == NULL) return NULL; // weak symbol on older Mac OS X
#endif
#ifndef P_tmpdir // glibc defines this, maybe others.
#define P_tmpdir NULL
#endif
for (i = 0; (i < STATICARRAYLEN(dirs)) && (retval == NULL); i++)
{
if (testTmpDir(dirs[i], fname, sizeof (fname), tmpl))
{
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
} // if
} // for
return retval;
} // MojoPlatform_dlopen
void *MojoPlatform_dlsym(void *lib, const char *sym)
{
#if PLATFORM_MACOSX
if (dlsym == NULL) return NULL; // weak symbol on older Mac OS X
#endif
return dlsym(lib, sym);
} // MojoPlatform_dlsym
void MojoPlatform_dlclose(void *lib)
{