3 Copyright (C) 2000-2005 Ivo Timmermans,
4 2000-2006 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
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "connection.h"
37 rmode_t routing_mode = RMODE_ROUTER;
38 bool priorityinheritance = false;
40 bool overwrite_mac = false;
41 mac_t mymac = {{0xFE, 0xFD, 0, 0, 0, 0}};
43 /* Sizes of various headers */
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);
56 static uint16_t inet_checksum(void *data, int len, uint16_t prevsum)
59 uint32_t checksum = prevsum ^ 0xFFFF;
67 checksum += *(uint8_t *)p;
70 checksum = (checksum & 0xFFFF) + (checksum >> 16);
75 static bool ratelimit(int frequency) {
76 static time_t lasttime = 0;
80 if(++count > frequency)
90 static bool checklength(node_t *source, vpn_packet_t *packet, length_t length) {
91 if(packet->len < length) {
92 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got too short packet from %s (%s)"), source->name, source->hostname);
98 static void learn_mac(mac_t *address)
106 subnet = lookup_subnet_mac(address);
108 /* If we don't know this MAC address yet, store it */
111 ifdebug(TRAFFIC) logger(LOG_INFO, _("Learned new MAC address %hx:%hx:%hx:%hx:%hx:%hx"),
112 address->x[0], address->x[1], address->x[2], address->x[3],
113 address->x[4], address->x[5]);
115 subnet = new_subnet();
116 subnet->type = SUBNET_MAC;
117 subnet->expires = now + macexpire;
118 subnet->net.mac.address = *address;
119 subnet_add(myself, subnet);
121 /* And tell all other tinc daemons it's our MAC */
123 for(node = connection_tree->head; node; node = node->next) {
126 send_add_subnet(c, subnet);
131 subnet->expires = now + macexpire;
134 void age_subnets(void)
138 avl_node_t *node, *next, *node2;
142 for(node = myself->subnet_tree->head; node; node = next) {
145 if(s->expires && s->expires < now) {
147 char netstr[MAXNETSTR];
148 if(net2str(netstr, sizeof netstr, s))
149 logger(LOG_INFO, _("Subnet %s expired"), netstr);
152 for(node2 = connection_tree->head; node2; node2 = node2->next) {
155 send_del_subnet(c, s);
158 subnet_del(myself, s);
163 static void route_mac(node_t *source, vpn_packet_t *packet)
171 /* Learn source address */
173 if(source == myself) {
175 memcpy(&src, &packet->data[6], sizeof src);
179 /* Lookup destination address */
181 memcpy(&dest, &packet->data[0], sizeof dest);
182 subnet = lookup_subnet_mac(&dest);
185 broadcast_packet(source, packet);
189 if(subnet->owner == source) {
190 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
194 send_packet(subnet->owner, packet);
199 static void route_ipv4_unreachable(node_t *source, vpn_packet_t *packet, uint8_t type, uint8_t code)
202 struct icmp icmp = {0};
204 struct in_addr ip_src;
205 struct in_addr ip_dst;
213 /* Copy headers from packet into properly aligned structs on the stack */
215 memcpy(&ip, packet->data + ether_size, ip_size);
217 /* Remember original source and destination */
222 oldlen = packet->len - ether_size;
224 if(type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
225 icmp.icmp_nextmtu = htons(packet->len - ether_size);
227 if(oldlen >= IP_MSS - ip_size - icmp_size)
228 oldlen = IP_MSS - ip_size - icmp_size;
230 /* Copy first part of original contents to ICMP message */
232 memmove(packet->data + ether_size + ip_size + icmp_size, packet->data + ether_size, oldlen);
234 /* Fill in IPv4 header */
237 ip.ip_hl = ip_size / 4;
239 ip.ip_len = htons(ip_size + icmp_size + oldlen);
243 ip.ip_p = IPPROTO_ICMP;
248 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
250 /* Fill in ICMP header */
252 icmp.icmp_type = type;
253 icmp.icmp_code = code;
256 icmp.icmp_cksum = inet_checksum(&icmp, icmp_size, ~0);
257 icmp.icmp_cksum = inet_checksum(packet->data + ether_size + ip_size + icmp_size, oldlen, icmp.icmp_cksum);
259 /* Copy structs on stack back to packet */
261 memcpy(packet->data + ether_size, &ip, ip_size);
262 memcpy(packet->data + ether_size + ip_size, &icmp, icmp_size);
264 packet->len = ether_size + ip_size + icmp_size + oldlen;
266 send_packet(source, packet);
271 static void fragment_ipv4_packet(node_t *dest, vpn_packet_t *packet) {
273 vpn_packet_t fragment;
274 int len, maxlen, todo;
276 uint16_t ip_off, origf;
280 memcpy(&ip, packet->data + ether_size, ip_size);
281 fragment.priority = packet->priority;
283 if(ip.ip_hl != ip_size / 4)
286 todo = ntohs(ip.ip_len) - ip_size;
288 if(ether_size + ip_size + todo != packet->len) {
289 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Length of packet (%d) doesn't match length in IPv4 header (%zd)"), packet->len, ether_size + ip_size + todo);
293 ifdebug(TRAFFIC) logger(LOG_INFO, _("Fragmenting packet of %d bytes to %s (%s)"), packet->len, dest->name, dest->hostname);
295 offset = packet->data + ether_size + ip_size;
296 maxlen = (dest->mtu - ether_size - ip_size) & ~0x7;
297 ip_off = ntohs(ip.ip_off);
298 origf = ip_off & ~IP_OFFMASK;
299 ip_off &= IP_OFFMASK;
302 len = todo > maxlen ? maxlen : todo;
303 memcpy(fragment.data + ether_size + ip_size, offset, len);
307 ip.ip_len = htons(ip_size + len);
308 ip.ip_off = htons(ip_off | origf | (todo ? IP_MF : 0));
310 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
311 memcpy(fragment.data, packet->data, ether_size);
312 memcpy(fragment.data + ether_size, &ip, ip_size);
313 fragment.len = ether_size + ip_size + len;
315 send_packet(dest, &fragment);
321 static void route_ipv4_unicast(node_t *source, vpn_packet_t *packet)
329 memcpy(&dest, &packet->data[30], sizeof dest);
330 subnet = lookup_subnet_ipv4(&dest);
333 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown IPv4 destination address %d.%d.%d.%d"),
334 source->name, source->hostname,
340 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_NET_UNKNOWN);
344 if(subnet->owner == source) {
345 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
349 if(!subnet->owner->status.reachable)
350 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_NET_UNREACH);
352 if(priorityinheritance)
353 packet->priority = packet->data[15];
355 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
357 if(via && packet->len > via->mtu && via != myself) {
358 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);
359 if(packet->data[20] & 0x40) {
360 packet->len = via->mtu;
361 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
363 fragment_ipv4_packet(via, packet);
369 send_packet(subnet->owner, packet);
372 static void route_ipv4(node_t *source, vpn_packet_t *packet)
376 if(!checklength(source, packet, ether_size + ip_size))
379 if(((packet->data[30] & 0xf0) == 0xe0) ||
380 packet->data[30] == 255 &&
381 packet->data[31] == 255 &&
382 packet->data[32] == 255 &&
383 packet->data[33] == 255)
384 broadcast_packet(source, packet);
386 route_ipv4_unicast(source, packet);
391 static void route_ipv6_unreachable(node_t *source, vpn_packet_t *packet, uint8_t type, uint8_t code)
394 struct icmp6_hdr icmp6 = {0};
398 struct in6_addr ip6_src; /* source address */
399 struct in6_addr ip6_dst; /* destination address */
409 /* Copy headers from packet to structs on the stack */
411 memcpy(&ip6, packet->data + ether_size, ip6_size);
413 /* Remember original source and destination */
415 pseudo.ip6_src = ip6.ip6_dst;
416 pseudo.ip6_dst = ip6.ip6_src;
418 pseudo.length = packet->len - ether_size;
420 if(type == ICMP6_PACKET_TOO_BIG)
421 icmp6.icmp6_mtu = htonl(pseudo.length);
423 if(pseudo.length >= IP_MSS - ip6_size - icmp6_size)
424 pseudo.length = IP_MSS - ip6_size - icmp6_size;
426 /* Copy first part of original contents to ICMP message */
428 memmove(packet->data + ether_size + ip6_size + icmp6_size, packet->data + ether_size, pseudo.length);
430 /* Fill in IPv6 header */
432 ip6.ip6_flow = htonl(0x60000000UL);
433 ip6.ip6_plen = htons(icmp6_size + pseudo.length);
434 ip6.ip6_nxt = IPPROTO_ICMPV6;
436 ip6.ip6_src = pseudo.ip6_src;
437 ip6.ip6_dst = pseudo.ip6_dst;
439 /* Fill in ICMP header */
441 icmp6.icmp6_type = type;
442 icmp6.icmp6_code = code;
443 icmp6.icmp6_cksum = 0;
445 /* Create pseudo header */
447 pseudo.length = htonl(icmp6_size + pseudo.length);
448 pseudo.next = htonl(IPPROTO_ICMPV6);
450 /* Generate checksum */
452 checksum = inet_checksum(&pseudo, sizeof(pseudo), ~0);
453 checksum = inet_checksum(&icmp6, icmp6_size, checksum);
454 checksum = inet_checksum(packet->data + ether_size + ip6_size + icmp6_size, ntohl(pseudo.length) - icmp6_size, checksum);
456 icmp6.icmp6_cksum = checksum;
458 /* Copy structs on stack back to packet */
460 memcpy(packet->data + ether_size, &ip6, ip6_size);
461 memcpy(packet->data + ether_size + ip6_size, &icmp6, icmp6_size);
463 packet->len = ether_size + ip6_size + ntohl(pseudo.length);
465 send_packet(source, packet);
468 static void route_ipv6_unicast(node_t *source, vpn_packet_t *packet)
476 memcpy(&dest, &packet->data[38], sizeof dest);
477 subnet = lookup_subnet_ipv6(&dest);
480 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown IPv6 destination address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"),
481 source->name, source->hostname,
491 route_ipv6_unreachable(source, packet, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR);
495 if(subnet->owner == source) {
496 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
500 if(!subnet->owner->status.reachable)
501 route_ipv6_unreachable(source, packet, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOROUTE);
503 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
505 if(via && packet->len > via->mtu && via != myself) {
506 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);
507 packet->len = via->mtu;
508 route_ipv6_unreachable(source, packet, ICMP6_PACKET_TOO_BIG, 0);
512 send_packet(subnet->owner, packet);
517 static void route_neighborsol(node_t *source, vpn_packet_t *packet)
520 struct nd_neighbor_solicit ns;
521 struct nd_opt_hdr opt;
526 struct in6_addr ip6_src; /* source address */
527 struct in6_addr ip6_dst; /* destination address */
534 if(!checklength(source, packet, ether_size + ip6_size + ns_size + opt_size + ETH_ALEN))
537 if(source != myself) {
538 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got neighbor solicitation request from %s (%s) while in router mode!"), source->name, source->hostname);
542 /* Copy headers from packet to structs on the stack */
544 memcpy(&ip6, packet->data + ether_size, ip6_size);
545 memcpy(&ns, packet->data + ether_size + ip6_size, ns_size);
546 memcpy(&opt, packet->data + ether_size + ip6_size + ns_size, opt_size);
548 /* First, snatch the source address from the neighbor solicitation packet */
551 memcpy(mymac.x, packet->data + ETH_ALEN, ETH_ALEN);
553 /* Check if this is a valid neighbor solicitation request */
555 if(ns.nd_ns_hdr.icmp6_type != ND_NEIGHBOR_SOLICIT ||
556 opt.nd_opt_type != ND_OPT_SOURCE_LINKADDR) {
557 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: received unknown type neighbor solicitation request"));
561 /* Create pseudo header */
563 pseudo.ip6_src = ip6.ip6_src;
564 pseudo.ip6_dst = ip6.ip6_dst;
565 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
566 pseudo.next = htonl(IPPROTO_ICMPV6);
568 /* Generate checksum */
570 checksum = inet_checksum(&pseudo, sizeof(pseudo), ~0);
571 checksum = inet_checksum(&ns, ns_size, checksum);
572 checksum = inet_checksum(&opt, opt_size, checksum);
573 checksum = inet_checksum(packet->data + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
576 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: checksum error for neighbor solicitation request"));
580 /* Check if the IPv6 address exists on the VPN */
582 subnet = lookup_subnet_ipv6((ipv6_t *) &ns.nd_ns_target);
585 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: neighbor solicitation request for unknown address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"),
586 ntohs(((uint16_t *) &ns.nd_ns_target)[0]),
587 ntohs(((uint16_t *) &ns.nd_ns_target)[1]),
588 ntohs(((uint16_t *) &ns.nd_ns_target)[2]),
589 ntohs(((uint16_t *) &ns.nd_ns_target)[3]),
590 ntohs(((uint16_t *) &ns.nd_ns_target)[4]),
591 ntohs(((uint16_t *) &ns.nd_ns_target)[5]),
592 ntohs(((uint16_t *) &ns.nd_ns_target)[6]),
593 ntohs(((uint16_t *) &ns.nd_ns_target)[7]));
598 /* Check if it is for our own subnet */
600 if(subnet->owner == myself)
601 return; /* silently ignore */
603 /* Create neighbor advertation reply */
605 memcpy(packet->data, packet->data + ETH_ALEN, ETH_ALEN); /* copy destination address */
606 packet->data[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
608 ip6.ip6_dst = ip6.ip6_src; /* swap destination and source protocoll address */
609 ip6.ip6_src = ns.nd_ns_target;
611 memcpy(packet->data + ether_size + ip6_size + ns_size + opt_size, packet->data + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
614 ns.nd_ns_type = ND_NEIGHBOR_ADVERT;
615 ns.nd_ns_reserved = htonl(0x40000000UL); /* Set solicited flag */
616 opt.nd_opt_type = ND_OPT_TARGET_LINKADDR;
618 /* Create pseudo header */
620 pseudo.ip6_src = ip6.ip6_src;
621 pseudo.ip6_dst = ip6.ip6_dst;
622 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
623 pseudo.next = htonl(IPPROTO_ICMPV6);
625 /* Generate checksum */
627 checksum = inet_checksum(&pseudo, sizeof(pseudo), ~0);
628 checksum = inet_checksum(&ns, ns_size, checksum);
629 checksum = inet_checksum(&opt, opt_size, checksum);
630 checksum = inet_checksum(packet->data + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
632 ns.nd_ns_hdr.icmp6_cksum = checksum;
634 /* Copy structs on stack back to packet */
636 memcpy(packet->data + ether_size, &ip6, ip6_size);
637 memcpy(packet->data + ether_size + ip6_size, &ns, ns_size);
638 memcpy(packet->data + ether_size + ip6_size + ns_size, &opt, opt_size);
640 send_packet(source, packet);
643 static void route_ipv6(node_t *source, vpn_packet_t *packet)
647 if(!checklength(source, packet, ether_size + ip6_size))
650 if(packet->data[20] == IPPROTO_ICMPV6 && checklength(source, packet, ether_size + ip6_size + icmp6_size) && packet->data[54] == ND_NEIGHBOR_SOLICIT) {
651 route_neighborsol(source, packet);
655 if(packet->data[38] == 255)
656 broadcast_packet(source, packet);
658 route_ipv6_unicast(source, packet);
663 static void route_arp(node_t *source, vpn_packet_t *packet)
665 struct ether_arp arp;
671 if(!checklength(source, packet, ether_size + arp_size))
674 if(source != myself) {
675 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got ARP request from %s (%s) while in router mode!"), source->name, source->hostname);
679 /* First, snatch the source address from the ARP packet */
682 memcpy(mymac.x, packet->data + ETH_ALEN, ETH_ALEN);
684 /* Copy headers from packet to structs on the stack */
686 memcpy(&arp, packet->data + ether_size, arp_size);
688 /* Check if this is a valid ARP request */
690 if(ntohs(arp.arp_hrd) != ARPHRD_ETHER || ntohs(arp.arp_pro) != ETH_P_IP ||
691 arp.arp_hln != ETH_ALEN || arp.arp_pln != sizeof(addr) || ntohs(arp.arp_op) != ARPOP_REQUEST) {
692 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: received unknown type ARP request"));
696 /* Check if the IPv4 address exists on the VPN */
698 subnet = lookup_subnet_ipv4((ipv4_t *) &arp.arp_tpa);
701 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: ARP request for unknown address %d.%d.%d.%d"),
702 arp.arp_tpa[0], arp.arp_tpa[1], arp.arp_tpa[2],
707 /* Check if it is for our own subnet */
709 if(subnet->owner == myself)
710 return; /* silently ignore */
712 memcpy(packet->data, packet->data + ETH_ALEN, ETH_ALEN); /* copy destination address */
713 packet->data[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
715 memcpy(&addr, arp.arp_tpa, sizeof(addr)); /* save protocol addr */
716 memcpy(arp.arp_tpa, arp.arp_spa, sizeof(addr)); /* swap destination and source protocol address */
717 memcpy(arp.arp_spa, &addr, sizeof(addr)); /* ... */
719 memcpy(arp.arp_tha, arp.arp_sha, ETH_ALEN); /* set target hard/proto addr */
720 memcpy(arp.arp_sha, packet->data + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
721 arp.arp_op = htons(ARPOP_REPLY);
723 /* Copy structs on stack back to packet */
725 memcpy(packet->data + ether_size, &arp, arp_size);
727 send_packet(source, packet);
730 void route(node_t *source, vpn_packet_t *packet)
734 if(!checklength(source, packet, ether_size))
737 switch (routing_mode) {
742 type = ntohs(*((uint16_t *)(&packet->data[12])));
745 route_arp(source, packet);
749 route_ipv4(source, packet);
753 route_ipv6(source, packet);
757 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown type %hx"), source->name, source->hostname, type);
764 route_mac(source, packet);
768 broadcast_packet(source, packet);