blob: 1dfee9a7fbf7854179ba1bac9fd5bc265fd31b31 [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.
stephen hemmingerd3428942012-10-01 12:32:35 +00009 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/kernel.h>
14#include <linux/types.h>
15#include <linux/module.h>
16#include <linux/errno.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/rculist.h>
20#include <linux/netdevice.h>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/udp.h>
24#include <linux/igmp.h>
25#include <linux/etherdevice.h>
26#include <linux/if_ether.h>
Pravin B Shelar1eaa8172013-08-19 11:23:29 -070027#include <linux/if_vlan.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000028#include <linux/hash.h>
Yan Burman1b13c972013-01-29 23:43:07 +000029#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000030#include <net/arp.h>
31#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000032#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000033#include <net/ip_tunnels.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000034#include <net/icmp.h>
35#include <net/udp.h>
36#include <net/rtnetlink.h>
37#include <net/route.h>
38#include <net/dsfield.h>
39#include <net/inet_ecn.h>
40#include <net/net_namespace.h>
41#include <net/netns/generic.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070042#include <net/vxlan.h>
Or Gerlitzdc01e7d2014-01-20 13:59:21 +020043#include <net/protocol.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080044#if IS_ENABLED(CONFIG_IPV6)
45#include <net/ipv6.h>
46#include <net/addrconf.h>
47#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080048#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080049#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000050
51#define VXLAN_VERSION "0.1"
52
stephen hemminger553675f2013-05-16 11:35:20 +000053#define PORT_HASH_BITS 8
54#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000055#define VNI_HASH_BITS 10
56#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
57#define FDB_HASH_BITS 8
58#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
59#define FDB_AGE_DEFAULT 300 /* 5 min */
60#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
61
62#define VXLAN_N_VID (1u << 24)
63#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Pravin B Shelar7ce04752013-08-19 11:22:54 -070064#define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
stephen hemmingerd3428942012-10-01 12:32:35 +000065
66#define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */
67
68/* VXLAN protocol header */
69struct vxlanhdr {
70 __be32 vx_flags;
71 __be32 vx_vni;
72};
73
stephen hemminger23c578b2013-04-27 11:31:53 +000074/* UDP port for VXLAN traffic.
75 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070076 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000077 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070078static unsigned short vxlan_port __read_mostly = 8472;
79module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000080MODULE_PARM_DESC(udp_port, "Destination UDP port");
81
82static bool log_ecn_error = true;
83module_param(log_ecn_error, bool, 0644);
84MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
85
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -070086static int vxlan_net_id;
stephen hemminger553675f2013-05-16 11:35:20 +000087
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030088static const u8 all_zeros_mac[ETH_ALEN];
89
stephen hemminger553675f2013-05-16 11:35:20 +000090/* per-network namespace private data for this module */
91struct vxlan_net {
92 struct list_head vxlan_list;
93 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070094 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000095};
96
Cong Wange4c7ed42013-08-31 13:44:33 +080097union vxlan_addr {
98 struct sockaddr_in sin;
99 struct sockaddr_in6 sin6;
100 struct sockaddr sa;
101};
102
David Stevens66817122013-03-15 04:35:51 +0000103struct vxlan_rdst {
Cong Wange4c7ed42013-08-31 13:44:33 +0800104 union vxlan_addr remote_ip;
David Stevens66817122013-03-15 04:35:51 +0000105 __be16 remote_port;
106 u32 remote_vni;
107 u32 remote_ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700108 struct list_head list;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300109 struct rcu_head rcu;
David Stevens66817122013-03-15 04:35:51 +0000110};
111
stephen hemmingerd3428942012-10-01 12:32:35 +0000112/* Forwarding table entry */
113struct vxlan_fdb {
114 struct hlist_node hlist; /* linked list of entries */
115 struct rcu_head rcu;
116 unsigned long updated; /* jiffies */
117 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700118 struct list_head remotes;
stephen hemmingerd3428942012-10-01 12:32:35 +0000119 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +0000120 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +0000121 u8 eth_addr[ETH_ALEN];
122};
123
stephen hemmingerd3428942012-10-01 12:32:35 +0000124/* Pseudo network device */
125struct vxlan_dev {
stephen hemminger553675f2013-05-16 11:35:20 +0000126 struct hlist_node hlist; /* vni hash table */
127 struct list_head next; /* vxlan's per namespace list */
128 struct vxlan_sock *vn_sock; /* listening socket */
stephen hemmingerd3428942012-10-01 12:32:35 +0000129 struct net_device *dev;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +0200130 struct net *net; /* netns for packet i/o */
Atzm Watanabec7995c42013-04-16 02:50:52 +0000131 struct vxlan_rdst default_dst; /* default destination */
Cong Wange4c7ed42013-08-31 13:44:33 +0800132 union vxlan_addr saddr; /* source address */
stephen hemminger823aa872013-04-27 11:31:57 +0000133 __be16 dst_port;
stephen hemminger05f47d62012-10-09 20:35:50 +0000134 __u16 port_min; /* source port range */
135 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000136 __u8 tos; /* TOS override */
137 __u8 ttl;
David Stevense4f67ad2012-11-20 02:50:14 +0000138 u32 flags; /* VXLAN_F_* below */
stephen hemmingerd3428942012-10-01 12:32:35 +0000139
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700140 struct work_struct sock_work;
stephen hemminger3fc2de22013-07-18 08:40:15 -0700141 struct work_struct igmp_join;
142 struct work_struct igmp_leave;
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700143
stephen hemmingerd3428942012-10-01 12:32:35 +0000144 unsigned long age_interval;
145 struct timer_list age_timer;
146 spinlock_t hash_lock;
147 unsigned int addrcnt;
148 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000149
150 struct hlist_head fdb_head[FDB_HASH_SIZE];
151};
152
David Stevense4f67ad2012-11-20 02:50:14 +0000153#define VXLAN_F_LEARN 0x01
154#define VXLAN_F_PROXY 0x02
155#define VXLAN_F_RSC 0x04
156#define VXLAN_F_L2MISS 0x08
157#define VXLAN_F_L3MISS 0x10
Cong Wange4c7ed42013-08-31 13:44:33 +0800158#define VXLAN_F_IPV6 0x20 /* internal flag */
David Stevense4f67ad2012-11-20 02:50:14 +0000159
stephen hemmingerd3428942012-10-01 12:32:35 +0000160/* salt for hash table */
161static u32 vxlan_salt __read_mostly;
Stephen Hemminger758c57d2013-06-17 14:16:09 -0700162static struct workqueue_struct *vxlan_wq;
stephen hemmingerd3428942012-10-01 12:32:35 +0000163
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700164static void vxlan_sock_work(struct work_struct *work);
165
Cong Wange4c7ed42013-08-31 13:44:33 +0800166#if IS_ENABLED(CONFIG_IPV6)
167static inline
168bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
169{
170 if (a->sa.sa_family != b->sa.sa_family)
171 return false;
172 if (a->sa.sa_family == AF_INET6)
173 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
174 else
175 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
176}
177
178static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
179{
180 if (ipa->sa.sa_family == AF_INET6)
181 return ipv6_addr_any(&ipa->sin6.sin6_addr);
182 else
183 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
184}
185
186static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
187{
188 if (ipa->sa.sa_family == AF_INET6)
189 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
190 else
191 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
192}
193
194static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
195{
196 if (nla_len(nla) >= sizeof(struct in6_addr)) {
197 nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr));
198 ip->sa.sa_family = AF_INET6;
199 return 0;
200 } else if (nla_len(nla) >= sizeof(__be32)) {
201 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
202 ip->sa.sa_family = AF_INET;
203 return 0;
204 } else {
205 return -EAFNOSUPPORT;
206 }
207}
208
209static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
210 const union vxlan_addr *ip)
211{
212 if (ip->sa.sa_family == AF_INET6)
213 return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr);
214 else
215 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
216}
217
218#else /* !CONFIG_IPV6 */
219
220static inline
221bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
222{
223 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
224}
225
226static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
227{
228 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
229}
230
231static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
232{
233 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
234}
235
236static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
237{
238 if (nla_len(nla) >= sizeof(struct in6_addr)) {
239 return -EAFNOSUPPORT;
240 } else if (nla_len(nla) >= sizeof(__be32)) {
241 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
242 ip->sa.sa_family = AF_INET;
243 return 0;
244 } else {
245 return -EAFNOSUPPORT;
246 }
247}
248
249static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
250 const union vxlan_addr *ip)
251{
252 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
253}
254#endif
255
stephen hemminger553675f2013-05-16 11:35:20 +0000256/* Virtual Network hash table head */
257static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
258{
259 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
260}
261
262/* Socket hash table head */
263static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000264{
265 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
266
stephen hemminger553675f2013-05-16 11:35:20 +0000267 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
268}
269
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700270/* First remote destination for a forwarding entry.
271 * Guaranteed to be non-NULL because remotes are never deleted.
272 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700273static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700274{
stephen hemminger5ca54612013-08-04 17:17:39 -0700275 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
276}
277
278static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
279{
280 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700281}
282
stephen hemminger553675f2013-05-16 11:35:20 +0000283/* Find VXLAN socket based on network namespace and UDP port */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -0700284static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +0000285{
286 struct vxlan_sock *vs;
287
288 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
289 if (inet_sk(vs->sock->sk)->inet_sport == port)
290 return vs;
291 }
292 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000293}
294
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700295static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000296{
297 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000298
stephen hemminger553675f2013-05-16 11:35:20 +0000299 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000300 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000301 return vxlan;
302 }
303
304 return NULL;
305}
306
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700307/* Look up VNI in a per net namespace table */
308static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id, __be16 port)
309{
310 struct vxlan_sock *vs;
311
312 vs = vxlan_find_sock(net, port);
313 if (!vs)
314 return NULL;
315
316 return vxlan_vs_find_vni(vs, id);
317}
318
stephen hemmingerd3428942012-10-01 12:32:35 +0000319/* Fill in neighbour message in skbuff. */
320static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700321 const struct vxlan_fdb *fdb,
322 u32 portid, u32 seq, int type, unsigned int flags,
323 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000324{
325 unsigned long now = jiffies;
326 struct nda_cacheinfo ci;
327 struct nlmsghdr *nlh;
328 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000329 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000330
331 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
332 if (nlh == NULL)
333 return -EMSGSIZE;
334
335 ndm = nlmsg_data(nlh);
336 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000337
338 send_eth = send_ip = true;
339
340 if (type == RTM_GETNEIGH) {
341 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800342 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000343 send_eth = !is_zero_ether_addr(fdb->eth_addr);
344 } else
345 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000346 ndm->ndm_state = fdb->state;
347 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000348 ndm->ndm_flags = fdb->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000349 ndm->ndm_type = NDA_DST;
350
David Stevense4f67ad2012-11-20 02:50:14 +0000351 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000352 goto nla_put_failure;
353
Cong Wange4c7ed42013-08-31 13:44:33 +0800354 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000355 goto nla_put_failure;
356
stephen hemminger823aa872013-04-27 11:31:57 +0000357 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000358 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
359 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000360 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700361 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000362 goto nla_put_failure;
363 if (rdst->remote_ifindex &&
364 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000365 goto nla_put_failure;
366
367 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
368 ci.ndm_confirmed = 0;
369 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
370 ci.ndm_refcnt = 0;
371
372 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
373 goto nla_put_failure;
374
375 return nlmsg_end(skb, nlh);
376
377nla_put_failure:
378 nlmsg_cancel(skb, nlh);
379 return -EMSGSIZE;
380}
381
382static inline size_t vxlan_nlmsg_size(void)
383{
384 return NLMSG_ALIGN(sizeof(struct ndmsg))
385 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800386 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000387 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000388 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
389 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000390 + nla_total_size(sizeof(struct nda_cacheinfo));
391}
392
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200393static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
394 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000395{
396 struct net *net = dev_net(vxlan->dev);
397 struct sk_buff *skb;
398 int err = -ENOBUFS;
399
400 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
401 if (skb == NULL)
402 goto errout;
403
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200404 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000405 if (err < 0) {
406 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
407 WARN_ON(err == -EMSGSIZE);
408 kfree_skb(skb);
409 goto errout;
410 }
411
412 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
413 return;
414errout:
415 if (err < 0)
416 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
417}
418
Cong Wange4c7ed42013-08-31 13:44:33 +0800419static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000420{
421 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700422 struct vxlan_fdb f = {
423 .state = NUD_STALE,
424 };
425 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800426 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700427 .remote_vni = VXLAN_N_VID,
428 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700429
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200430 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000431}
432
433static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
434{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700435 struct vxlan_fdb f = {
436 .state = NUD_STALE,
437 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200438 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000439
David Stevense4f67ad2012-11-20 02:50:14 +0000440 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
441
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200442 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000443}
444
stephen hemmingerd3428942012-10-01 12:32:35 +0000445/* Hash Ethernet address */
446static u32 eth_hash(const unsigned char *addr)
447{
448 u64 value = get_unaligned((u64 *)addr);
449
450 /* only want 6 bytes */
451#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000452 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000453#else
454 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000455#endif
456 return hash_64(value, FDB_HASH_BITS);
457}
458
459/* Hash chain to use given mac address */
460static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
461 const u8 *mac)
462{
463 return &vxlan->fdb_head[eth_hash(mac)];
464}
465
466/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000467static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000468 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000469{
470 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
471 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000472
Sasha Levinb67bfe02013-02-27 17:06:00 -0800473 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700474 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000475 return f;
476 }
477
478 return NULL;
479}
480
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000481static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
482 const u8 *mac)
483{
484 struct vxlan_fdb *f;
485
486 f = __vxlan_find_mac(vxlan, mac);
487 if (f)
488 f->used = jiffies;
489
490 return f;
491}
492
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300493/* caller should hold vxlan->hash_lock */
494static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800495 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300496 __u32 vni, __u32 ifindex)
497{
498 struct vxlan_rdst *rd;
499
500 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800501 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300502 rd->remote_port == port &&
503 rd->remote_vni == vni &&
504 rd->remote_ifindex == ifindex)
505 return rd;
506 }
507
508 return NULL;
509}
510
Thomas Richter906dc182013-07-19 17:20:07 +0200511/* Replace destination of unicast mac */
512static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800513 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200514{
515 struct vxlan_rdst *rd;
516
517 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
518 if (rd)
519 return 0;
520
521 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
522 if (!rd)
523 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800524 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200525 rd->remote_port = port;
526 rd->remote_vni = vni;
527 rd->remote_ifindex = ifindex;
528 return 1;
529}
530
David Stevens66817122013-03-15 04:35:51 +0000531/* Add/update destinations for multicast */
532static int vxlan_fdb_append(struct vxlan_fdb *f,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200533 union vxlan_addr *ip, __be16 port, __u32 vni,
534 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000535{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700536 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000537
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300538 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
539 if (rd)
540 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700541
David Stevens66817122013-03-15 04:35:51 +0000542 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
543 if (rd == NULL)
544 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800545 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000546 rd->remote_port = port;
547 rd->remote_vni = vni;
548 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700549
550 list_add_tail_rcu(&rd->list, &f->remotes);
551
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200552 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000553 return 1;
554}
555
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200556static struct sk_buff **vxlan_gro_receive(struct sk_buff **head, struct sk_buff *skb)
557{
558 struct sk_buff *p, **pp = NULL;
559 struct vxlanhdr *vh, *vh2;
560 struct ethhdr *eh, *eh2;
561 unsigned int hlen, off_vx, off_eth;
562 const struct packet_offload *ptype;
563 __be16 type;
564 int flush = 1;
565
566 off_vx = skb_gro_offset(skb);
567 hlen = off_vx + sizeof(*vh);
568 vh = skb_gro_header_fast(skb, off_vx);
569 if (skb_gro_header_hard(skb, hlen)) {
570 vh = skb_gro_header_slow(skb, hlen, off_vx);
571 if (unlikely(!vh))
572 goto out;
573 }
574 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
575
576 off_eth = skb_gro_offset(skb);
577 hlen = off_eth + sizeof(*eh);
578 eh = skb_gro_header_fast(skb, off_eth);
579 if (skb_gro_header_hard(skb, hlen)) {
580 eh = skb_gro_header_slow(skb, hlen, off_eth);
581 if (unlikely(!eh))
582 goto out;
583 }
584
585 flush = 0;
586
587 for (p = *head; p; p = p->next) {
588 if (!NAPI_GRO_CB(p)->same_flow)
589 continue;
590
591 vh2 = (struct vxlanhdr *)(p->data + off_vx);
592 eh2 = (struct ethhdr *)(p->data + off_eth);
593 if (vh->vx_vni != vh2->vx_vni || compare_ether_header(eh, eh2)) {
594 NAPI_GRO_CB(p)->same_flow = 0;
595 continue;
596 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200597 }
598
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200599 type = eh->h_proto;
600
601 rcu_read_lock();
602 ptype = gro_find_receive_by_type(type);
603 if (ptype == NULL) {
604 flush = 1;
605 goto out_unlock;
606 }
607
608 skb_gro_pull(skb, sizeof(*eh)); /* pull inner eth header */
609 pp = ptype->callbacks.gro_receive(head, skb);
610
611out_unlock:
612 rcu_read_unlock();
613out:
614 NAPI_GRO_CB(skb)->flush |= flush;
615
616 return pp;
617}
618
619static int vxlan_gro_complete(struct sk_buff *skb, int nhoff)
620{
621 struct ethhdr *eh;
622 struct packet_offload *ptype;
623 __be16 type;
624 int vxlan_len = sizeof(struct vxlanhdr) + sizeof(struct ethhdr);
625 int err = -ENOSYS;
626
627 eh = (struct ethhdr *)(skb->data + nhoff + sizeof(struct vxlanhdr));
628 type = eh->h_proto;
629
630 rcu_read_lock();
631 ptype = gro_find_complete_by_type(type);
632 if (ptype != NULL)
633 err = ptype->callbacks.gro_complete(skb, nhoff + vxlan_len);
634
635 rcu_read_unlock();
636 return err;
637}
638
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700639/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200640static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700641{
642 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200643 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700644 struct net *net = sock_net(sk);
645 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700646 __be16 port = inet_sk(sk)->inet_sport;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200647 int err;
648
649 if (sa_family == AF_INET) {
650 err = udp_add_offload(&vs->udp_offloads);
651 if (err)
652 pr_warn("vxlan: udp_add_offload failed with status %d\n", err);
653 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700654
655 rcu_read_lock();
656 for_each_netdev_rcu(net, dev) {
657 if (dev->netdev_ops->ndo_add_vxlan_port)
658 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
659 port);
660 }
661 rcu_read_unlock();
662}
663
664/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200665static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700666{
667 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200668 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700669 struct net *net = sock_net(sk);
670 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700671 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700672
673 rcu_read_lock();
674 for_each_netdev_rcu(net, dev) {
675 if (dev->netdev_ops->ndo_del_vxlan_port)
676 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
677 port);
678 }
679 rcu_read_unlock();
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200680
681 if (sa_family == AF_INET)
682 udp_del_offload(&vs->udp_offloads);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700683}
684
stephen hemmingerd3428942012-10-01 12:32:35 +0000685/* Add new entry to forwarding table -- assumes lock held */
686static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800687 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000688 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000689 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000690 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000691{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200692 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000693 struct vxlan_fdb *f;
694 int notify = 0;
695
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000696 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000697 if (f) {
698 if (flags & NLM_F_EXCL) {
699 netdev_dbg(vxlan->dev,
700 "lost race to create %pM\n", mac);
701 return -EEXIST;
702 }
703 if (f->state != state) {
704 f->state = state;
705 f->updated = jiffies;
706 notify = 1;
707 }
David Stevensae884082013-04-19 00:36:26 +0000708 if (f->flags != ndm_flags) {
709 f->flags = ndm_flags;
710 f->updated = jiffies;
711 notify = 1;
712 }
Thomas Richter906dc182013-07-19 17:20:07 +0200713 if ((flags & NLM_F_REPLACE)) {
714 /* Only change unicasts */
715 if (!(is_multicast_ether_addr(f->eth_addr) ||
716 is_zero_ether_addr(f->eth_addr))) {
717 int rc = vxlan_fdb_replace(f, ip, port, vni,
718 ifindex);
719
720 if (rc < 0)
721 return rc;
722 notify |= rc;
723 } else
724 return -EOPNOTSUPP;
725 }
David Stevens66817122013-03-15 04:35:51 +0000726 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300727 (is_multicast_ether_addr(f->eth_addr) ||
728 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200729 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
730 &rd);
David Stevens66817122013-03-15 04:35:51 +0000731
732 if (rc < 0)
733 return rc;
734 notify |= rc;
735 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000736 } else {
737 if (!(flags & NLM_F_CREATE))
738 return -ENOENT;
739
740 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
741 return -ENOSPC;
742
Thomas Richter906dc182013-07-19 17:20:07 +0200743 /* Disallow replace to add a multicast entry */
744 if ((flags & NLM_F_REPLACE) &&
745 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
746 return -EOPNOTSUPP;
747
Cong Wange4c7ed42013-08-31 13:44:33 +0800748 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000749 f = kmalloc(sizeof(*f), GFP_ATOMIC);
750 if (!f)
751 return -ENOMEM;
752
753 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000754 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000755 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000756 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700757 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000758 memcpy(f->eth_addr, mac, ETH_ALEN);
759
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200760 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700761
stephen hemmingerd3428942012-10-01 12:32:35 +0000762 ++vxlan->addrcnt;
763 hlist_add_head_rcu(&f->hlist,
764 vxlan_fdb_head(vxlan, mac));
765 }
766
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200767 if (notify) {
768 if (rd == NULL)
769 rd = first_remote_rtnl(f);
770 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
771 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000772
773 return 0;
774}
775
Wei Yongjun6706c822013-04-11 19:00:35 +0000776static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000777{
778 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700779 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000780
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700781 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000782 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000783 kfree(f);
784}
785
stephen hemmingerd3428942012-10-01 12:32:35 +0000786static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
787{
788 netdev_dbg(vxlan->dev,
789 "delete %pM\n", f->eth_addr);
790
791 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200792 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000793
794 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000795 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000796}
797
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300798static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800799 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300800{
801 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800802 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300803
804 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800805 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
806 if (err)
807 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300808 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800809 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
810 if (remote->sa.sa_family == AF_INET) {
811 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
812 ip->sa.sa_family = AF_INET;
813#if IS_ENABLED(CONFIG_IPV6)
814 } else {
815 ip->sin6.sin6_addr = in6addr_any;
816 ip->sa.sa_family = AF_INET6;
817#endif
818 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300819 }
820
821 if (tb[NDA_PORT]) {
822 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
823 return -EINVAL;
824 *port = nla_get_be16(tb[NDA_PORT]);
825 } else {
826 *port = vxlan->dst_port;
827 }
828
829 if (tb[NDA_VNI]) {
830 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
831 return -EINVAL;
832 *vni = nla_get_u32(tb[NDA_VNI]);
833 } else {
834 *vni = vxlan->default_dst.remote_vni;
835 }
836
837 if (tb[NDA_IFINDEX]) {
838 struct net_device *tdev;
839
840 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
841 return -EINVAL;
842 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800843 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300844 if (!tdev)
845 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300846 } else {
847 *ifindex = 0;
848 }
849
850 return 0;
851}
852
stephen hemmingerd3428942012-10-01 12:32:35 +0000853/* Add static entry (via netlink) */
854static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
855 struct net_device *dev,
856 const unsigned char *addr, u16 flags)
857{
858 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300859 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800860 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000861 __be16 port;
862 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000863 int err;
864
865 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
866 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
867 ndm->ndm_state);
868 return -EINVAL;
869 }
870
871 if (tb[NDA_DST] == NULL)
872 return -EINVAL;
873
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300874 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
875 if (err)
876 return err;
David Stevens66817122013-03-15 04:35:51 +0000877
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300878 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
879 return -EAFNOSUPPORT;
880
stephen hemmingerd3428942012-10-01 12:32:35 +0000881 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800882 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000883 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000884 spin_unlock_bh(&vxlan->hash_lock);
885
886 return err;
887}
888
889/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000890static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
891 struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000892 const unsigned char *addr)
893{
894 struct vxlan_dev *vxlan = netdev_priv(dev);
895 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300896 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800897 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300898 __be16 port;
899 u32 vni, ifindex;
900 int err;
901
902 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
903 if (err)
904 return err;
905
906 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000907
908 spin_lock_bh(&vxlan->hash_lock);
909 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300910 if (!f)
911 goto out;
912
Cong Wange4c7ed42013-08-31 13:44:33 +0800913 if (!vxlan_addr_any(&ip)) {
914 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300915 if (!rd)
916 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000917 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300918
919 err = 0;
920
921 /* remove a destination if it's not the only one on the list,
922 * otherwise destroy the fdb entry
923 */
924 if (rd && !list_is_singular(&f->remotes)) {
925 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200926 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800927 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300928 goto out;
929 }
930
931 vxlan_fdb_destroy(vxlan, f);
932
933out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000934 spin_unlock_bh(&vxlan->hash_lock);
935
936 return err;
937}
938
939/* Dump forwarding table */
940static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
941 struct net_device *dev, int idx)
942{
943 struct vxlan_dev *vxlan = netdev_priv(dev);
944 unsigned int h;
945
946 for (h = 0; h < FDB_HASH_SIZE; ++h) {
947 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000948 int err;
949
Sasha Levinb67bfe02013-02-27 17:06:00 -0800950 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000951 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000952
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700953 if (idx < cb->args[0])
954 goto skip;
955
956 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000957 err = vxlan_fdb_info(skb, vxlan, f,
958 NETLINK_CB(cb->skb).portid,
959 cb->nlh->nlmsg_seq,
960 RTM_NEWNEIGH,
961 NLM_F_MULTI, rd);
962 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700963 goto out;
David Stevens66817122013-03-15 04:35:51 +0000964 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700965skip:
966 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000967 }
968 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700969out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000970 return idx;
971}
972
973/* Watch incoming packets to learn mapping between Ethernet address
974 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700975 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000976 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700977static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800978 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000979{
980 struct vxlan_dev *vxlan = netdev_priv(dev);
981 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000982
983 f = vxlan_find_mac(vxlan, src_mac);
984 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700985 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700986
Cong Wange4c7ed42013-08-31 13:44:33 +0800987 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700988 return false;
989
990 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700991 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700992 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000993
994 if (net_ratelimit())
995 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800996 "%pM migrated from %pIS to %pIS\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700997 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000998
Cong Wange4c7ed42013-08-31 13:44:33 +0800999 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001000 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +02001001 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +00001002 } else {
1003 /* learned new entry */
1004 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001005
1006 /* close off race between vxlan_flush and incoming packets */
1007 if (netif_running(dev))
1008 vxlan_fdb_create(vxlan, src_mac, src_ip,
1009 NUD_REACHABLE,
1010 NLM_F_EXCL|NLM_F_CREATE,
1011 vxlan->dst_port,
1012 vxlan->default_dst.remote_vni,
1013 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +00001014 spin_unlock(&vxlan->hash_lock);
1015 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001016
1017 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001018}
1019
stephen hemmingerd3428942012-10-01 12:32:35 +00001020/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001021static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001022{
stephen hemminger553675f2013-05-16 11:35:20 +00001023 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +00001024
Gao feng95ab0992013-12-10 16:37:33 +08001025 /* The vxlan_sock is only used by dev, leaving group has
1026 * no effect on other vxlan devices.
1027 */
1028 if (atomic_read(&dev->vn_sock->refcnt) == 1)
1029 return false;
1030
stephen hemminger553675f2013-05-16 11:35:20 +00001031 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001032 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001033 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001034
Gao feng95ab0992013-12-10 16:37:33 +08001035 if (vxlan->vn_sock != dev->vn_sock)
1036 continue;
1037
1038 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1039 &dev->default_dst.remote_ip))
1040 continue;
1041
1042 if (vxlan->default_dst.remote_ifindex !=
1043 dev->default_dst.remote_ifindex)
1044 continue;
1045
1046 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001047 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001048
1049 return false;
1050}
1051
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001052static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001053{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001054 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001055}
1056
Pravin B Shelar012a5722013-08-19 11:23:07 -07001057void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001058{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07001059 struct sock *sk = vs->sock->sk;
1060 struct net *net = sock_net(sk);
1061 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -07001062
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001063 if (!atomic_dec_and_test(&vs->refcnt))
1064 return;
1065
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001066 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001067 hlist_del_rcu(&vs->hlist);
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001068 rcu_assign_sk_user_data(vs->sock->sk, NULL);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001069 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001070 spin_unlock(&vn->sock_lock);
1071
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001072 queue_work(vxlan_wq, &vs->del_work);
1073}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001074EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001075
stephen hemminger3fc2de22013-07-18 08:40:15 -07001076/* Callback to update multicast group membership when first VNI on
1077 * multicast asddress is brought up
1078 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001079 */
stephen hemminger3fc2de22013-07-18 08:40:15 -07001080static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001081{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001082 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001083 struct vxlan_sock *vs = vxlan->vn_sock;
1084 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001085 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1086 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001087
stephen hemmingerd3428942012-10-01 12:32:35 +00001088 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001089 if (ip->sa.sa_family == AF_INET) {
1090 struct ip_mreqn mreq = {
1091 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1092 .imr_ifindex = ifindex,
1093 };
1094
1095 ip_mc_join_group(sk, &mreq);
1096#if IS_ENABLED(CONFIG_IPV6)
1097 } else {
1098 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1099 &ip->sin6.sin6_addr);
1100#endif
1101 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001102 release_sock(sk);
1103
Pravin B Shelar012a5722013-08-19 11:23:07 -07001104 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001105 dev_put(vxlan->dev);
1106}
1107
1108/* Inverse of vxlan_igmp_join when last VNI is brought down */
1109static void vxlan_igmp_leave(struct work_struct *work)
1110{
1111 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001112 struct vxlan_sock *vs = vxlan->vn_sock;
1113 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001114 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1115 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001116
1117 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001118 if (ip->sa.sa_family == AF_INET) {
1119 struct ip_mreqn mreq = {
1120 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1121 .imr_ifindex = ifindex,
1122 };
1123
1124 ip_mc_leave_group(sk, &mreq);
1125#if IS_ENABLED(CONFIG_IPV6)
1126 } else {
1127 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1128 &ip->sin6.sin6_addr);
1129#endif
1130 }
1131
stephen hemmingerd3428942012-10-01 12:32:35 +00001132 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001133
Pravin B Shelar012a5722013-08-19 11:23:07 -07001134 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001135 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001136}
1137
1138/* Callback from net/ipv4/udp.c to receive packets */
1139static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1140{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001141 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001142 struct vxlanhdr *vxh;
stephen hemmingerd3428942012-10-01 12:32:35 +00001143
stephen hemmingerd3428942012-10-01 12:32:35 +00001144 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001145 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001146 goto error;
1147
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001148 /* Return packets with reserved bits set */
1149 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +00001150 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
1151 (vxh->vx_vni & htonl(0xff))) {
1152 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1153 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1154 goto error;
1155 }
1156
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001157 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001158 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001159
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001160 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001161 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001162 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001163
Or Gerlitzd0bc6552014-01-23 11:28:13 +02001164 /* If the NIC driver gave us an encapsulated packet
1165 * with the encapsulation mark, the device checksummed it
1166 * for us. Otherwise force the upper layers to verify it.
1167 */
1168 if ((skb->ip_summed != CHECKSUM_UNNECESSARY && skb->ip_summed != CHECKSUM_PARTIAL) ||
1169 !skb->encapsulation)
1170 skb->ip_summed = CHECKSUM_NONE;
1171
1172 skb->encapsulation = 0;
1173
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001174 vs->rcv(vs, skb, vxh->vx_vni);
1175 return 0;
1176
1177drop:
1178 /* Consume bad packet */
1179 kfree_skb(skb);
1180 return 0;
1181
1182error:
1183 /* Return non vxlan pkt */
1184 return 1;
1185}
1186
1187static void vxlan_rcv(struct vxlan_sock *vs,
1188 struct sk_buff *skb, __be32 vx_vni)
1189{
Cong Wange4c7ed42013-08-31 13:44:33 +08001190 struct iphdr *oip = NULL;
1191 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001192 struct vxlan_dev *vxlan;
Li RongQing8f849852014-01-04 13:57:59 +08001193 struct pcpu_sw_netstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001194 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001195 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001196 int err = 0;
1197 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001198
1199 vni = ntohl(vx_vni) >> 8;
1200 /* Is this VNI defined? */
1201 vxlan = vxlan_vs_find_vni(vs, vni);
1202 if (!vxlan)
1203 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001204
Cong Wange4c7ed42013-08-31 13:44:33 +08001205 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001206 skb_reset_mac_header(skb);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001207 skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev)));
stephen hemmingerd3428942012-10-01 12:32:35 +00001208 skb->protocol = eth_type_trans(skb, vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001209
1210 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001211 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001212 goto drop;
1213
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001214 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001215 if (remote_ip->sa.sa_family == AF_INET) {
1216 oip = ip_hdr(skb);
1217 saddr.sin.sin_addr.s_addr = oip->saddr;
1218 saddr.sa.sa_family = AF_INET;
1219#if IS_ENABLED(CONFIG_IPV6)
1220 } else {
1221 oip6 = ipv6_hdr(skb);
1222 saddr.sin6.sin6_addr = oip6->saddr;
1223 saddr.sa.sa_family = AF_INET6;
1224#endif
1225 }
1226
stephen hemminger26a41ae62013-06-17 12:09:58 -07001227 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001228 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001229 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001230
stephen hemmingerd3428942012-10-01 12:32:35 +00001231 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001232
Cong Wange4c7ed42013-08-31 13:44:33 +08001233 if (oip6)
1234 err = IP6_ECN_decapsulate(oip6, skb);
1235 if (oip)
1236 err = IP_ECN_decapsulate(oip, skb);
1237
stephen hemmingerd3428942012-10-01 12:32:35 +00001238 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001239 if (log_ecn_error) {
1240 if (oip6)
1241 net_info_ratelimited("non-ECT from %pI6\n",
1242 &oip6->saddr);
1243 if (oip)
1244 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1245 &oip->saddr, oip->tos);
1246 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001247 if (err > 1) {
1248 ++vxlan->dev->stats.rx_frame_errors;
1249 ++vxlan->dev->stats.rx_errors;
1250 goto drop;
1251 }
1252 }
1253
Pravin B Shelare8171042013-03-25 14:49:46 +00001254 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001255 u64_stats_update_begin(&stats->syncp);
1256 stats->rx_packets++;
1257 stats->rx_bytes += skb->len;
1258 u64_stats_update_end(&stats->syncp);
1259
1260 netif_rx(skb);
1261
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001262 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001263drop:
1264 /* Consume bad packet */
1265 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001266}
1267
David Stevense4f67ad2012-11-20 02:50:14 +00001268static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1269{
1270 struct vxlan_dev *vxlan = netdev_priv(dev);
1271 struct arphdr *parp;
1272 u8 *arpptr, *sha;
1273 __be32 sip, tip;
1274 struct neighbour *n;
1275
1276 if (dev->flags & IFF_NOARP)
1277 goto out;
1278
1279 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1280 dev->stats.tx_dropped++;
1281 goto out;
1282 }
1283 parp = arp_hdr(skb);
1284
1285 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1286 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1287 parp->ar_pro != htons(ETH_P_IP) ||
1288 parp->ar_op != htons(ARPOP_REQUEST) ||
1289 parp->ar_hln != dev->addr_len ||
1290 parp->ar_pln != 4)
1291 goto out;
1292 arpptr = (u8 *)parp + sizeof(struct arphdr);
1293 sha = arpptr;
1294 arpptr += dev->addr_len; /* sha */
1295 memcpy(&sip, arpptr, sizeof(sip));
1296 arpptr += sizeof(sip);
1297 arpptr += dev->addr_len; /* tha */
1298 memcpy(&tip, arpptr, sizeof(tip));
1299
1300 if (ipv4_is_loopback(tip) ||
1301 ipv4_is_multicast(tip))
1302 goto out;
1303
1304 n = neigh_lookup(&arp_tbl, &tip, dev);
1305
1306 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001307 struct vxlan_fdb *f;
1308 struct sk_buff *reply;
1309
1310 if (!(n->nud_state & NUD_CONNECTED)) {
1311 neigh_release(n);
1312 goto out;
1313 }
1314
1315 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001316 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001317 /* bridge-local neighbor */
1318 neigh_release(n);
1319 goto out;
1320 }
1321
1322 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1323 n->ha, sha);
1324
1325 neigh_release(n);
1326
David Stevens73461352014-03-18 12:32:29 -04001327 if (reply == NULL)
1328 goto out;
1329
David Stevense4f67ad2012-11-20 02:50:14 +00001330 skb_reset_mac_header(reply);
1331 __skb_pull(reply, skb_network_offset(reply));
1332 reply->ip_summed = CHECKSUM_UNNECESSARY;
1333 reply->pkt_type = PACKET_HOST;
1334
1335 if (netif_rx_ni(reply) == NET_RX_DROP)
1336 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001337 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1338 union vxlan_addr ipa = {
1339 .sin.sin_addr.s_addr = tip,
1340 .sa.sa_family = AF_INET,
1341 };
1342
1343 vxlan_ip_miss(dev, &ipa);
1344 }
David Stevense4f67ad2012-11-20 02:50:14 +00001345out:
1346 consume_skb(skb);
1347 return NETDEV_TX_OK;
1348}
1349
Cong Wangf564f452013-08-31 13:44:36 +08001350#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001351
1352static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1353 struct neighbour *n, bool isrouter)
1354{
1355 struct net_device *dev = request->dev;
1356 struct sk_buff *reply;
1357 struct nd_msg *ns, *na;
1358 struct ipv6hdr *pip6;
1359 u8 *daddr;
1360 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1361 int ns_olen;
1362 int i, len;
1363
1364 if (dev == NULL)
1365 return NULL;
1366
1367 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1368 sizeof(*na) + na_olen + dev->needed_tailroom;
1369 reply = alloc_skb(len, GFP_ATOMIC);
1370 if (reply == NULL)
1371 return NULL;
1372
1373 reply->protocol = htons(ETH_P_IPV6);
1374 reply->dev = dev;
1375 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1376 skb_push(reply, sizeof(struct ethhdr));
1377 skb_set_mac_header(reply, 0);
1378
1379 ns = (struct nd_msg *)skb_transport_header(request);
1380
1381 daddr = eth_hdr(request)->h_source;
1382 ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns);
1383 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1384 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1385 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1386 break;
1387 }
1388 }
1389
1390 /* Ethernet header */
1391 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1392 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1393 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1394 reply->protocol = htons(ETH_P_IPV6);
1395
1396 skb_pull(reply, sizeof(struct ethhdr));
1397 skb_set_network_header(reply, 0);
1398 skb_put(reply, sizeof(struct ipv6hdr));
1399
1400 /* IPv6 header */
1401
1402 pip6 = ipv6_hdr(reply);
1403 memset(pip6, 0, sizeof(struct ipv6hdr));
1404 pip6->version = 6;
1405 pip6->priority = ipv6_hdr(request)->priority;
1406 pip6->nexthdr = IPPROTO_ICMPV6;
1407 pip6->hop_limit = 255;
1408 pip6->daddr = ipv6_hdr(request)->saddr;
1409 pip6->saddr = *(struct in6_addr *)n->primary_key;
1410
1411 skb_pull(reply, sizeof(struct ipv6hdr));
1412 skb_set_transport_header(reply, 0);
1413
1414 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1415
1416 /* Neighbor Advertisement */
1417 memset(na, 0, sizeof(*na)+na_olen);
1418 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1419 na->icmph.icmp6_router = isrouter;
1420 na->icmph.icmp6_override = 1;
1421 na->icmph.icmp6_solicited = 1;
1422 na->target = ns->target;
1423 ether_addr_copy(&na->opt[2], n->ha);
1424 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1425 na->opt[1] = na_olen >> 3;
1426
1427 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1428 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1429 csum_partial(na, sizeof(*na)+na_olen, 0));
1430
1431 pip6->payload_len = htons(sizeof(*na)+na_olen);
1432
1433 skb_push(reply, sizeof(struct ipv6hdr));
1434
1435 reply->ip_summed = CHECKSUM_UNNECESSARY;
1436
1437 return reply;
1438}
1439
Cong Wangf564f452013-08-31 13:44:36 +08001440static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1441{
1442 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001443 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001444 const struct ipv6hdr *iphdr;
1445 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001446 struct neighbour *n;
1447 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001448
1449 in6_dev = __in6_dev_get(dev);
1450 if (!in6_dev)
1451 goto out;
1452
1453 if (!pskb_may_pull(skb, skb->len))
1454 goto out;
1455
1456 iphdr = ipv6_hdr(skb);
1457 saddr = &iphdr->saddr;
1458 daddr = &iphdr->daddr;
1459
Cong Wangf564f452013-08-31 13:44:36 +08001460 msg = (struct nd_msg *)skb_transport_header(skb);
1461 if (msg->icmph.icmp6_code != 0 ||
1462 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1463 goto out;
1464
David Stevens4b29dba2014-03-24 10:39:58 -04001465 if (ipv6_addr_loopback(daddr) ||
1466 ipv6_addr_is_multicast(&msg->target))
1467 goto out;
1468
1469 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001470
1471 if (n) {
1472 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001473 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001474
1475 if (!(n->nud_state & NUD_CONNECTED)) {
1476 neigh_release(n);
1477 goto out;
1478 }
1479
1480 f = vxlan_find_mac(vxlan, n->ha);
1481 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1482 /* bridge-local neighbor */
1483 neigh_release(n);
1484 goto out;
1485 }
1486
David Stevens4b29dba2014-03-24 10:39:58 -04001487 reply = vxlan_na_create(skb, n,
1488 !!(f ? f->flags & NTF_ROUTER : 0));
1489
Cong Wangf564f452013-08-31 13:44:36 +08001490 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001491
1492 if (reply == NULL)
1493 goto out;
1494
1495 if (netif_rx_ni(reply) == NET_RX_DROP)
1496 dev->stats.rx_dropped++;
1497
Cong Wangf564f452013-08-31 13:44:36 +08001498 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001499 union vxlan_addr ipa = {
1500 .sin6.sin6_addr = msg->target,
1501 .sa.sa_family = AF_INET6,
1502 };
1503
Cong Wangf564f452013-08-31 13:44:36 +08001504 vxlan_ip_miss(dev, &ipa);
1505 }
1506
1507out:
1508 consume_skb(skb);
1509 return NETDEV_TX_OK;
1510}
1511#endif
1512
David Stevense4f67ad2012-11-20 02:50:14 +00001513static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1514{
1515 struct vxlan_dev *vxlan = netdev_priv(dev);
1516 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001517
1518 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1519 return false;
1520
1521 n = NULL;
1522 switch (ntohs(eth_hdr(skb)->h_proto)) {
1523 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001524 {
1525 struct iphdr *pip;
1526
David Stevense4f67ad2012-11-20 02:50:14 +00001527 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1528 return false;
1529 pip = ip_hdr(skb);
1530 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001531 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1532 union vxlan_addr ipa = {
1533 .sin.sin_addr.s_addr = pip->daddr,
1534 .sa.sa_family = AF_INET,
1535 };
1536
1537 vxlan_ip_miss(dev, &ipa);
1538 return false;
1539 }
1540
David Stevense4f67ad2012-11-20 02:50:14 +00001541 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001542 }
1543#if IS_ENABLED(CONFIG_IPV6)
1544 case ETH_P_IPV6:
1545 {
1546 struct ipv6hdr *pip6;
1547
1548 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1549 return false;
1550 pip6 = ipv6_hdr(skb);
1551 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1552 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1553 union vxlan_addr ipa = {
1554 .sin6.sin6_addr = pip6->daddr,
1555 .sa.sa_family = AF_INET6,
1556 };
1557
1558 vxlan_ip_miss(dev, &ipa);
1559 return false;
1560 }
1561
1562 break;
1563 }
1564#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001565 default:
1566 return false;
1567 }
1568
1569 if (n) {
1570 bool diff;
1571
Joe Perches7367d0b2013-09-01 11:51:23 -07001572 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001573 if (diff) {
1574 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1575 dev->addr_len);
1576 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1577 }
1578 neigh_release(n);
1579 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001580 }
1581
David Stevense4f67ad2012-11-20 02:50:14 +00001582 return false;
1583}
1584
stephen hemminger05f47d62012-10-09 20:35:50 +00001585/* Compute source port for outgoing packet
1586 * first choice to use L4 flow hash since it will spread
1587 * better and maybe available from hardware
1588 * secondary choice is to use jhash on the Ethernet header
1589 */
Pravin B Shelar49560532013-08-19 11:23:17 -07001590__be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb)
stephen hemminger05f47d62012-10-09 20:35:50 +00001591{
Pravin B Shelar49560532013-08-19 11:23:17 -07001592 unsigned int range = (port_max - port_min) + 1;
stephen hemminger05f47d62012-10-09 20:35:50 +00001593 u32 hash;
1594
Tom Herbert3958afa1b2013-12-15 22:12:06 -08001595 hash = skb_get_hash(skb);
stephen hemminger05f47d62012-10-09 20:35:50 +00001596 if (!hash)
1597 hash = jhash(skb->data, 2 * ETH_ALEN,
1598 (__force u32) skb->protocol);
1599
Pravin B Shelar49560532013-08-19 11:23:17 -07001600 return htons((((u64) hash * range) >> 32) + port_min);
stephen hemminger05f47d62012-10-09 20:35:50 +00001601}
Pravin B Shelar49560532013-08-19 11:23:17 -07001602EXPORT_SYMBOL_GPL(vxlan_src_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001603
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001604static int handle_offloads(struct sk_buff *skb)
1605{
1606 if (skb_is_gso(skb)) {
1607 int err = skb_unclone(skb, GFP_ATOMIC);
1608 if (unlikely(err))
1609 return err;
1610
Dmitry Kravkovf6ace502013-04-28 08:16:01 +00001611 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001612 } else if (skb->ip_summed != CHECKSUM_PARTIAL)
1613 skb->ip_summed = CHECKSUM_NONE;
1614
1615 return 0;
1616}
1617
Cong Wange4c7ed42013-08-31 13:44:33 +08001618#if IS_ENABLED(CONFIG_IPV6)
Nicolas Dichtel11796182013-09-02 15:34:55 +02001619static int vxlan6_xmit_skb(struct vxlan_sock *vs,
Cong Wange4c7ed42013-08-31 13:44:33 +08001620 struct dst_entry *dst, struct sk_buff *skb,
1621 struct net_device *dev, struct in6_addr *saddr,
1622 struct in6_addr *daddr, __u8 prio, __u8 ttl,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001623 __be16 src_port, __be16 dst_port, __be32 vni,
1624 bool xnet)
Cong Wange4c7ed42013-08-31 13:44:33 +08001625{
1626 struct ipv6hdr *ip6h;
1627 struct vxlanhdr *vxh;
1628 struct udphdr *uh;
1629 int min_headroom;
1630 int err;
1631
1632 if (!skb->encapsulation) {
1633 skb_reset_inner_headers(skb);
1634 skb->encapsulation = 1;
1635 }
1636
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001637 skb_scrub_packet(skb, xnet);
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001638
Cong Wange4c7ed42013-08-31 13:44:33 +08001639 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1640 + VXLAN_HLEN + sizeof(struct ipv6hdr)
1641 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1642
1643 /* Need space for new headers (invalidates iph ptr) */
1644 err = skb_cow_head(skb, min_headroom);
1645 if (unlikely(err))
1646 return err;
1647
1648 if (vlan_tx_tag_present(skb)) {
1649 if (WARN_ON(!__vlan_put_tag(skb,
1650 skb->vlan_proto,
1651 vlan_tx_tag_get(skb))))
1652 return -ENOMEM;
1653
1654 skb->vlan_tci = 0;
1655 }
1656
1657 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1658 vxh->vx_flags = htonl(VXLAN_FLAGS);
1659 vxh->vx_vni = vni;
1660
1661 __skb_push(skb, sizeof(*uh));
1662 skb_reset_transport_header(skb);
1663 uh = udp_hdr(skb);
1664
1665 uh->dest = dst_port;
1666 uh->source = src_port;
1667
1668 uh->len = htons(skb->len);
1669 uh->check = 0;
1670
1671 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1672 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1673 IPSKB_REROUTED);
Cong Wange4c7ed42013-08-31 13:44:33 +08001674 skb_dst_set(skb, dst);
1675
1676 if (!skb_is_gso(skb) && !(dst->dev->features & NETIF_F_IPV6_CSUM)) {
1677 __wsum csum = skb_checksum(skb, 0, skb->len, 0);
1678 skb->ip_summed = CHECKSUM_UNNECESSARY;
1679 uh->check = csum_ipv6_magic(saddr, daddr, skb->len,
1680 IPPROTO_UDP, csum);
1681 if (uh->check == 0)
1682 uh->check = CSUM_MANGLED_0;
1683 } else {
1684 skb->ip_summed = CHECKSUM_PARTIAL;
1685 skb->csum_start = skb_transport_header(skb) - skb->head;
1686 skb->csum_offset = offsetof(struct udphdr, check);
1687 uh->check = ~csum_ipv6_magic(saddr, daddr,
1688 skb->len, IPPROTO_UDP, 0);
1689 }
1690
1691 __skb_push(skb, sizeof(*ip6h));
1692 skb_reset_network_header(skb);
1693 ip6h = ipv6_hdr(skb);
1694 ip6h->version = 6;
1695 ip6h->priority = prio;
1696 ip6h->flow_lbl[0] = 0;
1697 ip6h->flow_lbl[1] = 0;
1698 ip6h->flow_lbl[2] = 0;
1699 ip6h->payload_len = htons(skb->len);
1700 ip6h->nexthdr = IPPROTO_UDP;
1701 ip6h->hop_limit = ttl;
1702 ip6h->daddr = *daddr;
1703 ip6h->saddr = *saddr;
1704
Cong Wange4c7ed42013-08-31 13:44:33 +08001705 err = handle_offloads(skb);
1706 if (err)
1707 return err;
1708
1709 ip6tunnel_xmit(skb, dev);
1710 return 0;
1711}
1712#endif
1713
Nicolas Dichtel11796182013-09-02 15:34:55 +02001714int vxlan_xmit_skb(struct vxlan_sock *vs,
Pravin B Shelar49560532013-08-19 11:23:17 -07001715 struct rtable *rt, struct sk_buff *skb,
1716 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001717 __be16 src_port, __be16 dst_port, __be32 vni, bool xnet)
Pravin B Shelar49560532013-08-19 11:23:17 -07001718{
1719 struct vxlanhdr *vxh;
1720 struct udphdr *uh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001721 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001722 int err;
1723
1724 if (!skb->encapsulation) {
1725 skb_reset_inner_headers(skb);
1726 skb->encapsulation = 1;
1727 }
1728
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001729 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001730 + VXLAN_HLEN + sizeof(struct iphdr)
1731 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001732
1733 /* Need space for new headers (invalidates iph ptr) */
1734 err = skb_cow_head(skb, min_headroom);
1735 if (unlikely(err))
1736 return err;
1737
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001738 if (vlan_tx_tag_present(skb)) {
1739 if (WARN_ON(!__vlan_put_tag(skb,
1740 skb->vlan_proto,
1741 vlan_tx_tag_get(skb))))
1742 return -ENOMEM;
1743
1744 skb->vlan_tci = 0;
1745 }
1746
Pravin B Shelar49560532013-08-19 11:23:17 -07001747 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1748 vxh->vx_flags = htonl(VXLAN_FLAGS);
1749 vxh->vx_vni = vni;
1750
1751 __skb_push(skb, sizeof(*uh));
1752 skb_reset_transport_header(skb);
1753 uh = udp_hdr(skb);
1754
1755 uh->dest = dst_port;
1756 uh->source = src_port;
1757
1758 uh->len = htons(skb->len);
1759 uh->check = 0;
1760
Pravin B Shelar49560532013-08-19 11:23:17 -07001761 err = handle_offloads(skb);
1762 if (err)
1763 return err;
1764
Eric Dumazetaad88722014-04-15 13:47:15 -04001765 return iptunnel_xmit(vs->sock->sk, rt, skb, src, dst, IPPROTO_UDP,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001766 tos, ttl, df, xnet);
Pravin B Shelar49560532013-08-19 11:23:17 -07001767}
1768EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1769
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001770/* Bypass encapsulation if the destination is local */
1771static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1772 struct vxlan_dev *dst_vxlan)
1773{
Li RongQing8f849852014-01-04 13:57:59 +08001774 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001775 union vxlan_addr loopback;
1776 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001777
Li RongQing8f849852014-01-04 13:57:59 +08001778 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1779 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001780 skb->pkt_type = PACKET_HOST;
1781 skb->encapsulation = 0;
1782 skb->dev = dst_vxlan->dev;
1783 __skb_pull(skb, skb_network_offset(skb));
1784
Cong Wange4c7ed42013-08-31 13:44:33 +08001785 if (remote_ip->sa.sa_family == AF_INET) {
1786 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1787 loopback.sa.sa_family = AF_INET;
1788#if IS_ENABLED(CONFIG_IPV6)
1789 } else {
1790 loopback.sin6.sin6_addr = in6addr_loopback;
1791 loopback.sa.sa_family = AF_INET6;
1792#endif
1793 }
1794
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001795 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001796 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001797
1798 u64_stats_update_begin(&tx_stats->syncp);
1799 tx_stats->tx_packets++;
1800 tx_stats->tx_bytes += skb->len;
1801 u64_stats_update_end(&tx_stats->syncp);
1802
1803 if (netif_rx(skb) == NET_RX_SUCCESS) {
1804 u64_stats_update_begin(&rx_stats->syncp);
1805 rx_stats->rx_packets++;
1806 rx_stats->rx_bytes += skb->len;
1807 u64_stats_update_end(&rx_stats->syncp);
1808 } else {
1809 skb->dev->stats.rx_dropped++;
1810 }
1811}
1812
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001813static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1814 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001815{
1816 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001817 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001818 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001819 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001820 union vxlan_addr *dst;
1821 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001822 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001823 __be16 df = 0;
1824 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001825 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001826
stephen hemminger823aa872013-04-27 11:31:57 +00001827 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001828 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001829 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001830
Cong Wange4c7ed42013-08-31 13:44:33 +08001831 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001832 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001833 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001834 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001835 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001836 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001837 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001838 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001839
stephen hemmingerd3428942012-10-01 12:32:35 +00001840 old_iph = ip_hdr(skb);
1841
stephen hemmingerd3428942012-10-01 12:32:35 +00001842 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001843 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001844 ttl = 1;
1845
1846 tos = vxlan->tos;
1847 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001848 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001849
Pravin B Shelar49560532013-08-19 11:23:17 -07001850 src_port = vxlan_src_port(vxlan->port_min, vxlan->port_max, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001851
Cong Wange4c7ed42013-08-31 13:44:33 +08001852 if (dst->sa.sa_family == AF_INET) {
1853 memset(&fl4, 0, sizeof(fl4));
1854 fl4.flowi4_oif = rdst->remote_ifindex;
1855 fl4.flowi4_tos = RT_TOS(tos);
1856 fl4.daddr = dst->sin.sin_addr.s_addr;
1857 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001858
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001859 rt = ip_route_output_key(vxlan->net, &fl4);
Cong Wange4c7ed42013-08-31 13:44:33 +08001860 if (IS_ERR(rt)) {
1861 netdev_dbg(dev, "no route to %pI4\n",
1862 &dst->sin.sin_addr.s_addr);
1863 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001864 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001865 }
1866
1867 if (rt->dst.dev == dev) {
1868 netdev_dbg(dev, "circular route to %pI4\n",
1869 &dst->sin.sin_addr.s_addr);
1870 dev->stats.collisions++;
Fan Dufffc15a2013-12-09 10:33:53 +08001871 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001872 }
1873
1874 /* Bypass encapsulation if the destination is local */
1875 if (rt->rt_flags & RTCF_LOCAL &&
1876 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1877 struct vxlan_dev *dst_vxlan;
1878
1879 ip_rt_put(rt);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001880 dst_vxlan = vxlan_find_vni(vxlan->net, vni, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001881 if (!dst_vxlan)
1882 goto tx_error;
1883 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1884 return;
1885 }
1886
1887 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1888 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
1889
Nicolas Dichtel11796182013-09-02 15:34:55 +02001890 err = vxlan_xmit_skb(vxlan->vn_sock, rt, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001891 fl4.saddr, dst->sin.sin_addr.s_addr,
1892 tos, ttl, df, src_port, dst_port,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001893 htonl(vni << 8),
1894 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Cong Wange4c7ed42013-08-31 13:44:33 +08001895
1896 if (err < 0)
1897 goto rt_tx_error;
1898 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1899#if IS_ENABLED(CONFIG_IPV6)
1900 } else {
1901 struct sock *sk = vxlan->vn_sock->sock->sk;
1902 struct dst_entry *ndst;
1903 struct flowi6 fl6;
1904 u32 flags;
1905
1906 memset(&fl6, 0, sizeof(fl6));
1907 fl6.flowi6_oif = rdst->remote_ifindex;
1908 fl6.daddr = dst->sin6.sin6_addr;
1909 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08001910 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08001911
1912 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
1913 netdev_dbg(dev, "no route to %pI6\n",
1914 &dst->sin6.sin6_addr);
1915 dev->stats.tx_carrier_errors++;
1916 goto tx_error;
1917 }
1918
1919 if (ndst->dev == dev) {
1920 netdev_dbg(dev, "circular route to %pI6\n",
1921 &dst->sin6.sin6_addr);
1922 dst_release(ndst);
1923 dev->stats.collisions++;
1924 goto tx_error;
1925 }
1926
1927 /* Bypass encapsulation if the destination is local */
1928 flags = ((struct rt6_info *)ndst)->rt6i_flags;
1929 if (flags & RTF_LOCAL &&
1930 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1931 struct vxlan_dev *dst_vxlan;
1932
1933 dst_release(ndst);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001934 dst_vxlan = vxlan_find_vni(vxlan->net, vni, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001935 if (!dst_vxlan)
1936 goto tx_error;
1937 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1938 return;
1939 }
1940
1941 ttl = ttl ? : ip6_dst_hoplimit(ndst);
1942
Nicolas Dichtel11796182013-09-02 15:34:55 +02001943 err = vxlan6_xmit_skb(vxlan->vn_sock, ndst, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001944 dev, &fl6.saddr, &fl6.daddr, 0, ttl,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001945 src_port, dst_port, htonl(vni << 8),
1946 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Cong Wange4c7ed42013-08-31 13:44:33 +08001947#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001948 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001949
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001950 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001951
1952drop:
1953 dev->stats.tx_dropped++;
1954 goto tx_free;
1955
Pravin B Shelar49560532013-08-19 11:23:17 -07001956rt_tx_error:
1957 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001958tx_error:
1959 dev->stats.tx_errors++;
1960tx_free:
1961 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001962}
1963
David Stevens66817122013-03-15 04:35:51 +00001964/* Transmit local packets over Vxlan
1965 *
1966 * Outer IP header inherits ECN and DF from inner header.
1967 * Outer UDP destination is the VXLAN assigned port.
1968 * source port is based on hash of flow
1969 */
1970static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1971{
1972 struct vxlan_dev *vxlan = netdev_priv(dev);
1973 struct ethhdr *eth;
1974 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08001975 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00001976 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00001977
1978 skb_reset_mac_header(skb);
1979 eth = eth_hdr(skb);
1980
Cong Wangf564f452013-08-31 13:44:36 +08001981 if ((vxlan->flags & VXLAN_F_PROXY)) {
1982 if (ntohs(eth->h_proto) == ETH_P_ARP)
1983 return arp_reduce(dev, skb);
1984#if IS_ENABLED(CONFIG_IPV6)
1985 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
1986 skb->len >= sizeof(struct ipv6hdr) + sizeof(struct nd_msg) &&
1987 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
1988 struct nd_msg *msg;
1989
1990 msg = (struct nd_msg *)skb_transport_header(skb);
1991 if (msg->icmph.icmp6_code == 0 &&
1992 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
1993 return neigh_reduce(dev, skb);
1994 }
1995#endif
1996 }
David Stevens66817122013-03-15 04:35:51 +00001997
1998 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00001999 did_rsc = false;
2000
2001 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002002 (ntohs(eth->h_proto) == ETH_P_IP ||
2003 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002004 did_rsc = route_shortcircuit(dev, skb);
2005 if (did_rsc)
2006 f = vxlan_find_mac(vxlan, eth->h_dest);
2007 }
2008
David Stevens66817122013-03-15 04:35:51 +00002009 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002010 f = vxlan_find_mac(vxlan, all_zeros_mac);
2011 if (f == NULL) {
2012 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2013 !is_multicast_ether_addr(eth->h_dest))
2014 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002015
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002016 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002017 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002018 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002019 }
David Stevens66817122013-03-15 04:35:51 +00002020 }
2021
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002022 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2023 struct sk_buff *skb1;
2024
Eric Dumazet8f646c92014-01-06 09:54:31 -08002025 if (!fdst) {
2026 fdst = rdst;
2027 continue;
2028 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002029 skb1 = skb_clone(skb, GFP_ATOMIC);
2030 if (skb1)
2031 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
2032 }
2033
Eric Dumazet8f646c92014-01-06 09:54:31 -08002034 if (fdst)
2035 vxlan_xmit_one(skb, dev, fdst, did_rsc);
2036 else
2037 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002038 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002039}
2040
stephen hemmingerd3428942012-10-01 12:32:35 +00002041/* Walk the forwarding table and purge stale entries */
2042static void vxlan_cleanup(unsigned long arg)
2043{
2044 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2045 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2046 unsigned int h;
2047
2048 if (!netif_running(vxlan->dev))
2049 return;
2050
2051 spin_lock_bh(&vxlan->hash_lock);
2052 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2053 struct hlist_node *p, *n;
2054 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2055 struct vxlan_fdb *f
2056 = container_of(p, struct vxlan_fdb, hlist);
2057 unsigned long timeout;
2058
stephen hemminger3c172862012-10-26 06:24:34 +00002059 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00002060 continue;
2061
2062 timeout = f->used + vxlan->age_interval * HZ;
2063 if (time_before_eq(timeout, jiffies)) {
2064 netdev_dbg(vxlan->dev,
2065 "garbage collect %pM\n",
2066 f->eth_addr);
2067 f->state = NUD_STALE;
2068 vxlan_fdb_destroy(vxlan, f);
2069 } else if (time_before(timeout, next_timer))
2070 next_timer = timeout;
2071 }
2072 }
2073 spin_unlock_bh(&vxlan->hash_lock);
2074
2075 mod_timer(&vxlan->age_timer, next_timer);
2076}
2077
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002078static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2079{
2080 __u32 vni = vxlan->default_dst.remote_vni;
2081
2082 vxlan->vn_sock = vs;
2083 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
2084}
2085
stephen hemmingerd3428942012-10-01 12:32:35 +00002086/* Setup stats when device is created */
2087static int vxlan_init(struct net_device *dev)
2088{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002089 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002090 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002091 struct vxlan_sock *vs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002092
WANG Cong1c213bd2014-02-13 11:46:28 -08002093 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002094 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002095 return -ENOMEM;
2096
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002097 spin_lock(&vn->sock_lock);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002098 vs = vxlan_find_sock(vxlan->net, vxlan->dst_port);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002099 if (vs) {
2100 /* If we have a socket with same port already, reuse it */
2101 atomic_inc(&vs->refcnt);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002102 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002103 } else {
2104 /* otherwise make new socket outside of RTNL */
2105 dev_hold(dev);
2106 queue_work(vxlan_wq, &vxlan->sock_work);
2107 }
2108 spin_unlock(&vn->sock_lock);
2109
stephen hemmingerd3428942012-10-01 12:32:35 +00002110 return 0;
2111}
2112
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002113static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002114{
2115 struct vxlan_fdb *f;
2116
2117 spin_lock_bh(&vxlan->hash_lock);
2118 f = __vxlan_find_mac(vxlan, all_zeros_mac);
2119 if (f)
2120 vxlan_fdb_destroy(vxlan, f);
2121 spin_unlock_bh(&vxlan->hash_lock);
2122}
2123
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002124static void vxlan_uninit(struct net_device *dev)
2125{
2126 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002127 struct vxlan_sock *vs = vxlan->vn_sock;
2128
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002129 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002130
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002131 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07002132 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002133 free_percpu(dev->tstats);
2134}
2135
stephen hemmingerd3428942012-10-01 12:32:35 +00002136/* Start ageing timer and join group when device is brought up */
2137static int vxlan_open(struct net_device *dev)
2138{
2139 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002140 struct vxlan_sock *vs = vxlan->vn_sock;
2141
2142 /* socket hasn't been created */
2143 if (!vs)
2144 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002145
Gao feng79d4a942013-12-10 16:37:32 +08002146 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002147 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002148 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002149 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00002150 }
2151
2152 if (vxlan->age_interval)
2153 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2154
2155 return 0;
2156}
2157
2158/* Purge the forwarding table */
2159static void vxlan_flush(struct vxlan_dev *vxlan)
2160{
Cong Wang31fec5a2013-05-27 22:35:52 +00002161 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002162
2163 spin_lock_bh(&vxlan->hash_lock);
2164 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2165 struct hlist_node *p, *n;
2166 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2167 struct vxlan_fdb *f
2168 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002169 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2170 if (!is_zero_ether_addr(f->eth_addr))
2171 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002172 }
2173 }
2174 spin_unlock_bh(&vxlan->hash_lock);
2175}
2176
2177/* Cleanup timer and forwarding table on shutdown */
2178static int vxlan_stop(struct net_device *dev)
2179{
2180 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002181 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002182 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00002183
Cong Wange4c7ed42013-08-31 13:44:33 +08002184 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
Gao feng95ab0992013-12-10 16:37:33 +08002185 !vxlan_group_used(vn, vxlan)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002186 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002187 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002188 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002189 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002190
2191 del_timer_sync(&vxlan->age_timer);
2192
2193 vxlan_flush(vxlan);
2194
2195 return 0;
2196}
2197
stephen hemmingerd3428942012-10-01 12:32:35 +00002198/* Stub, nothing needs to be done. */
2199static void vxlan_set_multicast_list(struct net_device *dev)
2200{
2201}
2202
Daniel Borkmann345010b2013-12-18 00:21:08 +01002203static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2204{
2205 struct vxlan_dev *vxlan = netdev_priv(dev);
2206 struct vxlan_rdst *dst = &vxlan->default_dst;
2207 struct net_device *lowerdev;
2208 int max_mtu;
2209
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002210 lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002211 if (lowerdev == NULL)
2212 return eth_change_mtu(dev, new_mtu);
2213
2214 if (dst->remote_ip.sa.sa_family == AF_INET6)
2215 max_mtu = lowerdev->mtu - VXLAN6_HEADROOM;
2216 else
2217 max_mtu = lowerdev->mtu - VXLAN_HEADROOM;
2218
2219 if (new_mtu < 68 || new_mtu > max_mtu)
2220 return -EINVAL;
2221
2222 dev->mtu = new_mtu;
2223 return 0;
2224}
2225
stephen hemmingerd3428942012-10-01 12:32:35 +00002226static const struct net_device_ops vxlan_netdev_ops = {
2227 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002228 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002229 .ndo_open = vxlan_open,
2230 .ndo_stop = vxlan_stop,
2231 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002232 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002233 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002234 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002235 .ndo_validate_addr = eth_validate_addr,
2236 .ndo_set_mac_address = eth_mac_addr,
2237 .ndo_fdb_add = vxlan_fdb_add,
2238 .ndo_fdb_del = vxlan_fdb_delete,
2239 .ndo_fdb_dump = vxlan_fdb_dump,
2240};
2241
2242/* Info for udev, that this is a virtual tunnel endpoint */
2243static struct device_type vxlan_type = {
2244 .name = "vxlan",
2245};
2246
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002247/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002248 * supply the listening VXLAN udp ports. Callers are expected
2249 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002250 */
2251void vxlan_get_rx_port(struct net_device *dev)
2252{
2253 struct vxlan_sock *vs;
2254 struct net *net = dev_net(dev);
2255 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2256 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002257 __be16 port;
2258 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002259
2260 spin_lock(&vn->sock_lock);
2261 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002262 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2263 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002264 sa_family = vs->sock->sk->sk_family;
2265 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2266 port);
2267 }
2268 }
2269 spin_unlock(&vn->sock_lock);
2270}
2271EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2272
stephen hemmingerd3428942012-10-01 12:32:35 +00002273/* Initialize the device structure. */
2274static void vxlan_setup(struct net_device *dev)
2275{
2276 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002277 unsigned int h;
stephen hemminger05f47d62012-10-09 20:35:50 +00002278 int low, high;
stephen hemmingerd3428942012-10-01 12:32:35 +00002279
2280 eth_hw_addr_random(dev);
2281 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002282 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
2283 dev->hard_header_len = ETH_HLEN + VXLAN6_HEADROOM;
2284 else
2285 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002286
2287 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002288 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002289 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2290
2291 dev->tx_queue_len = 0;
2292 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002293 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002294 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002295 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002296
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002297 dev->vlan_features = dev->features;
2298 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002299 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002300 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002301 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
stephen hemmingerd3428942012-10-01 12:32:35 +00002302 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
stephen hemminger6602d002012-12-31 12:00:21 +00002303 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002304
stephen hemminger553675f2013-05-16 11:35:20 +00002305 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002306 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002307 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2308 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002309 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002310
2311 init_timer_deferrable(&vxlan->age_timer);
2312 vxlan->age_timer.function = vxlan_cleanup;
2313 vxlan->age_timer.data = (unsigned long) vxlan;
2314
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -07002315 inet_get_local_port_range(dev_net(dev), &low, &high);
stephen hemminger05f47d62012-10-09 20:35:50 +00002316 vxlan->port_min = low;
2317 vxlan->port_max = high;
stephen hemminger823aa872013-04-27 11:31:57 +00002318 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002319
stephen hemmingerd3428942012-10-01 12:32:35 +00002320 vxlan->dev = dev;
2321
2322 for (h = 0; h < FDB_HASH_SIZE; ++h)
2323 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2324}
2325
2326static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2327 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002328 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002329 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002330 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2331 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002332 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002333 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2334 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2335 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2336 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2337 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002338 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002339 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2340 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2341 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2342 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002343 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002344};
2345
2346static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2347{
2348 if (tb[IFLA_ADDRESS]) {
2349 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2350 pr_debug("invalid link address (not ethernet)\n");
2351 return -EINVAL;
2352 }
2353
2354 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2355 pr_debug("invalid all zero ethernet address\n");
2356 return -EADDRNOTAVAIL;
2357 }
2358 }
2359
2360 if (!data)
2361 return -EINVAL;
2362
2363 if (data[IFLA_VXLAN_ID]) {
2364 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2365 if (id >= VXLAN_VID_MASK)
2366 return -ERANGE;
2367 }
2368
stephen hemminger05f47d62012-10-09 20:35:50 +00002369 if (data[IFLA_VXLAN_PORT_RANGE]) {
2370 const struct ifla_vxlan_port_range *p
2371 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2372
2373 if (ntohs(p->high) < ntohs(p->low)) {
2374 pr_debug("port range %u .. %u not valid\n",
2375 ntohs(p->low), ntohs(p->high));
2376 return -EINVAL;
2377 }
2378 }
2379
stephen hemmingerd3428942012-10-01 12:32:35 +00002380 return 0;
2381}
2382
Yan Burman1b13c972013-01-29 23:43:07 +00002383static void vxlan_get_drvinfo(struct net_device *netdev,
2384 struct ethtool_drvinfo *drvinfo)
2385{
2386 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2387 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2388}
2389
2390static const struct ethtool_ops vxlan_ethtool_ops = {
2391 .get_drvinfo = vxlan_get_drvinfo,
2392 .get_link = ethtool_op_get_link,
2393};
2394
stephen hemminger553675f2013-05-16 11:35:20 +00002395static void vxlan_del_work(struct work_struct *work)
2396{
2397 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
2398
2399 sk_release_kernel(vs->sock->sk);
2400 kfree_rcu(vs, rcu);
2401}
2402
Cong Wange4c7ed42013-08-31 13:44:33 +08002403#if IS_ENABLED(CONFIG_IPV6)
2404/* Create UDP socket for encapsulation receive. AF_INET6 socket
2405 * could be used for both IPv4 and IPv6 communications, but
2406 * users may set bindv6only=1.
2407 */
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002408static struct socket *create_v6_sock(struct net *net, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +00002409{
stephen hemminger553675f2013-05-16 11:35:20 +00002410 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08002411 struct socket *sock;
2412 struct sockaddr_in6 vxlan_addr = {
2413 .sin6_family = AF_INET6,
2414 .sin6_port = port,
2415 };
2416 int rc, val = 1;
2417
2418 rc = sock_create_kern(AF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock);
2419 if (rc < 0) {
2420 pr_debug("UDPv6 socket create failed\n");
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002421 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002422 }
2423
2424 /* Put in proper namespace */
2425 sk = sock->sk;
2426 sk_change_net(sk, net);
2427
2428 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
2429 (char *)&val, sizeof(val));
2430 rc = kernel_bind(sock, (struct sockaddr *)&vxlan_addr,
2431 sizeof(struct sockaddr_in6));
2432 if (rc < 0) {
2433 pr_debug("bind for UDPv6 socket %pI6:%u (%d)\n",
2434 &vxlan_addr.sin6_addr, ntohs(vxlan_addr.sin6_port), rc);
2435 sk_release_kernel(sk);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002436 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002437 }
2438 /* At this point, IPv6 module should have been loaded in
2439 * sock_create_kern().
2440 */
2441 BUG_ON(!ipv6_stub);
2442
Cong Wange4c7ed42013-08-31 13:44:33 +08002443 /* Disable multicast loopback */
2444 inet_sk(sk)->mc_loop = 0;
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002445 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002446}
2447
2448#else
2449
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002450static struct socket *create_v6_sock(struct net *net, __be16 port)
Cong Wange4c7ed42013-08-31 13:44:33 +08002451{
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002452 return ERR_PTR(-EPFNOSUPPORT);
Cong Wange4c7ed42013-08-31 13:44:33 +08002453}
2454#endif
2455
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002456static struct socket *create_v4_sock(struct net *net, __be16 port)
Cong Wange4c7ed42013-08-31 13:44:33 +08002457{
2458 struct sock *sk;
2459 struct socket *sock;
stephen hemminger553675f2013-05-16 11:35:20 +00002460 struct sockaddr_in vxlan_addr = {
2461 .sin_family = AF_INET,
2462 .sin_addr.s_addr = htonl(INADDR_ANY),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -07002463 .sin_port = port,
stephen hemminger553675f2013-05-16 11:35:20 +00002464 };
2465 int rc;
Cong Wange4c7ed42013-08-31 13:44:33 +08002466
2467 /* Create UDP socket for encapsulation receive. */
2468 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
2469 if (rc < 0) {
2470 pr_debug("UDP socket create failed\n");
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002471 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002472 }
2473
2474 /* Put in proper namespace */
2475 sk = sock->sk;
2476 sk_change_net(sk, net);
2477
2478 rc = kernel_bind(sock, (struct sockaddr *) &vxlan_addr,
2479 sizeof(vxlan_addr));
2480 if (rc < 0) {
2481 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
2482 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
2483 sk_release_kernel(sk);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002484 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002485 }
2486
Cong Wange4c7ed42013-08-31 13:44:33 +08002487 /* Disable multicast loopback */
2488 inet_sk(sk)->mc_loop = 0;
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002489 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002490}
2491
2492/* Create new listen socket if needed */
2493static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
2494 vxlan_rcv_t *rcv, void *data, bool ipv6)
2495{
2496 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2497 struct vxlan_sock *vs;
2498 struct socket *sock;
2499 struct sock *sk;
Cong Wang31fec5a2013-05-27 22:35:52 +00002500 unsigned int h;
stephen hemminger553675f2013-05-16 11:35:20 +00002501
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002502 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002503 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002504 return ERR_PTR(-ENOMEM);
2505
2506 for (h = 0; h < VNI_HASH_SIZE; ++h)
2507 INIT_HLIST_HEAD(&vs->vni_list[h]);
2508
2509 INIT_WORK(&vs->del_work, vxlan_del_work);
2510
Cong Wange4c7ed42013-08-31 13:44:33 +08002511 if (ipv6)
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002512 sock = create_v6_sock(net, port);
Cong Wange4c7ed42013-08-31 13:44:33 +08002513 else
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002514 sock = create_v4_sock(net, port);
2515 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002516 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002517 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002518 }
2519
Cong Wange4c7ed42013-08-31 13:44:33 +08002520 vs->sock = sock;
2521 sk = sock->sk;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002522 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002523 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002524 vs->data = data;
Pravin B Shelar559835ea2013-09-24 10:25:40 -07002525 rcu_assign_sk_user_data(vs->sock->sk, vs);
stephen hemminger553675f2013-05-16 11:35:20 +00002526
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002527 /* Initialize the vxlan udp offloads structure */
2528 vs->udp_offloads.port = port;
2529 vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive;
2530 vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete;
2531
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002532 spin_lock(&vn->sock_lock);
2533 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002534 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002535 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002536
2537 /* Mark socket as an encapsulation socket. */
2538 udp_sk(sk)->encap_type = 1;
2539 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
Cong Wange4c7ed42013-08-31 13:44:33 +08002540#if IS_ENABLED(CONFIG_IPV6)
2541 if (ipv6)
2542 ipv6_stub->udpv6_encap_enable();
2543 else
2544#endif
2545 udp_encap_enable();
2546
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002547 return vs;
2548}
stephen hemminger553675f2013-05-16 11:35:20 +00002549
Pravin B Shelar012a5722013-08-19 11:23:07 -07002550struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2551 vxlan_rcv_t *rcv, void *data,
Cong Wange4c7ed42013-08-31 13:44:33 +08002552 bool no_share, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002553{
2554 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2555 struct vxlan_sock *vs;
2556
Cong Wange4c7ed42013-08-31 13:44:33 +08002557 vs = vxlan_socket_create(net, port, rcv, data, ipv6);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002558 if (!IS_ERR(vs))
2559 return vs;
2560
Pravin B Shelar012a5722013-08-19 11:23:07 -07002561 if (no_share) /* Return error if sharing is not allowed. */
2562 return vs;
2563
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002564 spin_lock(&vn->sock_lock);
2565 vs = vxlan_find_sock(net, port);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002566 if (vs) {
2567 if (vs->rcv == rcv)
2568 atomic_inc(&vs->refcnt);
2569 else
2570 vs = ERR_PTR(-EBUSY);
2571 }
2572 spin_unlock(&vn->sock_lock);
2573
2574 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002575 vs = ERR_PTR(-EINVAL);
2576
stephen hemminger553675f2013-05-16 11:35:20 +00002577 return vs;
2578}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002579EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002580
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002581/* Scheduled at device creation to bind to a socket */
2582static void vxlan_sock_work(struct work_struct *work)
2583{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002584 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002585 struct net *net = vxlan->net;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002586 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002587 __be16 port = vxlan->dst_port;
2588 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002589
Cong Wange4c7ed42013-08-31 13:44:33 +08002590 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags & VXLAN_F_IPV6);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002591 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002592 if (!IS_ERR(nvs))
2593 vxlan_vs_add_dev(nvs, vxlan);
2594 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002595
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002596 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002597}
2598
stephen hemmingerd3428942012-10-01 12:32:35 +00002599static int vxlan_newlink(struct net *net, struct net_device *dev,
2600 struct nlattr *tb[], struct nlattr *data[])
2601{
stephen hemminger553675f2013-05-16 11:35:20 +00002602 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002603 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002604 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002605 __u32 vni;
2606 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002607 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002608
2609 if (!data[IFLA_VXLAN_ID])
2610 return -EINVAL;
2611
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002612 vxlan->net = dev_net(dev);
2613
stephen hemmingerd3428942012-10-01 12:32:35 +00002614 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002615 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002616
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002617 /* Unless IPv6 is explicitly requested, assume IPv4 */
2618 dst->remote_ip.sa.sa_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002619 if (data[IFLA_VXLAN_GROUP]) {
2620 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
Cong Wange4c7ed42013-08-31 13:44:33 +08002621 } else if (data[IFLA_VXLAN_GROUP6]) {
2622 if (!IS_ENABLED(CONFIG_IPV6))
2623 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002624
Cong Wange4c7ed42013-08-31 13:44:33 +08002625 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2626 sizeof(struct in6_addr));
2627 dst->remote_ip.sa.sa_family = AF_INET6;
2628 use_ipv6 = true;
2629 }
2630
2631 if (data[IFLA_VXLAN_LOCAL]) {
2632 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2633 vxlan->saddr.sa.sa_family = AF_INET;
2634 } else if (data[IFLA_VXLAN_LOCAL6]) {
2635 if (!IS_ENABLED(CONFIG_IPV6))
2636 return -EPFNOSUPPORT;
2637
2638 /* TODO: respect scope id */
2639 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2640 sizeof(struct in6_addr));
2641 vxlan->saddr.sa.sa_family = AF_INET6;
2642 use_ipv6 = true;
2643 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002644
stephen hemminger34e02aa2012-10-09 20:35:53 +00002645 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002646 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002647 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00002648 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002649
stephen hemminger34e02aa2012-10-09 20:35:53 +00002650 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002651 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002652 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002653 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002654
Cong Wange4c7ed42013-08-31 13:44:33 +08002655#if IS_ENABLED(CONFIG_IPV6)
2656 if (use_ipv6) {
2657 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2658 if (idev && idev->cnf.disable_ipv6) {
2659 pr_info("IPv6 is disabled via sysctl\n");
2660 return -EPERM;
2661 }
2662 vxlan->flags |= VXLAN_F_IPV6;
2663 }
2664#endif
2665
stephen hemminger34e02aa2012-10-09 20:35:53 +00002666 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002667 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002668
2669 /* update header length based on lower device */
2670 dev->hard_header_len = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002671 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
fan.du7bda7012014-01-03 10:18:58 +08002672 } else if (use_ipv6)
2673 vxlan->flags |= VXLAN_F_IPV6;
stephen hemmingerd3428942012-10-01 12:32:35 +00002674
2675 if (data[IFLA_VXLAN_TOS])
2676 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2677
Vincent Bernatafb97182012-10-30 10:27:16 +00002678 if (data[IFLA_VXLAN_TTL])
2679 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2680
stephen hemmingerd3428942012-10-01 12:32:35 +00002681 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002682 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002683
2684 if (data[IFLA_VXLAN_AGEING])
2685 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2686 else
2687 vxlan->age_interval = FDB_AGE_DEFAULT;
2688
David Stevense4f67ad2012-11-20 02:50:14 +00002689 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2690 vxlan->flags |= VXLAN_F_PROXY;
2691
2692 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2693 vxlan->flags |= VXLAN_F_RSC;
2694
2695 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2696 vxlan->flags |= VXLAN_F_L2MISS;
2697
2698 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2699 vxlan->flags |= VXLAN_F_L3MISS;
2700
stephen hemmingerd3428942012-10-01 12:32:35 +00002701 if (data[IFLA_VXLAN_LIMIT])
2702 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2703
stephen hemminger05f47d62012-10-09 20:35:50 +00002704 if (data[IFLA_VXLAN_PORT_RANGE]) {
2705 const struct ifla_vxlan_port_range *p
2706 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2707 vxlan->port_min = ntohs(p->low);
2708 vxlan->port_max = ntohs(p->high);
2709 }
2710
stephen hemminger823aa872013-04-27 11:31:57 +00002711 if (data[IFLA_VXLAN_PORT])
2712 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2713
stephen hemminger553675f2013-05-16 11:35:20 +00002714 if (vxlan_find_vni(net, vni, vxlan->dst_port)) {
2715 pr_info("duplicate VNI %u\n", vni);
2716 return -EEXIST;
2717 }
2718
Yan Burman1b13c972013-01-29 23:43:07 +00002719 SET_ETHTOOL_OPS(dev, &vxlan_ethtool_ops);
2720
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002721 /* create an fdb entry for a valid default destination */
2722 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2723 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2724 &vxlan->default_dst.remote_ip,
2725 NUD_REACHABLE|NUD_PERMANENT,
2726 NLM_F_EXCL|NLM_F_CREATE,
2727 vxlan->dst_port,
2728 vxlan->default_dst.remote_vni,
2729 vxlan->default_dst.remote_ifindex,
2730 NTF_SELF);
2731 if (err)
2732 return err;
2733 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002734
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002735 err = register_netdevice(dev);
2736 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002737 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002738 return err;
2739 }
2740
stephen hemminger553675f2013-05-16 11:35:20 +00002741 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002742
2743 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002744}
2745
2746static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2747{
2748 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002749 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002750
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002751 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002752 if (!hlist_unhashed(&vxlan->hlist))
2753 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002754 spin_unlock(&vn->sock_lock);
2755
stephen hemminger553675f2013-05-16 11:35:20 +00002756 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002757 unregister_netdevice_queue(dev, head);
2758}
2759
2760static size_t vxlan_get_size(const struct net_device *dev)
2761{
2762
2763 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002764 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002765 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002766 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002767 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2768 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2769 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002770 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2771 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2772 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2773 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002774 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2775 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002776 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
stephen hemminger823aa872013-04-27 11:31:57 +00002777 nla_total_size(sizeof(__be16))+ /* IFLA_VXLAN_PORT */
stephen hemmingerd3428942012-10-01 12:32:35 +00002778 0;
2779}
2780
2781static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2782{
2783 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002784 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002785 struct ifla_vxlan_port_range ports = {
2786 .low = htons(vxlan->port_min),
2787 .high = htons(vxlan->port_max),
2788 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002789
Atzm Watanabec7995c42013-04-16 02:50:52 +00002790 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002791 goto nla_put_failure;
2792
Cong Wange4c7ed42013-08-31 13:44:33 +08002793 if (!vxlan_addr_any(&dst->remote_ip)) {
2794 if (dst->remote_ip.sa.sa_family == AF_INET) {
2795 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2796 dst->remote_ip.sin.sin_addr.s_addr))
2797 goto nla_put_failure;
2798#if IS_ENABLED(CONFIG_IPV6)
2799 } else {
2800 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2801 &dst->remote_ip.sin6.sin6_addr))
2802 goto nla_put_failure;
2803#endif
2804 }
2805 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002806
Atzm Watanabec7995c42013-04-16 02:50:52 +00002807 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002808 goto nla_put_failure;
2809
Cong Wange4c7ed42013-08-31 13:44:33 +08002810 if (!vxlan_addr_any(&vxlan->saddr)) {
2811 if (vxlan->saddr.sa.sa_family == AF_INET) {
2812 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2813 vxlan->saddr.sin.sin_addr.s_addr))
2814 goto nla_put_failure;
2815#if IS_ENABLED(CONFIG_IPV6)
2816 } else {
2817 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2818 &vxlan->saddr.sin6.sin6_addr))
2819 goto nla_put_failure;
2820#endif
2821 }
2822 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002823
2824 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2825 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002826 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2827 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2828 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2829 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2830 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2831 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2832 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2833 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2834 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002835 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002836 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
2837 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port))
stephen hemmingerd3428942012-10-01 12:32:35 +00002838 goto nla_put_failure;
2839
stephen hemminger05f47d62012-10-09 20:35:50 +00002840 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2841 goto nla_put_failure;
2842
stephen hemmingerd3428942012-10-01 12:32:35 +00002843 return 0;
2844
2845nla_put_failure:
2846 return -EMSGSIZE;
2847}
2848
2849static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2850 .kind = "vxlan",
2851 .maxtype = IFLA_VXLAN_MAX,
2852 .policy = vxlan_policy,
2853 .priv_size = sizeof(struct vxlan_dev),
2854 .setup = vxlan_setup,
2855 .validate = vxlan_validate,
2856 .newlink = vxlan_newlink,
2857 .dellink = vxlan_dellink,
2858 .get_size = vxlan_get_size,
2859 .fill_info = vxlan_fill_info,
2860};
2861
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002862static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
2863 struct net_device *dev)
2864{
2865 struct vxlan_dev *vxlan, *next;
2866 LIST_HEAD(list_kill);
2867
2868 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2869 struct vxlan_rdst *dst = &vxlan->default_dst;
2870
2871 /* In case we created vxlan device with carrier
2872 * and we loose the carrier due to module unload
2873 * we also need to remove vxlan device. In other
2874 * cases, it's not necessary and remote_ifindex
2875 * is 0 here, so no matches.
2876 */
2877 if (dst->remote_ifindex == dev->ifindex)
2878 vxlan_dellink(vxlan->dev, &list_kill);
2879 }
2880
2881 unregister_netdevice_many(&list_kill);
2882}
2883
2884static int vxlan_lowerdev_event(struct notifier_block *unused,
2885 unsigned long event, void *ptr)
2886{
2887 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002888 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002889
Daniel Borkmann783c1462014-01-22 21:07:53 +01002890 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002891 vxlan_handle_lowerdev_unregister(vn, dev);
2892
2893 return NOTIFY_DONE;
2894}
2895
2896static struct notifier_block vxlan_notifier_block __read_mostly = {
2897 .notifier_call = vxlan_lowerdev_event,
2898};
2899
stephen hemmingerd3428942012-10-01 12:32:35 +00002900static __net_init int vxlan_init_net(struct net *net)
2901{
2902 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002903 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002904
stephen hemminger553675f2013-05-16 11:35:20 +00002905 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002906 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002907
stephen hemminger553675f2013-05-16 11:35:20 +00002908 for (h = 0; h < PORT_HASH_SIZE; ++h)
2909 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002910
2911 return 0;
2912}
2913
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002914static void __net_exit vxlan_exit_net(struct net *net)
2915{
2916 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2917 struct vxlan_dev *vxlan, *next;
2918 struct net_device *dev, *aux;
2919 LIST_HEAD(list);
2920
2921 rtnl_lock();
2922 for_each_netdev_safe(net, dev, aux)
2923 if (dev->rtnl_link_ops == &vxlan_link_ops)
2924 unregister_netdevice_queue(dev, &list);
2925
2926 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2927 /* If vxlan->dev is in the same netns, it has already been added
2928 * to the list by the previous loop.
2929 */
2930 if (!net_eq(dev_net(vxlan->dev), net))
2931 unregister_netdevice_queue(dev, &list);
2932 }
2933
2934 unregister_netdevice_many(&list);
2935 rtnl_unlock();
2936}
2937
stephen hemmingerd3428942012-10-01 12:32:35 +00002938static struct pernet_operations vxlan_net_ops = {
2939 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002940 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00002941 .id = &vxlan_net_id,
2942 .size = sizeof(struct vxlan_net),
2943};
2944
2945static int __init vxlan_init_module(void)
2946{
2947 int rc;
2948
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002949 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
2950 if (!vxlan_wq)
2951 return -ENOMEM;
2952
stephen hemmingerd3428942012-10-01 12:32:35 +00002953 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
2954
Daniel Borkmann783c1462014-01-22 21:07:53 +01002955 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00002956 if (rc)
2957 goto out1;
2958
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002959 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00002960 if (rc)
2961 goto out2;
2962
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002963 rc = rtnl_link_register(&vxlan_link_ops);
2964 if (rc)
2965 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00002966
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002967 return 0;
2968out3:
2969 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00002970out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01002971 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00002972out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002973 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00002974 return rc;
2975}
Cong Wang7332a132013-05-27 22:35:53 +00002976late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00002977
2978static void __exit vxlan_cleanup_module(void)
2979{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07002980 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002981 unregister_netdevice_notifier(&vxlan_notifier_block);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002982 destroy_workqueue(vxlan_wq);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002983 unregister_pernet_subsys(&vxlan_net_ops);
2984 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00002985}
2986module_exit(vxlan_cleanup_module);
2987
2988MODULE_LICENSE("GPL");
2989MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00002990MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08002991MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00002992MODULE_ALIAS_RTNL_LINK("vxlan");