blob: b9401b53b6999efaf21e64e0efbfd998e2b7e595 [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>
Pravin B Shelar1eaa8172013-08-19 11:23:29 -070030#include <linux/if_vlan.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>
Pravin B Shelar012a5722013-08-19 11:23:07 -070045#include <net/vxlan.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000046
47#define VXLAN_VERSION "0.1"
48
stephen hemminger553675f2013-05-16 11:35:20 +000049#define PORT_HASH_BITS 8
50#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000051#define VNI_HASH_BITS 10
52#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
53#define FDB_HASH_BITS 8
54#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
55#define FDB_AGE_DEFAULT 300 /* 5 min */
56#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
57
58#define VXLAN_N_VID (1u << 24)
59#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Alexander Duyck52b702f2012-11-09 13:35:24 +000060/* IP header + UDP + VXLAN + Ethernet header */
61#define VXLAN_HEADROOM (20 + 8 + 8 + 14)
Pravin B Shelar7ce04752013-08-19 11:22:54 -070062#define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
stephen hemmingerd3428942012-10-01 12:32:35 +000063
64#define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */
65
66/* VXLAN protocol header */
67struct vxlanhdr {
68 __be32 vx_flags;
69 __be32 vx_vni;
70};
71
stephen hemminger23c578b2013-04-27 11:31:53 +000072/* UDP port for VXLAN traffic.
73 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070074 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000075 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070076static unsigned short vxlan_port __read_mostly = 8472;
77module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000078MODULE_PARM_DESC(udp_port, "Destination UDP port");
79
80static bool log_ecn_error = true;
81module_param(log_ecn_error, bool, 0644);
82MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
83
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -070084static int vxlan_net_id;
stephen hemminger553675f2013-05-16 11:35:20 +000085
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030086static const u8 all_zeros_mac[ETH_ALEN];
87
stephen hemminger553675f2013-05-16 11:35:20 +000088/* per-network namespace private data for this module */
89struct vxlan_net {
90 struct list_head vxlan_list;
91 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070092 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000093};
94
David Stevens66817122013-03-15 04:35:51 +000095struct vxlan_rdst {
David Stevens66817122013-03-15 04:35:51 +000096 __be32 remote_ip;
97 __be16 remote_port;
98 u32 remote_vni;
99 u32 remote_ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700100 struct list_head list;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300101 struct rcu_head rcu;
David Stevens66817122013-03-15 04:35:51 +0000102};
103
stephen hemmingerd3428942012-10-01 12:32:35 +0000104/* Forwarding table entry */
105struct vxlan_fdb {
106 struct hlist_node hlist; /* linked list of entries */
107 struct rcu_head rcu;
108 unsigned long updated; /* jiffies */
109 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700110 struct list_head remotes;
stephen hemmingerd3428942012-10-01 12:32:35 +0000111 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +0000112 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +0000113 u8 eth_addr[ETH_ALEN];
114};
115
stephen hemmingerd3428942012-10-01 12:32:35 +0000116/* Pseudo network device */
117struct vxlan_dev {
stephen hemminger553675f2013-05-16 11:35:20 +0000118 struct hlist_node hlist; /* vni hash table */
119 struct list_head next; /* vxlan's per namespace list */
120 struct vxlan_sock *vn_sock; /* listening socket */
stephen hemmingerd3428942012-10-01 12:32:35 +0000121 struct net_device *dev;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000122 struct vxlan_rdst default_dst; /* default destination */
stephen hemmingerd3428942012-10-01 12:32:35 +0000123 __be32 saddr; /* source address */
stephen hemminger823aa872013-04-27 11:31:57 +0000124 __be16 dst_port;
stephen hemminger05f47d62012-10-09 20:35:50 +0000125 __u16 port_min; /* source port range */
126 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000127 __u8 tos; /* TOS override */
128 __u8 ttl;
David Stevense4f67ad2012-11-20 02:50:14 +0000129 u32 flags; /* VXLAN_F_* below */
stephen hemmingerd3428942012-10-01 12:32:35 +0000130
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700131 struct work_struct sock_work;
stephen hemminger3fc2de22013-07-18 08:40:15 -0700132 struct work_struct igmp_join;
133 struct work_struct igmp_leave;
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700134
stephen hemmingerd3428942012-10-01 12:32:35 +0000135 unsigned long age_interval;
136 struct timer_list age_timer;
137 spinlock_t hash_lock;
138 unsigned int addrcnt;
139 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000140
141 struct hlist_head fdb_head[FDB_HASH_SIZE];
142};
143
David Stevense4f67ad2012-11-20 02:50:14 +0000144#define VXLAN_F_LEARN 0x01
145#define VXLAN_F_PROXY 0x02
146#define VXLAN_F_RSC 0x04
147#define VXLAN_F_L2MISS 0x08
148#define VXLAN_F_L3MISS 0x10
149
stephen hemmingerd3428942012-10-01 12:32:35 +0000150/* salt for hash table */
151static u32 vxlan_salt __read_mostly;
Stephen Hemminger758c57d2013-06-17 14:16:09 -0700152static struct workqueue_struct *vxlan_wq;
stephen hemmingerd3428942012-10-01 12:32:35 +0000153
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700154static void vxlan_sock_work(struct work_struct *work);
155
stephen hemminger553675f2013-05-16 11:35:20 +0000156/* Virtual Network hash table head */
157static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
158{
159 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
160}
161
162/* Socket hash table head */
163static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000164{
165 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
166
stephen hemminger553675f2013-05-16 11:35:20 +0000167 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
168}
169
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700170/* First remote destination for a forwarding entry.
171 * Guaranteed to be non-NULL because remotes are never deleted.
172 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700173static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700174{
stephen hemminger5ca54612013-08-04 17:17:39 -0700175 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
176}
177
178static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
179{
180 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700181}
182
stephen hemminger553675f2013-05-16 11:35:20 +0000183/* Find VXLAN socket based on network namespace and UDP port */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -0700184static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +0000185{
186 struct vxlan_sock *vs;
187
188 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
189 if (inet_sk(vs->sock->sk)->inet_sport == port)
190 return vs;
191 }
192 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000193}
194
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700195static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000196{
197 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000198
stephen hemminger553675f2013-05-16 11:35:20 +0000199 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000200 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000201 return vxlan;
202 }
203
204 return NULL;
205}
206
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700207/* Look up VNI in a per net namespace table */
208static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id, __be16 port)
209{
210 struct vxlan_sock *vs;
211
212 vs = vxlan_find_sock(net, port);
213 if (!vs)
214 return NULL;
215
216 return vxlan_vs_find_vni(vs, id);
217}
218
stephen hemmingerd3428942012-10-01 12:32:35 +0000219/* Fill in neighbour message in skbuff. */
220static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700221 const struct vxlan_fdb *fdb,
222 u32 portid, u32 seq, int type, unsigned int flags,
223 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000224{
225 unsigned long now = jiffies;
226 struct nda_cacheinfo ci;
227 struct nlmsghdr *nlh;
228 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000229 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000230
231 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
232 if (nlh == NULL)
233 return -EMSGSIZE;
234
235 ndm = nlmsg_data(nlh);
236 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000237
238 send_eth = send_ip = true;
239
240 if (type == RTM_GETNEIGH) {
241 ndm->ndm_family = AF_INET;
David Stevens66817122013-03-15 04:35:51 +0000242 send_ip = rdst->remote_ip != htonl(INADDR_ANY);
David Stevense4f67ad2012-11-20 02:50:14 +0000243 send_eth = !is_zero_ether_addr(fdb->eth_addr);
244 } else
245 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000246 ndm->ndm_state = fdb->state;
247 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000248 ndm->ndm_flags = fdb->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000249 ndm->ndm_type = NDA_DST;
250
David Stevense4f67ad2012-11-20 02:50:14 +0000251 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000252 goto nla_put_failure;
253
David Stevens66817122013-03-15 04:35:51 +0000254 if (send_ip && nla_put_be32(skb, NDA_DST, rdst->remote_ip))
255 goto nla_put_failure;
256
stephen hemminger823aa872013-04-27 11:31:57 +0000257 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000258 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
259 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000260 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700261 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000262 goto nla_put_failure;
263 if (rdst->remote_ifindex &&
264 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000265 goto nla_put_failure;
266
267 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
268 ci.ndm_confirmed = 0;
269 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
270 ci.ndm_refcnt = 0;
271
272 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
273 goto nla_put_failure;
274
275 return nlmsg_end(skb, nlh);
276
277nla_put_failure:
278 nlmsg_cancel(skb, nlh);
279 return -EMSGSIZE;
280}
281
282static inline size_t vxlan_nlmsg_size(void)
283{
284 return NLMSG_ALIGN(sizeof(struct ndmsg))
285 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
286 + nla_total_size(sizeof(__be32)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000287 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000288 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
289 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000290 + nla_total_size(sizeof(struct nda_cacheinfo));
291}
292
293static void vxlan_fdb_notify(struct vxlan_dev *vxlan,
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700294 struct vxlan_fdb *fdb, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000295{
296 struct net *net = dev_net(vxlan->dev);
297 struct sk_buff *skb;
298 int err = -ENOBUFS;
299
300 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
301 if (skb == NULL)
302 goto errout;
303
stephen hemminger5ca54612013-08-04 17:17:39 -0700304 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0,
305 first_remote_rtnl(fdb));
stephen hemmingerd3428942012-10-01 12:32:35 +0000306 if (err < 0) {
307 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
308 WARN_ON(err == -EMSGSIZE);
309 kfree_skb(skb);
310 goto errout;
311 }
312
313 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
314 return;
315errout:
316 if (err < 0)
317 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
318}
319
David Stevense4f67ad2012-11-20 02:50:14 +0000320static void vxlan_ip_miss(struct net_device *dev, __be32 ipa)
321{
322 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700323 struct vxlan_fdb f = {
324 .state = NUD_STALE,
325 };
326 struct vxlan_rdst remote = {
327 .remote_ip = ipa, /* goes to NDA_DST */
328 .remote_vni = VXLAN_N_VID,
329 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700330
331 INIT_LIST_HEAD(&f.remotes);
332 list_add_rcu(&remote.list, &f.remotes);
David Stevense4f67ad2012-11-20 02:50:14 +0000333
334 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
335}
336
337static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
338{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700339 struct vxlan_fdb f = {
340 .state = NUD_STALE,
341 };
David Stevense4f67ad2012-11-20 02:50:14 +0000342
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700343 INIT_LIST_HEAD(&f.remotes);
David Stevense4f67ad2012-11-20 02:50:14 +0000344 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
345
346 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
347}
348
stephen hemmingerd3428942012-10-01 12:32:35 +0000349/* Hash Ethernet address */
350static u32 eth_hash(const unsigned char *addr)
351{
352 u64 value = get_unaligned((u64 *)addr);
353
354 /* only want 6 bytes */
355#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000356 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000357#else
358 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000359#endif
360 return hash_64(value, FDB_HASH_BITS);
361}
362
363/* Hash chain to use given mac address */
364static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
365 const u8 *mac)
366{
367 return &vxlan->fdb_head[eth_hash(mac)];
368}
369
370/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000371static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000372 const u8 *mac)
373
374{
375 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
376 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000377
Sasha Levinb67bfe02013-02-27 17:06:00 -0800378 hlist_for_each_entry_rcu(f, head, hlist) {
stephen hemmingerd3428942012-10-01 12:32:35 +0000379 if (compare_ether_addr(mac, f->eth_addr) == 0)
380 return f;
381 }
382
383 return NULL;
384}
385
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000386static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
387 const u8 *mac)
388{
389 struct vxlan_fdb *f;
390
391 f = __vxlan_find_mac(vxlan, mac);
392 if (f)
393 f->used = jiffies;
394
395 return f;
396}
397
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300398/* caller should hold vxlan->hash_lock */
399static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
400 __be32 ip, __be16 port,
401 __u32 vni, __u32 ifindex)
402{
403 struct vxlan_rdst *rd;
404
405 list_for_each_entry(rd, &f->remotes, list) {
406 if (rd->remote_ip == ip &&
407 rd->remote_port == port &&
408 rd->remote_vni == vni &&
409 rd->remote_ifindex == ifindex)
410 return rd;
411 }
412
413 return NULL;
414}
415
Thomas Richter906dc182013-07-19 17:20:07 +0200416/* Replace destination of unicast mac */
417static int vxlan_fdb_replace(struct vxlan_fdb *f,
418 __be32 ip, __be16 port, __u32 vni, __u32 ifindex)
419{
420 struct vxlan_rdst *rd;
421
422 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
423 if (rd)
424 return 0;
425
426 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
427 if (!rd)
428 return 0;
429 rd->remote_ip = ip;
430 rd->remote_port = port;
431 rd->remote_vni = vni;
432 rd->remote_ifindex = ifindex;
433 return 1;
434}
435
David Stevens66817122013-03-15 04:35:51 +0000436/* Add/update destinations for multicast */
437static int vxlan_fdb_append(struct vxlan_fdb *f,
stephen hemminger73cf3312013-04-27 11:31:54 +0000438 __be32 ip, __be16 port, __u32 vni, __u32 ifindex)
David Stevens66817122013-03-15 04:35:51 +0000439{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700440 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000441
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300442 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
443 if (rd)
444 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700445
David Stevens66817122013-03-15 04:35:51 +0000446 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
447 if (rd == NULL)
448 return -ENOBUFS;
449 rd->remote_ip = ip;
450 rd->remote_port = port;
451 rd->remote_vni = vni;
452 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700453
454 list_add_tail_rcu(&rd->list, &f->remotes);
455
David Stevens66817122013-03-15 04:35:51 +0000456 return 1;
457}
458
stephen hemmingerd3428942012-10-01 12:32:35 +0000459/* Add new entry to forwarding table -- assumes lock held */
460static int vxlan_fdb_create(struct vxlan_dev *vxlan,
461 const u8 *mac, __be32 ip,
David Stevens66817122013-03-15 04:35:51 +0000462 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000463 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000464 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000465{
466 struct vxlan_fdb *f;
467 int notify = 0;
468
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000469 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000470 if (f) {
471 if (flags & NLM_F_EXCL) {
472 netdev_dbg(vxlan->dev,
473 "lost race to create %pM\n", mac);
474 return -EEXIST;
475 }
476 if (f->state != state) {
477 f->state = state;
478 f->updated = jiffies;
479 notify = 1;
480 }
David Stevensae884082013-04-19 00:36:26 +0000481 if (f->flags != ndm_flags) {
482 f->flags = ndm_flags;
483 f->updated = jiffies;
484 notify = 1;
485 }
Thomas Richter906dc182013-07-19 17:20:07 +0200486 if ((flags & NLM_F_REPLACE)) {
487 /* Only change unicasts */
488 if (!(is_multicast_ether_addr(f->eth_addr) ||
489 is_zero_ether_addr(f->eth_addr))) {
490 int rc = vxlan_fdb_replace(f, ip, port, vni,
491 ifindex);
492
493 if (rc < 0)
494 return rc;
495 notify |= rc;
496 } else
497 return -EOPNOTSUPP;
498 }
David Stevens66817122013-03-15 04:35:51 +0000499 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300500 (is_multicast_ether_addr(f->eth_addr) ||
501 is_zero_ether_addr(f->eth_addr))) {
David Stevens66817122013-03-15 04:35:51 +0000502 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex);
503
504 if (rc < 0)
505 return rc;
506 notify |= rc;
507 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000508 } else {
509 if (!(flags & NLM_F_CREATE))
510 return -ENOENT;
511
512 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
513 return -ENOSPC;
514
Thomas Richter906dc182013-07-19 17:20:07 +0200515 /* Disallow replace to add a multicast entry */
516 if ((flags & NLM_F_REPLACE) &&
517 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
518 return -EOPNOTSUPP;
519
stephen hemmingerd3428942012-10-01 12:32:35 +0000520 netdev_dbg(vxlan->dev, "add %pM -> %pI4\n", mac, &ip);
521 f = kmalloc(sizeof(*f), GFP_ATOMIC);
522 if (!f)
523 return -ENOMEM;
524
525 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000526 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000527 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000528 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700529 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000530 memcpy(f->eth_addr, mac, ETH_ALEN);
531
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700532 vxlan_fdb_append(f, ip, port, vni, ifindex);
533
stephen hemmingerd3428942012-10-01 12:32:35 +0000534 ++vxlan->addrcnt;
535 hlist_add_head_rcu(&f->hlist,
536 vxlan_fdb_head(vxlan, mac));
537 }
538
539 if (notify)
540 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
541
542 return 0;
543}
544
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300545static void vxlan_fdb_free_rdst(struct rcu_head *head)
546{
547 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
548 kfree(rd);
549}
550
Wei Yongjun6706c822013-04-11 19:00:35 +0000551static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000552{
553 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700554 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000555
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700556 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000557 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000558 kfree(f);
559}
560
stephen hemmingerd3428942012-10-01 12:32:35 +0000561static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
562{
563 netdev_dbg(vxlan->dev,
564 "delete %pM\n", f->eth_addr);
565
566 --vxlan->addrcnt;
567 vxlan_fdb_notify(vxlan, f, RTM_DELNEIGH);
568
569 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000570 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000571}
572
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300573static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
574 __be32 *ip, __be16 *port, u32 *vni, u32 *ifindex)
575{
576 struct net *net = dev_net(vxlan->dev);
577
578 if (tb[NDA_DST]) {
579 if (nla_len(tb[NDA_DST]) != sizeof(__be32))
580 return -EAFNOSUPPORT;
581
582 *ip = nla_get_be32(tb[NDA_DST]);
583 } else {
584 *ip = htonl(INADDR_ANY);
585 }
586
587 if (tb[NDA_PORT]) {
588 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
589 return -EINVAL;
590 *port = nla_get_be16(tb[NDA_PORT]);
591 } else {
592 *port = vxlan->dst_port;
593 }
594
595 if (tb[NDA_VNI]) {
596 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
597 return -EINVAL;
598 *vni = nla_get_u32(tb[NDA_VNI]);
599 } else {
600 *vni = vxlan->default_dst.remote_vni;
601 }
602
603 if (tb[NDA_IFINDEX]) {
604 struct net_device *tdev;
605
606 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
607 return -EINVAL;
608 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
609 tdev = dev_get_by_index(net, *ifindex);
610 if (!tdev)
611 return -EADDRNOTAVAIL;
612 dev_put(tdev);
613 } else {
614 *ifindex = 0;
615 }
616
617 return 0;
618}
619
stephen hemmingerd3428942012-10-01 12:32:35 +0000620/* Add static entry (via netlink) */
621static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
622 struct net_device *dev,
623 const unsigned char *addr, u16 flags)
624{
625 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300626 /* struct net *net = dev_net(vxlan->dev); */
stephen hemmingerd3428942012-10-01 12:32:35 +0000627 __be32 ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000628 __be16 port;
629 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000630 int err;
631
632 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
633 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
634 ndm->ndm_state);
635 return -EINVAL;
636 }
637
638 if (tb[NDA_DST] == NULL)
639 return -EINVAL;
640
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300641 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
642 if (err)
643 return err;
David Stevens66817122013-03-15 04:35:51 +0000644
stephen hemmingerd3428942012-10-01 12:32:35 +0000645 spin_lock_bh(&vxlan->hash_lock);
stephen hemminger73cf3312013-04-27 11:31:54 +0000646 err = vxlan_fdb_create(vxlan, addr, ip, ndm->ndm_state, flags,
647 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000648 spin_unlock_bh(&vxlan->hash_lock);
649
650 return err;
651}
652
653/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000654static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
655 struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000656 const unsigned char *addr)
657{
658 struct vxlan_dev *vxlan = netdev_priv(dev);
659 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300660 struct vxlan_rdst *rd = NULL;
661 __be32 ip;
662 __be16 port;
663 u32 vni, ifindex;
664 int err;
665
666 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
667 if (err)
668 return err;
669
670 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000671
672 spin_lock_bh(&vxlan->hash_lock);
673 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300674 if (!f)
675 goto out;
676
677 if (ip != htonl(INADDR_ANY)) {
678 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
679 if (!rd)
680 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000681 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300682
683 err = 0;
684
685 /* remove a destination if it's not the only one on the list,
686 * otherwise destroy the fdb entry
687 */
688 if (rd && !list_is_singular(&f->remotes)) {
689 list_del_rcu(&rd->list);
690 call_rcu(&rd->rcu, vxlan_fdb_free_rdst);
691 goto out;
692 }
693
694 vxlan_fdb_destroy(vxlan, f);
695
696out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000697 spin_unlock_bh(&vxlan->hash_lock);
698
699 return err;
700}
701
702/* Dump forwarding table */
703static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
704 struct net_device *dev, int idx)
705{
706 struct vxlan_dev *vxlan = netdev_priv(dev);
707 unsigned int h;
708
709 for (h = 0; h < FDB_HASH_SIZE; ++h) {
710 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000711 int err;
712
Sasha Levinb67bfe02013-02-27 17:06:00 -0800713 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000714 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000715
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700716 if (idx < cb->args[0])
717 goto skip;
718
719 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000720 err = vxlan_fdb_info(skb, vxlan, f,
721 NETLINK_CB(cb->skb).portid,
722 cb->nlh->nlmsg_seq,
723 RTM_NEWNEIGH,
724 NLM_F_MULTI, rd);
725 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700726 goto out;
David Stevens66817122013-03-15 04:35:51 +0000727 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700728skip:
729 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000730 }
731 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700732out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000733 return idx;
734}
735
736/* Watch incoming packets to learn mapping between Ethernet address
737 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700738 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000739 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700740static bool vxlan_snoop(struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000741 __be32 src_ip, const u8 *src_mac)
742{
743 struct vxlan_dev *vxlan = netdev_priv(dev);
744 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000745
746 f = vxlan_find_mac(vxlan, src_mac);
747 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700748 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700749
750 if (likely(rdst->remote_ip == src_ip))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700751 return false;
752
753 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700754 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700755 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000756
757 if (net_ratelimit())
758 netdev_info(dev,
759 "%pM migrated from %pI4 to %pI4\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700760 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000761
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700762 rdst->remote_ip = src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000763 f->updated = jiffies;
Stephen Hemminger8385f502013-06-17 14:16:10 -0700764 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000765 } else {
766 /* learned new entry */
767 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700768
769 /* close off race between vxlan_flush and incoming packets */
770 if (netif_running(dev))
771 vxlan_fdb_create(vxlan, src_mac, src_ip,
772 NUD_REACHABLE,
773 NLM_F_EXCL|NLM_F_CREATE,
774 vxlan->dst_port,
775 vxlan->default_dst.remote_vni,
776 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000777 spin_unlock(&vxlan->hash_lock);
778 }
stephen hemminger26a41ae62013-06-17 12:09:58 -0700779
780 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +0000781}
782
stephen hemmingerd3428942012-10-01 12:32:35 +0000783/* See if multicast group is already in use by other ID */
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700784static bool vxlan_group_used(struct vxlan_net *vn, __be32 remote_ip)
stephen hemmingerd3428942012-10-01 12:32:35 +0000785{
stephen hemminger553675f2013-05-16 11:35:20 +0000786 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000787
stephen hemminger553675f2013-05-16 11:35:20 +0000788 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
stephen hemminger553675f2013-05-16 11:35:20 +0000789 if (!netif_running(vxlan->dev))
790 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +0000791
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700792 if (vxlan->default_dst.remote_ip == remote_ip)
stephen hemminger553675f2013-05-16 11:35:20 +0000793 return true;
794 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000795
796 return false;
797}
798
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700799static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +0000800{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700801 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +0000802}
803
Pravin B Shelar012a5722013-08-19 11:23:07 -0700804void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +0000805{
Pravin B Shelar012a5722013-08-19 11:23:07 -0700806 struct vxlan_net *vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
807
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700808 if (!atomic_dec_and_test(&vs->refcnt))
809 return;
810
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700811 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700812 hlist_del_rcu(&vs->hlist);
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700813 spin_unlock(&vn->sock_lock);
814
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700815 queue_work(vxlan_wq, &vs->del_work);
816}
Pravin B Shelar012a5722013-08-19 11:23:07 -0700817EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700818
stephen hemminger3fc2de22013-07-18 08:40:15 -0700819/* Callback to update multicast group membership when first VNI on
820 * multicast asddress is brought up
821 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700822 */
stephen hemminger3fc2de22013-07-18 08:40:15 -0700823static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700824{
stephen hemminger3fc2de22013-07-18 08:40:15 -0700825 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700826 struct vxlan_sock *vs = vxlan->vn_sock;
827 struct sock *sk = vs->sock->sk;
stephen hemmingerd3428942012-10-01 12:32:35 +0000828 struct ip_mreqn mreq = {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000829 .imr_multiaddr.s_addr = vxlan->default_dst.remote_ip,
830 .imr_ifindex = vxlan->default_dst.remote_ifindex,
stephen hemmingerd3428942012-10-01 12:32:35 +0000831 };
832
stephen hemmingerd3428942012-10-01 12:32:35 +0000833 lock_sock(sk);
stephen hemminger3fc2de22013-07-18 08:40:15 -0700834 ip_mc_join_group(sk, &mreq);
835 release_sock(sk);
836
Pravin B Shelar012a5722013-08-19 11:23:07 -0700837 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -0700838 dev_put(vxlan->dev);
839}
840
841/* Inverse of vxlan_igmp_join when last VNI is brought down */
842static void vxlan_igmp_leave(struct work_struct *work)
843{
844 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -0700845 struct vxlan_sock *vs = vxlan->vn_sock;
846 struct sock *sk = vs->sock->sk;
847 struct ip_mreqn mreq = {
848 .imr_multiaddr.s_addr = vxlan->default_dst.remote_ip,
849 .imr_ifindex = vxlan->default_dst.remote_ifindex,
850 };
851
852 lock_sock(sk);
853 ip_mc_leave_group(sk, &mreq);
stephen hemmingerd3428942012-10-01 12:32:35 +0000854 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +0000855
Pravin B Shelar012a5722013-08-19 11:23:07 -0700856 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700857 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +0000858}
859
860/* Callback from net/ipv4/udp.c to receive packets */
861static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
862{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700863 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +0000864 struct vxlanhdr *vxh;
stephen hemminger553675f2013-05-16 11:35:20 +0000865 __be16 port;
stephen hemmingerd3428942012-10-01 12:32:35 +0000866
stephen hemmingerd3428942012-10-01 12:32:35 +0000867 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -0700868 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +0000869 goto error;
870
Pravin B Shelar7ce04752013-08-19 11:22:54 -0700871 /* Return packets with reserved bits set */
872 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +0000873 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
874 (vxh->vx_vni & htonl(0xff))) {
875 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
876 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
877 goto error;
878 }
879
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700880 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +0000881 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +0000882
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700883 port = inet_sk(sk)->inet_sport;
884
885 vs = vxlan_find_sock(sock_net(sk), port);
886 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +0000887 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700888
889 vs->rcv(vs, skb, vxh->vx_vni);
890 return 0;
891
892drop:
893 /* Consume bad packet */
894 kfree_skb(skb);
895 return 0;
896
897error:
898 /* Return non vxlan pkt */
899 return 1;
900}
901
902static void vxlan_rcv(struct vxlan_sock *vs,
903 struct sk_buff *skb, __be32 vx_vni)
904{
905 struct iphdr *oip;
906 struct vxlan_dev *vxlan;
907 struct pcpu_tstats *stats;
908 __u32 vni;
909 int err;
910
911 vni = ntohl(vx_vni) >> 8;
912 /* Is this VNI defined? */
913 vxlan = vxlan_vs_find_vni(vs, vni);
914 if (!vxlan)
915 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +0000916
David Stevense4f67ad2012-11-20 02:50:14 +0000917 skb_reset_mac_header(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +0000918 skb->protocol = eth_type_trans(skb, vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +0000919
920 /* Ignore packet loops (and multicast echo) */
921 if (compare_ether_addr(eth_hdr(skb)->h_source,
922 vxlan->dev->dev_addr) == 0)
923 goto drop;
924
Pravin B Shelar7ce04752013-08-19 11:22:54 -0700925 /* Re-examine inner Ethernet packet */
926 oip = ip_hdr(skb);
stephen hemminger26a41ae62013-06-17 12:09:58 -0700927 if ((vxlan->flags & VXLAN_F_LEARN) &&
928 vxlan_snoop(skb->dev, oip->saddr, eth_hdr(skb)->h_source))
929 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +0000930
stephen hemmingerd3428942012-10-01 12:32:35 +0000931 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +0000932
933 /* If the NIC driver gave us an encapsulated packet with
934 * CHECKSUM_UNNECESSARY and Rx checksum feature is enabled,
935 * leave the CHECKSUM_UNNECESSARY, the device checksummed it
936 * for us. Otherwise force the upper layers to verify it.
937 */
938 if (skb->ip_summed != CHECKSUM_UNNECESSARY || !skb->encapsulation ||
939 !(vxlan->dev->features & NETIF_F_RXCSUM))
940 skb->ip_summed = CHECKSUM_NONE;
941
942 skb->encapsulation = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000943
944 err = IP_ECN_decapsulate(oip, skb);
945 if (unlikely(err)) {
946 if (log_ecn_error)
947 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
948 &oip->saddr, oip->tos);
949 if (err > 1) {
950 ++vxlan->dev->stats.rx_frame_errors;
951 ++vxlan->dev->stats.rx_errors;
952 goto drop;
953 }
954 }
955
Pravin B Shelare8171042013-03-25 14:49:46 +0000956 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +0000957 u64_stats_update_begin(&stats->syncp);
958 stats->rx_packets++;
959 stats->rx_bytes += skb->len;
960 u64_stats_update_end(&stats->syncp);
961
962 netif_rx(skb);
963
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700964 return;
stephen hemmingerd3428942012-10-01 12:32:35 +0000965drop:
966 /* Consume bad packet */
967 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +0000968}
969
David Stevense4f67ad2012-11-20 02:50:14 +0000970static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
971{
972 struct vxlan_dev *vxlan = netdev_priv(dev);
973 struct arphdr *parp;
974 u8 *arpptr, *sha;
975 __be32 sip, tip;
976 struct neighbour *n;
977
978 if (dev->flags & IFF_NOARP)
979 goto out;
980
981 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
982 dev->stats.tx_dropped++;
983 goto out;
984 }
985 parp = arp_hdr(skb);
986
987 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
988 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
989 parp->ar_pro != htons(ETH_P_IP) ||
990 parp->ar_op != htons(ARPOP_REQUEST) ||
991 parp->ar_hln != dev->addr_len ||
992 parp->ar_pln != 4)
993 goto out;
994 arpptr = (u8 *)parp + sizeof(struct arphdr);
995 sha = arpptr;
996 arpptr += dev->addr_len; /* sha */
997 memcpy(&sip, arpptr, sizeof(sip));
998 arpptr += sizeof(sip);
999 arpptr += dev->addr_len; /* tha */
1000 memcpy(&tip, arpptr, sizeof(tip));
1001
1002 if (ipv4_is_loopback(tip) ||
1003 ipv4_is_multicast(tip))
1004 goto out;
1005
1006 n = neigh_lookup(&arp_tbl, &tip, dev);
1007
1008 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001009 struct vxlan_fdb *f;
1010 struct sk_buff *reply;
1011
1012 if (!(n->nud_state & NUD_CONNECTED)) {
1013 neigh_release(n);
1014 goto out;
1015 }
1016
1017 f = vxlan_find_mac(vxlan, n->ha);
stephen hemminger5ca54612013-08-04 17:17:39 -07001018 if (f && first_remote_rcu(f)->remote_ip == htonl(INADDR_ANY)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001019 /* bridge-local neighbor */
1020 neigh_release(n);
1021 goto out;
1022 }
1023
1024 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1025 n->ha, sha);
1026
1027 neigh_release(n);
1028
1029 skb_reset_mac_header(reply);
1030 __skb_pull(reply, skb_network_offset(reply));
1031 reply->ip_summed = CHECKSUM_UNNECESSARY;
1032 reply->pkt_type = PACKET_HOST;
1033
1034 if (netif_rx_ni(reply) == NET_RX_DROP)
1035 dev->stats.rx_dropped++;
1036 } else if (vxlan->flags & VXLAN_F_L3MISS)
1037 vxlan_ip_miss(dev, tip);
1038out:
1039 consume_skb(skb);
1040 return NETDEV_TX_OK;
1041}
1042
1043static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1044{
1045 struct vxlan_dev *vxlan = netdev_priv(dev);
1046 struct neighbour *n;
1047 struct iphdr *pip;
1048
1049 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1050 return false;
1051
1052 n = NULL;
1053 switch (ntohs(eth_hdr(skb)->h_proto)) {
1054 case ETH_P_IP:
1055 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1056 return false;
1057 pip = ip_hdr(skb);
1058 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
1059 break;
1060 default:
1061 return false;
1062 }
1063
1064 if (n) {
1065 bool diff;
1066
1067 diff = compare_ether_addr(eth_hdr(skb)->h_dest, n->ha) != 0;
1068 if (diff) {
1069 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1070 dev->addr_len);
1071 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1072 }
1073 neigh_release(n);
1074 return diff;
1075 } else if (vxlan->flags & VXLAN_F_L3MISS)
1076 vxlan_ip_miss(dev, pip->daddr);
1077 return false;
1078}
1079
stephen hemminger553675f2013-05-16 11:35:20 +00001080static void vxlan_sock_put(struct sk_buff *skb)
stephen hemminger1cad8712012-10-09 20:35:49 +00001081{
1082 sock_put(skb->sk);
1083}
1084
1085/* On transmit, associate with the tunnel socket */
Pravin B Shelar49560532013-08-19 11:23:17 -07001086static void vxlan_set_owner(struct sock *sk, struct sk_buff *skb)
stephen hemminger1cad8712012-10-09 20:35:49 +00001087{
stephen hemminger1cad8712012-10-09 20:35:49 +00001088 skb_orphan(skb);
1089 sock_hold(sk);
1090 skb->sk = sk;
stephen hemminger553675f2013-05-16 11:35:20 +00001091 skb->destructor = vxlan_sock_put;
stephen hemminger1cad8712012-10-09 20:35:49 +00001092}
1093
stephen hemminger05f47d62012-10-09 20:35:50 +00001094/* Compute source port for outgoing packet
1095 * first choice to use L4 flow hash since it will spread
1096 * better and maybe available from hardware
1097 * secondary choice is to use jhash on the Ethernet header
1098 */
Pravin B Shelar49560532013-08-19 11:23:17 -07001099__be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb)
stephen hemminger05f47d62012-10-09 20:35:50 +00001100{
Pravin B Shelar49560532013-08-19 11:23:17 -07001101 unsigned int range = (port_max - port_min) + 1;
stephen hemminger05f47d62012-10-09 20:35:50 +00001102 u32 hash;
1103
1104 hash = skb_get_rxhash(skb);
1105 if (!hash)
1106 hash = jhash(skb->data, 2 * ETH_ALEN,
1107 (__force u32) skb->protocol);
1108
Pravin B Shelar49560532013-08-19 11:23:17 -07001109 return htons((((u64) hash * range) >> 32) + port_min);
stephen hemminger05f47d62012-10-09 20:35:50 +00001110}
Pravin B Shelar49560532013-08-19 11:23:17 -07001111EXPORT_SYMBOL_GPL(vxlan_src_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001112
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001113static int handle_offloads(struct sk_buff *skb)
1114{
1115 if (skb_is_gso(skb)) {
1116 int err = skb_unclone(skb, GFP_ATOMIC);
1117 if (unlikely(err))
1118 return err;
1119
Dmitry Kravkovf6ace502013-04-28 08:16:01 +00001120 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001121 } else if (skb->ip_summed != CHECKSUM_PARTIAL)
1122 skb->ip_summed = CHECKSUM_NONE;
1123
1124 return 0;
1125}
1126
Pravin B Shelar49560532013-08-19 11:23:17 -07001127int vxlan_xmit_skb(struct net *net, struct vxlan_sock *vs,
1128 struct rtable *rt, struct sk_buff *skb,
1129 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
1130 __be16 src_port, __be16 dst_port, __be32 vni)
1131{
1132 struct vxlanhdr *vxh;
1133 struct udphdr *uh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001134 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001135 int err;
1136
1137 if (!skb->encapsulation) {
1138 skb_reset_inner_headers(skb);
1139 skb->encapsulation = 1;
1140 }
1141
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001142 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001143 + VXLAN_HLEN + sizeof(struct iphdr)
1144 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001145
1146 /* Need space for new headers (invalidates iph ptr) */
1147 err = skb_cow_head(skb, min_headroom);
1148 if (unlikely(err))
1149 return err;
1150
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001151 if (vlan_tx_tag_present(skb)) {
1152 if (WARN_ON(!__vlan_put_tag(skb,
1153 skb->vlan_proto,
1154 vlan_tx_tag_get(skb))))
1155 return -ENOMEM;
1156
1157 skb->vlan_tci = 0;
1158 }
1159
Pravin B Shelar49560532013-08-19 11:23:17 -07001160 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1161 vxh->vx_flags = htonl(VXLAN_FLAGS);
1162 vxh->vx_vni = vni;
1163
1164 __skb_push(skb, sizeof(*uh));
1165 skb_reset_transport_header(skb);
1166 uh = udp_hdr(skb);
1167
1168 uh->dest = dst_port;
1169 uh->source = src_port;
1170
1171 uh->len = htons(skb->len);
1172 uh->check = 0;
1173
1174 vxlan_set_owner(vs->sock->sk, skb);
1175
1176 err = handle_offloads(skb);
1177 if (err)
1178 return err;
1179
1180 return iptunnel_xmit(net, rt, skb, src, dst,
1181 IPPROTO_UDP, tos, ttl, df);
1182}
1183EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1184
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001185/* Bypass encapsulation if the destination is local */
1186static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1187 struct vxlan_dev *dst_vxlan)
1188{
1189 struct pcpu_tstats *tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1190 struct pcpu_tstats *rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
1191
1192 skb->pkt_type = PACKET_HOST;
1193 skb->encapsulation = 0;
1194 skb->dev = dst_vxlan->dev;
1195 __skb_pull(skb, skb_network_offset(skb));
1196
1197 if (dst_vxlan->flags & VXLAN_F_LEARN)
Mike Rapoport9d9f1632013-04-13 23:21:39 +00001198 vxlan_snoop(skb->dev, htonl(INADDR_LOOPBACK),
1199 eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001200
1201 u64_stats_update_begin(&tx_stats->syncp);
1202 tx_stats->tx_packets++;
1203 tx_stats->tx_bytes += skb->len;
1204 u64_stats_update_end(&tx_stats->syncp);
1205
1206 if (netif_rx(skb) == NET_RX_SUCCESS) {
1207 u64_stats_update_begin(&rx_stats->syncp);
1208 rx_stats->rx_packets++;
1209 rx_stats->rx_bytes += skb->len;
1210 u64_stats_update_end(&rx_stats->syncp);
1211 } else {
1212 skb->dev->stats.rx_dropped++;
1213 }
1214}
1215
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001216static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1217 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001218{
1219 struct vxlan_dev *vxlan = netdev_priv(dev);
1220 struct rtable *rt;
stephen hemmingerd3428942012-10-01 12:32:35 +00001221 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001222 struct flowi4 fl4;
stephen hemmingerd3428942012-10-01 12:32:35 +00001223 __be32 dst;
stephen hemminger7d836a72013-04-27 11:31:56 +00001224 __be16 src_port, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001225 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001226 __be16 df = 0;
1227 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001228 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001229
stephen hemminger823aa872013-04-27 11:31:57 +00001230 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001231 vni = rdst->remote_vni;
1232 dst = rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001233
1234 if (!dst) {
1235 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001236 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001237 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001238 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001239 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001240 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001241 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001242
stephen hemmingerd3428942012-10-01 12:32:35 +00001243 old_iph = ip_hdr(skb);
1244
stephen hemmingerd3428942012-10-01 12:32:35 +00001245 ttl = vxlan->ttl;
1246 if (!ttl && IN_MULTICAST(ntohl(dst)))
1247 ttl = 1;
1248
1249 tos = vxlan->tos;
1250 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001251 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001252
Pravin B Shelar49560532013-08-19 11:23:17 -07001253 src_port = vxlan_src_port(vxlan->port_min, vxlan->port_max, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001254
stephen hemmingerca78f182012-10-09 20:35:48 +00001255 memset(&fl4, 0, sizeof(fl4));
David Stevens66817122013-03-15 04:35:51 +00001256 fl4.flowi4_oif = rdst->remote_ifindex;
stephen hemmingerca78f182012-10-09 20:35:48 +00001257 fl4.flowi4_tos = RT_TOS(tos);
1258 fl4.daddr = dst;
1259 fl4.saddr = vxlan->saddr;
1260
1261 rt = ip_route_output_key(dev_net(dev), &fl4);
stephen hemmingerd3428942012-10-01 12:32:35 +00001262 if (IS_ERR(rt)) {
1263 netdev_dbg(dev, "no route to %pI4\n", &dst);
1264 dev->stats.tx_carrier_errors++;
1265 goto tx_error;
1266 }
1267
1268 if (rt->dst.dev == dev) {
1269 netdev_dbg(dev, "circular route to %pI4\n", &dst);
stephen hemmingerd3428942012-10-01 12:32:35 +00001270 dev->stats.collisions++;
Pravin B Shelar49560532013-08-19 11:23:17 -07001271 goto rt_tx_error;
stephen hemmingerd3428942012-10-01 12:32:35 +00001272 }
1273
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001274 /* Bypass encapsulation if the destination is local */
Mike Rapoportab09a6d2013-04-13 23:21:51 +00001275 if (rt->rt_flags & RTCF_LOCAL &&
1276 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001277 struct vxlan_dev *dst_vxlan;
1278
1279 ip_rt_put(rt);
stephen hemminger553675f2013-05-16 11:35:20 +00001280 dst_vxlan = vxlan_find_vni(dev_net(dev), vni, dst_port);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001281 if (!dst_vxlan)
1282 goto tx_error;
1283 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001284 return;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001285 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001286
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001287 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1288 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
1289
Pravin B Shelar49560532013-08-19 11:23:17 -07001290 err = vxlan_xmit_skb(dev_net(dev), vxlan->vn_sock, rt, skb,
1291 fl4.saddr, dst, tos, ttl, df,
1292 src_port, dst_port, htonl(vni << 8));
1293
1294 if (err < 0)
1295 goto rt_tx_error;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001296 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1297
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001298 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001299
1300drop:
1301 dev->stats.tx_dropped++;
1302 goto tx_free;
1303
Pravin B Shelar49560532013-08-19 11:23:17 -07001304rt_tx_error:
1305 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001306tx_error:
1307 dev->stats.tx_errors++;
1308tx_free:
1309 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001310}
1311
David Stevens66817122013-03-15 04:35:51 +00001312/* Transmit local packets over Vxlan
1313 *
1314 * Outer IP header inherits ECN and DF from inner header.
1315 * Outer UDP destination is the VXLAN assigned port.
1316 * source port is based on hash of flow
1317 */
1318static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1319{
1320 struct vxlan_dev *vxlan = netdev_priv(dev);
1321 struct ethhdr *eth;
1322 bool did_rsc = false;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001323 struct vxlan_rdst *rdst;
David Stevens66817122013-03-15 04:35:51 +00001324 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00001325
1326 skb_reset_mac_header(skb);
1327 eth = eth_hdr(skb);
1328
1329 if ((vxlan->flags & VXLAN_F_PROXY) && ntohs(eth->h_proto) == ETH_P_ARP)
1330 return arp_reduce(dev, skb);
David Stevens66817122013-03-15 04:35:51 +00001331
1332 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00001333 did_rsc = false;
1334
1335 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
1336 ntohs(eth->h_proto) == ETH_P_IP) {
1337 did_rsc = route_shortcircuit(dev, skb);
1338 if (did_rsc)
1339 f = vxlan_find_mac(vxlan, eth->h_dest);
1340 }
1341
David Stevens66817122013-03-15 04:35:51 +00001342 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001343 f = vxlan_find_mac(vxlan, all_zeros_mac);
1344 if (f == NULL) {
1345 if ((vxlan->flags & VXLAN_F_L2MISS) &&
1346 !is_multicast_ether_addr(eth->h_dest))
1347 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00001348
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001349 dev->stats.tx_dropped++;
1350 dev_kfree_skb(skb);
1351 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001352 }
David Stevens66817122013-03-15 04:35:51 +00001353 }
1354
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001355 list_for_each_entry_rcu(rdst, &f->remotes, list) {
1356 struct sk_buff *skb1;
1357
1358 skb1 = skb_clone(skb, GFP_ATOMIC);
1359 if (skb1)
1360 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1361 }
1362
1363 dev_kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001364 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00001365}
1366
stephen hemmingerd3428942012-10-01 12:32:35 +00001367/* Walk the forwarding table and purge stale entries */
1368static void vxlan_cleanup(unsigned long arg)
1369{
1370 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
1371 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
1372 unsigned int h;
1373
1374 if (!netif_running(vxlan->dev))
1375 return;
1376
1377 spin_lock_bh(&vxlan->hash_lock);
1378 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1379 struct hlist_node *p, *n;
1380 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1381 struct vxlan_fdb *f
1382 = container_of(p, struct vxlan_fdb, hlist);
1383 unsigned long timeout;
1384
stephen hemminger3c172862012-10-26 06:24:34 +00001385 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00001386 continue;
1387
1388 timeout = f->used + vxlan->age_interval * HZ;
1389 if (time_before_eq(timeout, jiffies)) {
1390 netdev_dbg(vxlan->dev,
1391 "garbage collect %pM\n",
1392 f->eth_addr);
1393 f->state = NUD_STALE;
1394 vxlan_fdb_destroy(vxlan, f);
1395 } else if (time_before(timeout, next_timer))
1396 next_timer = timeout;
1397 }
1398 }
1399 spin_unlock_bh(&vxlan->hash_lock);
1400
1401 mod_timer(&vxlan->age_timer, next_timer);
1402}
1403
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001404static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
1405{
1406 __u32 vni = vxlan->default_dst.remote_vni;
1407
1408 vxlan->vn_sock = vs;
1409 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
1410}
1411
stephen hemmingerd3428942012-10-01 12:32:35 +00001412/* Setup stats when device is created */
1413static int vxlan_init(struct net_device *dev)
1414{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001415 struct vxlan_dev *vxlan = netdev_priv(dev);
1416 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
1417 struct vxlan_sock *vs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001418
Pravin B Shelare8171042013-03-25 14:49:46 +00001419 dev->tstats = alloc_percpu(struct pcpu_tstats);
1420 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00001421 return -ENOMEM;
1422
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001423 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001424 vs = vxlan_find_sock(dev_net(dev), vxlan->dst_port);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001425 if (vs) {
1426 /* If we have a socket with same port already, reuse it */
1427 atomic_inc(&vs->refcnt);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001428 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001429 } else {
1430 /* otherwise make new socket outside of RTNL */
1431 dev_hold(dev);
1432 queue_work(vxlan_wq, &vxlan->sock_work);
1433 }
1434 spin_unlock(&vn->sock_lock);
1435
stephen hemmingerd3428942012-10-01 12:32:35 +00001436 return 0;
1437}
1438
Stephen Hemmingerba609e92013-06-25 17:06:01 -07001439static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001440{
1441 struct vxlan_fdb *f;
1442
1443 spin_lock_bh(&vxlan->hash_lock);
1444 f = __vxlan_find_mac(vxlan, all_zeros_mac);
1445 if (f)
1446 vxlan_fdb_destroy(vxlan, f);
1447 spin_unlock_bh(&vxlan->hash_lock);
1448}
1449
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001450static void vxlan_uninit(struct net_device *dev)
1451{
1452 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001453 struct vxlan_sock *vs = vxlan->vn_sock;
1454
Stephen Hemmingerba609e92013-06-25 17:06:01 -07001455 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001456
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001457 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07001458 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001459 free_percpu(dev->tstats);
1460}
1461
stephen hemmingerd3428942012-10-01 12:32:35 +00001462/* Start ageing timer and join group when device is brought up */
1463static int vxlan_open(struct net_device *dev)
1464{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001465 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00001466 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001467 struct vxlan_sock *vs = vxlan->vn_sock;
1468
1469 /* socket hasn't been created */
1470 if (!vs)
1471 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00001472
stephen hemminger3fc2de22013-07-18 08:40:15 -07001473 if (IN_MULTICAST(ntohl(vxlan->default_dst.remote_ip)) &&
Cong Wang614334d2013-08-07 16:35:45 +08001474 vxlan_group_used(vn, vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001475 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001476 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001477 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00001478 }
1479
1480 if (vxlan->age_interval)
1481 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
1482
1483 return 0;
1484}
1485
1486/* Purge the forwarding table */
1487static void vxlan_flush(struct vxlan_dev *vxlan)
1488{
Cong Wang31fec5a2013-05-27 22:35:52 +00001489 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00001490
1491 spin_lock_bh(&vxlan->hash_lock);
1492 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1493 struct hlist_node *p, *n;
1494 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1495 struct vxlan_fdb *f
1496 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001497 /* the all_zeros_mac entry is deleted at vxlan_uninit */
1498 if (!is_zero_ether_addr(f->eth_addr))
1499 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00001500 }
1501 }
1502 spin_unlock_bh(&vxlan->hash_lock);
1503}
1504
1505/* Cleanup timer and forwarding table on shutdown */
1506static int vxlan_stop(struct net_device *dev)
1507{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001508 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00001509 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001510 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00001511
stephen hemminger3fc2de22013-07-18 08:40:15 -07001512 if (vs && IN_MULTICAST(ntohl(vxlan->default_dst.remote_ip)) &&
1513 ! vxlan_group_used(vn, vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001514 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001515 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001516 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001517 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001518
1519 del_timer_sync(&vxlan->age_timer);
1520
1521 vxlan_flush(vxlan);
1522
1523 return 0;
1524}
1525
stephen hemmingerd3428942012-10-01 12:32:35 +00001526/* Stub, nothing needs to be done. */
1527static void vxlan_set_multicast_list(struct net_device *dev)
1528{
1529}
1530
1531static const struct net_device_ops vxlan_netdev_ops = {
1532 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001533 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00001534 .ndo_open = vxlan_open,
1535 .ndo_stop = vxlan_stop,
1536 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00001537 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00001538 .ndo_set_rx_mode = vxlan_set_multicast_list,
1539 .ndo_change_mtu = eth_change_mtu,
1540 .ndo_validate_addr = eth_validate_addr,
1541 .ndo_set_mac_address = eth_mac_addr,
1542 .ndo_fdb_add = vxlan_fdb_add,
1543 .ndo_fdb_del = vxlan_fdb_delete,
1544 .ndo_fdb_dump = vxlan_fdb_dump,
1545};
1546
1547/* Info for udev, that this is a virtual tunnel endpoint */
1548static struct device_type vxlan_type = {
1549 .name = "vxlan",
1550};
1551
stephen hemmingerd3428942012-10-01 12:32:35 +00001552/* Initialize the device structure. */
1553static void vxlan_setup(struct net_device *dev)
1554{
1555 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00001556 unsigned int h;
stephen hemminger05f47d62012-10-09 20:35:50 +00001557 int low, high;
stephen hemmingerd3428942012-10-01 12:32:35 +00001558
1559 eth_hw_addr_random(dev);
1560 ether_setup(dev);
stephen hemminger2840bf22012-10-09 20:35:51 +00001561 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00001562
1563 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001564 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00001565 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
1566
1567 dev->tx_queue_len = 0;
1568 dev->features |= NETIF_F_LLTX;
1569 dev->features |= NETIF_F_NETNS_LOCAL;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00001570 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001571 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001572 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001573
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001574 dev->vlan_features = dev->features;
1575 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001576 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001577 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001578 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
stephen hemmingerd3428942012-10-01 12:32:35 +00001579 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
stephen hemminger6602d002012-12-31 12:00:21 +00001580 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00001581
stephen hemminger553675f2013-05-16 11:35:20 +00001582 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00001583 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001584 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
1585 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001586 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00001587
1588 init_timer_deferrable(&vxlan->age_timer);
1589 vxlan->age_timer.function = vxlan_cleanup;
1590 vxlan->age_timer.data = (unsigned long) vxlan;
1591
stephen hemminger05f47d62012-10-09 20:35:50 +00001592 inet_get_local_port_range(&low, &high);
1593 vxlan->port_min = low;
1594 vxlan->port_max = high;
stephen hemminger823aa872013-04-27 11:31:57 +00001595 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001596
stephen hemmingerd3428942012-10-01 12:32:35 +00001597 vxlan->dev = dev;
1598
1599 for (h = 0; h < FDB_HASH_SIZE; ++h)
1600 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
1601}
1602
1603static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
1604 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00001605 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00001606 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
1607 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
1608 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
1609 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
1610 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
1611 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
1612 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00001613 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00001614 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
1615 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
1616 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
1617 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00001618 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
stephen hemmingerd3428942012-10-01 12:32:35 +00001619};
1620
1621static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
1622{
1623 if (tb[IFLA_ADDRESS]) {
1624 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1625 pr_debug("invalid link address (not ethernet)\n");
1626 return -EINVAL;
1627 }
1628
1629 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1630 pr_debug("invalid all zero ethernet address\n");
1631 return -EADDRNOTAVAIL;
1632 }
1633 }
1634
1635 if (!data)
1636 return -EINVAL;
1637
1638 if (data[IFLA_VXLAN_ID]) {
1639 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
1640 if (id >= VXLAN_VID_MASK)
1641 return -ERANGE;
1642 }
1643
stephen hemminger05f47d62012-10-09 20:35:50 +00001644 if (data[IFLA_VXLAN_PORT_RANGE]) {
1645 const struct ifla_vxlan_port_range *p
1646 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
1647
1648 if (ntohs(p->high) < ntohs(p->low)) {
1649 pr_debug("port range %u .. %u not valid\n",
1650 ntohs(p->low), ntohs(p->high));
1651 return -EINVAL;
1652 }
1653 }
1654
stephen hemmingerd3428942012-10-01 12:32:35 +00001655 return 0;
1656}
1657
Yan Burman1b13c972013-01-29 23:43:07 +00001658static void vxlan_get_drvinfo(struct net_device *netdev,
1659 struct ethtool_drvinfo *drvinfo)
1660{
1661 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
1662 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
1663}
1664
1665static const struct ethtool_ops vxlan_ethtool_ops = {
1666 .get_drvinfo = vxlan_get_drvinfo,
1667 .get_link = ethtool_op_get_link,
1668};
1669
stephen hemminger553675f2013-05-16 11:35:20 +00001670static void vxlan_del_work(struct work_struct *work)
1671{
1672 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
1673
1674 sk_release_kernel(vs->sock->sk);
1675 kfree_rcu(vs, rcu);
1676}
1677
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001678static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
Pravin B Shelar012a5722013-08-19 11:23:07 -07001679 vxlan_rcv_t *rcv, void *data)
stephen hemminger553675f2013-05-16 11:35:20 +00001680{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001681 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemminger553675f2013-05-16 11:35:20 +00001682 struct vxlan_sock *vs;
1683 struct sock *sk;
1684 struct sockaddr_in vxlan_addr = {
1685 .sin_family = AF_INET,
1686 .sin_addr.s_addr = htonl(INADDR_ANY),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -07001687 .sin_port = port,
stephen hemminger553675f2013-05-16 11:35:20 +00001688 };
1689 int rc;
Cong Wang31fec5a2013-05-27 22:35:52 +00001690 unsigned int h;
stephen hemminger553675f2013-05-16 11:35:20 +00001691
1692 vs = kmalloc(sizeof(*vs), GFP_KERNEL);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001693 if (!vs) {
1694 pr_debug("memory alocation failure\n");
stephen hemminger553675f2013-05-16 11:35:20 +00001695 return ERR_PTR(-ENOMEM);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001696 }
stephen hemminger553675f2013-05-16 11:35:20 +00001697
1698 for (h = 0; h < VNI_HASH_SIZE; ++h)
1699 INIT_HLIST_HEAD(&vs->vni_list[h]);
1700
1701 INIT_WORK(&vs->del_work, vxlan_del_work);
1702
1703 /* Create UDP socket for encapsulation receive. */
1704 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &vs->sock);
1705 if (rc < 0) {
1706 pr_debug("UDP socket create failed\n");
1707 kfree(vs);
1708 return ERR_PTR(rc);
1709 }
1710
1711 /* Put in proper namespace */
1712 sk = vs->sock->sk;
1713 sk_change_net(sk, net);
1714
stephen hemminger553675f2013-05-16 11:35:20 +00001715 rc = kernel_bind(vs->sock, (struct sockaddr *) &vxlan_addr,
1716 sizeof(vxlan_addr));
1717 if (rc < 0) {
1718 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
1719 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
1720 sk_release_kernel(sk);
1721 kfree(vs);
1722 return ERR_PTR(rc);
1723 }
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001724 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001725 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001726 vs->data = data;
stephen hemminger553675f2013-05-16 11:35:20 +00001727
1728 /* Disable multicast loopback */
1729 inet_sk(sk)->mc_loop = 0;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001730 spin_lock(&vn->sock_lock);
1731 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
1732 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00001733
1734 /* Mark socket as an encapsulation socket. */
1735 udp_sk(sk)->encap_type = 1;
1736 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
1737 udp_encap_enable();
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001738 return vs;
1739}
stephen hemminger553675f2013-05-16 11:35:20 +00001740
Pravin B Shelar012a5722013-08-19 11:23:07 -07001741struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
1742 vxlan_rcv_t *rcv, void *data,
1743 bool no_share)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001744{
1745 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
1746 struct vxlan_sock *vs;
1747
Pravin B Shelar012a5722013-08-19 11:23:07 -07001748 vs = vxlan_socket_create(net, port, rcv, data);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001749 if (!IS_ERR(vs))
1750 return vs;
1751
Pravin B Shelar012a5722013-08-19 11:23:07 -07001752 if (no_share) /* Return error if sharing is not allowed. */
1753 return vs;
1754
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001755 spin_lock(&vn->sock_lock);
1756 vs = vxlan_find_sock(net, port);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001757 if (vs) {
1758 if (vs->rcv == rcv)
1759 atomic_inc(&vs->refcnt);
1760 else
1761 vs = ERR_PTR(-EBUSY);
1762 }
1763 spin_unlock(&vn->sock_lock);
1764
1765 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001766 vs = ERR_PTR(-EINVAL);
1767
stephen hemminger553675f2013-05-16 11:35:20 +00001768 return vs;
1769}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001770EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00001771
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001772/* Scheduled at device creation to bind to a socket */
1773static void vxlan_sock_work(struct work_struct *work)
1774{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001775 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
1776 struct net *net = dev_net(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001777 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001778 __be16 port = vxlan->dst_port;
1779 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001780
Pravin B Shelar012a5722013-08-19 11:23:07 -07001781 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001782 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001783 if (!IS_ERR(nvs))
1784 vxlan_vs_add_dev(nvs, vxlan);
1785 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001786
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001787 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001788}
1789
stephen hemmingerd3428942012-10-01 12:32:35 +00001790static int vxlan_newlink(struct net *net, struct net_device *dev,
1791 struct nlattr *tb[], struct nlattr *data[])
1792{
stephen hemminger553675f2013-05-16 11:35:20 +00001793 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00001794 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00001795 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00001796 __u32 vni;
1797 int err;
1798
1799 if (!data[IFLA_VXLAN_ID])
1800 return -EINVAL;
1801
1802 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00001803 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001804
stephen hemminger5d174dd2013-04-27 11:31:55 +00001805 if (data[IFLA_VXLAN_GROUP])
1806 dst->remote_ip = nla_get_be32(data[IFLA_VXLAN_GROUP]);
stephen hemmingerd3428942012-10-01 12:32:35 +00001807
1808 if (data[IFLA_VXLAN_LOCAL])
1809 vxlan->saddr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
1810
stephen hemminger34e02aa2012-10-09 20:35:53 +00001811 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00001812 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00001813 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00001814 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00001815
stephen hemminger34e02aa2012-10-09 20:35:53 +00001816 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00001817 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00001818 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00001819 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00001820
1821 if (!tb[IFLA_MTU])
1822 dev->mtu = lowerdev->mtu - VXLAN_HEADROOM;
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00001823
1824 /* update header length based on lower device */
1825 dev->hard_header_len = lowerdev->hard_header_len +
1826 VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00001827 }
1828
1829 if (data[IFLA_VXLAN_TOS])
1830 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
1831
Vincent Bernatafb97182012-10-30 10:27:16 +00001832 if (data[IFLA_VXLAN_TTL])
1833 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
1834
stephen hemmingerd3428942012-10-01 12:32:35 +00001835 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00001836 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00001837
1838 if (data[IFLA_VXLAN_AGEING])
1839 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
1840 else
1841 vxlan->age_interval = FDB_AGE_DEFAULT;
1842
David Stevense4f67ad2012-11-20 02:50:14 +00001843 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
1844 vxlan->flags |= VXLAN_F_PROXY;
1845
1846 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
1847 vxlan->flags |= VXLAN_F_RSC;
1848
1849 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
1850 vxlan->flags |= VXLAN_F_L2MISS;
1851
1852 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
1853 vxlan->flags |= VXLAN_F_L3MISS;
1854
stephen hemmingerd3428942012-10-01 12:32:35 +00001855 if (data[IFLA_VXLAN_LIMIT])
1856 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
1857
stephen hemminger05f47d62012-10-09 20:35:50 +00001858 if (data[IFLA_VXLAN_PORT_RANGE]) {
1859 const struct ifla_vxlan_port_range *p
1860 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
1861 vxlan->port_min = ntohs(p->low);
1862 vxlan->port_max = ntohs(p->high);
1863 }
1864
stephen hemminger823aa872013-04-27 11:31:57 +00001865 if (data[IFLA_VXLAN_PORT])
1866 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
1867
stephen hemminger553675f2013-05-16 11:35:20 +00001868 if (vxlan_find_vni(net, vni, vxlan->dst_port)) {
1869 pr_info("duplicate VNI %u\n", vni);
1870 return -EEXIST;
1871 }
1872
Yan Burman1b13c972013-01-29 23:43:07 +00001873 SET_ETHTOOL_OPS(dev, &vxlan_ethtool_ops);
1874
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001875 /* create an fdb entry for default destination */
1876 err = vxlan_fdb_create(vxlan, all_zeros_mac,
1877 vxlan->default_dst.remote_ip,
1878 NUD_REACHABLE|NUD_PERMANENT,
1879 NLM_F_EXCL|NLM_F_CREATE,
1880 vxlan->dst_port, vxlan->default_dst.remote_vni,
1881 vxlan->default_dst.remote_ifindex, NTF_SELF);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001882 if (err)
stephen hemminger553675f2013-05-16 11:35:20 +00001883 return err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001884
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001885 err = register_netdevice(dev);
1886 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07001887 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001888 return err;
1889 }
1890
stephen hemminger553675f2013-05-16 11:35:20 +00001891 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00001892
1893 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001894}
1895
1896static void vxlan_dellink(struct net_device *dev, struct list_head *head)
1897{
stephen hemmingerfe5c3562013-07-13 10:18:18 -07001898 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00001899 struct vxlan_dev *vxlan = netdev_priv(dev);
1900
stephen hemmingerfe5c3562013-07-13 10:18:18 -07001901 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001902 if (!hlist_unhashed(&vxlan->hlist))
1903 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07001904 spin_unlock(&vn->sock_lock);
1905
stephen hemminger553675f2013-05-16 11:35:20 +00001906 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00001907 unregister_netdevice_queue(dev, head);
1908}
1909
1910static size_t vxlan_get_size(const struct net_device *dev)
1911{
1912
1913 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
stephen hemminger5d174dd2013-04-27 11:31:55 +00001914 nla_total_size(sizeof(__be32)) +/* IFLA_VXLAN_GROUP */
stephen hemmingerd3428942012-10-01 12:32:35 +00001915 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
1916 nla_total_size(sizeof(__be32))+ /* IFLA_VXLAN_LOCAL */
1917 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
1918 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
1919 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00001920 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
1921 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
1922 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
1923 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00001924 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
1925 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00001926 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
stephen hemminger823aa872013-04-27 11:31:57 +00001927 nla_total_size(sizeof(__be16))+ /* IFLA_VXLAN_PORT */
stephen hemmingerd3428942012-10-01 12:32:35 +00001928 0;
1929}
1930
1931static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
1932{
1933 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00001934 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00001935 struct ifla_vxlan_port_range ports = {
1936 .low = htons(vxlan->port_min),
1937 .high = htons(vxlan->port_max),
1938 };
stephen hemmingerd3428942012-10-01 12:32:35 +00001939
Atzm Watanabec7995c42013-04-16 02:50:52 +00001940 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00001941 goto nla_put_failure;
1942
stephen hemminger5d174dd2013-04-27 11:31:55 +00001943 if (dst->remote_ip && nla_put_be32(skb, IFLA_VXLAN_GROUP, dst->remote_ip))
stephen hemmingerd3428942012-10-01 12:32:35 +00001944 goto nla_put_failure;
1945
Atzm Watanabec7995c42013-04-16 02:50:52 +00001946 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00001947 goto nla_put_failure;
1948
Stephen Hemminger7c41c422012-10-08 14:55:30 -07001949 if (vxlan->saddr && nla_put_be32(skb, IFLA_VXLAN_LOCAL, vxlan->saddr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001950 goto nla_put_failure;
1951
1952 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
1953 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00001954 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
1955 !!(vxlan->flags & VXLAN_F_LEARN)) ||
1956 nla_put_u8(skb, IFLA_VXLAN_PROXY,
1957 !!(vxlan->flags & VXLAN_F_PROXY)) ||
1958 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
1959 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
1960 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
1961 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
1962 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00001963 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00001964 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
1965 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port))
stephen hemmingerd3428942012-10-01 12:32:35 +00001966 goto nla_put_failure;
1967
stephen hemminger05f47d62012-10-09 20:35:50 +00001968 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
1969 goto nla_put_failure;
1970
stephen hemmingerd3428942012-10-01 12:32:35 +00001971 return 0;
1972
1973nla_put_failure:
1974 return -EMSGSIZE;
1975}
1976
1977static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
1978 .kind = "vxlan",
1979 .maxtype = IFLA_VXLAN_MAX,
1980 .policy = vxlan_policy,
1981 .priv_size = sizeof(struct vxlan_dev),
1982 .setup = vxlan_setup,
1983 .validate = vxlan_validate,
1984 .newlink = vxlan_newlink,
1985 .dellink = vxlan_dellink,
1986 .get_size = vxlan_get_size,
1987 .fill_info = vxlan_fill_info,
1988};
1989
1990static __net_init int vxlan_init_net(struct net *net)
1991{
1992 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00001993 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00001994
stephen hemminger553675f2013-05-16 11:35:20 +00001995 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001996 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00001997
stephen hemminger553675f2013-05-16 11:35:20 +00001998 for (h = 0; h < PORT_HASH_SIZE; ++h)
1999 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002000
2001 return 0;
2002}
2003
2004static __net_exit void vxlan_exit_net(struct net *net)
2005{
2006 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00002007 struct vxlan_dev *vxlan;
stephen hemminger372675a2013-07-18 08:38:26 -07002008 LIST_HEAD(list);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00002009
2010 rtnl_lock();
stephen hemminger553675f2013-05-16 11:35:20 +00002011 list_for_each_entry(vxlan, &vn->vxlan_list, next)
stephen hemminger372675a2013-07-18 08:38:26 -07002012 unregister_netdevice_queue(vxlan->dev, &list);
2013 unregister_netdevice_many(&list);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00002014 rtnl_unlock();
stephen hemmingerd3428942012-10-01 12:32:35 +00002015}
2016
2017static struct pernet_operations vxlan_net_ops = {
2018 .init = vxlan_init_net,
2019 .exit = vxlan_exit_net,
2020 .id = &vxlan_net_id,
2021 .size = sizeof(struct vxlan_net),
2022};
2023
2024static int __init vxlan_init_module(void)
2025{
2026 int rc;
2027
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002028 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
2029 if (!vxlan_wq)
2030 return -ENOMEM;
2031
stephen hemmingerd3428942012-10-01 12:32:35 +00002032 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
2033
2034 rc = register_pernet_device(&vxlan_net_ops);
2035 if (rc)
2036 goto out1;
2037
2038 rc = rtnl_link_register(&vxlan_link_ops);
2039 if (rc)
2040 goto out2;
2041
2042 return 0;
2043
2044out2:
2045 unregister_pernet_device(&vxlan_net_ops);
2046out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002047 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00002048 return rc;
2049}
Cong Wang7332a132013-05-27 22:35:53 +00002050late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00002051
2052static void __exit vxlan_cleanup_module(void)
2053{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07002054 rtnl_link_unregister(&vxlan_link_ops);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002055 destroy_workqueue(vxlan_wq);
Pravin B Shelarf89e57c2013-07-11 11:38:06 -07002056 unregister_pernet_device(&vxlan_net_ops);
David Stevens66817122013-03-15 04:35:51 +00002057 rcu_barrier();
stephen hemmingerd3428942012-10-01 12:32:35 +00002058}
2059module_exit(vxlan_cleanup_module);
2060
2061MODULE_LICENSE("GPL");
2062MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00002063MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
stephen hemmingerd3428942012-10-01 12:32:35 +00002064MODULE_ALIAS_RTNL_LINK("vxlan");