| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082 |
- /**
- * PhysicsFS; a portable, flexible file i/o abstraction.
- *
- * Documentation is in physfs.h. It's verbose, honest. :)
- *
- * Please see the file LICENSE in the source's root directory.
- *
- * This file written by Ryan C. Gordon.
- */
- #if HAVE_CONFIG_H
- # include <config.h>
- #endif
- #if (defined PHYSFS_PROFILING)
- #include <sys/time.h>
- #include <unistd.h>
- #endif
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "physfs.h"
- #define __PHYSICSFS_INTERNAL__
- #include "physfs_internal.h"
- typedef struct __PHYSFS_DIRHANDLE__
- {
- void *opaque; /* Instance data unique to the archiver. */
- char *dirName; /* Path to archive in platform-dependent notation. */
- const PHYSFS_Archiver *funcs; /* Ptr to archiver info for this handle. */
- struct __PHYSFS_DIRHANDLE__ *next; /* linked list stuff. */
- } DirHandle;
- typedef struct __PHYSFS_FILEHANDLE__
- {
- void *opaque; /* Instance data unique to the archiver for this file. */
- PHYSFS_uint8 forReading; /* Non-zero if reading, zero if write/append */
- const DirHandle *dirHandle; /* Archiver instance that created this */
- const PHYSFS_Archiver *funcs; /* Ptr to archiver info for this handle. */
- PHYSFS_uint8 *buffer; /* Buffer, if set (NULL otherwise). Don't touch! */
- PHYSFS_uint32 bufsize; /* Bufsize, if set (0 otherwise). Don't touch! */
- PHYSFS_uint32 buffill; /* Buffer fill size. Don't touch! */
- PHYSFS_uint32 bufpos; /* Buffer position. Don't touch! */
- struct __PHYSFS_FILEHANDLE__ *next; /* linked list stuff. */
- } FileHandle;
- typedef struct __PHYSFS_ERRMSGTYPE__
- {
- PHYSFS_uint64 tid;
- int errorAvailable;
- char errorString[80];
- struct __PHYSFS_ERRMSGTYPE__ *next;
- } ErrMsg;
- /* The various i/o drivers... */
- #if (defined PHYSFS_SUPPORTS_ZIP)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_ZIP;
- #endif
- #if (defined PHYSFS_SUPPORTS_GRP)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_GRP;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_GRP;
- #endif
- #if (defined PHYSFS_SUPPORTS_QPAK)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_QPAK;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_QPAK;
- #endif
- #if (defined PHYSFS_SUPPORTS_HOG)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_HOG;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_HOG;
- #endif
- #if (defined PHYSFS_SUPPORTS_MVL)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_MVL;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_MVL;
- #endif
- #if (defined PHYSFS_SUPPORTS_WAD)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_WAD;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_WAD;
- #endif
- #if (defined PHYSFS_SUPPORTS_MIX)
- extern const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_MIX;
- extern const PHYSFS_Archiver __PHYSFS_Archiver_MIX;
- #endif
- extern const PHYSFS_Archiver __PHYSFS_Archiver_DIR;
- static const PHYSFS_ArchiveInfo *supported_types[] =
- {
- #if (defined PHYSFS_SUPPORTS_ZIP)
- &__PHYSFS_ArchiveInfo_ZIP,
- #endif
- #if (defined PHYSFS_SUPPORTS_GRP)
- &__PHYSFS_ArchiveInfo_GRP,
- #endif
- #if (defined PHYSFS_SUPPORTS_QPAK)
- &__PHYSFS_ArchiveInfo_QPAK,
- #endif
- #if (defined PHYSFS_SUPPORTS_HOG)
- &__PHYSFS_ArchiveInfo_HOG,
- #endif
- #if (defined PHYSFS_SUPPORTS_MVL)
- &__PHYSFS_ArchiveInfo_MVL,
- #endif
- #if (defined PHYSFS_SUPPORTS_WAD)
- &__PHYSFS_ArchiveInfo_WAD,
- #endif
- #if (defined PHYSFS_SUPPORTS_MIX)
- &__PHYSFS_ArchiveInfo_MIX,
- #endif
- NULL
- };
- static const PHYSFS_Archiver *archivers[] =
- {
- #if (defined PHYSFS_SUPPORTS_ZIP)
- &__PHYSFS_Archiver_ZIP,
- #endif
- #if (defined PHYSFS_SUPPORTS_GRP)
- &__PHYSFS_Archiver_GRP,
- #endif
- #if (defined PHYSFS_SUPPORTS_QPAK)
- &__PHYSFS_Archiver_QPAK,
- #endif
- #if (defined PHYSFS_SUPPORTS_HOG)
- &__PHYSFS_Archiver_HOG,
- #endif
- #if (defined PHYSFS_SUPPORTS_MVL)
- &__PHYSFS_Archiver_MVL,
- #endif
- #if (defined PHYSFS_SUPPORTS_WAD)
- &__PHYSFS_Archiver_WAD,
- #endif
- #if (defined PHYSFS_SUPPORTS_MIX)
- &__PHYSFS_Archiver_MIX,
- #endif
- &__PHYSFS_Archiver_DIR,
- NULL
- };
- /* General PhysicsFS state ... */
- static int initialized = 0;
- static ErrMsg *errorMessages = NULL;
- static DirHandle *searchPath = NULL;
- static DirHandle *writeDir = NULL;
- static FileHandle *openWriteList = NULL;
- static FileHandle *openReadList = NULL;
- static char *baseDir = NULL;
- static char *userDir = NULL;
- static int allowSymLinks = 0;
- /* mutexes ... */
- static void *errorLock = NULL; /* protects error message list. */
- static void *stateLock = NULL; /* protects other PhysFS static state. */
- /* allocator ... */
- static int externalAllocator = 0;
- static PHYSFS_Allocator allocator;
- /* functions ... */
- static void __PHYSFS_bubble_sort(void *a, PHYSFS_uint32 lo, PHYSFS_uint32 hi,
- int (*cmpfn)(void *, PHYSFS_uint32, PHYSFS_uint32),
- void (*swapfn)(void *, PHYSFS_uint32, PHYSFS_uint32))
- {
- PHYSFS_uint32 i;
- int sorted;
- do
- {
- sorted = 1;
- for (i = lo; i < hi; i++)
- {
- if (cmpfn(a, i, i + 1) > 0)
- {
- swapfn(a, i, i + 1);
- sorted = 0;
- } /* if */
- } /* for */
- } while (!sorted);
- } /* __PHYSFS_bubble_sort */
- static void __PHYSFS_quick_sort(void *a, PHYSFS_uint32 lo, PHYSFS_uint32 hi,
- int (*cmpfn)(void *, PHYSFS_uint32, PHYSFS_uint32),
- void (*swapfn)(void *, PHYSFS_uint32, PHYSFS_uint32))
- {
- PHYSFS_uint32 i;
- PHYSFS_uint32 j;
- PHYSFS_uint32 v;
- if ((hi - lo) <= PHYSFS_QUICKSORT_THRESHOLD)
- __PHYSFS_bubble_sort(a, lo, hi, cmpfn, swapfn);
- else
- {
- i = (hi + lo) / 2;
- if (cmpfn(a, lo, i) > 0) swapfn(a, lo, i);
- if (cmpfn(a, lo, hi) > 0) swapfn(a, lo, hi);
- if (cmpfn(a, i, hi) > 0) swapfn(a, i, hi);
- j = hi - 1;
- swapfn(a, i, j);
- i = lo;
- v = j;
- while (1)
- {
- while(cmpfn(a, ++i, v) < 0) { /* do nothing */ }
- while(cmpfn(a, --j, v) > 0) { /* do nothing */ }
- if (j < i)
- break;
- swapfn(a, i, j);
- } /* while */
- swapfn(a, i, hi-1);
- __PHYSFS_quick_sort(a, lo, j, cmpfn, swapfn);
- __PHYSFS_quick_sort(a, i+1, hi, cmpfn, swapfn);
- } /* else */
- } /* __PHYSFS_quick_sort */
- void __PHYSFS_sort(void *entries, PHYSFS_uint32 max,
- int (*cmpfn)(void *, PHYSFS_uint32, PHYSFS_uint32),
- void (*swapfn)(void *, PHYSFS_uint32, PHYSFS_uint32))
- {
- /*
- * Quicksort w/ Bubblesort fallback algorithm inspired by code from here:
- * http://www.cs.ubc.ca/spider/harrison/Java/sorting-demo.html
- */
- __PHYSFS_quick_sort(entries, 0, max - 1, cmpfn, swapfn);
- } /* __PHYSFS_sort */
- #if (defined PHYSFS_PROFILING)
- #define PHYSFS_TEST_SORT_ITERATIONS 150
- #define PHYSFS_TEST_SORT_ELEMENTS (64 * 1024)
- static int __PHYSFS_test_sort_cmp(void *_a, PHYSFS_uint32 x, PHYSFS_uint32 y)
- {
- PHYSFS_sint32 *a = (PHYSFS_sint32 *) _a;
- PHYSFS_sint32 one = a[x];
- PHYSFS_sint32 two = a[y];
- if (one < two)
- return(-1);
- else if (one > two)
- return(1);
- return(0);
- } /* __PHYSFS_test_sort_cmp */
- static void __PHYSFS_test_sort_swap(void *_a, PHYSFS_uint32 x, PHYSFS_uint32 y)
- {
- PHYSFS_sint32 *a = (PHYSFS_sint32 *) _a;
- PHYSFS_sint32 tmp;
- tmp = a[x];
- a[x] = a[y];
- a[y] = tmp;
- } /* __PHYSFS_test_sort_swap */
- static int __PHYSFS_test_sort_do(PHYSFS_uint32 *timer,
- PHYSFS_sint32 *a, PHYSFS_uint32 max,
- int (*cmpfn)(void *, PHYSFS_uint32, PHYSFS_uint32),
- void (*swapfn)(void *, PHYSFS_uint32, PHYSFS_uint32))
- {
- PHYSFS_uint32 i;
- struct timeval starttime, endtime;
- gettimeofday(&starttime, NULL);
- __PHYSFS_sort(a, max, cmpfn, swapfn);
- gettimeofday(&endtime, NULL);
- for (i = 1; i < max; i++)
- {
- if (a[i] < a[i - 1])
- return(0);
- } /* for */
- if (timer != NULL)
- {
- *timer = ( ((endtime.tv_sec - starttime.tv_sec) * 1000) +
- ((endtime.tv_usec - starttime.tv_usec) / 1000) );
- } /* if */
- return(1);
- } /* __PHYSFS_test_sort_time */
- static void __PHYSFS_test_sort(void)
- {
- PHYSFS_uint32 elasped[PHYSFS_TEST_SORT_ITERATIONS];
- PHYSFS_sint32 iter;
- PHYSFS_sint32 a[PHYSFS_TEST_SORT_ELEMENTS];
- PHYSFS_sint32 i, x;
- int success;
- printf("Testing __PHYSFS_sort (linear presorted) ... ");
- for (iter = 0; iter < PHYSFS_TEST_SORT_ITERATIONS; iter++)
- {
- /* set up array to sort. */
- for (i = 0; i < PHYSFS_TEST_SORT_ELEMENTS; i++)
- a[i] = i;
- /* sort it. */
- success = __PHYSFS_test_sort_do(&elasped[iter],
- a, PHYSFS_TEST_SORT_ELEMENTS,
- __PHYSFS_test_sort_cmp,
- __PHYSFS_test_sort_swap);
- if (!success)
- break;
- } /* for */
- if (!success)
- printf("Failed!\n");
- else
- {
- for (x = 0, iter = 0; iter < PHYSFS_TEST_SORT_ITERATIONS; iter++)
- x += elasped[iter];
- x /= PHYSFS_TEST_SORT_ITERATIONS;
- printf("Average run (%lu) ms.\n", (unsigned long) x);
- } /* else */
- printf("Testing __PHYSFS_sort (linear presorted reverse) ... ");
- for (iter = 0; iter < PHYSFS_TEST_SORT_ITERATIONS; iter++)
- {
- /* set up array to sort. */
- for (i = 0, x = PHYSFS_TEST_SORT_ELEMENTS;
- i < PHYSFS_TEST_SORT_ELEMENTS;
- i++, x--)
- {
- a[i] = x;
- } /* for */
- /* sort it. */
- success = __PHYSFS_test_sort_do(&elasped[iter],
- a, PHYSFS_TEST_SORT_ELEMENTS,
- __PHYSFS_test_sort_cmp,
- __PHYSFS_test_sort_swap);
- if (!success)
- break;
- } /* for */
- if (!success)
- printf("Failed!\n");
- else
- {
- for (x = 0, iter = 0; iter < PHYSFS_TEST_SORT_ITERATIONS; iter++)
- x += elasped[iter];
- x /= PHYSFS_TEST_SORT_ITERATIONS;
- printf("Average run (%lu) ms.\n", (unsigned long) x);
- } /* else */
- printf("Testing __PHYSFS_sort (randomized) ... ");
- for (iter = 0; iter < PHYSFS_TEST_SORT_ITERATIONS; iter++)
- {
- /* set up array to sort. */
- for (i = 0; i < PHYSFS_TEST_SORT_ELEMENTS; i++)
- a[i] = (PHYSFS_uint32) rand();
- /* sort it. */
- success = __PHYSFS_test_sort_do(&elasped[iter],
- a, PHYSFS_TEST_SORT_ELEMENTS,
- __PHYSFS_test_sort_cmp,
- __PHYSFS_test_sort_swap);
- if (!success)
- break;
- } /* for */
- if (!success)
- printf("Failed!\n");
- else
- {
- for (x = 0, iter = 0; iter < PHYSFS_TEST_SORT_ITERATIONS; iter++)
- x += elasped[iter];
- x /= PHYSFS_TEST_SORT_ITERATIONS;
- printf("Average run (%lu) ms.\n", (unsigned long) x);
- } /* else */
- printf("__PHYSFS_test_sort() complete.\n\n");
- } /* __PHYSFS_test_sort */
- #endif
- static ErrMsg *findErrorForCurrentThread(void)
- {
- ErrMsg *i;
- PHYSFS_uint64 tid;
- if (errorLock != NULL)
- __PHYSFS_platformGrabMutex(errorLock);
- if (errorMessages != NULL)
- {
- tid = __PHYSFS_platformGetThreadID();
- for (i = errorMessages; i != NULL; i = i->next)
- {
- if (i->tid == tid)
- {
- if (errorLock != NULL)
- __PHYSFS_platformReleaseMutex(errorLock);
- return(i);
- } /* if */
- } /* for */
- } /* if */
- if (errorLock != NULL)
- __PHYSFS_platformReleaseMutex(errorLock);
- return(NULL); /* no error available. */
- } /* findErrorForCurrentThread */
- void __PHYSFS_setError(const char *str)
- {
- ErrMsg *err;
- if (str == NULL)
- return;
- err = findErrorForCurrentThread();
- if (err == NULL)
- {
- err = (ErrMsg *) malloc(sizeof (ErrMsg));
- if (err == NULL)
- return; /* uhh...? */
- memset((void *) err, '\0', sizeof (ErrMsg));
- err->tid = __PHYSFS_platformGetThreadID();
- if (errorLock != NULL)
- __PHYSFS_platformGrabMutex(errorLock);
- err->next = errorMessages;
- errorMessages = err;
- if (errorLock != NULL)
- __PHYSFS_platformReleaseMutex(errorLock);
- } /* if */
- err->errorAvailable = 1;
- strncpy(err->errorString, str, sizeof (err->errorString));
- err->errorString[sizeof (err->errorString) - 1] = '\0';
- } /* __PHYSFS_setError */
- const char *PHYSFS_getLastError(void)
- {
- ErrMsg *err = findErrorForCurrentThread();
- if ((err == NULL) || (!err->errorAvailable))
- return(NULL);
- err->errorAvailable = 0;
- return(err->errorString);
- } /* PHYSFS_getLastError */
- /* MAKE SURE that errorLock is held before calling this! */
- static void freeErrorMessages(void)
- {
- ErrMsg *i;
- ErrMsg *next;
- for (i = errorMessages; i != NULL; i = next)
- {
- next = i->next;
- free(i);
- } /* for */
- errorMessages = NULL;
- } /* freeErrorMessages */
- void PHYSFS_getLinkedVersion(PHYSFS_Version *ver)
- {
- if (ver != NULL)
- {
- ver->major = PHYSFS_VER_MAJOR;
- ver->minor = PHYSFS_VER_MINOR;
- ver->patch = PHYSFS_VER_PATCH;
- } /* if */
- } /* PHYSFS_getLinkedVersion */
- static const char *find_filename_extension(const char *fname)
- {
- const char *retval = strchr(fname, '.');
- const char *p = retval;
- while (p != NULL)
- {
- p = strchr(p + 1, '.');
- if (p != NULL)
- retval = p;
- } /* while */
- if (retval != NULL)
- retval++; /* skip '.' */
- return(retval);
- } /* find_filename_extension */
- static DirHandle *tryOpenDir(const PHYSFS_Archiver *funcs,
- const char *d, int forWriting)
- {
- DirHandle *retval = NULL;
- if (funcs->isArchive(d, forWriting))
- {
- void *opaque = funcs->openArchive(d, forWriting);
- if (opaque != NULL)
- {
- retval = (DirHandle *) allocator.malloc(sizeof (DirHandle));
- if (retval == NULL)
- funcs->dirClose(opaque);
- else
- {
- memset(retval, '\0', sizeof (DirHandle));
- retval->funcs = funcs;
- retval->opaque = opaque;
- } /* else */
- } /* if */
- } /* if */
- return(retval);
- } /* tryOpenDir */
- static DirHandle *openDirectory(const char *d, int forWriting)
- {
- DirHandle *retval = NULL;
- const PHYSFS_Archiver **i;
- const char *ext;
- BAIL_IF_MACRO(!__PHYSFS_platformExists(d), ERR_NO_SUCH_FILE, NULL);
- ext = find_filename_extension(d);
- if (ext != NULL)
- {
- /* Look for archivers with matching file extensions first... */
- for (i = archivers; (*i != NULL) && (retval == NULL); i++)
- {
- if (__PHYSFS_platformStricmp(ext, (*i)->info->extension) == 0)
- retval = tryOpenDir(*i, d, forWriting);
- } /* for */
- /* failing an exact file extension match, try all the others... */
- for (i = archivers; (*i != NULL) && (retval == NULL); i++)
- {
- if (__PHYSFS_platformStricmp(ext, (*i)->info->extension) != 0)
- retval = tryOpenDir(*i, d, forWriting);
- } /* for */
- } /* if */
- else /* no extension? Try them all. */
- {
- for (i = archivers; (*i != NULL) && (retval == NULL); i++)
- retval = tryOpenDir(*i, d, forWriting);
- } /* else */
- BAIL_IF_MACRO(retval == NULL, ERR_UNSUPPORTED_ARCHIVE, NULL);
- return(retval);
- } /* openDirectory */
- static DirHandle *createDirHandle(const char *newDir, int forWriting)
- {
- DirHandle *dirHandle = NULL;
- BAIL_IF_MACRO(newDir == NULL, ERR_INVALID_ARGUMENT, NULL);
- dirHandle = openDirectory(newDir, forWriting);
- BAIL_IF_MACRO(dirHandle == NULL, NULL, NULL);
- dirHandle->dirName = (char *) malloc(strlen(newDir) + 1);
- if (dirHandle->dirName == NULL)
- {
- dirHandle->funcs->dirClose(dirHandle->opaque);
- free(dirHandle);
- BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
- } /* if */
- strcpy(dirHandle->dirName, newDir);
- return(dirHandle);
- } /* createDirHandle */
- /* MAKE SURE you've got the stateLock held before calling this! */
- static int freeDirHandle(DirHandle *dh, FileHandle *openList)
- {
- FileHandle *i;
- if (dh == NULL)
- return(1);
- for (i = openList; i != NULL; i = i->next)
- BAIL_IF_MACRO(i->dirHandle == dh, ERR_FILES_STILL_OPEN, 0);
-
- dh->funcs->dirClose(dh->opaque);
- free(dh->dirName);
- free(dh);
- return(1);
- } /* freeDirHandle */
- static char *calculateUserDir(void)
- {
- char *retval = NULL;
- const char *str = NULL;
- str = __PHYSFS_platformGetUserDir();
- if (str != NULL)
- retval = (char *) str;
- else
- {
- const char *dirsep = PHYSFS_getDirSeparator();
- const char *uname = __PHYSFS_platformGetUserName();
- str = (uname != NULL) ? uname : "default";
- retval = (char *) malloc(strlen(baseDir) + strlen(str) +
- strlen(dirsep) + 6);
- if (retval == NULL)
- __PHYSFS_setError(ERR_OUT_OF_MEMORY);
- else
- sprintf(retval, "%susers%s%s", baseDir, dirsep, str);
- if (uname != NULL)
- free((void *) uname);
- } /* else */
- return(retval);
- } /* calculateUserDir */
- static int appendDirSep(char **dir)
- {
- const char *dirsep = PHYSFS_getDirSeparator();
- char *ptr;
- if (strcmp((*dir + strlen(*dir)) - strlen(dirsep), dirsep) == 0)
- return(1);
- ptr = realloc(*dir, strlen(*dir) + strlen(dirsep) + 1);
- if (!ptr)
- {
- free(*dir);
- return(0);
- } /* if */
- strcat(ptr, dirsep);
- *dir = ptr;
- return(1);
- } /* appendDirSep */
- static char *calculateBaseDir(const char *argv0)
- {
- const char *dirsep = PHYSFS_getDirSeparator();
- char *retval;
- char *ptr;
- /*
- * See if the platform driver wants to handle this for us...
- */
- retval = __PHYSFS_platformCalcBaseDir(argv0);
- if (retval != NULL)
- return(retval);
- /*
- * Determine if there's a path on argv0. If there is, that's the base dir.
- */
- ptr = strstr(argv0, dirsep);
- if (ptr != NULL)
- {
- char *p = ptr;
- size_t size;
- while (p != NULL)
- {
- ptr = p;
- p = strstr(p + 1, dirsep);
- } /* while */
- size = (size_t) (ptr - argv0);
- retval = (char *) malloc(size + 1);
- BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
- memcpy(retval, argv0, size);
- retval[size] = '\0';
- return(retval);
- } /* if */
- /*
- * Last ditch effort: it's the current working directory. (*shrug*)
- */
- retval = __PHYSFS_platformCurrentDir();
- if (retval != NULL)
- return(retval);
- /*
- * Ok, current directory doesn't exist, use the root directory.
- * Not a good alternative, but it only happens if the current
- * directory was deleted from under the program.
- */
- retval = (char *) malloc(strlen(dirsep) + 1);
- strcpy(retval, dirsep);
- return(retval);
- } /* calculateBaseDir */
- static int initializeMutexes(void)
- {
- errorLock = __PHYSFS_platformCreateMutex();
- if (errorLock == NULL)
- goto initializeMutexes_failed;
- stateLock = __PHYSFS_platformCreateMutex();
- if (stateLock == NULL)
- goto initializeMutexes_failed;
- return(1); /* success. */
- initializeMutexes_failed:
- if (errorLock != NULL)
- __PHYSFS_platformDestroyMutex(errorLock);
- if (stateLock != NULL)
- __PHYSFS_platformDestroyMutex(stateLock);
- errorLock = stateLock = NULL;
- return(0); /* failed. */
- } /* initializeMutexes */
- static void setDefaultAllocator(void);
- int PHYSFS_init(const char *argv0)
- {
- char *ptr;
- BAIL_IF_MACRO(initialized, ERR_IS_INITIALIZED, 0);
- if (!externalAllocator)
- setDefaultAllocator();
- BAIL_IF_MACRO(!allocator.init(), NULL, 0);
- BAIL_IF_MACRO(!__PHYSFS_platformInit(), NULL, 0);
- BAIL_IF_MACRO(!initializeMutexes(), NULL, 0);
- baseDir = calculateBaseDir(argv0);
- BAIL_IF_MACRO(baseDir == NULL, NULL, 0);
- ptr = __PHYSFS_platformRealPath(baseDir);
- free(baseDir);
- BAIL_IF_MACRO(ptr == NULL, NULL, 0);
- baseDir = ptr;
- BAIL_IF_MACRO(!appendDirSep(&baseDir), NULL, 0);
- userDir = calculateUserDir();
- if (userDir != NULL)
- {
- ptr = __PHYSFS_platformRealPath(userDir);
- free(userDir);
- userDir = ptr;
- } /* if */
- if ((userDir == NULL) || (!appendDirSep(&userDir)))
- {
- free(baseDir);
- baseDir = NULL;
- return(0);
- } /* if */
- initialized = 1;
- /* This makes sure that the error subsystem is initialized. */
- __PHYSFS_setError(PHYSFS_getLastError());
- #if (defined PHYSFS_PROFILING)
- srand(time(NULL));
- setbuf(stdout, NULL);
- printf("\n");
- printf("********************************************************\n");
- printf("Warning! Profiling is built into this copy of PhysicsFS!\n");
- printf("********************************************************\n");
- printf("\n");
- printf("\n");
- __PHYSFS_test_sort();
- #endif
- return(1);
- } /* PHYSFS_init */
- /* MAKE SURE you hold stateLock before calling this! */
- static int closeFileHandleList(FileHandle **list)
- {
- FileHandle *i;
- FileHandle *next = NULL;
- FileHandle *h;
- for (i = *list; i != NULL; i = next)
- {
- next = i->next;
- if (!i->funcs->fileClose(i->opaque))
- {
- *list = i;
- return(0);
- } /* if */
- free(i);
- } /* for */
- *list = NULL;
- return(1);
- } /* closeFileHandleList */
- /* MAKE SURE you hold the stateLock before calling this! */
- static void freeSearchPath(void)
- {
- DirHandle *i;
- DirHandle *next = NULL;
- closeFileHandleList(&openReadList);
- if (searchPath != NULL)
- {
- for (i = searchPath; i != NULL; i = next)
- {
- next = i->next;
- freeDirHandle(i, openReadList);
- } /* for */
- searchPath = NULL;
- } /* if */
- } /* freeSearchPath */
- int PHYSFS_deinit(void)
- {
- BAIL_IF_MACRO(!initialized, ERR_NOT_INITIALIZED, 0);
- BAIL_IF_MACRO(!__PHYSFS_platformDeinit(), NULL, 0);
- closeFileHandleList(&openWriteList);
- BAIL_IF_MACRO(!PHYSFS_setWriteDir(NULL), ERR_FILES_STILL_OPEN, 0);
- freeSearchPath();
- freeErrorMessages();
- if (baseDir != NULL)
- {
- free(baseDir);
- baseDir = NULL;
- } /* if */
- if (userDir != NULL)
- {
- free(userDir);
- userDir = NULL;
- } /* if */
- allowSymLinks = 0;
- initialized = 0;
- __PHYSFS_platformDestroyMutex(errorLock);
- __PHYSFS_platformDestroyMutex(stateLock);
- allocator.deinit();
- errorLock = stateLock = NULL;
- return(1);
- } /* PHYSFS_deinit */
- const PHYSFS_ArchiveInfo **PHYSFS_supportedArchiveTypes(void)
- {
- return(supported_types);
- } /* PHYSFS_supportedArchiveTypes */
- void PHYSFS_freeList(void *list)
- {
- void **i;
- for (i = (void **) list; *i != NULL; i++)
- free(*i);
- free(list);
- } /* PHYSFS_freeList */
- const char *PHYSFS_getDirSeparator(void)
- {
- return(__PHYSFS_platformDirSeparator);
- } /* PHYSFS_getDirSeparator */
- char **PHYSFS_getCdRomDirs(void)
- {
- return(__PHYSFS_platformDetectAvailableCDs());
- } /* PHYSFS_getCdRomDirs */
- const char *PHYSFS_getBaseDir(void)
- {
- return(baseDir); /* this is calculated in PHYSFS_init()... */
- } /* PHYSFS_getBaseDir */
- const char *PHYSFS_getUserDir(void)
- {
- return(userDir); /* this is calculated in PHYSFS_init()... */
- } /* PHYSFS_getUserDir */
- const char *PHYSFS_getWriteDir(void)
- {
- const char *retval = NULL;
- __PHYSFS_platformGrabMutex(stateLock);
- if (writeDir != NULL)
- retval = writeDir->dirName;
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_getWriteDir */
- int PHYSFS_setWriteDir(const char *newDir)
- {
- int retval = 1;
- __PHYSFS_platformGrabMutex(stateLock);
- if (writeDir != NULL)
- {
- BAIL_IF_MACRO_MUTEX(!freeDirHandle(writeDir, openWriteList), NULL,
- stateLock, 0);
- writeDir = NULL;
- } /* if */
- if (newDir != NULL)
- {
- writeDir = createDirHandle(newDir, 1);
- retval = (writeDir != NULL);
- } /* if */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_setWriteDir */
- int PHYSFS_addToSearchPath(const char *newDir, int appendToPath)
- {
- DirHandle *dh;
- DirHandle *prev = NULL;
- DirHandle *i;
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; i != NULL; i = i->next)
- {
- /* already in search path? */
- BAIL_IF_MACRO_MUTEX(strcmp(newDir, i->dirName)==0, NULL, stateLock, 1);
- prev = i;
- } /* for */
- dh = createDirHandle(newDir, 0);
- BAIL_IF_MACRO_MUTEX(dh == NULL, NULL, stateLock, 0);
- if (appendToPath)
- {
- if (prev == NULL)
- searchPath = dh;
- else
- prev->next = dh;
- } /* if */
- else
- {
- dh->next = searchPath;
- searchPath = dh;
- } /* else */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(1);
- } /* PHYSFS_addToSearchPath */
- int PHYSFS_removeFromSearchPath(const char *oldDir)
- {
- DirHandle *i;
- DirHandle *prev = NULL;
- DirHandle *next = NULL;
- BAIL_IF_MACRO(oldDir == NULL, ERR_INVALID_ARGUMENT, 0);
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; i != NULL; i = i->next)
- {
- if (strcmp(i->dirName, oldDir) == 0)
- {
- next = i->next;
- BAIL_IF_MACRO_MUTEX(!freeDirHandle(i, openReadList), NULL,
- stateLock, 0);
- if (prev == NULL)
- searchPath = next;
- else
- prev->next = next;
- BAIL_MACRO_MUTEX(NULL, stateLock, 1);
- } /* if */
- prev = i;
- } /* for */
- BAIL_MACRO_MUTEX(ERR_NOT_IN_SEARCH_PATH, stateLock, 0);
- } /* PHYSFS_removeFromSearchPath */
- char **PHYSFS_getSearchPath(void)
- {
- int count = 1;
- int x;
- DirHandle *i;
- char **retval;
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; i != NULL; i = i->next)
- count++;
- retval = (char **) malloc(sizeof (char *) * count);
- BAIL_IF_MACRO_MUTEX(!retval, ERR_OUT_OF_MEMORY, stateLock, NULL);
- count--;
- retval[count] = NULL;
- for (i = searchPath, x = 0; x < count; i = i->next, x++)
- {
- retval[x] = (char *) malloc(strlen(i->dirName) + 1);
- if (retval[x] == NULL) /* this is friggin' ugly. */
- {
- while (x > 0)
- {
- x--;
- free(retval[x]);
- } /* while */
- free(retval);
- BAIL_MACRO_MUTEX(ERR_OUT_OF_MEMORY, stateLock, NULL);
- } /* if */
- strcpy(retval[x], i->dirName);
- } /* for */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_getSearchPath */
- int PHYSFS_setSaneConfig(const char *organization, const char *appName,
- const char *archiveExt, int includeCdRoms,
- int archivesFirst)
- {
- const char *basedir = PHYSFS_getBaseDir();
- const char *userdir = PHYSFS_getUserDir();
- const char *dirsep = PHYSFS_getDirSeparator();
- char *str;
- BAIL_IF_MACRO(!initialized, ERR_NOT_INITIALIZED, 0);
- /* set write dir... */
- str = malloc(strlen(userdir) + (strlen(organization) * 2) +
- (strlen(appName) * 2) + (strlen(dirsep) * 3) + 2);
- BAIL_IF_MACRO(str == NULL, ERR_OUT_OF_MEMORY, 0);
- sprintf(str, "%s.%s%s%s", userdir, organization, dirsep, appName);
- if (!PHYSFS_setWriteDir(str))
- {
- int no_write = 0;
- sprintf(str, ".%s/%s", organization, appName);
- if ( (PHYSFS_setWriteDir(userdir)) &&
- (PHYSFS_mkdir(str)) )
- {
- sprintf(str, "%s.%s%s%s", userdir, organization, dirsep, appName);
- if (!PHYSFS_setWriteDir(str))
- no_write = 1;
- } /* if */
- else
- {
- no_write = 1;
- } /* else */
- if (no_write)
- {
- PHYSFS_setWriteDir(NULL); /* just in case. */
- free(str);
- BAIL_MACRO(ERR_CANT_SET_WRITE_DIR, 0);
- } /* if */
- } /* if */
- /* Put write dir first in search path... */
- PHYSFS_addToSearchPath(str, 0);
- free(str);
- /* Put base path on search path... */
- PHYSFS_addToSearchPath(basedir, 1);
- /* handle CD-ROMs... */
- if (includeCdRoms)
- {
- char **cds = PHYSFS_getCdRomDirs();
- char **i;
- for (i = cds; *i != NULL; i++)
- PHYSFS_addToSearchPath(*i, 1);
- PHYSFS_freeList(cds);
- } /* if */
- /* Root out archives, and add them to search path... */
- if (archiveExt != NULL)
- {
- char **rc = PHYSFS_enumerateFiles("/");
- char **i;
- size_t extlen = strlen(archiveExt);
- char *ext;
- for (i = rc; *i != NULL; i++)
- {
- size_t l = strlen(*i);
- if ((l > extlen) && ((*i)[l - extlen - 1] == '.'))
- {
- ext = (*i) + (l - extlen);
- if (__PHYSFS_platformStricmp(ext, archiveExt) == 0)
- {
- const char *d = PHYSFS_getRealDir(*i);
- str = malloc(strlen(d) + strlen(dirsep) + l + 1);
- if (str != NULL)
- {
- sprintf(str, "%s%s%s", d, dirsep, *i);
- PHYSFS_addToSearchPath(str, archivesFirst == 0);
- free(str);
- } /* if */
- } /* if */
- } /* if */
- } /* for */
- PHYSFS_freeList(rc);
- } /* if */
- return(1);
- } /* PHYSFS_setSaneConfig */
- void PHYSFS_permitSymbolicLinks(int allow)
- {
- allowSymLinks = allow;
- } /* PHYSFS_permitSymbolicLinks */
- /* string manipulation in C makes my ass itch. */
- char * __PHYSFS_convertToDependent(const char *prepend,
- const char *dirName,
- const char *append)
- {
- const char *dirsep = __PHYSFS_platformDirSeparator;
- size_t sepsize = strlen(dirsep);
- char *str;
- char *i1;
- char *i2;
- size_t allocSize;
- while (*dirName == '/')
- dirName++;
- allocSize = strlen(dirName) + 1;
- if (prepend != NULL)
- allocSize += strlen(prepend) + sepsize;
- if (append != NULL)
- allocSize += strlen(append) + sepsize;
- /* make sure there's enough space if the dir separator is bigger. */
- if (sepsize > 1)
- {
- str = (char *) dirName;
- do
- {
- str = strchr(str, '/');
- if (str != NULL)
- {
- allocSize += (sepsize - 1);
- str++;
- } /* if */
- } while (str != NULL);
- } /* if */
- str = (char *) malloc(allocSize);
- BAIL_IF_MACRO(str == NULL, ERR_OUT_OF_MEMORY, NULL);
- if (prepend == NULL)
- *str = '\0';
- else
- {
- strcpy(str, prepend);
- strcat(str, dirsep);
- } /* else */
- for (i1 = (char *) dirName, i2 = str + strlen(str); *i1; i1++, i2++)
- {
- if (*i1 == '/')
- {
- strcpy(i2, dirsep);
- i2 += sepsize;
- } /* if */
- else
- {
- *i2 = *i1;
- } /* else */
- } /* for */
- *i2 = '\0';
- if (append)
- {
- strcat(str, dirsep);
- strcpy(str, append);
- } /* if */
- return(str);
- } /* __PHYSFS_convertToDependent */
- /*
- * Verify that (fname) (in platform-independent notation), in relation
- * to (h) is secure. That means that each element of fname is checked
- * for symlinks (if they aren't permitted). Also, elements such as
- * ".", "..", or ":" are flagged.
- *
- * With some exceptions (like PHYSFS_mkdir(), which builds multiple subdirs
- * at a time), you should always pass zero for "allowMissing" for efficiency.
- *
- * Returns non-zero if string is safe, zero if there's a security issue.
- * PHYSFS_getLastError() will specify what was wrong.
- */
- int __PHYSFS_verifySecurity(DirHandle *h, const char *fname, int allowMissing)
- {
- int retval = 1;
- char *start;
- char *end;
- char *str;
- if (*fname == '\0') /* quick rejection. */
- return(1);
- /* !!! FIXME: Can we ditch this malloc()? */
- start = str = malloc(strlen(fname) + 1);
- BAIL_IF_MACRO(str == NULL, ERR_OUT_OF_MEMORY, 0);
- strcpy(str, fname);
- while (1)
- {
- end = strchr(start, '/');
- if (end != NULL)
- *end = '\0';
- if ( (strcmp(start, ".") == 0) ||
- (strcmp(start, "..") == 0) ||
- (strchr(start, '\\') != NULL) ||
- (strchr(start, ':') != NULL) )
- {
- __PHYSFS_setError(ERR_INSECURE_FNAME);
- retval = 0;
- break;
- } /* if */
- if (!allowSymLinks)
- {
- if (h->funcs->isSymLink(h->opaque, str, &retval))
- {
- __PHYSFS_setError(ERR_SYMLINK_DISALLOWED);
- free(str);
- return(0); /* insecure. */
- } /* if */
- /* break out early if path element is missing. */
- if (!retval)
- {
- /*
- * We need to clear it if it's the last element of the path,
- * since this might be a non-existant file we're opening
- * for writing...
- */
- if ((end == NULL) || (allowMissing))
- retval = 1;
- break;
- } /* if */
- } /* if */
- if (end == NULL)
- break;
- *end = '/';
- start = end + 1;
- } /* while */
- free(str);
- return(retval);
- } /* __PHYSFS_verifySecurity */
- int PHYSFS_mkdir(const char *dname)
- {
- DirHandle *h;
- char *str;
- char *start;
- char *end;
- int retval = 0;
- int exists = 1; /* force existance check on first path element. */
- BAIL_IF_MACRO(dname == NULL, ERR_INVALID_ARGUMENT, 0);
- while (*dname == '/')
- dname++;
- __PHYSFS_platformGrabMutex(stateLock);
- BAIL_IF_MACRO_MUTEX(writeDir == NULL, ERR_NO_WRITE_DIR, stateLock, 0);
- h = writeDir;
- BAIL_IF_MACRO_MUTEX(!__PHYSFS_verifySecurity(h,dname,1),NULL,stateLock,0);
- start = str = malloc(strlen(dname) + 1);
- BAIL_IF_MACRO_MUTEX(str == NULL, ERR_OUT_OF_MEMORY, stateLock, 0);
- strcpy(str, dname);
- while (1)
- {
- end = strchr(start, '/');
- if (end != NULL)
- *end = '\0';
- /* only check for existance if all parent dirs existed, too... */
- if (exists)
- retval = h->funcs->isDirectory(h->opaque, str, &exists);
- if (!exists)
- retval = h->funcs->mkdir(h->opaque, str);
- if (!retval)
- break;
- if (end == NULL)
- break;
- *end = '/';
- start = end + 1;
- } /* while */
- __PHYSFS_platformReleaseMutex(stateLock);
- free(str);
- return(retval);
- } /* PHYSFS_mkdir */
- int PHYSFS_delete(const char *fname)
- {
- int retval;
- DirHandle *h;
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, 0);
- while (*fname == '/')
- fname++;
- __PHYSFS_platformGrabMutex(stateLock);
- BAIL_IF_MACRO_MUTEX(writeDir == NULL, ERR_NO_WRITE_DIR, stateLock, 0);
- h = writeDir;
- BAIL_IF_MACRO_MUTEX(!__PHYSFS_verifySecurity(h,fname,0),NULL,stateLock,0);
- retval = h->funcs->remove(h->opaque, fname);
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_delete */
- const char *PHYSFS_getRealDir(const char *filename)
- {
- DirHandle *i;
- const char *retval = NULL;
- while (*filename == '/')
- filename++;
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; ((i != NULL) && (retval == NULL)); i = i->next)
- {
- if (__PHYSFS_verifySecurity(i, filename, 0))
- {
- if (i->funcs->exists(i->opaque, filename))
- retval = i->dirName;
- } /* if */
- } /* for */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_getRealDir */
- static int countList(LinkedStringList *list)
- {
- int retval = 0;
- LinkedStringList *i;
- for (i = list; i != NULL; i = i->next)
- retval++;
- return(retval);
- } /* countList */
- static char **convertStringListToPhysFSList(LinkedStringList *finalList)
- {
- int i;
- LinkedStringList *next = NULL;
- int len = countList(finalList);
- char **retval = (char **) malloc((len + 1) * sizeof (char *));
- if (retval == NULL)
- __PHYSFS_setError(ERR_OUT_OF_MEMORY);
- for (i = 0; i < len; i++)
- {
- next = finalList->next;
- if (retval == NULL)
- free(finalList->str);
- else
- retval[i] = finalList->str;
- free(finalList);
- finalList = next;
- } /* for */
- if (retval != NULL)
- retval[i] = NULL;
- return(retval);
- } /* convertStringListToPhysFSList */
- static void insertStringListItem(LinkedStringList **final,
- LinkedStringList *item)
- {
- LinkedStringList *i;
- LinkedStringList *prev = NULL;
- int rc;
- for (i = *final; i != NULL; i = i->next)
- {
- rc = strcmp(i->str, item->str);
- if (rc > 0) /* insertion point. */
- break;
- else if (rc == 0) /* already in list. */
- {
- free(item->str);
- free(item);
- return;
- } /* else if */
- prev = i;
- } /* for */
- /*
- * If we are here, we are either at the insertion point.
- * This may be the end of the list, or the list may be empty, too.
- */
- if (prev == NULL)
- *final = item;
- else
- prev->next = item;
- item->next = i;
- } /* insertStringListItem */
- /* if we run out of memory anywhere in here, we give back what we can. */
- static void interpolateStringLists(LinkedStringList **final,
- LinkedStringList *newList)
- {
- LinkedStringList *next = NULL;
- while (newList != NULL)
- {
- next = newList->next;
- insertStringListItem(final, newList);
- newList = next;
- } /* while */
- } /* interpolateStringLists */
- char **PHYSFS_enumerateFiles(const char *path)
- {
- DirHandle *i;
- char **retval = NULL;
- LinkedStringList *rc;
- LinkedStringList *finalList = NULL;
- int omitSymLinks = !allowSymLinks;
- BAIL_IF_MACRO(path == NULL, ERR_INVALID_ARGUMENT, NULL);
- while (*path == '/')
- path++;
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; i != NULL; i = i->next)
- {
- if (__PHYSFS_verifySecurity(i, path, 0))
- {
- rc = i->funcs->enumerateFiles(i->opaque, path, omitSymLinks);
- interpolateStringLists(&finalList, rc);
- } /* if */
- } /* for */
- __PHYSFS_platformReleaseMutex(stateLock);
- retval = convertStringListToPhysFSList(finalList);
- return(retval);
- } /* PHYSFS_enumerateFiles */
- int PHYSFS_exists(const char *fname)
- {
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, 0);
- while (*fname == '/')
- fname++;
- return(PHYSFS_getRealDir(fname) != NULL);
- } /* PHYSFS_exists */
- PHYSFS_sint64 PHYSFS_getLastModTime(const char *fname)
- {
- DirHandle *i;
- PHYSFS_sint64 retval = -1;
- int fileExists = 0;
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, 0);
- while (*fname == '/')
- fname++;
- if (*fname == '\0') /* eh...punt if it's the root dir. */
- return(1);
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; ((i != NULL) && (!fileExists)); i = i->next)
- {
- if (__PHYSFS_verifySecurity(i, fname, 0))
- retval = i->funcs->getLastModTime(i->opaque, fname, &fileExists);
- } /* for */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_getLastModTime */
- int PHYSFS_isDirectory(const char *fname)
- {
- DirHandle *i;
- int retval = 0;
- int fileExists = 0;
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, 0);
- while (*fname == '/')
- fname++;
- BAIL_IF_MACRO(*fname == '\0', NULL, 1); /* Root is always a dir. :) */
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; ((i != NULL) && (!fileExists)); i = i->next)
- {
- if (__PHYSFS_verifySecurity(i, fname, 0))
- retval = i->funcs->isDirectory(i->opaque, fname, &fileExists);
- } /* for */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_isDirectory */
- int PHYSFS_isSymbolicLink(const char *fname)
- {
- DirHandle *i;
- int retval = 0;
- int fileExists = 0;
- BAIL_IF_MACRO(!allowSymLinks, ERR_SYMLINK_DISALLOWED, 0);
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, 0);
- while (*fname == '/')
- fname++;
- BAIL_IF_MACRO(*fname == '\0', NULL, 0); /* Root is never a symlink */
- __PHYSFS_platformGrabMutex(stateLock);
- for (i = searchPath; ((i != NULL) && (!fileExists)); i = i->next)
- {
- if (__PHYSFS_verifySecurity(i, fname, 0))
- retval = i->funcs->isSymLink(i->opaque, fname, &fileExists);
- } /* for */
- __PHYSFS_platformReleaseMutex(stateLock);
- return(retval);
- } /* PHYSFS_isSymbolicLink */
- static PHYSFS_File *doOpenWrite(const char *fname, int appending)
- {
- void *opaque = NULL;
- FileHandle *fh = NULL;
- DirHandle *h = NULL;
- const PHYSFS_Archiver *f;
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, NULL);
- while (*fname == '/')
- fname++;
- __PHYSFS_platformGrabMutex(stateLock);
- BAIL_IF_MACRO_MUTEX(!writeDir, ERR_NO_WRITE_DIR, stateLock, NULL);
- h = writeDir;
- BAIL_IF_MACRO_MUTEX(!__PHYSFS_verifySecurity(h, fname, 0), NULL,
- stateLock, NULL);
- f = h->funcs;
- if (appending)
- opaque = f->openAppend(h->opaque, fname);
- else
- opaque = f->openWrite(h->opaque, fname);
- BAIL_IF_MACRO_MUTEX(opaque == NULL, NULL, stateLock, NULL);
- fh = (FileHandle *) malloc(sizeof (FileHandle));
- if (fh == NULL)
- {
- f->fileClose(opaque);
- BAIL_MACRO_MUTEX(ERR_OUT_OF_MEMORY, stateLock, NULL);
- } /* if */
- else
- {
- memset(fh, '\0', sizeof (FileHandle));
- fh->opaque = opaque;
- fh->dirHandle = h;
- fh->funcs = h->funcs;
- fh->next = openWriteList;
- openWriteList = fh;
- } /* else */
- __PHYSFS_platformReleaseMutex(stateLock);
- return((PHYSFS_File *) fh);
- } /* doOpenWrite */
- PHYSFS_File *PHYSFS_openWrite(const char *filename)
- {
- return(doOpenWrite(filename, 0));
- } /* PHYSFS_openWrite */
- PHYSFS_File *PHYSFS_openAppend(const char *filename)
- {
- return(doOpenWrite(filename, 1));
- } /* PHYSFS_openAppend */
- PHYSFS_File *PHYSFS_openRead(const char *fname)
- {
- FileHandle *fh = NULL;
- int fileExists = 0;
- DirHandle *i = NULL;
- fvoid *opaque = NULL;
- BAIL_IF_MACRO(fname == NULL, ERR_INVALID_ARGUMENT, NULL);
- while (*fname == '/')
- fname++;
- __PHYSFS_platformGrabMutex(stateLock);
- BAIL_IF_MACRO_MUTEX(!searchPath, ERR_NOT_IN_SEARCH_PATH, stateLock, NULL);
- i = searchPath;
- do
- {
- if (__PHYSFS_verifySecurity(i, fname, 0))
- {
- opaque = i->funcs->openRead(i->opaque, fname, &fileExists);
- if (opaque)
- break;
- } /* if */
- i = i->next;
- } while ((i != NULL) && (!fileExists));
- BAIL_IF_MACRO_MUTEX(opaque == NULL, NULL, stateLock, NULL);
- fh = (FileHandle *) malloc(sizeof (FileHandle));
- if (fh == NULL)
- {
- i->funcs->fileClose(opaque);
- BAIL_MACRO_MUTEX(ERR_OUT_OF_MEMORY, stateLock, NULL);
- } /* if */
- memset(fh, '\0', sizeof (FileHandle));
- fh->opaque = opaque;
- fh->forReading = 1;
- fh->dirHandle = i;
- fh->funcs = i->funcs;
- fh->next = openReadList;
- openReadList = fh;
- __PHYSFS_platformReleaseMutex(stateLock);
- return((PHYSFS_File *) fh);
- } /* PHYSFS_openRead */
- static int closeHandleInOpenList(FileHandle **list, FileHandle *handle)
- {
- FileHandle *prev = NULL;
- FileHandle *i;
- int rc = 1;
- for (i = *list; i != NULL; i = i->next)
- {
- if (i == handle) /* handle is in this list? */
- {
- PHYSFS_uint8 *tmp = handle->buffer;
- rc = PHYSFS_flush((PHYSFS_File *) handle);
- if (rc)
- rc = handle->funcs->fileClose(handle->opaque);
- if (!rc)
- return(-1);
- if (tmp != NULL) /* free any associated buffer. */
- free(tmp);
- if (prev == NULL)
- *list = handle->next;
- else
- prev->next = handle->next;
- free(handle);
- return(1);
- } /* if */
- prev = i;
- } /* for */
- return(0);
- } /* closeHandleInOpenList */
- int PHYSFS_close(PHYSFS_File *_handle)
- {
- FileHandle *handle = (FileHandle *) _handle;
- int rc;
- __PHYSFS_platformGrabMutex(stateLock);
- /* -1 == close failure. 0 == not found. 1 == success. */
- rc = closeHandleInOpenList(&openReadList, handle);
- BAIL_IF_MACRO_MUTEX(rc == -1, NULL, stateLock, 0);
- if (!rc)
- {
- rc = closeHandleInOpenList(&openWriteList, handle);
- BAIL_IF_MACRO_MUTEX(rc == -1, NULL, stateLock, 0);
- } /* if */
- __PHYSFS_platformReleaseMutex(stateLock);
- BAIL_IF_MACRO(!rc, ERR_NOT_A_HANDLE, 0);
- return(1);
- } /* PHYSFS_close */
- static PHYSFS_sint64 doBufferedRead(FileHandle *fh, void *buffer,
- PHYSFS_uint32 objSize,
- PHYSFS_uint32 objCount)
- {
- PHYSFS_sint64 retval = 0;
- PHYSFS_uint32 remainder = 0;
- while (objCount > 0)
- {
- PHYSFS_uint32 buffered = fh->buffill - fh->bufpos;
- PHYSFS_uint64 mustread = (objSize * objCount) - remainder;
- PHYSFS_uint32 copied;
- if (buffered == 0) /* need to refill buffer? */
- {
- PHYSFS_sint64 rc = fh->funcs->read(fh->opaque, fh->buffer,
- 1, fh->bufsize);
- if (rc <= 0)
- {
- fh->bufpos -= remainder;
- return(((rc == -1) && (retval == 0)) ? -1 : retval);
- } /* if */
- buffered = fh->buffill = (PHYSFS_uint32) rc;
- fh->bufpos = 0;
- } /* if */
- if (buffered > mustread)
- buffered = (PHYSFS_uint32) mustread;
- memcpy(buffer, fh->buffer + fh->bufpos, (size_t) buffered);
- buffer = ((PHYSFS_uint8 *) buffer) + buffered;
- fh->bufpos += buffered;
- buffered += remainder; /* take remainder into account. */
- copied = (buffered / objSize);
- remainder = (buffered % objSize);
- retval += copied;
- objCount -= copied;
- } /* while */
- return(retval);
- } /* doBufferedRead */
- PHYSFS_sint64 PHYSFS_read(PHYSFS_File *handle, void *buffer,
- PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
- {
- FileHandle *fh = (FileHandle *) handle;
- BAIL_IF_MACRO(!fh->forReading, ERR_FILE_ALREADY_OPEN_W, -1);
- if (fh->buffer != NULL)
- return(doBufferedRead(fh, buffer, objSize, objCount));
- return(fh->funcs->read(fh->opaque, buffer, objSize, objCount));
- } /* PHYSFS_read */
- static PHYSFS_sint64 doBufferedWrite(PHYSFS_File *handle, const void *buffer,
- PHYSFS_uint32 objSize,
- PHYSFS_uint32 objCount)
- {
- FileHandle *fh = (FileHandle *) handle;
-
- /* whole thing fits in the buffer? */
- if (fh->buffill + (objSize * objCount) < fh->bufsize)
- {
- memcpy(fh->buffer + fh->buffill, buffer, objSize * objCount);
- fh->buffill += (objSize * objCount);
- return(objCount);
- } /* if */
- /* would overflow buffer. Flush and then write the new objects, too. */
- BAIL_IF_MACRO(!PHYSFS_flush(handle), NULL, -1);
- return(fh->funcs->write(fh->opaque, buffer, objSize, objCount));
- } /* doBufferedWrite */
- PHYSFS_sint64 PHYSFS_write(PHYSFS_File *handle, const void *buffer,
- PHYSFS_uint32 objSize, PHYSFS_uint32 objCount)
- {
- FileHandle *fh = (FileHandle *) handle;
- BAIL_IF_MACRO(fh->forReading, ERR_FILE_ALREADY_OPEN_R, -1);
- if (fh->buffer != NULL)
- return(doBufferedWrite(handle, buffer, objSize, objCount));
- return(fh->funcs->write(fh->opaque, buffer, objSize, objCount));
- } /* PHYSFS_write */
- int PHYSFS_eof(PHYSFS_File *handle)
- {
- FileHandle *fh = (FileHandle *) handle;
- if (!fh->forReading) /* never EOF on files opened for write/append. */
- return(0);
- /* eof if buffer is empty and archiver says so. */
- return((fh->bufpos == fh->buffill) && (fh->funcs->eof(fh->opaque)));
- } /* PHYSFS_eof */
- PHYSFS_sint64 PHYSFS_tell(PHYSFS_File *handle)
- {
- FileHandle *fh = (FileHandle *) handle;
- PHYSFS_sint64 pos = fh->funcs->tell(fh->opaque);
- PHYSFS_sint64 retval = fh->forReading ?
- (pos - fh->buffill) + fh->bufpos :
- (pos + fh->buffill);
- return(retval);
- } /* PHYSFS_tell */
- int PHYSFS_seek(PHYSFS_File *handle, PHYSFS_uint64 pos)
- {
- FileHandle *fh = (FileHandle *) handle;
- BAIL_IF_MACRO(!PHYSFS_flush(handle), NULL, 0);
- if (fh->buffer && fh->forReading)
- {
- /* avoid throwing away our precious buffer if seeking within it. */
- PHYSFS_sint64 offset = pos - PHYSFS_tell(handle);
- if ( /* seeking within the already-buffered range? */
- ((offset >= 0) && (offset <= fh->buffill - fh->bufpos)) /* fwd */
- || ((offset < 0) && (-offset <= fh->bufpos)) /* backward */ )
- {
- fh->bufpos += offset;
- return(1); /* successful seek */
- } /* if */
- } /* if */
- /* we have to fall back to a 'raw' seek. */
- fh->buffill = fh->bufpos = 0;
- return(fh->funcs->seek(fh->opaque, pos));
- } /* PHYSFS_seek */
- PHYSFS_sint64 PHYSFS_fileLength(PHYSFS_File *handle)
- {
- FileHandle *fh = (FileHandle *) handle;
- return(fh->funcs->fileLength(fh->opaque));
- } /* PHYSFS_filelength */
- int PHYSFS_setBuffer(PHYSFS_File *handle, PHYSFS_uint64 _bufsize)
- {
- FileHandle *fh = (FileHandle *) handle;
- PHYSFS_uint32 bufsize;
- BAIL_IF_MACRO(_bufsize > 0xFFFFFFFF, "buffer must fit in 32-bits", 0);
- bufsize = (PHYSFS_uint32) _bufsize;
- BAIL_IF_MACRO(!PHYSFS_flush(handle), NULL, 0);
- /*
- * For reads, we need to move the file pointer to where it would be
- * if we weren't buffering, so that the next read will get the
- * right chunk of stuff from the file. PHYSFS_flush() handles writes.
- */
- if ((fh->forReading) && (fh->buffill != fh->bufpos))
- {
- PHYSFS_uint64 pos;
- PHYSFS_sint64 curpos = fh->funcs->tell(fh->opaque);
- BAIL_IF_MACRO(curpos == -1, NULL, 0);
- pos = ((curpos - fh->buffill) + fh->bufpos);
- BAIL_IF_MACRO(!fh->funcs->seek(fh->opaque, pos), NULL, 0);
- } /* if */
- if (bufsize == 0) /* delete existing buffer. */
- {
- if (fh->buffer != NULL)
- {
- free(fh->buffer);
- fh->buffer = NULL;
- } /* if */
- } /* if */
- else
- {
- PHYSFS_uint8 *newbuf = realloc(fh->buffer, bufsize);
- BAIL_IF_MACRO(newbuf == NULL, ERR_OUT_OF_MEMORY, 0);
- fh->buffer = newbuf;
- } /* else */
- fh->bufsize = bufsize;
- fh->buffill = fh->bufpos = 0;
- return(1);
- } /* PHYSFS_setBuffer */
- int PHYSFS_flush(PHYSFS_File *handle)
- {
- FileHandle *fh = (FileHandle *) handle;
- PHYSFS_sint64 rc;
- if ((fh->forReading) || (fh->bufpos == fh->buffill))
- return(1); /* open for read or buffer empty are successful no-ops. */
- /* dump buffer to disk. */
- rc = fh->funcs->write(fh->opaque, fh->buffer + fh->bufpos,
- fh->buffill - fh->bufpos, 1);
- BAIL_IF_MACRO(rc <= 0, NULL, 0);
- fh->bufpos = fh->buffill = 0;
- return(1);
- } /* PHYSFS_flush */
- LinkedStringList *__PHYSFS_addToLinkedStringList(LinkedStringList *retval,
- LinkedStringList **prev,
- const char *str,
- PHYSFS_sint32 len)
- {
- LinkedStringList *l;
- l = (LinkedStringList *) malloc(sizeof (LinkedStringList));
- BAIL_IF_MACRO(l == NULL, ERR_OUT_OF_MEMORY, retval);
- if (len < 0)
- len = strlen(str);
- l->str = (char *) malloc(len + 1);
- if (l->str == NULL)
- {
- free(l);
- BAIL_MACRO(ERR_OUT_OF_MEMORY, retval);
- } /* if */
- strncpy(l->str, str, len);
- l->str[len] = '\0';
- if (retval == NULL)
- retval = l;
- else
- (*prev)->next = l;
- *prev = l;
- l->next = NULL;
- return(retval);
- } /* __PHYSFS_addToLinkedStringList */
- int PHYSFS_setAllocator(PHYSFS_Allocator *a)
- {
- BAIL_IF_MACRO(initialized, ERR_IS_INITIALIZED, 0);
- externalAllocator = (a != NULL);
- if (externalAllocator)
- memcpy(&allocator, a, sizeof (PHYSFS_Allocator));
- return(1);
- } /* PHYSFS_setAllocator */
- static void setDefaultAllocator(void)
- {
- assert(!externalAllocator);
- allocator.init = __PHYSFS_platformAllocatorInit;
- allocator.deinit = __PHYSFS_platformAllocatorDeinit;
- allocator.malloc = __PHYSFS_platformAllocatorMalloc;
- allocator.realloc = __PHYSFS_platformAllocatorRealloc;
- allocator.free = __PHYSFS_platformAllocatorFree;
- } /* setDefaultAllocator */
- PHYSFS_Allocator *__PHYSFS_getAllocator(void)
- {
- return(&allocator);
- } /* __PHYFS_getAllocator */
- /* end of physfs.c ... */
|