2006-10-12 11:42:11 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Gabriel Somlo <somlo at cmu.edu>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/* check if path points to an executable file;
|
|
|
|
* return 1 if found;
|
|
|
|
* return 0 otherwise;
|
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC execable_file(const char *name)
|
2006-10-12 11:42:11 +05:30
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
return (!access(name, X_OK) && !stat(name, &s) && S_ISREG(s.st_mode));
|
|
|
|
}
|
|
|
|
|
2008-06-05 19:03:59 +05:30
|
|
|
/* search (*PATHp) for an executable file;
|
2006-10-12 11:42:11 +05:30
|
|
|
* return allocated string containing full path if found;
|
2008-06-05 19:03:59 +05:30
|
|
|
* PATHp points to the component after the one where it was found
|
|
|
|
* (or NULL),
|
|
|
|
* you may call find_execable again with this PATHp to continue
|
|
|
|
* (if it's not NULL).
|
|
|
|
* return NULL otherwise; (PATHp is undefined)
|
|
|
|
* in all cases (*PATHp) contents will be trashed (s/:/NUL/).
|
2006-10-12 11:42:11 +05:30
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
char* FAST_FUNC find_execable(const char *filename, char **PATHp)
|
2006-10-12 11:42:11 +05:30
|
|
|
{
|
2008-06-05 19:03:59 +05:30
|
|
|
char *p, *n;
|
2006-10-12 11:42:11 +05:30
|
|
|
|
2008-06-05 19:03:59 +05:30
|
|
|
p = *PATHp;
|
2006-10-12 11:42:11 +05:30
|
|
|
while (p) {
|
|
|
|
n = strchr(p, ':');
|
|
|
|
if (n)
|
|
|
|
*n++ = '\0';
|
|
|
|
if (*p != '\0') { /* it's not a PATH="foo::bar" situation */
|
|
|
|
p = concat_path_file(p, filename);
|
|
|
|
if (execable_file(p)) {
|
2008-06-05 19:03:59 +05:30
|
|
|
*PATHp = n;
|
2006-10-12 11:42:11 +05:30
|
|
|
return p;
|
|
|
|
}
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
p = n;
|
2008-06-05 19:03:59 +05:30
|
|
|
} /* on loop exit p == NULL */
|
|
|
|
return p;
|
2006-10-12 11:42:11 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* search $PATH for an executable file;
|
|
|
|
* return 1 if found;
|
|
|
|
* return 0 otherwise;
|
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC exists_execable(const char *filename)
|
2006-10-12 11:42:11 +05:30
|
|
|
{
|
2008-06-05 19:03:59 +05:30
|
|
|
char *path = xstrdup(getenv("PATH"));
|
|
|
|
char *tmp = path;
|
|
|
|
char *ret = find_execable(filename, &tmp);
|
|
|
|
free(path);
|
2006-10-12 11:42:11 +05:30
|
|
|
if (ret) {
|
|
|
|
free(ret);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2007-02-06 06:50:12 +05:30
|
|
|
|
2007-04-11 04:33:30 +05:30
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS
|
2007-02-06 06:50:12 +05:30
|
|
|
/* just like the real execvp, but try to launch an applet named 'file' first
|
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC bb_execvp(const char *file, char *const argv[])
|
2007-02-06 06:50:12 +05:30
|
|
|
{
|
2007-11-28 12:19:03 +05:30
|
|
|
return execvp(find_applet_by_name(file) >= 0 ? bb_busybox_exec_path : file,
|
2007-02-06 06:50:12 +05:30
|
|
|
argv);
|
|
|
|
}
|
|
|
|
#endif
|