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 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)exec.3 8.3 (Berkeley) 1/24/94
33 .\" $FreeBSD: src/lib/libc/gen/exec.3,v 1.23 2003/09/10 19:24:32 ru Exp $
50 .Vt extern char **environ ;
53 .Fa "const char *path"
54 .Fa "const char *arg0"
55 .Fa ... /* "(char *)0" */
59 .Fa "const char *path"
60 .Fa "const char *arg0"
64 .Fa "(char *)0" "char *const envp[]" */
69 .Fa "const char *file"
70 .Fa "const char *arg0"
71 .Fa ... /* "(char *)0" */
75 .Fa "const char *path"
76 .Fa "char *const argv[]"
80 .Fa "const char *file"
81 .Fa "char *const argv[]"
85 .Fa "const char *file"
86 .Fa "const char *search_path"
87 .Fa "char *const argv[]"
92 family of functions replaces the current process image with a
94 The functions described in this manual page are front-ends for the function
96 (See the manual page for
98 for detailed information about the replacement of the current process.)
100 The initial argument for these functions is the pathname of a file which
104 .Fa "const char *arg0"
105 and subsequent ellipses in the
110 functions can be thought of as
115 Together they describe a list of one or more pointers to null-terminated
116 strings that represent the argument list available to the executed program.
117 The first argument, by convention, should point to the file name associated
118 with the file being executed.
119 The list of arguments
130 functions provide an array of pointers to null-terminated strings that
131 represent the argument list available to the new program.
132 The first argument, by convention, should point to the file name associated
133 with the file being executed.
134 The array of pointers
142 function also specifies the environment of the executed process
145 pointer that terminates the list of arguments in the argument list
146 or the pointer to the argv array with an additional argument.
147 This additional argument is an array of pointers to null-terminated strings
153 The other functions take the environment for the new process image from the
156 in the current process.
158 Some of these functions have special semantics.
165 will duplicate the actions of the shell in searching for an executable file
166 if the specified file name does not contain a slash
173 search path is the path specified in the environment by
176 If this variable isn't specified,
177 the default path is set according to the
182 .Dq Ev /usr/bin:/bin .
185 the search path is specified as an argument to the function.
186 In addition, certain errors are treated specially.
188 If an error is ambiguous (for simplicity, we shall consider all
191 as being ambiguous here, although only the critical error
193 is really ambiguous),
194 then these functions will act as if they stat the file to determine
195 whether the file exists and has suitable execute permissions.
196 If it does, they will return immediately with the global variable
198 restored to the value set by
200 Otherwise, the search will be continued.
201 If the search completes without performing a successful
203 or terminating due to an error,
204 these functions will return with the global variable
210 according to whether at least one file with suitable execute permissions
213 If the header of a file isn't recognized (the attempted
217 these functions will execute the shell with the path of
218 the file as its first argument.
219 (If this attempt fails, no further searching is done.)
223 functions returns, an error will have occurred.
224 The return value is \-1, and the global variable
226 will be set to indicate the error.
228 .Bl -tag -width /bin/sh -compact
243 for any of the errors specified for the library functions
250 function may fail and set
252 for any of the errors specified for the library function
261 Historically, the default path for the
266 .Dq Pa :/bin:/usr/bin .
267 This was changed to place the current directory last to enhance system
274 when errors occur while attempting to execute the file is not quite historic
275 practice, and has not traditionally been documented and is not specified
284 functions ignored all errors except for the ones described above and
286 upon which they retried after sleeping for several seconds, and
290 upon which they returned.
293 and determine existence and executability more carefully.
296 for inaccessible directories in the path prefix is no longer
299 for files with unsuitable execute permissions.
302 they returned upon all errors except
308 This was inferior to the traditional error handling,
309 since it breaks the ignoring of errors for path prefixes
310 and only improves the handling of the unusual ambiguous error
312 and the unusual error
314 The behaviour was changed to match the behaviour of
329 function first appeared in