summaryrefslogtreecommitdiff
path: root/src/process/fexecve.c
blob: 5939181a7e1adcfba2fb8e9681eb3e7823f3267c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <unistd.h>
#include <stdio.h>
#include <errno.h>

int fexecve(int fd, char *const argv[], char *const envp[])
{
	static const char proc[] = "/proc/self/fd/%d";
	char buf[sizeof proc + 3*sizeof(int)];
	snprintf(buf, sizeof buf, proc, fd);
	execve(buf, argv, envp);
	if (errno == ENOENT) errno = EBADF;
	return -1;
}