summaryrefslogtreecommitdiffstats
path: root/runfd.c
blob: 50eea7f8b0ca27f34c93c07ae86dd3f8c092d619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <stdio.h>
#include <stdlib.h>
#include <err.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>

/**
 * NOTE: requires fdescfs to be mounted to run interpreted files (starting with #!)
 */

#define DEFAULT_FD 3

char *args[] = { "batchrun", NULL };

int
main(int argc, char **argv)
{
	char buf[2], *end = NULL;
	ssize_t ret;
	int tries = 0, fd = DEFAULT_FD;

	if (argc > 1) {
		fd = strtol(argv[1], &end, 10);

		if (end == argv[1])
			errx(1, "Filedescriptor supplied (\"%s\") is not a number", argv[1]);
	}

retry:
	if (tries++ >= 3)
		errx(1, "Failed to read file header");

	ret = pread(fd, buf, sizeof(buf), 0);
	if (ret == 2) {
		if (strncmp(buf, "#!", 2) != 0) {
			fcntl(3, F_SETFD, FD_CLOEXEC);
		}
	} else if (ret == -1) {
		if (errno == EINTR)
			goto retry;
		err(1, "pread()");
	} else if (ret != 0) {
		goto retry;
	}

	fexecve(fd, args, NULL);
	err(1, "fexecve()");
}