Merge branch 'master' into 1.1
[tinc] / src / route.c
1 /*
2     route.c -- routing
3     Copyright (C) 2000-2005 Ivo Timmermans,
4                   2000-2009 Guus Sliepen <guus@tinc-vpn.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id$
21 */
22
23 #include "system.h"
24
25 #include "splay_tree.h"
26 #include "connection.h"
27 #include "ethernet.h"
28 #include "ipv4.h"
29 #include "ipv6.h"
30 #include "logger.h"
31 #include "net.h"
32 #include "protocol.h"
33 #include "route.h"
34 #include "subnet.h"
35 #include "utils.h"
36
37 rmode_t routing_mode = RMODE_ROUTER;
38 bool priorityinheritance = false;
39 int macexpire = 600;
40 bool overwrite_mac = false;
41 mac_t mymac = {{0xFE, 0xFD, 0, 0, 0, 0}};
42
43 /* Sizes of various headers */
44
45 static const size_t ether_size = sizeof(struct ether_header);
46 static const size_t arp_size = sizeof(struct ether_arp);
47 static const size_t ip_size = sizeof(struct ip);
48 static const size_t icmp_size = sizeof(struct icmp) - sizeof(struct ip);
49 static const size_t ip6_size = sizeof(struct ip6_hdr);
50 static const size_t icmp6_size = sizeof(struct icmp6_hdr);
51 static const size_t ns_size = sizeof(struct nd_neighbor_solicit);
52 static const size_t opt_size = sizeof(struct nd_opt_hdr);
53
54 static struct event age_subnets_event;
55
56 /* RFC 1071 */
57
58 static uint16_t inet_checksum(void *data, int len, uint16_t prevsum)
59 {
60         uint16_t *p = data;
61         uint32_t checksum = prevsum ^ 0xFFFF;
62
63         while(len >= 2) {
64                 checksum += *p++;
65                 len -= 2;
66         }
67         
68         if(len)
69                 checksum += *(uint8_t *)p;
70
71         while(checksum >> 16)
72                 checksum = (checksum & 0xFFFF) + (checksum >> 16);
73
74         return ~checksum;
75 }
76
77 static bool ratelimit(int frequency) {
78         static time_t lasttime = 0;
79         static int count = 0;
80         time_t now = time(NULL);
81         
82         if(lasttime == now) {
83                 if(++count > frequency)
84                         return true;
85         } else {
86                 lasttime = now;
87                 count = 0;
88         }
89
90         return false;
91 }
92
93 static bool checklength(node_t *source, vpn_packet_t *packet, length_t length) {
94         if(packet->len < length) {
95                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got too short packet from %s (%s)"), source->name, source->hostname);
96                 return false;
97         } else
98                 return true;
99 }
100         
101 static void age_subnets(int fd, short events, void *data)
102 {
103         subnet_t *s;
104         connection_t *c;
105         splay_node_t *node, *next, *node2;
106         bool left = false;
107         time_t now = time(NULL);
108
109         cp();
110
111         for(node = myself->subnet_tree->head; node; node = next) {
112                 next = node->next;
113                 s = node->data;
114                 if(s->expires && s->expires < now) {
115                         ifdebug(TRAFFIC) {
116                                 char netstr[MAXNETSTR];
117                                 if(net2str(netstr, sizeof netstr, s))
118                                         logger(LOG_INFO, _("Subnet %s expired"), netstr);
119                         }
120
121                         for(node2 = connection_tree->head; node2; node2 = node2->next) {
122                                 c = node2->data;
123                                 if(c->status.active)
124                                         send_del_subnet(c, s);
125                         }
126
127                         subnet_del(myself, s);
128                 } else {
129                         if(s->expires)
130                                 left = true;
131                 }
132         }
133
134         if(left)
135                 event_add(&age_subnets_event, &(struct timeval){10, 0});
136 }
137
138 static void learn_mac(mac_t *address)
139 {
140         subnet_t *subnet;
141         splay_node_t *node;
142         connection_t *c;
143
144         cp();
145
146         subnet = lookup_subnet_mac(address);
147
148         /* If we don't know this MAC address yet, store it */
149
150         if(!subnet) {
151                 ifdebug(TRAFFIC) logger(LOG_INFO, _("Learned new MAC address %hx:%hx:%hx:%hx:%hx:%hx"),
152                                    address->x[0], address->x[1], address->x[2], address->x[3],
153                                    address->x[4], address->x[5]);
154
155                 subnet = new_subnet();
156                 subnet->type = SUBNET_MAC;
157                 subnet->expires = time(NULL) + macexpire;
158                 subnet->net.mac.address = *address;
159                 subnet_add(myself, subnet);
160
161                 /* And tell all other tinc daemons it's our MAC */
162
163                 for(node = connection_tree->head; node; node = node->next) {
164                         c = node->data;
165                         if(c->status.active)
166                                 send_add_subnet(c, subnet);
167                 }
168
169                 if(!timeout_initialized(&age_subnets_event))
170                         timeout_set(&age_subnets_event, age_subnets, NULL);
171                 event_add(&age_subnets_event, &(struct timeval){10, 0});
172         } else {
173                 if(subnet->expires)
174                         subnet->expires = time(NULL) + macexpire;
175         }
176 }
177
178 static void route_mac(node_t *source, vpn_packet_t *packet)
179 {
180         subnet_t *subnet;
181         mac_t dest;
182
183         cp();
184
185
186         /* Learn source address */
187
188         if(source == myself) {
189                 mac_t src;
190                 memcpy(&src, &packet->data[6], sizeof src);
191                 learn_mac(&src);
192         }
193
194         /* Lookup destination address */
195
196         memcpy(&dest, &packet->data[0], sizeof dest);
197         subnet = lookup_subnet_mac(&dest);
198
199         if(!subnet) {
200                 broadcast_packet(source, packet);
201                 return;
202         }
203
204         if(subnet->owner == source) {
205                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
206                 return;
207         }
208
209         send_packet(subnet->owner, packet);
210 }
211
212 /* RFC 792 */
213
214 static void route_ipv4_unreachable(node_t *source, vpn_packet_t *packet, uint8_t type, uint8_t code)
215 {
216         struct ip ip = {0};
217         struct icmp icmp = {0};
218         
219         struct in_addr ip_src;
220         struct in_addr ip_dst;
221         uint32_t oldlen;
222
223         if(ratelimit(3))
224                 return;
225         
226         cp();
227
228         /* Copy headers from packet into properly aligned structs on the stack */
229
230         memcpy(&ip, packet->data + ether_size, ip_size);
231
232         /* Remember original source and destination */
233         
234         ip_src = ip.ip_src;
235         ip_dst = ip.ip_dst;
236
237         oldlen = packet->len - ether_size;
238
239         if(type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
240                 icmp.icmp_nextmtu = htons(packet->len - ether_size);
241
242         if(oldlen >= IP_MSS - ip_size - icmp_size)
243                 oldlen = IP_MSS - ip_size - icmp_size;
244         
245         /* Copy first part of original contents to ICMP message */
246         
247         memmove(packet->data + ether_size + ip_size + icmp_size, packet->data + ether_size, oldlen);
248
249         /* Fill in IPv4 header */
250         
251         ip.ip_v = 4;
252         ip.ip_hl = ip_size / 4;
253         ip.ip_tos = 0;
254         ip.ip_len = htons(ip_size + icmp_size + oldlen);
255         ip.ip_id = 0;
256         ip.ip_off = 0;
257         ip.ip_ttl = 255;
258         ip.ip_p = IPPROTO_ICMP;
259         ip.ip_sum = 0;
260         ip.ip_src = ip_dst;
261         ip.ip_dst = ip_src;
262
263         ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
264         
265         /* Fill in ICMP header */
266         
267         icmp.icmp_type = type;
268         icmp.icmp_code = code;
269         icmp.icmp_cksum = 0;
270         
271         icmp.icmp_cksum = inet_checksum(&icmp, icmp_size, ~0);
272         icmp.icmp_cksum = inet_checksum(packet->data + ether_size + ip_size + icmp_size, oldlen, icmp.icmp_cksum);
273
274         /* Copy structs on stack back to packet */
275
276         memcpy(packet->data + ether_size, &ip, ip_size);
277         memcpy(packet->data + ether_size + ip_size, &icmp, icmp_size);
278         
279         packet->len = ether_size + ip_size + icmp_size + oldlen;
280
281         send_packet(source, packet);
282 }
283
284 /* RFC 791 */
285
286 static void fragment_ipv4_packet(node_t *dest, vpn_packet_t *packet) {
287         struct ip ip;
288         vpn_packet_t fragment;
289         int len, maxlen, todo;
290         uint8_t *offset;
291         uint16_t ip_off, origf;
292         
293         cp();
294
295         memcpy(&ip, packet->data + ether_size, ip_size);
296         fragment.priority = packet->priority;
297
298         if(ip.ip_hl != ip_size / 4)
299                 return;
300         
301         todo = ntohs(ip.ip_len) - ip_size;
302
303         if(ether_size + ip_size + todo != packet->len) {
304                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Length of packet (%d) doesn't match length in IPv4 header (%zd)"), packet->len, ether_size + ip_size + todo);
305                 return;
306         }
307
308         ifdebug(TRAFFIC) logger(LOG_INFO, _("Fragmenting packet of %d bytes to %s (%s)"), packet->len, dest->name, dest->hostname);
309
310         offset = packet->data + ether_size + ip_size;
311         maxlen = (dest->mtu - ether_size - ip_size) & ~0x7;
312         ip_off = ntohs(ip.ip_off);
313         origf = ip_off & ~IP_OFFMASK;
314         ip_off &= IP_OFFMASK;
315         
316         while(todo) {
317                 len = todo > maxlen ? maxlen : todo;
318                 memcpy(fragment.data + ether_size + ip_size, offset, len);
319                 todo -= len;
320                 offset += len;
321
322                 ip.ip_len = htons(ip_size + len);
323                 ip.ip_off = htons(ip_off | origf | (todo ? IP_MF : 0));
324                 ip.ip_sum = 0;
325                 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
326                 memcpy(fragment.data, packet->data, ether_size);
327                 memcpy(fragment.data + ether_size, &ip, ip_size);
328                 fragment.len = ether_size + ip_size + len;
329
330                 send_packet(dest, &fragment);
331
332                 ip_off += len / 8;
333         }       
334 }
335
336 static void route_ipv4_unicast(node_t *source, vpn_packet_t *packet)
337 {
338         subnet_t *subnet;
339         node_t *via;
340         ipv4_t dest;
341
342         cp();
343
344         memcpy(&dest, &packet->data[30], sizeof dest);
345         subnet = lookup_subnet_ipv4(&dest);
346
347         if(!subnet) {
348                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown IPv4 destination address %d.%d.%d.%d"),
349                                 source->name, source->hostname,
350                                 dest.x[0],
351                                 dest.x[1],
352                                 dest.x[2],
353                                 dest.x[3]);
354
355                 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_NET_UNKNOWN);
356                 return;
357         }
358         
359         if(subnet->owner == source) {
360                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
361                 return;
362         }
363
364         if(!subnet->owner->status.reachable)
365                 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_NET_UNREACH);
366
367         if(priorityinheritance)
368                 packet->priority = packet->data[15];
369
370         via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
371         
372         if(via && packet->len > via->mtu && via != myself) {
373                 ifdebug(TRAFFIC) logger(LOG_INFO, _("Packet for %s (%s) length %d larger than MTU %d"), subnet->owner->name, subnet->owner->hostname, packet->len, via->mtu);
374                 if(packet->data[20] & 0x40) {
375                         packet->len = via->mtu;
376                         route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
377                 } else {
378                         fragment_ipv4_packet(via, packet);
379                 }
380
381                 return;
382         }
383
384         send_packet(subnet->owner, packet);
385 }
386
387 static void route_ipv4(node_t *source, vpn_packet_t *packet)
388 {
389         cp();
390
391         if(!checklength(source, packet, ether_size + ip_size))
392                 return;
393
394         if(((packet->data[30] & 0xf0) == 0xe0) || (
395                         packet->data[30] == 255 &&
396                         packet->data[31] == 255 &&
397                         packet->data[32] == 255 &&
398                         packet->data[33] == 255))
399                 broadcast_packet(source, packet);
400         else
401                 route_ipv4_unicast(source, packet);
402 }
403
404 /* RFC 2463 */
405
406 static void route_ipv6_unreachable(node_t *source, vpn_packet_t *packet, uint8_t type, uint8_t code)
407 {
408         struct ip6_hdr ip6;
409         struct icmp6_hdr icmp6 = {0};
410         uint16_t checksum;      
411
412         struct {
413                 struct in6_addr ip6_src;        /* source address */
414                 struct in6_addr ip6_dst;        /* destination address */
415                 uint32_t length;
416                 uint32_t next;
417         } pseudo;
418
419         if(ratelimit(3))
420                 return;
421         
422         cp();
423
424         /* Copy headers from packet to structs on the stack */
425
426         memcpy(&ip6, packet->data + ether_size, ip6_size);
427
428         /* Remember original source and destination */
429         
430         pseudo.ip6_src = ip6.ip6_dst;
431         pseudo.ip6_dst = ip6.ip6_src;
432
433         pseudo.length = packet->len - ether_size;
434
435         if(type == ICMP6_PACKET_TOO_BIG)
436                 icmp6.icmp6_mtu = htonl(pseudo.length);
437         
438         if(pseudo.length >= IP_MSS - ip6_size - icmp6_size)
439                 pseudo.length = IP_MSS - ip6_size - icmp6_size;
440         
441         /* Copy first part of original contents to ICMP message */
442         
443         memmove(packet->data + ether_size + ip6_size + icmp6_size, packet->data + ether_size, pseudo.length);
444
445         /* Fill in IPv6 header */
446         
447         ip6.ip6_flow = htonl(0x60000000UL);
448         ip6.ip6_plen = htons(icmp6_size + pseudo.length);
449         ip6.ip6_nxt = IPPROTO_ICMPV6;
450         ip6.ip6_hlim = 255;
451         ip6.ip6_src = pseudo.ip6_src;
452         ip6.ip6_dst = pseudo.ip6_dst;
453
454         /* Fill in ICMP header */
455         
456         icmp6.icmp6_type = type;
457         icmp6.icmp6_code = code;
458         icmp6.icmp6_cksum = 0;
459
460         /* Create pseudo header */
461                 
462         pseudo.length = htonl(icmp6_size + pseudo.length);
463         pseudo.next = htonl(IPPROTO_ICMPV6);
464
465         /* Generate checksum */
466         
467         checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
468         checksum = inet_checksum(&icmp6, icmp6_size, checksum);
469         checksum = inet_checksum(packet->data + ether_size + ip6_size + icmp6_size, ntohl(pseudo.length) - icmp6_size, checksum);
470
471         icmp6.icmp6_cksum = checksum;
472
473         /* Copy structs on stack back to packet */
474
475         memcpy(packet->data + ether_size, &ip6, ip6_size);
476         memcpy(packet->data + ether_size + ip6_size, &icmp6, icmp6_size);
477         
478         packet->len = ether_size + ip6_size + ntohl(pseudo.length);
479         
480         send_packet(source, packet);
481 }
482
483 static void route_ipv6_unicast(node_t *source, vpn_packet_t *packet)
484 {
485         subnet_t *subnet;
486         node_t *via;
487         ipv6_t dest;
488
489         cp();
490
491         memcpy(&dest, &packet->data[38], sizeof dest);
492         subnet = lookup_subnet_ipv6(&dest);
493
494         if(!subnet) {
495                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown IPv6 destination address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"),
496                                 source->name, source->hostname,
497                                 ntohs(dest.x[0]),
498                                 ntohs(dest.x[1]),
499                                 ntohs(dest.x[2]),
500                                 ntohs(dest.x[3]),
501                                 ntohs(dest.x[4]),
502                                 ntohs(dest.x[5]),
503                                 ntohs(dest.x[6]),
504                                 ntohs(dest.x[7]));
505
506                 route_ipv6_unreachable(source, packet, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR);
507                 return;
508         }
509
510         if(subnet->owner == source) {
511                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
512                 return;
513         }
514
515         if(!subnet->owner->status.reachable)
516                 route_ipv6_unreachable(source, packet, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOROUTE);
517
518         via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
519         
520         if(via && packet->len > via->mtu && via != myself) {
521                 ifdebug(TRAFFIC) logger(LOG_INFO, _("Packet for %s (%s) length %d larger than MTU %d"), subnet->owner->name, subnet->owner->hostname, packet->len, via->mtu);
522                 packet->len = via->mtu;
523                 route_ipv6_unreachable(source, packet, ICMP6_PACKET_TOO_BIG, 0);
524                 return;
525         }
526
527         send_packet(subnet->owner, packet);
528 }
529
530 /* RFC 2461 */
531
532 static void route_neighborsol(node_t *source, vpn_packet_t *packet)
533 {
534         struct ip6_hdr ip6;
535         struct nd_neighbor_solicit ns;
536         struct nd_opt_hdr opt;
537         subnet_t *subnet;
538         uint16_t checksum;
539         bool has_opt;
540
541         struct {
542                 struct in6_addr ip6_src;        /* source address */
543                 struct in6_addr ip6_dst;        /* destination address */
544                 uint32_t length;
545                 uint32_t next;
546         } pseudo;
547
548         cp();
549
550         if(!checklength(source, packet, ether_size + ip6_size + ns_size))
551                 return;
552         
553         has_opt = packet->len >= ether_size + ip6_size + ns_size + opt_size + ETH_ALEN;
554         
555         if(source != myself) {
556                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got neighbor solicitation request from %s (%s) while in router mode!"), source->name, source->hostname);
557                 return;
558         }
559
560         /* Copy headers from packet to structs on the stack */
561
562         memcpy(&ip6, packet->data + ether_size, ip6_size);
563         memcpy(&ns, packet->data + ether_size + ip6_size, ns_size);
564         if(has_opt)
565                 memcpy(&opt, packet->data + ether_size + ip6_size + ns_size, opt_size);
566
567         /* First, snatch the source address from the neighbor solicitation packet */
568
569         if(overwrite_mac)
570                 memcpy(mymac.x, packet->data + ETH_ALEN, ETH_ALEN);
571
572         /* Check if this is a valid neighbor solicitation request */
573
574         if(ns.nd_ns_hdr.icmp6_type != ND_NEIGHBOR_SOLICIT ||
575            (has_opt && opt.nd_opt_type != ND_OPT_SOURCE_LINKADDR)) {
576                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: received unknown type neighbor solicitation request"));
577                 return;
578         }
579
580         /* Create pseudo header */
581
582         pseudo.ip6_src = ip6.ip6_src;
583         pseudo.ip6_dst = ip6.ip6_dst;
584         if(has_opt)
585                 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
586         else
587                 pseudo.length = htonl(ns_size);
588         pseudo.next = htonl(IPPROTO_ICMPV6);
589
590         /* Generate checksum */
591
592         checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
593         checksum = inet_checksum(&ns, ns_size, checksum);
594         if(has_opt) {
595                 checksum = inet_checksum(&opt, opt_size, checksum);
596                 checksum = inet_checksum(packet->data + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
597         }
598
599         if(checksum) {
600                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: checksum error for neighbor solicitation request"));
601                 return;
602         }
603
604         /* Check if the IPv6 address exists on the VPN */
605
606         subnet = lookup_subnet_ipv6((ipv6_t *) &ns.nd_ns_target);
607
608         if(!subnet) {
609                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: neighbor solicitation request for unknown address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"),
610                                    ntohs(((uint16_t *) &ns.nd_ns_target)[0]),
611                                    ntohs(((uint16_t *) &ns.nd_ns_target)[1]),
612                                    ntohs(((uint16_t *) &ns.nd_ns_target)[2]),
613                                    ntohs(((uint16_t *) &ns.nd_ns_target)[3]),
614                                    ntohs(((uint16_t *) &ns.nd_ns_target)[4]),
615                                    ntohs(((uint16_t *) &ns.nd_ns_target)[5]),
616                                    ntohs(((uint16_t *) &ns.nd_ns_target)[6]),
617                                    ntohs(((uint16_t *) &ns.nd_ns_target)[7]));
618
619                 return;
620         }
621
622         /* Check if it is for our own subnet */
623
624         if(subnet->owner == myself)
625                 return;                                 /* silently ignore */
626
627         /* Create neighbor advertation reply */
628
629         memcpy(packet->data, packet->data + ETH_ALEN, ETH_ALEN);        /* copy destination address */
630         packet->data[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
631
632         ip6.ip6_dst = ip6.ip6_src;                      /* swap destination and source protocoll address */
633         ip6.ip6_src = ns.nd_ns_target;
634
635         if(has_opt)
636                 memcpy(packet->data + ether_size + ip6_size + ns_size + opt_size, packet->data + ETH_ALEN, ETH_ALEN);   /* add fake source hard addr */
637
638         ns.nd_ns_cksum = 0;
639         ns.nd_ns_type = ND_NEIGHBOR_ADVERT;
640         ns.nd_ns_reserved = htonl(0x40000000UL);        /* Set solicited flag */
641         opt.nd_opt_type = ND_OPT_TARGET_LINKADDR;
642
643         /* Create pseudo header */
644
645         pseudo.ip6_src = ip6.ip6_src;
646         pseudo.ip6_dst = ip6.ip6_dst;
647         if(has_opt)
648                 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
649         else
650                 pseudo.length = htonl(ns_size);
651         pseudo.next = htonl(IPPROTO_ICMPV6);
652
653         /* Generate checksum */
654
655         checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
656         checksum = inet_checksum(&ns, ns_size, checksum);
657         if(has_opt) {
658                 checksum = inet_checksum(&opt, opt_size, checksum);
659                 checksum = inet_checksum(packet->data + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
660         }
661
662         ns.nd_ns_hdr.icmp6_cksum = checksum;
663
664         /* Copy structs on stack back to packet */
665
666         memcpy(packet->data + ether_size, &ip6, ip6_size);
667         memcpy(packet->data + ether_size + ip6_size, &ns, ns_size);
668         if(has_opt)
669                 memcpy(packet->data + ether_size + ip6_size + ns_size, &opt, opt_size);
670
671         send_packet(source, packet);
672 }
673
674 static void route_ipv6(node_t *source, vpn_packet_t *packet)
675 {
676         cp();
677
678         if(!checklength(source, packet, ether_size + ip6_size))
679                 return;
680
681         if(packet->data[20] == IPPROTO_ICMPV6 && checklength(source, packet, ether_size + ip6_size + icmp6_size) && packet->data[54] == ND_NEIGHBOR_SOLICIT) {
682                 route_neighborsol(source, packet);
683                 return;
684         }
685
686         if(packet->data[38] == 255)
687                 broadcast_packet(source, packet);
688         else
689                 route_ipv6_unicast(source, packet);
690 }
691
692 /* RFC 826 */
693
694 static void route_arp(node_t *source, vpn_packet_t *packet)
695 {
696         struct ether_arp arp;
697         subnet_t *subnet;
698         struct in_addr addr;
699
700         cp();
701
702         if(!checklength(source, packet, ether_size + arp_size))
703                 return;
704
705         if(source != myself) {
706                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got ARP request from %s (%s) while in router mode!"), source->name, source->hostname);
707                 return;
708         }
709
710         /* First, snatch the source address from the ARP packet */
711
712         if(overwrite_mac)
713                 memcpy(mymac.x, packet->data + ETH_ALEN, ETH_ALEN);
714
715         /* Copy headers from packet to structs on the stack */
716
717         memcpy(&arp, packet->data + ether_size, arp_size);
718
719         /* Check if this is a valid ARP request */
720
721         if(ntohs(arp.arp_hrd) != ARPHRD_ETHER || ntohs(arp.arp_pro) != ETH_P_IP ||
722            arp.arp_hln != ETH_ALEN || arp.arp_pln != sizeof addr || ntohs(arp.arp_op) != ARPOP_REQUEST) {
723                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: received unknown type ARP request"));
724                 return;
725         }
726
727         /* Check if the IPv4 address exists on the VPN */
728
729         subnet = lookup_subnet_ipv4((ipv4_t *) &arp.arp_tpa);
730
731         if(!subnet) {
732                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: ARP request for unknown address %d.%d.%d.%d"),
733                                    arp.arp_tpa[0], arp.arp_tpa[1], arp.arp_tpa[2],
734                                    arp.arp_tpa[3]);
735                 return;
736         }
737
738         /* Check if it is for our own subnet */
739
740         if(subnet->owner == myself)
741                 return;                                 /* silently ignore */
742
743         memcpy(packet->data, packet->data + ETH_ALEN, ETH_ALEN);        /* copy destination address */
744         packet->data[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
745
746         memcpy(&addr, arp.arp_tpa, sizeof addr);        /* save protocol addr */
747         memcpy(arp.arp_tpa, arp.arp_spa, sizeof addr);  /* swap destination and source protocol address */
748         memcpy(arp.arp_spa, &addr, sizeof addr);        /* ... */
749
750         memcpy(arp.arp_tha, arp.arp_sha, ETH_ALEN);     /* set target hard/proto addr */
751         memcpy(arp.arp_sha, packet->data + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
752         arp.arp_op = htons(ARPOP_REPLY);
753
754         /* Copy structs on stack back to packet */
755
756         memcpy(packet->data + ether_size, &arp, arp_size);
757
758         send_packet(source, packet);
759 }
760
761 void route(node_t *source, vpn_packet_t *packet)
762 {
763         cp();
764
765         if(!checklength(source, packet, ether_size))
766                 return;
767
768         switch (routing_mode) {
769                 case RMODE_ROUTER:
770                         {
771                                 uint16_t type;
772
773                                 type = ntohs(*((uint16_t *)(&packet->data[12])));
774                                 switch (type) {
775                                         case ETH_P_ARP:
776                                                 route_arp(source, packet);
777                                                 break;
778
779                                         case ETH_P_IP:
780                                                 route_ipv4(source, packet);
781                                                 break;
782
783                                         case ETH_P_IPV6:
784                                                 route_ipv6(source, packet);
785                                                 break;
786
787                                         default:
788                                                 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown type %hx"), source->name, source->hostname, type);
789                                                 break;
790                                 }
791                         }
792                         break;
793
794                 case RMODE_SWITCH:
795                         route_mac(source, packet);
796                         break;
797
798                 case RMODE_HUB:
799                         broadcast_packet(source, packet);
800                         break;
801         }
802 }