summaryrefslogtreecommitdiff
path: root/mtu1280d.c
blob: 00eaa2d24a5db7e46b6313cb887d1e5056d7f9ac (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
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
527
528
529
530
531
532
533
534
535
536
537
538
// 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().

// Portions of this file derived from libnetfilter_queue-1.0.2/utils/nfqnl_test.c
// (C) 2005 by Harald Welte <laforge@gnumonks.org>
// Particularly the bits that interface with netfilter (and the trigger for this being GPLv2 instead of MIT license)

// Code not otherwise borrowed is 
// (C) 2015 by Jason Fesler <jfesler@gigo.com>
// 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 <string.h>
#include <assert.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>

// netfilter - lots of stuff pilfered from nfqnl_test.c
#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 


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)
	{
	  if (do_debug)
	    {
	      printf ("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);
	  if (ioctl (s, SIOCGIFHWADDR, &ifr) < 0)
	    {
	      perror ("ioctl() failed to get source MAC address ");
	      exit (1);
	    }
	  memcpy (buffer, ifr.ifr_hwaddr.sa_data, 6);

	}

    }
  if (do_debug)
    {
      printf ("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)
{
  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;

  if (do_debug)
    {
      printf ("payload_len=%d copy_len=%d ", 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)
	{
	  printf ("hw_src_addr=");
	  for (i = 0; i < hlen - 1; i++)
	    printf ("%02x:", hwph->hw_addr[i]);
	  printf ("%02x ", 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
    {
      if (do_debug)
	{
	  printf ("hw_src_addr=missing ");
	}
      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))
    {
      if (do_debug)
	{
	  printf ("Accepting!\n");
	}
      return 1280;  // iptables mark to keep the packet
    }


  // 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)
    {
      if (do_debug)
	{
	  printf ("indev=%u ", ifi);
	}
      socket_address.sll_ifindex = ifi;
      memcpy (&buffer.ether_frame[6], macaddr_for_interface (ifi), 6);
    }

  if (do_debug)
    {
      fputc ('\n', stdout);
    }

  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");


  return 1281;  // 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;
  u_int32_t mark;

  if (do_debug)
    {
      printf ("do_debug=%d", do_debug);
      printf ("entering callback\n");
    }
  ph = nfq_get_msg_packet_hdr (nfa);
  if (ph)
    {
      id = ntohl (ph->packet_id);
      if (do_debug)
	{
	  printf ("hw_protocol=0x%04x hook=%u id=%u ",
		  ntohs (ph->hw_protocol), ph->hook, id);
	}
    }
  mark = block_pkt (nfa);
  if (do_debug) {
    printf("\nnfq_set_verdict2(qh, id=%d, v=NF_ACCEPT, mark=%d, 0, NULL)\n",id,mark);
  }
  return nfq_set_verdict2 (qh, id, NF_ACCEPT, mark, 0, NULL);
}


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));

// Getopt        
  int c;
  int opterr = 0;
  while ((c = getopt (argc, argv, "dgq:")) != -1)
    switch (c)
      {
      case 'd':
	do_fork = 1;
	break;
      case 'g':
	do_debug = 1;
	break;
      case 'q':
	queue = strtol (optarg, NULL, 10);
	break;
      case '?':
	if (optopt == 'q')
	  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 (do_debug)
    {
      printf ("opening library handle\n");
    }
  h = nfq_open ();
  if (!h)
    {
      fprintf (stdout, "error during nfq_open()\n");
      exit (1);
    }
  if (do_debug)
    {
      printf ("unbinding existing nf_queue handler for AF_INET6 (if any)\n");
    }
  if (nfq_unbind_pf (h, AF_INET6) < 0)
    {
      fprintf (stdout, "error during nfq_unbind_pf()\n");
      if (getuid () != 0)
	{
	  fprintf (stderr, "%s: must be ran as root\n", argv[0]);
	}
      exit (1);
    }

  if (do_debug)
    {
      printf ("binding nfnetlink_queue as nf_queue handler for AF_INET6\n");
    }
  if (nfq_bind_pf (h, AF_INET6) < 0)
    {
      fprintf (stdout, "error during nfq_bind_pf()\n");
      exit (1);
    }

  if (do_debug)
    {
      printf ("binding this socket to queue '%u'\n", queue);
    }
  qh = nfq_create_queue (h, queue, &cb, NULL);
  if (!qh)
    {
      fprintf (stdout, "error during nfq_create_queue()\n");
      exit (1);
    }


  if (do_debug)
    {
      printf ("setting copy_packet mode\n");
    }
  if (nfq_set_mode (qh, NFQNL_COPY_PACKET, 0xffff) < 0)
    {
      fprintf (stdout, "can't set packet_copy mode\n");
      exit (1);
    }


  if (do_fork)
    {
      fprintf (stdout, "forking to background\n");
      daemon (0, 0);
    }


  fd = nfq_fd (h);

  while ((rv = recv (fd, buf, sizeof (buf), 0)) && rv >= 0)
    {
      if (do_debug)
	{
	  printf ("pkt received\n");
	}
      nfq_handle_packet (h, buf, rv);
    }


  printf ("unbinding from queue 0\n");
  nfq_destroy_queue (qh);

#ifdef INSANE
  /* normally, applications SHOULD NOT issue this command, since
   * it detaches other programs/sockets from AF_INET6, too ! */
  printf ("unbinding from AF_INET6\n");
  nfq_unbind_pf (h, AF_INET6);
#endif

  printf ("closing library handle\n");
  nfq_close (h);

  exit (0);
}