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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <err.h>
#include <fcntl.h>
int
main()
{
int orgfd, fd1, fd2;
char temp[] = "/tmp/dup2XXXXXXXXX";
if ((orgfd = mkstemp(temp)) < 0)
err(1, "mkstemp");
remove(temp);
if (ftruncate(orgfd, 1024) != 0)
err(1, "ftruncate");
if ((fd1 = dup(orgfd)) < 0)
err(1, "dup");
/* Set close-on-exec */
if (fcntl(fd1, F_SETFD, 1) != 0)
err(1, "fcntl(F_SETFD)");
if ((fd2 = dup2(fd1, fd1 + 1)) < 0)
err(1, "dup2");
/* Test 1: Do we get the right fd? */
if (fd2 != fd1 + 1)
errx(1, "dup2 didn't give us the right fd");
/* Test 2: Was close-on-exec cleared? */
if (fcntl(fd2, F_GETFD) != 0)
errx(1, "dup2 didn't clear close-on-exec");
return 0;
}
|