3 Copyright (C) 2000-2005 Ivo Timmermans,
4 2000-2013 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "connection.h"
24 #include "control_common.h"
36 rmode_t routing_mode = RMODE_ROUTER;
37 fmode_t forwarding_mode = FMODE_INTERNAL;
38 bmode_t broadcast_mode = BMODE_MST;
39 bool decrement_ttl = false;
40 bool directonly = false;
41 bool priorityinheritance = false;
43 bool overwrite_mac = false;
44 mac_t mymac = {{0xFE, 0xFD, 0, 0, 0, 0}};
47 /* Sizes of various headers */
49 static const size_t ether_size = sizeof(struct ether_header);
50 static const size_t arp_size = sizeof(struct ether_arp);
51 static const size_t ip_size = sizeof(struct ip);
52 static const size_t icmp_size = sizeof(struct icmp) - sizeof(struct ip);
53 static const size_t ip6_size = sizeof(struct ip6_hdr);
54 static const size_t icmp6_size = sizeof(struct icmp6_hdr);
55 static const size_t ns_size = sizeof(struct nd_neighbor_solicit);
56 static const size_t opt_size = sizeof(struct nd_opt_hdr);
59 #define MAX(a, b) ((a) > (b) ? (a) : (b))
62 static timeout_t age_subnets_timeout;
66 static uint16_t inet_checksum(void *data, int len, uint16_t prevsum) {
68 uint32_t checksum = prevsum ^ 0xFFFF;
76 checksum += *(uint8_t *)p;
79 checksum = (checksum & 0xFFFF) + (checksum >> 16);
84 static bool ratelimit(int frequency) {
85 static time_t lasttime = 0;
88 if(lasttime == now.tv_sec) {
89 if(count >= frequency)
92 lasttime = now.tv_sec;
100 static bool checklength(node_t *source, vpn_packet_t *packet, length_t length) {
101 if(packet->len < length) {
102 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got too short packet from %s (%s)", source->name, source->hostname);
108 static void clamp_mss(const node_t *source, const node_t *via, vpn_packet_t *packet) {
109 if(!source || !via || !(via->options & OPTION_CLAMP_MSS))
112 uint16_t mtu = source->mtu;
113 if(via != myself && via->mtu < mtu)
116 /* Find TCP header */
117 int start = ether_size;
118 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
120 if(type == ETH_P_8021Q) {
122 type = DATA(packet)[16] << 8 | DATA(packet)[17];
125 if(type == ETH_P_IP && DATA(packet)[start + 9] == 6)
126 start += (DATA(packet)[start] & 0xf) * 4;
127 else if(type == ETH_P_IPV6 && DATA(packet)[start + 6] == 6)
132 if(packet->len <= start + 20)
135 /* Use data offset field to calculate length of options field */
136 int len = ((DATA(packet)[start + 12] >> 4) - 5) * 4;
138 if(packet->len < start + 20 + len)
141 /* Search for MSS option header */
142 for(int i = 0; i < len;) {
143 if(DATA(packet)[start + 20 + i] == 0)
146 if(DATA(packet)[start + 20 + i] == 1) {
151 if(i > len - 2 || i > len - DATA(packet)[start + 21 + i])
154 if(DATA(packet)[start + 20 + i] != 2) {
155 if(DATA(packet)[start + 21 + i] < 2)
157 i += DATA(packet)[start + 21 + i];
161 if(DATA(packet)[start + 21] != 4)
165 uint16_t oldmss = DATA(packet)[start + 22 + i] << 8 | DATA(packet)[start + 23 + i];
166 uint16_t newmss = mtu - start - 20;
167 uint16_t csum = DATA(packet)[start + 16] << 8 | DATA(packet)[start + 17];
172 logger(DEBUG_TRAFFIC, LOG_INFO, "Clamping MSS of packet from %s to %s to %d", source->name, via->name, newmss);
174 /* Update the MSS value and the checksum */
175 DATA(packet)[start + 22 + i] = newmss >> 8;
176 DATA(packet)[start + 23 + i] = newmss & 0xff;
181 DATA(packet)[start + 16] = csum >> 8;
182 DATA(packet)[start + 17] = csum & 0xff;
187 static void swap_mac_addresses(vpn_packet_t *packet) {
189 memcpy(&tmp, &DATA(packet)[0], sizeof tmp);
190 memcpy(&DATA(packet)[0], &DATA(packet)[6], sizeof tmp);
191 memcpy(&DATA(packet)[6], &tmp, sizeof tmp);
194 static void age_subnets(void *data) {
197 for splay_each(subnet_t, s, myself->subnet_tree) {
198 if(s->expires && s->expires < now.tv_sec) {
199 if(debug_level >= DEBUG_TRAFFIC) {
200 char netstr[MAXNETSTR];
201 if(net2str(netstr, sizeof netstr, s))
202 logger(DEBUG_TRAFFIC, LOG_INFO, "Subnet %s expired", netstr);
205 for list_each(connection_t, c, connection_list)
207 send_del_subnet(c, s);
209 subnet_del(myself, s);
217 timeout_set(&age_subnets_timeout, &(struct timeval){10, rand() % 100000});
220 static void learn_mac(mac_t *address) {
221 subnet_t *subnet = lookup_subnet_mac(myself, address);
223 /* If we don't know this MAC address yet, store it */
226 logger(DEBUG_TRAFFIC, LOG_INFO, "Learned new MAC address %x:%x:%x:%x:%x:%x",
227 address->x[0], address->x[1], address->x[2], address->x[3],
228 address->x[4], address->x[5]);
230 subnet = new_subnet();
231 subnet->type = SUBNET_MAC;
232 subnet->expires = now.tv_sec + macexpire;
233 subnet->net.mac.address = *address;
235 subnet_add(myself, subnet);
236 subnet_update(myself, subnet, true);
238 /* And tell all other tinc daemons it's our MAC */
240 for list_each(connection_t, c, connection_list)
242 send_add_subnet(c, subnet);
244 timeout_add(&age_subnets_timeout, age_subnets, NULL, &(struct timeval){10, rand() % 100000});
247 subnet->expires = now.tv_sec + macexpire;
253 static void route_ipv4_unreachable(node_t *source, vpn_packet_t *packet, length_t ether_size, uint8_t type, uint8_t code) {
255 struct icmp icmp = {0};
257 struct in_addr ip_src;
258 struct in_addr ip_dst;
264 /* Swap Ethernet source and destination addresses */
266 swap_mac_addresses(packet);
268 /* Copy headers from packet into properly aligned structs on the stack */
270 memcpy(&ip, DATA(packet) + ether_size, ip_size);
272 /* Remember original source and destination */
277 oldlen = packet->len - ether_size;
279 if(type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
280 icmp.icmp_nextmtu = htons(packet->len - ether_size);
282 if(oldlen >= IP_MSS - ip_size - icmp_size)
283 oldlen = IP_MSS - ip_size - icmp_size;
285 /* Copy first part of original contents to ICMP message */
287 memmove(DATA(packet) + ether_size + ip_size + icmp_size, DATA(packet) + ether_size, oldlen);
289 /* Fill in IPv4 header */
292 ip.ip_hl = ip_size / 4;
294 ip.ip_len = htons(ip_size + icmp_size + oldlen);
298 ip.ip_p = IPPROTO_ICMP;
303 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
305 /* Fill in ICMP header */
307 icmp.icmp_type = type;
308 icmp.icmp_code = code;
311 icmp.icmp_cksum = inet_checksum(&icmp, icmp_size, ~0);
312 icmp.icmp_cksum = inet_checksum(DATA(packet) + ether_size + ip_size + icmp_size, oldlen, icmp.icmp_cksum);
314 /* Copy structs on stack back to packet */
316 memcpy(DATA(packet) + ether_size, &ip, ip_size);
317 memcpy(DATA(packet) + ether_size + ip_size, &icmp, icmp_size);
319 packet->len = ether_size + ip_size + icmp_size + oldlen;
321 send_packet(source, packet);
326 static void fragment_ipv4_packet(node_t *dest, vpn_packet_t *packet, length_t ether_size) {
328 vpn_packet_t fragment;
329 int len, maxlen, todo;
331 uint16_t ip_off, origf;
333 memcpy(&ip, DATA(packet) + ether_size, ip_size);
334 fragment.priority = packet->priority;
335 fragment.offset = DEFAULT_PACKET_OFFSET;
337 if(ip.ip_hl != ip_size / 4)
340 todo = ntohs(ip.ip_len) - ip_size;
342 if(ether_size + ip_size + todo != packet->len) {
343 logger(DEBUG_TRAFFIC, LOG_WARNING, "Length of packet (%d) doesn't match length in IPv4 header (%d)", packet->len, (int)(ether_size + ip_size + todo));
347 logger(DEBUG_TRAFFIC, LOG_INFO, "Fragmenting packet of %d bytes to %s (%s)", packet->len, dest->name, dest->hostname);
349 offset = DATA(packet) + ether_size + ip_size;
350 maxlen = (dest->mtu - ether_size - ip_size) & ~0x7;
351 ip_off = ntohs(ip.ip_off);
352 origf = ip_off & ~IP_OFFMASK;
353 ip_off &= IP_OFFMASK;
356 len = todo > maxlen ? maxlen : todo;
357 memcpy(DATA(&fragment) + ether_size + ip_size, offset, len);
361 ip.ip_len = htons(ip_size + len);
362 ip.ip_off = htons(ip_off | origf | (todo ? IP_MF : 0));
364 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
365 memcpy(DATA(&fragment), DATA(packet), ether_size);
366 memcpy(DATA(&fragment) + ether_size, &ip, ip_size);
367 fragment.len = ether_size + ip_size + len;
369 send_packet(dest, &fragment);
375 static void route_ipv4(node_t *source, vpn_packet_t *packet) {
376 if(!checklength(source, packet, ether_size + ip_size))
383 memcpy(&dest, &DATA(packet)[30], sizeof dest);
384 subnet = lookup_subnet_ipv4(&dest);
387 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet from %s (%s): unknown IPv4 destination address %d.%d.%d.%d",
388 source->name, source->hostname,
394 route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_UNKNOWN);
398 if (!subnet->owner) {
399 broadcast_packet(source, packet);
403 if(subnet->owner == source) {
404 logger(DEBUG_TRAFFIC, LOG_WARNING, "Packet looping back to %s (%s)!", source->name, source->hostname);
408 if(!subnet->owner->status.reachable)
409 return route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_UNREACH);
411 if(forwarding_mode == FMODE_OFF && source != myself && subnet->owner != myself)
412 return route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_ANO);
414 if(priorityinheritance)
415 packet->priority = DATA(packet)[15];
417 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
420 logger(DEBUG_TRAFFIC, LOG_ERR, "Routing loop for packet from %s (%s)!", source->name, source->hostname);
424 if(directonly && subnet->owner != via)
425 return route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_ANO);
427 if(via && packet->len > MAX(via->mtu, 590) && via != myself) {
428 logger(DEBUG_TRAFFIC, LOG_INFO, "Packet for %s (%s) length %d larger than MTU %d", subnet->owner->name, subnet->owner->hostname, packet->len, via->mtu);
429 if(DATA(packet)[20] & 0x40) {
430 packet->len = MAX(via->mtu, 590);
431 route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
433 fragment_ipv4_packet(via, packet, ether_size);
439 clamp_mss(source, via, packet);
441 send_packet(subnet->owner, packet);
446 static void route_ipv6_unreachable(node_t *source, vpn_packet_t *packet, length_t ether_size, uint8_t type, uint8_t code) {
448 struct icmp6_hdr icmp6 = {0};
452 struct in6_addr ip6_src; /* source address */
453 struct in6_addr ip6_dst; /* destination address */
461 /* Swap Ethernet source and destination addresses */
463 swap_mac_addresses(packet);
465 /* Copy headers from packet to structs on the stack */
467 memcpy(&ip6, DATA(packet) + ether_size, ip6_size);
469 /* Remember original source and destination */
471 pseudo.ip6_src = ip6.ip6_dst;
472 pseudo.ip6_dst = ip6.ip6_src;
474 pseudo.length = packet->len - ether_size;
476 if(type == ICMP6_PACKET_TOO_BIG)
477 icmp6.icmp6_mtu = htonl(pseudo.length);
479 if(pseudo.length >= IP_MSS - ip6_size - icmp6_size)
480 pseudo.length = IP_MSS - ip6_size - icmp6_size;
482 /* Copy first part of original contents to ICMP message */
484 memmove(DATA(packet) + ether_size + ip6_size + icmp6_size, DATA(packet) + ether_size, pseudo.length);
486 /* Fill in IPv6 header */
488 ip6.ip6_flow = htonl(0x60000000UL);
489 ip6.ip6_plen = htons(icmp6_size + pseudo.length);
490 ip6.ip6_nxt = IPPROTO_ICMPV6;
492 ip6.ip6_src = pseudo.ip6_src;
493 ip6.ip6_dst = pseudo.ip6_dst;
495 /* Fill in ICMP header */
497 icmp6.icmp6_type = type;
498 icmp6.icmp6_code = code;
499 icmp6.icmp6_cksum = 0;
501 /* Create pseudo header */
503 pseudo.length = htonl(icmp6_size + pseudo.length);
504 pseudo.next = htonl(IPPROTO_ICMPV6);
506 /* Generate checksum */
508 checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
509 checksum = inet_checksum(&icmp6, icmp6_size, checksum);
510 checksum = inet_checksum(DATA(packet) + ether_size + ip6_size + icmp6_size, ntohl(pseudo.length) - icmp6_size, checksum);
512 icmp6.icmp6_cksum = checksum;
514 /* Copy structs on stack back to packet */
516 memcpy(DATA(packet) + ether_size, &ip6, ip6_size);
517 memcpy(DATA(packet) + ether_size + ip6_size, &icmp6, icmp6_size);
519 packet->len = ether_size + ip6_size + ntohl(pseudo.length);
521 send_packet(source, packet);
524 static void route_neighborsol(node_t *source, vpn_packet_t *packet);
526 static void route_ipv6(node_t *source, vpn_packet_t *packet) {
527 if(!checklength(source, packet, ether_size + ip6_size))
530 if(DATA(packet)[20] == IPPROTO_ICMPV6 && checklength(source, packet, ether_size + ip6_size + icmp6_size) && DATA(packet)[54] == ND_NEIGHBOR_SOLICIT) {
531 route_neighborsol(source, packet);
539 memcpy(&dest, &DATA(packet)[38], sizeof dest);
540 subnet = lookup_subnet_ipv6(&dest);
543 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet from %s (%s): unknown IPv6 destination address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
544 source->name, source->hostname,
554 route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR);
558 if (!subnet->owner) {
559 broadcast_packet(source, packet);
563 if(subnet->owner == source) {
564 logger(DEBUG_TRAFFIC, LOG_WARNING, "Packet looping back to %s (%s)!", source->name, source->hostname);
568 if(!subnet->owner->status.reachable)
569 return route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOROUTE);
571 if(forwarding_mode == FMODE_OFF && source != myself && subnet->owner != myself)
572 return route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADMIN);
574 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
577 logger(DEBUG_TRAFFIC, LOG_ERR, "Routing loop for packet from %s (%s)!", source->name, source->hostname);
581 if(directonly && subnet->owner != via)
582 return route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADMIN);
584 if(via && packet->len > MAX(via->mtu, 1294) && via != myself) {
585 logger(DEBUG_TRAFFIC, LOG_INFO, "Packet for %s (%s) length %d larger than MTU %d", subnet->owner->name, subnet->owner->hostname, packet->len, via->mtu);
586 packet->len = MAX(via->mtu, 1294);
587 route_ipv6_unreachable(source, packet, ether_size, ICMP6_PACKET_TOO_BIG, 0);
591 clamp_mss(source, via, packet);
593 send_packet(subnet->owner, packet);
598 static void route_neighborsol(node_t *source, vpn_packet_t *packet) {
600 struct nd_neighbor_solicit ns;
601 struct nd_opt_hdr opt;
607 struct in6_addr ip6_src;
608 struct in6_addr ip6_dst;
613 if(!checklength(source, packet, ether_size + ip6_size + ns_size))
616 has_opt = packet->len >= ether_size + ip6_size + ns_size + opt_size + ETH_ALEN;
618 if(source != myself) {
619 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got neighbor solicitation request from %s (%s) while in router mode!", source->name, source->hostname);
623 /* Copy headers from packet to structs on the stack */
625 memcpy(&ip6, DATA(packet) + ether_size, ip6_size);
626 memcpy(&ns, DATA(packet) + ether_size + ip6_size, ns_size);
628 memcpy(&opt, DATA(packet) + ether_size + ip6_size + ns_size, opt_size);
630 /* First, snatch the source address from the neighbor solicitation packet */
633 memcpy(mymac.x, DATA(packet) + ETH_ALEN, ETH_ALEN);
635 /* Check if this is a valid neighbor solicitation request */
637 if(ns.nd_ns_hdr.icmp6_type != ND_NEIGHBOR_SOLICIT ||
638 (has_opt && opt.nd_opt_type != ND_OPT_SOURCE_LINKADDR)) {
639 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: received unknown type neighbor solicitation request");
643 /* Create pseudo header */
645 pseudo.ip6_src = ip6.ip6_src;
646 pseudo.ip6_dst = ip6.ip6_dst;
648 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
650 pseudo.length = htonl(ns_size);
651 pseudo.next = htonl(IPPROTO_ICMPV6);
653 /* Generate checksum */
655 checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
656 checksum = inet_checksum(&ns, ns_size, checksum);
658 checksum = inet_checksum(&opt, opt_size, checksum);
659 checksum = inet_checksum(DATA(packet) + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
663 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: checksum error for neighbor solicitation request");
667 /* Check if the IPv6 address exists on the VPN */
669 subnet = lookup_subnet_ipv6((ipv6_t *) &ns.nd_ns_target);
672 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: neighbor solicitation request for unknown address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
673 ntohs(((uint16_t *) &ns.nd_ns_target)[0]),
674 ntohs(((uint16_t *) &ns.nd_ns_target)[1]),
675 ntohs(((uint16_t *) &ns.nd_ns_target)[2]),
676 ntohs(((uint16_t *) &ns.nd_ns_target)[3]),
677 ntohs(((uint16_t *) &ns.nd_ns_target)[4]),
678 ntohs(((uint16_t *) &ns.nd_ns_target)[5]),
679 ntohs(((uint16_t *) &ns.nd_ns_target)[6]),
680 ntohs(((uint16_t *) &ns.nd_ns_target)[7]));
685 /* Check if it is for our own subnet */
687 if(subnet->owner == myself)
688 return; /* silently ignore */
690 /* Create neighbor advertation reply */
692 memcpy(DATA(packet), DATA(packet) + ETH_ALEN, ETH_ALEN); /* copy destination address */
693 DATA(packet)[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
695 ip6.ip6_dst = ip6.ip6_src; /* swap destination and source protocoll address */
696 ip6.ip6_src = ns.nd_ns_target;
699 memcpy(DATA(packet) + ether_size + ip6_size + ns_size + opt_size, DATA(packet) + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
702 ns.nd_ns_type = ND_NEIGHBOR_ADVERT;
703 ns.nd_ns_reserved = htonl(0x40000000UL); /* Set solicited flag */
704 opt.nd_opt_type = ND_OPT_TARGET_LINKADDR;
706 /* Create pseudo header */
708 pseudo.ip6_src = ip6.ip6_src;
709 pseudo.ip6_dst = ip6.ip6_dst;
711 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
713 pseudo.length = htonl(ns_size);
714 pseudo.next = htonl(IPPROTO_ICMPV6);
716 /* Generate checksum */
718 checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
719 checksum = inet_checksum(&ns, ns_size, checksum);
721 checksum = inet_checksum(&opt, opt_size, checksum);
722 checksum = inet_checksum(DATA(packet) + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
725 ns.nd_ns_hdr.icmp6_cksum = checksum;
727 /* Copy structs on stack back to packet */
729 memcpy(DATA(packet) + ether_size, &ip6, ip6_size);
730 memcpy(DATA(packet) + ether_size + ip6_size, &ns, ns_size);
732 memcpy(DATA(packet) + ether_size + ip6_size + ns_size, &opt, opt_size);
734 send_packet(source, packet);
739 static void route_arp(node_t *source, vpn_packet_t *packet) {
740 struct ether_arp arp;
744 if(!checklength(source, packet, ether_size + arp_size))
747 if(source != myself) {
748 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got ARP request from %s (%s) while in router mode!", source->name, source->hostname);
752 /* First, snatch the source address from the ARP packet */
755 memcpy(mymac.x, DATA(packet) + ETH_ALEN, ETH_ALEN);
757 /* Copy headers from packet to structs on the stack */
759 memcpy(&arp, DATA(packet) + ether_size, arp_size);
761 /* Check if this is a valid ARP request */
763 if(ntohs(arp.arp_hrd) != ARPHRD_ETHER || ntohs(arp.arp_pro) != ETH_P_IP ||
764 arp.arp_hln != ETH_ALEN || arp.arp_pln != sizeof addr || ntohs(arp.arp_op) != ARPOP_REQUEST) {
765 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: received unknown type ARP request");
769 /* Check if the IPv4 address exists on the VPN */
771 subnet = lookup_subnet_ipv4((ipv4_t *) &arp.arp_tpa);
774 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: ARP request for unknown address %d.%d.%d.%d",
775 arp.arp_tpa[0], arp.arp_tpa[1], arp.arp_tpa[2],
780 /* Check if it is for our own subnet */
782 if(subnet->owner == myself)
783 return; /* silently ignore */
785 memcpy(DATA(packet), DATA(packet) + ETH_ALEN, ETH_ALEN); /* copy destination address */
786 DATA(packet)[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
788 memcpy(&addr, arp.arp_tpa, sizeof addr); /* save protocol addr */
789 memcpy(arp.arp_tpa, arp.arp_spa, sizeof addr); /* swap destination and source protocol address */
790 memcpy(arp.arp_spa, &addr, sizeof addr); /* ... */
792 memcpy(arp.arp_tha, arp.arp_sha, ETH_ALEN); /* set target hard/proto addr */
793 memcpy(arp.arp_sha, DATA(packet) + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
794 arp.arp_op = htons(ARPOP_REPLY);
796 /* Copy structs on stack back to packet */
798 memcpy(DATA(packet) + ether_size, &arp, arp_size);
800 send_packet(source, packet);
803 static void route_mac(node_t *source, vpn_packet_t *packet) {
807 /* Learn source address */
809 if(source == myself) {
811 memcpy(&src, &DATA(packet)[6], sizeof src);
815 /* Lookup destination address */
817 memcpy(&dest, &DATA(packet)[0], sizeof dest);
818 subnet = lookup_subnet_mac(NULL, &dest);
820 if(!subnet || !subnet->owner) {
821 broadcast_packet(source, packet);
825 if(subnet->owner == source) {
826 logger(DEBUG_TRAFFIC, LOG_WARNING, "Packet looping back to %s (%s)!", source->name, source->hostname);
830 if(forwarding_mode == FMODE_OFF && source != myself && subnet->owner != myself)
833 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
835 if(priorityinheritance && type == ETH_P_IP && packet->len >= ether_size + ip_size)
836 packet->priority = DATA(packet)[15];
838 // Handle packets larger than PMTU
840 node_t *via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
842 if(directonly && subnet->owner != via)
845 if(via && packet->len > via->mtu && via != myself) {
846 logger(DEBUG_TRAFFIC, LOG_INFO, "Packet for %s (%s) length %d larger than MTU %d", subnet->owner->name, subnet->owner->hostname, packet->len, via->mtu);
847 length_t ethlen = 14;
849 if(type == ETH_P_8021Q) {
850 type = DATA(packet)[16] << 8 | DATA(packet)[17];
854 if(type == ETH_P_IP && packet->len > 576 + ethlen) {
855 if(DATA(packet)[6 + ethlen] & 0x40) {
856 packet->len = via->mtu;
857 route_ipv4_unreachable(source, packet, ethlen, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
859 fragment_ipv4_packet(via, packet, ethlen);
862 } else if(type == ETH_P_IPV6 && packet->len > 1280 + ethlen) {
863 packet->len = via->mtu;
864 route_ipv6_unreachable(source, packet, ethlen, ICMP6_PACKET_TOO_BIG, 0);
869 clamp_mss(source, via, packet);
871 send_packet(subnet->owner, packet);
874 static void send_pcap(vpn_packet_t *packet) {
877 for list_each(connection_t, c, connection_list) {
882 int len = packet->len;
883 if(c->outmaclength && c->outmaclength < len)
884 len = c->outmaclength;
886 if(send_request(c, "%d %d %d", CONTROL, REQ_PCAP, len))
887 send_meta(c, (char *)DATA(packet), len);
891 static bool do_decrement_ttl(node_t *source, vpn_packet_t *packet) {
892 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
893 length_t ethlen = ether_size;
895 if(type == ETH_P_8021Q) {
896 type = DATA(packet)[16] << 8 | DATA(packet)[17];
902 if(!checklength(source, packet, ethlen + ip_size))
905 if(DATA(packet)[ethlen + 8] < 1) {
906 if(DATA(packet)[ethlen + 11] != IPPROTO_ICMP || DATA(packet)[ethlen + 32] != ICMP_TIME_EXCEEDED)
907 route_ipv4_unreachable(source, packet, ethlen, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL);
911 uint16_t old = DATA(packet)[ethlen + 8] << 8 | DATA(packet)[ethlen + 9];
912 DATA(packet)[ethlen + 8]--;
913 uint16_t new = DATA(packet)[ethlen + 8] << 8 | DATA(packet)[ethlen + 9];
915 uint32_t checksum = DATA(packet)[ethlen + 10] << 8 | DATA(packet)[ethlen + 11];
916 checksum += old + (~new & 0xFFFF);
917 while(checksum >> 16)
918 checksum = (checksum & 0xFFFF) + (checksum >> 16);
919 DATA(packet)[ethlen + 10] = checksum >> 8;
920 DATA(packet)[ethlen + 11] = checksum & 0xff;
925 if(!checklength(source, packet, ethlen + ip6_size))
928 if(DATA(packet)[ethlen + 7] < 1) {
929 if(DATA(packet)[ethlen + 6] != IPPROTO_ICMPV6 || DATA(packet)[ethlen + 40] != ICMP6_TIME_EXCEEDED)
930 route_ipv6_unreachable(source, packet, ethlen, ICMP6_TIME_EXCEEDED, ICMP6_TIME_EXCEED_TRANSIT);
934 DATA(packet)[ethlen + 7]--;
943 void route(node_t *source, vpn_packet_t *packet) {
947 if(forwarding_mode == FMODE_KERNEL && source != myself) {
948 send_packet(myself, packet);
952 if(!checklength(source, packet, ether_size))
955 if(decrement_ttl && source != myself)
956 if(!do_decrement_ttl(source, packet))
959 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
961 switch (routing_mode) {
965 route_arp(source, packet);
969 route_ipv4(source, packet);
973 route_ipv6(source, packet);
977 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet from %s (%s): unknown type %hx", source->name, source->hostname, type);
983 route_mac(source, packet);
987 broadcast_packet(source, packet);