-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpcap-extract-interval.c
79 lines (73 loc) · 1.51 KB
/
pcap-extract-interval.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
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pcap.h>
#include <err.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <getopt.h>
static void
usage(void)
{
fprintf(stderr, "usage: pcap-extract-interval [-x] begin end\n");
fprintf(stderr, "\tbegin\tUnix timestamp\n");
fprintf(stderr, "\tend\tUnix timestamp\n");
fprintf(stderr, "\t-x\texit at first timestamp after end time\n");
exit(1);
}
int
main(int argc, char *argv[])
{
pcap_t *in = NULL;
pcap_dumper_t *out = NULL;
char errbuf[PCAP_ERRBUF_SIZE + 1];
struct pcap_pkthdr hdr;
const u_char *data;
time_t beg;
time_t end;
int ch;
int opt_exit = 0;
while ((ch = getopt(argc, argv, "x")) != -1) {
switch (ch) {
case 'x':
opt_exit = 1;
break;
case '?':
case 'h':
default:
usage();
break;
}
}
if ((argc - optind) < 2) {
usage();
}
beg = atoi(argv[optind]);
end = atoi(argv[optind+1]);
in = pcap_open_offline("-", errbuf);
if (NULL == in) {
fprintf(stderr, "stdin: %s", errbuf);
exit(1);
}
out = pcap_dump_open(in, "-");
if (NULL == out) {
perror("stdout");
exit(1);
}
while ((data = pcap_next(in, &hdr))) {
if (hdr.ts.tv_sec < beg)
continue;
if (hdr.ts.tv_sec >= end) {
if (opt_exit) {
exit(0);
} else {
continue;
}
}
pcap_dump((void *) out, &hdr, data);
}
pcap_close(in);
pcap_dump_close(out);
exit(0);
}