1 .\"     $NetBSD: execve.2,v 1.9 1995/02/27 12:32:25 cgd Exp $
 
   3 .\" Copyright (c) 1980, 1991, 1993
 
   4 .\"     The Regents of the University of California.  All rights reserved.
 
   6 .\" Redistribution and use in source and binary forms, with or without
 
   7 .\" modification, are permitted provided that the following conditions
 
   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. All advertising materials mentioning features or use of this software
 
  15 .\"    must display the following acknowledgement:
 
  16 .\"     This product includes software developed by the University of
 
  17 .\"     California, Berkeley and its contributors.
 
  18 .\" 4. Neither the name of the University nor the names of its contributors
 
  19 .\"    may be used to endorse or promote products derived from this software
 
  20 .\"    without specific prior written permission.
 
  22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
  23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
  24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
  25 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
  26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
  27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
  28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
  29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
  30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
  31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
  34 .\"     @(#)execve.2    8.3 (Berkeley) 1/24/94
 
  43 .Fd #include <unistd.h>
 
  46 .Fa "const char *path"
 
  47 .Fa "char *const argv[]"
 
  48 .Fa "char *const envp[]"
 
  52 transforms the calling process into a new process.
 
  53 The new process is constructed from an ordinary file,
 
  54 whose name is pointed to by
 
  57 .Em new process file .
 
  58 This file is either an executable object file,
 
  59 or a file of data for an interpreter.
 
  60 An executable object file consists of an identifying header,
 
  61 followed by pages of data representing the initial program (text)
 
  62 and initialized data pages.  Additional pages may be specified
 
  63 by the header to be initialized with zero data;  see
 
  66 An interpreter file begins with a line of the form:
 
  68 .Bd -filled -offset indent -compact
 
  74 When an interpreter file is
 
  76 the system runs the specified
 
  80 are specified, they become the first (second, ...) argument to the
 
  82 The name of the originally
 
  84 file becomes the subsequent argument;
 
  85 otherwise, the name of the originally
 
  87 file is the first argument.
 
  88 The original arguments to the invocation of the interpreter
 
  89 are shifted over to become the final arguments.
 
  90 The zeroth argument, normally the name of the
 
  92 file, is left unchanged.
 
  96 is a pointer to a null-terminated array of
 
  97 character pointers to null-terminated character strings.
 
  98 These strings construct the argument list to be made available to the new
 
  99 process.  At least one argument must be present in
 
 100 the array; by custom, the first element should be
 
 101 the name of the executed program (for example, the last component of
 
 106 is also a pointer to a null-terminated array of
 
 107 character pointers to null-terminated strings.
 
 108 A pointer to this array is normally stored in the global variable
 
 110 These strings pass information to the
 
 111 new process that is not directly an argument to the command (see
 
 114 File descriptors open in the calling process image remain open in
 
 115 the new process image, except for those for which the close-on-exec
 
 120 Descriptors that remain open are unaffected by
 
 123 Signals set to be ignored in the calling process are set to be ignored in
 
 125 new process. Signals which are set to be caught in the calling process image
 
 126 are set to default action in the new process image.
 
 127 Blocked signals remain blocked regardless of changes to the signal action.
 
 128 The signal stack is reset to be undefined (see
 
 130 for more information).
 
 132 If the set-user-ID mode bit of the new process image file is set
 
 135 the effective user ID of the new process image is set to the owner ID
 
 136 of the new process image file.
 
 137 If the set-group-ID mode bit of the new process image file is set,
 
 138 the effective group ID of the new process image is set to the group ID
 
 139 of the new process image file.
 
 140 (The effective group ID is the first element of the group list.)
 
 141 The real user ID, real group ID and
 
 142 other group IDs of the new process image remain the same as the calling
 
 144 After any set-user-ID and set-group-ID processing,
 
 145 the effective user ID is recorded as the saved set-user-ID,
 
 146 and the effective group ID is recorded as the saved set-group-ID.
 
 147 These values may be used in changing the effective IDs later (see
 
 150 The new process also inherits the following attributes from
 
 153 .Bl -column parent_process_ID -offset indent -compact
 
 154 .It process ID Ta see Xr getpid 2
 
 155 .It parent process ID Ta see Xr getppid 2
 
 156 .It process group ID Ta see Xr getpgrp 2
 
 157 .It access groups Ta see Xr getgroups 2
 
 158 .It working directory Ta see Xr chdir 2
 
 159 .It root directory Ta see Xr chroot 2
 
 160 .It control terminal Ta see Xr termios 4
 
 161 .It resource usages Ta see Xr getrusage 2
 
 162 .It interval timers Ta see Xr getitimer 2
 
 163 .It resource limits Ta see Xr getrlimit 2
 
 164 .It file mode mask Ta see Xr umask 2
 
 165 .It signal mask Ta see Xr sigaction 2 ,
 
 169 When a program is executed as a result of an
 
 171 call, it is entered as follows:
 
 172 .Bd -literal -offset indent
 
 173 main(argc, argv, envp)
 
 180 is the number of elements in
 
 185 points to the array of character pointers
 
 186 to the arguments themselves.
 
 190 function overlays the current process image  with a new process image,
 
 191 the successful call has no process to return to.
 
 194 does return to the calling process, an error has occurred;
 
 195 the return value will be -1 and the global variable
 
 197 is set to indicate the error.
 
 200 will fail and return to the calling process if:
 
 204 The number of bytes in the new process's argument list
 
 205 is larger than the system-imposed limit.
 
 206 This limit is specified by the
 
 212 Search permission is denied for a component of the path prefix.
 
 215 The new process file is not an ordinary file.
 
 218 The new process file mode denies execute permission.
 
 221 The new process file is on a filesystem mounted
 
 222 with execution disabled
 
 225 .Ao Pa sys/mount.h Ac ) .
 
 228 The new process file is not as long as indicated by
 
 229 the size values in its header.
 
 237 to an illegal address.
 
 240 An I/O error occurred while reading from the file system.
 
 243 Too many symbolic links were encountered in translating the pathname.
 
 244 This is taken to be indicative of a looping symbolic link.
 
 246 .It Bq Er ENAMETOOLONG
 
 247 A component of a pathname exceeded 
 
 249 characters, or an entire path name exceeded 
 
 254 The new process file does not exist.
 
 257 The new process file has the appropriate access
 
 258 permission, but has an unrecognized format
 
 259 (e.g., an invalid magic number in its header).
 
 262 The new process requires more virtual memory than
 
 263 is allowed by the imposed maximum
 
 267 A component of the path prefix is not a directory.
 
 270 The new process file is a pure procedure (shared text)
 
 271 file that is currently open for writing or reading by some process.
 
 276 to a non-super-user, but is executed when
 
 279 is ``root'', then the program has some of the powers
 
 280 of a super-user as well.
 
 290 function call appeared in