2006-10-12 06:12:11 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Gabriel Somlo <somlo at cmu.edu>
|
|
|
|
*
|
2010-08-16 20:14:46 +02:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-10-12 06:12:11 +00:00
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/* check if path points to an executable file;
|
|
|
|
* return 1 if found;
|
|
|
|
* return 0 otherwise;
|
|
|
|
*/
|
2014-05-02 17:15:58 +02:00
|
|
|
int FAST_FUNC file_is_executable(const char *name)
|
2006-10-12 06:12:11 +00:00
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
return (!access(name, X_OK) && !stat(name, &s) && S_ISREG(s.st_mode));
|
|
|
|
}
|
|
|
|
|
2008-06-05 13:33:59 +00:00
|
|
|
/* search (*PATHp) for an executable file;
|
2006-10-12 06:12:11 +00:00
|
|
|
* return allocated string containing full path if found;
|
2008-06-05 13:33:59 +00:00
|
|
|
* PATHp points to the component after the one where it was found
|
2024-10-08 04:03:17 +02:00
|
|
|
* (or NULL if found in last component),
|
2014-05-02 17:15:58 +02:00
|
|
|
* you may call find_executable again with this PATHp to continue
|
2024-10-08 04:03:17 +02:00
|
|
|
* return NULL otherwise (PATHp is undefined)
|
2006-10-12 06:12:11 +00:00
|
|
|
*/
|
2024-10-08 04:03:17 +02:00
|
|
|
char* FAST_FUNC find_executable(const char *name, const char **PATHp)
|
2006-10-12 06:12:11 +00:00
|
|
|
{
|
2014-05-02 17:08:29 +02:00
|
|
|
/* About empty components in $PATH:
|
|
|
|
* http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap08.html
|
|
|
|
* 8.3 Other Environment Variables - PATH
|
|
|
|
* A zero-length prefix is a legacy feature that indicates the current
|
|
|
|
* working directory. It appears as two adjacent colons ( "::" ), as an
|
|
|
|
* initial colon preceding the rest of the list, or as a trailing colon
|
|
|
|
* following the rest of the list.
|
|
|
|
*/
|
2024-10-08 04:03:17 +02:00
|
|
|
char *p = (char*) *PATHp;
|
2006-10-12 06:12:11 +00:00
|
|
|
|
2024-10-08 04:03:17 +02:00
|
|
|
if (!p)
|
|
|
|
return NULL;
|
|
|
|
while (1) {
|
|
|
|
const char *end = strchrnul(p, ':');
|
|
|
|
int sz = end - p;
|
2018-01-12 13:21:33 +01:00
|
|
|
|
2024-10-08 04:03:17 +02:00
|
|
|
if (sz != 0) {
|
|
|
|
p = xasprintf("%.*s/%s", sz, p, name);
|
|
|
|
} else {
|
|
|
|
/* We have xxx::yyy in $PATH,
|
|
|
|
* it means "use current dir" */
|
|
|
|
p = xstrdup(name);
|
|
|
|
// A bit of discrepancy wrt the path used if file is found here.
|
|
|
|
// bash 5.2.15 "type" returns "./NAME".
|
|
|
|
// GNU which v2.21 returns "/CUR/DIR/NAME".
|
|
|
|
// With -a, both skip over all colons: xxx::::yyy is the same as xxx::yyy,
|
|
|
|
// current dir is not tried the second time.
|
|
|
|
}
|
|
|
|
if (file_is_executable(p)) {
|
|
|
|
*PATHp = (*end ? end+1 : NULL);
|
2014-05-02 17:08:29 +02:00
|
|
|
return p;
|
2006-10-12 06:12:11 +00:00
|
|
|
}
|
2014-05-02 17:08:29 +02:00
|
|
|
free(p);
|
2024-10-08 04:03:17 +02:00
|
|
|
if (*end == '\0')
|
|
|
|
return NULL;
|
|
|
|
p = (char *) end + 1;
|
|
|
|
}
|
2006-10-12 06:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* search $PATH for an executable file;
|
|
|
|
* return 1 if found;
|
|
|
|
* return 0 otherwise;
|
|
|
|
*/
|
2024-10-08 04:03:17 +02:00
|
|
|
int FAST_FUNC executable_exists(const char *name)
|
2006-10-12 06:12:11 +00:00
|
|
|
{
|
2024-10-08 04:03:17 +02:00
|
|
|
const char *path = getenv("PATH");
|
|
|
|
char *ret = find_executable(name, &path);
|
2014-05-02 17:08:29 +02:00
|
|
|
free(ret);
|
|
|
|
return ret != NULL;
|
2006-10-12 06:12:11 +00:00
|
|
|
}
|
2007-02-06 01:20:12 +00:00
|
|
|
|
2007-04-10 23:03:30 +00:00
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS
|
2011-02-02 03:28:56 +01:00
|
|
|
/* just like the real execvp, but try to launch an applet named 'file' first */
|
|
|
|
int FAST_FUNC BB_EXECVP(const char *file, char *const argv[])
|
2007-02-06 01:20:12 +00:00
|
|
|
{
|
2011-02-02 03:28:56 +01:00
|
|
|
if (find_applet_by_name(file) >= 0)
|
|
|
|
execvp(bb_busybox_exec_path, argv);
|
|
|
|
return execvp(file, argv);
|
2007-02-06 01:20:12 +00:00
|
|
|
}
|
|
|
|
#endif
|
2010-07-04 00:57:03 +02:00
|
|
|
|
2016-04-02 18:06:24 +02:00
|
|
|
void FAST_FUNC BB_EXECVP_or_die(char **argv)
|
2010-07-04 00:57:03 +02:00
|
|
|
{
|
|
|
|
BB_EXECVP(argv[0], argv);
|
|
|
|
/* SUSv3-mandated exit codes */
|
|
|
|
xfunc_error_retval = (errno == ENOENT) ? 127 : 126;
|
|
|
|
bb_perror_msg_and_die("can't execute '%s'", argv[0]);
|
|
|
|
}
|