]>
git.saurik.com Git - apple/libc.git/blob - gen/FreeBSD/exec.c
811b425477c675652f65010a483d208b5cf636c0
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 4. 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.
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
30 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid
[] = "@(#)exec.c 8.1 (Berkeley) 6/4/93";
32 #endif /* LIBC_SCCS and not lint */
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD: src/lib/libc/gen/exec.c,v 1.27 2009/12/05 18:55:16 ed Exp $");
36 #include "namespace.h"
37 #include <sys/param.h>
38 #include <sys/types.h>
48 #include "un-namespace.h"
49 #include "libc_private.h"
51 extern char **environ
;
54 execl(const char *name
, const char *arg
, ...)
62 while (va_arg(ap
, char *) != NULL
)
65 argv
= alloca((n
+ 1) * sizeof(*argv
));
73 while ((argv
[n
] = va_arg(ap
, char *)) != NULL
)
76 return (_execve(name
, __DECONST(char **, argv
), environ
));
80 execle(const char *name
, const char *arg
, ...)
89 while (va_arg(ap
, char *) != NULL
)
92 argv
= alloca((n
+ 1) * sizeof(*argv
));
100 while ((argv
[n
] = va_arg(ap
, char *)) != NULL
)
102 envp
= va_arg(ap
, char **);
104 return (_execve(name
, __DECONST(char **, argv
), envp
));
108 execlp(const char *name
, const char *arg
, ...)
116 while (va_arg(ap
, char *) != NULL
)
119 argv
= alloca((n
+ 1) * sizeof(*argv
));
127 while ((argv
[n
] = va_arg(ap
, char *)) != NULL
)
130 return (execvp(name
, __DECONST(char **, argv
)));
138 (void)_execve(name
, argv
, environ
);
143 execvp(const char *name
, char * const *argv
)
145 return (_execvpe(name
, argv
, environ
));
149 execvPe(const char *name
, const char *path
, char * const *argv
,
154 int eacces
, save_errno
;
155 char *cur
, buf
[MAXPATHLEN
];
161 /* If it's an absolute or relative path name, it's easy. */
162 if (index(name
, '/')) {
169 /* If it's an empty path name, fail in the usual POSIX way. */
175 cur
= alloca(strlen(path
) + 1);
181 while ((p
= strsep(&cur
, ":")) != NULL
) {
183 * It's a SHELL path -- double, leading and trailing colons
184 * mean the current directory.
194 * If the path is too long complain. This is a possible
195 * security issue; given a way to make the path too long
196 * the user may execute the wrong program.
198 if (lp
+ ln
+ 2 > sizeof(buf
)) {
199 (void)_write(STDERR_FILENO
, "execvP: ", 8);
200 (void)_write(STDERR_FILENO
, p
, lp
);
201 (void)_write(STDERR_FILENO
, ": path too long\n",
207 bcopy(name
, buf
+ lp
+ 1, ln
);
208 buf
[lp
+ ln
+ 1] = '\0';
210 retry
: (void)_execve(bp
, argv
, envp
);
219 for (cnt
= 0; argv
[cnt
]; ++cnt
)
221 memp
= alloca((cnt
+ 2) * sizeof(char *));
223 /* errno = ENOMEM; XXX override ENOEXEC? */
228 bcopy(argv
+ 1, memp
+ 2, cnt
* sizeof(char *));
229 (void)_execve(_PATH_BSHELL
,
230 __DECONST(char **, memp
), envp
);
238 * We used to retry here, but sh(1) doesn't.
243 * EACCES may be for an inaccessible directory or
244 * a non-executable file. Call stat() to decide
245 * which. This also handles ambiguities for EFAULT
246 * and EIO, and undocumented errors like ESTALE.
247 * We hope that the race for a stat() is unimportant.
250 if (stat(bp
, &sb
) != 0)
252 if (save_errno
== EACCES
) {
269 execvP(const char *name
, const char *path
, char * const argv
[])
271 return execvPe(name
, path
, argv
, environ
);
275 _execvpe(const char *name
, char * const argv
[], char * const envp
[])
279 /* Get the path we're searching. */
280 if ((path
= getenv("PATH")) == NULL
)
281 path
= _PATH_DEFPATH
;
283 return (execvPe(name
, path
, argv
, envp
));