blob: 7f1d964a8b43bf2d6196df1c4fadd8800da1927d (
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
51
52
53
|
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
/* this will be running setgid root, so be careful! */
void usage(void) {
fprintf(stderr, "usage: netreport [-r]\n");
exit(1);
}
#define ADD 1
#define DEL 0
int main(int argc, char ** argv) {
int action = ADD;
/* more than long enough for "/var/run/netreport/<pid>\0" */
char netreport_name[64];
int netreport_file;
if (argc > 2) usage();
if (argc > 1) {
if (!strcmp(argv[1], "-r")) {
action = DEL;
} else {
usage();
}
}
snprintf(netreport_name, sizeof(netreport_name),
"/var/run/netreport/%d", getppid());
if (action == ADD) {
netreport_file = open(netreport_name,
O_EXCL | O_CREAT | O_WRONLY | O_TRUNC,
0);
if (netreport_file < 0) {
if (errno != EEXIST) {
perror("Could not create netreport file");
exit (1);
}
} else {
close(netreport_file);
}
} else {
/* ignore errors; not much we can do, won't hurt anything */
unlink(netreport_name);
}
exit(0);
}
|