Better basedir detection for various Unix platforms.

This commit is contained in:
Ryan C. Gordon 2013-08-23 23:41:35 -04:00
parent 09baf99aa4
commit 4046759f61
4 changed files with 55 additions and 18 deletions

View File

@ -1347,13 +1347,13 @@ int PHYSFS_isInit(void)
} /* PHYSFS_isInit */ } /* PHYSFS_isInit */
static char *PHYSFS_strdup(const char *str) char *__PHYSFS_strdup(const char *str)
{ {
char *retval = (char *) allocator.Malloc(strlen(str) + 1); char *retval = (char *) allocator.Malloc(strlen(str) + 1);
if (retval) if (retval)
strcpy(retval, str); strcpy(retval, str);
return retval; return retval;
} /* PHYSFS_strdup */ } /* __PHYSFS_strdup */
/* MAKE SURE you hold stateLock before calling this! */ /* MAKE SURE you hold stateLock before calling this! */
@ -1400,7 +1400,7 @@ static int doRegisterArchiver(const PHYSFS_Archiver *_archiver)
info = (PHYSFS_ArchiveInfo *) &archiver->info; info = (PHYSFS_ArchiveInfo *) &archiver->info;
memset(info, '\0', sizeof (*info)); /* NULL in case an alloc fails. */ memset(info, '\0', sizeof (*info)); /* NULL in case an alloc fails. */
#define CPYSTR(item) \ #define CPYSTR(item) \
info->item = PHYSFS_strdup(_archiver->info.item); \ info->item = __PHYSFS_strdup(_archiver->info.item); \
GOTO_IF_MACRO(!info->item, PHYSFS_ERR_OUT_OF_MEMORY, regfailed); GOTO_IF_MACRO(!info->item, PHYSFS_ERR_OUT_OF_MEMORY, regfailed);
CPYSTR(extension); CPYSTR(extension);
CPYSTR(description); CPYSTR(description);

View File

@ -631,6 +631,11 @@ void __PHYSFS_platformReleaseMutex(void *mutex);
*/ */
int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a); int __PHYSFS_platformSetDefaultAllocator(PHYSFS_Allocator *a);
/*
* Like strdup(), but uses the current PhysicsFS allocator.
*/
char *__PHYSFS_strdup(const char *str);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@ -48,7 +48,12 @@
# define PHYSFS_PLATFORM_SOLARIS 1 # define PHYSFS_PLATFORM_SOLARIS 1
# define PHYSFS_PLATFORM_UNIX 1 # define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1 # define PHYSFS_PLATFORM_POSIX 1
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__DragonFly__) #elif defined(__FreeBSD__) || defined(__DragonFly__)
# define PHYSFS_PLATFORM_FREEBSD 1
# define PHYSFS_PLATFORM_BSD 1
# define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1
#elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
# define PHYSFS_PLATFORM_BSD 1 # define PHYSFS_PLATFORM_BSD 1
# define PHYSFS_PLATFORM_UNIX 1 # define PHYSFS_PLATFORM_UNIX 1
# define PHYSFS_PLATFORM_POSIX 1 # define PHYSFS_PLATFORM_POSIX 1

View File

@ -13,6 +13,7 @@
#include <ctype.h> #include <ctype.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#include <pwd.h> #include <pwd.h>
#include <sys/stat.h> #include <sys/stat.h>
@ -20,6 +21,7 @@
#include <dirent.h> #include <dirent.h>
#include <time.h> #include <time.h>
#include <errno.h> #include <errno.h>
#include <limits.h>
#if PHYSFS_PLATFORM_LINUX && !defined(PHYSFS_HAVE_MNTENT_H) #if PHYSFS_PLATFORM_LINUX && !defined(PHYSFS_HAVE_MNTENT_H)
#define PHYSFS_HAVE_MNTENT_H 1 #define PHYSFS_HAVE_MNTENT_H 1
@ -244,20 +246,45 @@ char *__PHYSFS_platformCalcBaseDir(const char *argv0)
char *retval = NULL; char *retval = NULL;
const char *envr = NULL; const char *envr = NULL;
/* /* Try to avoid using argv0 unless forced to. Try system-specific stuff. */
* Try to avoid using argv0 unless forced to. If there's a Linux-like
* /proc filesystem, you can get the full path to the current process from #if PHYSFS_PLATFORM_FREEBSD
* the /proc/self/exe symlink.
*/
retval = readSymLink("/proc/self/exe");
if (retval == NULL)
{ {
/* older kernels don't have /proc/self ... try PID version... */ char fullpath[PATH_MAX];
const unsigned long long pid = (unsigned long long) getpid(); size_t buflen = sizeof (fullpath);
char path[64]; int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
const int rc = (int) snprintf(path,sizeof(path),"/proc/%llu/exe",pid); if (sysctl(mib, 4, fullpath, &buflen, NULL, 0) != -1)
if ( (rc > 0) && (rc < sizeof(path)) ) retval = __PHYSFS_strdup(fullpath);
retval = readSymLink(path); }
#elif PHYSFS_PLATFORM_SOLARIS
{
const char *path = getexecname();
if ((path != NULL) && (path[0] == '/')) /* must be absolute path... */
retval = __PHYSFS_strdup(path);
}
#endif
if (retval)
return retval; /* already got it. */
/* If there's a Linux-like /proc filesystem, you can get the full path to
* the current process from a symlink in there.
*/
if (access("/proc", F_OK) == 0)
{
retval = readSymLink("/proc/self/exe");
if (!retval) retval = readSymLink("/proc/curproc/file");
if (!retval) retval = readSymLink("/proc/curproc/exe");
if (retval == NULL)
{
/* older kernels don't have /proc/self ... try PID version... */
const unsigned long long pid = (unsigned long long) getpid();
char path[64];
const int rc = (int) snprintf(path,sizeof(path),"/proc/%llu/exe",pid);
if ( (rc > 0) && (rc < sizeof(path)) )
retval = readSymLink(path);
} /* if */
} /* if */ } /* if */
if (retval != NULL) /* chop off filename. */ if (retval != NULL) /* chop off filename. */
@ -272,7 +299,7 @@ char *__PHYSFS_platformCalcBaseDir(const char *argv0)
} /* else */ } /* else */
} /* if */ } /* if */
/* No /proc/self/exe, but we have an argv[0] we can parse? */ /* No /proc/self/exe, etc, but we have an argv[0] we can parse? */
if ((retval == NULL) && (argv0 != NULL)) if ((retval == NULL) && (argv0 != NULL))
{ {
/* fast path: default behaviour can handle this. */ /* fast path: default behaviour can handle this. */