]> git.saurik.com Git - apple/libc.git/blame - gen/FreeBSD/exec.3
Libc-498.1.5.tar.gz
[apple/libc.git] / gen / FreeBSD / exec.3
CommitLineData
5b2abdfb
A
1.\" Copyright (c) 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
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.
19.\"
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
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)exec.3 8.3 (Berkeley) 1/24/94
3d9156a7 33.\" $FreeBSD: src/lib/libc/gen/exec.3,v 1.23 2003/09/10 19:24:32 ru Exp $
5b2abdfb
A
34.\"
35.Dd January 24, 1994
36.Dt EXEC 3
37.Os
38.Sh NAME
39.Nm execl ,
40.Nm execlp ,
41.Nm execle ,
42.Nm exect ,
43.Nm execv ,
3d9156a7
A
44.Nm execvp ,
45.Nm execvP
5b2abdfb
A
46.Nd execute a file
47.Sh LIBRARY
48.Lb libc
49.Sh SYNOPSIS
50.In unistd.h
51.Vt extern char **environ ;
52.Ft int
3d9156a7 53.Fn execl "const char *path" "const char *arg" ... /* "(char *)0" */
5b2abdfb 54.Ft int
3d9156a7 55.Fn execlp "const char *file" "const char *arg" ... /* "(char *)0" */
5b2abdfb 56.Ft int
3d9156a7
A
57.Fo execle
58.Fa "const char *path" "const char *arg" ...
59.Fa /*
60.Bk -words
61.Fa "(char *)0" "char *const envp[]" */
62.Ek
63.Fc
5b2abdfb
A
64.Ft int
65.Fn exect "const char *path" "char *const argv[]" "char *const envp[]"
66.Ft int
67.Fn execv "const char *path" "char *const argv[]"
68.Ft int
69.Fn execvp "const char *file" "char *const argv[]"
3d9156a7
A
70.Ft int
71.Fn execvP "const char *file" "const char *search_path" "char *const argv[]"
5b2abdfb
A
72.Sh DESCRIPTION
73The
74.Nm exec
75family of functions replaces the current process image with a
76new process image.
77The functions described in this manual page are front-ends for the function
78.Xr execve 2 .
79(See the manual page for
80.Xr execve 2
81for detailed information about the replacement of the current process.)
82.Pp
83The initial argument for these functions is the pathname of a file which
84is to be executed.
85.Pp
86The
87.Fa "const char *arg"
88and subsequent ellipses in the
89.Fn execl ,
90.Fn execlp ,
91and
92.Fn execle
93functions can be thought of as
94.Em arg0 ,
95.Em arg1 ,
96\&...,
97.Em argn .
98Together they describe a list of one or more pointers to null-terminated
99strings that represent the argument list available to the executed program.
100The first argument, by convention, should point to the file name associated
101with the file being executed.
102The list of arguments
103.Em must
104be terminated by a
105.Dv NULL
106pointer.
107.Pp
108The
109.Fn exect ,
110.Fn execv ,
3d9156a7 111.Fn execvp ,
5b2abdfb 112and
3d9156a7 113.Fn execvP
5b2abdfb
A
114functions provide an array of pointers to null-terminated strings that
115represent the argument list available to the new program.
116The first argument, by convention, should point to the file name associated
117with the file being executed.
118The array of pointers
119.Sy must
120be terminated by a
121.Dv NULL
122pointer.
123.Pp
124The
125.Fn execle
126and
127.Fn exect
128functions also specify the environment of the executed process by following
129the
130.Dv NULL
9385eb3d
A
131pointer that terminates the list of arguments in the argument list
132or the pointer to the argv array with an additional argument.
133This additional argument is an array of pointers to null-terminated strings
5b2abdfb
A
134and
135.Em must
136be terminated by a
137.Dv NULL
138pointer.
139The other functions take the environment for the new process image from the
140external variable
141.Va environ
142in the current process.
143.Pp
144Some of these functions have special semantics.
145.Pp
146The functions
3d9156a7
A
147.Fn execlp ,
148.Fn execvp ,
5b2abdfb 149and
3d9156a7 150.Fn execvP
5b2abdfb
A
151will duplicate the actions of the shell in searching for an executable file
152if the specified file name does not contain a slash
153.Dq Li /
154character.
3d9156a7
A
155For
156.Fn execlp
157and
158.Fn execvp ,
159search path is the path specified in the environment by
5b2abdfb
A
160.Dq Ev PATH
161variable.
162If this variable isn't specified,
163the default path is set according to the
164.Dv _PATH_DEFPATH
165definition in
3d9156a7 166.In paths.h ,
5b2abdfb
A
167which is set to
168.Dq Ev /usr/bin:/bin .
3d9156a7
A
169For
170.Fn execvP ,
171the search path is specified as an argument to the function.
5b2abdfb
A
172In addition, certain errors are treated specially.
173.Pp
174If an error is ambiguous (for simplicity, we shall consider all
175errors except
176.Er ENOEXEC
177as being ambiguous here, although only the critical error
178.Er EACCES
179is really ambiguous),
180then these functions will act as if they stat the file to determine
181whether the file exists and has suitable execute permissions.
182If it does, they will return immediately with the global variable
183.Va errno
184restored to the value set by
185.Fn execve .
186Otherwise, the search will be continued.
187If the search completes without performing a successful
188.Fn execve
189or terminating due to an error,
190these functions will return with the global variable
191.Va errno
192set to
193.Er EACCES
194or
195.Er ENOENT
196according to whether at least one file with suitable execute permissions
197was found.
198.Pp
199If the header of a file isn't recognized (the attempted
200.Fn execve
201returned
202.Er ENOEXEC ) ,
203these functions will execute the shell with the path of
204the file as its first argument.
205(If this attempt fails, no further searching is done.)
206.Pp
207The function
208.Fn exect
209executes a file with the program tracing facilities enabled (see
210.Xr ptrace 2 ) .
211.Sh RETURN VALUES
212If any of the
213.Fn exec
214functions returns, an error will have occurred.
215The return value is \-1, and the global variable
216.Va errno
217will be set to indicate the error.
218.Sh FILES
219.Bl -tag -width /bin/sh -compact
220.It Pa /bin/sh
221The shell.
222.El
223.Sh ERRORS
9385eb3d
A
224The
225.Fn execl ,
5b2abdfb 226.Fn execle ,
3d9156a7 227.Fn execlp ,
5b2abdfb 228.Fn execvp
3d9156a7
A
229and
230.Fn execvP
9385eb3d 231functions
5b2abdfb
A
232may fail and set
233.Va errno
234for any of the errors specified for the library functions
235.Xr execve 2
236and
237.Xr malloc 3 .
238.Pp
9385eb3d
A
239The
240.Fn exect
5b2abdfb
A
241and
242.Fn execv
9385eb3d 243functions
5b2abdfb
A
244may fail and set
245.Va errno
246for any of the errors specified for the library function
247.Xr execve 2 .
248.Sh SEE ALSO
249.Xr sh 1 ,
250.Xr execve 2 ,
251.Xr fork 2 ,
252.Xr ktrace 2 ,
253.Xr ptrace 2 ,
254.Xr environ 7
255.Sh COMPATIBILITY
256Historically, the default path for the
257.Fn execlp
258and
259.Fn execvp
260functions was
261.Dq Pa :/bin:/usr/bin .
262This was changed to place the current directory last to enhance system
263security.
264.Pp
265The behavior of
266.Fn execlp
267and
268.Fn execvp
269when errors occur while attempting to execute the file is not quite historic
270practice, and has not traditionally been documented and is not specified
271by the
272.Tn POSIX
273standard.
274.Pp
275Traditionally, the functions
276.Fn execlp
277and
278.Fn execvp
279ignored all errors except for the ones described above and
280.Er ETXTBSY ,
281upon which they retried after sleeping for several seconds, and
282.Er ENOMEM
283and
284.Er E2BIG ,
285upon which they returned.
286They now return for
287.Er ETXTBSY ,
288and determine existence and executability more carefully.
289In particular,
290.Er EACCES
291for inaccessible directories in the path prefix is no longer
292confused with
293.Er EACCES
294for files with unsuitable execute permissions.
295In
296.Bx 4.4 ,
297they returned upon all errors except
298.Er EACCES ,
299.Er ENOENT ,
300.Er ENOEXEC
301and
302.Er ETXTBSY .
303This was inferior to the traditional error handling,
304since it breaks the ignoring of errors for path prefixes
305and only improves the handling of the unusual ambiguous error
306.Er EFAULT
307and the unusual error
308.Er EIO .
309The behaviour was changed to match the behaviour of
310.Xr sh 1 .
311.Sh STANDARDS
9385eb3d
A
312The
313.Fn execl ,
5b2abdfb
A
314.Fn execv ,
315.Fn execle ,
316.Fn execlp
317and
318.Fn execvp
9385eb3d 319functions
5b2abdfb
A
320conform to
321.St -p1003.1-88 .
3d9156a7
A
322The
323.Fn execvP
324function first appeared in
325.Fx 5.2 .