blob: 4e2caaf8b5da02a4388820b858b70e485a4cc267 [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;
Tom Herbert359a0ea2014-06-04 17:20:29 -0700138 u32 flags; /* VXLAN_F_* in vxlan.h */
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
153/* salt for hash table */
154static u32 vxlan_salt __read_mostly;
Stephen Hemminger758c57d2013-06-17 14:16:09 -0700155static struct workqueue_struct *vxlan_wq;
stephen hemmingerd3428942012-10-01 12:32:35 +0000156
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700157static void vxlan_sock_work(struct work_struct *work);
158
Cong Wange4c7ed42013-08-31 13:44:33 +0800159#if IS_ENABLED(CONFIG_IPV6)
160static inline
161bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
162{
163 if (a->sa.sa_family != b->sa.sa_family)
164 return false;
165 if (a->sa.sa_family == AF_INET6)
166 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
167 else
168 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
169}
170
171static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
172{
173 if (ipa->sa.sa_family == AF_INET6)
174 return ipv6_addr_any(&ipa->sin6.sin6_addr);
175 else
176 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
177}
178
179static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
180{
181 if (ipa->sa.sa_family == AF_INET6)
182 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
183 else
184 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
185}
186
187static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
188{
189 if (nla_len(nla) >= sizeof(struct in6_addr)) {
190 nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr));
191 ip->sa.sa_family = AF_INET6;
192 return 0;
193 } else if (nla_len(nla) >= sizeof(__be32)) {
194 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
195 ip->sa.sa_family = AF_INET;
196 return 0;
197 } else {
198 return -EAFNOSUPPORT;
199 }
200}
201
202static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
203 const union vxlan_addr *ip)
204{
205 if (ip->sa.sa_family == AF_INET6)
206 return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr);
207 else
208 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
209}
210
211#else /* !CONFIG_IPV6 */
212
213static inline
214bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
215{
216 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
217}
218
219static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
220{
221 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
222}
223
224static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
225{
226 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
227}
228
229static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
230{
231 if (nla_len(nla) >= sizeof(struct in6_addr)) {
232 return -EAFNOSUPPORT;
233 } else if (nla_len(nla) >= sizeof(__be32)) {
234 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
235 ip->sa.sa_family = AF_INET;
236 return 0;
237 } else {
238 return -EAFNOSUPPORT;
239 }
240}
241
242static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
243 const union vxlan_addr *ip)
244{
245 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
246}
247#endif
248
stephen hemminger553675f2013-05-16 11:35:20 +0000249/* Virtual Network hash table head */
250static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
251{
252 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
253}
254
255/* Socket hash table head */
256static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000257{
258 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
259
stephen hemminger553675f2013-05-16 11:35:20 +0000260 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
261}
262
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700263/* First remote destination for a forwarding entry.
264 * Guaranteed to be non-NULL because remotes are never deleted.
265 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700266static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700267{
stephen hemminger5ca54612013-08-04 17:17:39 -0700268 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
269}
270
271static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
272{
273 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700274}
275
stephen hemminger553675f2013-05-16 11:35:20 +0000276/* Find VXLAN socket based on network namespace and UDP port */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -0700277static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +0000278{
279 struct vxlan_sock *vs;
280
281 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
282 if (inet_sk(vs->sock->sk)->inet_sport == port)
283 return vs;
284 }
285 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000286}
287
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700288static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000289{
290 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000291
stephen hemminger553675f2013-05-16 11:35:20 +0000292 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000293 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000294 return vxlan;
295 }
296
297 return NULL;
298}
299
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700300/* Look up VNI in a per net namespace table */
301static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id, __be16 port)
302{
303 struct vxlan_sock *vs;
304
305 vs = vxlan_find_sock(net, port);
306 if (!vs)
307 return NULL;
308
309 return vxlan_vs_find_vni(vs, id);
310}
311
stephen hemmingerd3428942012-10-01 12:32:35 +0000312/* Fill in neighbour message in skbuff. */
313static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700314 const struct vxlan_fdb *fdb,
315 u32 portid, u32 seq, int type, unsigned int flags,
316 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000317{
318 unsigned long now = jiffies;
319 struct nda_cacheinfo ci;
320 struct nlmsghdr *nlh;
321 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000322 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000323
324 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
325 if (nlh == NULL)
326 return -EMSGSIZE;
327
328 ndm = nlmsg_data(nlh);
329 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000330
331 send_eth = send_ip = true;
332
333 if (type == RTM_GETNEIGH) {
334 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800335 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000336 send_eth = !is_zero_ether_addr(fdb->eth_addr);
337 } else
338 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000339 ndm->ndm_state = fdb->state;
340 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000341 ndm->ndm_flags = fdb->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000342 ndm->ndm_type = NDA_DST;
343
David Stevense4f67ad2012-11-20 02:50:14 +0000344 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000345 goto nla_put_failure;
346
Cong Wange4c7ed42013-08-31 13:44:33 +0800347 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000348 goto nla_put_failure;
349
stephen hemminger823aa872013-04-27 11:31:57 +0000350 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000351 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
352 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000353 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700354 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000355 goto nla_put_failure;
356 if (rdst->remote_ifindex &&
357 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000358 goto nla_put_failure;
359
360 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
361 ci.ndm_confirmed = 0;
362 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
363 ci.ndm_refcnt = 0;
364
365 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
366 goto nla_put_failure;
367
368 return nlmsg_end(skb, nlh);
369
370nla_put_failure:
371 nlmsg_cancel(skb, nlh);
372 return -EMSGSIZE;
373}
374
375static inline size_t vxlan_nlmsg_size(void)
376{
377 return NLMSG_ALIGN(sizeof(struct ndmsg))
378 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800379 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000380 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000381 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
382 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000383 + nla_total_size(sizeof(struct nda_cacheinfo));
384}
385
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200386static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
387 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000388{
389 struct net *net = dev_net(vxlan->dev);
390 struct sk_buff *skb;
391 int err = -ENOBUFS;
392
393 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
394 if (skb == NULL)
395 goto errout;
396
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200397 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000398 if (err < 0) {
399 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
400 WARN_ON(err == -EMSGSIZE);
401 kfree_skb(skb);
402 goto errout;
403 }
404
405 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
406 return;
407errout:
408 if (err < 0)
409 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
410}
411
Cong Wange4c7ed42013-08-31 13:44:33 +0800412static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000413{
414 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700415 struct vxlan_fdb f = {
416 .state = NUD_STALE,
417 };
418 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800419 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700420 .remote_vni = VXLAN_N_VID,
421 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700422
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200423 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000424}
425
426static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
427{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700428 struct vxlan_fdb f = {
429 .state = NUD_STALE,
430 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200431 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000432
David Stevense4f67ad2012-11-20 02:50:14 +0000433 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
434
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200435 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000436}
437
stephen hemmingerd3428942012-10-01 12:32:35 +0000438/* Hash Ethernet address */
439static u32 eth_hash(const unsigned char *addr)
440{
441 u64 value = get_unaligned((u64 *)addr);
442
443 /* only want 6 bytes */
444#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000445 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000446#else
447 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000448#endif
449 return hash_64(value, FDB_HASH_BITS);
450}
451
452/* Hash chain to use given mac address */
453static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
454 const u8 *mac)
455{
456 return &vxlan->fdb_head[eth_hash(mac)];
457}
458
459/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000460static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000461 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000462{
463 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
464 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000465
Sasha Levinb67bfe02013-02-27 17:06:00 -0800466 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700467 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000468 return f;
469 }
470
471 return NULL;
472}
473
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000474static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
475 const u8 *mac)
476{
477 struct vxlan_fdb *f;
478
479 f = __vxlan_find_mac(vxlan, mac);
480 if (f)
481 f->used = jiffies;
482
483 return f;
484}
485
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300486/* caller should hold vxlan->hash_lock */
487static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800488 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300489 __u32 vni, __u32 ifindex)
490{
491 struct vxlan_rdst *rd;
492
493 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800494 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300495 rd->remote_port == port &&
496 rd->remote_vni == vni &&
497 rd->remote_ifindex == ifindex)
498 return rd;
499 }
500
501 return NULL;
502}
503
Thomas Richter906dc182013-07-19 17:20:07 +0200504/* Replace destination of unicast mac */
505static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800506 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200507{
508 struct vxlan_rdst *rd;
509
510 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
511 if (rd)
512 return 0;
513
514 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
515 if (!rd)
516 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800517 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200518 rd->remote_port = port;
519 rd->remote_vni = vni;
520 rd->remote_ifindex = ifindex;
521 return 1;
522}
523
David Stevens66817122013-03-15 04:35:51 +0000524/* Add/update destinations for multicast */
525static int vxlan_fdb_append(struct vxlan_fdb *f,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200526 union vxlan_addr *ip, __be16 port, __u32 vni,
527 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000528{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700529 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000530
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300531 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
532 if (rd)
533 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700534
David Stevens66817122013-03-15 04:35:51 +0000535 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
536 if (rd == NULL)
537 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800538 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000539 rd->remote_port = port;
540 rd->remote_vni = vni;
541 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700542
543 list_add_tail_rcu(&rd->list, &f->remotes);
544
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200545 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000546 return 1;
547}
548
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200549static struct sk_buff **vxlan_gro_receive(struct sk_buff **head, struct sk_buff *skb)
550{
551 struct sk_buff *p, **pp = NULL;
552 struct vxlanhdr *vh, *vh2;
553 struct ethhdr *eh, *eh2;
554 unsigned int hlen, off_vx, off_eth;
555 const struct packet_offload *ptype;
556 __be16 type;
557 int flush = 1;
558
559 off_vx = skb_gro_offset(skb);
560 hlen = off_vx + sizeof(*vh);
561 vh = skb_gro_header_fast(skb, off_vx);
562 if (skb_gro_header_hard(skb, hlen)) {
563 vh = skb_gro_header_slow(skb, hlen, off_vx);
564 if (unlikely(!vh))
565 goto out;
566 }
567 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
568
569 off_eth = skb_gro_offset(skb);
570 hlen = off_eth + sizeof(*eh);
571 eh = skb_gro_header_fast(skb, off_eth);
572 if (skb_gro_header_hard(skb, hlen)) {
573 eh = skb_gro_header_slow(skb, hlen, off_eth);
574 if (unlikely(!eh))
575 goto out;
576 }
577
578 flush = 0;
579
580 for (p = *head; p; p = p->next) {
581 if (!NAPI_GRO_CB(p)->same_flow)
582 continue;
583
584 vh2 = (struct vxlanhdr *)(p->data + off_vx);
585 eh2 = (struct ethhdr *)(p->data + off_eth);
586 if (vh->vx_vni != vh2->vx_vni || compare_ether_header(eh, eh2)) {
587 NAPI_GRO_CB(p)->same_flow = 0;
588 continue;
589 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200590 }
591
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200592 type = eh->h_proto;
593
594 rcu_read_lock();
595 ptype = gro_find_receive_by_type(type);
596 if (ptype == NULL) {
597 flush = 1;
598 goto out_unlock;
599 }
600
601 skb_gro_pull(skb, sizeof(*eh)); /* pull inner eth header */
602 pp = ptype->callbacks.gro_receive(head, skb);
603
604out_unlock:
605 rcu_read_unlock();
606out:
607 NAPI_GRO_CB(skb)->flush |= flush;
608
609 return pp;
610}
611
612static int vxlan_gro_complete(struct sk_buff *skb, int nhoff)
613{
614 struct ethhdr *eh;
615 struct packet_offload *ptype;
616 __be16 type;
617 int vxlan_len = sizeof(struct vxlanhdr) + sizeof(struct ethhdr);
618 int err = -ENOSYS;
619
620 eh = (struct ethhdr *)(skb->data + nhoff + sizeof(struct vxlanhdr));
621 type = eh->h_proto;
622
623 rcu_read_lock();
624 ptype = gro_find_complete_by_type(type);
625 if (ptype != NULL)
626 err = ptype->callbacks.gro_complete(skb, nhoff + vxlan_len);
627
628 rcu_read_unlock();
629 return err;
630}
631
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700632/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200633static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700634{
635 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200636 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700637 struct net *net = sock_net(sk);
638 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700639 __be16 port = inet_sk(sk)->inet_sport;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200640 int err;
641
642 if (sa_family == AF_INET) {
643 err = udp_add_offload(&vs->udp_offloads);
644 if (err)
645 pr_warn("vxlan: udp_add_offload failed with status %d\n", err);
646 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700647
648 rcu_read_lock();
649 for_each_netdev_rcu(net, dev) {
650 if (dev->netdev_ops->ndo_add_vxlan_port)
651 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
652 port);
653 }
654 rcu_read_unlock();
655}
656
657/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200658static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700659{
660 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200661 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700662 struct net *net = sock_net(sk);
663 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700664 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700665
666 rcu_read_lock();
667 for_each_netdev_rcu(net, dev) {
668 if (dev->netdev_ops->ndo_del_vxlan_port)
669 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
670 port);
671 }
672 rcu_read_unlock();
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200673
674 if (sa_family == AF_INET)
675 udp_del_offload(&vs->udp_offloads);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700676}
677
stephen hemmingerd3428942012-10-01 12:32:35 +0000678/* Add new entry to forwarding table -- assumes lock held */
679static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800680 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000681 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000682 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000683 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000684{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200685 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000686 struct vxlan_fdb *f;
687 int notify = 0;
688
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000689 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000690 if (f) {
691 if (flags & NLM_F_EXCL) {
692 netdev_dbg(vxlan->dev,
693 "lost race to create %pM\n", mac);
694 return -EEXIST;
695 }
696 if (f->state != state) {
697 f->state = state;
698 f->updated = jiffies;
699 notify = 1;
700 }
David Stevensae884082013-04-19 00:36:26 +0000701 if (f->flags != ndm_flags) {
702 f->flags = ndm_flags;
703 f->updated = jiffies;
704 notify = 1;
705 }
Thomas Richter906dc182013-07-19 17:20:07 +0200706 if ((flags & NLM_F_REPLACE)) {
707 /* Only change unicasts */
708 if (!(is_multicast_ether_addr(f->eth_addr) ||
709 is_zero_ether_addr(f->eth_addr))) {
710 int rc = vxlan_fdb_replace(f, ip, port, vni,
711 ifindex);
712
713 if (rc < 0)
714 return rc;
715 notify |= rc;
716 } else
717 return -EOPNOTSUPP;
718 }
David Stevens66817122013-03-15 04:35:51 +0000719 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300720 (is_multicast_ether_addr(f->eth_addr) ||
721 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200722 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
723 &rd);
David Stevens66817122013-03-15 04:35:51 +0000724
725 if (rc < 0)
726 return rc;
727 notify |= rc;
728 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000729 } else {
730 if (!(flags & NLM_F_CREATE))
731 return -ENOENT;
732
733 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
734 return -ENOSPC;
735
Thomas Richter906dc182013-07-19 17:20:07 +0200736 /* Disallow replace to add a multicast entry */
737 if ((flags & NLM_F_REPLACE) &&
738 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
739 return -EOPNOTSUPP;
740
Cong Wange4c7ed42013-08-31 13:44:33 +0800741 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000742 f = kmalloc(sizeof(*f), GFP_ATOMIC);
743 if (!f)
744 return -ENOMEM;
745
746 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000747 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000748 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000749 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700750 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000751 memcpy(f->eth_addr, mac, ETH_ALEN);
752
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200753 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700754
stephen hemmingerd3428942012-10-01 12:32:35 +0000755 ++vxlan->addrcnt;
756 hlist_add_head_rcu(&f->hlist,
757 vxlan_fdb_head(vxlan, mac));
758 }
759
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200760 if (notify) {
761 if (rd == NULL)
762 rd = first_remote_rtnl(f);
763 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
764 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000765
766 return 0;
767}
768
Wei Yongjun6706c822013-04-11 19:00:35 +0000769static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000770{
771 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700772 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000773
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700774 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000775 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000776 kfree(f);
777}
778
stephen hemmingerd3428942012-10-01 12:32:35 +0000779static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
780{
781 netdev_dbg(vxlan->dev,
782 "delete %pM\n", f->eth_addr);
783
784 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200785 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000786
787 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000788 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000789}
790
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300791static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800792 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300793{
794 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800795 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300796
797 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800798 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
799 if (err)
800 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300801 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800802 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
803 if (remote->sa.sa_family == AF_INET) {
804 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
805 ip->sa.sa_family = AF_INET;
806#if IS_ENABLED(CONFIG_IPV6)
807 } else {
808 ip->sin6.sin6_addr = in6addr_any;
809 ip->sa.sa_family = AF_INET6;
810#endif
811 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300812 }
813
814 if (tb[NDA_PORT]) {
815 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
816 return -EINVAL;
817 *port = nla_get_be16(tb[NDA_PORT]);
818 } else {
819 *port = vxlan->dst_port;
820 }
821
822 if (tb[NDA_VNI]) {
823 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
824 return -EINVAL;
825 *vni = nla_get_u32(tb[NDA_VNI]);
826 } else {
827 *vni = vxlan->default_dst.remote_vni;
828 }
829
830 if (tb[NDA_IFINDEX]) {
831 struct net_device *tdev;
832
833 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
834 return -EINVAL;
835 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800836 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300837 if (!tdev)
838 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300839 } else {
840 *ifindex = 0;
841 }
842
843 return 0;
844}
845
stephen hemmingerd3428942012-10-01 12:32:35 +0000846/* Add static entry (via netlink) */
847static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
848 struct net_device *dev,
849 const unsigned char *addr, u16 flags)
850{
851 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300852 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800853 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000854 __be16 port;
855 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000856 int err;
857
858 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
859 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
860 ndm->ndm_state);
861 return -EINVAL;
862 }
863
864 if (tb[NDA_DST] == NULL)
865 return -EINVAL;
866
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300867 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
868 if (err)
869 return err;
David Stevens66817122013-03-15 04:35:51 +0000870
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300871 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
872 return -EAFNOSUPPORT;
873
stephen hemmingerd3428942012-10-01 12:32:35 +0000874 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800875 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000876 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000877 spin_unlock_bh(&vxlan->hash_lock);
878
879 return err;
880}
881
882/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000883static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
884 struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000885 const unsigned char *addr)
886{
887 struct vxlan_dev *vxlan = netdev_priv(dev);
888 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300889 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800890 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300891 __be16 port;
892 u32 vni, ifindex;
893 int err;
894
895 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
896 if (err)
897 return err;
898
899 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000900
901 spin_lock_bh(&vxlan->hash_lock);
902 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300903 if (!f)
904 goto out;
905
Cong Wange4c7ed42013-08-31 13:44:33 +0800906 if (!vxlan_addr_any(&ip)) {
907 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300908 if (!rd)
909 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000910 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300911
912 err = 0;
913
914 /* remove a destination if it's not the only one on the list,
915 * otherwise destroy the fdb entry
916 */
917 if (rd && !list_is_singular(&f->remotes)) {
918 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200919 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800920 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300921 goto out;
922 }
923
924 vxlan_fdb_destroy(vxlan, f);
925
926out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000927 spin_unlock_bh(&vxlan->hash_lock);
928
929 return err;
930}
931
932/* Dump forwarding table */
933static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
934 struct net_device *dev, int idx)
935{
936 struct vxlan_dev *vxlan = netdev_priv(dev);
937 unsigned int h;
938
939 for (h = 0; h < FDB_HASH_SIZE; ++h) {
940 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000941 int err;
942
Sasha Levinb67bfe02013-02-27 17:06:00 -0800943 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000944 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000945
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700946 if (idx < cb->args[0])
947 goto skip;
948
949 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000950 err = vxlan_fdb_info(skb, vxlan, f,
951 NETLINK_CB(cb->skb).portid,
952 cb->nlh->nlmsg_seq,
953 RTM_NEWNEIGH,
954 NLM_F_MULTI, rd);
955 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700956 goto out;
David Stevens66817122013-03-15 04:35:51 +0000957 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700958skip:
959 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000960 }
961 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700962out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000963 return idx;
964}
965
966/* Watch incoming packets to learn mapping between Ethernet address
967 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700968 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000969 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700970static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800971 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000972{
973 struct vxlan_dev *vxlan = netdev_priv(dev);
974 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000975
976 f = vxlan_find_mac(vxlan, src_mac);
977 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700978 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700979
Cong Wange4c7ed42013-08-31 13:44:33 +0800980 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700981 return false;
982
983 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700984 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700985 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000986
987 if (net_ratelimit())
988 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800989 "%pM migrated from %pIS to %pIS\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700990 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000991
Cong Wange4c7ed42013-08-31 13:44:33 +0800992 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000993 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200994 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000995 } else {
996 /* learned new entry */
997 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700998
999 /* close off race between vxlan_flush and incoming packets */
1000 if (netif_running(dev))
1001 vxlan_fdb_create(vxlan, src_mac, src_ip,
1002 NUD_REACHABLE,
1003 NLM_F_EXCL|NLM_F_CREATE,
1004 vxlan->dst_port,
1005 vxlan->default_dst.remote_vni,
1006 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +00001007 spin_unlock(&vxlan->hash_lock);
1008 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001009
1010 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001011}
1012
stephen hemmingerd3428942012-10-01 12:32:35 +00001013/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001014static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001015{
stephen hemminger553675f2013-05-16 11:35:20 +00001016 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +00001017
Gao feng95ab0992013-12-10 16:37:33 +08001018 /* The vxlan_sock is only used by dev, leaving group has
1019 * no effect on other vxlan devices.
1020 */
1021 if (atomic_read(&dev->vn_sock->refcnt) == 1)
1022 return false;
1023
stephen hemminger553675f2013-05-16 11:35:20 +00001024 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001025 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001026 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001027
Gao feng95ab0992013-12-10 16:37:33 +08001028 if (vxlan->vn_sock != dev->vn_sock)
1029 continue;
1030
1031 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1032 &dev->default_dst.remote_ip))
1033 continue;
1034
1035 if (vxlan->default_dst.remote_ifindex !=
1036 dev->default_dst.remote_ifindex)
1037 continue;
1038
1039 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001040 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001041
1042 return false;
1043}
1044
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001045static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001046{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001047 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001048}
1049
Pravin B Shelar012a5722013-08-19 11:23:07 -07001050void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001051{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07001052 struct sock *sk = vs->sock->sk;
1053 struct net *net = sock_net(sk);
1054 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -07001055
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001056 if (!atomic_dec_and_test(&vs->refcnt))
1057 return;
1058
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001059 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001060 hlist_del_rcu(&vs->hlist);
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001061 rcu_assign_sk_user_data(vs->sock->sk, NULL);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001062 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001063 spin_unlock(&vn->sock_lock);
1064
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001065 queue_work(vxlan_wq, &vs->del_work);
1066}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001067EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001068
stephen hemminger3fc2de22013-07-18 08:40:15 -07001069/* Callback to update multicast group membership when first VNI on
1070 * multicast asddress is brought up
1071 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001072 */
stephen hemminger3fc2de22013-07-18 08:40:15 -07001073static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001074{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001075 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001076 struct vxlan_sock *vs = vxlan->vn_sock;
1077 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001078 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1079 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001080
stephen hemmingerd3428942012-10-01 12:32:35 +00001081 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001082 if (ip->sa.sa_family == AF_INET) {
1083 struct ip_mreqn mreq = {
1084 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1085 .imr_ifindex = ifindex,
1086 };
1087
1088 ip_mc_join_group(sk, &mreq);
1089#if IS_ENABLED(CONFIG_IPV6)
1090 } else {
1091 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1092 &ip->sin6.sin6_addr);
1093#endif
1094 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001095 release_sock(sk);
1096
Pravin B Shelar012a5722013-08-19 11:23:07 -07001097 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001098 dev_put(vxlan->dev);
1099}
1100
1101/* Inverse of vxlan_igmp_join when last VNI is brought down */
1102static void vxlan_igmp_leave(struct work_struct *work)
1103{
1104 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001105 struct vxlan_sock *vs = vxlan->vn_sock;
1106 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001107 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1108 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001109
1110 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001111 if (ip->sa.sa_family == AF_INET) {
1112 struct ip_mreqn mreq = {
1113 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1114 .imr_ifindex = ifindex,
1115 };
1116
1117 ip_mc_leave_group(sk, &mreq);
1118#if IS_ENABLED(CONFIG_IPV6)
1119 } else {
1120 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1121 &ip->sin6.sin6_addr);
1122#endif
1123 }
1124
stephen hemmingerd3428942012-10-01 12:32:35 +00001125 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001126
Pravin B Shelar012a5722013-08-19 11:23:07 -07001127 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001128 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001129}
1130
1131/* Callback from net/ipv4/udp.c to receive packets */
1132static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1133{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001134 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001135 struct vxlanhdr *vxh;
stephen hemmingerd3428942012-10-01 12:32:35 +00001136
stephen hemmingerd3428942012-10-01 12:32:35 +00001137 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001138 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001139 goto error;
1140
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001141 /* Return packets with reserved bits set */
1142 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +00001143 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
1144 (vxh->vx_vni & htonl(0xff))) {
1145 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1146 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1147 goto error;
1148 }
1149
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001150 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001151 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001152
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001153 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001154 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001155 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001156
Or Gerlitzd0bc6552014-01-23 11:28:13 +02001157 /* If the NIC driver gave us an encapsulated packet
1158 * with the encapsulation mark, the device checksummed it
1159 * for us. Otherwise force the upper layers to verify it.
1160 */
1161 if ((skb->ip_summed != CHECKSUM_UNNECESSARY && skb->ip_summed != CHECKSUM_PARTIAL) ||
1162 !skb->encapsulation)
1163 skb->ip_summed = CHECKSUM_NONE;
1164
1165 skb->encapsulation = 0;
1166
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001167 vs->rcv(vs, skb, vxh->vx_vni);
1168 return 0;
1169
1170drop:
1171 /* Consume bad packet */
1172 kfree_skb(skb);
1173 return 0;
1174
1175error:
1176 /* Return non vxlan pkt */
1177 return 1;
1178}
1179
1180static void vxlan_rcv(struct vxlan_sock *vs,
1181 struct sk_buff *skb, __be32 vx_vni)
1182{
Cong Wange4c7ed42013-08-31 13:44:33 +08001183 struct iphdr *oip = NULL;
1184 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001185 struct vxlan_dev *vxlan;
Li RongQing8f849852014-01-04 13:57:59 +08001186 struct pcpu_sw_netstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001187 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001188 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001189 int err = 0;
1190 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001191
1192 vni = ntohl(vx_vni) >> 8;
1193 /* Is this VNI defined? */
1194 vxlan = vxlan_vs_find_vni(vs, vni);
1195 if (!vxlan)
1196 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001197
Cong Wange4c7ed42013-08-31 13:44:33 +08001198 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001199 skb_reset_mac_header(skb);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001200 skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev)));
stephen hemmingerd3428942012-10-01 12:32:35 +00001201 skb->protocol = eth_type_trans(skb, vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001202
1203 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001204 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001205 goto drop;
1206
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001207 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001208 if (remote_ip->sa.sa_family == AF_INET) {
1209 oip = ip_hdr(skb);
1210 saddr.sin.sin_addr.s_addr = oip->saddr;
1211 saddr.sa.sa_family = AF_INET;
1212#if IS_ENABLED(CONFIG_IPV6)
1213 } else {
1214 oip6 = ipv6_hdr(skb);
1215 saddr.sin6.sin6_addr = oip6->saddr;
1216 saddr.sa.sa_family = AF_INET6;
1217#endif
1218 }
1219
stephen hemminger26a41ae62013-06-17 12:09:58 -07001220 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001221 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001222 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001223
stephen hemmingerd3428942012-10-01 12:32:35 +00001224 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001225
Cong Wange4c7ed42013-08-31 13:44:33 +08001226 if (oip6)
1227 err = IP6_ECN_decapsulate(oip6, skb);
1228 if (oip)
1229 err = IP_ECN_decapsulate(oip, skb);
1230
stephen hemmingerd3428942012-10-01 12:32:35 +00001231 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001232 if (log_ecn_error) {
1233 if (oip6)
1234 net_info_ratelimited("non-ECT from %pI6\n",
1235 &oip6->saddr);
1236 if (oip)
1237 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1238 &oip->saddr, oip->tos);
1239 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001240 if (err > 1) {
1241 ++vxlan->dev->stats.rx_frame_errors;
1242 ++vxlan->dev->stats.rx_errors;
1243 goto drop;
1244 }
1245 }
1246
Pravin B Shelare8171042013-03-25 14:49:46 +00001247 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001248 u64_stats_update_begin(&stats->syncp);
1249 stats->rx_packets++;
1250 stats->rx_bytes += skb->len;
1251 u64_stats_update_end(&stats->syncp);
1252
1253 netif_rx(skb);
1254
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001255 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001256drop:
1257 /* Consume bad packet */
1258 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001259}
1260
David Stevense4f67ad2012-11-20 02:50:14 +00001261static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1262{
1263 struct vxlan_dev *vxlan = netdev_priv(dev);
1264 struct arphdr *parp;
1265 u8 *arpptr, *sha;
1266 __be32 sip, tip;
1267 struct neighbour *n;
1268
1269 if (dev->flags & IFF_NOARP)
1270 goto out;
1271
1272 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1273 dev->stats.tx_dropped++;
1274 goto out;
1275 }
1276 parp = arp_hdr(skb);
1277
1278 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1279 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1280 parp->ar_pro != htons(ETH_P_IP) ||
1281 parp->ar_op != htons(ARPOP_REQUEST) ||
1282 parp->ar_hln != dev->addr_len ||
1283 parp->ar_pln != 4)
1284 goto out;
1285 arpptr = (u8 *)parp + sizeof(struct arphdr);
1286 sha = arpptr;
1287 arpptr += dev->addr_len; /* sha */
1288 memcpy(&sip, arpptr, sizeof(sip));
1289 arpptr += sizeof(sip);
1290 arpptr += dev->addr_len; /* tha */
1291 memcpy(&tip, arpptr, sizeof(tip));
1292
1293 if (ipv4_is_loopback(tip) ||
1294 ipv4_is_multicast(tip))
1295 goto out;
1296
1297 n = neigh_lookup(&arp_tbl, &tip, dev);
1298
1299 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001300 struct vxlan_fdb *f;
1301 struct sk_buff *reply;
1302
1303 if (!(n->nud_state & NUD_CONNECTED)) {
1304 neigh_release(n);
1305 goto out;
1306 }
1307
1308 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001309 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001310 /* bridge-local neighbor */
1311 neigh_release(n);
1312 goto out;
1313 }
1314
1315 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1316 n->ha, sha);
1317
1318 neigh_release(n);
1319
David Stevens73461352014-03-18 12:32:29 -04001320 if (reply == NULL)
1321 goto out;
1322
David Stevense4f67ad2012-11-20 02:50:14 +00001323 skb_reset_mac_header(reply);
1324 __skb_pull(reply, skb_network_offset(reply));
1325 reply->ip_summed = CHECKSUM_UNNECESSARY;
1326 reply->pkt_type = PACKET_HOST;
1327
1328 if (netif_rx_ni(reply) == NET_RX_DROP)
1329 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001330 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1331 union vxlan_addr ipa = {
1332 .sin.sin_addr.s_addr = tip,
1333 .sa.sa_family = AF_INET,
1334 };
1335
1336 vxlan_ip_miss(dev, &ipa);
1337 }
David Stevense4f67ad2012-11-20 02:50:14 +00001338out:
1339 consume_skb(skb);
1340 return NETDEV_TX_OK;
1341}
1342
Cong Wangf564f452013-08-31 13:44:36 +08001343#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001344
1345static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1346 struct neighbour *n, bool isrouter)
1347{
1348 struct net_device *dev = request->dev;
1349 struct sk_buff *reply;
1350 struct nd_msg *ns, *na;
1351 struct ipv6hdr *pip6;
1352 u8 *daddr;
1353 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1354 int ns_olen;
1355 int i, len;
1356
1357 if (dev == NULL)
1358 return NULL;
1359
1360 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1361 sizeof(*na) + na_olen + dev->needed_tailroom;
1362 reply = alloc_skb(len, GFP_ATOMIC);
1363 if (reply == NULL)
1364 return NULL;
1365
1366 reply->protocol = htons(ETH_P_IPV6);
1367 reply->dev = dev;
1368 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1369 skb_push(reply, sizeof(struct ethhdr));
1370 skb_set_mac_header(reply, 0);
1371
1372 ns = (struct nd_msg *)skb_transport_header(request);
1373
1374 daddr = eth_hdr(request)->h_source;
1375 ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns);
1376 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1377 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1378 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1379 break;
1380 }
1381 }
1382
1383 /* Ethernet header */
1384 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1385 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1386 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1387 reply->protocol = htons(ETH_P_IPV6);
1388
1389 skb_pull(reply, sizeof(struct ethhdr));
1390 skb_set_network_header(reply, 0);
1391 skb_put(reply, sizeof(struct ipv6hdr));
1392
1393 /* IPv6 header */
1394
1395 pip6 = ipv6_hdr(reply);
1396 memset(pip6, 0, sizeof(struct ipv6hdr));
1397 pip6->version = 6;
1398 pip6->priority = ipv6_hdr(request)->priority;
1399 pip6->nexthdr = IPPROTO_ICMPV6;
1400 pip6->hop_limit = 255;
1401 pip6->daddr = ipv6_hdr(request)->saddr;
1402 pip6->saddr = *(struct in6_addr *)n->primary_key;
1403
1404 skb_pull(reply, sizeof(struct ipv6hdr));
1405 skb_set_transport_header(reply, 0);
1406
1407 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1408
1409 /* Neighbor Advertisement */
1410 memset(na, 0, sizeof(*na)+na_olen);
1411 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1412 na->icmph.icmp6_router = isrouter;
1413 na->icmph.icmp6_override = 1;
1414 na->icmph.icmp6_solicited = 1;
1415 na->target = ns->target;
1416 ether_addr_copy(&na->opt[2], n->ha);
1417 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1418 na->opt[1] = na_olen >> 3;
1419
1420 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1421 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1422 csum_partial(na, sizeof(*na)+na_olen, 0));
1423
1424 pip6->payload_len = htons(sizeof(*na)+na_olen);
1425
1426 skb_push(reply, sizeof(struct ipv6hdr));
1427
1428 reply->ip_summed = CHECKSUM_UNNECESSARY;
1429
1430 return reply;
1431}
1432
Cong Wangf564f452013-08-31 13:44:36 +08001433static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1434{
1435 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001436 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001437 const struct ipv6hdr *iphdr;
1438 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001439 struct neighbour *n;
1440 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001441
1442 in6_dev = __in6_dev_get(dev);
1443 if (!in6_dev)
1444 goto out;
1445
1446 if (!pskb_may_pull(skb, skb->len))
1447 goto out;
1448
1449 iphdr = ipv6_hdr(skb);
1450 saddr = &iphdr->saddr;
1451 daddr = &iphdr->daddr;
1452
Cong Wangf564f452013-08-31 13:44:36 +08001453 msg = (struct nd_msg *)skb_transport_header(skb);
1454 if (msg->icmph.icmp6_code != 0 ||
1455 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1456 goto out;
1457
David Stevens4b29dba2014-03-24 10:39:58 -04001458 if (ipv6_addr_loopback(daddr) ||
1459 ipv6_addr_is_multicast(&msg->target))
1460 goto out;
1461
1462 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001463
1464 if (n) {
1465 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001466 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001467
1468 if (!(n->nud_state & NUD_CONNECTED)) {
1469 neigh_release(n);
1470 goto out;
1471 }
1472
1473 f = vxlan_find_mac(vxlan, n->ha);
1474 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1475 /* bridge-local neighbor */
1476 neigh_release(n);
1477 goto out;
1478 }
1479
David Stevens4b29dba2014-03-24 10:39:58 -04001480 reply = vxlan_na_create(skb, n,
1481 !!(f ? f->flags & NTF_ROUTER : 0));
1482
Cong Wangf564f452013-08-31 13:44:36 +08001483 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001484
1485 if (reply == NULL)
1486 goto out;
1487
1488 if (netif_rx_ni(reply) == NET_RX_DROP)
1489 dev->stats.rx_dropped++;
1490
Cong Wangf564f452013-08-31 13:44:36 +08001491 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001492 union vxlan_addr ipa = {
1493 .sin6.sin6_addr = msg->target,
1494 .sa.sa_family = AF_INET6,
1495 };
1496
Cong Wangf564f452013-08-31 13:44:36 +08001497 vxlan_ip_miss(dev, &ipa);
1498 }
1499
1500out:
1501 consume_skb(skb);
1502 return NETDEV_TX_OK;
1503}
1504#endif
1505
David Stevense4f67ad2012-11-20 02:50:14 +00001506static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1507{
1508 struct vxlan_dev *vxlan = netdev_priv(dev);
1509 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001510
1511 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1512 return false;
1513
1514 n = NULL;
1515 switch (ntohs(eth_hdr(skb)->h_proto)) {
1516 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001517 {
1518 struct iphdr *pip;
1519
David Stevense4f67ad2012-11-20 02:50:14 +00001520 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1521 return false;
1522 pip = ip_hdr(skb);
1523 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001524 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1525 union vxlan_addr ipa = {
1526 .sin.sin_addr.s_addr = pip->daddr,
1527 .sa.sa_family = AF_INET,
1528 };
1529
1530 vxlan_ip_miss(dev, &ipa);
1531 return false;
1532 }
1533
David Stevense4f67ad2012-11-20 02:50:14 +00001534 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001535 }
1536#if IS_ENABLED(CONFIG_IPV6)
1537 case ETH_P_IPV6:
1538 {
1539 struct ipv6hdr *pip6;
1540
1541 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1542 return false;
1543 pip6 = ipv6_hdr(skb);
1544 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1545 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1546 union vxlan_addr ipa = {
1547 .sin6.sin6_addr = pip6->daddr,
1548 .sa.sa_family = AF_INET6,
1549 };
1550
1551 vxlan_ip_miss(dev, &ipa);
1552 return false;
1553 }
1554
1555 break;
1556 }
1557#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001558 default:
1559 return false;
1560 }
1561
1562 if (n) {
1563 bool diff;
1564
Joe Perches7367d0b2013-09-01 11:51:23 -07001565 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001566 if (diff) {
1567 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1568 dev->addr_len);
1569 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1570 }
1571 neigh_release(n);
1572 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001573 }
1574
David Stevense4f67ad2012-11-20 02:50:14 +00001575 return false;
1576}
1577
stephen hemminger05f47d62012-10-09 20:35:50 +00001578/* Compute source port for outgoing packet
1579 * first choice to use L4 flow hash since it will spread
1580 * better and maybe available from hardware
1581 * secondary choice is to use jhash on the Ethernet header
1582 */
Pravin B Shelar49560532013-08-19 11:23:17 -07001583__be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb)
stephen hemminger05f47d62012-10-09 20:35:50 +00001584{
Pravin B Shelar49560532013-08-19 11:23:17 -07001585 unsigned int range = (port_max - port_min) + 1;
stephen hemminger05f47d62012-10-09 20:35:50 +00001586 u32 hash;
1587
Tom Herbert3958afa1b2013-12-15 22:12:06 -08001588 hash = skb_get_hash(skb);
stephen hemminger05f47d62012-10-09 20:35:50 +00001589 if (!hash)
1590 hash = jhash(skb->data, 2 * ETH_ALEN,
1591 (__force u32) skb->protocol);
1592
Pravin B Shelar49560532013-08-19 11:23:17 -07001593 return htons((((u64) hash * range) >> 32) + port_min);
stephen hemminger05f47d62012-10-09 20:35:50 +00001594}
Pravin B Shelar49560532013-08-19 11:23:17 -07001595EXPORT_SYMBOL_GPL(vxlan_src_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001596
Tom Herbert359a0ea2014-06-04 17:20:29 -07001597static inline struct sk_buff *vxlan_handle_offloads(struct sk_buff *skb,
1598 bool udp_csum)
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001599{
Tom Herbert359a0ea2014-06-04 17:20:29 -07001600 int type = udp_csum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1601 return iptunnel_handle_offloads(skb, udp_csum, type);
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001602}
1603
Cong Wange4c7ed42013-08-31 13:44:33 +08001604#if IS_ENABLED(CONFIG_IPV6)
Nicolas Dichtel11796182013-09-02 15:34:55 +02001605static int vxlan6_xmit_skb(struct vxlan_sock *vs,
Cong Wange4c7ed42013-08-31 13:44:33 +08001606 struct dst_entry *dst, struct sk_buff *skb,
1607 struct net_device *dev, struct in6_addr *saddr,
1608 struct in6_addr *daddr, __u8 prio, __u8 ttl,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001609 __be16 src_port, __be16 dst_port, __be32 vni,
1610 bool xnet)
Cong Wange4c7ed42013-08-31 13:44:33 +08001611{
1612 struct ipv6hdr *ip6h;
1613 struct vxlanhdr *vxh;
1614 struct udphdr *uh;
1615 int min_headroom;
1616 int err;
1617
Tom Herbert359a0ea2014-06-04 17:20:29 -07001618 skb = vxlan_handle_offloads(skb, !udp_get_no_check6_tx(vs->sock->sk));
1619 if (IS_ERR(skb))
1620 return -EINVAL;
Cong Wange4c7ed42013-08-31 13:44:33 +08001621
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001622 skb_scrub_packet(skb, xnet);
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001623
Cong Wange4c7ed42013-08-31 13:44:33 +08001624 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1625 + VXLAN_HLEN + sizeof(struct ipv6hdr)
1626 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1627
1628 /* Need space for new headers (invalidates iph ptr) */
1629 err = skb_cow_head(skb, min_headroom);
1630 if (unlikely(err))
1631 return err;
1632
1633 if (vlan_tx_tag_present(skb)) {
1634 if (WARN_ON(!__vlan_put_tag(skb,
1635 skb->vlan_proto,
1636 vlan_tx_tag_get(skb))))
1637 return -ENOMEM;
1638
1639 skb->vlan_tci = 0;
1640 }
1641
1642 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1643 vxh->vx_flags = htonl(VXLAN_FLAGS);
1644 vxh->vx_vni = vni;
1645
1646 __skb_push(skb, sizeof(*uh));
1647 skb_reset_transport_header(skb);
1648 uh = udp_hdr(skb);
1649
1650 uh->dest = dst_port;
1651 uh->source = src_port;
1652
1653 uh->len = htons(skb->len);
Cong Wange4c7ed42013-08-31 13:44:33 +08001654
1655 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1656 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1657 IPSKB_REROUTED);
Cong Wange4c7ed42013-08-31 13:44:33 +08001658 skb_dst_set(skb, dst);
1659
Tom Herbert359a0ea2014-06-04 17:20:29 -07001660 udp6_set_csum(udp_get_no_check6_tx(vs->sock->sk), skb,
1661 saddr, daddr, skb->len);
Cong Wange4c7ed42013-08-31 13:44:33 +08001662
1663 __skb_push(skb, sizeof(*ip6h));
1664 skb_reset_network_header(skb);
1665 ip6h = ipv6_hdr(skb);
1666 ip6h->version = 6;
1667 ip6h->priority = prio;
1668 ip6h->flow_lbl[0] = 0;
1669 ip6h->flow_lbl[1] = 0;
1670 ip6h->flow_lbl[2] = 0;
1671 ip6h->payload_len = htons(skb->len);
1672 ip6h->nexthdr = IPPROTO_UDP;
1673 ip6h->hop_limit = ttl;
1674 ip6h->daddr = *daddr;
1675 ip6h->saddr = *saddr;
1676
Cong Wange4c7ed42013-08-31 13:44:33 +08001677 ip6tunnel_xmit(skb, dev);
1678 return 0;
1679}
1680#endif
1681
Nicolas Dichtel11796182013-09-02 15:34:55 +02001682int vxlan_xmit_skb(struct vxlan_sock *vs,
Pravin B Shelar49560532013-08-19 11:23:17 -07001683 struct rtable *rt, struct sk_buff *skb,
1684 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001685 __be16 src_port, __be16 dst_port, __be32 vni, bool xnet)
Pravin B Shelar49560532013-08-19 11:23:17 -07001686{
1687 struct vxlanhdr *vxh;
1688 struct udphdr *uh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001689 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001690 int err;
1691
Tom Herbert359a0ea2014-06-04 17:20:29 -07001692 skb = vxlan_handle_offloads(skb, !vs->sock->sk->sk_no_check_tx);
1693 if (IS_ERR(skb))
1694 return -EINVAL;
Pravin B Shelar49560532013-08-19 11:23:17 -07001695
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001696 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001697 + VXLAN_HLEN + sizeof(struct iphdr)
1698 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001699
1700 /* Need space for new headers (invalidates iph ptr) */
1701 err = skb_cow_head(skb, min_headroom);
1702 if (unlikely(err))
1703 return err;
1704
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001705 if (vlan_tx_tag_present(skb)) {
1706 if (WARN_ON(!__vlan_put_tag(skb,
1707 skb->vlan_proto,
1708 vlan_tx_tag_get(skb))))
1709 return -ENOMEM;
1710
1711 skb->vlan_tci = 0;
1712 }
1713
Pravin B Shelar49560532013-08-19 11:23:17 -07001714 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1715 vxh->vx_flags = htonl(VXLAN_FLAGS);
1716 vxh->vx_vni = vni;
1717
1718 __skb_push(skb, sizeof(*uh));
1719 skb_reset_transport_header(skb);
1720 uh = udp_hdr(skb);
1721
1722 uh->dest = dst_port;
1723 uh->source = src_port;
1724
1725 uh->len = htons(skb->len);
Pravin B Shelar49560532013-08-19 11:23:17 -07001726
Tom Herbert359a0ea2014-06-04 17:20:29 -07001727 udp_set_csum(vs->sock->sk->sk_no_check_tx, skb,
1728 src, dst, skb->len);
Pravin B Shelar49560532013-08-19 11:23:17 -07001729
Eric Dumazetaad88722014-04-15 13:47:15 -04001730 return iptunnel_xmit(vs->sock->sk, rt, skb, src, dst, IPPROTO_UDP,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001731 tos, ttl, df, xnet);
Pravin B Shelar49560532013-08-19 11:23:17 -07001732}
1733EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1734
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001735/* Bypass encapsulation if the destination is local */
1736static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1737 struct vxlan_dev *dst_vxlan)
1738{
Li RongQing8f849852014-01-04 13:57:59 +08001739 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001740 union vxlan_addr loopback;
1741 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001742
Li RongQing8f849852014-01-04 13:57:59 +08001743 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1744 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001745 skb->pkt_type = PACKET_HOST;
1746 skb->encapsulation = 0;
1747 skb->dev = dst_vxlan->dev;
1748 __skb_pull(skb, skb_network_offset(skb));
1749
Cong Wange4c7ed42013-08-31 13:44:33 +08001750 if (remote_ip->sa.sa_family == AF_INET) {
1751 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1752 loopback.sa.sa_family = AF_INET;
1753#if IS_ENABLED(CONFIG_IPV6)
1754 } else {
1755 loopback.sin6.sin6_addr = in6addr_loopback;
1756 loopback.sa.sa_family = AF_INET6;
1757#endif
1758 }
1759
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001760 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001761 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001762
1763 u64_stats_update_begin(&tx_stats->syncp);
1764 tx_stats->tx_packets++;
1765 tx_stats->tx_bytes += skb->len;
1766 u64_stats_update_end(&tx_stats->syncp);
1767
1768 if (netif_rx(skb) == NET_RX_SUCCESS) {
1769 u64_stats_update_begin(&rx_stats->syncp);
1770 rx_stats->rx_packets++;
1771 rx_stats->rx_bytes += skb->len;
1772 u64_stats_update_end(&rx_stats->syncp);
1773 } else {
1774 skb->dev->stats.rx_dropped++;
1775 }
1776}
1777
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001778static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1779 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001780{
1781 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001782 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001783 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001784 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001785 union vxlan_addr *dst;
1786 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001787 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001788 __be16 df = 0;
1789 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001790 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001791
stephen hemminger823aa872013-04-27 11:31:57 +00001792 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001793 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001794 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001795
Cong Wange4c7ed42013-08-31 13:44:33 +08001796 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001797 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001798 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001799 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001800 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001801 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001802 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001803 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001804
stephen hemmingerd3428942012-10-01 12:32:35 +00001805 old_iph = ip_hdr(skb);
1806
stephen hemmingerd3428942012-10-01 12:32:35 +00001807 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001808 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001809 ttl = 1;
1810
1811 tos = vxlan->tos;
1812 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001813 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001814
Pravin B Shelar49560532013-08-19 11:23:17 -07001815 src_port = vxlan_src_port(vxlan->port_min, vxlan->port_max, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001816
Cong Wange4c7ed42013-08-31 13:44:33 +08001817 if (dst->sa.sa_family == AF_INET) {
1818 memset(&fl4, 0, sizeof(fl4));
1819 fl4.flowi4_oif = rdst->remote_ifindex;
1820 fl4.flowi4_tos = RT_TOS(tos);
1821 fl4.daddr = dst->sin.sin_addr.s_addr;
1822 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001823
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001824 rt = ip_route_output_key(vxlan->net, &fl4);
Cong Wange4c7ed42013-08-31 13:44:33 +08001825 if (IS_ERR(rt)) {
1826 netdev_dbg(dev, "no route to %pI4\n",
1827 &dst->sin.sin_addr.s_addr);
1828 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001829 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001830 }
1831
1832 if (rt->dst.dev == dev) {
1833 netdev_dbg(dev, "circular route to %pI4\n",
1834 &dst->sin.sin_addr.s_addr);
1835 dev->stats.collisions++;
Fan Dufffc15a2013-12-09 10:33:53 +08001836 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001837 }
1838
1839 /* Bypass encapsulation if the destination is local */
1840 if (rt->rt_flags & RTCF_LOCAL &&
1841 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1842 struct vxlan_dev *dst_vxlan;
1843
1844 ip_rt_put(rt);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001845 dst_vxlan = vxlan_find_vni(vxlan->net, vni, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001846 if (!dst_vxlan)
1847 goto tx_error;
1848 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1849 return;
1850 }
1851
1852 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1853 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
1854
Nicolas Dichtel11796182013-09-02 15:34:55 +02001855 err = vxlan_xmit_skb(vxlan->vn_sock, rt, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001856 fl4.saddr, dst->sin.sin_addr.s_addr,
1857 tos, ttl, df, src_port, dst_port,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001858 htonl(vni << 8),
1859 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Cong Wange4c7ed42013-08-31 13:44:33 +08001860
1861 if (err < 0)
1862 goto rt_tx_error;
1863 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1864#if IS_ENABLED(CONFIG_IPV6)
1865 } else {
1866 struct sock *sk = vxlan->vn_sock->sock->sk;
1867 struct dst_entry *ndst;
1868 struct flowi6 fl6;
1869 u32 flags;
1870
1871 memset(&fl6, 0, sizeof(fl6));
1872 fl6.flowi6_oif = rdst->remote_ifindex;
1873 fl6.daddr = dst->sin6.sin6_addr;
1874 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08001875 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08001876
1877 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
1878 netdev_dbg(dev, "no route to %pI6\n",
1879 &dst->sin6.sin6_addr);
1880 dev->stats.tx_carrier_errors++;
1881 goto tx_error;
1882 }
1883
1884 if (ndst->dev == dev) {
1885 netdev_dbg(dev, "circular route to %pI6\n",
1886 &dst->sin6.sin6_addr);
1887 dst_release(ndst);
1888 dev->stats.collisions++;
1889 goto tx_error;
1890 }
1891
1892 /* Bypass encapsulation if the destination is local */
1893 flags = ((struct rt6_info *)ndst)->rt6i_flags;
1894 if (flags & RTF_LOCAL &&
1895 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1896 struct vxlan_dev *dst_vxlan;
1897
1898 dst_release(ndst);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001899 dst_vxlan = vxlan_find_vni(vxlan->net, vni, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001900 if (!dst_vxlan)
1901 goto tx_error;
1902 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1903 return;
1904 }
1905
1906 ttl = ttl ? : ip6_dst_hoplimit(ndst);
1907
Nicolas Dichtel11796182013-09-02 15:34:55 +02001908 err = vxlan6_xmit_skb(vxlan->vn_sock, ndst, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001909 dev, &fl6.saddr, &fl6.daddr, 0, ttl,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001910 src_port, dst_port, htonl(vni << 8),
1911 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Cong Wange4c7ed42013-08-31 13:44:33 +08001912#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001913 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001914
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001915 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001916
1917drop:
1918 dev->stats.tx_dropped++;
1919 goto tx_free;
1920
Pravin B Shelar49560532013-08-19 11:23:17 -07001921rt_tx_error:
1922 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001923tx_error:
1924 dev->stats.tx_errors++;
1925tx_free:
1926 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001927}
1928
David Stevens66817122013-03-15 04:35:51 +00001929/* Transmit local packets over Vxlan
1930 *
1931 * Outer IP header inherits ECN and DF from inner header.
1932 * Outer UDP destination is the VXLAN assigned port.
1933 * source port is based on hash of flow
1934 */
1935static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1936{
1937 struct vxlan_dev *vxlan = netdev_priv(dev);
1938 struct ethhdr *eth;
1939 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08001940 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00001941 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00001942
1943 skb_reset_mac_header(skb);
1944 eth = eth_hdr(skb);
1945
Cong Wangf564f452013-08-31 13:44:36 +08001946 if ((vxlan->flags & VXLAN_F_PROXY)) {
1947 if (ntohs(eth->h_proto) == ETH_P_ARP)
1948 return arp_reduce(dev, skb);
1949#if IS_ENABLED(CONFIG_IPV6)
1950 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
1951 skb->len >= sizeof(struct ipv6hdr) + sizeof(struct nd_msg) &&
1952 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
1953 struct nd_msg *msg;
1954
1955 msg = (struct nd_msg *)skb_transport_header(skb);
1956 if (msg->icmph.icmp6_code == 0 &&
1957 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
1958 return neigh_reduce(dev, skb);
1959 }
1960#endif
1961 }
David Stevens66817122013-03-15 04:35:51 +00001962
1963 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00001964 did_rsc = false;
1965
1966 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08001967 (ntohs(eth->h_proto) == ETH_P_IP ||
1968 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00001969 did_rsc = route_shortcircuit(dev, skb);
1970 if (did_rsc)
1971 f = vxlan_find_mac(vxlan, eth->h_dest);
1972 }
1973
David Stevens66817122013-03-15 04:35:51 +00001974 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001975 f = vxlan_find_mac(vxlan, all_zeros_mac);
1976 if (f == NULL) {
1977 if ((vxlan->flags & VXLAN_F_L2MISS) &&
1978 !is_multicast_ether_addr(eth->h_dest))
1979 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00001980
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001981 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08001982 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001983 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001984 }
David Stevens66817122013-03-15 04:35:51 +00001985 }
1986
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001987 list_for_each_entry_rcu(rdst, &f->remotes, list) {
1988 struct sk_buff *skb1;
1989
Eric Dumazet8f646c92014-01-06 09:54:31 -08001990 if (!fdst) {
1991 fdst = rdst;
1992 continue;
1993 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001994 skb1 = skb_clone(skb, GFP_ATOMIC);
1995 if (skb1)
1996 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1997 }
1998
Eric Dumazet8f646c92014-01-06 09:54:31 -08001999 if (fdst)
2000 vxlan_xmit_one(skb, dev, fdst, did_rsc);
2001 else
2002 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002003 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002004}
2005
stephen hemmingerd3428942012-10-01 12:32:35 +00002006/* Walk the forwarding table and purge stale entries */
2007static void vxlan_cleanup(unsigned long arg)
2008{
2009 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2010 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2011 unsigned int h;
2012
2013 if (!netif_running(vxlan->dev))
2014 return;
2015
2016 spin_lock_bh(&vxlan->hash_lock);
2017 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2018 struct hlist_node *p, *n;
2019 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2020 struct vxlan_fdb *f
2021 = container_of(p, struct vxlan_fdb, hlist);
2022 unsigned long timeout;
2023
stephen hemminger3c172862012-10-26 06:24:34 +00002024 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00002025 continue;
2026
2027 timeout = f->used + vxlan->age_interval * HZ;
2028 if (time_before_eq(timeout, jiffies)) {
2029 netdev_dbg(vxlan->dev,
2030 "garbage collect %pM\n",
2031 f->eth_addr);
2032 f->state = NUD_STALE;
2033 vxlan_fdb_destroy(vxlan, f);
2034 } else if (time_before(timeout, next_timer))
2035 next_timer = timeout;
2036 }
2037 }
2038 spin_unlock_bh(&vxlan->hash_lock);
2039
2040 mod_timer(&vxlan->age_timer, next_timer);
2041}
2042
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002043static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2044{
2045 __u32 vni = vxlan->default_dst.remote_vni;
2046
2047 vxlan->vn_sock = vs;
2048 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
2049}
2050
stephen hemmingerd3428942012-10-01 12:32:35 +00002051/* Setup stats when device is created */
2052static int vxlan_init(struct net_device *dev)
2053{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002054 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002055 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002056 struct vxlan_sock *vs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002057
WANG Cong1c213bd2014-02-13 11:46:28 -08002058 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002059 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002060 return -ENOMEM;
2061
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002062 spin_lock(&vn->sock_lock);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002063 vs = vxlan_find_sock(vxlan->net, vxlan->dst_port);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002064 if (vs) {
2065 /* If we have a socket with same port already, reuse it */
2066 atomic_inc(&vs->refcnt);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002067 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002068 } else {
2069 /* otherwise make new socket outside of RTNL */
2070 dev_hold(dev);
2071 queue_work(vxlan_wq, &vxlan->sock_work);
2072 }
2073 spin_unlock(&vn->sock_lock);
2074
stephen hemmingerd3428942012-10-01 12:32:35 +00002075 return 0;
2076}
2077
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002078static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002079{
2080 struct vxlan_fdb *f;
2081
2082 spin_lock_bh(&vxlan->hash_lock);
2083 f = __vxlan_find_mac(vxlan, all_zeros_mac);
2084 if (f)
2085 vxlan_fdb_destroy(vxlan, f);
2086 spin_unlock_bh(&vxlan->hash_lock);
2087}
2088
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002089static void vxlan_uninit(struct net_device *dev)
2090{
2091 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002092 struct vxlan_sock *vs = vxlan->vn_sock;
2093
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002094 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002095
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002096 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07002097 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002098 free_percpu(dev->tstats);
2099}
2100
stephen hemmingerd3428942012-10-01 12:32:35 +00002101/* Start ageing timer and join group when device is brought up */
2102static int vxlan_open(struct net_device *dev)
2103{
2104 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002105 struct vxlan_sock *vs = vxlan->vn_sock;
2106
2107 /* socket hasn't been created */
2108 if (!vs)
2109 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002110
Gao feng79d4a942013-12-10 16:37:32 +08002111 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002112 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002113 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002114 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00002115 }
2116
2117 if (vxlan->age_interval)
2118 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2119
2120 return 0;
2121}
2122
2123/* Purge the forwarding table */
2124static void vxlan_flush(struct vxlan_dev *vxlan)
2125{
Cong Wang31fec5a2013-05-27 22:35:52 +00002126 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002127
2128 spin_lock_bh(&vxlan->hash_lock);
2129 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2130 struct hlist_node *p, *n;
2131 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2132 struct vxlan_fdb *f
2133 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002134 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2135 if (!is_zero_ether_addr(f->eth_addr))
2136 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002137 }
2138 }
2139 spin_unlock_bh(&vxlan->hash_lock);
2140}
2141
2142/* Cleanup timer and forwarding table on shutdown */
2143static int vxlan_stop(struct net_device *dev)
2144{
2145 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002146 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002147 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00002148
Cong Wange4c7ed42013-08-31 13:44:33 +08002149 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
Gao feng95ab0992013-12-10 16:37:33 +08002150 !vxlan_group_used(vn, vxlan)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002151 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002152 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002153 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002154 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002155
2156 del_timer_sync(&vxlan->age_timer);
2157
2158 vxlan_flush(vxlan);
2159
2160 return 0;
2161}
2162
stephen hemmingerd3428942012-10-01 12:32:35 +00002163/* Stub, nothing needs to be done. */
2164static void vxlan_set_multicast_list(struct net_device *dev)
2165{
2166}
2167
Daniel Borkmann345010b2013-12-18 00:21:08 +01002168static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2169{
2170 struct vxlan_dev *vxlan = netdev_priv(dev);
2171 struct vxlan_rdst *dst = &vxlan->default_dst;
2172 struct net_device *lowerdev;
2173 int max_mtu;
2174
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002175 lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002176 if (lowerdev == NULL)
2177 return eth_change_mtu(dev, new_mtu);
2178
2179 if (dst->remote_ip.sa.sa_family == AF_INET6)
2180 max_mtu = lowerdev->mtu - VXLAN6_HEADROOM;
2181 else
2182 max_mtu = lowerdev->mtu - VXLAN_HEADROOM;
2183
2184 if (new_mtu < 68 || new_mtu > max_mtu)
2185 return -EINVAL;
2186
2187 dev->mtu = new_mtu;
2188 return 0;
2189}
2190
stephen hemmingerd3428942012-10-01 12:32:35 +00002191static const struct net_device_ops vxlan_netdev_ops = {
2192 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002193 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002194 .ndo_open = vxlan_open,
2195 .ndo_stop = vxlan_stop,
2196 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002197 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002198 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002199 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002200 .ndo_validate_addr = eth_validate_addr,
2201 .ndo_set_mac_address = eth_mac_addr,
2202 .ndo_fdb_add = vxlan_fdb_add,
2203 .ndo_fdb_del = vxlan_fdb_delete,
2204 .ndo_fdb_dump = vxlan_fdb_dump,
2205};
2206
2207/* Info for udev, that this is a virtual tunnel endpoint */
2208static struct device_type vxlan_type = {
2209 .name = "vxlan",
2210};
2211
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002212/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002213 * supply the listening VXLAN udp ports. Callers are expected
2214 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002215 */
2216void vxlan_get_rx_port(struct net_device *dev)
2217{
2218 struct vxlan_sock *vs;
2219 struct net *net = dev_net(dev);
2220 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2221 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002222 __be16 port;
2223 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002224
2225 spin_lock(&vn->sock_lock);
2226 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002227 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2228 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002229 sa_family = vs->sock->sk->sk_family;
2230 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2231 port);
2232 }
2233 }
2234 spin_unlock(&vn->sock_lock);
2235}
2236EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2237
stephen hemmingerd3428942012-10-01 12:32:35 +00002238/* Initialize the device structure. */
2239static void vxlan_setup(struct net_device *dev)
2240{
2241 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002242 unsigned int h;
stephen hemminger05f47d62012-10-09 20:35:50 +00002243 int low, high;
stephen hemmingerd3428942012-10-01 12:32:35 +00002244
2245 eth_hw_addr_random(dev);
2246 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002247 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
2248 dev->hard_header_len = ETH_HLEN + VXLAN6_HEADROOM;
2249 else
2250 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002251
2252 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002253 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002254 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2255
2256 dev->tx_queue_len = 0;
2257 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002258 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002259 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002260 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002261
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002262 dev->vlan_features = dev->features;
2263 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002264 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002265 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002266 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
stephen hemmingerd3428942012-10-01 12:32:35 +00002267 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
stephen hemminger6602d002012-12-31 12:00:21 +00002268 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002269
stephen hemminger553675f2013-05-16 11:35:20 +00002270 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002271 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002272 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2273 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002274 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002275
2276 init_timer_deferrable(&vxlan->age_timer);
2277 vxlan->age_timer.function = vxlan_cleanup;
2278 vxlan->age_timer.data = (unsigned long) vxlan;
2279
Eric W. Biederman0bbf87d2013-09-28 14:10:59 -07002280 inet_get_local_port_range(dev_net(dev), &low, &high);
stephen hemminger05f47d62012-10-09 20:35:50 +00002281 vxlan->port_min = low;
2282 vxlan->port_max = high;
stephen hemminger823aa872013-04-27 11:31:57 +00002283 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002284
stephen hemmingerd3428942012-10-01 12:32:35 +00002285 vxlan->dev = dev;
2286
2287 for (h = 0; h < FDB_HASH_SIZE; ++h)
2288 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2289}
2290
2291static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2292 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002293 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002294 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002295 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2296 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002297 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002298 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2299 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2300 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2301 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2302 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002303 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002304 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2305 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2306 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2307 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002308 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002309};
2310
2311static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2312{
2313 if (tb[IFLA_ADDRESS]) {
2314 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2315 pr_debug("invalid link address (not ethernet)\n");
2316 return -EINVAL;
2317 }
2318
2319 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2320 pr_debug("invalid all zero ethernet address\n");
2321 return -EADDRNOTAVAIL;
2322 }
2323 }
2324
2325 if (!data)
2326 return -EINVAL;
2327
2328 if (data[IFLA_VXLAN_ID]) {
2329 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2330 if (id >= VXLAN_VID_MASK)
2331 return -ERANGE;
2332 }
2333
stephen hemminger05f47d62012-10-09 20:35:50 +00002334 if (data[IFLA_VXLAN_PORT_RANGE]) {
2335 const struct ifla_vxlan_port_range *p
2336 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2337
2338 if (ntohs(p->high) < ntohs(p->low)) {
2339 pr_debug("port range %u .. %u not valid\n",
2340 ntohs(p->low), ntohs(p->high));
2341 return -EINVAL;
2342 }
2343 }
2344
stephen hemmingerd3428942012-10-01 12:32:35 +00002345 return 0;
2346}
2347
Yan Burman1b13c972013-01-29 23:43:07 +00002348static void vxlan_get_drvinfo(struct net_device *netdev,
2349 struct ethtool_drvinfo *drvinfo)
2350{
2351 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2352 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2353}
2354
2355static const struct ethtool_ops vxlan_ethtool_ops = {
2356 .get_drvinfo = vxlan_get_drvinfo,
2357 .get_link = ethtool_op_get_link,
2358};
2359
stephen hemminger553675f2013-05-16 11:35:20 +00002360static void vxlan_del_work(struct work_struct *work)
2361{
2362 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
2363
2364 sk_release_kernel(vs->sock->sk);
2365 kfree_rcu(vs, rcu);
2366}
2367
Cong Wange4c7ed42013-08-31 13:44:33 +08002368#if IS_ENABLED(CONFIG_IPV6)
2369/* Create UDP socket for encapsulation receive. AF_INET6 socket
2370 * could be used for both IPv4 and IPv6 communications, but
2371 * users may set bindv6only=1.
2372 */
Tom Herbert359a0ea2014-06-04 17:20:29 -07002373static struct socket *create_v6_sock(struct net *net, __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002374{
stephen hemminger553675f2013-05-16 11:35:20 +00002375 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08002376 struct socket *sock;
2377 struct sockaddr_in6 vxlan_addr = {
2378 .sin6_family = AF_INET6,
2379 .sin6_port = port,
2380 };
2381 int rc, val = 1;
2382
2383 rc = sock_create_kern(AF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock);
2384 if (rc < 0) {
2385 pr_debug("UDPv6 socket create failed\n");
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002386 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002387 }
2388
2389 /* Put in proper namespace */
2390 sk = sock->sk;
2391 sk_change_net(sk, net);
2392
2393 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
2394 (char *)&val, sizeof(val));
2395 rc = kernel_bind(sock, (struct sockaddr *)&vxlan_addr,
2396 sizeof(struct sockaddr_in6));
2397 if (rc < 0) {
2398 pr_debug("bind for UDPv6 socket %pI6:%u (%d)\n",
2399 &vxlan_addr.sin6_addr, ntohs(vxlan_addr.sin6_port), rc);
2400 sk_release_kernel(sk);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002401 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002402 }
2403 /* At this point, IPv6 module should have been loaded in
2404 * sock_create_kern().
2405 */
2406 BUG_ON(!ipv6_stub);
2407
Cong Wange4c7ed42013-08-31 13:44:33 +08002408 /* Disable multicast loopback */
2409 inet_sk(sk)->mc_loop = 0;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002410
2411 if (flags & VXLAN_F_UDP_ZERO_CSUM6_TX)
2412 udp_set_no_check6_tx(sk, true);
2413
2414 if (flags & VXLAN_F_UDP_ZERO_CSUM6_RX)
2415 udp_set_no_check6_rx(sk, true);
2416
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002417 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002418}
2419
2420#else
2421
Tom Herbert359a0ea2014-06-04 17:20:29 -07002422static struct socket *create_v6_sock(struct net *net, __be16 port, u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002423{
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002424 return ERR_PTR(-EPFNOSUPPORT);
Cong Wange4c7ed42013-08-31 13:44:33 +08002425}
2426#endif
2427
Tom Herbert359a0ea2014-06-04 17:20:29 -07002428static struct socket *create_v4_sock(struct net *net, __be16 port, u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002429{
2430 struct sock *sk;
2431 struct socket *sock;
stephen hemminger553675f2013-05-16 11:35:20 +00002432 struct sockaddr_in vxlan_addr = {
2433 .sin_family = AF_INET,
2434 .sin_addr.s_addr = htonl(INADDR_ANY),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -07002435 .sin_port = port,
stephen hemminger553675f2013-05-16 11:35:20 +00002436 };
2437 int rc;
Cong Wange4c7ed42013-08-31 13:44:33 +08002438
2439 /* Create UDP socket for encapsulation receive. */
2440 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
2441 if (rc < 0) {
2442 pr_debug("UDP socket create failed\n");
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002443 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002444 }
2445
2446 /* Put in proper namespace */
2447 sk = sock->sk;
2448 sk_change_net(sk, net);
2449
2450 rc = kernel_bind(sock, (struct sockaddr *) &vxlan_addr,
2451 sizeof(vxlan_addr));
2452 if (rc < 0) {
2453 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
2454 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
2455 sk_release_kernel(sk);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002456 return ERR_PTR(rc);
Cong Wange4c7ed42013-08-31 13:44:33 +08002457 }
2458
Cong Wange4c7ed42013-08-31 13:44:33 +08002459 /* Disable multicast loopback */
2460 inet_sk(sk)->mc_loop = 0;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002461
2462 if (!(flags & VXLAN_F_UDP_CSUM))
2463 sock->sk->sk_no_check_tx = 1;
2464
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002465 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002466}
2467
2468/* Create new listen socket if needed */
2469static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002470 vxlan_rcv_t *rcv, void *data,
2471 u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002472{
2473 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2474 struct vxlan_sock *vs;
2475 struct socket *sock;
2476 struct sock *sk;
Cong Wang31fec5a2013-05-27 22:35:52 +00002477 unsigned int h;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002478 bool ipv6 = !!(flags & VXLAN_F_IPV6);
stephen hemminger553675f2013-05-16 11:35:20 +00002479
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002480 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002481 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002482 return ERR_PTR(-ENOMEM);
2483
2484 for (h = 0; h < VNI_HASH_SIZE; ++h)
2485 INIT_HLIST_HEAD(&vs->vni_list[h]);
2486
2487 INIT_WORK(&vs->del_work, vxlan_del_work);
2488
Cong Wange4c7ed42013-08-31 13:44:33 +08002489 if (ipv6)
Tom Herbert359a0ea2014-06-04 17:20:29 -07002490 sock = create_v6_sock(net, port, flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002491 else
Tom Herbert359a0ea2014-06-04 17:20:29 -07002492 sock = create_v4_sock(net, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002493 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002494 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002495 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002496 }
2497
Cong Wange4c7ed42013-08-31 13:44:33 +08002498 vs->sock = sock;
2499 sk = sock->sk;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002500 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002501 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002502 vs->data = data;
Pravin B Shelar559835ea2013-09-24 10:25:40 -07002503 rcu_assign_sk_user_data(vs->sock->sk, vs);
stephen hemminger553675f2013-05-16 11:35:20 +00002504
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002505 /* Initialize the vxlan udp offloads structure */
2506 vs->udp_offloads.port = port;
2507 vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive;
2508 vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete;
2509
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002510 spin_lock(&vn->sock_lock);
2511 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002512 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002513 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002514
2515 /* Mark socket as an encapsulation socket. */
2516 udp_sk(sk)->encap_type = 1;
2517 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
Cong Wange4c7ed42013-08-31 13:44:33 +08002518#if IS_ENABLED(CONFIG_IPV6)
2519 if (ipv6)
2520 ipv6_stub->udpv6_encap_enable();
2521 else
2522#endif
2523 udp_encap_enable();
2524
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002525 return vs;
2526}
stephen hemminger553675f2013-05-16 11:35:20 +00002527
Pravin B Shelar012a5722013-08-19 11:23:07 -07002528struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2529 vxlan_rcv_t *rcv, void *data,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002530 bool no_share, u32 flags)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002531{
2532 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2533 struct vxlan_sock *vs;
2534
Tom Herbert359a0ea2014-06-04 17:20:29 -07002535 vs = vxlan_socket_create(net, port, rcv, data, flags);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002536 if (!IS_ERR(vs))
2537 return vs;
2538
Pravin B Shelar012a5722013-08-19 11:23:07 -07002539 if (no_share) /* Return error if sharing is not allowed. */
2540 return vs;
2541
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002542 spin_lock(&vn->sock_lock);
2543 vs = vxlan_find_sock(net, port);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002544 if (vs) {
2545 if (vs->rcv == rcv)
2546 atomic_inc(&vs->refcnt);
2547 else
2548 vs = ERR_PTR(-EBUSY);
2549 }
2550 spin_unlock(&vn->sock_lock);
2551
2552 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002553 vs = ERR_PTR(-EINVAL);
2554
stephen hemminger553675f2013-05-16 11:35:20 +00002555 return vs;
2556}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002557EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002558
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002559/* Scheduled at device creation to bind to a socket */
2560static void vxlan_sock_work(struct work_struct *work)
2561{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002562 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002563 struct net *net = vxlan->net;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002564 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002565 __be16 port = vxlan->dst_port;
2566 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002567
Tom Herbert359a0ea2014-06-04 17:20:29 -07002568 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002569 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002570 if (!IS_ERR(nvs))
2571 vxlan_vs_add_dev(nvs, vxlan);
2572 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002573
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002574 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002575}
2576
stephen hemmingerd3428942012-10-01 12:32:35 +00002577static int vxlan_newlink(struct net *net, struct net_device *dev,
2578 struct nlattr *tb[], struct nlattr *data[])
2579{
stephen hemminger553675f2013-05-16 11:35:20 +00002580 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002581 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002582 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002583 __u32 vni;
2584 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002585 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002586
2587 if (!data[IFLA_VXLAN_ID])
2588 return -EINVAL;
2589
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002590 vxlan->net = dev_net(dev);
2591
stephen hemmingerd3428942012-10-01 12:32:35 +00002592 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002593 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002594
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002595 /* Unless IPv6 is explicitly requested, assume IPv4 */
2596 dst->remote_ip.sa.sa_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002597 if (data[IFLA_VXLAN_GROUP]) {
2598 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
Cong Wange4c7ed42013-08-31 13:44:33 +08002599 } else if (data[IFLA_VXLAN_GROUP6]) {
2600 if (!IS_ENABLED(CONFIG_IPV6))
2601 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002602
Cong Wange4c7ed42013-08-31 13:44:33 +08002603 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2604 sizeof(struct in6_addr));
2605 dst->remote_ip.sa.sa_family = AF_INET6;
2606 use_ipv6 = true;
2607 }
2608
2609 if (data[IFLA_VXLAN_LOCAL]) {
2610 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2611 vxlan->saddr.sa.sa_family = AF_INET;
2612 } else if (data[IFLA_VXLAN_LOCAL6]) {
2613 if (!IS_ENABLED(CONFIG_IPV6))
2614 return -EPFNOSUPPORT;
2615
2616 /* TODO: respect scope id */
2617 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2618 sizeof(struct in6_addr));
2619 vxlan->saddr.sa.sa_family = AF_INET6;
2620 use_ipv6 = true;
2621 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002622
stephen hemminger34e02aa2012-10-09 20:35:53 +00002623 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002624 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002625 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00002626 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002627
stephen hemminger34e02aa2012-10-09 20:35:53 +00002628 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002629 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002630 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002631 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002632
Cong Wange4c7ed42013-08-31 13:44:33 +08002633#if IS_ENABLED(CONFIG_IPV6)
2634 if (use_ipv6) {
2635 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2636 if (idev && idev->cnf.disable_ipv6) {
2637 pr_info("IPv6 is disabled via sysctl\n");
2638 return -EPERM;
2639 }
2640 vxlan->flags |= VXLAN_F_IPV6;
2641 }
2642#endif
2643
stephen hemminger34e02aa2012-10-09 20:35:53 +00002644 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002645 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002646
2647 /* update header length based on lower device */
2648 dev->hard_header_len = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002649 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
fan.du7bda7012014-01-03 10:18:58 +08002650 } else if (use_ipv6)
2651 vxlan->flags |= VXLAN_F_IPV6;
stephen hemmingerd3428942012-10-01 12:32:35 +00002652
2653 if (data[IFLA_VXLAN_TOS])
2654 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2655
Vincent Bernatafb97182012-10-30 10:27:16 +00002656 if (data[IFLA_VXLAN_TTL])
2657 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2658
stephen hemmingerd3428942012-10-01 12:32:35 +00002659 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002660 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002661
2662 if (data[IFLA_VXLAN_AGEING])
2663 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2664 else
2665 vxlan->age_interval = FDB_AGE_DEFAULT;
2666
David Stevense4f67ad2012-11-20 02:50:14 +00002667 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2668 vxlan->flags |= VXLAN_F_PROXY;
2669
2670 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2671 vxlan->flags |= VXLAN_F_RSC;
2672
2673 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2674 vxlan->flags |= VXLAN_F_L2MISS;
2675
2676 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2677 vxlan->flags |= VXLAN_F_L3MISS;
2678
stephen hemmingerd3428942012-10-01 12:32:35 +00002679 if (data[IFLA_VXLAN_LIMIT])
2680 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2681
stephen hemminger05f47d62012-10-09 20:35:50 +00002682 if (data[IFLA_VXLAN_PORT_RANGE]) {
2683 const struct ifla_vxlan_port_range *p
2684 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2685 vxlan->port_min = ntohs(p->low);
2686 vxlan->port_max = ntohs(p->high);
2687 }
2688
stephen hemminger823aa872013-04-27 11:31:57 +00002689 if (data[IFLA_VXLAN_PORT])
2690 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2691
Tom Herbert359a0ea2014-06-04 17:20:29 -07002692 if (data[IFLA_VXLAN_UDP_CSUM] && nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
2693 vxlan->flags |= VXLAN_F_UDP_CSUM;
2694
2695 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX] &&
2696 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
2697 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
2698
2699 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX] &&
2700 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
2701 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
2702
stephen hemminger553675f2013-05-16 11:35:20 +00002703 if (vxlan_find_vni(net, vni, vxlan->dst_port)) {
2704 pr_info("duplicate VNI %u\n", vni);
2705 return -EEXIST;
2706 }
2707
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002708 dev->ethtool_ops = &vxlan_ethtool_ops;
Yan Burman1b13c972013-01-29 23:43:07 +00002709
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002710 /* create an fdb entry for a valid default destination */
2711 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2712 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2713 &vxlan->default_dst.remote_ip,
2714 NUD_REACHABLE|NUD_PERMANENT,
2715 NLM_F_EXCL|NLM_F_CREATE,
2716 vxlan->dst_port,
2717 vxlan->default_dst.remote_vni,
2718 vxlan->default_dst.remote_ifindex,
2719 NTF_SELF);
2720 if (err)
2721 return err;
2722 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002723
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002724 err = register_netdevice(dev);
2725 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002726 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002727 return err;
2728 }
2729
stephen hemminger553675f2013-05-16 11:35:20 +00002730 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002731
2732 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002733}
2734
2735static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2736{
2737 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002738 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002739
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002740 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002741 if (!hlist_unhashed(&vxlan->hlist))
2742 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002743 spin_unlock(&vn->sock_lock);
2744
stephen hemminger553675f2013-05-16 11:35:20 +00002745 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002746 unregister_netdevice_queue(dev, head);
2747}
2748
2749static size_t vxlan_get_size(const struct net_device *dev)
2750{
2751
2752 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002753 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002754 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002755 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002756 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2757 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2758 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002759 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2760 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2761 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2762 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002763 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2764 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002765 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07002766 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
2767 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
2768 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
2769 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00002770 0;
2771}
2772
2773static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2774{
2775 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002776 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002777 struct ifla_vxlan_port_range ports = {
2778 .low = htons(vxlan->port_min),
2779 .high = htons(vxlan->port_max),
2780 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002781
Atzm Watanabec7995c42013-04-16 02:50:52 +00002782 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002783 goto nla_put_failure;
2784
Cong Wange4c7ed42013-08-31 13:44:33 +08002785 if (!vxlan_addr_any(&dst->remote_ip)) {
2786 if (dst->remote_ip.sa.sa_family == AF_INET) {
2787 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2788 dst->remote_ip.sin.sin_addr.s_addr))
2789 goto nla_put_failure;
2790#if IS_ENABLED(CONFIG_IPV6)
2791 } else {
2792 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2793 &dst->remote_ip.sin6.sin6_addr))
2794 goto nla_put_failure;
2795#endif
2796 }
2797 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002798
Atzm Watanabec7995c42013-04-16 02:50:52 +00002799 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002800 goto nla_put_failure;
2801
Cong Wange4c7ed42013-08-31 13:44:33 +08002802 if (!vxlan_addr_any(&vxlan->saddr)) {
2803 if (vxlan->saddr.sa.sa_family == AF_INET) {
2804 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2805 vxlan->saddr.sin.sin_addr.s_addr))
2806 goto nla_put_failure;
2807#if IS_ENABLED(CONFIG_IPV6)
2808 } else {
2809 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2810 &vxlan->saddr.sin6.sin6_addr))
2811 goto nla_put_failure;
2812#endif
2813 }
2814 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002815
2816 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2817 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002818 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2819 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2820 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2821 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2822 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2823 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2824 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2825 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2826 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002827 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002828 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07002829 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port) ||
2830 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
2831 !!(vxlan->flags & VXLAN_F_UDP_CSUM)) ||
2832 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
2833 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
2834 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
2835 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00002836 goto nla_put_failure;
2837
stephen hemminger05f47d62012-10-09 20:35:50 +00002838 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2839 goto nla_put_failure;
2840
stephen hemmingerd3428942012-10-01 12:32:35 +00002841 return 0;
2842
2843nla_put_failure:
2844 return -EMSGSIZE;
2845}
2846
2847static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2848 .kind = "vxlan",
2849 .maxtype = IFLA_VXLAN_MAX,
2850 .policy = vxlan_policy,
2851 .priv_size = sizeof(struct vxlan_dev),
2852 .setup = vxlan_setup,
2853 .validate = vxlan_validate,
2854 .newlink = vxlan_newlink,
2855 .dellink = vxlan_dellink,
2856 .get_size = vxlan_get_size,
2857 .fill_info = vxlan_fill_info,
2858};
2859
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002860static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
2861 struct net_device *dev)
2862{
2863 struct vxlan_dev *vxlan, *next;
2864 LIST_HEAD(list_kill);
2865
2866 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2867 struct vxlan_rdst *dst = &vxlan->default_dst;
2868
2869 /* In case we created vxlan device with carrier
2870 * and we loose the carrier due to module unload
2871 * we also need to remove vxlan device. In other
2872 * cases, it's not necessary and remote_ifindex
2873 * is 0 here, so no matches.
2874 */
2875 if (dst->remote_ifindex == dev->ifindex)
2876 vxlan_dellink(vxlan->dev, &list_kill);
2877 }
2878
2879 unregister_netdevice_many(&list_kill);
2880}
2881
2882static int vxlan_lowerdev_event(struct notifier_block *unused,
2883 unsigned long event, void *ptr)
2884{
2885 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002886 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002887
Daniel Borkmann783c1462014-01-22 21:07:53 +01002888 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002889 vxlan_handle_lowerdev_unregister(vn, dev);
2890
2891 return NOTIFY_DONE;
2892}
2893
2894static struct notifier_block vxlan_notifier_block __read_mostly = {
2895 .notifier_call = vxlan_lowerdev_event,
2896};
2897
stephen hemmingerd3428942012-10-01 12:32:35 +00002898static __net_init int vxlan_init_net(struct net *net)
2899{
2900 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002901 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002902
stephen hemminger553675f2013-05-16 11:35:20 +00002903 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002904 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002905
stephen hemminger553675f2013-05-16 11:35:20 +00002906 for (h = 0; h < PORT_HASH_SIZE; ++h)
2907 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002908
2909 return 0;
2910}
2911
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002912static void __net_exit vxlan_exit_net(struct net *net)
2913{
2914 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2915 struct vxlan_dev *vxlan, *next;
2916 struct net_device *dev, *aux;
2917 LIST_HEAD(list);
2918
2919 rtnl_lock();
2920 for_each_netdev_safe(net, dev, aux)
2921 if (dev->rtnl_link_ops == &vxlan_link_ops)
2922 unregister_netdevice_queue(dev, &list);
2923
2924 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2925 /* If vxlan->dev is in the same netns, it has already been added
2926 * to the list by the previous loop.
2927 */
2928 if (!net_eq(dev_net(vxlan->dev), net))
2929 unregister_netdevice_queue(dev, &list);
2930 }
2931
2932 unregister_netdevice_many(&list);
2933 rtnl_unlock();
2934}
2935
stephen hemmingerd3428942012-10-01 12:32:35 +00002936static struct pernet_operations vxlan_net_ops = {
2937 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002938 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00002939 .id = &vxlan_net_id,
2940 .size = sizeof(struct vxlan_net),
2941};
2942
2943static int __init vxlan_init_module(void)
2944{
2945 int rc;
2946
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002947 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
2948 if (!vxlan_wq)
2949 return -ENOMEM;
2950
stephen hemmingerd3428942012-10-01 12:32:35 +00002951 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
2952
Daniel Borkmann783c1462014-01-22 21:07:53 +01002953 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00002954 if (rc)
2955 goto out1;
2956
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002957 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00002958 if (rc)
2959 goto out2;
2960
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002961 rc = rtnl_link_register(&vxlan_link_ops);
2962 if (rc)
2963 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00002964
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002965 return 0;
2966out3:
2967 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00002968out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01002969 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00002970out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002971 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00002972 return rc;
2973}
Cong Wang7332a132013-05-27 22:35:53 +00002974late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00002975
2976static void __exit vxlan_cleanup_module(void)
2977{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07002978 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002979 unregister_netdevice_notifier(&vxlan_notifier_block);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002980 destroy_workqueue(vxlan_wq);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002981 unregister_pernet_subsys(&vxlan_net_ops);
2982 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00002983}
2984module_exit(vxlan_cleanup_module);
2985
2986MODULE_LICENSE("GPL");
2987MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00002988MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08002989MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00002990MODULE_ALIAS_RTNL_LINK("vxlan");