-
Notifications
You must be signed in to change notification settings - Fork 1
/
openpathfd.c
91 lines (82 loc) · 1.96 KB
/
openpathfd.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
86
87
88
89
90
91
#define _GNU_SOURCE /* O_PATH */
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
static void
usage(void)
{
static char const message[] =
"Usage: openpathfd [-dL] fd file cmd [args]...\n";
if (fputs(message, stderr) == EOF)
perror("fputs");
}
int
main(int const argc, char *const *const argv)
{
int openflags = O_PATH | O_NOFOLLOW;
for (int opt; opt = getopt(argc, argv, "+dL"), opt != -1;) {
switch (opt) {
case 'd':
openflags |= O_DIRECTORY;
break;
case 'L':
openflags &= ~O_NOFOLLOW;
break;
default:
usage();
return 2;
}
}
if (argc - optind < 3) {
usage();
return 2;
}
char const *const argfd = argv[optind];
char const *const path = 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 openfd;
do {
openfd = open(path, openflags);
} while (openfd == -1 && errno == EINTR);
if (openfd == -1) {
perror("open");
return 2;
}
if (openfd != fd) {
int ret;
do {
ret = dup2(openfd, fd);
} while (ret == -1 && errno == EINTR);
if (ret == -1) {
perror("dup2");
return 2;
}
do {
ret = close(openfd);
} while (ret == -1 && errno == EINTR);
if (ret == -1) {
perror("close");
return 2;
}
}
(void)execvp(*command, command);
perror("execvp");
return 2;
}