blob: 817c067369adfcfdd1f7b6ff413f765c9f629819 (
plain)
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
|
/* 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;
*/
int execable_file(const char *name)
{
struct stat s;
return (!access(name, X_OK) && !stat(name, &s) && S_ISREG(s.st_mode));
}
/* search $PATH for an executable file;
* return allocated string containing full path if found;
* return NULL otherwise;
*/
char *find_execable(const char *filename)
{
char *path, *p, *n;
p = path = xstrdup(getenv("PATH"));
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)) {
free(path);
return p;
}
free(p);
}
p = n;
}
free(path);
return NULL;
}
/* search $PATH for an executable file;
* return 1 if found;
* return 0 otherwise;
*/
int exists_execable(const char *filename)
{
char *ret = find_execable(filename);
if (ret) {
free(ret);
return 1;
}
return 0;
}
|