-
Notifications
You must be signed in to change notification settings - Fork 1
/
creatememfd.c
85 lines (75 loc) · 1.83 KB
/
creatememfd.c
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#define _GNU_SOURCE /* memfd_create, MFD_ALLOW_SEALING */
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <unistd.h>
static void
usage(void)
{
static char const message[] =
"Usage: creatememfd [-S] fd name cmd [args]...\n";
if (fputs(message, stderr) == EOF)
perror("fputs");
}
int
main(int const argc, char **const argv)
{
unsigned memfdflags = 0;
for (int opt; opt = getopt(argc, argv, "+S"), opt != -1;) {
switch (opt) {
case 'S':
memfdflags |= MFD_ALLOW_SEALING;
break;
default:
usage();
return 2;
}
}
if (argc - optind < 3) {
usage();
return 2;
}
char const *const argfd = argv[optind];
char const *const name = argv[optind + 1];
char *const *const command = &argv[optind + 2];
char *endptr;
errno = 0;
long const longfd = strtol(argfd, &endptr, 10);
if (errno) {
perror("strtol");
return 2;
}
if (endptr == argfd || longfd < 0 || longfd > INT_MAX || *endptr) {
if (fputs("Invalid fd.\n", stderr) == EOF)
perror("fputs");
return 2;
}
int const fd = (int)longfd;
int const memfd = memfd_create(name, memfdflags);
if (memfd == -1) {
perror("memfd_create");
return 2;
}
if (memfd != fd) {
int ret;
do {
ret = dup2(memfd, fd);
} while (ret == -1 && errno == EINTR);
if (ret == -1) {
perror("dup2");
return 2;
}
do {
ret = close(memfd);
} while (ret == -1 && errno == EINTR);
if (ret == -1) {
perror("close");
return 2;
}
}
(void)execvp(*command, command);
perror("execvp");
return 2;
}