blob: e6a3d4737df2e1874dfd22e2c441415aab2cc65a [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 *
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004 * Copyright (c) 2012-2013 Vyatta Inc.
stephen hemmingerd3428942012-10-01 12:32:35 +00005 *
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
stephen hemmingerd3428942012-10-01 12:32:35 +000011 * - IPv6 (not in RFC)
12 */
13
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
16#include <linux/kernel.h>
17#include <linux/types.h>
18#include <linux/module.h>
19#include <linux/errno.h>
20#include <linux/slab.h>
21#include <linux/skbuff.h>
22#include <linux/rculist.h>
23#include <linux/netdevice.h>
24#include <linux/in.h>
25#include <linux/ip.h>
26#include <linux/udp.h>
27#include <linux/igmp.h>
28#include <linux/etherdevice.h>
29#include <linux/if_ether.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000030#include <linux/hash.h>
Yan Burman1b13c972013-01-29 23:43:07 +000031#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000032#include <net/arp.h>
33#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000034#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000035#include <net/ip_tunnels.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000036#include <net/icmp.h>
37#include <net/udp.h>
38#include <net/rtnetlink.h>
39#include <net/route.h>
40#include <net/dsfield.h>
41#include <net/inet_ecn.h>
42#include <net/net_namespace.h>
43#include <net/netns/generic.h>
44
45#define VXLAN_VERSION "0.1"
46
47#define VNI_HASH_BITS 10
48#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
49#define FDB_HASH_BITS 8
50#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
51#define FDB_AGE_DEFAULT 300 /* 5 min */
52#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
53
54#define VXLAN_N_VID (1u << 24)
55#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Alexander Duyck52b702f2012-11-09 13:35:24 +000056/* IP header + UDP + VXLAN + Ethernet header */
57#define VXLAN_HEADROOM (20 + 8 + 8 + 14)
stephen hemmingerd3428942012-10-01 12:32:35 +000058
59#define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */
60
61/* VXLAN protocol header */
62struct vxlanhdr {
63 __be32 vx_flags;
64 __be32 vx_vni;
65};
66
stephen hemminger23c578b2013-04-27 11:31:53 +000067/* UDP port for VXLAN traffic.
68 * The IANA assigned port is 4789, but the Linux default is 8472
69 * for compatability with early adopters.
70 */
stephen hemmingerd3428942012-10-01 12:32:35 +000071static unsigned int vxlan_port __read_mostly = 8472;
72module_param_named(udp_port, vxlan_port, uint, 0444);
73MODULE_PARM_DESC(udp_port, "Destination UDP port");
74
75static bool log_ecn_error = true;
76module_param(log_ecn_error, bool, 0644);
77MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
78
79/* per-net private data for this module */
80static unsigned int vxlan_net_id;
81struct vxlan_net {
82 struct socket *sock; /* UDP encap socket */
83 struct hlist_head vni_list[VNI_HASH_SIZE];
84};
85
David Stevens66817122013-03-15 04:35:51 +000086struct vxlan_rdst {
87 struct rcu_head rcu;
88 __be32 remote_ip;
89 __be16 remote_port;
90 u32 remote_vni;
91 u32 remote_ifindex;
92 struct vxlan_rdst *remote_next;
93};
94
stephen hemmingerd3428942012-10-01 12:32:35 +000095/* Forwarding table entry */
96struct vxlan_fdb {
97 struct hlist_node hlist; /* linked list of entries */
98 struct rcu_head rcu;
99 unsigned long updated; /* jiffies */
100 unsigned long used;
David Stevens66817122013-03-15 04:35:51 +0000101 struct vxlan_rdst remote;
stephen hemmingerd3428942012-10-01 12:32:35 +0000102 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +0000103 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +0000104 u8 eth_addr[ETH_ALEN];
105};
106
stephen hemmingerd3428942012-10-01 12:32:35 +0000107/* Pseudo network device */
108struct vxlan_dev {
109 struct hlist_node hlist;
110 struct net_device *dev;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000111 struct vxlan_rdst default_dst; /* default destination */
stephen hemmingerd3428942012-10-01 12:32:35 +0000112 __be32 saddr; /* source address */
stephen hemminger05f47d62012-10-09 20:35:50 +0000113 __u16 port_min; /* source port range */
114 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000115 __u8 tos; /* TOS override */
116 __u8 ttl;
David Stevense4f67ad2012-11-20 02:50:14 +0000117 u32 flags; /* VXLAN_F_* below */
stephen hemmingerd3428942012-10-01 12:32:35 +0000118
119 unsigned long age_interval;
120 struct timer_list age_timer;
121 spinlock_t hash_lock;
122 unsigned int addrcnt;
123 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000124
125 struct hlist_head fdb_head[FDB_HASH_SIZE];
126};
127
David Stevense4f67ad2012-11-20 02:50:14 +0000128#define VXLAN_F_LEARN 0x01
129#define VXLAN_F_PROXY 0x02
130#define VXLAN_F_RSC 0x04
131#define VXLAN_F_L2MISS 0x08
132#define VXLAN_F_L3MISS 0x10
133
stephen hemmingerd3428942012-10-01 12:32:35 +0000134/* salt for hash table */
135static u32 vxlan_salt __read_mostly;
136
137static inline struct hlist_head *vni_head(struct net *net, u32 id)
138{
139 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
140
141 return &vn->vni_list[hash_32(id, VNI_HASH_BITS)];
142}
143
144/* Look up VNI in a per net namespace table */
145static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id)
146{
147 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000148
Sasha Levinb67bfe02013-02-27 17:06:00 -0800149 hlist_for_each_entry_rcu(vxlan, vni_head(net, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000150 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000151 return vxlan;
152 }
153
154 return NULL;
155}
156
157/* Fill in neighbour message in skbuff. */
158static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
159 const struct vxlan_fdb *fdb,
David Stevens66817122013-03-15 04:35:51 +0000160 u32 portid, u32 seq, int type, unsigned int flags,
161 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000162{
163 unsigned long now = jiffies;
164 struct nda_cacheinfo ci;
165 struct nlmsghdr *nlh;
166 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000167 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000168
169 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
170 if (nlh == NULL)
171 return -EMSGSIZE;
172
173 ndm = nlmsg_data(nlh);
174 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000175
176 send_eth = send_ip = true;
177
178 if (type == RTM_GETNEIGH) {
179 ndm->ndm_family = AF_INET;
David Stevens66817122013-03-15 04:35:51 +0000180 send_ip = rdst->remote_ip != htonl(INADDR_ANY);
David Stevense4f67ad2012-11-20 02:50:14 +0000181 send_eth = !is_zero_ether_addr(fdb->eth_addr);
182 } else
183 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000184 ndm->ndm_state = fdb->state;
185 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000186 ndm->ndm_flags = fdb->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000187 ndm->ndm_type = NDA_DST;
188
David Stevense4f67ad2012-11-20 02:50:14 +0000189 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000190 goto nla_put_failure;
191
David Stevens66817122013-03-15 04:35:51 +0000192 if (send_ip && nla_put_be32(skb, NDA_DST, rdst->remote_ip))
193 goto nla_put_failure;
194
195 if (rdst->remote_port && rdst->remote_port != vxlan_port &&
196 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
197 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000198 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
David Stevens66817122013-03-15 04:35:51 +0000199 nla_put_be32(skb, NDA_VNI, rdst->remote_vni))
200 goto nla_put_failure;
201 if (rdst->remote_ifindex &&
202 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000203 goto nla_put_failure;
204
205 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
206 ci.ndm_confirmed = 0;
207 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
208 ci.ndm_refcnt = 0;
209
210 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
211 goto nla_put_failure;
212
213 return nlmsg_end(skb, nlh);
214
215nla_put_failure:
216 nlmsg_cancel(skb, nlh);
217 return -EMSGSIZE;
218}
219
220static inline size_t vxlan_nlmsg_size(void)
221{
222 return NLMSG_ALIGN(sizeof(struct ndmsg))
223 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
224 + nla_total_size(sizeof(__be32)) /* NDA_DST */
David Stevens66817122013-03-15 04:35:51 +0000225 + nla_total_size(sizeof(__be32)) /* NDA_PORT */
226 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
227 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000228 + nla_total_size(sizeof(struct nda_cacheinfo));
229}
230
231static void vxlan_fdb_notify(struct vxlan_dev *vxlan,
232 const struct vxlan_fdb *fdb, int type)
233{
234 struct net *net = dev_net(vxlan->dev);
235 struct sk_buff *skb;
236 int err = -ENOBUFS;
237
238 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
239 if (skb == NULL)
240 goto errout;
241
David Stevens66817122013-03-15 04:35:51 +0000242 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, &fdb->remote);
stephen hemmingerd3428942012-10-01 12:32:35 +0000243 if (err < 0) {
244 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
245 WARN_ON(err == -EMSGSIZE);
246 kfree_skb(skb);
247 goto errout;
248 }
249
250 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
251 return;
252errout:
253 if (err < 0)
254 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
255}
256
David Stevense4f67ad2012-11-20 02:50:14 +0000257static void vxlan_ip_miss(struct net_device *dev, __be32 ipa)
258{
259 struct vxlan_dev *vxlan = netdev_priv(dev);
260 struct vxlan_fdb f;
261
262 memset(&f, 0, sizeof f);
263 f.state = NUD_STALE;
David Stevens66817122013-03-15 04:35:51 +0000264 f.remote.remote_ip = ipa; /* goes to NDA_DST */
265 f.remote.remote_vni = VXLAN_N_VID;
David Stevense4f67ad2012-11-20 02:50:14 +0000266
267 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
268}
269
270static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
271{
272 struct vxlan_fdb f;
273
274 memset(&f, 0, sizeof f);
275 f.state = NUD_STALE;
276 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
277
278 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
279}
280
stephen hemmingerd3428942012-10-01 12:32:35 +0000281/* Hash Ethernet address */
282static u32 eth_hash(const unsigned char *addr)
283{
284 u64 value = get_unaligned((u64 *)addr);
285
286 /* only want 6 bytes */
287#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000288 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000289#else
290 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000291#endif
292 return hash_64(value, FDB_HASH_BITS);
293}
294
295/* Hash chain to use given mac address */
296static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
297 const u8 *mac)
298{
299 return &vxlan->fdb_head[eth_hash(mac)];
300}
301
302/* Look up Ethernet address in forwarding table */
303static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
304 const u8 *mac)
305
306{
307 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
308 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000309
Sasha Levinb67bfe02013-02-27 17:06:00 -0800310 hlist_for_each_entry_rcu(f, head, hlist) {
stephen hemmingerd3428942012-10-01 12:32:35 +0000311 if (compare_ether_addr(mac, f->eth_addr) == 0)
312 return f;
313 }
314
315 return NULL;
316}
317
David Stevens66817122013-03-15 04:35:51 +0000318/* Add/update destinations for multicast */
319static int vxlan_fdb_append(struct vxlan_fdb *f,
320 __be32 ip, __u32 port, __u32 vni, __u32 ifindex)
321{
322 struct vxlan_rdst *rd_prev, *rd;
323
324 rd_prev = NULL;
325 for (rd = &f->remote; rd; rd = rd->remote_next) {
326 if (rd->remote_ip == ip &&
327 rd->remote_port == port &&
328 rd->remote_vni == vni &&
329 rd->remote_ifindex == ifindex)
330 return 0;
331 rd_prev = rd;
332 }
333 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
334 if (rd == NULL)
335 return -ENOBUFS;
336 rd->remote_ip = ip;
337 rd->remote_port = port;
338 rd->remote_vni = vni;
339 rd->remote_ifindex = ifindex;
340 rd->remote_next = NULL;
341 rd_prev->remote_next = rd;
342 return 1;
343}
344
stephen hemmingerd3428942012-10-01 12:32:35 +0000345/* Add new entry to forwarding table -- assumes lock held */
346static int vxlan_fdb_create(struct vxlan_dev *vxlan,
347 const u8 *mac, __be32 ip,
David Stevens66817122013-03-15 04:35:51 +0000348 __u16 state, __u16 flags,
David Stevensae884082013-04-19 00:36:26 +0000349 __u32 port, __u32 vni, __u32 ifindex,
350 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000351{
352 struct vxlan_fdb *f;
353 int notify = 0;
354
355 f = vxlan_find_mac(vxlan, mac);
356 if (f) {
357 if (flags & NLM_F_EXCL) {
358 netdev_dbg(vxlan->dev,
359 "lost race to create %pM\n", mac);
360 return -EEXIST;
361 }
362 if (f->state != state) {
363 f->state = state;
364 f->updated = jiffies;
365 notify = 1;
366 }
David Stevensae884082013-04-19 00:36:26 +0000367 if (f->flags != ndm_flags) {
368 f->flags = ndm_flags;
369 f->updated = jiffies;
370 notify = 1;
371 }
David Stevens66817122013-03-15 04:35:51 +0000372 if ((flags & NLM_F_APPEND) &&
373 is_multicast_ether_addr(f->eth_addr)) {
374 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex);
375
376 if (rc < 0)
377 return rc;
378 notify |= rc;
379 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000380 } else {
381 if (!(flags & NLM_F_CREATE))
382 return -ENOENT;
383
384 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
385 return -ENOSPC;
386
387 netdev_dbg(vxlan->dev, "add %pM -> %pI4\n", mac, &ip);
388 f = kmalloc(sizeof(*f), GFP_ATOMIC);
389 if (!f)
390 return -ENOMEM;
391
392 notify = 1;
David Stevens66817122013-03-15 04:35:51 +0000393 f->remote.remote_ip = ip;
394 f->remote.remote_port = port;
395 f->remote.remote_vni = vni;
396 f->remote.remote_ifindex = ifindex;
397 f->remote.remote_next = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000398 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000399 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000400 f->updated = f->used = jiffies;
401 memcpy(f->eth_addr, mac, ETH_ALEN);
402
403 ++vxlan->addrcnt;
404 hlist_add_head_rcu(&f->hlist,
405 vxlan_fdb_head(vxlan, mac));
406 }
407
408 if (notify)
409 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
410
411 return 0;
412}
413
Wei Yongjun6706c822013-04-11 19:00:35 +0000414static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000415{
416 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
417
418 while (f->remote.remote_next) {
419 struct vxlan_rdst *rd = f->remote.remote_next;
420
421 f->remote.remote_next = rd->remote_next;
422 kfree(rd);
423 }
424 kfree(f);
425}
426
stephen hemmingerd3428942012-10-01 12:32:35 +0000427static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
428{
429 netdev_dbg(vxlan->dev,
430 "delete %pM\n", f->eth_addr);
431
432 --vxlan->addrcnt;
433 vxlan_fdb_notify(vxlan, f, RTM_DELNEIGH);
434
435 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000436 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000437}
438
439/* Add static entry (via netlink) */
440static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
441 struct net_device *dev,
442 const unsigned char *addr, u16 flags)
443{
444 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens66817122013-03-15 04:35:51 +0000445 struct net *net = dev_net(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +0000446 __be32 ip;
David Stevens66817122013-03-15 04:35:51 +0000447 u32 port, vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000448 int err;
449
450 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
451 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
452 ndm->ndm_state);
453 return -EINVAL;
454 }
455
456 if (tb[NDA_DST] == NULL)
457 return -EINVAL;
458
459 if (nla_len(tb[NDA_DST]) != sizeof(__be32))
460 return -EAFNOSUPPORT;
461
462 ip = nla_get_be32(tb[NDA_DST]);
463
David Stevens66817122013-03-15 04:35:51 +0000464 if (tb[NDA_PORT]) {
465 if (nla_len(tb[NDA_PORT]) != sizeof(u32))
466 return -EINVAL;
467 port = nla_get_u32(tb[NDA_PORT]);
468 } else
469 port = vxlan_port;
470
471 if (tb[NDA_VNI]) {
472 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
473 return -EINVAL;
474 vni = nla_get_u32(tb[NDA_VNI]);
475 } else
Atzm Watanabec7995c42013-04-16 02:50:52 +0000476 vni = vxlan->default_dst.remote_vni;
David Stevens66817122013-03-15 04:35:51 +0000477
478 if (tb[NDA_IFINDEX]) {
Pravin B Shelar5abb0022013-03-26 08:29:30 +0000479 struct net_device *tdev;
David Stevens66817122013-03-15 04:35:51 +0000480
481 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
482 return -EINVAL;
483 ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Pravin B Shelar5abb0022013-03-26 08:29:30 +0000484 tdev = dev_get_by_index(net, ifindex);
485 if (!tdev)
David Stevens66817122013-03-15 04:35:51 +0000486 return -EADDRNOTAVAIL;
Pravin B Shelar5abb0022013-03-26 08:29:30 +0000487 dev_put(tdev);
David Stevens66817122013-03-15 04:35:51 +0000488 } else
489 ifindex = 0;
490
stephen hemmingerd3428942012-10-01 12:32:35 +0000491 spin_lock_bh(&vxlan->hash_lock);
David Stevens66817122013-03-15 04:35:51 +0000492 err = vxlan_fdb_create(vxlan, addr, ip, ndm->ndm_state, flags, port,
David Stevensae884082013-04-19 00:36:26 +0000493 vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000494 spin_unlock_bh(&vxlan->hash_lock);
495
496 return err;
497}
498
499/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000500static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
501 struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000502 const unsigned char *addr)
503{
504 struct vxlan_dev *vxlan = netdev_priv(dev);
505 struct vxlan_fdb *f;
506 int err = -ENOENT;
507
508 spin_lock_bh(&vxlan->hash_lock);
509 f = vxlan_find_mac(vxlan, addr);
510 if (f) {
511 vxlan_fdb_destroy(vxlan, f);
512 err = 0;
513 }
514 spin_unlock_bh(&vxlan->hash_lock);
515
516 return err;
517}
518
519/* Dump forwarding table */
520static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
521 struct net_device *dev, int idx)
522{
523 struct vxlan_dev *vxlan = netdev_priv(dev);
524 unsigned int h;
525
526 for (h = 0; h < FDB_HASH_SIZE; ++h) {
527 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000528 int err;
529
Sasha Levinb67bfe02013-02-27 17:06:00 -0800530 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000531 struct vxlan_rdst *rd;
532 for (rd = &f->remote; rd; rd = rd->remote_next) {
533 if (idx < cb->args[0])
534 goto skip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000535
David Stevens66817122013-03-15 04:35:51 +0000536 err = vxlan_fdb_info(skb, vxlan, f,
537 NETLINK_CB(cb->skb).portid,
538 cb->nlh->nlmsg_seq,
539 RTM_NEWNEIGH,
540 NLM_F_MULTI, rd);
541 if (err < 0)
542 break;
stephen hemmingerd3428942012-10-01 12:32:35 +0000543skip:
David Stevens66817122013-03-15 04:35:51 +0000544 ++idx;
545 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000546 }
547 }
548
549 return idx;
550}
551
552/* Watch incoming packets to learn mapping between Ethernet address
553 * and Tunnel endpoint.
554 */
555static void vxlan_snoop(struct net_device *dev,
556 __be32 src_ip, const u8 *src_mac)
557{
558 struct vxlan_dev *vxlan = netdev_priv(dev);
559 struct vxlan_fdb *f;
560 int err;
561
562 f = vxlan_find_mac(vxlan, src_mac);
563 if (likely(f)) {
564 f->used = jiffies;
David Stevens66817122013-03-15 04:35:51 +0000565 if (likely(f->remote.remote_ip == src_ip))
stephen hemmingerd3428942012-10-01 12:32:35 +0000566 return;
567
568 if (net_ratelimit())
569 netdev_info(dev,
570 "%pM migrated from %pI4 to %pI4\n",
David Stevens66817122013-03-15 04:35:51 +0000571 src_mac, &f->remote.remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000572
David Stevens66817122013-03-15 04:35:51 +0000573 f->remote.remote_ip = src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000574 f->updated = jiffies;
575 } else {
576 /* learned new entry */
577 spin_lock(&vxlan->hash_lock);
578 err = vxlan_fdb_create(vxlan, src_mac, src_ip,
579 NUD_REACHABLE,
David Stevens66817122013-03-15 04:35:51 +0000580 NLM_F_EXCL|NLM_F_CREATE,
David Stevensae884082013-04-19 00:36:26 +0000581 vxlan_port,
582 vxlan->default_dst.remote_vni,
583 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000584 spin_unlock(&vxlan->hash_lock);
585 }
586}
587
588
589/* See if multicast group is already in use by other ID */
590static bool vxlan_group_used(struct vxlan_net *vn,
591 const struct vxlan_dev *this)
592{
593 const struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000594 unsigned h;
595
596 for (h = 0; h < VNI_HASH_SIZE; ++h)
Sasha Levinb67bfe02013-02-27 17:06:00 -0800597 hlist_for_each_entry(vxlan, &vn->vni_list[h], hlist) {
stephen hemmingerd3428942012-10-01 12:32:35 +0000598 if (vxlan == this)
599 continue;
600
601 if (!netif_running(vxlan->dev))
602 continue;
603
Atzm Watanabec7995c42013-04-16 02:50:52 +0000604 if (vxlan->default_dst.remote_ip == this->default_dst.remote_ip)
stephen hemmingerd3428942012-10-01 12:32:35 +0000605 return true;
606 }
607
608 return false;
609}
610
611/* kernel equivalent to IP_ADD_MEMBERSHIP */
612static int vxlan_join_group(struct net_device *dev)
613{
614 struct vxlan_dev *vxlan = netdev_priv(dev);
615 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
616 struct sock *sk = vn->sock->sk;
617 struct ip_mreqn mreq = {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000618 .imr_multiaddr.s_addr = vxlan->default_dst.remote_ip,
619 .imr_ifindex = vxlan->default_dst.remote_ifindex,
stephen hemmingerd3428942012-10-01 12:32:35 +0000620 };
621 int err;
622
623 /* Already a member of group */
624 if (vxlan_group_used(vn, vxlan))
625 return 0;
626
627 /* Need to drop RTNL to call multicast join */
628 rtnl_unlock();
629 lock_sock(sk);
630 err = ip_mc_join_group(sk, &mreq);
631 release_sock(sk);
632 rtnl_lock();
633
634 return err;
635}
636
637
638/* kernel equivalent to IP_DROP_MEMBERSHIP */
639static int vxlan_leave_group(struct net_device *dev)
640{
641 struct vxlan_dev *vxlan = netdev_priv(dev);
642 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
643 int err = 0;
644 struct sock *sk = vn->sock->sk;
645 struct ip_mreqn mreq = {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000646 .imr_multiaddr.s_addr = vxlan->default_dst.remote_ip,
647 .imr_ifindex = vxlan->default_dst.remote_ifindex,
stephen hemmingerd3428942012-10-01 12:32:35 +0000648 };
649
650 /* Only leave group when last vxlan is done. */
651 if (vxlan_group_used(vn, vxlan))
652 return 0;
653
654 /* Need to drop RTNL to call multicast leave */
655 rtnl_unlock();
656 lock_sock(sk);
657 err = ip_mc_leave_group(sk, &mreq);
658 release_sock(sk);
659 rtnl_lock();
660
661 return err;
662}
663
664/* Callback from net/ipv4/udp.c to receive packets */
665static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
666{
667 struct iphdr *oip;
668 struct vxlanhdr *vxh;
669 struct vxlan_dev *vxlan;
Pravin B Shelare8171042013-03-25 14:49:46 +0000670 struct pcpu_tstats *stats;
stephen hemmingerd3428942012-10-01 12:32:35 +0000671 __u32 vni;
672 int err;
673
674 /* pop off outer UDP header */
675 __skb_pull(skb, sizeof(struct udphdr));
676
677 /* Need Vxlan and inner Ethernet header to be present */
678 if (!pskb_may_pull(skb, sizeof(struct vxlanhdr)))
679 goto error;
680
681 /* Drop packets with reserved bits set */
682 vxh = (struct vxlanhdr *) skb->data;
683 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
684 (vxh->vx_vni & htonl(0xff))) {
685 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
686 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
687 goto error;
688 }
689
690 __skb_pull(skb, sizeof(struct vxlanhdr));
stephen hemmingerd3428942012-10-01 12:32:35 +0000691
692 /* Is this VNI defined? */
693 vni = ntohl(vxh->vx_vni) >> 8;
694 vxlan = vxlan_find_vni(sock_net(sk), vni);
695 if (!vxlan) {
696 netdev_dbg(skb->dev, "unknown vni %d\n", vni);
697 goto drop;
698 }
699
700 if (!pskb_may_pull(skb, ETH_HLEN)) {
701 vxlan->dev->stats.rx_length_errors++;
702 vxlan->dev->stats.rx_errors++;
703 goto drop;
704 }
705
David Stevense4f67ad2012-11-20 02:50:14 +0000706 skb_reset_mac_header(skb);
707
stephen hemmingerd3428942012-10-01 12:32:35 +0000708 /* Re-examine inner Ethernet packet */
709 oip = ip_hdr(skb);
710 skb->protocol = eth_type_trans(skb, vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +0000711
712 /* Ignore packet loops (and multicast echo) */
713 if (compare_ether_addr(eth_hdr(skb)->h_source,
714 vxlan->dev->dev_addr) == 0)
715 goto drop;
716
David Stevense4f67ad2012-11-20 02:50:14 +0000717 if (vxlan->flags & VXLAN_F_LEARN)
stephen hemmingerd3428942012-10-01 12:32:35 +0000718 vxlan_snoop(skb->dev, oip->saddr, eth_hdr(skb)->h_source);
719
720 __skb_tunnel_rx(skb, vxlan->dev);
721 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +0000722
723 /* If the NIC driver gave us an encapsulated packet with
724 * CHECKSUM_UNNECESSARY and Rx checksum feature is enabled,
725 * leave the CHECKSUM_UNNECESSARY, the device checksummed it
726 * for us. Otherwise force the upper layers to verify it.
727 */
728 if (skb->ip_summed != CHECKSUM_UNNECESSARY || !skb->encapsulation ||
729 !(vxlan->dev->features & NETIF_F_RXCSUM))
730 skb->ip_summed = CHECKSUM_NONE;
731
732 skb->encapsulation = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000733
734 err = IP_ECN_decapsulate(oip, skb);
735 if (unlikely(err)) {
736 if (log_ecn_error)
737 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
738 &oip->saddr, oip->tos);
739 if (err > 1) {
740 ++vxlan->dev->stats.rx_frame_errors;
741 ++vxlan->dev->stats.rx_errors;
742 goto drop;
743 }
744 }
745
Pravin B Shelare8171042013-03-25 14:49:46 +0000746 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +0000747 u64_stats_update_begin(&stats->syncp);
748 stats->rx_packets++;
749 stats->rx_bytes += skb->len;
750 u64_stats_update_end(&stats->syncp);
751
752 netif_rx(skb);
753
754 return 0;
755error:
756 /* Put UDP header back */
757 __skb_push(skb, sizeof(struct udphdr));
758
759 return 1;
760drop:
761 /* Consume bad packet */
762 kfree_skb(skb);
763 return 0;
764}
765
David Stevense4f67ad2012-11-20 02:50:14 +0000766static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
767{
768 struct vxlan_dev *vxlan = netdev_priv(dev);
769 struct arphdr *parp;
770 u8 *arpptr, *sha;
771 __be32 sip, tip;
772 struct neighbour *n;
773
774 if (dev->flags & IFF_NOARP)
775 goto out;
776
777 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
778 dev->stats.tx_dropped++;
779 goto out;
780 }
781 parp = arp_hdr(skb);
782
783 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
784 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
785 parp->ar_pro != htons(ETH_P_IP) ||
786 parp->ar_op != htons(ARPOP_REQUEST) ||
787 parp->ar_hln != dev->addr_len ||
788 parp->ar_pln != 4)
789 goto out;
790 arpptr = (u8 *)parp + sizeof(struct arphdr);
791 sha = arpptr;
792 arpptr += dev->addr_len; /* sha */
793 memcpy(&sip, arpptr, sizeof(sip));
794 arpptr += sizeof(sip);
795 arpptr += dev->addr_len; /* tha */
796 memcpy(&tip, arpptr, sizeof(tip));
797
798 if (ipv4_is_loopback(tip) ||
799 ipv4_is_multicast(tip))
800 goto out;
801
802 n = neigh_lookup(&arp_tbl, &tip, dev);
803
804 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +0000805 struct vxlan_fdb *f;
806 struct sk_buff *reply;
807
808 if (!(n->nud_state & NUD_CONNECTED)) {
809 neigh_release(n);
810 goto out;
811 }
812
813 f = vxlan_find_mac(vxlan, n->ha);
David Stevens66817122013-03-15 04:35:51 +0000814 if (f && f->remote.remote_ip == htonl(INADDR_ANY)) {
David Stevense4f67ad2012-11-20 02:50:14 +0000815 /* bridge-local neighbor */
816 neigh_release(n);
817 goto out;
818 }
819
820 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
821 n->ha, sha);
822
823 neigh_release(n);
824
825 skb_reset_mac_header(reply);
826 __skb_pull(reply, skb_network_offset(reply));
827 reply->ip_summed = CHECKSUM_UNNECESSARY;
828 reply->pkt_type = PACKET_HOST;
829
830 if (netif_rx_ni(reply) == NET_RX_DROP)
831 dev->stats.rx_dropped++;
832 } else if (vxlan->flags & VXLAN_F_L3MISS)
833 vxlan_ip_miss(dev, tip);
834out:
835 consume_skb(skb);
836 return NETDEV_TX_OK;
837}
838
839static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
840{
841 struct vxlan_dev *vxlan = netdev_priv(dev);
842 struct neighbour *n;
843 struct iphdr *pip;
844
845 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
846 return false;
847
848 n = NULL;
849 switch (ntohs(eth_hdr(skb)->h_proto)) {
850 case ETH_P_IP:
851 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
852 return false;
853 pip = ip_hdr(skb);
854 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
855 break;
856 default:
857 return false;
858 }
859
860 if (n) {
861 bool diff;
862
863 diff = compare_ether_addr(eth_hdr(skb)->h_dest, n->ha) != 0;
864 if (diff) {
865 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
866 dev->addr_len);
867 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
868 }
869 neigh_release(n);
870 return diff;
871 } else if (vxlan->flags & VXLAN_F_L3MISS)
872 vxlan_ip_miss(dev, pip->daddr);
873 return false;
874}
875
stephen hemminger1cad8712012-10-09 20:35:49 +0000876static void vxlan_sock_free(struct sk_buff *skb)
877{
878 sock_put(skb->sk);
879}
880
881/* On transmit, associate with the tunnel socket */
882static void vxlan_set_owner(struct net_device *dev, struct sk_buff *skb)
883{
884 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
885 struct sock *sk = vn->sock->sk;
886
887 skb_orphan(skb);
888 sock_hold(sk);
889 skb->sk = sk;
890 skb->destructor = vxlan_sock_free;
891}
892
stephen hemminger05f47d62012-10-09 20:35:50 +0000893/* Compute source port for outgoing packet
894 * first choice to use L4 flow hash since it will spread
895 * better and maybe available from hardware
896 * secondary choice is to use jhash on the Ethernet header
897 */
898static u16 vxlan_src_port(const struct vxlan_dev *vxlan, struct sk_buff *skb)
899{
900 unsigned int range = (vxlan->port_max - vxlan->port_min) + 1;
901 u32 hash;
902
903 hash = skb_get_rxhash(skb);
904 if (!hash)
905 hash = jhash(skb->data, 2 * ETH_ALEN,
906 (__force u32) skb->protocol);
907
908 return (((u64) hash * range) >> 32) + vxlan->port_min;
909}
910
Pravin B Shelar05c0db02013-03-07 13:22:36 +0000911static int handle_offloads(struct sk_buff *skb)
912{
913 if (skb_is_gso(skb)) {
914 int err = skb_unclone(skb, GFP_ATOMIC);
915 if (unlikely(err))
916 return err;
917
918 skb_shinfo(skb)->gso_type |= (SKB_GSO_UDP_TUNNEL | SKB_GSO_UDP);
919 } else if (skb->ip_summed != CHECKSUM_PARTIAL)
920 skb->ip_summed = CHECKSUM_NONE;
921
922 return 0;
923}
924
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +0000925/* Bypass encapsulation if the destination is local */
926static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
927 struct vxlan_dev *dst_vxlan)
928{
929 struct pcpu_tstats *tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
930 struct pcpu_tstats *rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
931
932 skb->pkt_type = PACKET_HOST;
933 skb->encapsulation = 0;
934 skb->dev = dst_vxlan->dev;
935 __skb_pull(skb, skb_network_offset(skb));
936
937 if (dst_vxlan->flags & VXLAN_F_LEARN)
Mike Rapoport9d9f1632013-04-13 23:21:39 +0000938 vxlan_snoop(skb->dev, htonl(INADDR_LOOPBACK),
939 eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +0000940
941 u64_stats_update_begin(&tx_stats->syncp);
942 tx_stats->tx_packets++;
943 tx_stats->tx_bytes += skb->len;
944 u64_stats_update_end(&tx_stats->syncp);
945
946 if (netif_rx(skb) == NET_RX_SUCCESS) {
947 u64_stats_update_begin(&rx_stats->syncp);
948 rx_stats->rx_packets++;
949 rx_stats->rx_bytes += skb->len;
950 u64_stats_update_end(&rx_stats->syncp);
951 } else {
952 skb->dev->stats.rx_dropped++;
953 }
954}
955
David Stevens66817122013-03-15 04:35:51 +0000956static netdev_tx_t vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
957 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +0000958{
959 struct vxlan_dev *vxlan = netdev_priv(dev);
960 struct rtable *rt;
stephen hemmingerd3428942012-10-01 12:32:35 +0000961 const struct iphdr *old_iph;
962 struct iphdr *iph;
963 struct vxlanhdr *vxh;
964 struct udphdr *uh;
965 struct flowi4 fl4;
stephen hemmingerd3428942012-10-01 12:32:35 +0000966 __be32 dst;
David Stevens66817122013-03-15 04:35:51 +0000967 __u16 src_port, dst_port;
968 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +0000969 __be16 df = 0;
970 __u8 tos, ttl;
stephen hemmingerd3428942012-10-01 12:32:35 +0000971
David Stevens66817122013-03-15 04:35:51 +0000972 dst_port = rdst->remote_port ? rdst->remote_port : vxlan_port;
973 vni = rdst->remote_vni;
974 dst = rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +0000975
976 if (!dst) {
977 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +0000978 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +0000979 vxlan_encap_bypass(skb, vxlan, vxlan);
David Stevense4f67ad2012-11-20 02:50:14 +0000980 return NETDEV_TX_OK;
981 }
stephen hemmingeref59feb2012-10-09 20:35:46 +0000982 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +0000983 }
stephen hemmingeref59feb2012-10-09 20:35:46 +0000984
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +0000985 if (!skb->encapsulation) {
986 skb_reset_inner_headers(skb);
987 skb->encapsulation = 1;
988 }
989
stephen hemmingerd3428942012-10-01 12:32:35 +0000990 /* Need space for new headers (invalidates iph ptr) */
991 if (skb_cow_head(skb, VXLAN_HEADROOM))
992 goto drop;
993
stephen hemmingerd3428942012-10-01 12:32:35 +0000994 old_iph = ip_hdr(skb);
995
stephen hemmingerd3428942012-10-01 12:32:35 +0000996 ttl = vxlan->ttl;
997 if (!ttl && IN_MULTICAST(ntohl(dst)))
998 ttl = 1;
999
1000 tos = vxlan->tos;
1001 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001002 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001003
stephen hemminger05f47d62012-10-09 20:35:50 +00001004 src_port = vxlan_src_port(vxlan, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001005
stephen hemmingerca78f182012-10-09 20:35:48 +00001006 memset(&fl4, 0, sizeof(fl4));
David Stevens66817122013-03-15 04:35:51 +00001007 fl4.flowi4_oif = rdst->remote_ifindex;
stephen hemmingerca78f182012-10-09 20:35:48 +00001008 fl4.flowi4_tos = RT_TOS(tos);
1009 fl4.daddr = dst;
1010 fl4.saddr = vxlan->saddr;
1011
1012 rt = ip_route_output_key(dev_net(dev), &fl4);
stephen hemmingerd3428942012-10-01 12:32:35 +00001013 if (IS_ERR(rt)) {
1014 netdev_dbg(dev, "no route to %pI4\n", &dst);
1015 dev->stats.tx_carrier_errors++;
1016 goto tx_error;
1017 }
1018
1019 if (rt->dst.dev == dev) {
1020 netdev_dbg(dev, "circular route to %pI4\n", &dst);
1021 ip_rt_put(rt);
1022 dev->stats.collisions++;
1023 goto tx_error;
1024 }
1025
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001026 /* Bypass encapsulation if the destination is local */
Mike Rapoportab09a6d2013-04-13 23:21:51 +00001027 if (rt->rt_flags & RTCF_LOCAL &&
1028 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001029 struct vxlan_dev *dst_vxlan;
1030
1031 ip_rt_put(rt);
1032 dst_vxlan = vxlan_find_vni(dev_net(dev), vni);
1033 if (!dst_vxlan)
1034 goto tx_error;
1035 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1036 return NETDEV_TX_OK;
1037 }
1038
stephen hemmingerd3428942012-10-01 12:32:35 +00001039 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1040 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1041 IPSKB_REROUTED);
1042 skb_dst_drop(skb);
1043 skb_dst_set(skb, &rt->dst);
1044
1045 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1046 vxh->vx_flags = htonl(VXLAN_FLAGS);
David Stevens66817122013-03-15 04:35:51 +00001047 vxh->vx_vni = htonl(vni << 8);
stephen hemmingerd3428942012-10-01 12:32:35 +00001048
1049 __skb_push(skb, sizeof(*uh));
1050 skb_reset_transport_header(skb);
1051 uh = udp_hdr(skb);
1052
David Stevens66817122013-03-15 04:35:51 +00001053 uh->dest = htons(dst_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001054 uh->source = htons(src_port);
stephen hemmingerd3428942012-10-01 12:32:35 +00001055
1056 uh->len = htons(skb->len);
1057 uh->check = 0;
1058
1059 __skb_push(skb, sizeof(*iph));
1060 skb_reset_network_header(skb);
1061 iph = ip_hdr(skb);
1062 iph->version = 4;
1063 iph->ihl = sizeof(struct iphdr) >> 2;
1064 iph->frag_off = df;
1065 iph->protocol = IPPROTO_UDP;
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001066 iph->tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
stephen hemmingerca78f182012-10-09 20:35:48 +00001067 iph->daddr = dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00001068 iph->saddr = fl4.saddr;
1069 iph->ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Pravin B Shelar8dc98eb2013-02-22 07:30:40 +00001070 tunnel_ip_select_ident(skb, old_iph, &rt->dst);
stephen hemmingerd3428942012-10-01 12:32:35 +00001071
Zang MingJie88c4c062013-03-04 06:07:34 +00001072 nf_reset(skb);
1073
stephen hemminger1cad8712012-10-09 20:35:49 +00001074 vxlan_set_owner(dev, skb);
1075
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001076 if (handle_offloads(skb))
1077 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001078
Cong Wang6aed0c82013-03-09 16:38:39 +00001079 iptunnel_xmit(skb, dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001080 return NETDEV_TX_OK;
1081
1082drop:
1083 dev->stats.tx_dropped++;
1084 goto tx_free;
1085
1086tx_error:
1087 dev->stats.tx_errors++;
1088tx_free:
1089 dev_kfree_skb(skb);
1090 return NETDEV_TX_OK;
1091}
1092
David Stevens66817122013-03-15 04:35:51 +00001093/* Transmit local packets over Vxlan
1094 *
1095 * Outer IP header inherits ECN and DF from inner header.
1096 * Outer UDP destination is the VXLAN assigned port.
1097 * source port is based on hash of flow
1098 */
1099static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1100{
1101 struct vxlan_dev *vxlan = netdev_priv(dev);
1102 struct ethhdr *eth;
1103 bool did_rsc = false;
Atzm Watanabec7995c42013-04-16 02:50:52 +00001104 struct vxlan_rdst *rdst0, *rdst;
David Stevens66817122013-03-15 04:35:51 +00001105 struct vxlan_fdb *f;
1106 int rc1, rc;
1107
1108 skb_reset_mac_header(skb);
1109 eth = eth_hdr(skb);
1110
1111 if ((vxlan->flags & VXLAN_F_PROXY) && ntohs(eth->h_proto) == ETH_P_ARP)
1112 return arp_reduce(dev, skb);
David Stevens66817122013-03-15 04:35:51 +00001113
1114 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00001115 did_rsc = false;
1116
1117 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
1118 ntohs(eth->h_proto) == ETH_P_IP) {
1119 did_rsc = route_shortcircuit(dev, skb);
1120 if (did_rsc)
1121 f = vxlan_find_mac(vxlan, eth->h_dest);
1122 }
1123
David Stevens66817122013-03-15 04:35:51 +00001124 if (f == NULL) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00001125 rdst0 = &vxlan->default_dst;
David Stevens66817122013-03-15 04:35:51 +00001126
Atzm Watanabec7995c42013-04-16 02:50:52 +00001127 if (rdst0->remote_ip == htonl(INADDR_ANY) &&
David Stevens66817122013-03-15 04:35:51 +00001128 (vxlan->flags & VXLAN_F_L2MISS) &&
1129 !is_multicast_ether_addr(eth->h_dest))
1130 vxlan_fdb_miss(vxlan, eth->h_dest);
1131 } else
1132 rdst0 = &f->remote;
1133
1134 rc = NETDEV_TX_OK;
1135
1136 /* if there are multiple destinations, send copies */
1137 for (rdst = rdst0->remote_next; rdst; rdst = rdst->remote_next) {
1138 struct sk_buff *skb1;
1139
1140 skb1 = skb_clone(skb, GFP_ATOMIC);
1141 rc1 = vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1142 if (rc == NETDEV_TX_OK)
1143 rc = rc1;
1144 }
1145
1146 rc1 = vxlan_xmit_one(skb, dev, rdst0, did_rsc);
1147 if (rc == NETDEV_TX_OK)
1148 rc = rc1;
1149 return rc;
1150}
1151
stephen hemmingerd3428942012-10-01 12:32:35 +00001152/* Walk the forwarding table and purge stale entries */
1153static void vxlan_cleanup(unsigned long arg)
1154{
1155 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
1156 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
1157 unsigned int h;
1158
1159 if (!netif_running(vxlan->dev))
1160 return;
1161
1162 spin_lock_bh(&vxlan->hash_lock);
1163 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1164 struct hlist_node *p, *n;
1165 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1166 struct vxlan_fdb *f
1167 = container_of(p, struct vxlan_fdb, hlist);
1168 unsigned long timeout;
1169
stephen hemminger3c172862012-10-26 06:24:34 +00001170 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00001171 continue;
1172
1173 timeout = f->used + vxlan->age_interval * HZ;
1174 if (time_before_eq(timeout, jiffies)) {
1175 netdev_dbg(vxlan->dev,
1176 "garbage collect %pM\n",
1177 f->eth_addr);
1178 f->state = NUD_STALE;
1179 vxlan_fdb_destroy(vxlan, f);
1180 } else if (time_before(timeout, next_timer))
1181 next_timer = timeout;
1182 }
1183 }
1184 spin_unlock_bh(&vxlan->hash_lock);
1185
1186 mod_timer(&vxlan->age_timer, next_timer);
1187}
1188
1189/* Setup stats when device is created */
1190static int vxlan_init(struct net_device *dev)
1191{
Pravin B Shelare8171042013-03-25 14:49:46 +00001192 dev->tstats = alloc_percpu(struct pcpu_tstats);
1193 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00001194 return -ENOMEM;
1195
1196 return 0;
1197}
1198
1199/* Start ageing timer and join group when device is brought up */
1200static int vxlan_open(struct net_device *dev)
1201{
1202 struct vxlan_dev *vxlan = netdev_priv(dev);
1203 int err;
1204
Atzm Watanabec7995c42013-04-16 02:50:52 +00001205 if (IN_MULTICAST(ntohl(vxlan->default_dst.remote_ip))) {
stephen hemmingerd3428942012-10-01 12:32:35 +00001206 err = vxlan_join_group(dev);
1207 if (err)
1208 return err;
1209 }
1210
1211 if (vxlan->age_interval)
1212 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
1213
1214 return 0;
1215}
1216
1217/* Purge the forwarding table */
1218static void vxlan_flush(struct vxlan_dev *vxlan)
1219{
1220 unsigned h;
1221
1222 spin_lock_bh(&vxlan->hash_lock);
1223 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1224 struct hlist_node *p, *n;
1225 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1226 struct vxlan_fdb *f
1227 = container_of(p, struct vxlan_fdb, hlist);
1228 vxlan_fdb_destroy(vxlan, f);
1229 }
1230 }
1231 spin_unlock_bh(&vxlan->hash_lock);
1232}
1233
1234/* Cleanup timer and forwarding table on shutdown */
1235static int vxlan_stop(struct net_device *dev)
1236{
1237 struct vxlan_dev *vxlan = netdev_priv(dev);
1238
Atzm Watanabec7995c42013-04-16 02:50:52 +00001239 if (IN_MULTICAST(ntohl(vxlan->default_dst.remote_ip)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001240 vxlan_leave_group(dev);
1241
1242 del_timer_sync(&vxlan->age_timer);
1243
1244 vxlan_flush(vxlan);
1245
1246 return 0;
1247}
1248
stephen hemmingerd3428942012-10-01 12:32:35 +00001249/* Stub, nothing needs to be done. */
1250static void vxlan_set_multicast_list(struct net_device *dev)
1251{
1252}
1253
1254static const struct net_device_ops vxlan_netdev_ops = {
1255 .ndo_init = vxlan_init,
1256 .ndo_open = vxlan_open,
1257 .ndo_stop = vxlan_stop,
1258 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00001259 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00001260 .ndo_set_rx_mode = vxlan_set_multicast_list,
1261 .ndo_change_mtu = eth_change_mtu,
1262 .ndo_validate_addr = eth_validate_addr,
1263 .ndo_set_mac_address = eth_mac_addr,
1264 .ndo_fdb_add = vxlan_fdb_add,
1265 .ndo_fdb_del = vxlan_fdb_delete,
1266 .ndo_fdb_dump = vxlan_fdb_dump,
1267};
1268
1269/* Info for udev, that this is a virtual tunnel endpoint */
1270static struct device_type vxlan_type = {
1271 .name = "vxlan",
1272};
1273
1274static void vxlan_free(struct net_device *dev)
1275{
Pravin B Shelare8171042013-03-25 14:49:46 +00001276 free_percpu(dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001277 free_netdev(dev);
1278}
1279
1280/* Initialize the device structure. */
1281static void vxlan_setup(struct net_device *dev)
1282{
1283 struct vxlan_dev *vxlan = netdev_priv(dev);
1284 unsigned h;
stephen hemminger05f47d62012-10-09 20:35:50 +00001285 int low, high;
stephen hemmingerd3428942012-10-01 12:32:35 +00001286
1287 eth_hw_addr_random(dev);
1288 ether_setup(dev);
stephen hemminger2840bf22012-10-09 20:35:51 +00001289 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00001290
1291 dev->netdev_ops = &vxlan_netdev_ops;
1292 dev->destructor = vxlan_free;
1293 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
1294
1295 dev->tx_queue_len = 0;
1296 dev->features |= NETIF_F_LLTX;
1297 dev->features |= NETIF_F_NETNS_LOCAL;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00001298 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001299 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001300 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001301
1302 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001303 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
stephen hemmingerd3428942012-10-01 12:32:35 +00001304 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
stephen hemminger6602d002012-12-31 12:00:21 +00001305 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00001306
1307 spin_lock_init(&vxlan->hash_lock);
1308
1309 init_timer_deferrable(&vxlan->age_timer);
1310 vxlan->age_timer.function = vxlan_cleanup;
1311 vxlan->age_timer.data = (unsigned long) vxlan;
1312
stephen hemminger05f47d62012-10-09 20:35:50 +00001313 inet_get_local_port_range(&low, &high);
1314 vxlan->port_min = low;
1315 vxlan->port_max = high;
1316
stephen hemmingerd3428942012-10-01 12:32:35 +00001317 vxlan->dev = dev;
1318
1319 for (h = 0; h < FDB_HASH_SIZE; ++h)
1320 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
1321}
1322
1323static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
1324 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
Atzm Watanabec7995c42013-04-16 02:50:52 +00001325 [IFLA_VXLAN_REMOTE] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00001326 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
1327 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
1328 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
1329 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
1330 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
1331 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
1332 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00001333 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00001334 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
1335 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
1336 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
1337 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00001338};
1339
1340static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
1341{
1342 if (tb[IFLA_ADDRESS]) {
1343 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1344 pr_debug("invalid link address (not ethernet)\n");
1345 return -EINVAL;
1346 }
1347
1348 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1349 pr_debug("invalid all zero ethernet address\n");
1350 return -EADDRNOTAVAIL;
1351 }
1352 }
1353
1354 if (!data)
1355 return -EINVAL;
1356
1357 if (data[IFLA_VXLAN_ID]) {
1358 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
1359 if (id >= VXLAN_VID_MASK)
1360 return -ERANGE;
1361 }
1362
stephen hemminger05f47d62012-10-09 20:35:50 +00001363 if (data[IFLA_VXLAN_PORT_RANGE]) {
1364 const struct ifla_vxlan_port_range *p
1365 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
1366
1367 if (ntohs(p->high) < ntohs(p->low)) {
1368 pr_debug("port range %u .. %u not valid\n",
1369 ntohs(p->low), ntohs(p->high));
1370 return -EINVAL;
1371 }
1372 }
1373
stephen hemmingerd3428942012-10-01 12:32:35 +00001374 return 0;
1375}
1376
Yan Burman1b13c972013-01-29 23:43:07 +00001377static void vxlan_get_drvinfo(struct net_device *netdev,
1378 struct ethtool_drvinfo *drvinfo)
1379{
1380 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
1381 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
1382}
1383
1384static const struct ethtool_ops vxlan_ethtool_ops = {
1385 .get_drvinfo = vxlan_get_drvinfo,
1386 .get_link = ethtool_op_get_link,
1387};
1388
stephen hemmingerd3428942012-10-01 12:32:35 +00001389static int vxlan_newlink(struct net *net, struct net_device *dev,
1390 struct nlattr *tb[], struct nlattr *data[])
1391{
1392 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00001393 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00001394 __u32 vni;
1395 int err;
1396
1397 if (!data[IFLA_VXLAN_ID])
1398 return -EINVAL;
1399
1400 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
1401 if (vxlan_find_vni(net, vni)) {
1402 pr_info("duplicate VNI %u\n", vni);
1403 return -EEXIST;
1404 }
Atzm Watanabec7995c42013-04-16 02:50:52 +00001405 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001406
Atzm Watanabec7995c42013-04-16 02:50:52 +00001407 if (data[IFLA_VXLAN_REMOTE])
1408 dst->remote_ip = nla_get_be32(data[IFLA_VXLAN_REMOTE]);
stephen hemmingerd3428942012-10-01 12:32:35 +00001409
1410 if (data[IFLA_VXLAN_LOCAL])
1411 vxlan->saddr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
1412
stephen hemminger34e02aa2012-10-09 20:35:53 +00001413 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00001414 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00001415 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00001416 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00001417
stephen hemminger34e02aa2012-10-09 20:35:53 +00001418 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00001419 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00001420 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00001421 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00001422
1423 if (!tb[IFLA_MTU])
1424 dev->mtu = lowerdev->mtu - VXLAN_HEADROOM;
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00001425
1426 /* update header length based on lower device */
1427 dev->hard_header_len = lowerdev->hard_header_len +
1428 VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00001429 }
1430
1431 if (data[IFLA_VXLAN_TOS])
1432 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
1433
Vincent Bernatafb97182012-10-30 10:27:16 +00001434 if (data[IFLA_VXLAN_TTL])
1435 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
1436
stephen hemmingerd3428942012-10-01 12:32:35 +00001437 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00001438 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00001439
1440 if (data[IFLA_VXLAN_AGEING])
1441 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
1442 else
1443 vxlan->age_interval = FDB_AGE_DEFAULT;
1444
David Stevense4f67ad2012-11-20 02:50:14 +00001445 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
1446 vxlan->flags |= VXLAN_F_PROXY;
1447
1448 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
1449 vxlan->flags |= VXLAN_F_RSC;
1450
1451 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
1452 vxlan->flags |= VXLAN_F_L2MISS;
1453
1454 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
1455 vxlan->flags |= VXLAN_F_L3MISS;
1456
stephen hemmingerd3428942012-10-01 12:32:35 +00001457 if (data[IFLA_VXLAN_LIMIT])
1458 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
1459
stephen hemminger05f47d62012-10-09 20:35:50 +00001460 if (data[IFLA_VXLAN_PORT_RANGE]) {
1461 const struct ifla_vxlan_port_range *p
1462 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
1463 vxlan->port_min = ntohs(p->low);
1464 vxlan->port_max = ntohs(p->high);
1465 }
1466
Yan Burman1b13c972013-01-29 23:43:07 +00001467 SET_ETHTOOL_OPS(dev, &vxlan_ethtool_ops);
1468
stephen hemmingerd3428942012-10-01 12:32:35 +00001469 err = register_netdevice(dev);
1470 if (!err)
Atzm Watanabec7995c42013-04-16 02:50:52 +00001471 hlist_add_head_rcu(&vxlan->hlist, vni_head(net, dst->remote_vni));
stephen hemmingerd3428942012-10-01 12:32:35 +00001472
1473 return err;
1474}
1475
1476static void vxlan_dellink(struct net_device *dev, struct list_head *head)
1477{
1478 struct vxlan_dev *vxlan = netdev_priv(dev);
1479
1480 hlist_del_rcu(&vxlan->hlist);
1481
1482 unregister_netdevice_queue(dev, head);
1483}
1484
1485static size_t vxlan_get_size(const struct net_device *dev)
1486{
1487
1488 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Atzm Watanabec7995c42013-04-16 02:50:52 +00001489 nla_total_size(sizeof(__be32)) +/* IFLA_VXLAN_REMOTE */
stephen hemmingerd3428942012-10-01 12:32:35 +00001490 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
1491 nla_total_size(sizeof(__be32))+ /* IFLA_VXLAN_LOCAL */
1492 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
1493 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
1494 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00001495 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
1496 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
1497 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
1498 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00001499 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
1500 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00001501 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
stephen hemmingerd3428942012-10-01 12:32:35 +00001502 0;
1503}
1504
1505static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
1506{
1507 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00001508 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00001509 struct ifla_vxlan_port_range ports = {
1510 .low = htons(vxlan->port_min),
1511 .high = htons(vxlan->port_max),
1512 };
stephen hemmingerd3428942012-10-01 12:32:35 +00001513
Atzm Watanabec7995c42013-04-16 02:50:52 +00001514 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00001515 goto nla_put_failure;
1516
Atzm Watanabec7995c42013-04-16 02:50:52 +00001517 if (dst->remote_ip && nla_put_be32(skb, IFLA_VXLAN_REMOTE, dst->remote_ip))
stephen hemmingerd3428942012-10-01 12:32:35 +00001518 goto nla_put_failure;
1519
Atzm Watanabec7995c42013-04-16 02:50:52 +00001520 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00001521 goto nla_put_failure;
1522
Stephen Hemminger7c41c422012-10-08 14:55:30 -07001523 if (vxlan->saddr && nla_put_be32(skb, IFLA_VXLAN_LOCAL, vxlan->saddr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001524 goto nla_put_failure;
1525
1526 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
1527 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00001528 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
1529 !!(vxlan->flags & VXLAN_F_LEARN)) ||
1530 nla_put_u8(skb, IFLA_VXLAN_PROXY,
1531 !!(vxlan->flags & VXLAN_F_PROXY)) ||
1532 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
1533 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
1534 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
1535 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
1536 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00001537 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
1538 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax))
1539 goto nla_put_failure;
1540
stephen hemminger05f47d62012-10-09 20:35:50 +00001541 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
1542 goto nla_put_failure;
1543
stephen hemmingerd3428942012-10-01 12:32:35 +00001544 return 0;
1545
1546nla_put_failure:
1547 return -EMSGSIZE;
1548}
1549
1550static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
1551 .kind = "vxlan",
1552 .maxtype = IFLA_VXLAN_MAX,
1553 .policy = vxlan_policy,
1554 .priv_size = sizeof(struct vxlan_dev),
1555 .setup = vxlan_setup,
1556 .validate = vxlan_validate,
1557 .newlink = vxlan_newlink,
1558 .dellink = vxlan_dellink,
1559 .get_size = vxlan_get_size,
1560 .fill_info = vxlan_fill_info,
1561};
1562
1563static __net_init int vxlan_init_net(struct net *net)
1564{
1565 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
1566 struct sock *sk;
1567 struct sockaddr_in vxlan_addr = {
1568 .sin_family = AF_INET,
1569 .sin_addr.s_addr = htonl(INADDR_ANY),
1570 };
1571 int rc;
1572 unsigned h;
1573
1574 /* Create UDP socket for encapsulation receive. */
1575 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &vn->sock);
1576 if (rc < 0) {
1577 pr_debug("UDP socket create failed\n");
1578 return rc;
1579 }
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001580 /* Put in proper namespace */
1581 sk = vn->sock->sk;
1582 sk_change_net(sk, net);
stephen hemmingerd3428942012-10-01 12:32:35 +00001583
1584 vxlan_addr.sin_port = htons(vxlan_port);
1585
1586 rc = kernel_bind(vn->sock, (struct sockaddr *) &vxlan_addr,
1587 sizeof(vxlan_addr));
1588 if (rc < 0) {
1589 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
1590 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001591 sk_release_kernel(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001592 vn->sock = NULL;
1593 return rc;
1594 }
1595
1596 /* Disable multicast loopback */
stephen hemmingerd3428942012-10-01 12:32:35 +00001597 inet_sk(sk)->mc_loop = 0;
1598
1599 /* Mark socket as an encapsulation socket. */
1600 udp_sk(sk)->encap_type = 1;
1601 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
1602 udp_encap_enable();
1603
1604 for (h = 0; h < VNI_HASH_SIZE; ++h)
1605 INIT_HLIST_HEAD(&vn->vni_list[h]);
1606
1607 return 0;
1608}
1609
1610static __net_exit void vxlan_exit_net(struct net *net)
1611{
1612 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00001613 struct vxlan_dev *vxlan;
1614 unsigned h;
1615
1616 rtnl_lock();
1617 for (h = 0; h < VNI_HASH_SIZE; ++h)
1618 hlist_for_each_entry(vxlan, &vn->vni_list[h], hlist)
1619 dev_close(vxlan->dev);
1620 rtnl_unlock();
stephen hemmingerd3428942012-10-01 12:32:35 +00001621
1622 if (vn->sock) {
stephen hemmingerbfe1b9b2012-10-01 18:49:21 +00001623 sk_release_kernel(vn->sock->sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001624 vn->sock = NULL;
1625 }
1626}
1627
1628static struct pernet_operations vxlan_net_ops = {
1629 .init = vxlan_init_net,
1630 .exit = vxlan_exit_net,
1631 .id = &vxlan_net_id,
1632 .size = sizeof(struct vxlan_net),
1633};
1634
1635static int __init vxlan_init_module(void)
1636{
1637 int rc;
1638
1639 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
1640
1641 rc = register_pernet_device(&vxlan_net_ops);
1642 if (rc)
1643 goto out1;
1644
1645 rc = rtnl_link_register(&vxlan_link_ops);
1646 if (rc)
1647 goto out2;
1648
1649 return 0;
1650
1651out2:
1652 unregister_pernet_device(&vxlan_net_ops);
1653out1:
1654 return rc;
1655}
1656module_init(vxlan_init_module);
1657
1658static void __exit vxlan_cleanup_module(void)
1659{
1660 rtnl_link_unregister(&vxlan_link_ops);
1661 unregister_pernet_device(&vxlan_net_ops);
David Stevens66817122013-03-15 04:35:51 +00001662 rcu_barrier();
stephen hemmingerd3428942012-10-01 12:32:35 +00001663}
1664module_exit(vxlan_cleanup_module);
1665
1666MODULE_LICENSE("GPL");
1667MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00001668MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
stephen hemmingerd3428942012-10-01 12:32:35 +00001669MODULE_ALIAS_RTNL_LINK("vxlan");