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 swap_mac_addresses(vpn_packet_t *packet) {
110 memcpy(&tmp, &DATA(packet)[0], sizeof tmp);
111 memcpy(&DATA(packet)[0], &DATA(packet)[6], sizeof tmp);
112 memcpy(&DATA(packet)[6], &tmp, sizeof tmp);
117 static void route_ipv4_unreachable(node_t *source, vpn_packet_t *packet, length_t ether_size, uint8_t type, uint8_t code) {
119 struct icmp icmp = {0};
121 struct in_addr ip_src;
122 struct in_addr ip_dst;
128 /* Swap Ethernet source and destination addresses */
130 swap_mac_addresses(packet);
132 /* Copy headers from packet into properly aligned structs on the stack */
134 memcpy(&ip, DATA(packet) + ether_size, ip_size);
136 /* Remember original source and destination */
141 /* Try to reply with an IP address assigned to the local machine */
143 if (type == ICMP_TIME_EXCEEDED && code == ICMP_EXC_TTL) {
144 int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
146 struct sockaddr_in addr;
147 memset(&addr, 0, sizeof(addr));
148 addr.sin_family = AF_INET;
149 addr.sin_addr = ip.ip_src;
150 if (!connect(sockfd, (const struct sockaddr*) &addr, sizeof(addr))) {
151 memset(&addr, 0, sizeof(addr));
152 addr.sin_family = AF_INET;
153 socklen_t addrlen = sizeof(addr);
154 if (!getsockname(sockfd, (struct sockaddr*) &addr, &addrlen) && addrlen <= sizeof(addr)) {
155 ip_dst = addr.sin_addr;
162 oldlen = packet->len - ether_size;
164 if(type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
165 icmp.icmp_nextmtu = htons(packet->len - ether_size);
167 if(oldlen >= IP_MSS - ip_size - icmp_size)
168 oldlen = IP_MSS - ip_size - icmp_size;
170 /* Copy first part of original contents to ICMP message */
172 memmove(DATA(packet) + ether_size + ip_size + icmp_size, DATA(packet) + ether_size, oldlen);
174 /* Fill in IPv4 header */
177 ip.ip_hl = ip_size / 4;
179 ip.ip_len = htons(ip_size + icmp_size + oldlen);
183 ip.ip_p = IPPROTO_ICMP;
188 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
190 /* Fill in ICMP header */
192 icmp.icmp_type = type;
193 icmp.icmp_code = code;
196 icmp.icmp_cksum = inet_checksum(&icmp, icmp_size, ~0);
197 icmp.icmp_cksum = inet_checksum(DATA(packet) + ether_size + ip_size + icmp_size, oldlen, icmp.icmp_cksum);
199 /* Copy structs on stack back to packet */
201 memcpy(DATA(packet) + ether_size, &ip, ip_size);
202 memcpy(DATA(packet) + ether_size + ip_size, &icmp, icmp_size);
204 packet->len = ether_size + ip_size + icmp_size + oldlen;
206 send_packet(source, packet);
211 static void route_ipv6_unreachable(node_t *source, vpn_packet_t *packet, length_t ether_size, uint8_t type, uint8_t code) {
213 struct icmp6_hdr icmp6 = {0};
217 struct in6_addr ip6_src; /* source address */
218 struct in6_addr ip6_dst; /* destination address */
226 /* Swap Ethernet source and destination addresses */
228 swap_mac_addresses(packet);
230 /* Copy headers from packet to structs on the stack */
232 memcpy(&ip6, DATA(packet) + ether_size, ip6_size);
234 /* Remember original source and destination */
236 pseudo.ip6_src = ip6.ip6_dst;
237 pseudo.ip6_dst = ip6.ip6_src;
239 /* Try to reply with an IP address assigned to the local machine */
241 if (type == ICMP6_TIME_EXCEEDED && code == ICMP6_TIME_EXCEED_TRANSIT) {
242 int sockfd = socket(AF_INET6, SOCK_DGRAM, 0);
244 struct sockaddr_in6 addr;
245 memset(&addr, 0, sizeof(addr));
246 addr.sin6_family = AF_INET6;
247 addr.sin6_addr = ip6.ip6_src;
248 if (!connect(sockfd, (const struct sockaddr*) &addr, sizeof(addr))) {
249 memset(&addr, 0, sizeof(addr));
250 addr.sin6_family = AF_INET6;
251 socklen_t addrlen = sizeof(addr);
252 if (!getsockname(sockfd, (struct sockaddr*) &addr, &addrlen) && addrlen <= sizeof(addr)) {
253 pseudo.ip6_src = addr.sin6_addr;
260 pseudo.length = packet->len - ether_size;
262 if(type == ICMP6_PACKET_TOO_BIG)
263 icmp6.icmp6_mtu = htonl(pseudo.length);
265 if(pseudo.length >= IP_MSS - ip6_size - icmp6_size)
266 pseudo.length = IP_MSS - ip6_size - icmp6_size;
268 /* Copy first part of original contents to ICMP message */
270 memmove(DATA(packet) + ether_size + ip6_size + icmp6_size, DATA(packet) + ether_size, pseudo.length);
272 /* Fill in IPv6 header */
274 ip6.ip6_flow = htonl(0x60000000UL);
275 ip6.ip6_plen = htons(icmp6_size + pseudo.length);
276 ip6.ip6_nxt = IPPROTO_ICMPV6;
278 ip6.ip6_src = pseudo.ip6_src;
279 ip6.ip6_dst = pseudo.ip6_dst;
281 /* Fill in ICMP header */
283 icmp6.icmp6_type = type;
284 icmp6.icmp6_code = code;
285 icmp6.icmp6_cksum = 0;
287 /* Create pseudo header */
289 pseudo.length = htonl(icmp6_size + pseudo.length);
290 pseudo.next = htonl(IPPROTO_ICMPV6);
292 /* Generate checksum */
294 checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
295 checksum = inet_checksum(&icmp6, icmp6_size, checksum);
296 checksum = inet_checksum(DATA(packet) + ether_size + ip6_size + icmp6_size, ntohl(pseudo.length) - icmp6_size, checksum);
298 icmp6.icmp6_cksum = checksum;
300 /* Copy structs on stack back to packet */
302 memcpy(DATA(packet) + ether_size, &ip6, ip6_size);
303 memcpy(DATA(packet) + ether_size + ip6_size, &icmp6, icmp6_size);
305 packet->len = ether_size + ip6_size + ntohl(pseudo.length);
307 send_packet(source, packet);
310 static bool do_decrement_ttl(node_t *source, vpn_packet_t *packet) {
311 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
312 length_t ethlen = ether_size;
314 if(type == ETH_P_8021Q) {
315 type = DATA(packet)[16] << 8 | DATA(packet)[17];
321 if(!checklength(source, packet, ethlen + ip_size))
324 if(DATA(packet)[ethlen + 8] <= 1) {
325 if(DATA(packet)[ethlen + 11] != IPPROTO_ICMP || DATA(packet)[ethlen + 32] != ICMP_TIME_EXCEEDED)
326 route_ipv4_unreachable(source, packet, ethlen, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL);
330 uint16_t old = DATA(packet)[ethlen + 8] << 8 | DATA(packet)[ethlen + 9];
331 DATA(packet)[ethlen + 8]--;
332 uint16_t new = DATA(packet)[ethlen + 8] << 8 | DATA(packet)[ethlen + 9];
334 uint32_t checksum = DATA(packet)[ethlen + 10] << 8 | DATA(packet)[ethlen + 11];
335 checksum += old + (~new & 0xFFFF);
336 while(checksum >> 16)
337 checksum = (checksum & 0xFFFF) + (checksum >> 16);
338 DATA(packet)[ethlen + 10] = checksum >> 8;
339 DATA(packet)[ethlen + 11] = checksum & 0xff;
344 if(!checklength(source, packet, ethlen + ip6_size))
347 if(DATA(packet)[ethlen + 7] <= 1) {
348 if(DATA(packet)[ethlen + 6] != IPPROTO_ICMPV6 || DATA(packet)[ethlen + 40] != ICMP6_TIME_EXCEEDED)
349 route_ipv6_unreachable(source, packet, ethlen, ICMP6_TIME_EXCEEDED, ICMP6_TIME_EXCEED_TRANSIT);
353 DATA(packet)[ethlen + 7]--;
362 static void clamp_mss(const node_t *source, const node_t *via, vpn_packet_t *packet) {
363 if(!source || !via || !(via->options & OPTION_CLAMP_MSS))
366 uint16_t mtu = source->mtu;
367 if(via != myself && via->mtu < mtu)
370 /* Find TCP header */
371 int start = ether_size;
372 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
374 if(type == ETH_P_8021Q) {
376 type = DATA(packet)[16] << 8 | DATA(packet)[17];
379 if(type == ETH_P_IP && DATA(packet)[start + 9] == 6)
380 start += (DATA(packet)[start] & 0xf) * 4;
381 else if(type == ETH_P_IPV6 && DATA(packet)[start + 6] == 6)
386 if(packet->len <= start + 20)
389 /* Use data offset field to calculate length of options field */
390 int len = ((DATA(packet)[start + 12] >> 4) - 5) * 4;
392 if(packet->len < start + 20 + len)
395 /* Search for MSS option header */
396 for(int i = 0; i < len;) {
397 if(DATA(packet)[start + 20 + i] == 0)
400 if(DATA(packet)[start + 20 + i] == 1) {
405 if(i > len - 2 || i > len - DATA(packet)[start + 21 + i])
408 if(DATA(packet)[start + 20 + i] != 2) {
409 if(DATA(packet)[start + 21 + i] < 2)
411 i += DATA(packet)[start + 21 + i];
415 if(DATA(packet)[start + 21] != 4)
419 uint16_t oldmss = DATA(packet)[start + 22 + i] << 8 | DATA(packet)[start + 23 + i];
420 uint16_t newmss = mtu - start - 20;
421 uint32_t csum = DATA(packet)[start + 16] << 8 | DATA(packet)[start + 17];
426 logger(DEBUG_TRAFFIC, LOG_INFO, "Clamping MSS of packet from %s to %s to %d", source->name, via->name, newmss);
428 /* Update the MSS value and the checksum */
429 DATA(packet)[start + 22 + i] = newmss >> 8;
430 DATA(packet)[start + 23 + i] = newmss & 0xff;
432 csum += oldmss ^ 0xffff;
434 csum = (csum & 0xffff) + (csum >> 16);
437 DATA(packet)[start + 16] = csum >> 8;
438 DATA(packet)[start + 17] = csum;
443 static void age_subnets(void *data) {
446 for splay_each(subnet_t, s, myself->subnet_tree) {
447 if(s->expires && s->expires < now.tv_sec) {
448 if(debug_level >= DEBUG_TRAFFIC) {
449 char netstr[MAXNETSTR];
450 if(net2str(netstr, sizeof netstr, s))
451 logger(DEBUG_TRAFFIC, LOG_INFO, "Subnet %s expired", netstr);
454 for list_each(connection_t, c, connection_list)
456 send_del_subnet(c, s);
458 subnet_del(myself, s);
466 timeout_set(&age_subnets_timeout, &(struct timeval){10, rand() % 100000});
469 static void learn_mac(mac_t *address) {
470 subnet_t *subnet = lookup_subnet_mac(myself, address);
472 /* If we don't know this MAC address yet, store it */
475 logger(DEBUG_TRAFFIC, LOG_INFO, "Learned new MAC address %x:%x:%x:%x:%x:%x",
476 address->x[0], address->x[1], address->x[2], address->x[3],
477 address->x[4], address->x[5]);
479 subnet = new_subnet();
480 subnet->type = SUBNET_MAC;
481 subnet->expires = now.tv_sec + macexpire;
482 subnet->net.mac.address = *address;
484 subnet_add(myself, subnet);
485 subnet_update(myself, subnet, true);
487 /* And tell all other tinc daemons it's our MAC */
489 for list_each(connection_t, c, connection_list)
491 send_add_subnet(c, subnet);
493 timeout_add(&age_subnets_timeout, age_subnets, NULL, &(struct timeval){10, rand() % 100000});
496 subnet->expires = now.tv_sec + macexpire;
500 static void route_broadcast(node_t *source, vpn_packet_t *packet) {
501 if(decrement_ttl && source != myself)
502 if(!do_decrement_ttl(source, packet))
505 broadcast_packet(source, packet);
510 static void fragment_ipv4_packet(node_t *dest, vpn_packet_t *packet, length_t ether_size) {
512 vpn_packet_t fragment;
515 uint16_t ip_off, origf;
517 memcpy(&ip, DATA(packet) + ether_size, ip_size);
518 fragment.priority = packet->priority;
519 fragment.offset = DEFAULT_PACKET_OFFSET;
521 if(ip.ip_hl != ip_size / 4)
524 todo = ntohs(ip.ip_len) - ip_size;
526 if(ether_size + ip_size + todo != packet->len) {
527 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));
531 logger(DEBUG_TRAFFIC, LOG_INFO, "Fragmenting packet of %d bytes to %s (%s)", packet->len, dest->name, dest->hostname);
533 offset = DATA(packet) + ether_size + ip_size;
534 maxlen = (dest->mtu - ether_size - ip_size) & ~0x7;
535 ip_off = ntohs(ip.ip_off);
536 origf = ip_off & ~IP_OFFMASK;
537 ip_off &= IP_OFFMASK;
540 int len = todo > maxlen ? maxlen : todo;
541 memcpy(DATA(&fragment) + ether_size + ip_size, offset, len);
545 ip.ip_len = htons(ip_size + len);
546 ip.ip_off = htons(ip_off | origf | (todo ? IP_MF : 0));
548 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
549 memcpy(DATA(&fragment), DATA(packet), ether_size);
550 memcpy(DATA(&fragment) + ether_size, &ip, ip_size);
551 fragment.len = ether_size + ip_size + len;
553 send_packet(dest, &fragment);
559 static void route_ipv4(node_t *source, vpn_packet_t *packet) {
560 if(!checklength(source, packet, ether_size + ip_size))
567 memcpy(&dest, &DATA(packet)[30], sizeof dest);
568 subnet = lookup_subnet_ipv4(&dest);
571 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet from %s (%s): unknown IPv4 destination address %d.%d.%d.%d",
572 source->name, source->hostname,
578 route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_UNKNOWN);
582 if (!subnet->owner) {
583 route_broadcast(source, packet);
587 if(subnet->owner == source) {
588 logger(DEBUG_TRAFFIC, LOG_WARNING, "Packet looping back to %s (%s)!", source->name, source->hostname);
592 if(!subnet->owner->status.reachable)
593 return route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_UNREACH);
595 if(forwarding_mode == FMODE_OFF && source != myself && subnet->owner != myself)
596 return route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_ANO);
598 if(decrement_ttl && source != myself && subnet->owner != myself)
599 if(!do_decrement_ttl(source, packet))
602 if(priorityinheritance)
603 packet->priority = DATA(packet)[15];
605 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
608 logger(DEBUG_TRAFFIC, LOG_ERR, "Routing loop for packet from %s (%s)!", source->name, source->hostname);
612 if(directonly && subnet->owner != via)
613 return route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_NET_ANO);
615 if(via && packet->len > MAX(via->mtu, 590) && via != myself) {
616 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);
617 if(DATA(packet)[20] & 0x40) {
618 packet->len = MAX(via->mtu, 590);
619 route_ipv4_unreachable(source, packet, ether_size, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
621 fragment_ipv4_packet(via, packet, ether_size);
627 clamp_mss(source, via, packet);
629 send_packet(subnet->owner, packet);
632 static void route_neighborsol(node_t *source, vpn_packet_t *packet);
634 static void route_ipv6(node_t *source, vpn_packet_t *packet) {
635 if(!checklength(source, packet, ether_size + ip6_size))
638 if(DATA(packet)[20] == IPPROTO_ICMPV6 && checklength(source, packet, ether_size + ip6_size + icmp6_size) && DATA(packet)[54] == ND_NEIGHBOR_SOLICIT) {
639 route_neighborsol(source, packet);
647 memcpy(&dest, &DATA(packet)[38], sizeof dest);
648 subnet = lookup_subnet_ipv6(&dest);
651 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet from %s (%s): unknown IPv6 destination address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
652 source->name, source->hostname,
662 route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR);
666 if (!subnet->owner) {
667 route_broadcast(source, packet);
671 if(subnet->owner == source) {
672 logger(DEBUG_TRAFFIC, LOG_WARNING, "Packet looping back to %s (%s)!", source->name, source->hostname);
676 if(!subnet->owner->status.reachable)
677 return route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOROUTE);
679 if(forwarding_mode == FMODE_OFF && source != myself && subnet->owner != myself)
680 return route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADMIN);
682 if(decrement_ttl && source != myself && subnet->owner != myself)
683 if(!do_decrement_ttl(source, packet))
686 if(priorityinheritance)
687 packet->priority = ((DATA(packet)[14] & 0x0f) << 4) | (DATA(packet)[15] >> 4);
689 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
692 logger(DEBUG_TRAFFIC, LOG_ERR, "Routing loop for packet from %s (%s)!", source->name, source->hostname);
696 if(directonly && subnet->owner != via)
697 return route_ipv6_unreachable(source, packet, ether_size, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADMIN);
699 if(via && packet->len > MAX(via->mtu, 1294) && via != myself) {
700 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);
701 packet->len = MAX(via->mtu, 1294);
702 route_ipv6_unreachable(source, packet, ether_size, ICMP6_PACKET_TOO_BIG, 0);
706 clamp_mss(source, via, packet);
708 send_packet(subnet->owner, packet);
713 static void route_neighborsol(node_t *source, vpn_packet_t *packet) {
715 struct nd_neighbor_solicit ns;
716 struct nd_opt_hdr opt;
722 struct in6_addr ip6_src;
723 struct in6_addr ip6_dst;
728 if(!checklength(source, packet, ether_size + ip6_size + ns_size))
731 has_opt = packet->len >= ether_size + ip6_size + ns_size + opt_size + ETH_ALEN;
733 if(source != myself) {
734 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got neighbor solicitation request from %s (%s) while in router mode!", source->name, source->hostname);
738 /* Copy headers from packet to structs on the stack */
740 memcpy(&ip6, DATA(packet) + ether_size, ip6_size);
741 memcpy(&ns, DATA(packet) + ether_size + ip6_size, ns_size);
743 memcpy(&opt, DATA(packet) + ether_size + ip6_size + ns_size, opt_size);
745 /* First, snatch the source address from the neighbor solicitation packet */
748 memcpy(mymac.x, DATA(packet) + ETH_ALEN, ETH_ALEN);
750 /* Check if this is a valid neighbor solicitation request */
752 if(ns.nd_ns_hdr.icmp6_type != ND_NEIGHBOR_SOLICIT ||
753 (has_opt && opt.nd_opt_type != ND_OPT_SOURCE_LINKADDR)) {
754 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: received unknown type neighbor solicitation request");
758 /* Create pseudo header */
760 pseudo.ip6_src = ip6.ip6_src;
761 pseudo.ip6_dst = ip6.ip6_dst;
763 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
765 pseudo.length = htonl(ns_size);
766 pseudo.next = htonl(IPPROTO_ICMPV6);
768 /* Generate checksum */
770 checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
771 checksum = inet_checksum(&ns, ns_size, checksum);
773 checksum = inet_checksum(&opt, opt_size, checksum);
774 checksum = inet_checksum(DATA(packet) + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
778 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: checksum error for neighbor solicitation request");
782 /* Check if the IPv6 address exists on the VPN */
784 subnet = lookup_subnet_ipv6((ipv6_t *) &ns.nd_ns_target);
787 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: neighbor solicitation request for unknown address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx",
788 ntohs(((uint16_t *) &ns.nd_ns_target)[0]),
789 ntohs(((uint16_t *) &ns.nd_ns_target)[1]),
790 ntohs(((uint16_t *) &ns.nd_ns_target)[2]),
791 ntohs(((uint16_t *) &ns.nd_ns_target)[3]),
792 ntohs(((uint16_t *) &ns.nd_ns_target)[4]),
793 ntohs(((uint16_t *) &ns.nd_ns_target)[5]),
794 ntohs(((uint16_t *) &ns.nd_ns_target)[6]),
795 ntohs(((uint16_t *) &ns.nd_ns_target)[7]));
800 /* Check if it is for our own subnet */
802 if(subnet->owner == myself)
803 return; /* silently ignore */
806 if(!do_decrement_ttl(source, packet))
809 /* Create neighbor advertation reply */
811 memcpy(DATA(packet), DATA(packet) + ETH_ALEN, ETH_ALEN); /* copy destination address */
812 DATA(packet)[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
814 ip6.ip6_dst = ip6.ip6_src; /* swap destination and source protocoll address */
815 ip6.ip6_src = ns.nd_ns_target;
818 memcpy(DATA(packet) + ether_size + ip6_size + ns_size + opt_size, DATA(packet) + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
821 ns.nd_ns_type = ND_NEIGHBOR_ADVERT;
822 ns.nd_ns_reserved = htonl(0x40000000UL); /* Set solicited flag */
823 opt.nd_opt_type = ND_OPT_TARGET_LINKADDR;
825 /* Create pseudo header */
827 pseudo.ip6_src = ip6.ip6_src;
828 pseudo.ip6_dst = ip6.ip6_dst;
830 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
832 pseudo.length = htonl(ns_size);
833 pseudo.next = htonl(IPPROTO_ICMPV6);
835 /* Generate checksum */
837 checksum = inet_checksum(&pseudo, sizeof pseudo, ~0);
838 checksum = inet_checksum(&ns, ns_size, checksum);
840 checksum = inet_checksum(&opt, opt_size, checksum);
841 checksum = inet_checksum(DATA(packet) + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
844 ns.nd_ns_hdr.icmp6_cksum = checksum;
846 /* Copy structs on stack back to packet */
848 memcpy(DATA(packet) + ether_size, &ip6, ip6_size);
849 memcpy(DATA(packet) + ether_size + ip6_size, &ns, ns_size);
851 memcpy(DATA(packet) + ether_size + ip6_size + ns_size, &opt, opt_size);
853 send_packet(source, packet);
858 static void route_arp(node_t *source, vpn_packet_t *packet) {
859 struct ether_arp arp;
863 if(!checklength(source, packet, ether_size + arp_size))
866 if(source != myself) {
867 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got ARP request from %s (%s) while in router mode!", source->name, source->hostname);
871 /* First, snatch the source address from the ARP packet */
874 memcpy(mymac.x, DATA(packet) + ETH_ALEN, ETH_ALEN);
876 /* Copy headers from packet to structs on the stack */
878 memcpy(&arp, DATA(packet) + ether_size, arp_size);
880 /* Check if this is a valid ARP request */
882 if(ntohs(arp.arp_hrd) != ARPHRD_ETHER || ntohs(arp.arp_pro) != ETH_P_IP ||
883 arp.arp_hln != ETH_ALEN || arp.arp_pln != sizeof addr || ntohs(arp.arp_op) != ARPOP_REQUEST) {
884 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: received unknown type ARP request");
888 /* Check if the IPv4 address exists on the VPN */
890 subnet = lookup_subnet_ipv4((ipv4_t *) &arp.arp_tpa);
893 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet: ARP request for unknown address %d.%d.%d.%d",
894 arp.arp_tpa[0], arp.arp_tpa[1], arp.arp_tpa[2],
899 /* Check if it is for our own subnet */
901 if(subnet->owner == myself)
902 return; /* silently ignore */
905 if(!do_decrement_ttl(source, packet))
908 memcpy(&addr, arp.arp_tpa, sizeof addr); /* save protocol addr */
909 memcpy(arp.arp_tpa, arp.arp_spa, sizeof addr); /* swap destination and source protocol address */
910 memcpy(arp.arp_spa, &addr, sizeof addr); /* ... */
912 memcpy(arp.arp_tha, arp.arp_sha, ETH_ALEN); /* set target hard/proto addr */
913 memcpy(arp.arp_sha, DATA(packet) + ETH_ALEN, ETH_ALEN); /* set source hard/proto addr */
914 arp.arp_sha[ETH_ALEN - 1] ^= 0xFF; /* for consistency with route_packet() */
915 arp.arp_op = htons(ARPOP_REPLY);
917 /* Copy structs on stack back to packet */
919 memcpy(DATA(packet) + ether_size, &arp, arp_size);
921 send_packet(source, packet);
924 static void route_mac(node_t *source, vpn_packet_t *packet) {
928 /* Learn source address */
930 if(source == myself) {
932 memcpy(&src, &DATA(packet)[6], sizeof src);
936 /* Lookup destination address */
938 memcpy(&dest, &DATA(packet)[0], sizeof dest);
939 subnet = lookup_subnet_mac(NULL, &dest);
941 if(!subnet || !subnet->owner) {
942 route_broadcast(source, packet);
946 if(subnet->owner == source) {
947 logger(DEBUG_TRAFFIC, LOG_WARNING, "Packet looping back to %s (%s)!", source->name, source->hostname);
951 if(forwarding_mode == FMODE_OFF && source != myself && subnet->owner != myself)
954 if(decrement_ttl && source != myself && subnet->owner != myself)
955 if(!do_decrement_ttl(source, packet))
958 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
960 if(priorityinheritance) {
961 if(type == ETH_P_IP && packet->len >= ether_size + ip_size)
962 packet->priority = DATA(packet)[15];
963 else if(type == ETH_P_IPV6 && packet->len >= ether_size + ip6_size)
964 packet->priority = ((DATA(packet)[14] & 0x0f) << 4) | (DATA(packet)[15] >> 4);
967 // Handle packets larger than PMTU
969 node_t *via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
971 if(directonly && subnet->owner != via)
974 if(via && packet->len > via->mtu && via != myself) {
975 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);
976 length_t ethlen = 14;
978 if(type == ETH_P_8021Q) {
979 type = DATA(packet)[16] << 8 | DATA(packet)[17];
983 if(type == ETH_P_IP && packet->len > 576 + ethlen) {
984 if(DATA(packet)[6 + ethlen] & 0x40) {
985 packet->len = via->mtu;
986 route_ipv4_unreachable(source, packet, ethlen, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
988 fragment_ipv4_packet(via, packet, ethlen);
991 } else if(type == ETH_P_IPV6 && packet->len > 1280 + ethlen) {
992 packet->len = via->mtu;
993 route_ipv6_unreachable(source, packet, ethlen, ICMP6_PACKET_TOO_BIG, 0);
998 clamp_mss(source, via, packet);
1000 send_packet(subnet->owner, packet);
1003 static void send_pcap(vpn_packet_t *packet) {
1006 for list_each(connection_t, c, connection_list) {
1011 int len = packet->len;
1012 if(c->outmaclength && c->outmaclength < len)
1013 len = c->outmaclength;
1015 if(send_request(c, "%d %d %d", CONTROL, REQ_PCAP, len))
1016 send_meta(c, (char *)DATA(packet), len);
1020 void route(node_t *source, vpn_packet_t *packet) {
1024 if(forwarding_mode == FMODE_KERNEL && source != myself) {
1025 send_packet(myself, packet);
1029 if(!checklength(source, packet, ether_size))
1032 uint16_t type = DATA(packet)[12] << 8 | DATA(packet)[13];
1034 switch (routing_mode) {
1038 route_arp(source, packet);
1042 route_ipv4(source, packet);
1046 route_ipv6(source, packet);
1050 logger(DEBUG_TRAFFIC, LOG_WARNING, "Cannot route packet from %s (%s): unknown type %hx", source->name, source->hostname, type);
1056 route_mac(source, packet);
1060 route_broadcast(source, packet);