Issue
What are the reasons that an exec (execl,execlp, etc.) can fail? If you make a call to exec and it returns, are there any best practices other than just panicking and calling exit?
Solution
From the exec(3)
man page:
The
execl()
,execle()
,execlp()
,execvp()
, andexecvP()
functions may fail and set errno for any of the errors specified for the library functionsexecve(2)
andmalloc(3)
.The
execv()
function may fail and set errno for any of the errors specified for the library functionexecve(2)
.
And then from the execve(2)
man page:
ERRORS
Execve()
will fail and return to the calling process if:
[E2BIG]
- The number of bytes in the new process's argument list is larger than the system-imposed limit. This limit is specified by thesysctl(3)
MIB variableKERN_ARGMAX
.[EACCES]
- Search permission is denied for a component of the path prefix.[EACCES]
- The new process file is not an ordinary file.[EACCES]
- The new process file mode denies execute permission.[EACCES]
- The new process file is on a filesystem mounted with execution disabled (MNT_NOEXEC
in<sys/mount.h>
).[EFAULT]
- The new process file is not as long as indicated by the size values in its header.[EFAULT]
- Path, argv, or envp point to an illegal address.[EIO]
- An I/O error occurred while reading from the file system.[ELOOP]
- Too many symbolic links were encountered in translating the pathname. This is taken to be indicative of a looping symbolic link.[ENAMETOOLONG]
- A component of a pathname exceeded{NAME_MAX}
characters, or an entire path name exceeded{PATH_MAX}
characters.[ENOENT]
- The new process file does not exist.[ENOEXEC]
- The new process file has the appropriate access permission, but has an unrecognized format (e.g., an invalid magic number in its header).[ENOMEM]
- The new process requires more virtual memory than is allowed by the imposed maximum (getrlimit(2)
).[ENOTDIR]
- A component of the path prefix is not a directory.[ETXTBSY]
- The new process file is a pure procedure (shared text) file that is currently open for writing or reading by some process.
malloc()
is a lot less complicated, and uses only ENOMEM
. From the malloc(3) man page
:
If successful,
calloc()
,malloc()
,realloc()
,reallocf()
, andvalloc()
functions return a pointer to allocated memory. If there is an error, they return aNULL
pointer and seterrno
toENOMEM
.
Answered By - Carl Norum Answer Checked By - Senaida (PHPFixing Volunteer)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.