1 .\" Copyright (c) 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)exec.3 8.3 (Berkeley) 1/24/94
29 .\" $FreeBSD: src/lib/libc/gen/exec.3,v 1.28 2008/06/23 05:22:06 ed Exp $
46 .Vt extern char **environ ;
49 .Fa "const char *path"
50 .Fa "const char *arg0"
51 .Fa ... /* "(char *)0" */
55 .Fa "const char *path"
56 .Fa "const char *arg0"
60 .Fa "(char *)0" "char *const envp[]" */
65 .Fa "const char *file"
66 .Fa "const char *arg0"
67 .Fa ... /* "(char *)0" */
71 .Fa "const char *path"
72 .Fa "char *const argv[]"
76 .Fa "const char *file"
77 .Fa "char *const argv[]"
81 .Fa "const char *file"
82 .Fa "const char *search_path"
83 .Fa "char *const argv[]"
88 family of functions replaces the current process image with a
90 The functions described in this manual page are front-ends for the function
92 (See the manual page for
94 for detailed information about the replacement of the current process.)
96 The initial argument for these functions is the pathname of a file which
100 .Fa "const char *arg0"
101 and subsequent ellipses in the
106 functions can be thought of as
111 Together they describe a list of one or more pointers to null-terminated
112 strings that represent the argument list available to the executed program.
113 The first argument, by convention, should point to the file name associated
114 with the file being executed.
115 The list of arguments
126 functions provide an array of pointers to null-terminated strings that
127 represent the argument list available to the new program.
128 The first argument, by convention, should point to the file name associated
129 with the file being executed.
130 The array of pointers
138 function also specifies the environment of the executed process
141 pointer that terminates the list of arguments in the argument list
142 or the pointer to the argv array with an additional argument.
143 This additional argument is an array of pointers to null-terminated strings
149 The other functions take the environment for the new process image from the
152 in the current process.
154 Some of these functions have special semantics.
161 will duplicate the actions of the shell in searching for an executable file
162 if the specified file name does not contain a slash
169 search path is the path specified in the environment by
172 If this variable is not specified,
173 the default path is set according to the
178 .Dq Ev /usr/bin:/bin .
181 the search path is specified as an argument to the function.
182 In addition, certain errors are treated specially.
184 If an error is ambiguous (for simplicity, we shall consider all
187 as being ambiguous here, although only the critical error
189 is really ambiguous),
190 then these functions will act as if they stat the file to determine
191 whether the file exists and has suitable execute permissions.
192 If it does, they will return immediately with the global variable
194 restored to the value set by
196 Otherwise, the search will be continued.
197 If the search completes without performing a successful
199 or terminating due to an error,
200 these functions will return with the global variable
206 according to whether at least one file with suitable execute permissions
209 If the header of a file is not recognized (the attempted
213 these functions will execute the shell with the path of
214 the file as its first argument.
215 (If this attempt fails, no further searching is done.)
219 functions returns, an error will have occurred.
220 The return value is \-1, and the global variable
222 will be set to indicate the error.
224 .Bl -tag -width /bin/sh -compact
229 Historically, the default path for the
234 .Dq Pa :/bin:/usr/bin .
235 This was changed to place the current directory last to enhance system
242 when errors occur while attempting to execute the file is not quite historic
243 practice, and has not traditionally been documented and is not specified
248 Traditionally, the functions
252 ignored all errors except for the ones described above and
254 upon which they retried after sleeping for several seconds, and
258 upon which they returned.
261 and determine existence and executability more carefully.
264 for inaccessible directories in the path prefix is no longer
267 for files with unsuitable execute permissions.
270 they returned upon all errors except
276 This was inferior to the traditional error handling,
277 since it breaks the ignoring of errors for path prefixes
278 and only improves the handling of the unusual ambiguous error
280 and the unusual error
282 The behaviour was changed to match the behaviour of
295 for any of the errors specified for the library functions
302 function may fail and set
304 for any of the errors specified for the library function
325 function first appeared in