]>
git.saurik.com Git - apple/libc.git/blob - gen/exec-fbsd.c
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #if defined(LIBC_SCCS) && !defined(lint)
35 static char sccsid
[] = "@(#)exec.c 8.1 (Berkeley) 6/4/93";
36 #endif /* LIBC_SCCS and not lint */
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD: src/lib/libc/gen/exec.c,v 1.22 2003/07/01 12:30:03 bde Exp $");
40 #include "namespace.h"
41 #include <sys/param.h>
42 #include <sys/types.h>
52 #include "un-namespace.h"
54 #include <crt_externs.h>
55 #define environ (*_NSGetEnviron())
58 execl(const char *name
, const char *arg
, ...)
66 while (va_arg(ap
, char *) != NULL
)
69 argv
= alloca((n
+ 1) * sizeof(*argv
));
76 argv
[0] = (char *)arg
;
77 while ((argv
[n
] = va_arg(ap
, char *)) != NULL
)
80 return (_execve(name
, argv
, environ
));
84 execle(const char *name
, const char *arg
, ...)
92 while (va_arg(ap
, char *) != NULL
)
95 argv
= alloca((n
+ 1) * sizeof(*argv
));
102 argv
[0] = (char *)arg
;
103 while ((argv
[n
] = va_arg(ap
, char *)) != NULL
)
105 envp
= va_arg(ap
, char **);
107 return (_execve(name
, argv
, envp
));
111 execlp(const char *name
, const char *arg
, ...)
119 while (va_arg(ap
, char *) != NULL
)
122 argv
= alloca((n
+ 1) * sizeof(*argv
));
129 argv
[0] = (char *)arg
;
130 while ((argv
[n
] = va_arg(ap
, char *)) != NULL
)
133 return (execvp(name
, argv
));
141 (void)_execve(name
, argv
, environ
);
146 execvp(const char *name
, char * const *argv
)
150 /* Get the path we're searching. */
151 if ((path
= getenv("PATH")) == NULL
)
152 path
= _PATH_DEFPATH
;
154 return (execvP(name
, path
, argv
));
158 execvP(name
, path
, argv
)
166 int eacces
, save_errno
;
167 char *bp
, *cur
, buf
[MAXPATHLEN
];
172 /* If it's an absolute or relative path name, it's easy. */
173 if (index(name
, '/')) {
180 /* If it's an empty path name, fail in the usual POSIX way. */
186 cur
= alloca(strlen(path
) + 1);
192 while ((p
= strsep(&cur
, ":")) != NULL
) {
194 * It's a SHELL path -- double, leading and trailing colons
195 * mean the current directory.
205 * If the path is too long complain. This is a possible
206 * security issue; given a way to make the path too long
207 * the user may execute the wrong program.
209 if (lp
+ ln
+ 2 > sizeof(buf
)) {
210 (void)_write(STDERR_FILENO
, "execvP: ", 8);
211 (void)_write(STDERR_FILENO
, p
, lp
);
212 (void)_write(STDERR_FILENO
, ": path too long\n",
218 bcopy(name
, buf
+ lp
+ 1, ln
);
219 buf
[lp
+ ln
+ 1] = '\0';
221 retry
: (void)_execve(bp
, argv
, environ
);
230 for (cnt
= 0; argv
[cnt
]; ++cnt
)
232 memp
= alloca((cnt
+ 2) * sizeof(char *));
234 /* errno = ENOMEM; XXX override ENOEXEC? */
239 bcopy(argv
+ 1, memp
+ 2, cnt
* sizeof(char *));
240 (void)_execve(_PATH_BSHELL
, memp
, environ
);
248 * We used to retry here, but sh(1) doesn't.
253 * EACCES may be for an inaccessible directory or
254 * a non-executable file. Call stat() to decide
255 * which. This also handles ambiguities for EFAULT
256 * and EIO, and undocumented errors like ESTALE.
257 * We hope that the race for a stat() is unimportant.
260 if (stat(bp
, &sb
) != 0)
262 if (save_errno
== EACCES
) {
274 /* else use existing errno from _execve */