xref: /minix/lib/libc/gen/exec.3 (revision 84d9c625)
1.\"	$NetBSD: exec.3,v 1.22 2012/11/22 16:19:49 abs Exp $
2.\"
3.\" Copyright (c) 1991, 1993
4.\"	The Regents of the University of California.  All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\" 3. Neither the name of the University nor the names of its contributors
15.\"    may be used to endorse or promote products derived from this software
16.\"    without specific prior written permission.
17.\"
18.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE.
29.\"
30.\"     @(#)exec.3	8.3 (Berkeley) 1/24/94
31.\"
32.Dd May 6, 2005
33.Dt EXEC 3
34.Os
35.Sh NAME
36.Nm execl ,
37.Nm execlp ,
38.Nm execle ,
39.Nm exect ,
40.Nm execv ,
41.Nm execvp
42.Nd execute a file
43.Sh LIBRARY
44.Lb libc
45.Sh SYNOPSIS
46.In unistd.h
47.Vt extern char **environ;
48.Ft int
49.Fn execl "const char *path" "const char *arg" ...
50.Ft int
51.Fn execlp "const char *file" "const char *arg" ...
52.Ft int
53.Fn execle "const char *path" "const char *arg" ... "char *const envp[]"
54.Ft int
55.Fn exect "const char *path" "char *const argv[]"  "char *const envp[]"
56.Ft int
57.Fn execv "const char *path" "char *const argv[]"
58.Ft int
59.Fn execvp "const char *file" "char *const argv[]"
60.Sh DESCRIPTION
61The
62.Fn exec
63family of functions replaces the current process image with a
64new process image.
65The functions described in this manual page are front-ends for the function
66.Xr execve 2 .
67(See the manual page for
68.Xr execve 2
69for detailed information about the replacement of the current process.
70The
71.Xr script 7
72manual page provides detailed information about the execution of
73interpreter scripts.)
74.Pp
75The initial argument for these functions is the pathname of a file which
76is to be executed.
77.Pp
78The
79.Fa "const char *arg"
80and subsequent ellipses in the
81.Fn execl ,
82.Fn execlp ,
83and
84.Fn execle
85functions can be thought of as
86.Em arg0 ,
87.Em arg1 ,
88\&...,
89.Em argn .
90Together they describe a list of one or more pointers to null-terminated
91strings that represent the argument list available to the executed program.
92The first argument, by convention, should point to the file name associated
93with the file being executed.
94The list of arguments
95.Em must
96be terminated by a
97.Dv NULL
98pointer.
99.Pp
100The
101.Fn exect ,
102.Fn execv ,
103and
104.Fn execvp
105functions provide an array of pointers to null-terminated strings that
106represent the argument list available to the new program.
107The first argument, by convention, should point to the file name associated
108with the file being executed.
109The array of pointers
110.Sy must
111be terminated by a
112.Dv NULL
113pointer.
114.Pp
115The
116.Fn execle
117and
118.Fn exect
119functions also specify the environment of the executed process by following
120the
121.Dv NULL
122pointer that terminates the list of arguments in the parameter list
123or the pointer to the argv array with an additional parameter.
124This additional parameter is an array of pointers to null-terminated strings
125and
126.Em must
127be terminated by a
128.Dv NULL
129pointer.
130The other functions take the environment for the new process image from the
131external variable
132.Va environ
133in the current process.
134.Pp
135Some of these functions have special semantics.
136.Pp
137The functions
138.Fn execlp
139and
140.Fn execvp
141will duplicate the actions of the shell in searching for an executable file
142if the specified file name does not contain a slash
143.Dq Li \&/
144character.
145The search path is the path specified in the environment by the
146.Ev PATH
147variable.
148If this variable isn't specified,
149.Va _PATH_DEFPATH
150from
151.In paths.h
152is used instead, its value being:
153.Pa /usr/bin:/bin:/usr/pkg/bin:/usr/local/bin .
154In addition, certain errors are treated specially.
155.Pp
156If permission is denied for a file (the attempted
157.Xr execve 2
158returned
159.Er EACCES ) ,
160these functions will continue searching the rest of
161the search path.
162If no other file is found, however, they will return with the global variable
163.Va errno
164set to
165.Er EACCES .
166.Pp
167If the header of a file isn't recognized (the attempted
168.Xr execve 2
169returned
170.Er ENOEXEC ) ,
171these functions will execute the shell with the path of
172the file as its first argument.
173(If this attempt fails, no further searching is done.)
174.Pp
175If the file is currently busy (the attempted
176.Xr execve 2
177returned
178.Er ETXTBUSY ) ,
179these functions will sleep for several seconds,
180periodically re-attempting to execute the file.
181.Pp
182The function
183.Fn exect
184executes a file with the program tracing facilities enabled (see
185.Xr ptrace 2 ) .
186.Sh RETURN VALUES
187If any of the
188.Fn exec
189functions returns, an error will have occurred.
190The return value is \-1, and the global variable
191.Va errno
192will be set to indicate the error.
193.Sh FILES
194.Bl -tag -width /bin/sh -compact
195.It Pa /bin/sh
196The shell.
197.El
198.Sh COMPATIBILITY
199Historically, the default path for the
200.Fn execlp
201and
202.Fn execvp
203functions was
204.Dq Pa :/bin:/usr/bin .
205This was changed to improve security and behaviour.
206.Pp
207The behavior of
208.Fn execlp
209and
210.Fn execvp
211when errors occur while attempting to execute the file is historic
212practice, but has not traditionally been documented and is not specified
213by the
214.Tn POSIX
215standard.
216.Pp
217Traditionally, the functions
218.Fn execlp
219and
220.Fn execvp
221ignored all errors except for the ones described above and
222.Er ENOMEM
223and
224.Er E2BIG ,
225upon which they returned.
226They now return if any error other than the ones described above occurs.
227.Sh ERRORS
228.Fn execl ,
229.Fn execle ,
230.Fn execlp
231and
232.Fn execvp
233may fail and set
234.Va errno
235for any of the errors specified for the library functions
236.Xr execve 2
237and
238.Xr malloc 3 .
239.Pp
240.Fn exect
241and
242.Fn execv
243may fail and set
244.Va errno
245for any of the errors specified for the library function
246.Xr execve 2 .
247.Sh SEE ALSO
248.Xr sh 1 ,
249.Xr execve 2 ,
250.Xr fork 2 ,
251.Xr ptrace 2 ,
252.Xr environ 7 ,
253.Xr script 7
254.Sh STANDARDS
255.Fn execl ,
256.Fn execv ,
257.Fn execle ,
258.Fn execlp
259and
260.Fn execvp
261conform to
262.St -p1003.1-90 .
263