coverity appeasement
[minix.git] / lib / libc / gen / exec.3
blobec529ba7d2bdca873a461bb7620b1ab61fe6ca6b
1 .\"     $NetBSD: exec.3,v 1.21 2010/03/22 19:30:53 joerg 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
61 The
62 .Nm exec
63 family of functions replaces the current process image with a
64 new process image.
65 The 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
69 for detailed information about the replacement of the current process.
70 The
71 .Xr script 7
72 manual page provides detailed information about the execution of
73 interpreter scripts.)
74 .Pp
75 The initial argument for these functions is the pathname of a file which
76 is to be executed.
77 .Pp
78 The
79 .Fa "const char *arg"
80 and subsequent ellipses in the
81 .Fn execl ,
82 .Fn execlp ,
83 and
84 .Fn execle
85 functions can be thought of as
86 .Em arg0 ,
87 .Em arg1 ,
88 \&...,
89 .Em argn .
90 Together they describe a list of one or more pointers to null-terminated
91 strings that represent the argument list available to the executed program.
92 The first argument, by convention, should point to the file name associated
93 with the file being executed.
94 The list of arguments
95 .Em must
96 be terminated by a
97 .Dv NULL
98 pointer.
99 .Pp
101 .Fn exect ,
102 .Fn execv ,
104 .Fn execvp
105 functions provide an array of pointers to null-terminated strings that
106 represent the argument list available to the new program.
107 The first argument, by convention, should point to the file name associated
108 with the file being executed.
109 The array of pointers
110 .Sy must
111 be terminated by a
112 .Dv NULL
113 pointer.
116 .Fn execle
118 .Fn exect
119 functions also specify the environment of the executed process by following
121 .Dv NULL
122 pointer that terminates the list of arguments in the parameter list
123 or the pointer to the argv array with an additional parameter.
124 This additional parameter is an array of pointers to null-terminated strings
126 .Em must
127 be terminated by a
128 .Dv NULL
129 pointer.
130 The other functions take the environment for the new process image from the
131 external variable
132 .Va environ
133 in the current process.
135 Some of these functions have special semantics.
137 The functions
138 .Fn execlp
140 .Fn execvp
141 will duplicate the actions of the shell in searching for an executable file
142 if the specified file name does not contain a slash
143 .Dq Li \&/
144 character.
145 The search path is the path specified in the environment by the
146 .Ev PATH
147 variable.
148 If this variable isn't specified,
149 .Va _PATH_DEFPATH
150 from
151 .In paths.h
152 is used instead, its value being:
153 .Pa /usr/bin:/bin:/usr/pkg/bin:/usr/local/bin .
154 In addition, certain errors are treated specially.
156 If permission is denied for a file (the attempted
157 .Xr execve 2
158 returned
159 .Er EACCES ) ,
160 these functions will continue searching the rest of
161 the search path.
162 If no other file is found, however, they will return with the global variable
163 .Va errno
164 set to
165 .Er EACCES .
167 If the header of a file isn't recognized (the attempted
168 .Xr execve 2
169 returned
170 .Er ENOEXEC ) ,
171 these functions will execute the shell with the path of
172 the file as its first argument.
173 (If this attempt fails, no further searching is done.)
175 If the file is currently busy (the attempted
176 .Xr execve 2
177 returned
178 .Er ETXTBUSY ) ,
179 these functions will sleep for several seconds,
180 periodically re-attempting to execute the file.
182 The function
183 .Fn exect
184 executes a file with the program tracing facilities enabled (see
185 .Xr ptrace 2 ) .
186 .Sh RETURN VALUES
187 If any of the
188 .Nm exec
189 functions returns, an error will have occurred.
190 The return value is \-1, and the global variable
191 .Va errno
192 will be set to indicate the error.
193 .Sh FILES
194 .Bl -tag -width /bin/sh -compact
195 .It Pa /bin/sh
196 The shell.
198 .Sh ERRORS
199 .Fn execl ,
200 .Fn execle ,
201 .Fn execlp
203 .Fn execvp
204 may fail and set
205 .Va errno
206 for any of the errors specified for the library functions
207 .Xr execve 2
209 .Xr malloc 3 .
211 .Fn exect
213 .Fn execv
214 may fail and set
215 .Va errno
216 for any of the errors specified for the library function
217 .Xr execve 2 .
218 .Sh SEE ALSO
219 .Xr sh 1 ,
220 .Xr execve 2 ,
221 .Xr fork 2 ,
222 .Xr ptrace 2 ,
223 .Xr environ 7 ,
224 .Xr script 7
225 .Sh COMPATIBILITY
226 Historically, the default path for the
227 .Fn execlp
229 .Fn execvp
230 functions was
231 .Dq Pa :/bin:/usr/bin .
232 This was changed to improve security and behaviour.
234 The behavior of
235 .Fn execlp
237 .Fn execvp
238 when errors occur while attempting to execute the file is historic
239 practice, but has not traditionally been documented and is not specified
240 by the
241 .Tn POSIX
242 standard.
244 Traditionally, the functions
245 .Fn execlp
247 .Fn execvp
248 ignored all errors except for the ones described above and
249 .Er ENOMEM
251 .Er E2BIG ,
252 upon which they returned.
253 They now return if any error other than the ones described above occurs.
254 .Sh STANDARDS
255 .Fn execl ,
256 .Fn execv ,
257 .Fn execle ,
258 .Fn execlp
260 .Fn execvp
261 conform to
262 .St -p1003.1-90 .