blob: e532b2ab5b0f387c368d00e39a937dcecfdb83fe [file] [log] [blame]
stephen hemmingerd3428942012-10-01 12:32:35 +00001/*
Rami Roseneb5ce432012-11-13 13:29:15 +00002 * VXLAN: Virtual eXtensible Local Area Network
stephen hemmingerd3428942012-10-01 12:32:35 +00003 *
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>
Yan Burman1b13c972013-01-29 23:43:07 +000032#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000033#include <net/arp.h>
34#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000035#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000036#include <net/ip_tunnels.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000037#include <net/icmp.h>
38#include <net/udp.h>
39#include <net/rtnetlink.h>
40#include <net/route.h>
41#include <net/dsfield.h>
42#include <net/inet_ecn.h>
43#include <net/net_namespace.h>
44#include <net/netns/generic.h>
45
46#define VXLAN_VERSION "0.1"
47
48#define VNI_HASH_BITS 10
49#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
50#define FDB_HASH_BITS 8
51#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
52#define FDB_AGE_DEFAULT 300 /* 5 min */
53#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
54
55#define VXLAN_N_VID (1u << 24)
56#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Alexander Duyck52b702f2012-11-09 13:35:24 +000057/* IP header + UDP + VXLAN + Ethernet header */
58#define VXLAN_HEADROOM (20 + 8 + 8 + 14)
stephen hemmingerd3428942012-10-01 12:32:35 +000059
60#define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */
61
62/* VXLAN protocol header */
63struct vxlanhdr {
64 __be32 vx_flags;
65 __be32 vx_vni;
66};
67
68/* UDP port for VXLAN traffic. */
69static unsigned int vxlan_port __read_mostly = 8472;
70module_param_named(udp_port, vxlan_port, uint, 0444);
71MODULE_PARM_DESC(udp_port, "Destination UDP port");
72
73static bool log_ecn_error = true;
74module_param(log_ecn_error, bool, 0644);
75MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
76
77/* per-net private data for this module */
78static unsigned int vxlan_net_id;
79struct vxlan_net {
80 struct socket *sock; /* UDP encap socket */
81 struct hlist_head vni_list[VNI_HASH_SIZE];
82};
83
David Stevens66817122013-03-15 04:35:51 +000084struct vxlan_rdst {
85 struct rcu_head rcu;
86 __be32 remote_ip;
87 __be16 remote_port;
88 u32 remote_vni;
89 u32 remote_ifindex;
90 struct vxlan_rdst *remote_next;
91};
92
stephen hemmingerd3428942012-10-01 12:32:35 +000093/* Forwarding table entry */
94struct vxlan_fdb {
95 struct hlist_node hlist; /* linked list of entries */
96 struct rcu_head rcu;
97 unsigned long updated; /* jiffies */
98 unsigned long used;
David Stevens66817122013-03-15 04:35:51 +000099 struct vxlan_rdst remote;
stephen hemmingerd3428942012-10-01 12:32:35 +0000100 u16 state; /* see ndm_state */
101 u8 eth_addr[ETH_ALEN];
102};
103
stephen hemmingerd3428942012-10-01 12:32:35 +0000104/* Pseudo network device */
105struct vxlan_dev {
106 struct hlist_node hlist;
107 struct net_device *dev;
stephen hemmingerd3428942012-10-01 12:32:35 +0000108 __u32 vni; /* virtual network id */
109 __be32 gaddr; /* multicast group */
110 __be32 saddr; /* source address */
111 unsigned int link; /* link to multicast over */
stephen hemminger05f47d62012-10-09 20:35:50 +0000112 __u16 port_min; /* source port range */
113 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000114 __u8 tos; /* TOS override */
115 __u8 ttl;
David Stevense4f67ad2012-11-20 02:50:14 +0000116 u32 flags; /* VXLAN_F_* below */
stephen hemmingerd3428942012-10-01 12:32:35 +0000117
118 unsigned long age_interval;
119 struct timer_list age_timer;
120 spinlock_t hash_lock;
121 unsigned int addrcnt;
122 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000123
124 struct hlist_head fdb_head[FDB_HASH_SIZE];
125};
126
David Stevense4f67ad2012-11-20 02:50:14 +0000127#define VXLAN_F_LEARN 0x01
128#define VXLAN_F_PROXY 0x02
129#define VXLAN_F_RSC 0x04
130#define VXLAN_F_L2MISS 0x08
131#define VXLAN_F_L3MISS 0x10
132
stephen hemmingerd3428942012-10-01 12:32:35 +0000133/* salt for hash table */
134static u32 vxlan_salt __read_mostly;
135
136static inline struct hlist_head *vni_head(struct net *net, u32 id)
137{
138 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
139
140 return &vn->vni_list[hash_32(id, VNI_HASH_BITS)];
141}
142
143/* Look up VNI in a per net namespace table */
144static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id)
145{
146 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000147
Sasha Levinb67bfe02013-02-27 17:06:00 -0800148 hlist_for_each_entry_rcu(vxlan, vni_head(net, id), hlist) {
stephen hemmingerd3428942012-10-01 12:32:35 +0000149 if (vxlan->vni == id)
150 return vxlan;
151 }
152
153 return NULL;
154}
155
156/* Fill in neighbour message in skbuff. */
157static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
158 const struct vxlan_fdb *fdb,
David Stevens66817122013-03-15 04:35:51 +0000159 u32 portid, u32 seq, int type, unsigned int flags,
160 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000161{
162 unsigned long now = jiffies;
163 struct nda_cacheinfo ci;
164 struct nlmsghdr *nlh;
165 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000166 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000167
168 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
169 if (nlh == NULL)
170 return -EMSGSIZE;
171
172 ndm = nlmsg_data(nlh);
173 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000174
175 send_eth = send_ip = true;
176
177 if (type == RTM_GETNEIGH) {
178 ndm->ndm_family = AF_INET;
David Stevens66817122013-03-15 04:35:51 +0000179 send_ip = rdst->remote_ip != htonl(INADDR_ANY);
David Stevense4f67ad2012-11-20 02:50:14 +0000180 send_eth = !is_zero_ether_addr(fdb->eth_addr);
181 } else
182 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000183 ndm->ndm_state = fdb->state;
184 ndm->ndm_ifindex = vxlan->dev->ifindex;
185 ndm->ndm_flags = NTF_SELF;
186 ndm->ndm_type = NDA_DST;
187
David Stevense4f67ad2012-11-20 02:50:14 +0000188 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000189 goto nla_put_failure;
190
David Stevens66817122013-03-15 04:35:51 +0000191 if (send_ip && nla_put_be32(skb, NDA_DST, rdst->remote_ip))
192 goto nla_put_failure;
193
194 if (rdst->remote_port && rdst->remote_port != vxlan_port &&
195 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
196 goto nla_put_failure;
197 if (rdst->remote_vni != vxlan->vni &&
198 nla_put_be32(skb, NDA_VNI, rdst->remote_vni))
199 goto nla_put_failure;
200 if (rdst->remote_ifindex &&
201 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000202 goto nla_put_failure;
203
204 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
205 ci.ndm_confirmed = 0;
206 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
207 ci.ndm_refcnt = 0;
208
209 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
210 goto nla_put_failure;
211
212 return nlmsg_end(skb, nlh);
213
214nla_put_failure:
215 nlmsg_cancel(skb, nlh);
216 return -EMSGSIZE;
217}
218
219static inline size_t vxlan_nlmsg_size(void)
220{
221 return NLMSG_ALIGN(sizeof(struct ndmsg))
222 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
223 + nla_total_size(sizeof(__be32)) /* NDA_DST */
David Stevens66817122013-03-15 04:35:51 +0000224 + nla_total_size(sizeof(__be32)) /* NDA_PORT */
225 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
226 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000227 + nla_total_size(sizeof(struct nda_cacheinfo));
228}
229
230static void vxlan_fdb_notify(struct vxlan_dev *vxlan,
231 const struct vxlan_fdb *fdb, int type)
232{
233 struct net *net = dev_net(vxlan->dev);
234 struct sk_buff *skb;
235 int err = -ENOBUFS;
236
237 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
238 if (skb == NULL)
239 goto errout;
240
David Stevens66817122013-03-15 04:35:51 +0000241 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, &fdb->remote);
stephen hemmingerd3428942012-10-01 12:32:35 +0000242 if (err < 0) {
243 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
244 WARN_ON(err == -EMSGSIZE);
245 kfree_skb(skb);
246 goto errout;
247 }
248
249 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
250 return;
251errout:
252 if (err < 0)
253 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
254}
255
David Stevense4f67ad2012-11-20 02:50:14 +0000256static void vxlan_ip_miss(struct net_device *dev, __be32 ipa)
257{
258 struct vxlan_dev *vxlan = netdev_priv(dev);
259 struct vxlan_fdb f;
260
261 memset(&f, 0, sizeof f);
262 f.state = NUD_STALE;
David Stevens66817122013-03-15 04:35:51 +0000263 f.remote.remote_ip = ipa; /* goes to NDA_DST */
264 f.remote.remote_vni = VXLAN_N_VID;
David Stevense4f67ad2012-11-20 02:50:14 +0000265
266 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
267}
268
269static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
270{
271 struct vxlan_fdb f;
272
273 memset(&f, 0, sizeof f);
274 f.state = NUD_STALE;
275 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
276
277 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
278}
279
stephen hemmingerd3428942012-10-01 12:32:35 +0000280/* Hash Ethernet address */
281static u32 eth_hash(const unsigned char *addr)
282{
283 u64 value = get_unaligned((u64 *)addr);
284
285 /* only want 6 bytes */
286#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000287 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000288#else
289 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000290#endif
291 return hash_64(value, FDB_HASH_BITS);
292}
293
294/* Hash chain to use given mac address */
295static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
296 const u8 *mac)
297{
298 return &vxlan->fdb_head[eth_hash(mac)];
299}
300
301/* Look up Ethernet address in forwarding table */
302static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
303 const u8 *mac)
304
305{
306 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
307 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000308
Sasha Levinb67bfe02013-02-27 17:06:00 -0800309 hlist_for_each_entry_rcu(f, head, hlist) {
stephen hemmingerd3428942012-10-01 12:32:35 +0000310 if (compare_ether_addr(mac, f->eth_addr) == 0)
311 return f;
312 }
313
314 return NULL;
315}
316
David Stevens66817122013-03-15 04:35:51 +0000317/* Add/update destinations for multicast */
318static int vxlan_fdb_append(struct vxlan_fdb *f,
319 __be32 ip, __u32 port, __u32 vni, __u32 ifindex)
320{
321 struct vxlan_rdst *rd_prev, *rd;
322
323 rd_prev = NULL;
324 for (rd = &f->remote; rd; rd = rd->remote_next) {
325 if (rd->remote_ip == ip &&
326 rd->remote_port == port &&
327 rd->remote_vni == vni &&
328 rd->remote_ifindex == ifindex)
329 return 0;
330 rd_prev = rd;
331 }
332 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
333 if (rd == NULL)
334 return -ENOBUFS;
335 rd->remote_ip = ip;
336 rd->remote_port = port;
337 rd->remote_vni = vni;
338 rd->remote_ifindex = ifindex;
339 rd->remote_next = NULL;
340 rd_prev->remote_next = rd;
341 return 1;
342}
343
stephen hemmingerd3428942012-10-01 12:32:35 +0000344/* Add new entry to forwarding table -- assumes lock held */
345static int vxlan_fdb_create(struct vxlan_dev *vxlan,
346 const u8 *mac, __be32 ip,
David Stevens66817122013-03-15 04:35:51 +0000347 __u16 state, __u16 flags,
348 __u32 port, __u32 vni, __u32 ifindex)
stephen hemmingerd3428942012-10-01 12:32:35 +0000349{
350 struct vxlan_fdb *f;
351 int notify = 0;
352
353 f = vxlan_find_mac(vxlan, mac);
354 if (f) {
355 if (flags & NLM_F_EXCL) {
356 netdev_dbg(vxlan->dev,
357 "lost race to create %pM\n", mac);
358 return -EEXIST;
359 }
360 if (f->state != state) {
361 f->state = state;
362 f->updated = jiffies;
363 notify = 1;
364 }
David Stevens66817122013-03-15 04:35:51 +0000365 if ((flags & NLM_F_APPEND) &&
366 is_multicast_ether_addr(f->eth_addr)) {
367 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex);
368
369 if (rc < 0)
370 return rc;
371 notify |= rc;
372 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000373 } else {
374 if (!(flags & NLM_F_CREATE))
375 return -ENOENT;
376
377 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
378 return -ENOSPC;
379
380 netdev_dbg(vxlan->dev, "add %pM -> %pI4\n", mac, &ip);
381 f = kmalloc(sizeof(*f), GFP_ATOMIC);
382 if (!f)
383 return -ENOMEM;
384
385 notify = 1;
David Stevens66817122013-03-15 04:35:51 +0000386 f->remote.remote_ip = ip;
387 f->remote.remote_port = port;
388 f->remote.remote_vni = vni;
389 f->remote.remote_ifindex = ifindex;
390 f->remote.remote_next = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000391 f->state = state;
392 f->updated = f->used = jiffies;
393 memcpy(f->eth_addr, mac, ETH_ALEN);
394
395 ++vxlan->addrcnt;
396 hlist_add_head_rcu(&f->hlist,
397 vxlan_fdb_head(vxlan, mac));
398 }
399
400 if (notify)
401 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
402
403 return 0;
404}
405
David Stevens66817122013-03-15 04:35:51 +0000406void vxlan_fdb_free(struct rcu_head *head)
407{
408 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
409
410 while (f->remote.remote_next) {
411 struct vxlan_rdst *rd = f->remote.remote_next;
412
413 f->remote.remote_next = rd->remote_next;
414 kfree(rd);
415 }
416 kfree(f);
417}
418
stephen hemmingerd3428942012-10-01 12:32:35 +0000419static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
420{
421 netdev_dbg(vxlan->dev,
422 "delete %pM\n", f->eth_addr);
423
424 --vxlan->addrcnt;
425 vxlan_fdb_notify(vxlan, f, RTM_DELNEIGH);
426
427 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000428 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000429}
430
431/* Add static entry (via netlink) */
432static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
433 struct net_device *dev,
434 const unsigned char *addr, u16 flags)
435{
436 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens66817122013-03-15 04:35:51 +0000437 struct net *net = dev_net(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +0000438 __be32 ip;
David Stevens66817122013-03-15 04:35:51 +0000439 u32 port, vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000440 int err;
441
442 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
443 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
444 ndm->ndm_state);
445 return -EINVAL;
446 }
447
448 if (tb[NDA_DST] == NULL)
449 return -EINVAL;
450
451 if (nla_len(tb[NDA_DST]) != sizeof(__be32))
452 return -EAFNOSUPPORT;
453
454 ip = nla_get_be32(tb[NDA_DST]);
455
David Stevens66817122013-03-15 04:35:51 +0000456 if (tb[NDA_PORT]) {
457 if (nla_len(tb[NDA_PORT]) != sizeof(u32))
458 return -EINVAL;
459 port = nla_get_u32(tb[NDA_PORT]);
460 } else
461 port = vxlan_port;
462
463 if (tb[NDA_VNI]) {
464 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
465 return -EINVAL;
466 vni = nla_get_u32(tb[NDA_VNI]);
467 } else
468 vni = vxlan->vni;
469
470 if (tb[NDA_IFINDEX]) {
471 struct net_device *dev;
472
473 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
474 return -EINVAL;
475 ifindex = nla_get_u32(tb[NDA_IFINDEX]);
476 dev = dev_get_by_index(net, ifindex);
477 if (!dev)
478 return -EADDRNOTAVAIL;
479 dev_put(dev);
480 } else
481 ifindex = 0;
482
stephen hemmingerd3428942012-10-01 12:32:35 +0000483 spin_lock_bh(&vxlan->hash_lock);
David Stevens66817122013-03-15 04:35:51 +0000484 err = vxlan_fdb_create(vxlan, addr, ip, ndm->ndm_state, flags, port,
485 vni, ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +0000486 spin_unlock_bh(&vxlan->hash_lock);
487
488 return err;
489}
490
491/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000492static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
493 struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000494 const unsigned char *addr)
495{
496 struct vxlan_dev *vxlan = netdev_priv(dev);
497 struct vxlan_fdb *f;
498 int err = -ENOENT;
499
500 spin_lock_bh(&vxlan->hash_lock);
501 f = vxlan_find_mac(vxlan, addr);
502 if (f) {
503 vxlan_fdb_destroy(vxlan, f);
504 err = 0;
505 }
506 spin_unlock_bh(&vxlan->hash_lock);
507
508 return err;
509}
510
511/* Dump forwarding table */
512static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
513 struct net_device *dev, int idx)
514{
515 struct vxlan_dev *vxlan = netdev_priv(dev);
516 unsigned int h;
517
518 for (h = 0; h < FDB_HASH_SIZE; ++h) {
519 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000520 int err;
521
Sasha Levinb67bfe02013-02-27 17:06:00 -0800522 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000523 struct vxlan_rdst *rd;
524 for (rd = &f->remote; rd; rd = rd->remote_next) {
525 if (idx < cb->args[0])
526 goto skip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000527
David Stevens66817122013-03-15 04:35:51 +0000528 err = vxlan_fdb_info(skb, vxlan, f,
529 NETLINK_CB(cb->skb).portid,
530 cb->nlh->nlmsg_seq,
531 RTM_NEWNEIGH,
532 NLM_F_MULTI, rd);
533 if (err < 0)
534 break;
stephen hemmingerd3428942012-10-01 12:32:35 +0000535skip:
David Stevens66817122013-03-15 04:35:51 +0000536 ++idx;
537 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000538 }
539 }
540
541 return idx;
542}
543
544/* Watch incoming packets to learn mapping between Ethernet address
545 * and Tunnel endpoint.
546 */
547static void vxlan_snoop(struct net_device *dev,
548 __be32 src_ip, const u8 *src_mac)
549{
550 struct vxlan_dev *vxlan = netdev_priv(dev);
551 struct vxlan_fdb *f;
552 int err;
553
554 f = vxlan_find_mac(vxlan, src_mac);
555 if (likely(f)) {
556 f->used = jiffies;
David Stevens66817122013-03-15 04:35:51 +0000557 if (likely(f->remote.remote_ip == src_ip))
stephen hemmingerd3428942012-10-01 12:32:35 +0000558 return;
559
560 if (net_ratelimit())
561 netdev_info(dev,
562 "%pM migrated from %pI4 to %pI4\n",
David Stevens66817122013-03-15 04:35:51 +0000563 src_mac, &f->remote.remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000564
David Stevens66817122013-03-15 04:35:51 +0000565 f->remote.remote_ip = src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000566 f->updated = jiffies;
567 } else {
568 /* learned new entry */
569 spin_lock(&vxlan->hash_lock);
570 err = vxlan_fdb_create(vxlan, src_mac, src_ip,
571 NUD_REACHABLE,
David Stevens66817122013-03-15 04:35:51 +0000572 NLM_F_EXCL|NLM_F_CREATE,
573 vxlan_port, vxlan->vni, 0);
stephen hemmingerd3428942012-10-01 12:32:35 +0000574 spin_unlock(&vxlan->hash_lock);
575 }
576}
577
578
579/* See if multicast group is already in use by other ID */
580static bool vxlan_group_used(struct vxlan_net *vn,
581 const struct vxlan_dev *this)
582{
583 const struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000584 unsigned h;
585
586 for (h = 0; h < VNI_HASH_SIZE; ++h)
Sasha Levinb67bfe02013-02-27 17:06:00 -0800587 hlist_for_each_entry(vxlan, &vn->vni_list[h], hlist) {
stephen hemmingerd3428942012-10-01 12:32:35 +0000588 if (vxlan == this)
589 continue;
590
591 if (!netif_running(vxlan->dev))
592 continue;
593
594 if (vxlan->gaddr == this->gaddr)
595 return true;
596 }
597
598 return false;
599}
600
601/* kernel equivalent to IP_ADD_MEMBERSHIP */
602static int vxlan_join_group(struct net_device *dev)
603{
604 struct vxlan_dev *vxlan = netdev_priv(dev);
605 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
606 struct sock *sk = vn->sock->sk;
607 struct ip_mreqn mreq = {
Yan Burmanaf9b0782012-12-20 03:36:08 +0000608 .imr_multiaddr.s_addr = vxlan->gaddr,
609 .imr_ifindex = vxlan->link,
stephen hemmingerd3428942012-10-01 12:32:35 +0000610 };
611 int err;
612
613 /* Already a member of group */
614 if (vxlan_group_used(vn, vxlan))
615 return 0;
616
617 /* Need to drop RTNL to call multicast join */
618 rtnl_unlock();
619 lock_sock(sk);
620 err = ip_mc_join_group(sk, &mreq);
621 release_sock(sk);
622 rtnl_lock();
623
624 return err;
625}
626
627
628/* kernel equivalent to IP_DROP_MEMBERSHIP */
629static int vxlan_leave_group(struct net_device *dev)
630{
631 struct vxlan_dev *vxlan = netdev_priv(dev);
632 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
633 int err = 0;
634 struct sock *sk = vn->sock->sk;
635 struct ip_mreqn mreq = {
Yan Burmanaf9b0782012-12-20 03:36:08 +0000636 .imr_multiaddr.s_addr = vxlan->gaddr,
637 .imr_ifindex = vxlan->link,
stephen hemmingerd3428942012-10-01 12:32:35 +0000638 };
639
640 /* Only leave group when last vxlan is done. */
641 if (vxlan_group_used(vn, vxlan))
642 return 0;
643
644 /* Need to drop RTNL to call multicast leave */
645 rtnl_unlock();
646 lock_sock(sk);
647 err = ip_mc_leave_group(sk, &mreq);
648 release_sock(sk);
649 rtnl_lock();
650
651 return err;
652}
653
654/* Callback from net/ipv4/udp.c to receive packets */
655static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
656{
657 struct iphdr *oip;
658 struct vxlanhdr *vxh;
659 struct vxlan_dev *vxlan;
Pravin B Shelare8171042013-03-25 14:49:46 +0000660 struct pcpu_tstats *stats;
stephen hemmingerd3428942012-10-01 12:32:35 +0000661 __u32 vni;
662 int err;
663
664 /* pop off outer UDP header */
665 __skb_pull(skb, sizeof(struct udphdr));
666
667 /* Need Vxlan and inner Ethernet header to be present */
668 if (!pskb_may_pull(skb, sizeof(struct vxlanhdr)))
669 goto error;
670
671 /* Drop packets with reserved bits set */
672 vxh = (struct vxlanhdr *) skb->data;
673 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
674 (vxh->vx_vni & htonl(0xff))) {
675 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
676 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
677 goto error;
678 }
679
680 __skb_pull(skb, sizeof(struct vxlanhdr));
stephen hemmingerd3428942012-10-01 12:32:35 +0000681
682 /* Is this VNI defined? */
683 vni = ntohl(vxh->vx_vni) >> 8;
684 vxlan = vxlan_find_vni(sock_net(sk), vni);
685 if (!vxlan) {
686 netdev_dbg(skb->dev, "unknown vni %d\n", vni);
687 goto drop;
688 }
689
690 if (!pskb_may_pull(skb, ETH_HLEN)) {
691 vxlan->dev->stats.rx_length_errors++;
692 vxlan->dev->stats.rx_errors++;
693 goto drop;
694 }
695
David Stevense4f67ad2012-11-20 02:50:14 +0000696 skb_reset_mac_header(skb);
697
stephen hemmingerd3428942012-10-01 12:32:35 +0000698 /* Re-examine inner Ethernet packet */
699 oip = ip_hdr(skb);
700 skb->protocol = eth_type_trans(skb, vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +0000701
702 /* Ignore packet loops (and multicast echo) */
703 if (compare_ether_addr(eth_hdr(skb)->h_source,
704 vxlan->dev->dev_addr) == 0)
705 goto drop;
706
David Stevense4f67ad2012-11-20 02:50:14 +0000707 if (vxlan->flags & VXLAN_F_LEARN)
stephen hemmingerd3428942012-10-01 12:32:35 +0000708 vxlan_snoop(skb->dev, oip->saddr, eth_hdr(skb)->h_source);
709
710 __skb_tunnel_rx(skb, vxlan->dev);
711 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +0000712
713 /* If the NIC driver gave us an encapsulated packet with
714 * CHECKSUM_UNNECESSARY and Rx checksum feature is enabled,
715 * leave the CHECKSUM_UNNECESSARY, the device checksummed it
716 * for us. Otherwise force the upper layers to verify it.
717 */
718 if (skb->ip_summed != CHECKSUM_UNNECESSARY || !skb->encapsulation ||
719 !(vxlan->dev->features & NETIF_F_RXCSUM))
720 skb->ip_summed = CHECKSUM_NONE;
721
722 skb->encapsulation = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000723
724 err = IP_ECN_decapsulate(oip, skb);
725 if (unlikely(err)) {
726 if (log_ecn_error)
727 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
728 &oip->saddr, oip->tos);
729 if (err > 1) {
730 ++vxlan->dev->stats.rx_frame_errors;
731 ++vxlan->dev->stats.rx_errors;
732 goto drop;
733 }
734 }
735
Pravin B Shelare8171042013-03-25 14:49:46 +0000736 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +0000737 u64_stats_update_begin(&stats->syncp);
738 stats->rx_packets++;
739 stats->rx_bytes += skb->len;
740 u64_stats_update_end(&stats->syncp);
741
742 netif_rx(skb);
743
744 return 0;
745error:
746 /* Put UDP header back */
747 __skb_push(skb, sizeof(struct udphdr));
748
749 return 1;
750drop:
751 /* Consume bad packet */
752 kfree_skb(skb);
753 return 0;
754}
755
David Stevense4f67ad2012-11-20 02:50:14 +0000756static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
757{
758 struct vxlan_dev *vxlan = netdev_priv(dev);
759 struct arphdr *parp;
760 u8 *arpptr, *sha;
761 __be32 sip, tip;
762 struct neighbour *n;
763
764 if (dev->flags & IFF_NOARP)
765 goto out;
766
767 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
768 dev->stats.tx_dropped++;
769 goto out;
770 }
771 parp = arp_hdr(skb);
772
773 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
774 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
775 parp->ar_pro != htons(ETH_P_IP) ||
776 parp->ar_op != htons(ARPOP_REQUEST) ||
777 parp->ar_hln != dev->addr_len ||
778 parp->ar_pln != 4)
779 goto out;
780 arpptr = (u8 *)parp + sizeof(struct arphdr);
781 sha = arpptr;
782 arpptr += dev->addr_len; /* sha */
783 memcpy(&sip, arpptr, sizeof(sip));
784 arpptr += sizeof(sip);
785 arpptr += dev->addr_len; /* tha */
786 memcpy(&tip, arpptr, sizeof(tip));
787
788 if (ipv4_is_loopback(tip) ||
789 ipv4_is_multicast(tip))
790 goto out;
791
792 n = neigh_lookup(&arp_tbl, &tip, dev);
793
794 if (n) {
795 struct vxlan_dev *vxlan = netdev_priv(dev);
796 struct vxlan_fdb *f;
797 struct sk_buff *reply;
798
799 if (!(n->nud_state & NUD_CONNECTED)) {
800 neigh_release(n);
801 goto out;
802 }
803
804 f = vxlan_find_mac(vxlan, n->ha);
David Stevens66817122013-03-15 04:35:51 +0000805 if (f && f->remote.remote_ip == htonl(INADDR_ANY)) {
David Stevense4f67ad2012-11-20 02:50:14 +0000806 /* bridge-local neighbor */
807 neigh_release(n);
808 goto out;
809 }
810
811 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
812 n->ha, sha);
813
814 neigh_release(n);
815
816 skb_reset_mac_header(reply);
817 __skb_pull(reply, skb_network_offset(reply));
818 reply->ip_summed = CHECKSUM_UNNECESSARY;
819 reply->pkt_type = PACKET_HOST;
820
821 if (netif_rx_ni(reply) == NET_RX_DROP)
822 dev->stats.rx_dropped++;
823 } else if (vxlan->flags & VXLAN_F_L3MISS)
824 vxlan_ip_miss(dev, tip);
825out:
826 consume_skb(skb);
827 return NETDEV_TX_OK;
828}
829
830static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
831{
832 struct vxlan_dev *vxlan = netdev_priv(dev);
833 struct neighbour *n;
834 struct iphdr *pip;
835
836 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
837 return false;
838
839 n = NULL;
840 switch (ntohs(eth_hdr(skb)->h_proto)) {
841 case ETH_P_IP:
842 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
843 return false;
844 pip = ip_hdr(skb);
845 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
846 break;
847 default:
848 return false;
849 }
850
851 if (n) {
852 bool diff;
853
854 diff = compare_ether_addr(eth_hdr(skb)->h_dest, n->ha) != 0;
855 if (diff) {
856 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
857 dev->addr_len);
858 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
859 }
860 neigh_release(n);
861 return diff;
862 } else if (vxlan->flags & VXLAN_F_L3MISS)
863 vxlan_ip_miss(dev, pip->daddr);
864 return false;
865}
866
stephen hemmingerd3428942012-10-01 12:32:35 +0000867/* Extract dsfield from inner protocol */
868static inline u8 vxlan_get_dsfield(const struct iphdr *iph,
869 const struct sk_buff *skb)
870{
871 if (skb->protocol == htons(ETH_P_IP))
872 return iph->tos;
873 else if (skb->protocol == htons(ETH_P_IPV6))
874 return ipv6_get_dsfield((const struct ipv6hdr *)iph);
875 else
876 return 0;
877}
878
879/* Propogate ECN bits out */
880static inline u8 vxlan_ecn_encap(u8 tos,
881 const struct iphdr *iph,
882 const struct sk_buff *skb)
883{
884 u8 inner = vxlan_get_dsfield(iph, skb);
885
886 return INET_ECN_encapsulate(tos, inner);
887}
888
stephen hemminger1cad8712012-10-09 20:35:49 +0000889static void vxlan_sock_free(struct sk_buff *skb)
890{
891 sock_put(skb->sk);
892}
893
894/* On transmit, associate with the tunnel socket */
895static void vxlan_set_owner(struct net_device *dev, struct sk_buff *skb)
896{
897 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
898 struct sock *sk = vn->sock->sk;
899
900 skb_orphan(skb);
901 sock_hold(sk);
902 skb->sk = sk;
903 skb->destructor = vxlan_sock_free;
904}
905
stephen hemminger05f47d62012-10-09 20:35:50 +0000906/* Compute source port for outgoing packet
907 * first choice to use L4 flow hash since it will spread
908 * better and maybe available from hardware
909 * secondary choice is to use jhash on the Ethernet header
910 */
911static u16 vxlan_src_port(const struct vxlan_dev *vxlan, struct sk_buff *skb)
912{
913 unsigned int range = (vxlan->port_max - vxlan->port_min) + 1;
914 u32 hash;
915
916 hash = skb_get_rxhash(skb);
917 if (!hash)
918 hash = jhash(skb->data, 2 * ETH_ALEN,
919 (__force u32) skb->protocol);
920
921 return (((u64) hash * range) >> 32) + vxlan->port_min;
922}
923
Pravin B Shelar05c0db02013-03-07 13:22:36 +0000924static int handle_offloads(struct sk_buff *skb)
925{
926 if (skb_is_gso(skb)) {
927 int err = skb_unclone(skb, GFP_ATOMIC);
928 if (unlikely(err))
929 return err;
930
931 skb_shinfo(skb)->gso_type |= (SKB_GSO_UDP_TUNNEL | SKB_GSO_UDP);
932 } else if (skb->ip_summed != CHECKSUM_PARTIAL)
933 skb->ip_summed = CHECKSUM_NONE;
934
935 return 0;
936}
937
David Stevens66817122013-03-15 04:35:51 +0000938static netdev_tx_t vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
939 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +0000940{
941 struct vxlan_dev *vxlan = netdev_priv(dev);
942 struct rtable *rt;
stephen hemmingerd3428942012-10-01 12:32:35 +0000943 const struct iphdr *old_iph;
944 struct iphdr *iph;
945 struct vxlanhdr *vxh;
946 struct udphdr *uh;
947 struct flowi4 fl4;
stephen hemmingerd3428942012-10-01 12:32:35 +0000948 unsigned int pkt_len = skb->len;
stephen hemmingerd3428942012-10-01 12:32:35 +0000949 __be32 dst;
David Stevens66817122013-03-15 04:35:51 +0000950 __u16 src_port, dst_port;
951 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +0000952 __be16 df = 0;
953 __u8 tos, ttl;
stephen hemmingerd3428942012-10-01 12:32:35 +0000954
David Stevens66817122013-03-15 04:35:51 +0000955 dst_port = rdst->remote_port ? rdst->remote_port : vxlan_port;
956 vni = rdst->remote_vni;
957 dst = rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +0000958
959 if (!dst) {
960 if (did_rsc) {
961 __skb_pull(skb, skb_network_offset(skb));
962 skb->ip_summed = CHECKSUM_NONE;
963 skb->pkt_type = PACKET_HOST;
964
965 /* short-circuited back to local bridge */
966 if (netif_rx(skb) == NET_RX_SUCCESS) {
Pravin B Shelare8171042013-03-25 14:49:46 +0000967 struct pcpu_tstats *stats = this_cpu_ptr(dev->tstats);
David Stevense4f67ad2012-11-20 02:50:14 +0000968
969 u64_stats_update_begin(&stats->syncp);
970 stats->tx_packets++;
971 stats->tx_bytes += pkt_len;
972 u64_stats_update_end(&stats->syncp);
973 } else {
974 dev->stats.tx_errors++;
975 dev->stats.tx_aborted_errors++;
976 }
977 return NETDEV_TX_OK;
978 }
stephen hemmingeref59feb2012-10-09 20:35:46 +0000979 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +0000980 }
stephen hemmingeref59feb2012-10-09 20:35:46 +0000981
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +0000982 if (!skb->encapsulation) {
983 skb_reset_inner_headers(skb);
984 skb->encapsulation = 1;
985 }
986
stephen hemmingerd3428942012-10-01 12:32:35 +0000987 /* Need space for new headers (invalidates iph ptr) */
988 if (skb_cow_head(skb, VXLAN_HEADROOM))
989 goto drop;
990
stephen hemmingerd3428942012-10-01 12:32:35 +0000991 old_iph = ip_hdr(skb);
992
stephen hemmingerd3428942012-10-01 12:32:35 +0000993 ttl = vxlan->ttl;
994 if (!ttl && IN_MULTICAST(ntohl(dst)))
995 ttl = 1;
996
997 tos = vxlan->tos;
998 if (tos == 1)
999 tos = vxlan_get_dsfield(old_iph, skb);
1000
stephen hemminger05f47d62012-10-09 20:35:50 +00001001 src_port = vxlan_src_port(vxlan, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001002
stephen hemmingerca78f182012-10-09 20:35:48 +00001003 memset(&fl4, 0, sizeof(fl4));
David Stevens66817122013-03-15 04:35:51 +00001004 fl4.flowi4_oif = rdst->remote_ifindex;
stephen hemmingerca78f182012-10-09 20:35:48 +00001005 fl4.flowi4_tos = RT_TOS(tos);
1006 fl4.daddr = dst;
1007 fl4.saddr = vxlan->saddr;
1008
1009 rt = ip_route_output_key(dev_net(dev), &fl4);
stephen hemmingerd3428942012-10-01 12:32:35 +00001010 if (IS_ERR(rt)) {
1011 netdev_dbg(dev, "no route to %pI4\n", &dst);
1012 dev->stats.tx_carrier_errors++;
1013 goto tx_error;
1014 }
1015
1016 if (rt->dst.dev == dev) {
1017 netdev_dbg(dev, "circular route to %pI4\n", &dst);
1018 ip_rt_put(rt);
1019 dev->stats.collisions++;
1020 goto tx_error;
1021 }
1022
1023 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1024 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1025 IPSKB_REROUTED);
1026 skb_dst_drop(skb);
1027 skb_dst_set(skb, &rt->dst);
1028
1029 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1030 vxh->vx_flags = htonl(VXLAN_FLAGS);
David Stevens66817122013-03-15 04:35:51 +00001031 vxh->vx_vni = htonl(vni << 8);
stephen hemmingerd3428942012-10-01 12:32:35 +00001032
1033 __skb_push(skb, sizeof(*uh));
1034 skb_reset_transport_header(skb);
1035 uh = udp_hdr(skb);
1036
David Stevens66817122013-03-15 04:35:51 +00001037 uh->dest = htons(dst_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001038 uh->source = htons(src_port);
stephen hemmingerd3428942012-10-01 12:32:35 +00001039
1040 uh->len = htons(skb->len);
1041 uh->check = 0;
1042
1043 __skb_push(skb, sizeof(*iph));
1044 skb_reset_network_header(skb);
1045 iph = ip_hdr(skb);
1046 iph->version = 4;
1047 iph->ihl = sizeof(struct iphdr) >> 2;
1048 iph->frag_off = df;
1049 iph->protocol = IPPROTO_UDP;
1050 iph->tos = vxlan_ecn_encap(tos, old_iph, skb);
stephen hemmingerca78f182012-10-09 20:35:48 +00001051 iph->daddr = dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00001052 iph->saddr = fl4.saddr;
1053 iph->ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Pravin B Shelar8dc98eb2013-02-22 07:30:40 +00001054 tunnel_ip_select_ident(skb, old_iph, &rt->dst);
stephen hemmingerd3428942012-10-01 12:32:35 +00001055
Zang MingJie88c4c062013-03-04 06:07:34 +00001056 nf_reset(skb);
1057
stephen hemminger1cad8712012-10-09 20:35:49 +00001058 vxlan_set_owner(dev, skb);
1059
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001060 if (handle_offloads(skb))
1061 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001062
Cong Wang6aed0c82013-03-09 16:38:39 +00001063 iptunnel_xmit(skb, dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001064 return NETDEV_TX_OK;
1065
1066drop:
1067 dev->stats.tx_dropped++;
1068 goto tx_free;
1069
1070tx_error:
1071 dev->stats.tx_errors++;
1072tx_free:
1073 dev_kfree_skb(skb);
1074 return NETDEV_TX_OK;
1075}
1076
David Stevens66817122013-03-15 04:35:51 +00001077/* Transmit local packets over Vxlan
1078 *
1079 * Outer IP header inherits ECN and DF from inner header.
1080 * Outer UDP destination is the VXLAN assigned port.
1081 * source port is based on hash of flow
1082 */
1083static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1084{
1085 struct vxlan_dev *vxlan = netdev_priv(dev);
1086 struct ethhdr *eth;
1087 bool did_rsc = false;
1088 struct vxlan_rdst group, *rdst0, *rdst;
1089 struct vxlan_fdb *f;
1090 int rc1, rc;
1091
1092 skb_reset_mac_header(skb);
1093 eth = eth_hdr(skb);
1094
1095 if ((vxlan->flags & VXLAN_F_PROXY) && ntohs(eth->h_proto) == ETH_P_ARP)
1096 return arp_reduce(dev, skb);
1097 else if ((vxlan->flags&VXLAN_F_RSC) && ntohs(eth->h_proto) == ETH_P_IP)
1098 did_rsc = route_shortcircuit(dev, skb);
1099
1100 f = vxlan_find_mac(vxlan, eth->h_dest);
1101 if (f == NULL) {
1102 did_rsc = false;
1103 group.remote_port = vxlan_port;
1104 group.remote_vni = vxlan->vni;
1105 group.remote_ip = vxlan->gaddr;
1106 group.remote_ifindex = vxlan->link;
1107 group.remote_next = 0;
1108 rdst0 = &group;
1109
1110 if (group.remote_ip == htonl(INADDR_ANY) &&
1111 (vxlan->flags & VXLAN_F_L2MISS) &&
1112 !is_multicast_ether_addr(eth->h_dest))
1113 vxlan_fdb_miss(vxlan, eth->h_dest);
1114 } else
1115 rdst0 = &f->remote;
1116
1117 rc = NETDEV_TX_OK;
1118
1119 /* if there are multiple destinations, send copies */
1120 for (rdst = rdst0->remote_next; rdst; rdst = rdst->remote_next) {
1121 struct sk_buff *skb1;
1122
1123 skb1 = skb_clone(skb, GFP_ATOMIC);
1124 rc1 = vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1125 if (rc == NETDEV_TX_OK)
1126 rc = rc1;
1127 }
1128
1129 rc1 = vxlan_xmit_one(skb, dev, rdst0, did_rsc);
1130 if (rc == NETDEV_TX_OK)
1131 rc = rc1;
1132 return rc;
1133}
1134
stephen hemmingerd3428942012-10-01 12:32:35 +00001135/* Walk the forwarding table and purge stale entries */
1136static void vxlan_cleanup(unsigned long arg)
1137{
1138 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
1139 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
1140 unsigned int h;
1141
1142 if (!netif_running(vxlan->dev))
1143 return;
1144
1145 spin_lock_bh(&vxlan->hash_lock);
1146 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1147 struct hlist_node *p, *n;
1148 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1149 struct vxlan_fdb *f
1150 = container_of(p, struct vxlan_fdb, hlist);
1151 unsigned long timeout;
1152
stephen hemminger3c172862012-10-26 06:24:34 +00001153 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00001154 continue;
1155
1156 timeout = f->used + vxlan->age_interval * HZ;
1157 if (time_before_eq(timeout, jiffies)) {
1158 netdev_dbg(vxlan->dev,
1159 "garbage collect %pM\n",
1160 f->eth_addr);
1161 f->state = NUD_STALE;
1162 vxlan_fdb_destroy(vxlan, f);
1163 } else if (time_before(timeout, next_timer))
1164 next_timer = timeout;
1165 }
1166 }
1167 spin_unlock_bh(&vxlan->hash_lock);
1168
1169 mod_timer(&vxlan->age_timer, next_timer);
1170}
1171
1172/* Setup stats when device is created */
1173static int vxlan_init(struct net_device *dev)
1174{
Pravin B Shelare8171042013-03-25 14:49:46 +00001175 dev->tstats = alloc_percpu(struct pcpu_tstats);
1176 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00001177 return -ENOMEM;
1178
1179 return 0;
1180}
1181
1182/* Start ageing timer and join group when device is brought up */
1183static int vxlan_open(struct net_device *dev)
1184{
1185 struct vxlan_dev *vxlan = netdev_priv(dev);
1186 int err;
1187
1188 if (vxlan->gaddr) {
1189 err = vxlan_join_group(dev);
1190 if (err)
1191 return err;
1192 }
1193
1194 if (vxlan->age_interval)
1195 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
1196
1197 return 0;
1198}
1199
1200/* Purge the forwarding table */
1201static void vxlan_flush(struct vxlan_dev *vxlan)
1202{
1203 unsigned h;
1204
1205 spin_lock_bh(&vxlan->hash_lock);
1206 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1207 struct hlist_node *p, *n;
1208 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1209 struct vxlan_fdb *f
1210 = container_of(p, struct vxlan_fdb, hlist);
1211 vxlan_fdb_destroy(vxlan, f);
1212 }
1213 }
1214 spin_unlock_bh(&vxlan->hash_lock);
1215}
1216
1217/* Cleanup timer and forwarding table on shutdown */
1218static int vxlan_stop(struct net_device *dev)
1219{
1220 struct vxlan_dev *vxlan = netdev_priv(dev);
1221
1222 if (vxlan->gaddr)
1223 vxlan_leave_group(dev);
1224
1225 del_timer_sync(&vxlan->age_timer);
1226
1227 vxlan_flush(vxlan);
1228
1229 return 0;
1230}
1231
stephen hemmingerd3428942012-10-01 12:32:35 +00001232/* Stub, nothing needs to be done. */
1233static void vxlan_set_multicast_list(struct net_device *dev)
1234{
1235}
1236
1237static const struct net_device_ops vxlan_netdev_ops = {
1238 .ndo_init = vxlan_init,
1239 .ndo_open = vxlan_open,
1240 .ndo_stop = vxlan_stop,
1241 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00001242 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00001243 .ndo_set_rx_mode = vxlan_set_multicast_list,
1244 .ndo_change_mtu = eth_change_mtu,
1245 .ndo_validate_addr = eth_validate_addr,
1246 .ndo_set_mac_address = eth_mac_addr,
1247 .ndo_fdb_add = vxlan_fdb_add,
1248 .ndo_fdb_del = vxlan_fdb_delete,
1249 .ndo_fdb_dump = vxlan_fdb_dump,
1250};
1251
1252/* Info for udev, that this is a virtual tunnel endpoint */
1253static struct device_type vxlan_type = {
1254 .name = "vxlan",
1255};
1256
1257static void vxlan_free(struct net_device *dev)
1258{
Pravin B Shelare8171042013-03-25 14:49:46 +00001259 free_percpu(dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001260 free_netdev(dev);
1261}
1262
1263/* Initialize the device structure. */
1264static void vxlan_setup(struct net_device *dev)
1265{
1266 struct vxlan_dev *vxlan = netdev_priv(dev);
1267 unsigned h;
stephen hemminger05f47d62012-10-09 20:35:50 +00001268 int low, high;
stephen hemmingerd3428942012-10-01 12:32:35 +00001269
1270 eth_hw_addr_random(dev);
1271 ether_setup(dev);
stephen hemminger2840bf22012-10-09 20:35:51 +00001272 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00001273
1274 dev->netdev_ops = &vxlan_netdev_ops;
1275 dev->destructor = vxlan_free;
1276 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
1277
1278 dev->tx_queue_len = 0;
1279 dev->features |= NETIF_F_LLTX;
1280 dev->features |= NETIF_F_NETNS_LOCAL;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00001281 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001282 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001283 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001284
1285 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001286 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
stephen hemmingerd3428942012-10-01 12:32:35 +00001287 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
stephen hemminger6602d002012-12-31 12:00:21 +00001288 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00001289
1290 spin_lock_init(&vxlan->hash_lock);
1291
1292 init_timer_deferrable(&vxlan->age_timer);
1293 vxlan->age_timer.function = vxlan_cleanup;
1294 vxlan->age_timer.data = (unsigned long) vxlan;
1295
stephen hemminger05f47d62012-10-09 20:35:50 +00001296 inet_get_local_port_range(&low, &high);
1297 vxlan->port_min = low;
1298 vxlan->port_max = high;
1299
stephen hemmingerd3428942012-10-01 12:32:35 +00001300 vxlan->dev = dev;
1301
1302 for (h = 0; h < FDB_HASH_SIZE; ++h)
1303 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
1304}
1305
1306static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
1307 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
1308 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
1309 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
1310 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
1311 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
1312 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
1313 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
1314 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
1315 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00001316 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00001317 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
1318 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
1319 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
1320 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00001321};
1322
1323static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
1324{
1325 if (tb[IFLA_ADDRESS]) {
1326 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1327 pr_debug("invalid link address (not ethernet)\n");
1328 return -EINVAL;
1329 }
1330
1331 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1332 pr_debug("invalid all zero ethernet address\n");
1333 return -EADDRNOTAVAIL;
1334 }
1335 }
1336
1337 if (!data)
1338 return -EINVAL;
1339
1340 if (data[IFLA_VXLAN_ID]) {
1341 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
1342 if (id >= VXLAN_VID_MASK)
1343 return -ERANGE;
1344 }
1345
1346 if (data[IFLA_VXLAN_GROUP]) {
1347 __be32 gaddr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
1348 if (!IN_MULTICAST(ntohl(gaddr))) {
1349 pr_debug("group address is not IPv4 multicast\n");
1350 return -EADDRNOTAVAIL;
1351 }
1352 }
stephen hemminger05f47d62012-10-09 20:35:50 +00001353
1354 if (data[IFLA_VXLAN_PORT_RANGE]) {
1355 const struct ifla_vxlan_port_range *p
1356 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
1357
1358 if (ntohs(p->high) < ntohs(p->low)) {
1359 pr_debug("port range %u .. %u not valid\n",
1360 ntohs(p->low), ntohs(p->high));
1361 return -EINVAL;
1362 }
1363 }
1364
stephen hemmingerd3428942012-10-01 12:32:35 +00001365 return 0;
1366}
1367
Yan Burman1b13c972013-01-29 23:43:07 +00001368static void vxlan_get_drvinfo(struct net_device *netdev,
1369 struct ethtool_drvinfo *drvinfo)
1370{
1371 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
1372 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
1373}
1374
1375static const struct ethtool_ops vxlan_ethtool_ops = {
1376 .get_drvinfo = vxlan_get_drvinfo,
1377 .get_link = ethtool_op_get_link,
1378};
1379
stephen hemmingerd3428942012-10-01 12:32:35 +00001380static int vxlan_newlink(struct net *net, struct net_device *dev,
1381 struct nlattr *tb[], struct nlattr *data[])
1382{
1383 struct vxlan_dev *vxlan = netdev_priv(dev);
1384 __u32 vni;
1385 int err;
1386
1387 if (!data[IFLA_VXLAN_ID])
1388 return -EINVAL;
1389
1390 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
1391 if (vxlan_find_vni(net, vni)) {
1392 pr_info("duplicate VNI %u\n", vni);
1393 return -EEXIST;
1394 }
1395 vxlan->vni = vni;
1396
1397 if (data[IFLA_VXLAN_GROUP])
1398 vxlan->gaddr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
1399
1400 if (data[IFLA_VXLAN_LOCAL])
1401 vxlan->saddr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
1402
stephen hemminger34e02aa2012-10-09 20:35:53 +00001403 if (data[IFLA_VXLAN_LINK] &&
1404 (vxlan->link = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
1405 struct net_device *lowerdev
1406 = __dev_get_by_index(net, vxlan->link);
stephen hemmingerd3428942012-10-01 12:32:35 +00001407
stephen hemminger34e02aa2012-10-09 20:35:53 +00001408 if (!lowerdev) {
1409 pr_info("ifindex %d does not exist\n", vxlan->link);
1410 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00001411 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00001412
1413 if (!tb[IFLA_MTU])
1414 dev->mtu = lowerdev->mtu - VXLAN_HEADROOM;
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00001415
1416 /* update header length based on lower device */
1417 dev->hard_header_len = lowerdev->hard_header_len +
1418 VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00001419 }
1420
1421 if (data[IFLA_VXLAN_TOS])
1422 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
1423
Vincent Bernatafb97182012-10-30 10:27:16 +00001424 if (data[IFLA_VXLAN_TTL])
1425 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
1426
stephen hemmingerd3428942012-10-01 12:32:35 +00001427 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00001428 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00001429
1430 if (data[IFLA_VXLAN_AGEING])
1431 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
1432 else
1433 vxlan->age_interval = FDB_AGE_DEFAULT;
1434
David Stevense4f67ad2012-11-20 02:50:14 +00001435 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
1436 vxlan->flags |= VXLAN_F_PROXY;
1437
1438 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
1439 vxlan->flags |= VXLAN_F_RSC;
1440
1441 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
1442 vxlan->flags |= VXLAN_F_L2MISS;
1443
1444 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
1445 vxlan->flags |= VXLAN_F_L3MISS;
1446
stephen hemmingerd3428942012-10-01 12:32:35 +00001447 if (data[IFLA_VXLAN_LIMIT])
1448 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
1449
stephen hemminger05f47d62012-10-09 20:35:50 +00001450 if (data[IFLA_VXLAN_PORT_RANGE]) {
1451 const struct ifla_vxlan_port_range *p
1452 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
1453 vxlan->port_min = ntohs(p->low);
1454 vxlan->port_max = ntohs(p->high);
1455 }
1456
Yan Burman1b13c972013-01-29 23:43:07 +00001457 SET_ETHTOOL_OPS(dev, &vxlan_ethtool_ops);
1458
stephen hemmingerd3428942012-10-01 12:32:35 +00001459 err = register_netdevice(dev);
1460 if (!err)
1461 hlist_add_head_rcu(&vxlan->hlist, vni_head(net, vxlan->vni));
1462
1463 return err;
1464}
1465
1466static void vxlan_dellink(struct net_device *dev, struct list_head *head)
1467{
1468 struct vxlan_dev *vxlan = netdev_priv(dev);
1469
1470 hlist_del_rcu(&vxlan->hlist);
1471
1472 unregister_netdevice_queue(dev, head);
1473}
1474
1475static size_t vxlan_get_size(const struct net_device *dev)
1476{
1477
1478 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
1479 nla_total_size(sizeof(__be32)) +/* IFLA_VXLAN_GROUP */
1480 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
1481 nla_total_size(sizeof(__be32))+ /* IFLA_VXLAN_LOCAL */
1482 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
1483 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
1484 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00001485 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
1486 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
1487 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
1488 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00001489 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
1490 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00001491 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
stephen hemmingerd3428942012-10-01 12:32:35 +00001492 0;
1493}
1494
1495static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
1496{
1497 const struct vxlan_dev *vxlan = netdev_priv(dev);
stephen hemminger05f47d62012-10-09 20:35:50 +00001498 struct ifla_vxlan_port_range ports = {
1499 .low = htons(vxlan->port_min),
1500 .high = htons(vxlan->port_max),
1501 };
stephen hemmingerd3428942012-10-01 12:32:35 +00001502
1503 if (nla_put_u32(skb, IFLA_VXLAN_ID, vxlan->vni))
1504 goto nla_put_failure;
1505
Stephen Hemminger7c41c422012-10-08 14:55:30 -07001506 if (vxlan->gaddr && nla_put_be32(skb, IFLA_VXLAN_GROUP, vxlan->gaddr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001507 goto nla_put_failure;
1508
1509 if (vxlan->link && nla_put_u32(skb, IFLA_VXLAN_LINK, vxlan->link))
1510 goto nla_put_failure;
1511
Stephen Hemminger7c41c422012-10-08 14:55:30 -07001512 if (vxlan->saddr && nla_put_be32(skb, IFLA_VXLAN_LOCAL, vxlan->saddr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001513 goto nla_put_failure;
1514
1515 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
1516 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00001517 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
1518 !!(vxlan->flags & VXLAN_F_LEARN)) ||
1519 nla_put_u8(skb, IFLA_VXLAN_PROXY,
1520 !!(vxlan->flags & VXLAN_F_PROXY)) ||
1521 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
1522 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
1523 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
1524 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
1525 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00001526 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
1527 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax))
1528 goto nla_put_failure;
1529
stephen hemminger05f47d62012-10-09 20:35:50 +00001530 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
1531 goto nla_put_failure;
1532
stephen hemmingerd3428942012-10-01 12:32:35 +00001533 return 0;
1534
1535nla_put_failure:
1536 return -EMSGSIZE;
1537}
1538
1539static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
1540 .kind = "vxlan",
1541 .maxtype = IFLA_VXLAN_MAX,
1542 .policy = vxlan_policy,
1543 .priv_size = sizeof(struct vxlan_dev),
1544 .setup = vxlan_setup,
1545 .validate = vxlan_validate,
1546 .newlink = vxlan_newlink,
1547 .dellink = vxlan_dellink,
1548 .get_size = vxlan_get_size,
1549 .fill_info = vxlan_fill_info,
1550};
1551
1552static __net_init int vxlan_init_net(struct net *net)
1553{
1554 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
1555 struct sock *sk;
1556 struct sockaddr_in vxlan_addr = {
1557 .sin_family = AF_INET,
1558 .sin_addr.s_addr = htonl(INADDR_ANY),
1559 };
1560 int rc;
1561 unsigned h;
1562
1563 /* Create UDP socket for encapsulation receive. */
1564 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &vn->sock);
1565 if (rc < 0) {
1566 pr_debug("UDP socket create failed\n");
1567 return rc;
1568 }
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001569 /* Put in proper namespace */
1570 sk = vn->sock->sk;
1571 sk_change_net(sk, net);
stephen hemmingerd3428942012-10-01 12:32:35 +00001572
1573 vxlan_addr.sin_port = htons(vxlan_port);
1574
1575 rc = kernel_bind(vn->sock, (struct sockaddr *) &vxlan_addr,
1576 sizeof(vxlan_addr));
1577 if (rc < 0) {
1578 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
1579 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001580 sk_release_kernel(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001581 vn->sock = NULL;
1582 return rc;
1583 }
1584
1585 /* Disable multicast loopback */
stephen hemmingerd3428942012-10-01 12:32:35 +00001586 inet_sk(sk)->mc_loop = 0;
1587
1588 /* Mark socket as an encapsulation socket. */
1589 udp_sk(sk)->encap_type = 1;
1590 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
1591 udp_encap_enable();
1592
1593 for (h = 0; h < VNI_HASH_SIZE; ++h)
1594 INIT_HLIST_HEAD(&vn->vni_list[h]);
1595
1596 return 0;
1597}
1598
1599static __net_exit void vxlan_exit_net(struct net *net)
1600{
1601 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00001602 struct vxlan_dev *vxlan;
1603 unsigned h;
1604
1605 rtnl_lock();
1606 for (h = 0; h < VNI_HASH_SIZE; ++h)
1607 hlist_for_each_entry(vxlan, &vn->vni_list[h], hlist)
1608 dev_close(vxlan->dev);
1609 rtnl_unlock();
stephen hemmingerd3428942012-10-01 12:32:35 +00001610
1611 if (vn->sock) {
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001612 sk_release_kernel(vn->sock->sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001613 vn->sock = NULL;
1614 }
1615}
1616
1617static struct pernet_operations vxlan_net_ops = {
1618 .init = vxlan_init_net,
1619 .exit = vxlan_exit_net,
1620 .id = &vxlan_net_id,
1621 .size = sizeof(struct vxlan_net),
1622};
1623
1624static int __init vxlan_init_module(void)
1625{
1626 int rc;
1627
1628 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
1629
1630 rc = register_pernet_device(&vxlan_net_ops);
1631 if (rc)
1632 goto out1;
1633
1634 rc = rtnl_link_register(&vxlan_link_ops);
1635 if (rc)
1636 goto out2;
1637
1638 return 0;
1639
1640out2:
1641 unregister_pernet_device(&vxlan_net_ops);
1642out1:
1643 return rc;
1644}
1645module_init(vxlan_init_module);
1646
1647static void __exit vxlan_cleanup_module(void)
1648{
1649 rtnl_link_unregister(&vxlan_link_ops);
1650 unregister_pernet_device(&vxlan_net_ops);
David Stevens66817122013-03-15 04:35:51 +00001651 rcu_barrier();
stephen hemmingerd3428942012-10-01 12:32:35 +00001652}
1653module_exit(vxlan_cleanup_module);
1654
1655MODULE_LICENSE("GPL");
1656MODULE_VERSION(VXLAN_VERSION);
1657MODULE_AUTHOR("Stephen Hemminger <shemminger@vyatta.com>");
1658MODULE_ALIAS_RTNL_LINK("vxlan");