1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/* 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 source tree.
*/
#include "libbb.h"
/* check if path points to an executable file;
* return 1 if found;
* return 0 otherwise;
*/
int FAST_FUNC execable_file(const char *name)
{
struct stat s;
#if ENABLE_PLATFORM_MINGW32
if (!stat(name, &s) && S_ISREG(s.st_mode)) {
int len, fd, n;
char buf[100];
if ((len=strlen(name)) > 4 &&
(!strcasecmp(name+len-4, ".exe") ||
!strcasecmp(name+len-4, ".com"))) {
return 1;
}
fd = open(name, O_RDONLY);
if (fd < 0)
return 0;
n = read(fd, buf, sizeof(buf)-1);
close(fd);
if (n < 4) /* at least '#!/x' and not error */
return 0;
return (buf[0] == '#' && buf[1] == '!');
}
return 0;
#else
return (!access(name, X_OK) && !stat(name, &s) && S_ISREG(s.st_mode));
#endif
}
/* search (*PATHp) for an executable file;
* return allocated string containing full path if found;
* 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/).
*/
#if !ENABLE_PLATFORM_MINGW32
#define next_path_sep(s) strchr(s, ':')
#endif
char* FAST_FUNC find_execable(const char *filename, char **PATHp)
{
char *p, *n;
p = *PATHp;
while (p) {
n = (char*)next_path_sep(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)) {
*PATHp = n;
return p;
}
if (ENABLE_PLATFORM_MINGW32) {
int len = strlen(p);
if (len > 4 &&
(!strcasecmp(p+len-4, ".exe") ||
!strcasecmp(p+len-4, ".com")))
; /* nothing, already tested by find_execable() */
else {
char *np = xmalloc(len+4+1);
memcpy(np, p, len);
memcpy(np+len, ".exe", 5);
if (execable_file(np)) {
*PATHp = n;
free(p);
return np;
}
memcpy(np+len, ".com", 5);
if (execable_file(np)) {
*PATHp = n;
free(p);
return np;
}
}
}
free(p);
}
p = n;
} /* on loop exit p == NULL */
return p;
}
/* search $PATH for an executable file;
* return 1 if found;
* return 0 otherwise;
*/
int FAST_FUNC exists_execable(const char *filename)
{
char *path = xstrdup(getenv("PATH"));
char *tmp = path;
char *ret = find_execable(filename, &tmp);
free(path);
if (ret) {
free(ret);
return 1;
}
return 0;
}
#if ENABLE_FEATURE_PREFER_APPLETS
/* 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[])
{
if (find_applet_by_name(file) >= 0)
execvp(bb_busybox_exec_path, argv);
return execvp(file, argv);
}
#endif
int FAST_FUNC BB_EXECVP_or_die(char **argv)
{
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]);
}
|