2 * Copyright (c) 2010, 2011 Nicira Networks.
3 * Distributed under the terms of the GNU GPL version 2.
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
9 #include <linux/if_arp.h>
10 #include <linux/if_ether.h>
12 #include <linux/if_vlan.h>
13 #include <linux/igmp.h>
15 #include <linux/in_route.h>
16 #include <linux/inetdevice.h>
17 #include <linux/jhash.h>
18 #include <linux/list.h>
19 #include <linux/kernel.h>
20 #include <linux/version.h>
21 #include <linux/workqueue.h>
22 #include <linux/rculist.h>
24 #include <net/dsfield.h>
27 #include <net/inet_ecn.h>
29 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
32 #include <net/route.h>
41 #include "vport-generic.h"
42 #include "vport-internal_dev.h"
44 #ifdef NEED_CACHE_TIMEOUT
46 * On kernels where we can't quickly detect changes in the rest of the system
47 * we use an expiration time to invalidate the cache. A shorter expiration
48 * reduces the length of time that we may potentially blackhole packets while
49 * a longer time increases performance by reducing the frequency that the
50 * cache needs to be rebuilt. A variety of factors may cause the cache to be
51 * invalidated before the expiration time but this is the maximum. The time
52 * is expressed in jiffies.
54 #define MAX_CACHE_EXP HZ
58 * Interval to check for and remove caches that are no longer valid. Caches
59 * are checked for validity before they are used for packet encapsulation and
60 * old caches are removed at that time. However, if no packets are sent through
61 * the tunnel then the cache will never be destroyed. Since it holds
62 * references to a number of system objects, the cache will continue to use
63 * system resources by not allowing those objects to be destroyed. The cache
64 * cleaner is periodically run to free invalid caches. It does not
65 * significantly affect system performance. A lower interval will release
66 * resources faster but will itself consume resources by requiring more frequent
67 * checks. A longer interval may result in messages being printed to the kernel
68 * message buffer about unreleased resources. The interval is expressed in
71 #define CACHE_CLEANER_INTERVAL (5 * HZ)
73 #define CACHE_DATA_ALIGN 16
74 #define PORT_TABLE_SIZE 1024
76 static struct hlist_head *port_table __read_mostly;
77 static int port_table_count;
79 static void cache_cleaner(struct work_struct *work);
80 static DECLARE_DELAYED_WORK(cache_cleaner_wq, cache_cleaner);
83 * These are just used as an optimization: they don't require any kind of
84 * synchronization because we could have just as easily read the value before
85 * the port change happened.
87 static unsigned int key_local_remote_ports __read_mostly;
88 static unsigned int key_remote_ports __read_mostly;
89 static unsigned int key_multicast_ports __read_mostly;
90 static unsigned int local_remote_ports __read_mostly;
91 static unsigned int remote_ports __read_mostly;
92 static unsigned int multicast_ports __read_mostly;
94 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
95 #define rt_dst(rt) (rt->dst)
97 #define rt_dst(rt) (rt->u.dst)
100 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0)
101 static struct hh_cache *rt_hh(struct rtable *rt)
103 struct neighbour *neigh = dst_get_neighbour(&rt->dst);
104 if (!neigh || !(neigh->nud_state & NUD_CONNECTED) ||
110 #define rt_hh(rt) (rt_dst(rt).hh)
113 static struct vport *tnl_vport_to_vport(const struct tnl_vport *tnl_vport)
115 return vport_from_priv(tnl_vport);
118 /* This is analogous to rtnl_dereference for the tunnel cache. It checks that
119 * cache_lock is held, so it is only for update side code.
121 static struct tnl_cache *cache_dereference(struct tnl_vport *tnl_vport)
123 return rcu_dereference_protected(tnl_vport->cache,
124 lockdep_is_held(&tnl_vport->cache_lock));
127 static void schedule_cache_cleaner(void)
129 schedule_delayed_work(&cache_cleaner_wq, CACHE_CLEANER_INTERVAL);
132 static void free_cache(struct tnl_cache *cache)
137 flow_put(cache->flow);
138 ip_rt_put(cache->rt);
142 static void free_config_rcu(struct rcu_head *rcu)
144 struct tnl_mutable_config *c = container_of(rcu, struct tnl_mutable_config, rcu);
148 static void free_cache_rcu(struct rcu_head *rcu)
150 struct tnl_cache *c = container_of(rcu, struct tnl_cache, rcu);
154 /* Frees the portion of 'mutable' that requires RTNL and thus can't happen
155 * within an RCU callback. Fortunately this part doesn't require waiting for
156 * an RCU grace period.
158 static void free_mutable_rtnl(struct tnl_mutable_config *mutable)
161 if (ipv4_is_multicast(mutable->key.daddr) && mutable->mlink) {
162 struct in_device *in_dev;
163 in_dev = inetdev_by_index(&init_net, mutable->mlink);
165 ip_mc_dec_group(in_dev, mutable->key.daddr);
169 static void assign_config_rcu(struct vport *vport,
170 struct tnl_mutable_config *new_config)
172 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
173 struct tnl_mutable_config *old_config;
175 old_config = rtnl_dereference(tnl_vport->mutable);
176 rcu_assign_pointer(tnl_vport->mutable, new_config);
178 free_mutable_rtnl(old_config);
179 call_rcu(&old_config->rcu, free_config_rcu);
182 static void assign_cache_rcu(struct vport *vport, struct tnl_cache *new_cache)
184 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
185 struct tnl_cache *old_cache;
187 old_cache = cache_dereference(tnl_vport);
188 rcu_assign_pointer(tnl_vport->cache, new_cache);
191 call_rcu(&old_cache->rcu, free_cache_rcu);
194 static unsigned int *find_port_pool(const struct tnl_mutable_config *mutable)
196 bool is_multicast = ipv4_is_multicast(mutable->key.daddr);
198 if (mutable->flags & TNL_F_IN_KEY_MATCH) {
199 if (mutable->key.saddr)
200 return &local_remote_ports;
201 else if (is_multicast)
202 return &multicast_ports;
204 return &remote_ports;
206 if (mutable->key.saddr)
207 return &key_local_remote_ports;
208 else if (is_multicast)
209 return &key_multicast_ports;
211 return &key_remote_ports;
215 static u32 port_hash(const struct port_lookup_key *key)
217 return jhash2((u32 *)key, (PORT_KEY_LEN / sizeof(u32)), 0);
220 static struct hlist_head *find_bucket(u32 hash)
222 return &port_table[(hash & (PORT_TABLE_SIZE - 1))];
225 static void port_table_add_port(struct vport *vport)
227 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
228 const struct tnl_mutable_config *mutable;
231 if (port_table_count == 0)
232 schedule_cache_cleaner();
234 mutable = rtnl_dereference(tnl_vport->mutable);
235 hash = port_hash(&mutable->key);
236 hlist_add_head_rcu(&tnl_vport->hash_node, find_bucket(hash));
239 (*find_port_pool(rtnl_dereference(tnl_vport->mutable)))++;
242 static void port_table_move_port(struct vport *vport,
243 struct tnl_mutable_config *new_mutable)
245 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
248 hash = port_hash(&new_mutable->key);
249 hlist_del_init_rcu(&tnl_vport->hash_node);
250 hlist_add_head_rcu(&tnl_vport->hash_node, find_bucket(hash));
252 (*find_port_pool(rtnl_dereference(tnl_vport->mutable)))--;
253 assign_config_rcu(vport, new_mutable);
254 (*find_port_pool(rtnl_dereference(tnl_vport->mutable)))++;
257 static void port_table_remove_port(struct vport *vport)
259 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
261 hlist_del_init_rcu(&tnl_vport->hash_node);
264 if (port_table_count == 0)
265 cancel_delayed_work_sync(&cache_cleaner_wq);
267 (*find_port_pool(rtnl_dereference(tnl_vport->mutable)))--;
270 static struct vport *port_table_lookup(struct port_lookup_key *key,
271 const struct tnl_mutable_config **pmutable)
273 struct hlist_node *n;
274 struct hlist_head *bucket;
275 u32 hash = port_hash(key);
276 struct tnl_vport *tnl_vport;
278 bucket = find_bucket(hash);
280 hlist_for_each_entry_rcu(tnl_vport, n, bucket, hash_node) {
281 struct tnl_mutable_config *mutable;
283 mutable = rcu_dereference_rtnl(tnl_vport->mutable);
284 if (!memcmp(&mutable->key, key, PORT_KEY_LEN)) {
286 return tnl_vport_to_vport(tnl_vport);
293 struct vport *tnl_find_port(__be32 saddr, __be32 daddr, __be64 key,
295 const struct tnl_mutable_config **mutable)
297 struct port_lookup_key lookup;
299 bool is_multicast = ipv4_is_multicast(saddr);
301 lookup.saddr = saddr;
302 lookup.daddr = daddr;
304 /* First try for exact match on in_key. */
306 lookup.tunnel_type = tunnel_type | TNL_T_KEY_EXACT;
307 if (!is_multicast && key_local_remote_ports) {
308 vport = port_table_lookup(&lookup, mutable);
312 if (key_remote_ports) {
314 vport = port_table_lookup(&lookup, mutable);
318 lookup.saddr = saddr;
321 /* Then try matches that wildcard in_key. */
323 lookup.tunnel_type = tunnel_type | TNL_T_KEY_MATCH;
324 if (!is_multicast && local_remote_ports) {
325 vport = port_table_lookup(&lookup, mutable);
331 vport = port_table_lookup(&lookup, mutable);
338 lookup.daddr = saddr;
339 if (key_multicast_ports) {
340 lookup.tunnel_type = tunnel_type | TNL_T_KEY_EXACT;
342 vport = port_table_lookup(&lookup, mutable);
346 if (multicast_ports) {
347 lookup.tunnel_type = tunnel_type | TNL_T_KEY_MATCH;
349 vport = port_table_lookup(&lookup, mutable);
358 static void ecn_decapsulate(struct sk_buff *skb, u8 tos)
360 if (unlikely(INET_ECN_is_ce(tos))) {
361 __be16 protocol = skb->protocol;
363 skb_set_network_header(skb, ETH_HLEN);
365 if (protocol == htons(ETH_P_8021Q)) {
366 if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
369 protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
370 skb_set_network_header(skb, VLAN_ETH_HLEN);
373 if (protocol == htons(ETH_P_IP)) {
374 if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
375 + sizeof(struct iphdr))))
378 IP_ECN_set_ce(ip_hdr(skb));
380 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
381 else if (protocol == htons(ETH_P_IPV6)) {
382 if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
383 + sizeof(struct ipv6hdr))))
386 IP6_ECN_set_ce(ipv6_hdr(skb));
393 * tnl_rcv - ingress point for generic tunnel code
395 * @vport: port this packet was received on
396 * @skb: received packet
397 * @tos: ToS from encapsulating IP packet, used to copy ECN bits
399 * Must be called with rcu_read_lock.
401 * Packets received by this function are in the following state:
402 * - skb->data points to the inner Ethernet header.
403 * - The inner Ethernet header is in the linear data area.
404 * - skb->csum does not include the inner Ethernet header.
405 * - The layer pointers are undefined.
407 void tnl_rcv(struct vport *vport, struct sk_buff *skb, u8 tos)
411 skb_reset_mac_header(skb);
414 if (likely(ntohs(eh->h_proto) >= 1536))
415 skb->protocol = eh->h_proto;
417 skb->protocol = htons(ETH_P_802_2);
421 skb_clear_rxhash(skb);
424 ecn_decapsulate(skb, tos);
425 vlan_set_tci(skb, 0);
427 if (unlikely(compute_ip_summed(skb, false))) {
432 vport_receive(vport, skb);
435 static bool check_ipv4_address(__be32 addr)
437 if (ipv4_is_multicast(addr) || ipv4_is_lbcast(addr)
438 || ipv4_is_loopback(addr) || ipv4_is_zeronet(addr))
444 static bool ipv4_should_icmp(struct sk_buff *skb)
446 struct iphdr *old_iph = ip_hdr(skb);
448 /* Don't respond to L2 broadcast. */
449 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
452 /* Don't respond to L3 broadcast or invalid addresses. */
453 if (!check_ipv4_address(old_iph->daddr) ||
454 !check_ipv4_address(old_iph->saddr))
457 /* Only respond to the first fragment. */
458 if (old_iph->frag_off & htons(IP_OFFSET))
461 /* Don't respond to ICMP error messages. */
462 if (old_iph->protocol == IPPROTO_ICMP) {
463 u8 icmp_type, *icmp_typep;
465 icmp_typep = skb_header_pointer(skb, (u8 *)old_iph +
466 (old_iph->ihl << 2) +
467 offsetof(struct icmphdr, type) -
468 skb->data, sizeof(icmp_type),
474 if (*icmp_typep > NR_ICMP_TYPES
475 || (*icmp_typep <= ICMP_PARAMETERPROB
476 && *icmp_typep != ICMP_ECHOREPLY
477 && *icmp_typep != ICMP_ECHO))
484 static void ipv4_build_icmp(struct sk_buff *skb, struct sk_buff *nskb,
485 unsigned int mtu, unsigned int payload_length)
487 struct iphdr *iph, *old_iph = ip_hdr(skb);
488 struct icmphdr *icmph;
491 iph = (struct iphdr *)skb_put(nskb, sizeof(struct iphdr));
492 icmph = (struct icmphdr *)skb_put(nskb, sizeof(struct icmphdr));
493 payload = skb_put(nskb, payload_length);
497 iph->ihl = sizeof(struct iphdr) >> 2;
498 iph->tos = (old_iph->tos & IPTOS_TOS_MASK) |
499 IPTOS_PREC_INTERNETCONTROL;
500 iph->tot_len = htons(sizeof(struct iphdr)
501 + sizeof(struct icmphdr)
503 get_random_bytes(&iph->id, sizeof(iph->id));
506 iph->protocol = IPPROTO_ICMP;
507 iph->daddr = old_iph->saddr;
508 iph->saddr = old_iph->daddr;
513 icmph->type = ICMP_DEST_UNREACH;
514 icmph->code = ICMP_FRAG_NEEDED;
515 icmph->un.gateway = htonl(mtu);
518 nskb->csum = csum_partial((u8 *)icmph, sizeof(struct icmphdr), 0);
519 nskb->csum = skb_copy_and_csum_bits(skb, (u8 *)old_iph - skb->data,
520 payload, payload_length,
522 icmph->checksum = csum_fold(nskb->csum);
525 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
526 static bool ipv6_should_icmp(struct sk_buff *skb)
528 struct ipv6hdr *old_ipv6h = ipv6_hdr(skb);
530 int payload_off = (u8 *)(old_ipv6h + 1) - skb->data;
531 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
533 /* Check source address is valid. */
534 addr_type = ipv6_addr_type(&old_ipv6h->saddr);
535 if (addr_type & IPV6_ADDR_MULTICAST || addr_type == IPV6_ADDR_ANY)
538 /* Don't reply to unspecified addresses. */
539 if (ipv6_addr_type(&old_ipv6h->daddr) == IPV6_ADDR_ANY)
542 /* Don't respond to ICMP error messages. */
543 payload_off = ipv6_skip_exthdr(skb, payload_off, &nexthdr);
547 if (nexthdr == NEXTHDR_ICMP) {
548 u8 icmp_type, *icmp_typep;
550 icmp_typep = skb_header_pointer(skb, payload_off +
551 offsetof(struct icmp6hdr,
553 sizeof(icmp_type), &icmp_type);
555 if (!icmp_typep || !(*icmp_typep & ICMPV6_INFOMSG_MASK))
562 static void ipv6_build_icmp(struct sk_buff *skb, struct sk_buff *nskb,
563 unsigned int mtu, unsigned int payload_length)
565 struct ipv6hdr *ipv6h, *old_ipv6h = ipv6_hdr(skb);
566 struct icmp6hdr *icmp6h;
569 ipv6h = (struct ipv6hdr *)skb_put(nskb, sizeof(struct ipv6hdr));
570 icmp6h = (struct icmp6hdr *)skb_put(nskb, sizeof(struct icmp6hdr));
571 payload = skb_put(nskb, payload_length);
576 memset(&ipv6h->flow_lbl, 0, sizeof(ipv6h->flow_lbl));
577 ipv6h->payload_len = htons(sizeof(struct icmp6hdr)
579 ipv6h->nexthdr = NEXTHDR_ICMP;
580 ipv6h->hop_limit = IPV6_DEFAULT_HOPLIMIT;
581 ipv6_addr_copy(&ipv6h->daddr, &old_ipv6h->saddr);
582 ipv6_addr_copy(&ipv6h->saddr, &old_ipv6h->daddr);
585 icmp6h->icmp6_type = ICMPV6_PKT_TOOBIG;
586 icmp6h->icmp6_code = 0;
587 icmp6h->icmp6_cksum = 0;
588 icmp6h->icmp6_mtu = htonl(mtu);
590 nskb->csum = csum_partial((u8 *)icmp6h, sizeof(struct icmp6hdr), 0);
591 nskb->csum = skb_copy_and_csum_bits(skb, (u8 *)old_ipv6h - skb->data,
592 payload, payload_length,
594 icmp6h->icmp6_cksum = csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
595 sizeof(struct icmp6hdr)
597 ipv6h->nexthdr, nskb->csum);
601 bool tnl_frag_needed(struct vport *vport,
602 const struct tnl_mutable_config *mutable,
603 struct sk_buff *skb, unsigned int mtu, __be64 flow_key)
605 unsigned int eth_hdr_len = ETH_HLEN;
606 unsigned int total_length = 0, header_length = 0, payload_length;
607 struct ethhdr *eh, *old_eh = eth_hdr(skb);
608 struct sk_buff *nskb;
611 if (skb->protocol == htons(ETH_P_IP)) {
612 if (mtu < IP_MIN_MTU)
615 if (!ipv4_should_icmp(skb))
618 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
619 else if (skb->protocol == htons(ETH_P_IPV6)) {
620 if (mtu < IPV6_MIN_MTU)
624 * In theory we should do PMTUD on IPv6 multicast messages but
625 * we don't have an address to send from so just fragment.
627 if (ipv6_addr_type(&ipv6_hdr(skb)->daddr) & IPV6_ADDR_MULTICAST)
630 if (!ipv6_should_icmp(skb))
638 if (old_eh->h_proto == htons(ETH_P_8021Q))
639 eth_hdr_len = VLAN_ETH_HLEN;
641 payload_length = skb->len - eth_hdr_len;
642 if (skb->protocol == htons(ETH_P_IP)) {
643 header_length = sizeof(struct iphdr) + sizeof(struct icmphdr);
644 total_length = min_t(unsigned int, header_length +
645 payload_length, 576);
647 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
649 header_length = sizeof(struct ipv6hdr) +
650 sizeof(struct icmp6hdr);
651 total_length = min_t(unsigned int, header_length +
652 payload_length, IPV6_MIN_MTU);
656 payload_length = total_length - header_length;
658 nskb = dev_alloc_skb(NET_IP_ALIGN + eth_hdr_len + header_length +
663 skb_reserve(nskb, NET_IP_ALIGN);
665 /* Ethernet / VLAN */
666 eh = (struct ethhdr *)skb_put(nskb, eth_hdr_len);
667 memcpy(eh->h_dest, old_eh->h_source, ETH_ALEN);
668 memcpy(eh->h_source, mutable->eth_addr, ETH_ALEN);
669 nskb->protocol = eh->h_proto = old_eh->h_proto;
670 if (old_eh->h_proto == htons(ETH_P_8021Q)) {
671 struct vlan_ethhdr *vh = (struct vlan_ethhdr *)eh;
673 vh->h_vlan_TCI = vlan_eth_hdr(skb)->h_vlan_TCI;
674 vh->h_vlan_encapsulated_proto = skb->protocol;
676 vlan_set_tci(nskb, vlan_get_tci(skb));
677 skb_reset_mac_header(nskb);
680 if (skb->protocol == htons(ETH_P_IP))
681 ipv4_build_icmp(skb, nskb, mtu, payload_length);
682 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
684 ipv6_build_icmp(skb, nskb, mtu, payload_length);
688 * Assume that flow based keys are symmetric with respect to input
689 * and output and use the key that we were going to put on the
690 * outgoing packet for the fake received packet. If the keys are
691 * not symmetric then PMTUD needs to be disabled since we won't have
692 * any way of synthesizing packets.
694 if ((mutable->flags & (TNL_F_IN_KEY_MATCH | TNL_F_OUT_KEY_ACTION)) ==
695 (TNL_F_IN_KEY_MATCH | TNL_F_OUT_KEY_ACTION))
696 OVS_CB(nskb)->tun_id = flow_key;
698 if (unlikely(compute_ip_summed(nskb, false))) {
703 vport_receive(vport, nskb);
708 static bool check_mtu(struct sk_buff *skb,
710 const struct tnl_mutable_config *mutable,
711 const struct rtable *rt, __be16 *frag_offp)
713 bool df_inherit = mutable->flags & TNL_F_DF_INHERIT;
714 bool pmtud = mutable->flags & TNL_F_PMTUD;
715 __be16 frag_off = mutable->flags & TNL_F_DF_DEFAULT ? htons(IP_DF) : 0;
717 unsigned int packet_length = skb->len - ETH_HLEN;
719 /* Allow for one level of tagging in the packet length. */
720 if (!vlan_tx_tag_present(skb) &&
721 eth_hdr(skb)->h_proto == htons(ETH_P_8021Q))
722 packet_length -= VLAN_HLEN;
727 /* The tag needs to go in packet regardless of where it
728 * currently is, so subtract it from the MTU.
730 if (vlan_tx_tag_present(skb) ||
731 eth_hdr(skb)->h_proto == htons(ETH_P_8021Q))
732 vlan_header = VLAN_HLEN;
734 mtu = dst_mtu(&rt_dst(rt))
736 - mutable->tunnel_hlen
740 if (skb->protocol == htons(ETH_P_IP)) {
741 struct iphdr *iph = ip_hdr(skb);
744 frag_off = iph->frag_off & htons(IP_DF);
746 if (pmtud && iph->frag_off & htons(IP_DF)) {
747 mtu = max(mtu, IP_MIN_MTU);
749 if (packet_length > mtu &&
750 tnl_frag_needed(vport, mutable, skb, mtu,
751 OVS_CB(skb)->tun_id))
755 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
756 else if (skb->protocol == htons(ETH_P_IPV6)) {
757 /* IPv6 requires end hosts to do fragmentation
758 * if the packet is above the minimum MTU.
760 if (df_inherit && packet_length > IPV6_MIN_MTU)
761 frag_off = htons(IP_DF);
764 mtu = max(mtu, IPV6_MIN_MTU);
766 if (packet_length > mtu &&
767 tnl_frag_needed(vport, mutable, skb, mtu,
768 OVS_CB(skb)->tun_id))
774 *frag_offp = frag_off;
778 static void create_tunnel_header(const struct vport *vport,
779 const struct tnl_mutable_config *mutable,
780 const struct rtable *rt, void *header)
782 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
783 struct iphdr *iph = header;
786 iph->ihl = sizeof(struct iphdr) >> 2;
787 iph->frag_off = htons(IP_DF);
788 iph->protocol = tnl_vport->tnl_ops->ipproto;
789 iph->tos = mutable->tos;
790 iph->daddr = rt->rt_dst;
791 iph->saddr = rt->rt_src;
792 iph->ttl = mutable->ttl;
794 iph->ttl = ip4_dst_hoplimit(&rt_dst(rt));
796 tnl_vport->tnl_ops->build_header(vport, mutable, iph + 1);
799 static void *get_cached_header(const struct tnl_cache *cache)
801 return (void *)cache + ALIGN(sizeof(struct tnl_cache), CACHE_DATA_ALIGN);
804 static bool check_cache_valid(const struct tnl_cache *cache,
805 const struct tnl_mutable_config *mutable)
812 hh = rt_hh(cache->rt);
814 #ifdef NEED_CACHE_TIMEOUT
815 time_before(jiffies, cache->expiration) &&
818 atomic_read(&init_net.ipv4.rt_genid) == cache->rt->rt_genid &&
821 hh->hh_lock.sequence == cache->hh_seq &&
823 mutable->seq == cache->mutable_seq &&
824 (!is_internal_dev(rt_dst(cache->rt).dev) ||
825 (cache->flow && !cache->flow->dead));
828 static void __cache_cleaner(struct tnl_vport *tnl_vport)
830 const struct tnl_mutable_config *mutable =
831 rcu_dereference(tnl_vport->mutable);
832 const struct tnl_cache *cache = rcu_dereference(tnl_vport->cache);
834 if (cache && !check_cache_valid(cache, mutable) &&
835 spin_trylock_bh(&tnl_vport->cache_lock)) {
836 assign_cache_rcu(tnl_vport_to_vport(tnl_vport), NULL);
837 spin_unlock_bh(&tnl_vport->cache_lock);
841 static void cache_cleaner(struct work_struct *work)
845 schedule_cache_cleaner();
848 for (i = 0; i < PORT_TABLE_SIZE; i++) {
849 struct hlist_node *n;
850 struct hlist_head *bucket;
851 struct tnl_vport *tnl_vport;
853 bucket = &port_table[i];
854 hlist_for_each_entry_rcu(tnl_vport, n, bucket, hash_node)
855 __cache_cleaner(tnl_vport);
860 static void create_eth_hdr(struct tnl_cache *cache, struct hh_cache *hh)
862 void *cache_data = get_cached_header(cache);
869 hh_seq = read_seqbegin(&hh->hh_lock);
870 hh_off = HH_DATA_ALIGN(hh->hh_len) - hh->hh_len;
871 memcpy(cache_data, (void *)hh->hh_data + hh_off, hh->hh_len);
872 cache->hh_len = hh->hh_len;
873 } while (read_seqretry(&hh->hh_lock, hh_seq));
875 cache->hh_seq = hh_seq;
877 read_lock(&hh->hh_lock);
878 hh_off = HH_DATA_ALIGN(hh->hh_len) - hh->hh_len;
879 memcpy(cache_data, (void *)hh->hh_data + hh_off, hh->hh_len);
880 cache->hh_len = hh->hh_len;
881 read_unlock(&hh->hh_lock);
885 static struct tnl_cache *build_cache(struct vport *vport,
886 const struct tnl_mutable_config *mutable,
889 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
890 struct tnl_cache *cache;
895 if (!(mutable->flags & TNL_F_HDR_CACHE))
899 * If there is no entry in the ARP cache or if this device does not
900 * support hard header caching just fall back to the IP stack.
908 * If lock is contended fall back to directly building the header.
909 * We're not going to help performance by sitting here spinning.
911 if (!spin_trylock(&tnl_vport->cache_lock))
914 cache = cache_dereference(tnl_vport);
915 if (check_cache_valid(cache, mutable))
920 cache_len = LL_RESERVED_SPACE(rt_dst(rt).dev) + mutable->tunnel_hlen;
922 cache = kzalloc(ALIGN(sizeof(struct tnl_cache), CACHE_DATA_ALIGN) +
923 cache_len, GFP_ATOMIC);
927 create_eth_hdr(cache, hh);
928 cache_data = get_cached_header(cache) + cache->hh_len;
929 cache->len = cache->hh_len + mutable->tunnel_hlen;
931 create_tunnel_header(vport, mutable, rt, cache_data);
933 cache->mutable_seq = mutable->seq;
935 #ifdef NEED_CACHE_TIMEOUT
936 cache->expiration = jiffies + tnl_vport->cache_exp_interval;
939 if (is_internal_dev(rt_dst(rt).dev)) {
940 struct sw_flow_key flow_key;
941 struct vport *dst_vport;
945 struct sw_flow *flow;
947 dst_vport = internal_dev_get_vport(rt_dst(rt).dev);
951 skb = alloc_skb(cache->len, GFP_ATOMIC);
955 __skb_put(skb, cache->len);
956 memcpy(skb->data, get_cached_header(cache), cache->len);
958 err = flow_extract(skb, dst_vport->port_no, &flow_key,
965 flow = flow_tbl_lookup(rcu_dereference(dst_vport->dp->table),
966 &flow_key, flow_key_len);
974 assign_cache_rcu(vport, cache);
977 spin_unlock(&tnl_vport->cache_lock);
982 static struct rtable *__find_route(const struct tnl_mutable_config *mutable,
985 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39)
986 struct flowi fl = { .nl_u = { .ip4_u = {
987 .daddr = mutable->key.daddr,
988 .saddr = mutable->key.saddr,
993 if (unlikely(ip_route_output_key(&init_net, &rt, &fl)))
994 return ERR_PTR(-EADDRNOTAVAIL);
998 struct flowi4 fl = { .daddr = mutable->key.daddr,
999 .saddr = mutable->key.saddr,
1001 .flowi4_proto = ipproto };
1003 return ip_route_output_key(&init_net, &fl);
1007 static struct rtable *find_route(struct vport *vport,
1008 const struct tnl_mutable_config *mutable,
1009 u8 tos, struct tnl_cache **cache)
1011 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1012 struct tnl_cache *cur_cache = rcu_dereference(tnl_vport->cache);
1017 if (likely(tos == mutable->tos &&
1018 check_cache_valid(cur_cache, mutable))) {
1020 return cur_cache->rt;
1024 rt = __find_route(mutable, tnl_vport->tnl_ops->ipproto, tos);
1028 if (likely(tos == mutable->tos))
1029 *cache = build_cache(vport, mutable, rt);
1035 static bool need_linearize(const struct sk_buff *skb)
1039 if (unlikely(skb_shinfo(skb)->frag_list))
1043 * Generally speaking we should linearize if there are paged frags.
1044 * However, if all of the refcounts are 1 we know nobody else can
1045 * change them from underneath us and we can skip the linearization.
1047 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
1048 if (unlikely(page_count(skb_shinfo(skb)->frags[i].page) > 1))
1054 static struct sk_buff *handle_offloads(struct sk_buff *skb,
1055 const struct tnl_mutable_config *mutable,
1056 const struct rtable *rt)
1061 min_headroom = LL_RESERVED_SPACE(rt_dst(rt).dev) + rt_dst(rt).header_len
1062 + mutable->tunnel_hlen
1063 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1065 if (skb_headroom(skb) < min_headroom || skb_header_cloned(skb)) {
1066 int head_delta = SKB_DATA_ALIGN(min_headroom -
1069 err = pskb_expand_head(skb, max_t(int, head_delta, 0),
1075 forward_ip_summed(skb, true);
1077 if (skb_is_gso(skb)) {
1078 struct sk_buff *nskb;
1080 nskb = skb_gso_segment(skb, 0);
1083 err = PTR_ERR(nskb);
1089 } else if (get_ip_summed(skb) == OVS_CSUM_PARTIAL) {
1090 /* Pages aren't locked and could change at any time.
1091 * If this happens after we compute the checksum, the
1092 * checksum will be wrong. We linearize now to avoid
1095 if (unlikely(need_linearize(skb))) {
1096 err = __skb_linearize(skb);
1101 err = skb_checksum_help(skb);
1106 set_ip_summed(skb, OVS_CSUM_NONE);
1113 return ERR_PTR(err);
1116 static int send_frags(struct sk_buff *skb,
1117 const struct tnl_mutable_config *mutable)
1123 struct sk_buff *next = skb->next;
1124 int frag_len = skb->len - mutable->tunnel_hlen;
1128 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
1130 err = ip_local_out(skb);
1132 if (unlikely(net_xmit_eval(err)))
1134 sent_len += frag_len;
1141 * There's no point in continuing to send fragments once one has been
1142 * dropped so just free the rest. This may help improve the congestion
1143 * that caused the first packet to be dropped.
1145 tnl_free_linked_skbs(skb);
1149 int tnl_send(struct vport *vport, struct sk_buff *skb)
1151 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1152 const struct tnl_mutable_config *mutable = rcu_dereference(tnl_vport->mutable);
1154 enum vport_err_type err = VPORT_E_TX_ERROR;
1156 struct dst_entry *unattached_dst = NULL;
1157 struct tnl_cache *cache;
1159 __be16 frag_off = 0;
1164 /* Validate the protocol headers before we try to use them. */
1165 if (skb->protocol == htons(ETH_P_8021Q) &&
1166 !vlan_tx_tag_present(skb)) {
1167 if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
1170 skb->protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
1171 skb_set_network_header(skb, VLAN_ETH_HLEN);
1174 if (skb->protocol == htons(ETH_P_IP)) {
1175 if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
1176 + sizeof(struct iphdr))))
1179 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1180 else if (skb->protocol == htons(ETH_P_IPV6)) {
1181 if (unlikely(!pskb_may_pull(skb, skb_network_offset(skb)
1182 + sizeof(struct ipv6hdr))))
1188 if (skb->protocol == htons(ETH_P_IP))
1189 inner_tos = ip_hdr(skb)->tos;
1190 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1191 else if (skb->protocol == htons(ETH_P_IPV6))
1192 inner_tos = ipv6_get_dsfield(ipv6_hdr(skb));
1197 if (mutable->flags & TNL_F_TOS_INHERIT)
1202 tos = INET_ECN_encapsulate(tos, inner_tos);
1205 rt = find_route(vport, mutable, tos, &cache);
1208 if (unlikely(!cache))
1209 unattached_dst = &rt_dst(rt);
1215 skb_clear_rxhash(skb);
1218 skb = handle_offloads(skb, mutable, rt);
1223 if (unlikely(!check_mtu(skb, vport, mutable, rt, &frag_off))) {
1224 err = VPORT_E_TX_DROPPED;
1229 * If we are over the MTU, allow the IP stack to handle fragmentation.
1230 * Fragmentation is a slow path anyways.
1232 if (unlikely(skb->len + mutable->tunnel_hlen > dst_mtu(&rt_dst(rt)) &&
1234 unattached_dst = &rt_dst(rt);
1235 dst_hold(unattached_dst);
1242 ttl = ip4_dst_hoplimit(&rt_dst(rt));
1244 if (mutable->flags & TNL_F_TTL_INHERIT) {
1245 if (skb->protocol == htons(ETH_P_IP))
1246 ttl = ip_hdr(skb)->ttl;
1247 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1248 else if (skb->protocol == htons(ETH_P_IPV6))
1249 ttl = ipv6_hdr(skb)->hop_limit;
1255 struct sk_buff *next_skb = skb->next;
1258 if (unlikely(vlan_deaccel_tag(skb)))
1261 if (likely(cache)) {
1262 skb_push(skb, cache->len);
1263 memcpy(skb->data, get_cached_header(cache), cache->len);
1264 skb_reset_mac_header(skb);
1265 skb_set_network_header(skb, cache->hh_len);
1268 skb_push(skb, mutable->tunnel_hlen);
1269 create_tunnel_header(vport, mutable, rt, skb->data);
1270 skb_reset_network_header(skb);
1273 skb_dst_set(skb, dst_clone(unattached_dst));
1275 skb_dst_set(skb, unattached_dst);
1276 unattached_dst = NULL;
1279 skb_set_transport_header(skb, skb_network_offset(skb) + sizeof(struct iphdr));
1284 iph->frag_off = frag_off;
1285 ip_select_ident(iph, &rt_dst(rt), NULL);
1287 skb = tnl_vport->tnl_ops->update_header(vport, mutable,
1292 if (likely(cache)) {
1293 int orig_len = skb->len - cache->len;
1294 struct vport *cache_vport;
1296 cache_vport = internal_dev_get_vport(rt_dst(rt).dev);
1297 skb->protocol = htons(ETH_P_IP);
1299 iph->tot_len = htons(skb->len - skb_network_offset(skb));
1303 if (unlikely(compute_ip_summed(skb, true))) {
1308 OVS_CB(skb)->flow = cache->flow;
1309 vport_receive(cache_vport, skb);
1310 sent_len += orig_len;
1314 skb->dev = rt_dst(rt).dev;
1315 xmit_err = dev_queue_xmit(skb);
1317 if (likely(net_xmit_eval(xmit_err) == 0))
1318 sent_len += orig_len;
1321 sent_len += send_frags(skb, mutable);
1327 if (unlikely(sent_len == 0))
1328 vport_record_error(vport, VPORT_E_TX_DROPPED);
1333 tnl_free_linked_skbs(skb);
1335 vport_record_error(vport, err);
1337 dst_release(unattached_dst);
1341 static const struct nla_policy tnl_policy[OVS_TUNNEL_ATTR_MAX + 1] = {
1342 [OVS_TUNNEL_ATTR_FLAGS] = { .type = NLA_U32 },
1343 [OVS_TUNNEL_ATTR_DST_IPV4] = { .type = NLA_U32 },
1344 [OVS_TUNNEL_ATTR_SRC_IPV4] = { .type = NLA_U32 },
1345 [OVS_TUNNEL_ATTR_OUT_KEY] = { .type = NLA_U64 },
1346 [OVS_TUNNEL_ATTR_IN_KEY] = { .type = NLA_U64 },
1347 [OVS_TUNNEL_ATTR_TOS] = { .type = NLA_U8 },
1348 [OVS_TUNNEL_ATTR_TTL] = { .type = NLA_U8 },
1351 /* Sets OVS_TUNNEL_ATTR_* fields in 'mutable', which must initially be
1353 static int tnl_set_config(struct nlattr *options, const struct tnl_ops *tnl_ops,
1354 const struct vport *cur_vport,
1355 struct tnl_mutable_config *mutable)
1357 const struct vport *old_vport;
1358 const struct tnl_mutable_config *old_mutable;
1359 struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1];
1365 err = nla_parse_nested(a, OVS_TUNNEL_ATTR_MAX, options, tnl_policy);
1369 if (!a[OVS_TUNNEL_ATTR_FLAGS] || !a[OVS_TUNNEL_ATTR_DST_IPV4])
1372 mutable->flags = nla_get_u32(a[OVS_TUNNEL_ATTR_FLAGS]) & TNL_F_PUBLIC;
1374 mutable->key.daddr = nla_get_be32(a[OVS_TUNNEL_ATTR_DST_IPV4]);
1375 if (a[OVS_TUNNEL_ATTR_SRC_IPV4]) {
1376 if (ipv4_is_multicast(mutable->key.daddr))
1378 mutable->key.saddr = nla_get_be32(a[OVS_TUNNEL_ATTR_SRC_IPV4]);
1381 if (a[OVS_TUNNEL_ATTR_TOS]) {
1382 mutable->tos = nla_get_u8(a[OVS_TUNNEL_ATTR_TOS]);
1383 if (mutable->tos != RT_TOS(mutable->tos))
1387 if (a[OVS_TUNNEL_ATTR_TTL])
1388 mutable->ttl = nla_get_u8(a[OVS_TUNNEL_ATTR_TTL]);
1390 mutable->key.tunnel_type = tnl_ops->tunnel_type;
1391 if (!a[OVS_TUNNEL_ATTR_IN_KEY]) {
1392 mutable->key.tunnel_type |= TNL_T_KEY_MATCH;
1393 mutable->flags |= TNL_F_IN_KEY_MATCH;
1395 mutable->key.tunnel_type |= TNL_T_KEY_EXACT;
1396 mutable->key.in_key = nla_get_be64(a[OVS_TUNNEL_ATTR_IN_KEY]);
1399 if (!a[OVS_TUNNEL_ATTR_OUT_KEY])
1400 mutable->flags |= TNL_F_OUT_KEY_ACTION;
1402 mutable->out_key = nla_get_be64(a[OVS_TUNNEL_ATTR_OUT_KEY]);
1404 mutable->tunnel_hlen = tnl_ops->hdr_len(mutable);
1405 if (mutable->tunnel_hlen < 0)
1406 return mutable->tunnel_hlen;
1408 mutable->tunnel_hlen += sizeof(struct iphdr);
1410 old_vport = port_table_lookup(&mutable->key, &old_mutable);
1411 if (old_vport && old_vport != cur_vport)
1415 if (ipv4_is_multicast(mutable->key.daddr)) {
1416 struct net_device *dev;
1419 rt = __find_route(mutable, tnl_ops->ipproto, mutable->tos);
1421 return -EADDRNOTAVAIL;
1422 dev = rt_dst(rt).dev;
1424 if (__in_dev_get_rtnl(dev) == NULL)
1425 return -EADDRNOTAVAIL;
1426 mutable->mlink = dev->ifindex;
1427 ip_mc_inc_group(__in_dev_get_rtnl(dev), mutable->key.daddr);
1433 struct vport *tnl_create(const struct vport_parms *parms,
1434 const struct vport_ops *vport_ops,
1435 const struct tnl_ops *tnl_ops)
1437 struct vport *vport;
1438 struct tnl_vport *tnl_vport;
1439 struct tnl_mutable_config *mutable;
1440 int initial_frag_id;
1443 vport = vport_alloc(sizeof(struct tnl_vport), vport_ops, parms);
1444 if (IS_ERR(vport)) {
1445 err = PTR_ERR(vport);
1449 tnl_vport = tnl_vport_priv(vport);
1451 strcpy(tnl_vport->name, parms->name);
1452 tnl_vport->tnl_ops = tnl_ops;
1454 mutable = kzalloc(sizeof(struct tnl_mutable_config), GFP_KERNEL);
1457 goto error_free_vport;
1460 vport_gen_rand_ether_addr(mutable->eth_addr);
1462 get_random_bytes(&initial_frag_id, sizeof(int));
1463 atomic_set(&tnl_vport->frag_id, initial_frag_id);
1465 err = tnl_set_config(parms->options, tnl_ops, NULL, mutable);
1467 goto error_free_mutable;
1469 spin_lock_init(&tnl_vport->cache_lock);
1471 #ifdef NEED_CACHE_TIMEOUT
1472 tnl_vport->cache_exp_interval = MAX_CACHE_EXP -
1473 (net_random() % (MAX_CACHE_EXP / 2));
1476 rcu_assign_pointer(tnl_vport->mutable, mutable);
1478 port_table_add_port(vport);
1482 free_mutable_rtnl(mutable);
1487 return ERR_PTR(err);
1490 int tnl_set_options(struct vport *vport, struct nlattr *options)
1492 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1493 const struct tnl_mutable_config *old_mutable;
1494 struct tnl_mutable_config *mutable;
1497 mutable = kzalloc(sizeof(struct tnl_mutable_config), GFP_KERNEL);
1503 /* Copy fields whose values should be retained. */
1504 old_mutable = rtnl_dereference(tnl_vport->mutable);
1505 mutable->seq = old_mutable->seq + 1;
1506 memcpy(mutable->eth_addr, old_mutable->eth_addr, ETH_ALEN);
1508 /* Parse the others configured by userspace. */
1509 err = tnl_set_config(options, tnl_vport->tnl_ops, vport, mutable);
1513 if (port_hash(&mutable->key) != port_hash(&old_mutable->key))
1514 port_table_move_port(vport, mutable);
1516 assign_config_rcu(vport, mutable);
1521 free_mutable_rtnl(mutable);
1527 int tnl_get_options(const struct vport *vport, struct sk_buff *skb)
1529 const struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1530 const struct tnl_mutable_config *mutable = rcu_dereference_rtnl(tnl_vport->mutable);
1532 NLA_PUT_U32(skb, OVS_TUNNEL_ATTR_FLAGS, mutable->flags & TNL_F_PUBLIC);
1533 NLA_PUT_BE32(skb, OVS_TUNNEL_ATTR_DST_IPV4, mutable->key.daddr);
1535 if (!(mutable->flags & TNL_F_IN_KEY_MATCH))
1536 NLA_PUT_BE64(skb, OVS_TUNNEL_ATTR_IN_KEY, mutable->key.in_key);
1537 if (!(mutable->flags & TNL_F_OUT_KEY_ACTION))
1538 NLA_PUT_BE64(skb, OVS_TUNNEL_ATTR_OUT_KEY, mutable->out_key);
1539 if (mutable->key.saddr)
1540 NLA_PUT_BE32(skb, OVS_TUNNEL_ATTR_SRC_IPV4, mutable->key.saddr);
1542 NLA_PUT_U8(skb, OVS_TUNNEL_ATTR_TOS, mutable->tos);
1544 NLA_PUT_U8(skb, OVS_TUNNEL_ATTR_TTL, mutable->ttl);
1552 static void free_port_rcu(struct rcu_head *rcu)
1554 struct tnl_vport *tnl_vport = container_of(rcu,
1555 struct tnl_vport, rcu);
1557 free_cache((struct tnl_cache __force *)tnl_vport->cache);
1558 kfree((struct tnl_mutable __force *)tnl_vport->mutable);
1559 vport_free(tnl_vport_to_vport(tnl_vport));
1562 void tnl_destroy(struct vport *vport)
1564 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1565 struct tnl_mutable_config *mutable;
1567 mutable = rtnl_dereference(tnl_vport->mutable);
1568 port_table_remove_port(vport);
1569 free_mutable_rtnl(mutable);
1570 call_rcu(&tnl_vport->rcu, free_port_rcu);
1573 int tnl_set_addr(struct vport *vport, const unsigned char *addr)
1575 struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1576 struct tnl_mutable_config *old_mutable, *mutable;
1578 old_mutable = rtnl_dereference(tnl_vport->mutable);
1579 mutable = kmemdup(old_mutable, sizeof(struct tnl_mutable_config), GFP_KERNEL);
1583 old_mutable->mlink = 0;
1585 memcpy(mutable->eth_addr, addr, ETH_ALEN);
1586 assign_config_rcu(vport, mutable);
1591 const char *tnl_get_name(const struct vport *vport)
1593 const struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1594 return tnl_vport->name;
1597 const unsigned char *tnl_get_addr(const struct vport *vport)
1599 const struct tnl_vport *tnl_vport = tnl_vport_priv(vport);
1600 return rcu_dereference_rtnl(tnl_vport->mutable)->eth_addr;
1603 void tnl_free_linked_skbs(struct sk_buff *skb)
1606 struct sk_buff *next = skb->next;
1616 port_table = kmalloc(PORT_TABLE_SIZE * sizeof(struct hlist_head *),
1621 for (i = 0; i < PORT_TABLE_SIZE; i++)
1622 INIT_HLIST_HEAD(&port_table[i]);
1631 for (i = 0; i < PORT_TABLE_SIZE; i++) {
1632 struct tnl_vport *tnl_vport;
1633 struct hlist_head *hash_head;
1634 struct hlist_node *n;
1636 hash_head = &port_table[i];
1637 hlist_for_each_entry(tnl_vport, n, hash_head, hash_node) {