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)
169 /* Learn source address */
172 learn_mac((mac_t *)(&packet->data[6]));
174 /* Lookup destination address */
176 subnet = lookup_subnet_mac((mac_t *)(&packet->data[0]));
179 broadcast_packet(source, packet);
183 if(subnet->owner == source) {
184 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
188 send_packet(subnet->owner, packet);
193 static void route_ipv4_unreachable(node_t *source, vpn_packet_t *packet, uint8_t type, uint8_t code)
196 struct icmp icmp = {0};
198 struct in_addr ip_src;
199 struct in_addr ip_dst;
207 /* Copy headers from packet into properly aligned structs on the stack */
209 memcpy(&ip, packet->data + ether_size, ip_size);
211 /* Remember original source and destination */
216 oldlen = packet->len - ether_size;
218 if(type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
219 icmp.icmp_nextmtu = htons(packet->len - ether_size);
221 if(oldlen >= IP_MSS - ip_size - icmp_size)
222 oldlen = IP_MSS - ip_size - icmp_size;
224 /* Copy first part of original contents to ICMP message */
226 memmove(packet->data + ether_size + ip_size + icmp_size, packet->data + ether_size, oldlen);
228 /* Fill in IPv4 header */
231 ip.ip_hl = ip_size / 4;
233 ip.ip_len = htons(ip_size + icmp_size + oldlen);
237 ip.ip_p = IPPROTO_ICMP;
242 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
244 /* Fill in ICMP header */
246 icmp.icmp_type = type;
247 icmp.icmp_code = code;
250 icmp.icmp_cksum = inet_checksum(&icmp, icmp_size, ~0);
251 icmp.icmp_cksum = inet_checksum(packet->data + ether_size + ip_size + icmp_size, oldlen, icmp.icmp_cksum);
253 /* Copy structs on stack back to packet */
255 memcpy(packet->data + ether_size, &ip, ip_size);
256 memcpy(packet->data + ether_size + ip_size, &icmp, icmp_size);
258 packet->len = ether_size + ip_size + icmp_size + oldlen;
260 send_packet(source, packet);
265 static void fragment_ipv4_packet(node_t *dest, vpn_packet_t *packet) {
267 vpn_packet_t fragment;
268 int len, maxlen, todo;
270 uint16_t ip_off, origf;
274 memcpy(&ip, packet->data + ether_size, ip_size);
275 fragment.priority = packet->priority;
277 if(ip.ip_hl != ip_size / 4)
280 todo = ntohs(ip.ip_len) - ip_size;
282 if(ether_size + ip_size + todo != packet->len) {
283 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Length of packet (%d) doesn't match length in IPv4 header (%zd)"), packet->len, ether_size + ip_size + todo);
287 ifdebug(TRAFFIC) logger(LOG_INFO, _("Fragmenting packet of %d bytes to %s (%s)"), packet->len, dest->name, dest->hostname);
289 offset = packet->data + ether_size + ip_size;
290 maxlen = (dest->mtu - ether_size - ip_size) & ~0x7;
291 ip_off = ntohs(ip.ip_off);
292 origf = ip_off & ~IP_OFFMASK;
293 ip_off &= IP_OFFMASK;
296 len = todo > maxlen ? maxlen : todo;
297 memcpy(fragment.data + ether_size + ip_size, offset, len);
301 ip.ip_len = htons(ip_size + len);
302 ip.ip_off = htons(ip_off | origf | (todo ? IP_MF : 0));
304 ip.ip_sum = inet_checksum(&ip, ip_size, ~0);
305 memcpy(fragment.data, packet->data, ether_size);
306 memcpy(fragment.data + ether_size, &ip, ip_size);
307 fragment.len = ether_size + ip_size + len;
309 send_packet(dest, &fragment);
315 static void route_ipv4_unicast(node_t *source, vpn_packet_t *packet)
322 subnet = lookup_subnet_ipv4((ipv4_t *) &packet->data[30]);
325 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown IPv4 destination address %d.%d.%d.%d"),
326 source->name, source->hostname,
332 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_NET_UNKNOWN);
336 if(subnet->owner == source) {
337 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
341 if(!subnet->owner->status.reachable)
342 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_NET_UNREACH);
344 if(priorityinheritance)
345 packet->priority = packet->data[15];
347 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
349 if(via && packet->len > via->mtu && via != myself) {
350 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);
351 if(packet->data[20] & 0x40) {
352 packet->len = via->mtu;
353 route_ipv4_unreachable(source, packet, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED);
355 fragment_ipv4_packet(via, packet);
361 send_packet(subnet->owner, packet);
364 static void route_ipv4(node_t *source, vpn_packet_t *packet)
368 if(!checklength(source, packet, ether_size + ip_size))
371 route_ipv4_unicast(source, packet);
376 static void route_ipv6_unreachable(node_t *source, vpn_packet_t *packet, uint8_t type, uint8_t code)
379 struct icmp6_hdr icmp6 = {0};
383 struct in6_addr ip6_src; /* source address */
384 struct in6_addr ip6_dst; /* destination address */
394 /* Copy headers from packet to structs on the stack */
396 memcpy(&ip6, packet->data + ether_size, ip6_size);
398 /* Remember original source and destination */
400 pseudo.ip6_src = ip6.ip6_dst;
401 pseudo.ip6_dst = ip6.ip6_src;
403 pseudo.length = packet->len - ether_size;
405 if(type == ICMP6_PACKET_TOO_BIG)
406 icmp6.icmp6_mtu = htonl(pseudo.length);
408 if(pseudo.length >= IP_MSS - ip6_size - icmp6_size)
409 pseudo.length = IP_MSS - ip6_size - icmp6_size;
411 /* Copy first part of original contents to ICMP message */
413 memmove(packet->data + ether_size + ip6_size + icmp6_size, packet->data + ether_size, pseudo.length);
415 /* Fill in IPv6 header */
417 ip6.ip6_flow = htonl(0x60000000UL);
418 ip6.ip6_plen = htons(icmp6_size + pseudo.length);
419 ip6.ip6_nxt = IPPROTO_ICMPV6;
421 ip6.ip6_src = pseudo.ip6_src;
422 ip6.ip6_dst = pseudo.ip6_dst;
424 /* Fill in ICMP header */
426 icmp6.icmp6_type = type;
427 icmp6.icmp6_code = code;
428 icmp6.icmp6_cksum = 0;
430 /* Create pseudo header */
432 pseudo.length = htonl(icmp6_size + pseudo.length);
433 pseudo.next = htonl(IPPROTO_ICMPV6);
435 /* Generate checksum */
437 checksum = inet_checksum(&pseudo, sizeof(pseudo), ~0);
438 checksum = inet_checksum(&icmp6, icmp6_size, checksum);
439 checksum = inet_checksum(packet->data + ether_size + ip6_size + icmp6_size, ntohl(pseudo.length) - icmp6_size, checksum);
441 icmp6.icmp6_cksum = checksum;
443 /* Copy structs on stack back to packet */
445 memcpy(packet->data + ether_size, &ip6, ip6_size);
446 memcpy(packet->data + ether_size + ip6_size, &icmp6, icmp6_size);
448 packet->len = ether_size + ip6_size + ntohl(pseudo.length);
450 send_packet(source, packet);
453 static void route_ipv6_unicast(node_t *source, vpn_packet_t *packet)
460 subnet = lookup_subnet_ipv6((ipv6_t *) &packet->data[38]);
463 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown IPv6 destination address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"),
464 source->name, source->hostname,
465 ntohs(*(uint16_t *) &packet->data[38]),
466 ntohs(*(uint16_t *) &packet->data[40]),
467 ntohs(*(uint16_t *) &packet->data[42]),
468 ntohs(*(uint16_t *) &packet->data[44]),
469 ntohs(*(uint16_t *) &packet->data[46]),
470 ntohs(*(uint16_t *) &packet->data[48]),
471 ntohs(*(uint16_t *) &packet->data[50]),
472 ntohs(*(uint16_t *) &packet->data[52]));
474 route_ipv6_unreachable(source, packet, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR);
478 if(subnet->owner == source) {
479 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Packet looping back to %s (%s)!"), source->name, source->hostname);
483 if(!subnet->owner->status.reachable)
484 route_ipv6_unreachable(source, packet, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_NOROUTE);
486 via = (subnet->owner->via == myself) ? subnet->owner->nexthop : subnet->owner->via;
488 if(via && packet->len > via->mtu && via != myself) {
489 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);
490 packet->len = via->mtu;
491 route_ipv6_unreachable(source, packet, ICMP6_PACKET_TOO_BIG, 0);
495 send_packet(subnet->owner, packet);
500 static void route_neighborsol(node_t *source, vpn_packet_t *packet)
503 struct nd_neighbor_solicit ns;
504 struct nd_opt_hdr opt;
509 struct in6_addr ip6_src; /* source address */
510 struct in6_addr ip6_dst; /* destination address */
517 if(!checklength(source, packet, ether_size + ip6_size + ns_size + opt_size + ETH_ALEN))
520 if(source != myself) {
521 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got neighbor solicitation request from %s (%s) while in router mode!"), source->name, source->hostname);
525 /* Copy headers from packet to structs on the stack */
527 memcpy(&ip6, packet->data + ether_size, ip6_size);
528 memcpy(&ns, packet->data + ether_size + ip6_size, ns_size);
529 memcpy(&opt, packet->data + ether_size + ip6_size + ns_size, opt_size);
531 /* First, snatch the source address from the neighbor solicitation packet */
534 memcpy(mymac.x, packet->data + ETH_ALEN, ETH_ALEN);
536 /* Check if this is a valid neighbor solicitation request */
538 if(ns.nd_ns_hdr.icmp6_type != ND_NEIGHBOR_SOLICIT ||
539 opt.nd_opt_type != ND_OPT_SOURCE_LINKADDR) {
540 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: received unknown type neighbor solicitation request"));
544 /* Create pseudo header */
546 pseudo.ip6_src = ip6.ip6_src;
547 pseudo.ip6_dst = ip6.ip6_dst;
548 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
549 pseudo.next = htonl(IPPROTO_ICMPV6);
551 /* Generate checksum */
553 checksum = inet_checksum(&pseudo, sizeof(pseudo), ~0);
554 checksum = inet_checksum(&ns, ns_size, checksum);
555 checksum = inet_checksum(&opt, opt_size, checksum);
556 checksum = inet_checksum(packet->data + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
559 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: checksum error for neighbor solicitation request"));
563 /* Check if the IPv6 address exists on the VPN */
565 subnet = lookup_subnet_ipv6((ipv6_t *) &ns.nd_ns_target);
568 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: neighbor solicitation request for unknown address %hx:%hx:%hx:%hx:%hx:%hx:%hx:%hx"),
569 ntohs(((uint16_t *) &ns.nd_ns_target)[0]),
570 ntohs(((uint16_t *) &ns.nd_ns_target)[1]),
571 ntohs(((uint16_t *) &ns.nd_ns_target)[2]),
572 ntohs(((uint16_t *) &ns.nd_ns_target)[3]),
573 ntohs(((uint16_t *) &ns.nd_ns_target)[4]),
574 ntohs(((uint16_t *) &ns.nd_ns_target)[5]),
575 ntohs(((uint16_t *) &ns.nd_ns_target)[6]),
576 ntohs(((uint16_t *) &ns.nd_ns_target)[7]));
581 /* Check if it is for our own subnet */
583 if(subnet->owner == myself)
584 return; /* silently ignore */
586 /* Create neighbor advertation reply */
588 memcpy(packet->data, packet->data + ETH_ALEN, ETH_ALEN); /* copy destination address */
589 packet->data[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
591 ip6.ip6_dst = ip6.ip6_src; /* swap destination and source protocoll address */
592 ip6.ip6_src = ns.nd_ns_target;
594 memcpy(packet->data + ether_size + ip6_size + ns_size + opt_size, packet->data + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
597 ns.nd_ns_type = ND_NEIGHBOR_ADVERT;
598 ns.nd_ns_reserved = htonl(0x40000000UL); /* Set solicited flag */
599 opt.nd_opt_type = ND_OPT_TARGET_LINKADDR;
601 /* Create pseudo header */
603 pseudo.ip6_src = ip6.ip6_src;
604 pseudo.ip6_dst = ip6.ip6_dst;
605 pseudo.length = htonl(ns_size + opt_size + ETH_ALEN);
606 pseudo.next = htonl(IPPROTO_ICMPV6);
608 /* Generate checksum */
610 checksum = inet_checksum(&pseudo, sizeof(pseudo), ~0);
611 checksum = inet_checksum(&ns, ns_size, checksum);
612 checksum = inet_checksum(&opt, opt_size, checksum);
613 checksum = inet_checksum(packet->data + ether_size + ip6_size + ns_size + opt_size, ETH_ALEN, checksum);
615 ns.nd_ns_hdr.icmp6_cksum = checksum;
617 /* Copy structs on stack back to packet */
619 memcpy(packet->data + ether_size, &ip6, ip6_size);
620 memcpy(packet->data + ether_size + ip6_size, &ns, ns_size);
621 memcpy(packet->data + ether_size + ip6_size + ns_size, &opt, opt_size);
623 send_packet(source, packet);
626 static void route_ipv6(node_t *source, vpn_packet_t *packet)
630 if(!checklength(source, packet, ether_size + ip6_size))
633 if(packet->data[20] == IPPROTO_ICMPV6 && checklength(source, packet, ether_size + ip6_size + icmp6_size) && packet->data[54] == ND_NEIGHBOR_SOLICIT) {
634 route_neighborsol(source, packet);
638 route_ipv6_unicast(source, packet);
643 static void route_arp(node_t *source, vpn_packet_t *packet)
645 struct ether_arp arp;
651 if(!checklength(source, packet, ether_size + arp_size))
654 if(source != myself) {
655 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Got ARP request from %s (%s) while in router mode!"), source->name, source->hostname);
659 /* First, snatch the source address from the ARP packet */
662 memcpy(mymac.x, packet->data + ETH_ALEN, ETH_ALEN);
664 /* Copy headers from packet to structs on the stack */
666 memcpy(&arp, packet->data + ether_size, arp_size);
668 /* Check if this is a valid ARP request */
670 if(ntohs(arp.arp_hrd) != ARPHRD_ETHER || ntohs(arp.arp_pro) != ETH_P_IP ||
671 arp.arp_hln != ETH_ALEN || arp.arp_pln != sizeof(addr) || ntohs(arp.arp_op) != ARPOP_REQUEST) {
672 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: received unknown type ARP request"));
676 /* Check if the IPv4 address exists on the VPN */
678 subnet = lookup_subnet_ipv4((ipv4_t *) &arp.arp_tpa);
681 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet: ARP request for unknown address %d.%d.%d.%d"),
682 arp.arp_tpa[0], arp.arp_tpa[1], arp.arp_tpa[2],
687 /* Check if it is for our own subnet */
689 if(subnet->owner == myself)
690 return; /* silently ignore */
692 memcpy(packet->data, packet->data + ETH_ALEN, ETH_ALEN); /* copy destination address */
693 packet->data[ETH_ALEN * 2 - 1] ^= 0xFF; /* mangle source address so it looks like it's not from us */
695 memcpy(&addr, arp.arp_tpa, sizeof(addr)); /* save protocol addr */
696 memcpy(arp.arp_tpa, arp.arp_spa, sizeof(addr)); /* swap destination and source protocol address */
697 memcpy(arp.arp_spa, &addr, sizeof(addr)); /* ... */
699 memcpy(arp.arp_tha, arp.arp_sha, ETH_ALEN); /* set target hard/proto addr */
700 memcpy(arp.arp_sha, packet->data + ETH_ALEN, ETH_ALEN); /* add fake source hard addr */
701 arp.arp_op = htons(ARPOP_REPLY);
703 /* Copy structs on stack back to packet */
705 memcpy(packet->data + ether_size, &arp, arp_size);
707 send_packet(source, packet);
710 void route(node_t *source, vpn_packet_t *packet)
714 if(!checklength(source, packet, ether_size))
717 switch (routing_mode) {
722 type = ntohs(*((uint16_t *)(&packet->data[12])));
725 route_arp(source, packet);
729 route_ipv4(source, packet);
733 route_ipv6(source, packet);
737 ifdebug(TRAFFIC) logger(LOG_WARNING, _("Cannot route packet from %s (%s): unknown type %hx"), source->name, source->hostname, type);
744 route_mac(source, packet);
748 broadcast_packet(source, packet);