blob: 40612e751c73f35f199853970fc6aaec3794ed93 [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
Elliott Hughes4d215aa2017-10-18 15:54:56 -070042#include "private/FdPath.h"
Evgenii Stepanov3031a7e2022-05-12 15:50:47 -070043#include "private/__bionic_get_shell_path.h"
44#include "pthread_internal.h"
Elliott Hughes4d215aa2017-10-18 15:54:56 -070045
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070046extern "C" char** environ;
Evgenii Stepanov3031a7e2022-05-12 15:50:47 -070047extern "C" int __execve(const char* pathname, char* const* argv, char* const* envp);
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070048
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070049enum { ExecL, ExecLE, ExecLP };
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070050
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070051template <int variant>
52static int __execl(const char* name, const char* argv0, va_list ap) {
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070053 // Count the arguments.
54 va_list count_ap;
55 va_copy(count_ap, ap);
56 size_t n = 1;
57 while (va_arg(count_ap, char*) != nullptr) {
58 ++n;
59 }
60 va_end(count_ap);
61
62 // Construct the new argv.
63 char* argv[n + 1];
64 argv[0] = const_cast<char*>(argv0);
65 n = 1;
66 while ((argv[n] = va_arg(ap, char*)) != nullptr) {
67 ++n;
68 }
69
70 // Collect the argp too.
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070071 char** argp = (variant == ExecLE) ? va_arg(ap, char**) : environ;
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070072
73 va_end(ap);
74
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070075 return (variant == ExecLP) ? execvp(name, argv) : execve(name, argv, argp);
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070076}
77
78int execl(const char* name, const char* arg, ...) {
79 va_list ap;
80 va_start(ap, arg);
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070081 int result = __execl<ExecL>(name, arg, ap);
Mikhail Lappo13ec1cf2017-03-25 19:02:55 +010082 va_end(ap);
83 return result;
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070084}
85
86int execle(const char* name, const char* arg, ...) {
87 va_list ap;
88 va_start(ap, arg);
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070089 int result = __execl<ExecLE>(name, arg, ap);
Mikhail Lappo13ec1cf2017-03-25 19:02:55 +010090 va_end(ap);
91 return result;
Elliott Hughes1b40aaf2016-08-18 10:11:36 -070092}
93
94int execlp(const char* name, const char* arg, ...) {
95 va_list ap;
96 va_start(ap, arg);
Elliott Hughesa1b1bfd2020-06-04 08:04:06 -070097 int result = __execl<ExecLP>(name, arg, ap);
Mikhail Lappo13ec1cf2017-03-25 19:02:55 +010098 va_end(ap);
99 return result;
Elliott Hughes1b40aaf2016-08-18 10:11:36 -0700100}
101
102int execv(const char* name, char* const* argv) {
103 return execve(name, argv, environ);
104}
105
106int execvp(const char* name, char* const* argv) {
107 return execvpe(name, argv, environ);
108}
109
Elliott Hughes3c115902016-08-24 19:27:04 -0700110static int __exec_as_script(const char* buf, char* const* argv, char* const* envp) {
111 size_t arg_count = 1;
Elliott Hughes1b40aaf2016-08-18 10:11:36 -0700112 while (argv[arg_count] != nullptr) ++arg_count;
113
Elliott Hughes3c115902016-08-24 19:27:04 -0700114 const char* script_argv[arg_count + 2];
115 script_argv[0] = "sh";
Elliott Hughes1b40aaf2016-08-18 10:11:36 -0700116 script_argv[1] = buf;
Elliott Hughes3c115902016-08-24 19:27:04 -0700117 memcpy(script_argv + 2, argv + 1, arg_count * sizeof(char*));
Elliott Hughes886370c2019-03-21 21:11:41 -0700118 return execve(__bionic_get_shell_path(), const_cast<char**>(script_argv), envp);
Elliott Hughes1b40aaf2016-08-18 10:11:36 -0700119}
120
121int execvpe(const char* name, char* const* argv, char* const* envp) {
122 // Do not allow null name.
123 if (name == nullptr || *name == '\0') {
124 errno = ENOENT;
125 return -1;
126 }
127
128 // If it's an absolute or relative path name, it's easy.
Elliott Hughes3c115902016-08-24 19:27:04 -0700129 if (strchr(name, '/') && execve(name, argv, envp) == -1) {
Elliott Hughes63615062016-08-25 17:40:27 -0700130 if (errno == ENOEXEC) return __exec_as_script(name, argv, envp);
131 return -1;
Elliott Hughes3c115902016-08-24 19:27:04 -0700132 }
Elliott Hughes1b40aaf2016-08-18 10:11:36 -0700133
134 // Get the path we're searching.
135 const char* path = getenv("PATH");
136 if (path == nullptr) path = _PATH_DEFPATH;
137
138 // Make a writable copy.
139 size_t len = strlen(path) + 1;
140 char writable_path[len];
141 memcpy(writable_path, path, len);
142
143 bool saw_EACCES = false;
144
145 // Try each element of $PATH in turn...
146 char* strsep_buf = writable_path;
147 const char* dir;
148 while ((dir = strsep(&strsep_buf, ":"))) {
149 // It's a shell path: double, leading and trailing colons
150 // mean the current directory.
151 if (*dir == '\0') dir = const_cast<char*>(".");
152
153 size_t dir_len = strlen(dir);
154 size_t name_len = strlen(name);
155
156 char buf[dir_len + 1 + name_len + 1];
157 mempcpy(mempcpy(mempcpy(buf, dir, dir_len), "/", 1), name, name_len + 1);
158
159 execve(buf, argv, envp);
160 switch (errno) {
161 case EISDIR:
162 case ELOOP:
163 case ENAMETOOLONG:
164 case ENOENT:
165 case ENOTDIR:
166 break;
167 case ENOEXEC:
168 return __exec_as_script(buf, argv, envp);
169 case EACCES:
170 saw_EACCES = true;
171 break;
172 default:
173 return -1;
174 }
175 }
176 if (saw_EACCES) errno = EACCES;
177 return -1;
178}
Elliott Hughes4d215aa2017-10-18 15:54:56 -0700179
180int fexecve(int fd, char* const* argv, char* const* envp) {
181 // execveat with AT_EMPTY_PATH (>= 3.19) seems to offer no advantages.
182 execve(FdPath(fd).c_str(), argv, envp);
183 if (errno == ENOENT) errno = EBADF;
184 return -1;
185}
Evgenii Stepanov3031a7e2022-05-12 15:50:47 -0700186
187__attribute__((no_sanitize("memtag"))) int execve(const char* pathname, char* const* argv,
188 char* const* envp) {
189 __get_thread()->vfork_child_stack_bottom = __builtin_frame_address(0);
190 return __execve(pathname, argv, envp);
191}