forked from snooda/net-speeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
net_speeder.c
216 lines (183 loc) · 5.19 KB
/
net_speeder.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#include <pcap.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <errno.h>
#include <sys/types.h>
#include <libnet.h>
#include <netpacket/packet.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <err.h>
/* default snap length (maximum bytes per packet to capture) */
#define SNAP_LEN 65535
#define ETHERNET_H_LEN_COOKED 16
#define ETHERNET_H_LEN_ETHER 14
#define SPECIAL_TTL 88
#define IP6_H_LEN 40
int ethernet_h_len = 0;
void got_packet(u_char *args, const struct pcap_pkthdr *header, const u_char *packet);
void print_usage(void);
/*
* print help text
*/
void print_usage(void) {
printf("Usage: %s [interface][\"filter rule\"]\n", "net_speeder");
printf("\n");
printf("Options:\n");
printf(" interface Listen on <interface> for packets.\n");
printf(" filter Rules to filter packets.\n");
printf("\n");
}
int device_get_hwinfo(char* ifname)
{
int fd;
struct ifreq ifr;
fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (fd < 0) {
printf("Could not create packet socket! Please run horst as root!\n");
return -1;
}
memset(&ifr, 0, sizeof(ifr));
strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0)
{
err(1, "Could not get arptype");
return -1;
}
return ifr.ifr_hwaddr.sa_family; //this value
}
void got_packet(u_char *args, const struct pcap_pkthdr *header, const u_char *packet) {
static int count = 1;
struct libnet_ipv4_hdr *ip;
libnet_t **libnet_handlers = (libnet_t**)args;
libnet_t *libnet_handler;
int head_len, pack_len;
int proto;
int(*write_func)(struct libnet_context *, const unsigned char*, unsigned int);
count++;
ip = (struct libnet_ipv4_hdr*)(packet + ethernet_h_len);
if(ip->ip_v == 0x4) {
if(ip->ip_ttl != SPECIAL_TTL) {
ip->ip_ttl = SPECIAL_TTL;
ip->ip_sum = 0;
head_len = ip->ip_hl * 4;
pack_len = ntohs(ip->ip_len);
proto = ip->ip_p;
libnet_handler = libnet_handlers[0];
write_func = &libnet_adv_write_raw_ipv4;
}
else
goto end;
}
else if(ip->ip_v == 0x6) {
struct libnet_ipv6_hdr *ip6;
ip6 = (struct libnet_ipv6_hdr*)ip;
if(ip6->ip_hl != SPECIAL_TTL) {
ip6->ip_hl = SPECIAL_TTL;
head_len = IP6_H_LEN;
pack_len = ntohs(ip6->ip_len) + head_len;
proto = ip6->ip_nh;
libnet_handler = libnet_handlers[1];
write_func = &libnet_write_raw_ipv6;
}
else
goto end;
}
if(proto == IPPROTO_TCP) {
struct libnet_tcp_hdr *tcp = (struct libnet_tcp_hdr *)((u_int8_t *)ip + head_len);
tcp->th_sum = 0;
libnet_do_checksum(libnet_handler, (u_int8_t *)ip, IPPROTO_TCP, LIBNET_TCP_H);
} else if(proto == IPPROTO_UDP) {
struct libnet_udp_hdr *udp = (struct libnet_udp_hdr *)((u_int8_t *)ip + head_len);
udp->uh_sum = 0;
libnet_do_checksum(libnet_handler, (u_int8_t *)ip, IPPROTO_UDP, LIBNET_UDP_H);
}
int len_written = write_func(libnet_handler, (u_int8_t *)ip, pack_len);
if(len_written < 0) {
printf("packet len:[%d] actual write:[%d]\n", ntohs(ip->ip_len), len_written);
printf("err msg:[%s]\n", libnet_geterror(libnet_handler));
}
end:
return;
}
libnet_t* start_libnet(char *dev, int ver) {
char errbuf[LIBNET_ERRBUF_SIZE];
libnet_t *libnet_handler = libnet_init(ver, dev, errbuf);
if(NULL == libnet_handler) {
printf("libnet_init: error %s\n", errbuf);
}
return libnet_handler;
}
#define ARGC_NUM 3
int main(int argc, char **argv) {
char *dev = NULL;
int if_type;
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t *handle;
char *filter_rule = NULL;
struct bpf_program fp;
bpf_u_int32 net, mask;
if (argc == ARGC_NUM) {
dev = argv[1];
filter_rule = argv[2];
printf("Device: %s\n", dev);
printf("Filter rule: %s\n", filter_rule);
} else {
print_usage();
return -1;
}
if_type = device_get_hwinfo(dev);
printf("if_type:%d\n", if_type);
if(if_type == ARPHRD_ETHER) {
ethernet_h_len = ETHERNET_H_LEN_ETHER;
}
else {
ethernet_h_len = ETHERNET_H_LEN_COOKED;
}
printf("ethernet header len:[%d](14:normal, 16:cooked)\n", ethernet_h_len);
if (pcap_lookupnet(dev, &net, &mask, errbuf) == -1) {
printf("Couldn't get netmask for device %s: %s\n", dev, errbuf);
net = 0;
mask = 0;
}
printf("init pcap\n");
handle = pcap_open_live(dev, SNAP_LEN, 1, 0, errbuf);
if(handle == NULL) {
printf("pcap_open_live dev:[%s] err:[%s]\n", dev, errbuf);
printf("init pcap failed\n");
return -1;
}
printf("init libnet\n");
libnet_t *libnet_handlers[2];
libnet_handlers[0] = start_libnet(dev, LIBNET_RAW4_ADV);
if(NULL == libnet_handlers[0]) {
printf("init libnet for ipv4 failed\n");
return -1;
}
libnet_handlers[1] = start_libnet(dev, LIBNET_RAW6_ADV);
if(NULL == libnet_handlers[1]) {
libnet_destroy(libnet_handlers[0]);
printf("init libnet for ipv6 failed\n");
return -1;
}
if (pcap_compile(handle, &fp, filter_rule, 0, net) == -1) {
printf("filter rule err:[%s][%s]\n", filter_rule, pcap_geterr(handle));
return -1;
}
if (pcap_setfilter(handle, &fp) == -1) {
printf("set filter failed:[%s][%s]\n", filter_rule, pcap_geterr(handle));
return -1;
}
while(1) {
pcap_loop(handle, 1, got_packet, (u_char *)libnet_handlers);
}
/* cleanup */
pcap_freecode(&fp);
pcap_close(handle);
libnet_destroy(libnet_handlers[0]);
libnet_destroy(libnet_handlers[1]);
return 0;
}