-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmtu1280d.c
526 lines (423 loc) · 12.8 KB
/
mtu1280d.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
/*
* Thanks to Austin Marton
* https://austinmarton.wordpress.com/2011/09/14/sending-raw-ethernet-packets-
* from-a-specific-interface-in-c-on-linux/ csum() is borrowed from Austin;
* and csum_3() is derived from csum().
*
* Code not otherwise borrowed is (C) 2015 by Jason Fesler <[email protected]>
* Principally: anything to do with ICMPv6 responses The uglier it looks, the
* more likely it is mine.
*/
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <assert.h>
#include <stdarg.h>
#include <signal.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <netinet/ip.h>
#include <netinet/udp.h>
#include <netinet/ether.h>
#include <linux/if_packet.h>
#include <linux/sockios.h>
#include <linux/netfilter.h> /* for NF_ACCEPT */
#include <libnetfilter_queue/libnetfilter_queue.h>
#define MTU 1280
#define ETHER_SIZE (6+6+2)
#define IPV6HDR_SIZE 40
#define ICMP6_SIZE 8
#define PAYLOAD_SIZE (MTU-(IPV6HDR_SIZE+ICMP6_SIZE))
#define ETHER_CRC_SIZE 4
#define ETHER_TOTAL_SIZE (MTU + ETHER_SIZE)
unsigned int queue = 1280; /* -q */
unsigned int do_fork = 0; /* -d */
unsigned int do_debug = 0; /* -g */
unsigned int do_watchdog = 0; /* -w */
unsigned int do_watchdog_times = 10; /* -W */
void must(char *s, int i)
{
if (i == 0)
printf("must: %s (value %s)\n", s, i ? "true" : "false");
if (!i)
exit(1);
}
#define debugf(...) debugf_with_caller(__FILE__, __LINE__, __func__, __VA_ARGS__)
int
debugf_with_caller(const char *file, int line, const char *fname, const char *format,...)
{
va_list args;
va_start(args, format);
if (do_debug) {
printf("DEBUG: %s:%d %s(): ", file, line, fname);
vprintf(format, args);
};
va_end(args);
}
typedef struct fullframe {
u_int8_t ether_frame[ETHER_SIZE];
u_int8_t ipv6_header[IPV6HDR_SIZE];
u_int8_t icmp6_header[ICMP6_SIZE];
u_int8_t payload[PAYLOAD_SIZE];
} fullframe;
int
sockfd(void)
{
static sock = 0;
if (!sock) {
sock = socket(AF_PACKET, SOCK_RAW, IPPROTO_RAW);
};
if (sock == -1) {
perror("socket");
};
}
uint8_t *
macaddr_for_interface(int i)
{
static int last_i = 0xfffff;
static uint8_t buffer[6];
static uint8_t devname[IF_NAMESIZE];
if (i != last_i) {
int s = sockfd(); /* Need a random socket FD to
* do ioctl against */
char *interface = NULL;
memset(buffer, 0, sizeof(buffer));
interface = if_indextoname(i, devname);
struct ifreq ifr;
if (interface) {
debugf("Looked up %d, found %s ", i, interface);
/*
* Use ioctl() to look up interface name and get its
* MAC address.
*/
memset(&ifr, 0, sizeof(ifr));
snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "%s", interface);
must("ioctl() for source MAC address", ioctl(s, SIOCGIFHWADDR, &ifr) >= 0);
memcpy(buffer, ifr.ifr_hwaddr.sa_data, 6);
last_i = i; /* Save a lookup later. */
};
};
debugf("interface %d mac %02x:%02x:%02x:%02x:%02x:%02x",
i, buffer[0], buffer[1], buffer[2], buffer[3], buffer[4], buffer[5]);
return buffer;
};
void
hexdump(char *s, uint8_t * p, int n)
{
return;
int i;
if (!do_debug) {
return;
};
printf("\nHEXDUMP: %s\n", s);
for (i = 0; i < n; i++) {
if (i % 16 == 0) {
printf("%04x: ", i);
};
printf("%02x", p[i]);
if (i % 2 == 1) {
printf(" ");
};
if (i % 4 == 3) {
printf(" ");
};
if (i % 16 == 15) {
printf("\n");
};
};
printf("\n");
}
uint16_t
csum(uint16_t * buf, int count)
{
uint32_t sum;
for (sum = 0; count > 0; count -= 2)
sum += *buf++;
sum = (sum >> 16) + (sum & 0xffff);
sum += (sum >> 16);
return (uint16_t) (~sum);
}
uint16_t
csum_3(uint16_t * buf1, int count1, uint16_t * buf2, int count2, uint16_t * buf3, int count3)
{
uint32_t sum;
for (sum = 0; count1 > 0; count1 -= 2)
sum += *buf1++;
for (; count2 > 0; count2 -= 2)
sum += *buf2++;
for (; count3 > 0; count3 -= 2)
sum += *buf3++;
sum = (sum >> 16) + (sum & 0xffff);
sum += (sum >> 16);
return (uint16_t) (~sum);
}
/* returns packet id */
static u_int32_t
block_pkt(struct nfq_data *tb)
{
int id = 0;
struct nfqnl_msg_packet_hw *hwph;
u_int32_t mark , ifi;
int ret;
int data_len;
int copy_len;
unsigned char *data;
uint16_t c;
static u_int8_t previous_macaddr[6] = {0, 0, 0, 0, 0, 0};
/* Where to address the raw packets - fill this in as we go */
struct sockaddr_ll socket_address;
memset(&socket_address, 0, sizeof(socket_address));
/*
* I'm tired of fighting all the crud, so I'm goingto just use a big
* block.
*/
fullframe buffer;
memset(&buffer, 0, sizeof(buffer));
assert(sizeof(buffer) == ETHER_TOTAL_SIZE);
/*
* We need Ethernet header IPv6 header IPCMPv6 header As much of the
* original payload as possible Final ether CRC
*/
/* Get the data payload from netfilter_queue */
ret = nfq_get_payload(tb, &data);
data_len = ret;
copy_len = (data_len > PAYLOAD_SIZE) ? PAYLOAD_SIZE : data_len;
// debugf("payload_len=%d copy_len=%d\n", data_len, copy_len);
/*
* What MAC address sent us this packet? We intend to send the
* outbound packet back to the same place.
*/
hwph = nfq_get_packet_hw(tb);
if (hwph) {
int i , hlen = ntohs(hwph->hw_addrlen);
// if (do_debug) {
// debugf("hw_src_addr=");
// for (i = 0; i < hlen - 1; i++) {
// printf("%02x:", hwph->hw_addr[i]);
// };
// printf("%02x\n", hwph->hw_addr[hlen - 1]);
// };
/* Ethernet frame destination */
memcpy(&buffer.ether_frame[0], hwph->hw_addr, 6);
memcpy(socket_address.sll_addr, hwph->hw_addr, 6);
memcpy(previous_macaddr, hwph->hw_addr, 6);
socket_address.sll_halen = ETH_ALEN;
} else {
// debugf("hw_src_addr=missing\n");
memcpy(&buffer.ether_frame[0], previous_macaddr, 6);
memcpy(socket_address.sll_addr, previous_macaddr, 6);
socket_address.sll_halen = ETH_ALEN;
}
/* Early-ish accept if the packets are small */
if ((data_len > 0) && (data_len <= 1280)) {
debugf("Accepting! Returning NF_ACCEPT on %d bytes\n",data_len);
return NF_ACCEPT; /* iptables mark to keep the packet */
};
debugf("Rejecting! %d bytes\n",data_len);
/* TODO: Ethernet frame source */
/* Ethernet frame type */
buffer.ether_frame[12] = ETH_P_IPV6 / 256;
buffer.ether_frame[13] = ETH_P_IPV6 % 256;
/* Show the ethernet frame */
hexdump("DUMP: ether_frame", buffer.ether_frame, sizeof(buffer.ether_frame));
/* Start creating the IPv6 header */
buffer.ipv6_header[0] = 0x60; /* IPv6 "version=6" */
/* What is the payload length? */
int plength = copy_len + ICMP6_SIZE;
buffer.ipv6_header[4] = plength / 256;
buffer.ipv6_header[5] = plength % 256;
/* What is the next header? */
buffer.ipv6_header[6] = 0x3a; /* ICMPv6 */
buffer.ipv6_header[7] = 0xff; /* Hop limit */
/*
* Source address, Destination Address Just swap from what we saw in
* our input packet
*/
memcpy(&buffer.ipv6_header[8], &data[24], 16);
memcpy(&buffer.ipv6_header[24], &data[8], 16);
hexdump("IP6 HEADER:", buffer.ipv6_header, sizeof(buffer.ipv6_header));
/* ICMPv6 header */
buffer.icmp6_header[0] = 2; /* Type 2 Packet Too Big */
buffer.icmp6_header[1] = 0; /* Code (not used) */
/* TODO Checksum */
buffer.icmp6_header[2] = 0; /* TODO Checksum */
buffer.icmp6_header[3] = 0; /* TODO checksum */
/* MTU expressed as 32 bits */
buffer.icmp6_header[4] = (MTU >> 24) & 0xff;
buffer.icmp6_header[5] = (MTU >> 16) & 0xff;
buffer.icmp6_header[6] = (MTU >> 8) & 0xff;
buffer.icmp6_header[7] = MTU & 0xff;
memcpy(buffer.payload, data, copy_len);
hexdump("ICMP6", buffer.icmp6_header, sizeof(buffer.icmp6_header) + copy_len);
u_int8_t pseudoheader[40];
memcpy(pseudoheader, &buffer.ipv6_header[8], 32);
pseudoheader[32] = 0; /* length never more than 0xffff */
pseudoheader[33] = 0; /* length never more than 0xffff */
pseudoheader[34] = (ICMP6_SIZE + copy_len) / 256;
pseudoheader[35] = (ICMP6_SIZE + copy_len) % 256;
pseudoheader[36] = 0; /* zero */
pseudoheader[37] = 0; /* zero */
pseudoheader[38] = 0; /* zero */
pseudoheader[39] = 58; /* ICMPv6 header code */
c = csum_3((uint16_t *) pseudoheader, sizeof(pseudoheader),
(uint16_t *) buffer.icmp6_header, sizeof(buffer.icmp6_header), (uint16_t *) buffer.payload, copy_len);
buffer.icmp6_header[2] = c % 256;
buffer.icmp6_header[3] = c / 256;
hexdump("PseudoHeader", pseudoheader, sizeof(pseudoheader));
hexdump("ICMP6", buffer.icmp6_header, sizeof(buffer.icmp6_header) + copy_len);
/* Device ID that the packet came from */
ifi = nfq_get_indev(tb);
if (ifi) {
socket_address.sll_ifindex = ifi;
memcpy(&buffer.ether_frame[6], macaddr_for_interface(ifi), 6);
};
debugf("trace during reject: calling sendto()\n");
int tx_len = ETHER_SIZE + IPV6HDR_SIZE + ICMP6_SIZE + copy_len;
if (sendto(sockfd(), &buffer, tx_len, 0, (struct sockaddr *)&socket_address, sizeof(struct sockaddr_ll)) < 0)
printf("Send failed\n");
debugf("trace during reject: returning NF_DROP\n");
return NF_DROP; /* iptables will drop this later as being too
* big */
}
static int
cb(struct nfq_q_handle *qh, struct nfgenmsg *nfmsg, struct nfq_data *nfa, void *data)
{
struct nfqnl_msg_packet_hdr *ph;
u_int32_t id = 0;
// debugf("entering callback 'cb'\n");
must("nfq_get_msg_packet_hdr", (ph = nfq_get_msg_packet_hdr(nfa)) != 0);
id = ntohl(ph->packet_id);
// debugf("hw_protocol=0x%04x hook=%u id=%u\n", ntohs(ph->hw_protocol), ph->hook, id);
int v = block_pkt(nfa);
// debugf("nfq_set_verdict(qh, id=%d, v(verdict)=%d, 0, NULL)\n", id, v);
int ret = nfq_set_verdict(qh, id, v, 0, NULL);
// debugf("exiting callback 'cb'\n");
return ret;
}
int alarms_hit = 0;
int fd = 0;
void
handle_sigalarm(int sig)
{
alarms_hit++;
fprintf(stderr, "\n*****WATCHDOG TIMER HIT count=%d/%d times since receiving data\n", alarms_hit, do_watchdog_times);
if (alarms_hit > do_watchdog_times) {
fprintf(stderr, "\n*****WATCHDOG TIMER GIVING UP, SEPPUKU\n");
exit(1);
}
int flags = fcntl(fd, F_GETFL);
if (flags >= 0) {
fcntl(fd, F_SETFL, flags | O_NONBLOCK);
}
alarm(do_watchdog);
}
void handle_sigint(int sig) {
fprintf(stderr,"**SIGINT**\n");
exit(1);
}
int
main(int argc, char **argv)
{
struct nfq_handle *h;
struct nfq_q_handle *qh;
struct nfnl_handle *nh;
// int fd;
int rv;
char *interface;
char buf [4096] __attribute__((aligned));
setvbuf(stdout, NULL, _IONBF, 0);
/* Getopt */
int c;
int opterr = 0;
while ((c = getopt(argc, argv, "dgq:w:W:")) != -1)
switch (c) {
case 'd':
do_fork = 1;
break;
case 'g':
do_debug = 1;
break;
case 'q':
queue = strtol(optarg, NULL, 10);
break;
case 'w':
do_watchdog = strtol(optarg, NULL, 10);
break;
case 'W':
do_watchdog_times = strtol(optarg, NULL, 10);
break;
case '?':
if ((optopt == 'q') || (optopt == 'w'))
fprintf(stderr, "Option -%c requires an argument.\n", optopt);
else if (isprint(optopt))
fprintf(stderr, "Unknown option `-%c'.\n", optopt);
else
fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);
return 1;
default:
abort();
};
if (getuid() != 0) {
fprintf(stdout, "WARNING: Not running as root. If this fails, either run as root, or grant CAP_NET_ADMIN.\n");
};
loop:
must("nfq_open", (h = nfq_open()) != 0);
must("nfq_unbind_pf", nfq_unbind_pf(h, AF_INET6) >= 0);
must("nfq_bind_pf", nfq_bind_pf(h, AF_INET6) >= 0);
must("nfq_create_queue", (qh = nfq_create_queue(h, queue, &cb, NULL)) != 0);
must("nfq_set_mode", nfq_set_mode(qh, NFQNL_COPY_PACKET, 0xffff) >= 0);
if (do_fork) {
fprintf(stdout, "forking to background\n");
daemon(0, 0);
};
debugf("trace\n");
must("nfq_fd", (fd = nfq_fd(h)) > 0);
signal(SIGINT,handle_sigint);
signal(SIGTERM,handle_sigint);
if (do_watchdog) {
debugf("setting up watchdog for %i seconds\n",do_watchdog);
signal(SIGALRM,handle_sigalarm);
alarm(do_watchdog);
};
while (1) {
debugf("calling recv()\n");
if (do_watchdog) {
alarm(do_watchdog);
};
rv = recv(fd, buf, sizeof(buf), 0);
debugf("recv() rv=%d errno=%d\n", rv, errno);
if (rv > 0) {
if (alarms_hit>0) {
debugf("RECOVERED resetting alarm_hit\n");
alarms_hit=0; /* reset alarm count on success */
}
nfq_handle_packet(h, buf, rv);
continue;
}
if (rv==0) {
fprintf(stderr,"got recv()=0 (socket closed?)\n");
} else if (rv<0) {
fprintf(stderr,"got errno=%d %s\n",errno,strerror(errno));
}
debugf("Resetting and trying again\n");
debugf("trace about to close(fd)\n");
close(fd);
debugf("trace about to nfq_destroy_queue(qh)\n");
nfq_destroy_queue(qh);
debugf("trace about to nfq_close(h)\n");
nfq_close(h);
debugf("Go to loop\n");
goto loop;
};
// /* At the end, close the queue. */
// /* We should not hit this code unless our earlier socket is closed. */
// nfq_destroy_queue(qh);
// must("nfq_close", nfq_close(h) == 0);
exit(0);
}