|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "tool_setup.h" |
|
|
|
|
|
#ifdef HAVE_PWD_H |
|
|
# undef __NO_NET_API |
|
|
# include <pwd.h> |
|
|
#endif |
|
|
|
|
|
#ifdef HAVE_SYS_STAT_H |
|
|
#include <sys/stat.h> |
|
|
#endif |
|
|
#ifdef HAVE_FCNTL_H |
|
|
#include <fcntl.h> |
|
|
#endif |
|
|
|
|
|
#include <curlx.h> |
|
|
|
|
|
#include "tool_findfile.h" |
|
|
|
|
|
#include "memdebug.h" |
|
|
|
|
|
struct finder { |
|
|
const char *env; |
|
|
const char *append; |
|
|
bool withoutdot; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
static const struct finder conf_list[] = { |
|
|
{ "CURL_HOME", NULL, FALSE }, |
|
|
{ "XDG_CONFIG_HOME", NULL, TRUE }, |
|
|
{ "HOME", NULL, FALSE }, |
|
|
#ifdef _WIN32 |
|
|
{ "USERPROFILE", NULL, FALSE }, |
|
|
{ "APPDATA", NULL, FALSE }, |
|
|
{ "USERPROFILE", "\\Application Data", FALSE}, |
|
|
#endif |
|
|
|
|
|
{ "CURL_HOME", "/.config", TRUE }, |
|
|
{ "HOME", "/.config", TRUE }, |
|
|
|
|
|
{ NULL, NULL, FALSE } |
|
|
}; |
|
|
|
|
|
static char *checkhome(const char *home, const char *fname, bool dotscore) |
|
|
{ |
|
|
const char pref[2] = { '.', '_' }; |
|
|
int i; |
|
|
for(i = 0; i < (dotscore ? 2 : 1); i++) { |
|
|
char *c; |
|
|
if(dotscore) |
|
|
c = aprintf("%s" DIR_CHAR "%c%s", home, pref[i], &fname[1]); |
|
|
else |
|
|
c = aprintf("%s" DIR_CHAR "%s", home, fname); |
|
|
if(c) { |
|
|
int fd = open(c, O_RDONLY); |
|
|
if(fd >= 0) { |
|
|
char *path = strdup(c); |
|
|
close(fd); |
|
|
curl_free(c); |
|
|
return path; |
|
|
} |
|
|
curl_free(c); |
|
|
} |
|
|
} |
|
|
return NULL; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char *findfile(const char *fname, int dotscore) |
|
|
{ |
|
|
int i; |
|
|
DEBUGASSERT(fname && fname[0]); |
|
|
DEBUGASSERT((dotscore != 1) || (fname[0] == '.')); |
|
|
|
|
|
if(!fname[0]) |
|
|
return NULL; |
|
|
|
|
|
for(i = 0; conf_list[i].env; i++) { |
|
|
char *home = curl_getenv(conf_list[i].env); |
|
|
if(home) { |
|
|
char *path; |
|
|
const char *filename = fname; |
|
|
if(!home[0]) { |
|
|
curl_free(home); |
|
|
continue; |
|
|
} |
|
|
if(conf_list[i].append) { |
|
|
char *c = aprintf("%s%s", home, conf_list[i].append); |
|
|
curl_free(home); |
|
|
if(!c) |
|
|
return NULL; |
|
|
home = c; |
|
|
} |
|
|
if(conf_list[i].withoutdot) { |
|
|
if(!dotscore) { |
|
|
|
|
|
|
|
|
curl_free(home); |
|
|
continue; |
|
|
} |
|
|
filename++; |
|
|
dotscore = 0; |
|
|
} |
|
|
path = checkhome(home, filename, dotscore ? dotscore - 1 : 0); |
|
|
curl_free(home); |
|
|
if(path) |
|
|
return path; |
|
|
} |
|
|
} |
|
|
#if defined(HAVE_GETPWUID) && defined(HAVE_GETEUID) |
|
|
{ |
|
|
struct passwd *pw = getpwuid(geteuid()); |
|
|
if(pw) { |
|
|
char *home = pw->pw_dir; |
|
|
if(home && home[0]) |
|
|
return checkhome(home, fname, FALSE); |
|
|
} |
|
|
} |
|
|
#endif |
|
|
return NULL; |
|
|
} |
|
|
|