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
|
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>
extern char **environ;
int execvp(const char *file, char *const argv[])
{
if (*file == '\0') {
errno = ENOENT;
return -1;
}
if (strchr(file, '/') != NULL) {
return execv(file, argv);
} else {
char *ptr;
char *path = NULL; // TODO: getenv
if (path == NULL || *path == '\0') {
path = "/bin";
}
do {
char buf[PATH_MAX];
if ((ptr = strchr(path, ':')) == NULL) {
if (snprintf(buf, PATH_MAX, "%s/%s", path,
file) >= PATH_MAX) {
errno = ENAMETOOLONG;
return -1;
}
execv(buf, argv);
break;
}
if (snprintf(buf, PATH_MAX, "%.*s/%s",
(int)(ptr - path), path,
file) >= PATH_MAX) {
errno = ENAMETOOLONG;
return -1;
}
execv(buf, argv);
} while (*ptr != '\0');
errno = ENOENT;
return -1;
}
return 0;
}
|