xref: /freebsd-14.2/lib/libc/sys/execve.2 (revision abbcaa0a)
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. 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.\"     @(#)execve.2	8.5 (Berkeley) 6/1/94
33.\"     $Id$
34.\"
35.Dd June 1, 1994
36.Dt EXECVE 2
37.Os BSD 4
38.Sh NAME
39.Nm execve
40.Nd execute a file
41.Sh SYNOPSIS
42.Fd #include <unistd.h>
43.Ft int
44.Fn execve "const char *path" "char *const argv[]" "char *const envp[]"
45.Sh DESCRIPTION
46.Fn Execve
47transforms the calling process into a new process.
48The new process is constructed from an ordinary file,
49whose name is pointed to by
50.Fa path ,
51called the
52.Em new process file .
53This file is either an executable object file,
54or a file of data for an interpreter.
55An executable object file consists of an identifying header,
56followed by pages of data representing the initial program (text)
57and initialized data pages.  Additional pages may be specified
58by the header to be initialized with zero data;  see
59.Xr a.out 5 .
60.Pp
61An interpreter file begins with a line of the form:
62.Pp
63.Bd -filled -offset indent -compact
64.Sy \&#!
65.Em interpreter
66.Bq Em arg
67.Ed
68.Pp
69When an interpreter file is
70.Sy execve Ap d ,
71the system actually
72.Sy execve Ap s
73the specified
74.Em interpreter .
75If the optional
76.Em arg
77is specified, it becomes the first argument to the
78.Em interpreter ,
79and the name of the originally
80.Sy execve Ap d
81file becomes the second argument;
82otherwise, the name of the originally
83.Sy execve Ap d
84file becomes the first argument.  The original arguments are shifted over to
85become the subsequent arguments.  The zeroth argument, normally the name of the
86.Sy execve Ap d
87file, is left unchanged.
88.Pp
89The argument
90.Fa argv
91is a pointer to a null-terminated array of
92character pointers to null-terminated character strings.
93These strings construct the argument list to be made available to the new
94process.  At least one argument must be present in
95the array; by custom, the first element should be
96the name of the executed program (for example, the last component of
97.Fa path ) .
98.Pp
99The argument
100.Fa envp
101is also a pointer to a null-terminated array of
102character pointers to null-terminated strings.
103A pointer to this array is normally stored in the global variable
104.Va environ.
105These strings pass information to the
106new process that is not directly an argument to the command (see
107.Xr environ 7 ) .
108.Pp
109File descriptors open in the calling process image remain open in
110the new process image, except for those for which the close-on-exec
111flag is set (see
112.Xr close 2
113and
114.Xr fcntl 2 ) .
115Descriptors that remain open are unaffected by
116.Fn execve .
117.Pp
118Signals set to be ignored in the calling process are set to be ignored in
119the
120new process. Signals which are set to be caught in the calling process image
121are set to default action in the new process image.
122Blocked signals remain blocked regardless of changes to the signal action.
123The signal stack is reset to be undefined (see
124.Xr sigaction 2
125for more information).
126.Pp
127If the set-user-ID mode bit of the new process image file is set
128(see
129.Xr chmod 2 ) ,
130the effective user ID of the new process image is set to the owner ID
131of the new process image file.
132If the set-group-ID mode bit of the new process image file is set,
133the effective group ID of the new process image is set to the group ID
134of the new process image file.
135(The effective group ID is the first element of the group list.)
136The real user ID, real group ID and
137other group IDs of the new process image remain the same as the calling
138process image.
139After any set-user-ID and set-group-ID processing,
140the effective user ID is recorded as the saved set-user-ID,
141and the effective group ID is recorded as the saved set-group-ID.
142These values may be used in changing the effective IDs later (see
143.Xr setuid 2 ) .
144.ne 1i
145.Pp
146The new process also inherits the following attributes from
147the calling process:
148.Pp
149.Bl -column parent_process_ID -offset indent -compact
150.It process ID Ta see Xr getpid 2
151.It parent process ID Ta see Xr getppid 2
152.It process group ID Ta see Xr getpgrp 2
153.It access groups Ta see Xr getgroups 2
154.It working directory Ta see Xr chdir 2
155.It root directory Ta see Xr chroot 2
156.It control terminal Ta see Xr termios 4
157.It resource usages Ta see Xr getrusage 2
158.It interval timers Ta see Xr getitimer 2
159.It resource limits Ta see Xr getrlimit 2
160.It file mode mask Ta see Xr umask 2
161.It signal mask Ta see Xr sigvec 2 ,
162.Xr sigsetmask 2
163.El
164.Pp
165When a program is executed as a result of an
166.Fn execve
167call, it is entered as follows:
168.Bd -literal -offset indent
169main(argc, argv, envp)
170int argc;
171char **argv, **envp;
172.Ed
173.Pp
174where
175.Fa argc
176is the number of elements in
177.Fa argv
178(the ``arg count'')
179and
180.Fa argv
181points to the array of character pointers
182to the arguments themselves.
183.Sh IMPLEMENTATION NOTES
184.Pp
185In the non-threaded library
186.Fn execve
187is implemented as the
188.Va execve
189syscall.
190.Pp
191In the threaded library, the
192.Va execve
193syscall is assembled to
194.Fn _thread_sys_execve
195and
196.Fn execve
197is implemented as a function which performs user-thread
198library re-initialization and then calls
199.Fn _thread_sys_execve .
200.Sh RETURN VALUES
201As the
202.Fn execve
203function overlays the current process image
204with a new process image the successful call
205has no process to return to.
206If
207.Fn execve
208does return to the calling process an error has occurred; the
209return value will be -1 and the global variable
210.Va errno
211is set to indicate the error.
212.Sh ERRORS
213.Fn Execve
214will fail and return to the calling process if:
215.Bl -tag -width [ENAMETOOLONG]
216.It Bq Er ENOTDIR
217A component of the path prefix is not a directory.
218.It Bq Er ENAMETOOLONG
219A component of a pathname exceeded 255 characters,
220or an entire path name exceeded 1023 characters.
221.It Bq Er ENOENT
222The new process file does not exist.
223.It Bq Er ELOOP
224Too many symbolic links were encountered in translating the pathname.
225.It Bq Er EACCES
226Search permission is denied for a component of the path prefix.
227.It Bq Er EACCES
228The new process file is not an ordinary file.
229.It Bq Er EACCES
230The new process file mode denies execute permission.
231.It Bq Er ENOEXEC
232The new process file has the appropriate access
233permission, but has an invalid magic number in its header.
234.It Bq Er ETXTBSY
235The new process file is a pure procedure (shared text)
236file that is currently open for writing or reading by some process.
237.ne 1i
238.It Bq Er ENOMEM
239The new process requires more virtual memory than
240is allowed by the imposed maximum
241.Pq Xr getrlimit 2 .
242.It Bq Er E2BIG
243The number of bytes in the new process' argument list
244is larger than the system-imposed limit.
245This limit is specified by the
246.Xr sysctl 3
247MIB variable
248.Dv KERN_ARGMAX .
249.It Bq Er EFAULT
250The new process file is not as long as indicated by
251the size values in its header.
252.It Bq Er EFAULT
253.Fa Path ,
254.Fa argv ,
255or
256.Fa envp
257point
258to an illegal address.
259.It Bq Er EIO
260An I/O error occurred while reading from the file system.
261.El
262.Sh CAVEAT
263If a program is
264.Em setuid
265to a non-super-user, but is executed when
266the real
267.Em uid
268is ``root'', then the program has some of the powers
269of a super-user as well.
270.Sh SEE ALSO
271.Xr _exit 2 ,
272.Xr fork 2 ,
273.Xr execl 3 ,
274.Xr exit 3 ,
275.Xr sysctl 3 ,
276.Xr environ 7
277.Sh HISTORY
278The
279.Fn execve
280function call appeared in
281.Bx 4.2 .
282