blob: c1e73a505b2884d9efea97836915ff36ebf8e284 [file] [log] [blame]
Elliott Hughes1b40aaf2016-08-18 10:11:36 -07001/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/types.h>
31#include <sys/uio.h>
32
33#include <errno.h>
34#include <limits.h>
35#include <paths.h>
36#include <stdarg.h>
37#include <stdio.h>
38#include <stdlib.h>
39#include <string.h>
40#include <unistd.h>
41
42extern "C" char** environ;
43
44enum ExecVariant { kIsExecL, kIsExecLE, kIsExecLP };
45
46static int __execl(const char* name, const char* argv0, ExecVariant variant, va_list ap) {
47 // Count the arguments.
48 va_list count_ap;
49 va_copy(count_ap, ap);
50 size_t n = 1;
51 while (va_arg(count_ap, char*) != nullptr) {
52 ++n;
53 }
54 va_end(count_ap);
55
56 // Construct the new argv.
57 char* argv[n + 1];
58 argv[0] = const_cast<char*>(argv0);
59 n = 1;
60 while ((argv[n] = va_arg(ap, char*)) != nullptr) {
61 ++n;
62 }
63
64 // Collect the argp too.
65 char** argp = (variant == kIsExecLE) ? va_arg(ap, char**) : environ;
66
67 va_end(ap);
68
69 return (variant == kIsExecLP) ? execvp(name, argv) : execve(name, argv, argp);
70}
71
72int execl(const char* name, const char* arg, ...) {
73 va_list ap;
74 va_start(ap, arg);
75 return __execl(name, arg, kIsExecL, ap);
76}
77
78int execle(const char* name, const char* arg, ...) {
79 va_list ap;
80 va_start(ap, arg);
81 return __execl(name, arg, kIsExecLE, ap);
82}
83
84int execlp(const char* name, const char* arg, ...) {
85 va_list ap;
86 va_start(ap, arg);
87 return __execl(name, arg, kIsExecLP, ap);
88}
89
90int execv(const char* name, char* const* argv) {
91 return execve(name, argv, environ);
92}
93
94int execvp(const char* name, char* const* argv) {
95 return execvpe(name, argv, environ);
96}
97
98static int __exec_as_script(char* buf, char* const* argv, char* const* envp) {
99 size_t arg_count = 0;
100 while (argv[arg_count] != nullptr) ++arg_count;
101
102 char* script_argv[arg_count + 2];
103 script_argv[0] = const_cast<char*>("sh");
104 script_argv[1] = buf;
105 bcopy(argv + 1, script_argv + 2, arg_count * sizeof(char*));
106 return execve(_PATH_BSHELL, script_argv, envp);
107}
108
109int execvpe(const char* name, char* const* argv, char* const* envp) {
110 // Do not allow null name.
111 if (name == nullptr || *name == '\0') {
112 errno = ENOENT;
113 return -1;
114 }
115
116 // If it's an absolute or relative path name, it's easy.
117 if (strchr(name, '/')) return execve(name, argv, envp);
118
119 // Get the path we're searching.
120 const char* path = getenv("PATH");
121 if (path == nullptr) path = _PATH_DEFPATH;
122
123 // Make a writable copy.
124 size_t len = strlen(path) + 1;
125 char writable_path[len];
126 memcpy(writable_path, path, len);
127
128 bool saw_EACCES = false;
129
130 // Try each element of $PATH in turn...
131 char* strsep_buf = writable_path;
132 const char* dir;
133 while ((dir = strsep(&strsep_buf, ":"))) {
134 // It's a shell path: double, leading and trailing colons
135 // mean the current directory.
136 if (*dir == '\0') dir = const_cast<char*>(".");
137
138 size_t dir_len = strlen(dir);
139 size_t name_len = strlen(name);
140
141 char buf[dir_len + 1 + name_len + 1];
142 mempcpy(mempcpy(mempcpy(buf, dir, dir_len), "/", 1), name, name_len + 1);
143
144 execve(buf, argv, envp);
145 switch (errno) {
146 case EISDIR:
147 case ELOOP:
148 case ENAMETOOLONG:
149 case ENOENT:
150 case ENOTDIR:
151 break;
152 case ENOEXEC:
153 return __exec_as_script(buf, argv, envp);
154 case EACCES:
155 saw_EACCES = true;
156 break;
157 default:
158 return -1;
159 }
160 }
161 if (saw_EACCES) errno = EACCES;
162 return -1;
163}