blob: 43887d92777535e11a628e39c84ca60482a5886f [file] [log] [blame]
stephen hemmingerd3428942012-10-01 12:32:35 +00001/*
2 * VXLAN: Virtual eXtensiable Local Area Network
3 *
4 * Copyright (c) 2012 Vyatta Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * TODO
11 * - use IANA UDP port number (when defined)
12 * - IPv6 (not in RFC)
13 */
14
15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
17#include <linux/kernel.h>
18#include <linux/types.h>
19#include <linux/module.h>
20#include <linux/errno.h>
21#include <linux/slab.h>
22#include <linux/skbuff.h>
23#include <linux/rculist.h>
24#include <linux/netdevice.h>
25#include <linux/in.h>
26#include <linux/ip.h>
27#include <linux/udp.h>
28#include <linux/igmp.h>
29#include <linux/etherdevice.h>
30#include <linux/if_ether.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000031#include <linux/hash.h>
32#include <net/ip.h>
33#include <net/icmp.h>
34#include <net/udp.h>
35#include <net/rtnetlink.h>
36#include <net/route.h>
37#include <net/dsfield.h>
38#include <net/inet_ecn.h>
39#include <net/net_namespace.h>
40#include <net/netns/generic.h>
41
42#define VXLAN_VERSION "0.1"
43
44#define VNI_HASH_BITS 10
45#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
46#define FDB_HASH_BITS 8
47#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
48#define FDB_AGE_DEFAULT 300 /* 5 min */
49#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
50
51#define VXLAN_N_VID (1u << 24)
52#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
53/* VLAN + IP header + UDP + VXLAN */
54#define VXLAN_HEADROOM (4 + 20 + 8 + 8)
55
56#define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */
57
58/* VXLAN protocol header */
59struct vxlanhdr {
60 __be32 vx_flags;
61 __be32 vx_vni;
62};
63
64/* UDP port for VXLAN traffic. */
65static unsigned int vxlan_port __read_mostly = 8472;
66module_param_named(udp_port, vxlan_port, uint, 0444);
67MODULE_PARM_DESC(udp_port, "Destination UDP port");
68
69static bool log_ecn_error = true;
70module_param(log_ecn_error, bool, 0644);
71MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
72
73/* per-net private data for this module */
74static unsigned int vxlan_net_id;
75struct vxlan_net {
76 struct socket *sock; /* UDP encap socket */
77 struct hlist_head vni_list[VNI_HASH_SIZE];
78};
79
80/* Forwarding table entry */
81struct vxlan_fdb {
82 struct hlist_node hlist; /* linked list of entries */
83 struct rcu_head rcu;
84 unsigned long updated; /* jiffies */
85 unsigned long used;
86 __be32 remote_ip;
87 u16 state; /* see ndm_state */
88 u8 eth_addr[ETH_ALEN];
89};
90
91/* Per-cpu network traffic stats */
92struct vxlan_stats {
93 u64 rx_packets;
94 u64 rx_bytes;
95 u64 tx_packets;
96 u64 tx_bytes;
97 struct u64_stats_sync syncp;
98};
99
100/* Pseudo network device */
101struct vxlan_dev {
102 struct hlist_node hlist;
103 struct net_device *dev;
104 struct vxlan_stats __percpu *stats;
105 __u32 vni; /* virtual network id */
106 __be32 gaddr; /* multicast group */
107 __be32 saddr; /* source address */
108 unsigned int link; /* link to multicast over */
109 __u8 tos; /* TOS override */
110 __u8 ttl;
111 bool learn;
112
113 unsigned long age_interval;
114 struct timer_list age_timer;
115 spinlock_t hash_lock;
116 unsigned int addrcnt;
117 unsigned int addrmax;
118 unsigned int addrexceeded;
119
120 struct hlist_head fdb_head[FDB_HASH_SIZE];
121};
122
123/* salt for hash table */
124static u32 vxlan_salt __read_mostly;
125
126static inline struct hlist_head *vni_head(struct net *net, u32 id)
127{
128 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
129
130 return &vn->vni_list[hash_32(id, VNI_HASH_BITS)];
131}
132
133/* Look up VNI in a per net namespace table */
134static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id)
135{
136 struct vxlan_dev *vxlan;
137 struct hlist_node *node;
138
139 hlist_for_each_entry_rcu(vxlan, node, vni_head(net, id), hlist) {
140 if (vxlan->vni == id)
141 return vxlan;
142 }
143
144 return NULL;
145}
146
147/* Fill in neighbour message in skbuff. */
148static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
149 const struct vxlan_fdb *fdb,
150 u32 portid, u32 seq, int type, unsigned int flags)
151{
152 unsigned long now = jiffies;
153 struct nda_cacheinfo ci;
154 struct nlmsghdr *nlh;
155 struct ndmsg *ndm;
156
157 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
158 if (nlh == NULL)
159 return -EMSGSIZE;
160
161 ndm = nlmsg_data(nlh);
162 memset(ndm, 0, sizeof(*ndm));
163 ndm->ndm_family = AF_BRIDGE;
164 ndm->ndm_state = fdb->state;
165 ndm->ndm_ifindex = vxlan->dev->ifindex;
166 ndm->ndm_flags = NTF_SELF;
167 ndm->ndm_type = NDA_DST;
168
169 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
170 goto nla_put_failure;
171
172 if (nla_put_be32(skb, NDA_DST, fdb->remote_ip))
173 goto nla_put_failure;
174
175 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
176 ci.ndm_confirmed = 0;
177 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
178 ci.ndm_refcnt = 0;
179
180 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
181 goto nla_put_failure;
182
183 return nlmsg_end(skb, nlh);
184
185nla_put_failure:
186 nlmsg_cancel(skb, nlh);
187 return -EMSGSIZE;
188}
189
190static inline size_t vxlan_nlmsg_size(void)
191{
192 return NLMSG_ALIGN(sizeof(struct ndmsg))
193 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
194 + nla_total_size(sizeof(__be32)) /* NDA_DST */
195 + nla_total_size(sizeof(struct nda_cacheinfo));
196}
197
198static void vxlan_fdb_notify(struct vxlan_dev *vxlan,
199 const struct vxlan_fdb *fdb, int type)
200{
201 struct net *net = dev_net(vxlan->dev);
202 struct sk_buff *skb;
203 int err = -ENOBUFS;
204
205 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
206 if (skb == NULL)
207 goto errout;
208
209 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0);
210 if (err < 0) {
211 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
212 WARN_ON(err == -EMSGSIZE);
213 kfree_skb(skb);
214 goto errout;
215 }
216
217 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
218 return;
219errout:
220 if (err < 0)
221 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
222}
223
224/* Hash Ethernet address */
225static u32 eth_hash(const unsigned char *addr)
226{
227 u64 value = get_unaligned((u64 *)addr);
228
229 /* only want 6 bytes */
230#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000231 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000232#else
233 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000234#endif
235 return hash_64(value, FDB_HASH_BITS);
236}
237
238/* Hash chain to use given mac address */
239static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
240 const u8 *mac)
241{
242 return &vxlan->fdb_head[eth_hash(mac)];
243}
244
245/* Look up Ethernet address in forwarding table */
246static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
247 const u8 *mac)
248
249{
250 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
251 struct vxlan_fdb *f;
252 struct hlist_node *node;
253
254 hlist_for_each_entry_rcu(f, node, head, hlist) {
255 if (compare_ether_addr(mac, f->eth_addr) == 0)
256 return f;
257 }
258
259 return NULL;
260}
261
262/* Add new entry to forwarding table -- assumes lock held */
263static int vxlan_fdb_create(struct vxlan_dev *vxlan,
264 const u8 *mac, __be32 ip,
265 __u16 state, __u16 flags)
266{
267 struct vxlan_fdb *f;
268 int notify = 0;
269
270 f = vxlan_find_mac(vxlan, mac);
271 if (f) {
272 if (flags & NLM_F_EXCL) {
273 netdev_dbg(vxlan->dev,
274 "lost race to create %pM\n", mac);
275 return -EEXIST;
276 }
277 if (f->state != state) {
278 f->state = state;
279 f->updated = jiffies;
280 notify = 1;
281 }
282 } else {
283 if (!(flags & NLM_F_CREATE))
284 return -ENOENT;
285
286 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
287 return -ENOSPC;
288
289 netdev_dbg(vxlan->dev, "add %pM -> %pI4\n", mac, &ip);
290 f = kmalloc(sizeof(*f), GFP_ATOMIC);
291 if (!f)
292 return -ENOMEM;
293
294 notify = 1;
295 f->remote_ip = ip;
296 f->state = state;
297 f->updated = f->used = jiffies;
298 memcpy(f->eth_addr, mac, ETH_ALEN);
299
300 ++vxlan->addrcnt;
301 hlist_add_head_rcu(&f->hlist,
302 vxlan_fdb_head(vxlan, mac));
303 }
304
305 if (notify)
306 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
307
308 return 0;
309}
310
311static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
312{
313 netdev_dbg(vxlan->dev,
314 "delete %pM\n", f->eth_addr);
315
316 --vxlan->addrcnt;
317 vxlan_fdb_notify(vxlan, f, RTM_DELNEIGH);
318
319 hlist_del_rcu(&f->hlist);
320 kfree_rcu(f, rcu);
321}
322
323/* Add static entry (via netlink) */
324static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
325 struct net_device *dev,
326 const unsigned char *addr, u16 flags)
327{
328 struct vxlan_dev *vxlan = netdev_priv(dev);
329 __be32 ip;
330 int err;
331
332 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
333 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
334 ndm->ndm_state);
335 return -EINVAL;
336 }
337
338 if (tb[NDA_DST] == NULL)
339 return -EINVAL;
340
341 if (nla_len(tb[NDA_DST]) != sizeof(__be32))
342 return -EAFNOSUPPORT;
343
344 ip = nla_get_be32(tb[NDA_DST]);
345
346 spin_lock_bh(&vxlan->hash_lock);
347 err = vxlan_fdb_create(vxlan, addr, ip, ndm->ndm_state, flags);
348 spin_unlock_bh(&vxlan->hash_lock);
349
350 return err;
351}
352
353/* Delete entry (via netlink) */
354static int vxlan_fdb_delete(struct ndmsg *ndm, struct net_device *dev,
355 const unsigned char *addr)
356{
357 struct vxlan_dev *vxlan = netdev_priv(dev);
358 struct vxlan_fdb *f;
359 int err = -ENOENT;
360
361 spin_lock_bh(&vxlan->hash_lock);
362 f = vxlan_find_mac(vxlan, addr);
363 if (f) {
364 vxlan_fdb_destroy(vxlan, f);
365 err = 0;
366 }
367 spin_unlock_bh(&vxlan->hash_lock);
368
369 return err;
370}
371
372/* Dump forwarding table */
373static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
374 struct net_device *dev, int idx)
375{
376 struct vxlan_dev *vxlan = netdev_priv(dev);
377 unsigned int h;
378
379 for (h = 0; h < FDB_HASH_SIZE; ++h) {
380 struct vxlan_fdb *f;
381 struct hlist_node *n;
382 int err;
383
384 hlist_for_each_entry_rcu(f, n, &vxlan->fdb_head[h], hlist) {
385 if (idx < cb->args[0])
386 goto skip;
387
388 err = vxlan_fdb_info(skb, vxlan, f,
389 NETLINK_CB(cb->skb).portid,
390 cb->nlh->nlmsg_seq,
391 RTM_NEWNEIGH,
392 NLM_F_MULTI);
393 if (err < 0)
394 break;
395skip:
396 ++idx;
397 }
398 }
399
400 return idx;
401}
402
403/* Watch incoming packets to learn mapping between Ethernet address
404 * and Tunnel endpoint.
405 */
406static void vxlan_snoop(struct net_device *dev,
407 __be32 src_ip, const u8 *src_mac)
408{
409 struct vxlan_dev *vxlan = netdev_priv(dev);
410 struct vxlan_fdb *f;
411 int err;
412
413 f = vxlan_find_mac(vxlan, src_mac);
414 if (likely(f)) {
415 f->used = jiffies;
416 if (likely(f->remote_ip == src_ip))
417 return;
418
419 if (net_ratelimit())
420 netdev_info(dev,
421 "%pM migrated from %pI4 to %pI4\n",
422 src_mac, &f->remote_ip, &src_ip);
423
424 f->remote_ip = src_ip;
425 f->updated = jiffies;
426 } else {
427 /* learned new entry */
428 spin_lock(&vxlan->hash_lock);
429 err = vxlan_fdb_create(vxlan, src_mac, src_ip,
430 NUD_REACHABLE,
431 NLM_F_EXCL|NLM_F_CREATE);
432 spin_unlock(&vxlan->hash_lock);
433 }
434}
435
436
437/* See if multicast group is already in use by other ID */
438static bool vxlan_group_used(struct vxlan_net *vn,
439 const struct vxlan_dev *this)
440{
441 const struct vxlan_dev *vxlan;
442 struct hlist_node *node;
443 unsigned h;
444
445 for (h = 0; h < VNI_HASH_SIZE; ++h)
446 hlist_for_each_entry(vxlan, node, &vn->vni_list[h], hlist) {
447 if (vxlan == this)
448 continue;
449
450 if (!netif_running(vxlan->dev))
451 continue;
452
453 if (vxlan->gaddr == this->gaddr)
454 return true;
455 }
456
457 return false;
458}
459
460/* kernel equivalent to IP_ADD_MEMBERSHIP */
461static int vxlan_join_group(struct net_device *dev)
462{
463 struct vxlan_dev *vxlan = netdev_priv(dev);
464 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
465 struct sock *sk = vn->sock->sk;
466 struct ip_mreqn mreq = {
467 .imr_multiaddr.s_addr = vxlan->gaddr,
468 };
469 int err;
470
471 /* Already a member of group */
472 if (vxlan_group_used(vn, vxlan))
473 return 0;
474
475 /* Need to drop RTNL to call multicast join */
476 rtnl_unlock();
477 lock_sock(sk);
478 err = ip_mc_join_group(sk, &mreq);
479 release_sock(sk);
480 rtnl_lock();
481
482 return err;
483}
484
485
486/* kernel equivalent to IP_DROP_MEMBERSHIP */
487static int vxlan_leave_group(struct net_device *dev)
488{
489 struct vxlan_dev *vxlan = netdev_priv(dev);
490 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
491 int err = 0;
492 struct sock *sk = vn->sock->sk;
493 struct ip_mreqn mreq = {
494 .imr_multiaddr.s_addr = vxlan->gaddr,
495 };
496
497 /* Only leave group when last vxlan is done. */
498 if (vxlan_group_used(vn, vxlan))
499 return 0;
500
501 /* Need to drop RTNL to call multicast leave */
502 rtnl_unlock();
503 lock_sock(sk);
504 err = ip_mc_leave_group(sk, &mreq);
505 release_sock(sk);
506 rtnl_lock();
507
508 return err;
509}
510
511/* Callback from net/ipv4/udp.c to receive packets */
512static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
513{
514 struct iphdr *oip;
515 struct vxlanhdr *vxh;
516 struct vxlan_dev *vxlan;
517 struct vxlan_stats *stats;
518 __u32 vni;
519 int err;
520
521 /* pop off outer UDP header */
522 __skb_pull(skb, sizeof(struct udphdr));
523
524 /* Need Vxlan and inner Ethernet header to be present */
525 if (!pskb_may_pull(skb, sizeof(struct vxlanhdr)))
526 goto error;
527
528 /* Drop packets with reserved bits set */
529 vxh = (struct vxlanhdr *) skb->data;
530 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
531 (vxh->vx_vni & htonl(0xff))) {
532 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
533 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
534 goto error;
535 }
536
537 __skb_pull(skb, sizeof(struct vxlanhdr));
538 skb_postpull_rcsum(skb, eth_hdr(skb), sizeof(struct vxlanhdr));
539
540 /* Is this VNI defined? */
541 vni = ntohl(vxh->vx_vni) >> 8;
542 vxlan = vxlan_find_vni(sock_net(sk), vni);
543 if (!vxlan) {
544 netdev_dbg(skb->dev, "unknown vni %d\n", vni);
545 goto drop;
546 }
547
548 if (!pskb_may_pull(skb, ETH_HLEN)) {
549 vxlan->dev->stats.rx_length_errors++;
550 vxlan->dev->stats.rx_errors++;
551 goto drop;
552 }
553
554 /* Re-examine inner Ethernet packet */
555 oip = ip_hdr(skb);
556 skb->protocol = eth_type_trans(skb, vxlan->dev);
557 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
558
559 /* Ignore packet loops (and multicast echo) */
560 if (compare_ether_addr(eth_hdr(skb)->h_source,
561 vxlan->dev->dev_addr) == 0)
562 goto drop;
563
564 if (vxlan->learn)
565 vxlan_snoop(skb->dev, oip->saddr, eth_hdr(skb)->h_source);
566
567 __skb_tunnel_rx(skb, vxlan->dev);
568 skb_reset_network_header(skb);
569
570 err = IP_ECN_decapsulate(oip, skb);
571 if (unlikely(err)) {
572 if (log_ecn_error)
573 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
574 &oip->saddr, oip->tos);
575 if (err > 1) {
576 ++vxlan->dev->stats.rx_frame_errors;
577 ++vxlan->dev->stats.rx_errors;
578 goto drop;
579 }
580 }
581
582 stats = this_cpu_ptr(vxlan->stats);
583 u64_stats_update_begin(&stats->syncp);
584 stats->rx_packets++;
585 stats->rx_bytes += skb->len;
586 u64_stats_update_end(&stats->syncp);
587
588 netif_rx(skb);
589
590 return 0;
591error:
592 /* Put UDP header back */
593 __skb_push(skb, sizeof(struct udphdr));
594
595 return 1;
596drop:
597 /* Consume bad packet */
598 kfree_skb(skb);
599 return 0;
600}
601
602/* Extract dsfield from inner protocol */
603static inline u8 vxlan_get_dsfield(const struct iphdr *iph,
604 const struct sk_buff *skb)
605{
606 if (skb->protocol == htons(ETH_P_IP))
607 return iph->tos;
608 else if (skb->protocol == htons(ETH_P_IPV6))
609 return ipv6_get_dsfield((const struct ipv6hdr *)iph);
610 else
611 return 0;
612}
613
614/* Propogate ECN bits out */
615static inline u8 vxlan_ecn_encap(u8 tos,
616 const struct iphdr *iph,
617 const struct sk_buff *skb)
618{
619 u8 inner = vxlan_get_dsfield(iph, skb);
620
621 return INET_ECN_encapsulate(tos, inner);
622}
623
stephen hemmingeref59feb2012-10-09 20:35:46 +0000624static __be32 vxlan_find_dst(struct vxlan_dev *vxlan, struct sk_buff *skb)
625{
626 const struct ethhdr *eth = (struct ethhdr *) skb->data;
627 const struct vxlan_fdb *f;
628
629 if (is_multicast_ether_addr(eth->h_dest))
630 return vxlan->gaddr;
631
632 f = vxlan_find_mac(vxlan, eth->h_dest);
633 if (f)
634 return f->remote_ip;
635 else
636 return vxlan->gaddr;
637
638}
639
stephen hemminger1cad8712012-10-09 20:35:49 +0000640static void vxlan_sock_free(struct sk_buff *skb)
641{
642 sock_put(skb->sk);
643}
644
645/* On transmit, associate with the tunnel socket */
646static void vxlan_set_owner(struct net_device *dev, struct sk_buff *skb)
647{
648 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
649 struct sock *sk = vn->sock->sk;
650
651 skb_orphan(skb);
652 sock_hold(sk);
653 skb->sk = sk;
654 skb->destructor = vxlan_sock_free;
655}
656
stephen hemmingerd3428942012-10-01 12:32:35 +0000657/* Transmit local packets over Vxlan
658 *
659 * Outer IP header inherits ECN and DF from inner header.
660 * Outer UDP destination is the VXLAN assigned port.
661 * source port is based on hash of flow if available
662 * otherwise use a random value
663 */
664static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
665{
666 struct vxlan_dev *vxlan = netdev_priv(dev);
667 struct rtable *rt;
stephen hemmingerd3428942012-10-01 12:32:35 +0000668 const struct iphdr *old_iph;
669 struct iphdr *iph;
670 struct vxlanhdr *vxh;
671 struct udphdr *uh;
672 struct flowi4 fl4;
stephen hemmingerd3428942012-10-01 12:32:35 +0000673 unsigned int pkt_len = skb->len;
674 u32 hash;
675 __be32 dst;
676 __be16 df = 0;
677 __u8 tos, ttl;
678 int err;
679
stephen hemmingeref59feb2012-10-09 20:35:46 +0000680 dst = vxlan_find_dst(vxlan, skb);
681 if (!dst)
682 goto drop;
683
stephen hemmingerd3428942012-10-01 12:32:35 +0000684 /* Need space for new headers (invalidates iph ptr) */
685 if (skb_cow_head(skb, VXLAN_HEADROOM))
686 goto drop;
687
stephen hemmingerd3428942012-10-01 12:32:35 +0000688 old_iph = ip_hdr(skb);
689
stephen hemmingerd3428942012-10-01 12:32:35 +0000690 ttl = vxlan->ttl;
691 if (!ttl && IN_MULTICAST(ntohl(dst)))
692 ttl = 1;
693
694 tos = vxlan->tos;
695 if (tos == 1)
696 tos = vxlan_get_dsfield(old_iph, skb);
697
698 hash = skb_get_rxhash(skb);
699
stephen hemmingerca78f182012-10-09 20:35:48 +0000700 memset(&fl4, 0, sizeof(fl4));
701 fl4.flowi4_oif = vxlan->link;
702 fl4.flowi4_tos = RT_TOS(tos);
703 fl4.daddr = dst;
704 fl4.saddr = vxlan->saddr;
705
706 rt = ip_route_output_key(dev_net(dev), &fl4);
stephen hemmingerd3428942012-10-01 12:32:35 +0000707 if (IS_ERR(rt)) {
708 netdev_dbg(dev, "no route to %pI4\n", &dst);
709 dev->stats.tx_carrier_errors++;
710 goto tx_error;
711 }
712
713 if (rt->dst.dev == dev) {
714 netdev_dbg(dev, "circular route to %pI4\n", &dst);
715 ip_rt_put(rt);
716 dev->stats.collisions++;
717 goto tx_error;
718 }
719
720 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
721 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
722 IPSKB_REROUTED);
723 skb_dst_drop(skb);
724 skb_dst_set(skb, &rt->dst);
725
726 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
727 vxh->vx_flags = htonl(VXLAN_FLAGS);
728 vxh->vx_vni = htonl(vxlan->vni << 8);
729
730 __skb_push(skb, sizeof(*uh));
731 skb_reset_transport_header(skb);
732 uh = udp_hdr(skb);
733
734 uh->dest = htons(vxlan_port);
735 uh->source = hash ? :random32();
736
737 uh->len = htons(skb->len);
738 uh->check = 0;
739
740 __skb_push(skb, sizeof(*iph));
741 skb_reset_network_header(skb);
742 iph = ip_hdr(skb);
743 iph->version = 4;
744 iph->ihl = sizeof(struct iphdr) >> 2;
745 iph->frag_off = df;
746 iph->protocol = IPPROTO_UDP;
747 iph->tos = vxlan_ecn_encap(tos, old_iph, skb);
stephen hemmingerca78f182012-10-09 20:35:48 +0000748 iph->daddr = dst;
stephen hemmingerd3428942012-10-01 12:32:35 +0000749 iph->saddr = fl4.saddr;
750 iph->ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
751
stephen hemminger1cad8712012-10-09 20:35:49 +0000752 vxlan_set_owner(dev, skb);
753
stephen hemmingerd3428942012-10-01 12:32:35 +0000754 /* See __IPTUNNEL_XMIT */
755 skb->ip_summed = CHECKSUM_NONE;
756 ip_select_ident(iph, &rt->dst, NULL);
757
758 err = ip_local_out(skb);
759 if (likely(net_xmit_eval(err) == 0)) {
760 struct vxlan_stats *stats = this_cpu_ptr(vxlan->stats);
761
762 u64_stats_update_begin(&stats->syncp);
763 stats->tx_packets++;
764 stats->tx_bytes += pkt_len;
765 u64_stats_update_end(&stats->syncp);
766 } else {
767 dev->stats.tx_errors++;
768 dev->stats.tx_aborted_errors++;
769 }
770 return NETDEV_TX_OK;
771
772drop:
773 dev->stats.tx_dropped++;
774 goto tx_free;
775
776tx_error:
777 dev->stats.tx_errors++;
778tx_free:
779 dev_kfree_skb(skb);
780 return NETDEV_TX_OK;
781}
782
783/* Walk the forwarding table and purge stale entries */
784static void vxlan_cleanup(unsigned long arg)
785{
786 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
787 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
788 unsigned int h;
789
790 if (!netif_running(vxlan->dev))
791 return;
792
793 spin_lock_bh(&vxlan->hash_lock);
794 for (h = 0; h < FDB_HASH_SIZE; ++h) {
795 struct hlist_node *p, *n;
796 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
797 struct vxlan_fdb *f
798 = container_of(p, struct vxlan_fdb, hlist);
799 unsigned long timeout;
800
801 if (f->state == NUD_PERMANENT)
802 continue;
803
804 timeout = f->used + vxlan->age_interval * HZ;
805 if (time_before_eq(timeout, jiffies)) {
806 netdev_dbg(vxlan->dev,
807 "garbage collect %pM\n",
808 f->eth_addr);
809 f->state = NUD_STALE;
810 vxlan_fdb_destroy(vxlan, f);
811 } else if (time_before(timeout, next_timer))
812 next_timer = timeout;
813 }
814 }
815 spin_unlock_bh(&vxlan->hash_lock);
816
817 mod_timer(&vxlan->age_timer, next_timer);
818}
819
820/* Setup stats when device is created */
821static int vxlan_init(struct net_device *dev)
822{
823 struct vxlan_dev *vxlan = netdev_priv(dev);
824
825 vxlan->stats = alloc_percpu(struct vxlan_stats);
826 if (!vxlan->stats)
827 return -ENOMEM;
828
829 return 0;
830}
831
832/* Start ageing timer and join group when device is brought up */
833static int vxlan_open(struct net_device *dev)
834{
835 struct vxlan_dev *vxlan = netdev_priv(dev);
836 int err;
837
838 if (vxlan->gaddr) {
839 err = vxlan_join_group(dev);
840 if (err)
841 return err;
842 }
843
844 if (vxlan->age_interval)
845 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
846
847 return 0;
848}
849
850/* Purge the forwarding table */
851static void vxlan_flush(struct vxlan_dev *vxlan)
852{
853 unsigned h;
854
855 spin_lock_bh(&vxlan->hash_lock);
856 for (h = 0; h < FDB_HASH_SIZE; ++h) {
857 struct hlist_node *p, *n;
858 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
859 struct vxlan_fdb *f
860 = container_of(p, struct vxlan_fdb, hlist);
861 vxlan_fdb_destroy(vxlan, f);
862 }
863 }
864 spin_unlock_bh(&vxlan->hash_lock);
865}
866
867/* Cleanup timer and forwarding table on shutdown */
868static int vxlan_stop(struct net_device *dev)
869{
870 struct vxlan_dev *vxlan = netdev_priv(dev);
871
872 if (vxlan->gaddr)
873 vxlan_leave_group(dev);
874
875 del_timer_sync(&vxlan->age_timer);
876
877 vxlan_flush(vxlan);
878
879 return 0;
880}
881
882/* Merge per-cpu statistics */
883static struct rtnl_link_stats64 *vxlan_stats64(struct net_device *dev,
884 struct rtnl_link_stats64 *stats)
885{
886 struct vxlan_dev *vxlan = netdev_priv(dev);
887 struct vxlan_stats tmp, sum = { 0 };
888 unsigned int cpu;
889
890 for_each_possible_cpu(cpu) {
891 unsigned int start;
892 const struct vxlan_stats *stats
893 = per_cpu_ptr(vxlan->stats, cpu);
894
895 do {
896 start = u64_stats_fetch_begin_bh(&stats->syncp);
897 memcpy(&tmp, stats, sizeof(tmp));
898 } while (u64_stats_fetch_retry_bh(&stats->syncp, start));
899
900 sum.tx_bytes += tmp.tx_bytes;
901 sum.tx_packets += tmp.tx_packets;
902 sum.rx_bytes += tmp.rx_bytes;
903 sum.rx_packets += tmp.rx_packets;
904 }
905
906 stats->tx_bytes = sum.tx_bytes;
907 stats->tx_packets = sum.tx_packets;
908 stats->rx_bytes = sum.rx_bytes;
909 stats->rx_packets = sum.rx_packets;
910
911 stats->multicast = dev->stats.multicast;
912 stats->rx_length_errors = dev->stats.rx_length_errors;
913 stats->rx_frame_errors = dev->stats.rx_frame_errors;
914 stats->rx_errors = dev->stats.rx_errors;
915
916 stats->tx_dropped = dev->stats.tx_dropped;
917 stats->tx_carrier_errors = dev->stats.tx_carrier_errors;
918 stats->tx_aborted_errors = dev->stats.tx_aborted_errors;
919 stats->collisions = dev->stats.collisions;
920 stats->tx_errors = dev->stats.tx_errors;
921
922 return stats;
923}
924
925/* Stub, nothing needs to be done. */
926static void vxlan_set_multicast_list(struct net_device *dev)
927{
928}
929
930static const struct net_device_ops vxlan_netdev_ops = {
931 .ndo_init = vxlan_init,
932 .ndo_open = vxlan_open,
933 .ndo_stop = vxlan_stop,
934 .ndo_start_xmit = vxlan_xmit,
935 .ndo_get_stats64 = vxlan_stats64,
936 .ndo_set_rx_mode = vxlan_set_multicast_list,
937 .ndo_change_mtu = eth_change_mtu,
938 .ndo_validate_addr = eth_validate_addr,
939 .ndo_set_mac_address = eth_mac_addr,
940 .ndo_fdb_add = vxlan_fdb_add,
941 .ndo_fdb_del = vxlan_fdb_delete,
942 .ndo_fdb_dump = vxlan_fdb_dump,
943};
944
945/* Info for udev, that this is a virtual tunnel endpoint */
946static struct device_type vxlan_type = {
947 .name = "vxlan",
948};
949
950static void vxlan_free(struct net_device *dev)
951{
952 struct vxlan_dev *vxlan = netdev_priv(dev);
953
954 free_percpu(vxlan->stats);
955 free_netdev(dev);
956}
957
958/* Initialize the device structure. */
959static void vxlan_setup(struct net_device *dev)
960{
961 struct vxlan_dev *vxlan = netdev_priv(dev);
962 unsigned h;
963
964 eth_hw_addr_random(dev);
965 ether_setup(dev);
966
967 dev->netdev_ops = &vxlan_netdev_ops;
968 dev->destructor = vxlan_free;
969 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
970
971 dev->tx_queue_len = 0;
972 dev->features |= NETIF_F_LLTX;
973 dev->features |= NETIF_F_NETNS_LOCAL;
974 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
975
976 spin_lock_init(&vxlan->hash_lock);
977
978 init_timer_deferrable(&vxlan->age_timer);
979 vxlan->age_timer.function = vxlan_cleanup;
980 vxlan->age_timer.data = (unsigned long) vxlan;
981
982 vxlan->dev = dev;
983
984 for (h = 0; h < FDB_HASH_SIZE; ++h)
985 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
986}
987
988static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
989 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
990 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
991 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
992 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
993 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
994 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
995 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
996 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
997 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
998};
999
1000static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
1001{
1002 if (tb[IFLA_ADDRESS]) {
1003 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1004 pr_debug("invalid link address (not ethernet)\n");
1005 return -EINVAL;
1006 }
1007
1008 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1009 pr_debug("invalid all zero ethernet address\n");
1010 return -EADDRNOTAVAIL;
1011 }
1012 }
1013
1014 if (!data)
1015 return -EINVAL;
1016
1017 if (data[IFLA_VXLAN_ID]) {
1018 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
1019 if (id >= VXLAN_VID_MASK)
1020 return -ERANGE;
1021 }
1022
1023 if (data[IFLA_VXLAN_GROUP]) {
1024 __be32 gaddr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
1025 if (!IN_MULTICAST(ntohl(gaddr))) {
1026 pr_debug("group address is not IPv4 multicast\n");
1027 return -EADDRNOTAVAIL;
1028 }
1029 }
1030 return 0;
1031}
1032
1033static int vxlan_newlink(struct net *net, struct net_device *dev,
1034 struct nlattr *tb[], struct nlattr *data[])
1035{
1036 struct vxlan_dev *vxlan = netdev_priv(dev);
1037 __u32 vni;
1038 int err;
1039
1040 if (!data[IFLA_VXLAN_ID])
1041 return -EINVAL;
1042
1043 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
1044 if (vxlan_find_vni(net, vni)) {
1045 pr_info("duplicate VNI %u\n", vni);
1046 return -EEXIST;
1047 }
1048 vxlan->vni = vni;
1049
1050 if (data[IFLA_VXLAN_GROUP])
1051 vxlan->gaddr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
1052
1053 if (data[IFLA_VXLAN_LOCAL])
1054 vxlan->saddr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
1055
1056 if (data[IFLA_VXLAN_LINK]) {
1057 vxlan->link = nla_get_u32(data[IFLA_VXLAN_LINK]);
1058
1059 if (!tb[IFLA_MTU]) {
1060 struct net_device *lowerdev;
1061 lowerdev = __dev_get_by_index(net, vxlan->link);
1062 dev->mtu = lowerdev->mtu - VXLAN_HEADROOM;
1063 }
1064 }
1065
1066 if (data[IFLA_VXLAN_TOS])
1067 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
1068
1069 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
1070 vxlan->learn = true;
1071
1072 if (data[IFLA_VXLAN_AGEING])
1073 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
1074 else
1075 vxlan->age_interval = FDB_AGE_DEFAULT;
1076
1077 if (data[IFLA_VXLAN_LIMIT])
1078 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
1079
1080 err = register_netdevice(dev);
1081 if (!err)
1082 hlist_add_head_rcu(&vxlan->hlist, vni_head(net, vxlan->vni));
1083
1084 return err;
1085}
1086
1087static void vxlan_dellink(struct net_device *dev, struct list_head *head)
1088{
1089 struct vxlan_dev *vxlan = netdev_priv(dev);
1090
1091 hlist_del_rcu(&vxlan->hlist);
1092
1093 unregister_netdevice_queue(dev, head);
1094}
1095
1096static size_t vxlan_get_size(const struct net_device *dev)
1097{
1098
1099 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
1100 nla_total_size(sizeof(__be32)) +/* IFLA_VXLAN_GROUP */
1101 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
1102 nla_total_size(sizeof(__be32))+ /* IFLA_VXLAN_LOCAL */
1103 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
1104 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
1105 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
1106 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
1107 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
1108 0;
1109}
1110
1111static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
1112{
1113 const struct vxlan_dev *vxlan = netdev_priv(dev);
1114
1115 if (nla_put_u32(skb, IFLA_VXLAN_ID, vxlan->vni))
1116 goto nla_put_failure;
1117
Stephen Hemminger7c41c422012-10-08 14:55:30 -07001118 if (vxlan->gaddr && nla_put_be32(skb, IFLA_VXLAN_GROUP, vxlan->gaddr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001119 goto nla_put_failure;
1120
1121 if (vxlan->link && nla_put_u32(skb, IFLA_VXLAN_LINK, vxlan->link))
1122 goto nla_put_failure;
1123
Stephen Hemminger7c41c422012-10-08 14:55:30 -07001124 if (vxlan->saddr && nla_put_be32(skb, IFLA_VXLAN_LOCAL, vxlan->saddr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001125 goto nla_put_failure;
1126
1127 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
1128 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
1129 nla_put_u8(skb, IFLA_VXLAN_LEARNING, vxlan->learn) ||
1130 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
1131 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax))
1132 goto nla_put_failure;
1133
1134 return 0;
1135
1136nla_put_failure:
1137 return -EMSGSIZE;
1138}
1139
1140static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
1141 .kind = "vxlan",
1142 .maxtype = IFLA_VXLAN_MAX,
1143 .policy = vxlan_policy,
1144 .priv_size = sizeof(struct vxlan_dev),
1145 .setup = vxlan_setup,
1146 .validate = vxlan_validate,
1147 .newlink = vxlan_newlink,
1148 .dellink = vxlan_dellink,
1149 .get_size = vxlan_get_size,
1150 .fill_info = vxlan_fill_info,
1151};
1152
1153static __net_init int vxlan_init_net(struct net *net)
1154{
1155 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
1156 struct sock *sk;
1157 struct sockaddr_in vxlan_addr = {
1158 .sin_family = AF_INET,
1159 .sin_addr.s_addr = htonl(INADDR_ANY),
1160 };
1161 int rc;
1162 unsigned h;
1163
1164 /* Create UDP socket for encapsulation receive. */
1165 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &vn->sock);
1166 if (rc < 0) {
1167 pr_debug("UDP socket create failed\n");
1168 return rc;
1169 }
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001170 /* Put in proper namespace */
1171 sk = vn->sock->sk;
1172 sk_change_net(sk, net);
stephen hemmingerd3428942012-10-01 12:32:35 +00001173
1174 vxlan_addr.sin_port = htons(vxlan_port);
1175
1176 rc = kernel_bind(vn->sock, (struct sockaddr *) &vxlan_addr,
1177 sizeof(vxlan_addr));
1178 if (rc < 0) {
1179 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
1180 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001181 sk_release_kernel(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001182 vn->sock = NULL;
1183 return rc;
1184 }
1185
1186 /* Disable multicast loopback */
stephen hemmingerd3428942012-10-01 12:32:35 +00001187 inet_sk(sk)->mc_loop = 0;
1188
1189 /* Mark socket as an encapsulation socket. */
1190 udp_sk(sk)->encap_type = 1;
1191 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
1192 udp_encap_enable();
1193
1194 for (h = 0; h < VNI_HASH_SIZE; ++h)
1195 INIT_HLIST_HEAD(&vn->vni_list[h]);
1196
1197 return 0;
1198}
1199
1200static __net_exit void vxlan_exit_net(struct net *net)
1201{
1202 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
1203
1204 if (vn->sock) {
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001205 sk_release_kernel(vn->sock->sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001206 vn->sock = NULL;
1207 }
1208}
1209
1210static struct pernet_operations vxlan_net_ops = {
1211 .init = vxlan_init_net,
1212 .exit = vxlan_exit_net,
1213 .id = &vxlan_net_id,
1214 .size = sizeof(struct vxlan_net),
1215};
1216
1217static int __init vxlan_init_module(void)
1218{
1219 int rc;
1220
1221 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
1222
1223 rc = register_pernet_device(&vxlan_net_ops);
1224 if (rc)
1225 goto out1;
1226
1227 rc = rtnl_link_register(&vxlan_link_ops);
1228 if (rc)
1229 goto out2;
1230
1231 return 0;
1232
1233out2:
1234 unregister_pernet_device(&vxlan_net_ops);
1235out1:
1236 return rc;
1237}
1238module_init(vxlan_init_module);
1239
1240static void __exit vxlan_cleanup_module(void)
1241{
1242 rtnl_link_unregister(&vxlan_link_ops);
1243 unregister_pernet_device(&vxlan_net_ops);
1244}
1245module_exit(vxlan_cleanup_module);
1246
1247MODULE_LICENSE("GPL");
1248MODULE_VERSION(VXLAN_VERSION);
1249MODULE_AUTHOR("Stephen Hemminger <shemminger@vyatta.com>");
1250MODULE_ALIAS_RTNL_LINK("vxlan");