-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpcap-decapsulate-gre.c
107 lines (98 loc) · 2.17 KB
/
pcap-decapsulate-gre.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#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 <assert.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip6.h>
#include <arpa/inet.h>
#include "pcap_layers.h"
struct _state
{
int from_gre;
void *ip_start;
int ip_len;
void *gre_start;
int gre_len;
};
/*
* this will only be called if 'ip' is a complete IPv4 header
*/
int
my_ip4_handler(const struct ip *ip4, int len, void *userdata)
{
struct _state *s = userdata;
if (!s->from_gre) {
s->ip_start = (void *) ip4;
s->ip_len = len;
} else {
s->gre_start = (void *) ip4;
s->gre_len = len;
}
return 0;
}
int
my_ip6_handler(const struct ip6_hdr *ip6, int len, void *userdata)
{
struct _state *s = userdata;
if (!s->from_gre) {
s->ip_start = (void *) ip6;
s->ip_len = len;
} else {
s->gre_start = (void *) ip6;
s->gre_len = len;
}
return 0;
}
int
my_gre_handler(const unsigned char *pkt, int len, void *userdata)
{
struct _state *s = userdata;
s->from_gre = 1;
return 0;
}
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;
struct _state s;
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);
}
pcap_layers_init(pcap_datalink(in), 0);
callback_ipv4 = my_ip4_handler;
callback_ipv6 = my_ip6_handler;
callback_gre = my_gre_handler;
while ((data = pcap_next(in, &hdr))) {
memset(&s, 0, sizeof(s));
handle_pcap((void *) &s, &hdr, data);
if (s.from_gre && s.ip_start && s.gre_start && s.ip_start < s.gre_start && s.ip_len && s.gre_len
&& s.ip_len > s.gre_len) {
int chop = (s.gre_start - s.ip_start);
hdr.caplen -= chop;
hdr.len -= chop;
memmove(s.ip_start, s.gre_start, s.gre_len);
pcap_dump((void *) out, &hdr, data);
}
}
pcap_close(in);
pcap_dump_close(out);
exit(0);
}