]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/execve.2
zfs: merge openzfs/zfs@a03ebd9be
[FreeBSD/FreeBSD.git] / lib / libc / sys / execve.2
1 .\" Copyright (c) 1980, 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. 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.
15 .\"
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
26 .\" SUCH DAMAGE.
27 .\"
28 .Dd January 26, 2022
29 .Dt EXECVE 2
30 .Os
31 .Sh NAME
32 .Nm execve ,
33 .Nm fexecve
34 .Nd execute a file
35 .Sh LIBRARY
36 .Lb libc
37 .Sh SYNOPSIS
38 .In unistd.h
39 .Ft int
40 .Fn execve "const char *path" "char *const argv[]" "char *const envp[]"
41 .Ft int
42 .Fn fexecve "int fd" "char *const argv[]" "char *const envp[]"
43 .Sh DESCRIPTION
44 The
45 .Fn execve
46 system call
47 transforms the calling process into a new process.
48 The new process is constructed from an ordinary file,
49 whose name is pointed to by
50 .Fa path ,
51 called the
52 .Em new process file .
53 The
54 .Fn fexecve
55 system call is equivalent to
56 .Fn execve
57 except that the file to be executed is determined by the file
58 descriptor
59 .Fa fd
60 instead of a
61 .Fa path .
62 This file is either an executable object file,
63 or a file of data for an interpreter.
64 An executable object file consists of an identifying header,
65 followed by pages of data representing the initial program (text)
66 and initialized data pages.
67 Additional pages may be specified
68 by the header to be initialized with zero data; see
69 .Xr elf 5
70 and
71 .Xr a.out 5 .
72 .Pp
73 An interpreter file begins with a line of the form:
74 .Pp
75 .Bd -ragged -offset indent -compact
76 .Sy \&#!
77 .Em interpreter
78 .Bq Em arg
79 .Ed
80 .Pp
81 When an interpreter file is
82 .Sy execve Ap d ,
83 the system actually
84 .Sy execve Ap s
85 the specified
86 .Em interpreter .
87 If the optional
88 .Em arg
89 is specified, it becomes the first argument to the
90 .Em interpreter ,
91 and the name of the originally
92 .Sy execve Ap d
93 file becomes the second argument;
94 otherwise, the name of the originally
95 .Sy execve Ap d
96 file becomes the first argument.
97 The original arguments are shifted over to
98 become the subsequent arguments.
99 The zeroth argument is set to the specified
100 .Em interpreter .
101 .Pp
102 The argument
103 .Fa argv
104 is a pointer to a null-terminated array of
105 character pointers to null-terminated character strings.
106 These strings construct the argument list to be made available to the new
107 process.
108 At least one argument must be present in
109 the array; by custom, the first element should be
110 the name of the executed program (for example, the last component of
111 .Fa path ) .
112 .Pp
113 The argument
114 .Fa envp
115 is also a pointer to a null-terminated array of
116 character pointers to null-terminated strings.
117 A pointer to this array is normally stored in the global variable
118 .Va environ .
119 These strings pass information to the
120 new process that is not directly an argument to the command (see
121 .Xr environ 7 ) .
122 .Pp
123 File descriptors open in the calling process image remain open in
124 the new process image, except for those for which the close-on-exec
125 flag is set (see
126 .Xr close 2
127 and
128 .Xr fcntl 2 ) .
129 Descriptors that remain open are unaffected by
130 .Fn execve .
131 If any of the standard descriptors (0, 1, and/or 2) are closed at the
132 time
133 .Fn execve
134 is called, and the process will gain privilege as a result of set-id
135 semantics, those descriptors will be re-opened automatically.
136 No programs, whether privileged or not, should assume that these descriptors
137 will remain closed across a call to
138 .Fn execve .
139 .Pp
140 Signals set to be ignored in the calling process are set to be ignored in
141 the
142 new process.
143 Signals which are set to be caught in the calling process image
144 are set to default action in the new process image.
145 Blocked signals remain blocked regardless of changes to the signal action.
146 The signal stack is reset to be undefined (see
147 .Xr sigaction 2
148 for more information).
149 .Pp
150 If the set-user-ID mode bit of the new process image file is set
151 (see
152 .Xr chmod 2 ) ,
153 the effective user ID of the new process image is set to the owner ID
154 of the new process image file.
155 If the set-group-ID mode bit of the new process image file is set,
156 the effective group ID of the new process image is set to the group ID
157 of the new process image file.
158 (The effective group ID is the first element of the group list.)
159 The real user ID, real group ID and
160 other group IDs of the new process image remain the same as the calling
161 process image.
162 After any set-user-ID and set-group-ID processing,
163 the effective user ID is recorded as the saved set-user-ID,
164 and the effective group ID is recorded as the saved set-group-ID.
165 These values may be used in changing the effective IDs later (see
166 .Xr setuid 2 ) .
167 .Pp
168 The set-ID bits are not honored if the respective file system has the
169 .Cm nosuid
170 option enabled or if the new process file is an interpreter file.
171 Syscall
172 tracing is disabled if effective IDs are changed.
173 .Pp
174 The new process also inherits the following attributes from
175 the calling process:
176 .Pp
177 .Bl -column parent_process_ID -offset indent -compact
178 .It process ID Ta see Xr getpid 2
179 .It parent process ID Ta see Xr getppid 2
180 .It process group ID Ta see Xr getpgrp 2
181 .It access groups Ta see Xr getgroups 2
182 .It working directory Ta see Xr chdir 2
183 .It root directory Ta see Xr chroot 2
184 .It control terminal Ta see Xr termios 4
185 .It resource usages Ta see Xr getrusage 2
186 .It interval timers Ta see Xr getitimer 2
187 .It resource limits Ta see Xr getrlimit 2
188 .It file mode mask Ta see Xr umask 2
189 .It signal mask Ta see Xr sigaction 2 ,
190 .Xr sigprocmask 2
191 .El
192 .Pp
193 When a program is executed as a result of an
194 .Fn execve
195 system call, it is entered as follows:
196 .Bd -literal -offset indent
197 main(argc, argv, envp)
198 int argc;
199 char **argv, **envp;
200 .Ed
201 .Pp
202 where
203 .Fa argc
204 is the number of elements in
205 .Fa argv
206 (the ``arg count'')
207 and
208 .Fa argv
209 points to the array of character pointers
210 to the arguments themselves.
211 .Pp
212 The
213 .Fn fexecve
214 ignores the file offset of
215 .Fa fd .
216 Since execute permission is checked by
217 .Fn fexecve ,
218 the file descriptor
219 .Fa fd
220 need not have been opened with the
221 .Dv O_EXEC
222 flag.
223 However, if the file to be executed denies read permission for the process
224 preparing to do the exec, the only way to provide the
225 .Fa fd
226 to
227 .Fn fexecve
228 is to use the
229 .Dv O_EXEC
230 flag when opening
231 .Fa fd .
232 Note that the file to be executed can not be open for writing.
233 .Sh RETURN VALUES
234 As the
235 .Fn execve
236 system call overlays the current process image
237 with a new process image the successful call
238 has no process to return to.
239 If
240 .Fn execve
241 does return to the calling process an error has occurred; the
242 return value will be -1 and the global variable
243 .Va errno
244 is set to indicate the error.
245 .Sh ERRORS
246 The
247 .Fn execve
248 system call
249 will fail and return to the calling process if:
250 .Bl -tag -width Er
251 .It Bq Er ENOTDIR
252 A component of the path prefix is not a directory.
253 .It Bq Er ENAMETOOLONG
254 A component of a pathname exceeded 255 characters,
255 or an entire path name exceeded 1023 characters.
256 .It Bq Er ENOEXEC
257 When invoking an interpreted script, the length of the first line,
258 inclusive of the
259 .Sy \&#!
260 prefix and terminating newline, exceeds
261 .Dv MAXSHELLCMDLEN
262 characters.
263 .It Bq Er ENOENT
264 The new process file does not exist.
265 .It Bq Er ELOOP
266 Too many symbolic links were encountered in translating the pathname.
267 .It Bq Er EACCES
268 Search permission is denied for a component of the path prefix.
269 .It Bq Er EACCES
270 The new process file is not an ordinary file.
271 .It Bq Er EACCES
272 The new process file mode denies execute permission.
273 .It Bq Er EINVAL
274 .Fa argv
275 did not contain at least one element.
276 .It Bq Er ENOEXEC
277 The new process file has the appropriate access
278 permission, but has an invalid magic number in its header.
279 .It Bq Er ETXTBSY
280 The new process file is a pure procedure (shared text)
281 file that is currently open for writing by some process.
282 .It Bq Er ENOMEM
283 The new process requires more virtual memory than
284 is allowed by the imposed maximum
285 .Pq Xr getrlimit 2 .
286 .It Bq Er E2BIG
287 The number of bytes in the new process' argument list
288 is larger than the system-imposed limit.
289 This limit is specified by the
290 .Xr sysctl 3
291 MIB variable
292 .Dv KERN_ARGMAX .
293 .It Bq Er EFAULT
294 The new process file is not as long as indicated by
295 the size values in its header.
296 .It Bq Er EFAULT
297 The
298 .Fa path ,
299 .Fa argv ,
300 or
301 .Fa envp
302 arguments
303 point
304 to an illegal address.
305 .It Bq Er EIO
306 An I/O error occurred while reading from the file system.
307 .It Bq Er EINTEGRITY
308 Corrupted data was detected while reading from the file system.
309 .El
310 .Pp
311 In addition, the
312 .Fn fexecve
313 will fail and return to the calling process if:
314 .Bl -tag -width Er
315 .It Bq Er EBADF
316 The
317 .Fa fd
318 argument is not a valid file descriptor open for executing.
319 .El
320 .Sh SEE ALSO
321 .Xr ktrace 1 ,
322 .Xr _exit 2 ,
323 .Xr fork 2 ,
324 .Xr open 2 ,
325 .Xr execl 3 ,
326 .Xr exit 3 ,
327 .Xr sysctl 3 ,
328 .Xr a.out 5 ,
329 .Xr elf 5 ,
330 .Xr fdescfs 5 ,
331 .Xr environ 7 ,
332 .Xr mount 8
333 .Sh STANDARDS
334 The
335 .Fn execve
336 system call conforms to
337 .St -p1003.1-2001 ,
338 with the exception of reopening descriptors 0, 1, and/or 2 in certain
339 circumstances.
340 A future update of the Standard is expected to require this behavior,
341 and it may become the default for non-privileged processes as well.
342 .\" NB: update this caveat when TC1 is blessed.
343 The support for executing interpreted programs is an extension.
344 The
345 .Fn fexecve
346 system call conforms to The Open Group Extended API Set 2 specification.
347 .Sh HISTORY
348 The
349 .Fn execve
350 system call appeared in
351 .At v7 .
352 The
353 .Fn fexecve
354 system call appeared in
355 .Fx 8.0 .
356 .Sh CAVEATS
357 If a program is
358 .Em setuid
359 to a non-super-user, but is executed when
360 the real
361 .Em uid
362 is ``root'', then the program has some of the powers
363 of a super-user as well.
364 .Pp
365 When executing an interpreted program through
366 .Fn fexecve ,
367 kernel supplies
368 .Pa /dev/fd/n
369 as a second argument to the interpreter,
370 where
371 .Ar n
372 is the file descriptor passed in the
373 .Fa fd
374 argument to
375 .Fn fexecve .
376 For this construction to work correctly, the
377 .Xr fdescfs 5
378 filesystem shall be mounted on
379 .Pa /dev/fd .