xref: /openbmc/linux/drivers/net/vxlan/vxlan_core.c (revision 3f03a4a9)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * VXLAN: Virtual eXtensible Local Area Network
4  *
5  * Copyright (c) 2012-2013 Vyatta Inc.
6  */
7 
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/errno.h>
13 #include <linux/slab.h>
14 #include <linux/udp.h>
15 #include <linux/igmp.h>
16 #include <linux/if_ether.h>
17 #include <linux/ethtool.h>
18 #include <net/arp.h>
19 #include <net/ndisc.h>
20 #include <net/gro.h>
21 #include <net/ipv6_stubs.h>
22 #include <net/ip.h>
23 #include <net/icmp.h>
24 #include <net/rtnetlink.h>
25 #include <net/inet_ecn.h>
26 #include <net/net_namespace.h>
27 #include <net/netns/generic.h>
28 #include <net/tun_proto.h>
29 #include <net/vxlan.h>
30 #include <net/nexthop.h>
31 
32 #if IS_ENABLED(CONFIG_IPV6)
33 #include <net/ip6_tunnel.h>
34 #include <net/ip6_checksum.h>
35 #endif
36 
37 #include "vxlan_private.h"
38 
39 #define VXLAN_VERSION	"0.1"
40 
41 #define FDB_AGE_DEFAULT 300 /* 5 min */
42 #define FDB_AGE_INTERVAL (10 * HZ)	/* rescan interval */
43 
44 /* UDP port for VXLAN traffic.
45  * The IANA assigned port is 4789, but the Linux default is 8472
46  * for compatibility with early adopters.
47  */
48 static unsigned short vxlan_port __read_mostly = 8472;
49 module_param_named(udp_port, vxlan_port, ushort, 0444);
50 MODULE_PARM_DESC(udp_port, "Destination UDP port");
51 
52 static bool log_ecn_error = true;
53 module_param(log_ecn_error, bool, 0644);
54 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
55 
56 unsigned int vxlan_net_id;
57 
58 const u8 all_zeros_mac[ETH_ALEN + 2];
59 static struct rtnl_link_ops vxlan_link_ops;
60 
61 static int vxlan_sock_add(struct vxlan_dev *vxlan);
62 
63 static void vxlan_vs_del_dev(struct vxlan_dev *vxlan);
64 
65 /* salt for hash table */
66 static u32 vxlan_salt __read_mostly;
67 
68 static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
69 {
70 	return vs->flags & VXLAN_F_COLLECT_METADATA ||
71 	       ip_tunnel_collect_metadata();
72 }
73 
74 /* Find VXLAN socket based on network namespace, address family, UDP port,
75  * enabled unshareable flags and socket device binding (see l3mdev with
76  * non-default VRF).
77  */
78 static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
79 					  __be16 port, u32 flags, int ifindex)
80 {
81 	struct vxlan_sock *vs;
82 
83 	flags &= VXLAN_F_RCV_FLAGS;
84 
85 	hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
86 		if (inet_sk(vs->sock->sk)->inet_sport == port &&
87 		    vxlan_get_sk_family(vs) == family &&
88 		    vs->flags == flags &&
89 		    vs->sock->sk->sk_bound_dev_if == ifindex)
90 			return vs;
91 	}
92 	return NULL;
93 }
94 
95 static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs,
96 					   int ifindex, __be32 vni,
97 					   struct vxlan_vni_node **vninode)
98 {
99 	struct vxlan_vni_node *vnode;
100 	struct vxlan_dev_node *node;
101 
102 	/* For flow based devices, map all packets to VNI 0 */
103 	if (vs->flags & VXLAN_F_COLLECT_METADATA &&
104 	    !(vs->flags & VXLAN_F_VNIFILTER))
105 		vni = 0;
106 
107 	hlist_for_each_entry_rcu(node, vni_head(vs, vni), hlist) {
108 		if (!node->vxlan)
109 			continue;
110 		vnode = NULL;
111 		if (node->vxlan->cfg.flags & VXLAN_F_VNIFILTER) {
112 			vnode = vxlan_vnifilter_lookup(node->vxlan, vni);
113 			if (!vnode)
114 				continue;
115 		} else if (node->vxlan->default_dst.remote_vni != vni) {
116 			continue;
117 		}
118 
119 		if (IS_ENABLED(CONFIG_IPV6)) {
120 			const struct vxlan_config *cfg = &node->vxlan->cfg;
121 
122 			if ((cfg->flags & VXLAN_F_IPV6_LINKLOCAL) &&
123 			    cfg->remote_ifindex != ifindex)
124 				continue;
125 		}
126 
127 		if (vninode)
128 			*vninode = vnode;
129 		return node->vxlan;
130 	}
131 
132 	return NULL;
133 }
134 
135 /* Look up VNI in a per net namespace table */
136 static struct vxlan_dev *vxlan_find_vni(struct net *net, int ifindex,
137 					__be32 vni, sa_family_t family,
138 					__be16 port, u32 flags)
139 {
140 	struct vxlan_sock *vs;
141 
142 	vs = vxlan_find_sock(net, family, port, flags, ifindex);
143 	if (!vs)
144 		return NULL;
145 
146 	return vxlan_vs_find_vni(vs, ifindex, vni, NULL);
147 }
148 
149 /* Fill in neighbour message in skbuff. */
150 static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
151 			  const struct vxlan_fdb *fdb,
152 			  u32 portid, u32 seq, int type, unsigned int flags,
153 			  const struct vxlan_rdst *rdst)
154 {
155 	unsigned long now = jiffies;
156 	struct nda_cacheinfo ci;
157 	bool send_ip, send_eth;
158 	struct nlmsghdr *nlh;
159 	struct nexthop *nh;
160 	struct ndmsg *ndm;
161 	int nh_family;
162 	u32 nh_id;
163 
164 	nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
165 	if (nlh == NULL)
166 		return -EMSGSIZE;
167 
168 	ndm = nlmsg_data(nlh);
169 	memset(ndm, 0, sizeof(*ndm));
170 
171 	send_eth = send_ip = true;
172 
173 	rcu_read_lock();
174 	nh = rcu_dereference(fdb->nh);
175 	if (nh) {
176 		nh_family = nexthop_get_family(nh);
177 		nh_id = nh->id;
178 	}
179 	rcu_read_unlock();
180 
181 	if (type == RTM_GETNEIGH) {
182 		if (rdst) {
183 			send_ip = !vxlan_addr_any(&rdst->remote_ip);
184 			ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET;
185 		} else if (nh) {
186 			ndm->ndm_family = nh_family;
187 		}
188 		send_eth = !is_zero_ether_addr(fdb->eth_addr);
189 	} else
190 		ndm->ndm_family	= AF_BRIDGE;
191 	ndm->ndm_state = fdb->state;
192 	ndm->ndm_ifindex = vxlan->dev->ifindex;
193 	ndm->ndm_flags = fdb->flags;
194 	if (rdst && rdst->offloaded)
195 		ndm->ndm_flags |= NTF_OFFLOADED;
196 	ndm->ndm_type = RTN_UNICAST;
197 
198 	if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
199 	    nla_put_s32(skb, NDA_LINK_NETNSID,
200 			peernet2id(dev_net(vxlan->dev), vxlan->net)))
201 		goto nla_put_failure;
202 
203 	if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
204 		goto nla_put_failure;
205 	if (nh) {
206 		if (nla_put_u32(skb, NDA_NH_ID, nh_id))
207 			goto nla_put_failure;
208 	} else if (rdst) {
209 		if (send_ip && vxlan_nla_put_addr(skb, NDA_DST,
210 						  &rdst->remote_ip))
211 			goto nla_put_failure;
212 
213 		if (rdst->remote_port &&
214 		    rdst->remote_port != vxlan->cfg.dst_port &&
215 		    nla_put_be16(skb, NDA_PORT, rdst->remote_port))
216 			goto nla_put_failure;
217 		if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
218 		    nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
219 			goto nla_put_failure;
220 		if (rdst->remote_ifindex &&
221 		    nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
222 			goto nla_put_failure;
223 	}
224 
225 	if ((vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) && fdb->vni &&
226 	    nla_put_u32(skb, NDA_SRC_VNI,
227 			be32_to_cpu(fdb->vni)))
228 		goto nla_put_failure;
229 
230 	ci.ndm_used	 = jiffies_to_clock_t(now - fdb->used);
231 	ci.ndm_confirmed = 0;
232 	ci.ndm_updated	 = jiffies_to_clock_t(now - fdb->updated);
233 	ci.ndm_refcnt	 = 0;
234 
235 	if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
236 		goto nla_put_failure;
237 
238 	nlmsg_end(skb, nlh);
239 	return 0;
240 
241 nla_put_failure:
242 	nlmsg_cancel(skb, nlh);
243 	return -EMSGSIZE;
244 }
245 
246 static inline size_t vxlan_nlmsg_size(void)
247 {
248 	return NLMSG_ALIGN(sizeof(struct ndmsg))
249 		+ nla_total_size(ETH_ALEN) /* NDA_LLADDR */
250 		+ nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
251 		+ nla_total_size(sizeof(__be16)) /* NDA_PORT */
252 		+ nla_total_size(sizeof(__be32)) /* NDA_VNI */
253 		+ nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
254 		+ nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
255 		+ nla_total_size(sizeof(struct nda_cacheinfo));
256 }
257 
258 static void __vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
259 			       struct vxlan_rdst *rd, int type)
260 {
261 	struct net *net = dev_net(vxlan->dev);
262 	struct sk_buff *skb;
263 	int err = -ENOBUFS;
264 
265 	skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
266 	if (skb == NULL)
267 		goto errout;
268 
269 	err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
270 	if (err < 0) {
271 		/* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
272 		WARN_ON(err == -EMSGSIZE);
273 		kfree_skb(skb);
274 		goto errout;
275 	}
276 
277 	rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
278 	return;
279 errout:
280 	if (err < 0)
281 		rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
282 }
283 
284 static void vxlan_fdb_switchdev_notifier_info(const struct vxlan_dev *vxlan,
285 			    const struct vxlan_fdb *fdb,
286 			    const struct vxlan_rdst *rd,
287 			    struct netlink_ext_ack *extack,
288 			    struct switchdev_notifier_vxlan_fdb_info *fdb_info)
289 {
290 	fdb_info->info.dev = vxlan->dev;
291 	fdb_info->info.extack = extack;
292 	fdb_info->remote_ip = rd->remote_ip;
293 	fdb_info->remote_port = rd->remote_port;
294 	fdb_info->remote_vni = rd->remote_vni;
295 	fdb_info->remote_ifindex = rd->remote_ifindex;
296 	memcpy(fdb_info->eth_addr, fdb->eth_addr, ETH_ALEN);
297 	fdb_info->vni = fdb->vni;
298 	fdb_info->offloaded = rd->offloaded;
299 	fdb_info->added_by_user = fdb->flags & NTF_VXLAN_ADDED_BY_USER;
300 }
301 
302 static int vxlan_fdb_switchdev_call_notifiers(struct vxlan_dev *vxlan,
303 					      struct vxlan_fdb *fdb,
304 					      struct vxlan_rdst *rd,
305 					      bool adding,
306 					      struct netlink_ext_ack *extack)
307 {
308 	struct switchdev_notifier_vxlan_fdb_info info;
309 	enum switchdev_notifier_type notifier_type;
310 	int ret;
311 
312 	if (WARN_ON(!rd))
313 		return 0;
314 
315 	notifier_type = adding ? SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE
316 			       : SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE;
317 	vxlan_fdb_switchdev_notifier_info(vxlan, fdb, rd, NULL, &info);
318 	ret = call_switchdev_notifiers(notifier_type, vxlan->dev,
319 				       &info.info, extack);
320 	return notifier_to_errno(ret);
321 }
322 
323 static int vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
324 			    struct vxlan_rdst *rd, int type, bool swdev_notify,
325 			    struct netlink_ext_ack *extack)
326 {
327 	int err;
328 
329 	if (swdev_notify && rd) {
330 		switch (type) {
331 		case RTM_NEWNEIGH:
332 			err = vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd,
333 								 true, extack);
334 			if (err)
335 				return err;
336 			break;
337 		case RTM_DELNEIGH:
338 			vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd,
339 							   false, extack);
340 			break;
341 		}
342 	}
343 
344 	__vxlan_fdb_notify(vxlan, fdb, rd, type);
345 	return 0;
346 }
347 
348 static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
349 {
350 	struct vxlan_dev *vxlan = netdev_priv(dev);
351 	struct vxlan_fdb f = {
352 		.state = NUD_STALE,
353 	};
354 	struct vxlan_rdst remote = {
355 		.remote_ip = *ipa, /* goes to NDA_DST */
356 		.remote_vni = cpu_to_be32(VXLAN_N_VID),
357 	};
358 
359 	vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL);
360 }
361 
362 static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
363 {
364 	struct vxlan_fdb f = {
365 		.state = NUD_STALE,
366 	};
367 	struct vxlan_rdst remote = { };
368 
369 	memcpy(f.eth_addr, eth_addr, ETH_ALEN);
370 
371 	vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL);
372 }
373 
374 /* Hash Ethernet address */
375 static u32 eth_hash(const unsigned char *addr)
376 {
377 	u64 value = get_unaligned((u64 *)addr);
378 
379 	/* only want 6 bytes */
380 #ifdef __BIG_ENDIAN
381 	value >>= 16;
382 #else
383 	value <<= 16;
384 #endif
385 	return hash_64(value, FDB_HASH_BITS);
386 }
387 
388 u32 eth_vni_hash(const unsigned char *addr, __be32 vni)
389 {
390 	/* use 1 byte of OUI and 3 bytes of NIC */
391 	u32 key = get_unaligned((u32 *)(addr + 2));
392 
393 	return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1);
394 }
395 
396 u32 fdb_head_index(struct vxlan_dev *vxlan, const u8 *mac, __be32 vni)
397 {
398 	if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)
399 		return eth_vni_hash(mac, vni);
400 	else
401 		return eth_hash(mac);
402 }
403 
404 /* Hash chain to use given mac address */
405 static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
406 						const u8 *mac, __be32 vni)
407 {
408 	return &vxlan->fdb_head[fdb_head_index(vxlan, mac, vni)];
409 }
410 
411 /* Look up Ethernet address in forwarding table */
412 static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
413 					  const u8 *mac, __be32 vni)
414 {
415 	struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni);
416 	struct vxlan_fdb *f;
417 
418 	hlist_for_each_entry_rcu(f, head, hlist) {
419 		if (ether_addr_equal(mac, f->eth_addr)) {
420 			if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
421 				if (vni == f->vni)
422 					return f;
423 			} else {
424 				return f;
425 			}
426 		}
427 	}
428 
429 	return NULL;
430 }
431 
432 static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
433 					const u8 *mac, __be32 vni)
434 {
435 	struct vxlan_fdb *f;
436 
437 	f = __vxlan_find_mac(vxlan, mac, vni);
438 	if (f && f->used != jiffies)
439 		f->used = jiffies;
440 
441 	return f;
442 }
443 
444 /* caller should hold vxlan->hash_lock */
445 static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
446 					      union vxlan_addr *ip, __be16 port,
447 					      __be32 vni, __u32 ifindex)
448 {
449 	struct vxlan_rdst *rd;
450 
451 	list_for_each_entry(rd, &f->remotes, list) {
452 		if (vxlan_addr_equal(&rd->remote_ip, ip) &&
453 		    rd->remote_port == port &&
454 		    rd->remote_vni == vni &&
455 		    rd->remote_ifindex == ifindex)
456 			return rd;
457 	}
458 
459 	return NULL;
460 }
461 
462 int vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
463 		      struct switchdev_notifier_vxlan_fdb_info *fdb_info)
464 {
465 	struct vxlan_dev *vxlan = netdev_priv(dev);
466 	u8 eth_addr[ETH_ALEN + 2] = { 0 };
467 	struct vxlan_rdst *rdst;
468 	struct vxlan_fdb *f;
469 	int rc = 0;
470 
471 	if (is_multicast_ether_addr(mac) ||
472 	    is_zero_ether_addr(mac))
473 		return -EINVAL;
474 
475 	ether_addr_copy(eth_addr, mac);
476 
477 	rcu_read_lock();
478 
479 	f = __vxlan_find_mac(vxlan, eth_addr, vni);
480 	if (!f) {
481 		rc = -ENOENT;
482 		goto out;
483 	}
484 
485 	rdst = first_remote_rcu(f);
486 	vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, NULL, fdb_info);
487 
488 out:
489 	rcu_read_unlock();
490 	return rc;
491 }
492 EXPORT_SYMBOL_GPL(vxlan_fdb_find_uc);
493 
494 static int vxlan_fdb_notify_one(struct notifier_block *nb,
495 				const struct vxlan_dev *vxlan,
496 				const struct vxlan_fdb *f,
497 				const struct vxlan_rdst *rdst,
498 				struct netlink_ext_ack *extack)
499 {
500 	struct switchdev_notifier_vxlan_fdb_info fdb_info;
501 	int rc;
502 
503 	vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, extack, &fdb_info);
504 	rc = nb->notifier_call(nb, SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE,
505 			       &fdb_info);
506 	return notifier_to_errno(rc);
507 }
508 
509 int vxlan_fdb_replay(const struct net_device *dev, __be32 vni,
510 		     struct notifier_block *nb,
511 		     struct netlink_ext_ack *extack)
512 {
513 	struct vxlan_dev *vxlan;
514 	struct vxlan_rdst *rdst;
515 	struct vxlan_fdb *f;
516 	unsigned int h;
517 	int rc = 0;
518 
519 	if (!netif_is_vxlan(dev))
520 		return -EINVAL;
521 	vxlan = netdev_priv(dev);
522 
523 	for (h = 0; h < FDB_HASH_SIZE; ++h) {
524 		spin_lock_bh(&vxlan->hash_lock[h]);
525 		hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist) {
526 			if (f->vni == vni) {
527 				list_for_each_entry(rdst, &f->remotes, list) {
528 					rc = vxlan_fdb_notify_one(nb, vxlan,
529 								  f, rdst,
530 								  extack);
531 					if (rc)
532 						goto unlock;
533 				}
534 			}
535 		}
536 		spin_unlock_bh(&vxlan->hash_lock[h]);
537 	}
538 	return 0;
539 
540 unlock:
541 	spin_unlock_bh(&vxlan->hash_lock[h]);
542 	return rc;
543 }
544 EXPORT_SYMBOL_GPL(vxlan_fdb_replay);
545 
546 void vxlan_fdb_clear_offload(const struct net_device *dev, __be32 vni)
547 {
548 	struct vxlan_dev *vxlan;
549 	struct vxlan_rdst *rdst;
550 	struct vxlan_fdb *f;
551 	unsigned int h;
552 
553 	if (!netif_is_vxlan(dev))
554 		return;
555 	vxlan = netdev_priv(dev);
556 
557 	for (h = 0; h < FDB_HASH_SIZE; ++h) {
558 		spin_lock_bh(&vxlan->hash_lock[h]);
559 		hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist)
560 			if (f->vni == vni)
561 				list_for_each_entry(rdst, &f->remotes, list)
562 					rdst->offloaded = false;
563 		spin_unlock_bh(&vxlan->hash_lock[h]);
564 	}
565 
566 }
567 EXPORT_SYMBOL_GPL(vxlan_fdb_clear_offload);
568 
569 /* Replace destination of unicast mac */
570 static int vxlan_fdb_replace(struct vxlan_fdb *f,
571 			     union vxlan_addr *ip, __be16 port, __be32 vni,
572 			     __u32 ifindex, struct vxlan_rdst *oldrd)
573 {
574 	struct vxlan_rdst *rd;
575 
576 	rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
577 	if (rd)
578 		return 0;
579 
580 	rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
581 	if (!rd)
582 		return 0;
583 
584 	*oldrd = *rd;
585 	dst_cache_reset(&rd->dst_cache);
586 	rd->remote_ip = *ip;
587 	rd->remote_port = port;
588 	rd->remote_vni = vni;
589 	rd->remote_ifindex = ifindex;
590 	rd->offloaded = false;
591 	return 1;
592 }
593 
594 /* Add/update destinations for multicast */
595 static int vxlan_fdb_append(struct vxlan_fdb *f,
596 			    union vxlan_addr *ip, __be16 port, __be32 vni,
597 			    __u32 ifindex, struct vxlan_rdst **rdp)
598 {
599 	struct vxlan_rdst *rd;
600 
601 	rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
602 	if (rd)
603 		return 0;
604 
605 	rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
606 	if (rd == NULL)
607 		return -ENOMEM;
608 
609 	if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
610 		kfree(rd);
611 		return -ENOMEM;
612 	}
613 
614 	rd->remote_ip = *ip;
615 	rd->remote_port = port;
616 	rd->offloaded = false;
617 	rd->remote_vni = vni;
618 	rd->remote_ifindex = ifindex;
619 
620 	list_add_tail_rcu(&rd->list, &f->remotes);
621 
622 	*rdp = rd;
623 	return 1;
624 }
625 
626 static bool vxlan_parse_gpe_proto(struct vxlanhdr *hdr, __be16 *protocol)
627 {
628 	struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)hdr;
629 
630 	/* Need to have Next Protocol set for interfaces in GPE mode. */
631 	if (!gpe->np_applied)
632 		return false;
633 	/* "The initial version is 0. If a receiver does not support the
634 	 * version indicated it MUST drop the packet.
635 	 */
636 	if (gpe->version != 0)
637 		return false;
638 	/* "When the O bit is set to 1, the packet is an OAM packet and OAM
639 	 * processing MUST occur." However, we don't implement OAM
640 	 * processing, thus drop the packet.
641 	 */
642 	if (gpe->oam_flag)
643 		return false;
644 
645 	*protocol = tun_p_to_eth_p(gpe->next_protocol);
646 	if (!*protocol)
647 		return false;
648 
649 	return true;
650 }
651 
652 static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
653 					  unsigned int off,
654 					  struct vxlanhdr *vh, size_t hdrlen,
655 					  __be32 vni_field,
656 					  struct gro_remcsum *grc,
657 					  bool nopartial)
658 {
659 	size_t start, offset;
660 
661 	if (skb->remcsum_offload)
662 		return vh;
663 
664 	if (!NAPI_GRO_CB(skb)->csum_valid)
665 		return NULL;
666 
667 	start = vxlan_rco_start(vni_field);
668 	offset = start + vxlan_rco_offset(vni_field);
669 
670 	vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
671 				     start, offset, grc, nopartial);
672 
673 	skb->remcsum_offload = 1;
674 
675 	return vh;
676 }
677 
678 static struct vxlanhdr *vxlan_gro_prepare_receive(struct sock *sk,
679 						  struct list_head *head,
680 						  struct sk_buff *skb,
681 						  struct gro_remcsum *grc)
682 {
683 	struct sk_buff *p;
684 	struct vxlanhdr *vh, *vh2;
685 	unsigned int hlen, off_vx;
686 	struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
687 	__be32 flags;
688 
689 	skb_gro_remcsum_init(grc);
690 
691 	off_vx = skb_gro_offset(skb);
692 	hlen = off_vx + sizeof(*vh);
693 	vh = skb_gro_header(skb, hlen, off_vx);
694 	if (unlikely(!vh))
695 		return NULL;
696 
697 	skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
698 
699 	flags = vh->vx_flags;
700 
701 	if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
702 		vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
703 				       vh->vx_vni, grc,
704 				       !!(vs->flags &
705 					  VXLAN_F_REMCSUM_NOPARTIAL));
706 
707 		if (!vh)
708 			return NULL;
709 	}
710 
711 	skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
712 
713 	list_for_each_entry(p, head, list) {
714 		if (!NAPI_GRO_CB(p)->same_flow)
715 			continue;
716 
717 		vh2 = (struct vxlanhdr *)(p->data + off_vx);
718 		if (vh->vx_flags != vh2->vx_flags ||
719 		    vh->vx_vni != vh2->vx_vni) {
720 			NAPI_GRO_CB(p)->same_flow = 0;
721 			continue;
722 		}
723 	}
724 
725 	return vh;
726 }
727 
728 static struct sk_buff *vxlan_gro_receive(struct sock *sk,
729 					 struct list_head *head,
730 					 struct sk_buff *skb)
731 {
732 	struct sk_buff *pp = NULL;
733 	struct gro_remcsum grc;
734 	int flush = 1;
735 
736 	if (vxlan_gro_prepare_receive(sk, head, skb, &grc)) {
737 		pp = call_gro_receive(eth_gro_receive, head, skb);
738 		flush = 0;
739 	}
740 	skb_gro_flush_final_remcsum(skb, pp, flush, &grc);
741 	return pp;
742 }
743 
744 static struct sk_buff *vxlan_gpe_gro_receive(struct sock *sk,
745 					     struct list_head *head,
746 					     struct sk_buff *skb)
747 {
748 	const struct packet_offload *ptype;
749 	struct sk_buff *pp = NULL;
750 	struct gro_remcsum grc;
751 	struct vxlanhdr *vh;
752 	__be16 protocol;
753 	int flush = 1;
754 
755 	vh = vxlan_gro_prepare_receive(sk, head, skb, &grc);
756 	if (vh) {
757 		if (!vxlan_parse_gpe_proto(vh, &protocol))
758 			goto out;
759 		ptype = gro_find_receive_by_type(protocol);
760 		if (!ptype)
761 			goto out;
762 		pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb);
763 		flush = 0;
764 	}
765 out:
766 	skb_gro_flush_final_remcsum(skb, pp, flush, &grc);
767 	return pp;
768 }
769 
770 static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
771 {
772 	/* Sets 'skb->inner_mac_header' since we are always called with
773 	 * 'skb->encapsulation' set.
774 	 */
775 	return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
776 }
777 
778 static int vxlan_gpe_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
779 {
780 	struct vxlanhdr *vh = (struct vxlanhdr *)(skb->data + nhoff);
781 	const struct packet_offload *ptype;
782 	int err = -ENOSYS;
783 	__be16 protocol;
784 
785 	if (!vxlan_parse_gpe_proto(vh, &protocol))
786 		return err;
787 	ptype = gro_find_complete_by_type(protocol);
788 	if (ptype)
789 		err = ptype->callbacks.gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
790 	return err;
791 }
792 
793 static struct vxlan_fdb *vxlan_fdb_alloc(struct vxlan_dev *vxlan, const u8 *mac,
794 					 __u16 state, __be32 src_vni,
795 					 __u16 ndm_flags)
796 {
797 	struct vxlan_fdb *f;
798 
799 	f = kmalloc(sizeof(*f), GFP_ATOMIC);
800 	if (!f)
801 		return NULL;
802 	f->state = state;
803 	f->flags = ndm_flags;
804 	f->updated = f->used = jiffies;
805 	f->vni = src_vni;
806 	f->nh = NULL;
807 	RCU_INIT_POINTER(f->vdev, vxlan);
808 	INIT_LIST_HEAD(&f->nh_list);
809 	INIT_LIST_HEAD(&f->remotes);
810 	memcpy(f->eth_addr, mac, ETH_ALEN);
811 
812 	return f;
813 }
814 
815 static void vxlan_fdb_insert(struct vxlan_dev *vxlan, const u8 *mac,
816 			     __be32 src_vni, struct vxlan_fdb *f)
817 {
818 	++vxlan->addrcnt;
819 	hlist_add_head_rcu(&f->hlist,
820 			   vxlan_fdb_head(vxlan, mac, src_vni));
821 }
822 
823 static int vxlan_fdb_nh_update(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
824 			       u32 nhid, struct netlink_ext_ack *extack)
825 {
826 	struct nexthop *old_nh = rtnl_dereference(fdb->nh);
827 	struct nexthop *nh;
828 	int err = -EINVAL;
829 
830 	if (old_nh && old_nh->id == nhid)
831 		return 0;
832 
833 	nh = nexthop_find_by_id(vxlan->net, nhid);
834 	if (!nh) {
835 		NL_SET_ERR_MSG(extack, "Nexthop id does not exist");
836 		goto err_inval;
837 	}
838 
839 	if (!nexthop_get(nh)) {
840 		NL_SET_ERR_MSG(extack, "Nexthop has been deleted");
841 		nh = NULL;
842 		goto err_inval;
843 	}
844 	if (!nexthop_is_fdb(nh)) {
845 		NL_SET_ERR_MSG(extack, "Nexthop is not a fdb nexthop");
846 		goto err_inval;
847 	}
848 
849 	if (!nexthop_is_multipath(nh)) {
850 		NL_SET_ERR_MSG(extack, "Nexthop is not a multipath group");
851 		goto err_inval;
852 	}
853 
854 	/* check nexthop group family */
855 	switch (vxlan->default_dst.remote_ip.sa.sa_family) {
856 	case AF_INET:
857 		if (!nexthop_has_v4(nh)) {
858 			err = -EAFNOSUPPORT;
859 			NL_SET_ERR_MSG(extack, "Nexthop group family not supported");
860 			goto err_inval;
861 		}
862 		break;
863 	case AF_INET6:
864 		if (nexthop_has_v4(nh)) {
865 			err = -EAFNOSUPPORT;
866 			NL_SET_ERR_MSG(extack, "Nexthop group family not supported");
867 			goto err_inval;
868 		}
869 	}
870 
871 	if (old_nh) {
872 		list_del_rcu(&fdb->nh_list);
873 		nexthop_put(old_nh);
874 	}
875 	rcu_assign_pointer(fdb->nh, nh);
876 	list_add_tail_rcu(&fdb->nh_list, &nh->fdb_list);
877 	return 1;
878 
879 err_inval:
880 	if (nh)
881 		nexthop_put(nh);
882 	return err;
883 }
884 
885 int vxlan_fdb_create(struct vxlan_dev *vxlan,
886 		     const u8 *mac, union vxlan_addr *ip,
887 		     __u16 state, __be16 port, __be32 src_vni,
888 		     __be32 vni, __u32 ifindex, __u16 ndm_flags,
889 		     u32 nhid, struct vxlan_fdb **fdb,
890 		     struct netlink_ext_ack *extack)
891 {
892 	struct vxlan_rdst *rd = NULL;
893 	struct vxlan_fdb *f;
894 	int rc;
895 
896 	if (vxlan->cfg.addrmax &&
897 	    vxlan->addrcnt >= vxlan->cfg.addrmax)
898 		return -ENOSPC;
899 
900 	netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
901 	f = vxlan_fdb_alloc(vxlan, mac, state, src_vni, ndm_flags);
902 	if (!f)
903 		return -ENOMEM;
904 
905 	if (nhid)
906 		rc = vxlan_fdb_nh_update(vxlan, f, nhid, extack);
907 	else
908 		rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
909 	if (rc < 0)
910 		goto errout;
911 
912 	*fdb = f;
913 
914 	return 0;
915 
916 errout:
917 	kfree(f);
918 	return rc;
919 }
920 
921 static void __vxlan_fdb_free(struct vxlan_fdb *f)
922 {
923 	struct vxlan_rdst *rd, *nd;
924 	struct nexthop *nh;
925 
926 	nh = rcu_dereference_raw(f->nh);
927 	if (nh) {
928 		rcu_assign_pointer(f->nh, NULL);
929 		rcu_assign_pointer(f->vdev, NULL);
930 		nexthop_put(nh);
931 	}
932 
933 	list_for_each_entry_safe(rd, nd, &f->remotes, list) {
934 		dst_cache_destroy(&rd->dst_cache);
935 		kfree(rd);
936 	}
937 	kfree(f);
938 }
939 
940 static void vxlan_fdb_free(struct rcu_head *head)
941 {
942 	struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
943 
944 	__vxlan_fdb_free(f);
945 }
946 
947 static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
948 			      bool do_notify, bool swdev_notify)
949 {
950 	struct vxlan_rdst *rd;
951 
952 	netdev_dbg(vxlan->dev, "delete %pM\n", f->eth_addr);
953 
954 	--vxlan->addrcnt;
955 	if (do_notify) {
956 		if (rcu_access_pointer(f->nh))
957 			vxlan_fdb_notify(vxlan, f, NULL, RTM_DELNEIGH,
958 					 swdev_notify, NULL);
959 		else
960 			list_for_each_entry(rd, &f->remotes, list)
961 				vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH,
962 						 swdev_notify, NULL);
963 	}
964 
965 	hlist_del_rcu(&f->hlist);
966 	list_del_rcu(&f->nh_list);
967 	call_rcu(&f->rcu, vxlan_fdb_free);
968 }
969 
970 static void vxlan_dst_free(struct rcu_head *head)
971 {
972 	struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
973 
974 	dst_cache_destroy(&rd->dst_cache);
975 	kfree(rd);
976 }
977 
978 static int vxlan_fdb_update_existing(struct vxlan_dev *vxlan,
979 				     union vxlan_addr *ip,
980 				     __u16 state, __u16 flags,
981 				     __be16 port, __be32 vni,
982 				     __u32 ifindex, __u16 ndm_flags,
983 				     struct vxlan_fdb *f, u32 nhid,
984 				     bool swdev_notify,
985 				     struct netlink_ext_ack *extack)
986 {
987 	__u16 fdb_flags = (ndm_flags & ~NTF_USE);
988 	struct vxlan_rdst *rd = NULL;
989 	struct vxlan_rdst oldrd;
990 	int notify = 0;
991 	int rc = 0;
992 	int err;
993 
994 	if (nhid && !rcu_access_pointer(f->nh)) {
995 		NL_SET_ERR_MSG(extack,
996 			       "Cannot replace an existing non nexthop fdb with a nexthop");
997 		return -EOPNOTSUPP;
998 	}
999 
1000 	if (nhid && (flags & NLM_F_APPEND)) {
1001 		NL_SET_ERR_MSG(extack,
1002 			       "Cannot append to a nexthop fdb");
1003 		return -EOPNOTSUPP;
1004 	}
1005 
1006 	/* Do not allow an externally learned entry to take over an entry added
1007 	 * by the user.
1008 	 */
1009 	if (!(fdb_flags & NTF_EXT_LEARNED) ||
1010 	    !(f->flags & NTF_VXLAN_ADDED_BY_USER)) {
1011 		if (f->state != state) {
1012 			f->state = state;
1013 			f->updated = jiffies;
1014 			notify = 1;
1015 		}
1016 		if (f->flags != fdb_flags) {
1017 			f->flags = fdb_flags;
1018 			f->updated = jiffies;
1019 			notify = 1;
1020 		}
1021 	}
1022 
1023 	if ((flags & NLM_F_REPLACE)) {
1024 		/* Only change unicasts */
1025 		if (!(is_multicast_ether_addr(f->eth_addr) ||
1026 		      is_zero_ether_addr(f->eth_addr))) {
1027 			if (nhid) {
1028 				rc = vxlan_fdb_nh_update(vxlan, f, nhid, extack);
1029 				if (rc < 0)
1030 					return rc;
1031 			} else {
1032 				rc = vxlan_fdb_replace(f, ip, port, vni,
1033 						       ifindex, &oldrd);
1034 			}
1035 			notify |= rc;
1036 		} else {
1037 			NL_SET_ERR_MSG(extack, "Cannot replace non-unicast fdb entries");
1038 			return -EOPNOTSUPP;
1039 		}
1040 	}
1041 	if ((flags & NLM_F_APPEND) &&
1042 	    (is_multicast_ether_addr(f->eth_addr) ||
1043 	     is_zero_ether_addr(f->eth_addr))) {
1044 		rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
1045 
1046 		if (rc < 0)
1047 			return rc;
1048 		notify |= rc;
1049 	}
1050 
1051 	if (ndm_flags & NTF_USE)
1052 		f->used = jiffies;
1053 
1054 	if (notify) {
1055 		if (rd == NULL)
1056 			rd = first_remote_rtnl(f);
1057 
1058 		err = vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH,
1059 				       swdev_notify, extack);
1060 		if (err)
1061 			goto err_notify;
1062 	}
1063 
1064 	return 0;
1065 
1066 err_notify:
1067 	if (nhid)
1068 		return err;
1069 	if ((flags & NLM_F_REPLACE) && rc)
1070 		*rd = oldrd;
1071 	else if ((flags & NLM_F_APPEND) && rc) {
1072 		list_del_rcu(&rd->list);
1073 		call_rcu(&rd->rcu, vxlan_dst_free);
1074 	}
1075 	return err;
1076 }
1077 
1078 static int vxlan_fdb_update_create(struct vxlan_dev *vxlan,
1079 				   const u8 *mac, union vxlan_addr *ip,
1080 				   __u16 state, __u16 flags,
1081 				   __be16 port, __be32 src_vni, __be32 vni,
1082 				   __u32 ifindex, __u16 ndm_flags, u32 nhid,
1083 				   bool swdev_notify,
1084 				   struct netlink_ext_ack *extack)
1085 {
1086 	__u16 fdb_flags = (ndm_flags & ~NTF_USE);
1087 	struct vxlan_fdb *f;
1088 	int rc;
1089 
1090 	/* Disallow replace to add a multicast entry */
1091 	if ((flags & NLM_F_REPLACE) &&
1092 	    (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
1093 		return -EOPNOTSUPP;
1094 
1095 	netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
1096 	rc = vxlan_fdb_create(vxlan, mac, ip, state, port, src_vni,
1097 			      vni, ifindex, fdb_flags, nhid, &f, extack);
1098 	if (rc < 0)
1099 		return rc;
1100 
1101 	vxlan_fdb_insert(vxlan, mac, src_vni, f);
1102 	rc = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_NEWNEIGH,
1103 			      swdev_notify, extack);
1104 	if (rc)
1105 		goto err_notify;
1106 
1107 	return 0;
1108 
1109 err_notify:
1110 	vxlan_fdb_destroy(vxlan, f, false, false);
1111 	return rc;
1112 }
1113 
1114 /* Add new entry to forwarding table -- assumes lock held */
1115 int vxlan_fdb_update(struct vxlan_dev *vxlan,
1116 		     const u8 *mac, union vxlan_addr *ip,
1117 		     __u16 state, __u16 flags,
1118 		     __be16 port, __be32 src_vni, __be32 vni,
1119 		     __u32 ifindex, __u16 ndm_flags, u32 nhid,
1120 		     bool swdev_notify,
1121 		     struct netlink_ext_ack *extack)
1122 {
1123 	struct vxlan_fdb *f;
1124 
1125 	f = __vxlan_find_mac(vxlan, mac, src_vni);
1126 	if (f) {
1127 		if (flags & NLM_F_EXCL) {
1128 			netdev_dbg(vxlan->dev,
1129 				   "lost race to create %pM\n", mac);
1130 			return -EEXIST;
1131 		}
1132 
1133 		return vxlan_fdb_update_existing(vxlan, ip, state, flags, port,
1134 						 vni, ifindex, ndm_flags, f,
1135 						 nhid, swdev_notify, extack);
1136 	} else {
1137 		if (!(flags & NLM_F_CREATE))
1138 			return -ENOENT;
1139 
1140 		return vxlan_fdb_update_create(vxlan, mac, ip, state, flags,
1141 					       port, src_vni, vni, ifindex,
1142 					       ndm_flags, nhid, swdev_notify,
1143 					       extack);
1144 	}
1145 }
1146 
1147 static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
1148 				  struct vxlan_rdst *rd, bool swdev_notify)
1149 {
1150 	list_del_rcu(&rd->list);
1151 	vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH, swdev_notify, NULL);
1152 	call_rcu(&rd->rcu, vxlan_dst_free);
1153 }
1154 
1155 static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
1156 			   union vxlan_addr *ip, __be16 *port, __be32 *src_vni,
1157 			   __be32 *vni, u32 *ifindex, u32 *nhid,
1158 			   struct netlink_ext_ack *extack)
1159 {
1160 	struct net *net = dev_net(vxlan->dev);
1161 	int err;
1162 
1163 	if (tb[NDA_NH_ID] &&
1164 	    (tb[NDA_DST] || tb[NDA_VNI] || tb[NDA_IFINDEX] || tb[NDA_PORT])) {
1165 		NL_SET_ERR_MSG(extack, "DST, VNI, ifindex and port are mutually exclusive with NH_ID");
1166 		return -EINVAL;
1167 	}
1168 
1169 	if (tb[NDA_DST]) {
1170 		err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
1171 		if (err) {
1172 			NL_SET_ERR_MSG(extack, "Unsupported address family");
1173 			return err;
1174 		}
1175 	} else {
1176 		union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
1177 
1178 		if (remote->sa.sa_family == AF_INET) {
1179 			ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
1180 			ip->sa.sa_family = AF_INET;
1181 #if IS_ENABLED(CONFIG_IPV6)
1182 		} else {
1183 			ip->sin6.sin6_addr = in6addr_any;
1184 			ip->sa.sa_family = AF_INET6;
1185 #endif
1186 		}
1187 	}
1188 
1189 	if (tb[NDA_PORT]) {
1190 		if (nla_len(tb[NDA_PORT]) != sizeof(__be16)) {
1191 			NL_SET_ERR_MSG(extack, "Invalid vxlan port");
1192 			return -EINVAL;
1193 		}
1194 		*port = nla_get_be16(tb[NDA_PORT]);
1195 	} else {
1196 		*port = vxlan->cfg.dst_port;
1197 	}
1198 
1199 	if (tb[NDA_VNI]) {
1200 		if (nla_len(tb[NDA_VNI]) != sizeof(u32)) {
1201 			NL_SET_ERR_MSG(extack, "Invalid vni");
1202 			return -EINVAL;
1203 		}
1204 		*vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
1205 	} else {
1206 		*vni = vxlan->default_dst.remote_vni;
1207 	}
1208 
1209 	if (tb[NDA_SRC_VNI]) {
1210 		if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32)) {
1211 			NL_SET_ERR_MSG(extack, "Invalid src vni");
1212 			return -EINVAL;
1213 		}
1214 		*src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI]));
1215 	} else {
1216 		*src_vni = vxlan->default_dst.remote_vni;
1217 	}
1218 
1219 	if (tb[NDA_IFINDEX]) {
1220 		struct net_device *tdev;
1221 
1222 		if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32)) {
1223 			NL_SET_ERR_MSG(extack, "Invalid ifindex");
1224 			return -EINVAL;
1225 		}
1226 		*ifindex = nla_get_u32(tb[NDA_IFINDEX]);
1227 		tdev = __dev_get_by_index(net, *ifindex);
1228 		if (!tdev) {
1229 			NL_SET_ERR_MSG(extack, "Device not found");
1230 			return -EADDRNOTAVAIL;
1231 		}
1232 	} else {
1233 		*ifindex = 0;
1234 	}
1235 
1236 	if (tb[NDA_NH_ID])
1237 		*nhid = nla_get_u32(tb[NDA_NH_ID]);
1238 	else
1239 		*nhid = 0;
1240 
1241 	return 0;
1242 }
1243 
1244 /* Add static entry (via netlink) */
1245 static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1246 			 struct net_device *dev,
1247 			 const unsigned char *addr, u16 vid, u16 flags,
1248 			 struct netlink_ext_ack *extack)
1249 {
1250 	struct vxlan_dev *vxlan = netdev_priv(dev);
1251 	/* struct net *net = dev_net(vxlan->dev); */
1252 	union vxlan_addr ip;
1253 	__be16 port;
1254 	__be32 src_vni, vni;
1255 	u32 ifindex, nhid;
1256 	u32 hash_index;
1257 	int err;
1258 
1259 	if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
1260 		pr_info("RTM_NEWNEIGH with invalid state %#x\n",
1261 			ndm->ndm_state);
1262 		return -EINVAL;
1263 	}
1264 
1265 	if (!tb || (!tb[NDA_DST] && !tb[NDA_NH_ID]))
1266 		return -EINVAL;
1267 
1268 	err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex,
1269 			      &nhid, extack);
1270 	if (err)
1271 		return err;
1272 
1273 	if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
1274 		return -EAFNOSUPPORT;
1275 
1276 	hash_index = fdb_head_index(vxlan, addr, src_vni);
1277 	spin_lock_bh(&vxlan->hash_lock[hash_index]);
1278 	err = vxlan_fdb_update(vxlan, addr, &ip, ndm->ndm_state, flags,
1279 			       port, src_vni, vni, ifindex,
1280 			       ndm->ndm_flags | NTF_VXLAN_ADDED_BY_USER,
1281 			       nhid, true, extack);
1282 	spin_unlock_bh(&vxlan->hash_lock[hash_index]);
1283 
1284 	return err;
1285 }
1286 
1287 int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
1288 		       const unsigned char *addr, union vxlan_addr ip,
1289 		       __be16 port, __be32 src_vni, __be32 vni,
1290 		       u32 ifindex, bool swdev_notify)
1291 {
1292 	struct vxlan_rdst *rd = NULL;
1293 	struct vxlan_fdb *f;
1294 	int err = -ENOENT;
1295 
1296 	f = vxlan_find_mac(vxlan, addr, src_vni);
1297 	if (!f)
1298 		return err;
1299 
1300 	if (!vxlan_addr_any(&ip)) {
1301 		rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
1302 		if (!rd)
1303 			goto out;
1304 	}
1305 
1306 	/* remove a destination if it's not the only one on the list,
1307 	 * otherwise destroy the fdb entry
1308 	 */
1309 	if (rd && !list_is_singular(&f->remotes)) {
1310 		vxlan_fdb_dst_destroy(vxlan, f, rd, swdev_notify);
1311 		goto out;
1312 	}
1313 
1314 	vxlan_fdb_destroy(vxlan, f, true, swdev_notify);
1315 
1316 out:
1317 	return 0;
1318 }
1319 
1320 /* Delete entry (via netlink) */
1321 static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
1322 			    struct net_device *dev,
1323 			    const unsigned char *addr, u16 vid,
1324 			    struct netlink_ext_ack *extack)
1325 {
1326 	struct vxlan_dev *vxlan = netdev_priv(dev);
1327 	union vxlan_addr ip;
1328 	__be32 src_vni, vni;
1329 	u32 ifindex, nhid;
1330 	u32 hash_index;
1331 	__be16 port;
1332 	int err;
1333 
1334 	err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex,
1335 			      &nhid, extack);
1336 	if (err)
1337 		return err;
1338 
1339 	hash_index = fdb_head_index(vxlan, addr, src_vni);
1340 	spin_lock_bh(&vxlan->hash_lock[hash_index]);
1341 	err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex,
1342 				 true);
1343 	spin_unlock_bh(&vxlan->hash_lock[hash_index]);
1344 
1345 	return err;
1346 }
1347 
1348 /* Dump forwarding table */
1349 static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
1350 			  struct net_device *dev,
1351 			  struct net_device *filter_dev, int *idx)
1352 {
1353 	struct vxlan_dev *vxlan = netdev_priv(dev);
1354 	unsigned int h;
1355 	int err = 0;
1356 
1357 	for (h = 0; h < FDB_HASH_SIZE; ++h) {
1358 		struct vxlan_fdb *f;
1359 
1360 		rcu_read_lock();
1361 		hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
1362 			struct vxlan_rdst *rd;
1363 
1364 			if (rcu_access_pointer(f->nh)) {
1365 				if (*idx < cb->args[2])
1366 					goto skip_nh;
1367 				err = vxlan_fdb_info(skb, vxlan, f,
1368 						     NETLINK_CB(cb->skb).portid,
1369 						     cb->nlh->nlmsg_seq,
1370 						     RTM_NEWNEIGH,
1371 						     NLM_F_MULTI, NULL);
1372 				if (err < 0) {
1373 					rcu_read_unlock();
1374 					goto out;
1375 				}
1376 skip_nh:
1377 				*idx += 1;
1378 				continue;
1379 			}
1380 
1381 			list_for_each_entry_rcu(rd, &f->remotes, list) {
1382 				if (*idx < cb->args[2])
1383 					goto skip;
1384 
1385 				err = vxlan_fdb_info(skb, vxlan, f,
1386 						     NETLINK_CB(cb->skb).portid,
1387 						     cb->nlh->nlmsg_seq,
1388 						     RTM_NEWNEIGH,
1389 						     NLM_F_MULTI, rd);
1390 				if (err < 0) {
1391 					rcu_read_unlock();
1392 					goto out;
1393 				}
1394 skip:
1395 				*idx += 1;
1396 			}
1397 		}
1398 		rcu_read_unlock();
1399 	}
1400 out:
1401 	return err;
1402 }
1403 
1404 static int vxlan_fdb_get(struct sk_buff *skb,
1405 			 struct nlattr *tb[],
1406 			 struct net_device *dev,
1407 			 const unsigned char *addr,
1408 			 u16 vid, u32 portid, u32 seq,
1409 			 struct netlink_ext_ack *extack)
1410 {
1411 	struct vxlan_dev *vxlan = netdev_priv(dev);
1412 	struct vxlan_fdb *f;
1413 	__be32 vni;
1414 	int err;
1415 
1416 	if (tb[NDA_VNI])
1417 		vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
1418 	else
1419 		vni = vxlan->default_dst.remote_vni;
1420 
1421 	rcu_read_lock();
1422 
1423 	f = __vxlan_find_mac(vxlan, addr, vni);
1424 	if (!f) {
1425 		NL_SET_ERR_MSG(extack, "Fdb entry not found");
1426 		err = -ENOENT;
1427 		goto errout;
1428 	}
1429 
1430 	err = vxlan_fdb_info(skb, vxlan, f, portid, seq,
1431 			     RTM_NEWNEIGH, 0, first_remote_rcu(f));
1432 errout:
1433 	rcu_read_unlock();
1434 	return err;
1435 }
1436 
1437 /* Watch incoming packets to learn mapping between Ethernet address
1438  * and Tunnel endpoint.
1439  * Return true if packet is bogus and should be dropped.
1440  */
1441 static bool vxlan_snoop(struct net_device *dev,
1442 			union vxlan_addr *src_ip, const u8 *src_mac,
1443 			u32 src_ifindex, __be32 vni)
1444 {
1445 	struct vxlan_dev *vxlan = netdev_priv(dev);
1446 	struct vxlan_fdb *f;
1447 	u32 ifindex = 0;
1448 
1449 #if IS_ENABLED(CONFIG_IPV6)
1450 	if (src_ip->sa.sa_family == AF_INET6 &&
1451 	    (ipv6_addr_type(&src_ip->sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL))
1452 		ifindex = src_ifindex;
1453 #endif
1454 
1455 	f = vxlan_find_mac(vxlan, src_mac, vni);
1456 	if (likely(f)) {
1457 		struct vxlan_rdst *rdst = first_remote_rcu(f);
1458 
1459 		if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip) &&
1460 			   rdst->remote_ifindex == ifindex))
1461 			return false;
1462 
1463 		/* Don't migrate static entries, drop packets */
1464 		if (f->state & (NUD_PERMANENT | NUD_NOARP))
1465 			return true;
1466 
1467 		/* Don't override an fdb with nexthop with a learnt entry */
1468 		if (rcu_access_pointer(f->nh))
1469 			return true;
1470 
1471 		if (net_ratelimit())
1472 			netdev_info(dev,
1473 				    "%pM migrated from %pIS to %pIS\n",
1474 				    src_mac, &rdst->remote_ip.sa, &src_ip->sa);
1475 
1476 		rdst->remote_ip = *src_ip;
1477 		f->updated = jiffies;
1478 		vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH, true, NULL);
1479 	} else {
1480 		u32 hash_index = fdb_head_index(vxlan, src_mac, vni);
1481 
1482 		/* learned new entry */
1483 		spin_lock(&vxlan->hash_lock[hash_index]);
1484 
1485 		/* close off race between vxlan_flush and incoming packets */
1486 		if (netif_running(dev))
1487 			vxlan_fdb_update(vxlan, src_mac, src_ip,
1488 					 NUD_REACHABLE,
1489 					 NLM_F_EXCL|NLM_F_CREATE,
1490 					 vxlan->cfg.dst_port,
1491 					 vni,
1492 					 vxlan->default_dst.remote_vni,
1493 					 ifindex, NTF_SELF, 0, true, NULL);
1494 		spin_unlock(&vxlan->hash_lock[hash_index]);
1495 	}
1496 
1497 	return false;
1498 }
1499 
1500 static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
1501 {
1502 	struct vxlan_net *vn;
1503 
1504 	if (!vs)
1505 		return false;
1506 	if (!refcount_dec_and_test(&vs->refcnt))
1507 		return false;
1508 
1509 	vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
1510 	spin_lock(&vn->sock_lock);
1511 	hlist_del_rcu(&vs->hlist);
1512 	udp_tunnel_notify_del_rx_port(vs->sock,
1513 				      (vs->flags & VXLAN_F_GPE) ?
1514 				      UDP_TUNNEL_TYPE_VXLAN_GPE :
1515 				      UDP_TUNNEL_TYPE_VXLAN);
1516 	spin_unlock(&vn->sock_lock);
1517 
1518 	return true;
1519 }
1520 
1521 static void vxlan_sock_release(struct vxlan_dev *vxlan)
1522 {
1523 	struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
1524 #if IS_ENABLED(CONFIG_IPV6)
1525 	struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1526 
1527 	RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
1528 #endif
1529 
1530 	RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
1531 	synchronize_net();
1532 
1533 	if (vxlan->cfg.flags & VXLAN_F_VNIFILTER)
1534 		vxlan_vs_del_vnigrp(vxlan);
1535 	else
1536 		vxlan_vs_del_dev(vxlan);
1537 
1538 	if (__vxlan_sock_release_prep(sock4)) {
1539 		udp_tunnel_sock_release(sock4->sock);
1540 		kfree(sock4);
1541 	}
1542 
1543 #if IS_ENABLED(CONFIG_IPV6)
1544 	if (__vxlan_sock_release_prep(sock6)) {
1545 		udp_tunnel_sock_release(sock6->sock);
1546 		kfree(sock6);
1547 	}
1548 #endif
1549 }
1550 
1551 static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1552 			  struct sk_buff *skb, u32 vxflags)
1553 {
1554 	size_t start, offset;
1555 
1556 	if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1557 		goto out;
1558 
1559 	start = vxlan_rco_start(unparsed->vx_vni);
1560 	offset = start + vxlan_rco_offset(unparsed->vx_vni);
1561 
1562 	if (!pskb_may_pull(skb, offset + sizeof(u16)))
1563 		return false;
1564 
1565 	skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1566 			    !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
1567 out:
1568 	unparsed->vx_flags &= ~VXLAN_HF_RCO;
1569 	unparsed->vx_vni &= VXLAN_VNI_MASK;
1570 	return true;
1571 }
1572 
1573 static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
1574 				struct sk_buff *skb, u32 vxflags,
1575 				struct vxlan_metadata *md)
1576 {
1577 	struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
1578 	struct metadata_dst *tun_dst;
1579 
1580 	if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1581 		goto out;
1582 
1583 	md->gbp = ntohs(gbp->policy_id);
1584 
1585 	tun_dst = (struct metadata_dst *)skb_dst(skb);
1586 	if (tun_dst) {
1587 		tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
1588 		tun_dst->u.tun_info.options_len = sizeof(*md);
1589 	}
1590 	if (gbp->dont_learn)
1591 		md->gbp |= VXLAN_GBP_DONT_LEARN;
1592 
1593 	if (gbp->policy_applied)
1594 		md->gbp |= VXLAN_GBP_POLICY_APPLIED;
1595 
1596 	/* In flow-based mode, GBP is carried in dst_metadata */
1597 	if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1598 		skb->mark = md->gbp;
1599 out:
1600 	unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
1601 }
1602 
1603 static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1604 			  struct vxlan_sock *vs,
1605 			  struct sk_buff *skb, __be32 vni)
1606 {
1607 	union vxlan_addr saddr;
1608 	u32 ifindex = skb->dev->ifindex;
1609 
1610 	skb_reset_mac_header(skb);
1611 	skb->protocol = eth_type_trans(skb, vxlan->dev);
1612 	skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1613 
1614 	/* Ignore packet loops (and multicast echo) */
1615 	if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
1616 		return false;
1617 
1618 	/* Get address from the outer IP header */
1619 	if (vxlan_get_sk_family(vs) == AF_INET) {
1620 		saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
1621 		saddr.sa.sa_family = AF_INET;
1622 #if IS_ENABLED(CONFIG_IPV6)
1623 	} else {
1624 		saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
1625 		saddr.sa.sa_family = AF_INET6;
1626 #endif
1627 	}
1628 
1629 	if ((vxlan->cfg.flags & VXLAN_F_LEARN) &&
1630 	    vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, ifindex, vni))
1631 		return false;
1632 
1633 	return true;
1634 }
1635 
1636 static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1637 				  struct sk_buff *skb)
1638 {
1639 	int err = 0;
1640 
1641 	if (vxlan_get_sk_family(vs) == AF_INET)
1642 		err = IP_ECN_decapsulate(oiph, skb);
1643 #if IS_ENABLED(CONFIG_IPV6)
1644 	else
1645 		err = IP6_ECN_decapsulate(oiph, skb);
1646 #endif
1647 
1648 	if (unlikely(err) && log_ecn_error) {
1649 		if (vxlan_get_sk_family(vs) == AF_INET)
1650 			net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1651 					     &((struct iphdr *)oiph)->saddr,
1652 					     ((struct iphdr *)oiph)->tos);
1653 		else
1654 			net_info_ratelimited("non-ECT from %pI6\n",
1655 					     &((struct ipv6hdr *)oiph)->saddr);
1656 	}
1657 	return err <= 1;
1658 }
1659 
1660 /* Callback from net/ipv4/udp.c to receive packets */
1661 static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
1662 {
1663 	struct vxlan_vni_node *vninode = NULL;
1664 	struct vxlan_dev *vxlan;
1665 	struct vxlan_sock *vs;
1666 	struct vxlanhdr unparsed;
1667 	struct vxlan_metadata _md;
1668 	struct vxlan_metadata *md = &_md;
1669 	__be16 protocol = htons(ETH_P_TEB);
1670 	bool raw_proto = false;
1671 	void *oiph;
1672 	__be32 vni = 0;
1673 	int nh;
1674 
1675 	/* Need UDP and VXLAN header to be present */
1676 	if (!pskb_may_pull(skb, VXLAN_HLEN))
1677 		goto drop;
1678 
1679 	unparsed = *vxlan_hdr(skb);
1680 	/* VNI flag always required to be set */
1681 	if (!(unparsed.vx_flags & VXLAN_HF_VNI)) {
1682 		netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1683 			   ntohl(vxlan_hdr(skb)->vx_flags),
1684 			   ntohl(vxlan_hdr(skb)->vx_vni));
1685 		/* Return non vxlan pkt */
1686 		goto drop;
1687 	}
1688 	unparsed.vx_flags &= ~VXLAN_HF_VNI;
1689 	unparsed.vx_vni &= ~VXLAN_VNI_MASK;
1690 
1691 	vs = rcu_dereference_sk_user_data(sk);
1692 	if (!vs)
1693 		goto drop;
1694 
1695 	vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
1696 
1697 	vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni, &vninode);
1698 	if (!vxlan)
1699 		goto drop;
1700 
1701 	/* For backwards compatibility, only allow reserved fields to be
1702 	 * used by VXLAN extensions if explicitly requested.
1703 	 */
1704 	if (vs->flags & VXLAN_F_GPE) {
1705 		if (!vxlan_parse_gpe_proto(&unparsed, &protocol))
1706 			goto drop;
1707 		unparsed.vx_flags &= ~VXLAN_GPE_USED_BITS;
1708 		raw_proto = true;
1709 	}
1710 
1711 	if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1712 				   !net_eq(vxlan->net, dev_net(vxlan->dev))))
1713 		goto drop;
1714 
1715 	if (vs->flags & VXLAN_F_REMCSUM_RX)
1716 		if (unlikely(!vxlan_remcsum(&unparsed, skb, vs->flags)))
1717 			goto drop;
1718 
1719 	if (vxlan_collect_metadata(vs)) {
1720 		struct metadata_dst *tun_dst;
1721 
1722 		tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
1723 					 key32_to_tunnel_id(vni), sizeof(*md));
1724 
1725 		if (!tun_dst)
1726 			goto drop;
1727 
1728 		md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
1729 
1730 		skb_dst_set(skb, (struct dst_entry *)tun_dst);
1731 	} else {
1732 		memset(md, 0, sizeof(*md));
1733 	}
1734 
1735 	if (vs->flags & VXLAN_F_GBP)
1736 		vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
1737 	/* Note that GBP and GPE can never be active together. This is
1738 	 * ensured in vxlan_dev_configure.
1739 	 */
1740 
1741 	if (unparsed.vx_flags || unparsed.vx_vni) {
1742 		/* If there are any unprocessed flags remaining treat
1743 		 * this as a malformed packet. This behavior diverges from
1744 		 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1745 		 * in reserved fields are to be ignored. The approach here
1746 		 * maintains compatibility with previous stack code, and also
1747 		 * is more robust and provides a little more security in
1748 		 * adding extensions to VXLAN.
1749 		 */
1750 		goto drop;
1751 	}
1752 
1753 	if (!raw_proto) {
1754 		if (!vxlan_set_mac(vxlan, vs, skb, vni))
1755 			goto drop;
1756 	} else {
1757 		skb_reset_mac_header(skb);
1758 		skb->dev = vxlan->dev;
1759 		skb->pkt_type = PACKET_HOST;
1760 	}
1761 
1762 	/* Save offset of outer header relative to skb->head,
1763 	 * because we are going to reset the network header to the inner header
1764 	 * and might change skb->head.
1765 	 */
1766 	nh = skb_network_header(skb) - skb->head;
1767 
1768 	skb_reset_network_header(skb);
1769 
1770 	if (!pskb_inet_may_pull(skb)) {
1771 		DEV_STATS_INC(vxlan->dev, rx_length_errors);
1772 		DEV_STATS_INC(vxlan->dev, rx_errors);
1773 		vxlan_vnifilter_count(vxlan, vni, vninode,
1774 				      VXLAN_VNI_STATS_RX_ERRORS, 0);
1775 		goto drop;
1776 	}
1777 
1778 	/* Get the outer header. */
1779 	oiph = skb->head + nh;
1780 
1781 	if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1782 		DEV_STATS_INC(vxlan->dev, rx_frame_errors);
1783 		DEV_STATS_INC(vxlan->dev, rx_errors);
1784 		vxlan_vnifilter_count(vxlan, vni, vninode,
1785 				      VXLAN_VNI_STATS_RX_ERRORS, 0);
1786 		goto drop;
1787 	}
1788 
1789 	rcu_read_lock();
1790 
1791 	if (unlikely(!(vxlan->dev->flags & IFF_UP))) {
1792 		rcu_read_unlock();
1793 		dev_core_stats_rx_dropped_inc(vxlan->dev);
1794 		vxlan_vnifilter_count(vxlan, vni, vninode,
1795 				      VXLAN_VNI_STATS_RX_DROPS, 0);
1796 		goto drop;
1797 	}
1798 
1799 	dev_sw_netstats_rx_add(vxlan->dev, skb->len);
1800 	vxlan_vnifilter_count(vxlan, vni, vninode, VXLAN_VNI_STATS_RX, skb->len);
1801 	gro_cells_receive(&vxlan->gro_cells, skb);
1802 
1803 	rcu_read_unlock();
1804 
1805 	return 0;
1806 
1807 drop:
1808 	/* Consume bad packet */
1809 	kfree_skb(skb);
1810 	return 0;
1811 }
1812 
1813 /* Callback from net/ipv{4,6}/udp.c to check that we have a VNI for errors */
1814 static int vxlan_err_lookup(struct sock *sk, struct sk_buff *skb)
1815 {
1816 	struct vxlan_dev *vxlan;
1817 	struct vxlan_sock *vs;
1818 	struct vxlanhdr *hdr;
1819 	__be32 vni;
1820 
1821 	if (!pskb_may_pull(skb, skb_transport_offset(skb) + VXLAN_HLEN))
1822 		return -EINVAL;
1823 
1824 	hdr = vxlan_hdr(skb);
1825 
1826 	if (!(hdr->vx_flags & VXLAN_HF_VNI))
1827 		return -EINVAL;
1828 
1829 	vs = rcu_dereference_sk_user_data(sk);
1830 	if (!vs)
1831 		return -ENOENT;
1832 
1833 	vni = vxlan_vni(hdr->vx_vni);
1834 	vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni, NULL);
1835 	if (!vxlan)
1836 		return -ENOENT;
1837 
1838 	return 0;
1839 }
1840 
1841 static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
1842 {
1843 	struct vxlan_dev *vxlan = netdev_priv(dev);
1844 	struct arphdr *parp;
1845 	u8 *arpptr, *sha;
1846 	__be32 sip, tip;
1847 	struct neighbour *n;
1848 
1849 	if (dev->flags & IFF_NOARP)
1850 		goto out;
1851 
1852 	if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1853 		dev_core_stats_tx_dropped_inc(dev);
1854 		vxlan_vnifilter_count(vxlan, vni, NULL,
1855 				      VXLAN_VNI_STATS_TX_DROPS, 0);
1856 		goto out;
1857 	}
1858 	parp = arp_hdr(skb);
1859 
1860 	if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1861 	     parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1862 	    parp->ar_pro != htons(ETH_P_IP) ||
1863 	    parp->ar_op != htons(ARPOP_REQUEST) ||
1864 	    parp->ar_hln != dev->addr_len ||
1865 	    parp->ar_pln != 4)
1866 		goto out;
1867 	arpptr = (u8 *)parp + sizeof(struct arphdr);
1868 	sha = arpptr;
1869 	arpptr += dev->addr_len;	/* sha */
1870 	memcpy(&sip, arpptr, sizeof(sip));
1871 	arpptr += sizeof(sip);
1872 	arpptr += dev->addr_len;	/* tha */
1873 	memcpy(&tip, arpptr, sizeof(tip));
1874 
1875 	if (ipv4_is_loopback(tip) ||
1876 	    ipv4_is_multicast(tip))
1877 		goto out;
1878 
1879 	n = neigh_lookup(&arp_tbl, &tip, dev);
1880 
1881 	if (n) {
1882 		struct vxlan_fdb *f;
1883 		struct sk_buff	*reply;
1884 
1885 		if (!(READ_ONCE(n->nud_state) & NUD_CONNECTED)) {
1886 			neigh_release(n);
1887 			goto out;
1888 		}
1889 
1890 		f = vxlan_find_mac(vxlan, n->ha, vni);
1891 		if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1892 			/* bridge-local neighbor */
1893 			neigh_release(n);
1894 			goto out;
1895 		}
1896 
1897 		reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1898 				n->ha, sha);
1899 
1900 		neigh_release(n);
1901 
1902 		if (reply == NULL)
1903 			goto out;
1904 
1905 		skb_reset_mac_header(reply);
1906 		__skb_pull(reply, skb_network_offset(reply));
1907 		reply->ip_summed = CHECKSUM_UNNECESSARY;
1908 		reply->pkt_type = PACKET_HOST;
1909 
1910 		if (netif_rx(reply) == NET_RX_DROP) {
1911 			dev_core_stats_rx_dropped_inc(dev);
1912 			vxlan_vnifilter_count(vxlan, vni, NULL,
1913 					      VXLAN_VNI_STATS_RX_DROPS, 0);
1914 		}
1915 
1916 	} else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
1917 		union vxlan_addr ipa = {
1918 			.sin.sin_addr.s_addr = tip,
1919 			.sin.sin_family = AF_INET,
1920 		};
1921 
1922 		vxlan_ip_miss(dev, &ipa);
1923 	}
1924 out:
1925 	consume_skb(skb);
1926 	return NETDEV_TX_OK;
1927 }
1928 
1929 #if IS_ENABLED(CONFIG_IPV6)
1930 static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1931 	struct neighbour *n, bool isrouter)
1932 {
1933 	struct net_device *dev = request->dev;
1934 	struct sk_buff *reply;
1935 	struct nd_msg *ns, *na;
1936 	struct ipv6hdr *pip6;
1937 	u8 *daddr;
1938 	int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1939 	int ns_olen;
1940 	int i, len;
1941 
1942 	if (dev == NULL || !pskb_may_pull(request, request->len))
1943 		return NULL;
1944 
1945 	len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1946 		sizeof(*na) + na_olen + dev->needed_tailroom;
1947 	reply = alloc_skb(len, GFP_ATOMIC);
1948 	if (reply == NULL)
1949 		return NULL;
1950 
1951 	reply->protocol = htons(ETH_P_IPV6);
1952 	reply->dev = dev;
1953 	skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1954 	skb_push(reply, sizeof(struct ethhdr));
1955 	skb_reset_mac_header(reply);
1956 
1957 	ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
1958 
1959 	daddr = eth_hdr(request)->h_source;
1960 	ns_olen = request->len - skb_network_offset(request) -
1961 		sizeof(struct ipv6hdr) - sizeof(*ns);
1962 	for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1963 		if (!ns->opt[i + 1]) {
1964 			kfree_skb(reply);
1965 			return NULL;
1966 		}
1967 		if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1968 			daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1969 			break;
1970 		}
1971 	}
1972 
1973 	/* Ethernet header */
1974 	ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1975 	ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1976 	eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1977 	reply->protocol = htons(ETH_P_IPV6);
1978 
1979 	skb_pull(reply, sizeof(struct ethhdr));
1980 	skb_reset_network_header(reply);
1981 	skb_put(reply, sizeof(struct ipv6hdr));
1982 
1983 	/* IPv6 header */
1984 
1985 	pip6 = ipv6_hdr(reply);
1986 	memset(pip6, 0, sizeof(struct ipv6hdr));
1987 	pip6->version = 6;
1988 	pip6->priority = ipv6_hdr(request)->priority;
1989 	pip6->nexthdr = IPPROTO_ICMPV6;
1990 	pip6->hop_limit = 255;
1991 	pip6->daddr = ipv6_hdr(request)->saddr;
1992 	pip6->saddr = *(struct in6_addr *)n->primary_key;
1993 
1994 	skb_pull(reply, sizeof(struct ipv6hdr));
1995 	skb_reset_transport_header(reply);
1996 
1997 	/* Neighbor Advertisement */
1998 	na = skb_put_zero(reply, sizeof(*na) + na_olen);
1999 	na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
2000 	na->icmph.icmp6_router = isrouter;
2001 	na->icmph.icmp6_override = 1;
2002 	na->icmph.icmp6_solicited = 1;
2003 	na->target = ns->target;
2004 	ether_addr_copy(&na->opt[2], n->ha);
2005 	na->opt[0] = ND_OPT_TARGET_LL_ADDR;
2006 	na->opt[1] = na_olen >> 3;
2007 
2008 	na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
2009 		&pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
2010 		csum_partial(na, sizeof(*na)+na_olen, 0));
2011 
2012 	pip6->payload_len = htons(sizeof(*na)+na_olen);
2013 
2014 	skb_push(reply, sizeof(struct ipv6hdr));
2015 
2016 	reply->ip_summed = CHECKSUM_UNNECESSARY;
2017 
2018 	return reply;
2019 }
2020 
2021 static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
2022 {
2023 	struct vxlan_dev *vxlan = netdev_priv(dev);
2024 	const struct in6_addr *daddr;
2025 	const struct ipv6hdr *iphdr;
2026 	struct inet6_dev *in6_dev;
2027 	struct neighbour *n;
2028 	struct nd_msg *msg;
2029 
2030 	rcu_read_lock();
2031 	in6_dev = __in6_dev_get(dev);
2032 	if (!in6_dev)
2033 		goto out;
2034 
2035 	iphdr = ipv6_hdr(skb);
2036 	daddr = &iphdr->daddr;
2037 	msg = (struct nd_msg *)(iphdr + 1);
2038 
2039 	if (ipv6_addr_loopback(daddr) ||
2040 	    ipv6_addr_is_multicast(&msg->target))
2041 		goto out;
2042 
2043 	n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
2044 
2045 	if (n) {
2046 		struct vxlan_fdb *f;
2047 		struct sk_buff *reply;
2048 
2049 		if (!(READ_ONCE(n->nud_state) & NUD_CONNECTED)) {
2050 			neigh_release(n);
2051 			goto out;
2052 		}
2053 
2054 		f = vxlan_find_mac(vxlan, n->ha, vni);
2055 		if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
2056 			/* bridge-local neighbor */
2057 			neigh_release(n);
2058 			goto out;
2059 		}
2060 
2061 		reply = vxlan_na_create(skb, n,
2062 					!!(f ? f->flags & NTF_ROUTER : 0));
2063 
2064 		neigh_release(n);
2065 
2066 		if (reply == NULL)
2067 			goto out;
2068 
2069 		if (netif_rx(reply) == NET_RX_DROP) {
2070 			dev_core_stats_rx_dropped_inc(dev);
2071 			vxlan_vnifilter_count(vxlan, vni, NULL,
2072 					      VXLAN_VNI_STATS_RX_DROPS, 0);
2073 		}
2074 	} else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
2075 		union vxlan_addr ipa = {
2076 			.sin6.sin6_addr = msg->target,
2077 			.sin6.sin6_family = AF_INET6,
2078 		};
2079 
2080 		vxlan_ip_miss(dev, &ipa);
2081 	}
2082 
2083 out:
2084 	rcu_read_unlock();
2085 	consume_skb(skb);
2086 	return NETDEV_TX_OK;
2087 }
2088 #endif
2089 
2090 static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
2091 {
2092 	struct vxlan_dev *vxlan = netdev_priv(dev);
2093 	struct neighbour *n;
2094 
2095 	if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
2096 		return false;
2097 
2098 	n = NULL;
2099 	switch (ntohs(eth_hdr(skb)->h_proto)) {
2100 	case ETH_P_IP:
2101 	{
2102 		struct iphdr *pip;
2103 
2104 		if (!pskb_may_pull(skb, sizeof(struct iphdr)))
2105 			return false;
2106 		pip = ip_hdr(skb);
2107 		n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
2108 		if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
2109 			union vxlan_addr ipa = {
2110 				.sin.sin_addr.s_addr = pip->daddr,
2111 				.sin.sin_family = AF_INET,
2112 			};
2113 
2114 			vxlan_ip_miss(dev, &ipa);
2115 			return false;
2116 		}
2117 
2118 		break;
2119 	}
2120 #if IS_ENABLED(CONFIG_IPV6)
2121 	case ETH_P_IPV6:
2122 	{
2123 		struct ipv6hdr *pip6;
2124 
2125 		if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
2126 			return false;
2127 		pip6 = ipv6_hdr(skb);
2128 		n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
2129 		if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
2130 			union vxlan_addr ipa = {
2131 				.sin6.sin6_addr = pip6->daddr,
2132 				.sin6.sin6_family = AF_INET6,
2133 			};
2134 
2135 			vxlan_ip_miss(dev, &ipa);
2136 			return false;
2137 		}
2138 
2139 		break;
2140 	}
2141 #endif
2142 	default:
2143 		return false;
2144 	}
2145 
2146 	if (n) {
2147 		bool diff;
2148 
2149 		diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
2150 		if (diff) {
2151 			memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
2152 				dev->addr_len);
2153 			memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
2154 		}
2155 		neigh_release(n);
2156 		return diff;
2157 	}
2158 
2159 	return false;
2160 }
2161 
2162 static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, __be16 protocol)
2163 {
2164 	struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
2165 
2166 	gpe->np_applied = 1;
2167 	gpe->next_protocol = tun_p_from_eth_p(protocol);
2168 	if (!gpe->next_protocol)
2169 		return -EPFNOSUPPORT;
2170 	return 0;
2171 }
2172 
2173 static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
2174 			   int iphdr_len, __be32 vni,
2175 			   struct vxlan_metadata *md, u32 vxflags,
2176 			   bool udp_sum)
2177 {
2178 	struct vxlanhdr *vxh;
2179 	int min_headroom;
2180 	int err;
2181 	int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
2182 	__be16 inner_protocol = htons(ETH_P_TEB);
2183 
2184 	if ((vxflags & VXLAN_F_REMCSUM_TX) &&
2185 	    skb->ip_summed == CHECKSUM_PARTIAL) {
2186 		int csum_start = skb_checksum_start_offset(skb);
2187 
2188 		if (csum_start <= VXLAN_MAX_REMCSUM_START &&
2189 		    !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
2190 		    (skb->csum_offset == offsetof(struct udphdr, check) ||
2191 		     skb->csum_offset == offsetof(struct tcphdr, check)))
2192 			type |= SKB_GSO_TUNNEL_REMCSUM;
2193 	}
2194 
2195 	min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
2196 			+ VXLAN_HLEN + iphdr_len;
2197 
2198 	/* Need space for new headers (invalidates iph ptr) */
2199 	err = skb_cow_head(skb, min_headroom);
2200 	if (unlikely(err))
2201 		return err;
2202 
2203 	err = iptunnel_handle_offloads(skb, type);
2204 	if (err)
2205 		return err;
2206 
2207 	vxh = __skb_push(skb, sizeof(*vxh));
2208 	vxh->vx_flags = VXLAN_HF_VNI;
2209 	vxh->vx_vni = vxlan_vni_field(vni);
2210 
2211 	if (type & SKB_GSO_TUNNEL_REMCSUM) {
2212 		unsigned int start;
2213 
2214 		start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
2215 		vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
2216 		vxh->vx_flags |= VXLAN_HF_RCO;
2217 
2218 		if (!skb_is_gso(skb)) {
2219 			skb->ip_summed = CHECKSUM_NONE;
2220 			skb->encapsulation = 0;
2221 		}
2222 	}
2223 
2224 	if (vxflags & VXLAN_F_GBP)
2225 		vxlan_build_gbp_hdr(vxh, md);
2226 	if (vxflags & VXLAN_F_GPE) {
2227 		err = vxlan_build_gpe_hdr(vxh, skb->protocol);
2228 		if (err < 0)
2229 			return err;
2230 		inner_protocol = skb->protocol;
2231 	}
2232 
2233 	skb_set_inner_protocol(skb, inner_protocol);
2234 	return 0;
2235 }
2236 
2237 static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
2238 				      struct vxlan_sock *sock4,
2239 				      struct sk_buff *skb, int oif, u8 tos,
2240 				      __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
2241 				      __u8 flow_flags, struct dst_cache *dst_cache,
2242 				      const struct ip_tunnel_info *info)
2243 {
2244 	bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
2245 	struct rtable *rt = NULL;
2246 	struct flowi4 fl4;
2247 
2248 	if (!sock4)
2249 		return ERR_PTR(-EIO);
2250 
2251 	if (tos && !info)
2252 		use_cache = false;
2253 	if (use_cache) {
2254 		rt = dst_cache_get_ip4(dst_cache, saddr);
2255 		if (rt)
2256 			return rt;
2257 	}
2258 
2259 	memset(&fl4, 0, sizeof(fl4));
2260 	fl4.flowi4_oif = oif;
2261 	fl4.flowi4_tos = RT_TOS(tos);
2262 	fl4.flowi4_mark = skb->mark;
2263 	fl4.flowi4_proto = IPPROTO_UDP;
2264 	fl4.daddr = daddr;
2265 	fl4.saddr = *saddr;
2266 	fl4.fl4_dport = dport;
2267 	fl4.fl4_sport = sport;
2268 	fl4.flowi4_flags = flow_flags;
2269 
2270 	rt = ip_route_output_key(vxlan->net, &fl4);
2271 	if (!IS_ERR(rt)) {
2272 		if (rt->dst.dev == dev) {
2273 			netdev_dbg(dev, "circular route to %pI4\n", &daddr);
2274 			ip_rt_put(rt);
2275 			return ERR_PTR(-ELOOP);
2276 		}
2277 
2278 		*saddr = fl4.saddr;
2279 		if (use_cache)
2280 			dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
2281 	} else {
2282 		netdev_dbg(dev, "no route to %pI4\n", &daddr);
2283 		return ERR_PTR(-ENETUNREACH);
2284 	}
2285 	return rt;
2286 }
2287 
2288 #if IS_ENABLED(CONFIG_IPV6)
2289 static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
2290 					  struct net_device *dev,
2291 					  struct vxlan_sock *sock6,
2292 					  struct sk_buff *skb, int oif, u8 tos,
2293 					  __be32 label,
2294 					  const struct in6_addr *daddr,
2295 					  struct in6_addr *saddr,
2296 					  __be16 dport, __be16 sport,
2297 					  struct dst_cache *dst_cache,
2298 					  const struct ip_tunnel_info *info)
2299 {
2300 	bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
2301 	struct dst_entry *ndst;
2302 	struct flowi6 fl6;
2303 
2304 	if (!sock6)
2305 		return ERR_PTR(-EIO);
2306 
2307 	if (tos && !info)
2308 		use_cache = false;
2309 	if (use_cache) {
2310 		ndst = dst_cache_get_ip6(dst_cache, saddr);
2311 		if (ndst)
2312 			return ndst;
2313 	}
2314 
2315 	memset(&fl6, 0, sizeof(fl6));
2316 	fl6.flowi6_oif = oif;
2317 	fl6.daddr = *daddr;
2318 	fl6.saddr = *saddr;
2319 	fl6.flowlabel = ip6_make_flowinfo(tos, label);
2320 	fl6.flowi6_mark = skb->mark;
2321 	fl6.flowi6_proto = IPPROTO_UDP;
2322 	fl6.fl6_dport = dport;
2323 	fl6.fl6_sport = sport;
2324 
2325 	ndst = ipv6_stub->ipv6_dst_lookup_flow(vxlan->net, sock6->sock->sk,
2326 					       &fl6, NULL);
2327 	if (IS_ERR(ndst)) {
2328 		netdev_dbg(dev, "no route to %pI6\n", daddr);
2329 		return ERR_PTR(-ENETUNREACH);
2330 	}
2331 
2332 	if (unlikely(ndst->dev == dev)) {
2333 		netdev_dbg(dev, "circular route to %pI6\n", daddr);
2334 		dst_release(ndst);
2335 		return ERR_PTR(-ELOOP);
2336 	}
2337 
2338 	*saddr = fl6.saddr;
2339 	if (use_cache)
2340 		dst_cache_set_ip6(dst_cache, ndst, saddr);
2341 	return ndst;
2342 }
2343 #endif
2344 
2345 /* Bypass encapsulation if the destination is local */
2346 static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
2347 			       struct vxlan_dev *dst_vxlan, __be32 vni,
2348 			       bool snoop)
2349 {
2350 	union vxlan_addr loopback;
2351 	union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
2352 	struct net_device *dev;
2353 	int len = skb->len;
2354 
2355 	skb->pkt_type = PACKET_HOST;
2356 	skb->encapsulation = 0;
2357 	skb->dev = dst_vxlan->dev;
2358 	__skb_pull(skb, skb_network_offset(skb));
2359 
2360 	if (remote_ip->sa.sa_family == AF_INET) {
2361 		loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
2362 		loopback.sa.sa_family =  AF_INET;
2363 #if IS_ENABLED(CONFIG_IPV6)
2364 	} else {
2365 		loopback.sin6.sin6_addr = in6addr_loopback;
2366 		loopback.sa.sa_family =  AF_INET6;
2367 #endif
2368 	}
2369 
2370 	rcu_read_lock();
2371 	dev = skb->dev;
2372 	if (unlikely(!(dev->flags & IFF_UP))) {
2373 		kfree_skb(skb);
2374 		goto drop;
2375 	}
2376 
2377 	if ((dst_vxlan->cfg.flags & VXLAN_F_LEARN) && snoop)
2378 		vxlan_snoop(dev, &loopback, eth_hdr(skb)->h_source, 0, vni);
2379 
2380 	dev_sw_netstats_tx_add(src_vxlan->dev, 1, len);
2381 	vxlan_vnifilter_count(src_vxlan, vni, NULL, VXLAN_VNI_STATS_TX, len);
2382 
2383 	if (__netif_rx(skb) == NET_RX_SUCCESS) {
2384 		dev_sw_netstats_rx_add(dst_vxlan->dev, len);
2385 		vxlan_vnifilter_count(dst_vxlan, vni, NULL, VXLAN_VNI_STATS_RX,
2386 				      len);
2387 	} else {
2388 drop:
2389 		dev_core_stats_rx_dropped_inc(dev);
2390 		vxlan_vnifilter_count(dst_vxlan, vni, NULL,
2391 				      VXLAN_VNI_STATS_RX_DROPS, 0);
2392 	}
2393 	rcu_read_unlock();
2394 }
2395 
2396 static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
2397 				 struct vxlan_dev *vxlan,
2398 				 union vxlan_addr *daddr,
2399 				 __be16 dst_port, int dst_ifindex, __be32 vni,
2400 				 struct dst_entry *dst,
2401 				 u32 rt_flags)
2402 {
2403 #if IS_ENABLED(CONFIG_IPV6)
2404 	/* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2405 	 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2406 	 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2407 	 */
2408 	BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2409 #endif
2410 	/* Bypass encapsulation if the destination is local */
2411 	if (rt_flags & RTCF_LOCAL &&
2412 	    !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST)) &&
2413 	    vxlan->cfg.flags & VXLAN_F_LOCALBYPASS) {
2414 		struct vxlan_dev *dst_vxlan;
2415 
2416 		dst_release(dst);
2417 		dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni,
2418 					   daddr->sa.sa_family, dst_port,
2419 					   vxlan->cfg.flags);
2420 		if (!dst_vxlan) {
2421 			DEV_STATS_INC(dev, tx_errors);
2422 			vxlan_vnifilter_count(vxlan, vni, NULL,
2423 					      VXLAN_VNI_STATS_TX_ERRORS, 0);
2424 			kfree_skb(skb);
2425 
2426 			return -ENOENT;
2427 		}
2428 		vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni, true);
2429 		return 1;
2430 	}
2431 
2432 	return 0;
2433 }
2434 
2435 void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
2436 		    __be32 default_vni, struct vxlan_rdst *rdst, bool did_rsc)
2437 {
2438 	struct dst_cache *dst_cache;
2439 	struct ip_tunnel_info *info;
2440 	struct vxlan_dev *vxlan = netdev_priv(dev);
2441 	const struct iphdr *old_iph = ip_hdr(skb);
2442 	union vxlan_addr *dst;
2443 	union vxlan_addr remote_ip, local_ip;
2444 	struct vxlan_metadata _md;
2445 	struct vxlan_metadata *md = &_md;
2446 	unsigned int pkt_len = skb->len;
2447 	__be16 src_port = 0, dst_port;
2448 	struct dst_entry *ndst = NULL;
2449 	__u8 tos, ttl, flow_flags = 0;
2450 	int ifindex;
2451 	int err;
2452 	u32 flags = vxlan->cfg.flags;
2453 	bool udp_sum = false;
2454 	bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
2455 	__be32 vni = 0;
2456 #if IS_ENABLED(CONFIG_IPV6)
2457 	__be32 label;
2458 #endif
2459 
2460 	info = skb_tunnel_info(skb);
2461 
2462 	if (rdst) {
2463 		dst = &rdst->remote_ip;
2464 		if (vxlan_addr_any(dst)) {
2465 			if (did_rsc) {
2466 				/* short-circuited back to local bridge */
2467 				vxlan_encap_bypass(skb, vxlan, vxlan,
2468 						   default_vni, true);
2469 				return;
2470 			}
2471 			goto drop;
2472 		}
2473 
2474 		dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
2475 		vni = (rdst->remote_vni) ? : default_vni;
2476 		ifindex = rdst->remote_ifindex;
2477 		local_ip = vxlan->cfg.saddr;
2478 		dst_cache = &rdst->dst_cache;
2479 		md->gbp = skb->mark;
2480 		if (flags & VXLAN_F_TTL_INHERIT) {
2481 			ttl = ip_tunnel_get_ttl(old_iph, skb);
2482 		} else {
2483 			ttl = vxlan->cfg.ttl;
2484 			if (!ttl && vxlan_addr_multicast(dst))
2485 				ttl = 1;
2486 		}
2487 
2488 		tos = vxlan->cfg.tos;
2489 		if (tos == 1)
2490 			tos = ip_tunnel_get_dsfield(old_iph, skb);
2491 
2492 		if (dst->sa.sa_family == AF_INET)
2493 			udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2494 		else
2495 			udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2496 #if IS_ENABLED(CONFIG_IPV6)
2497 		label = vxlan->cfg.label;
2498 #endif
2499 	} else {
2500 		if (!info) {
2501 			WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2502 				  dev->name);
2503 			goto drop;
2504 		}
2505 		remote_ip.sa.sa_family = ip_tunnel_info_af(info);
2506 		if (remote_ip.sa.sa_family == AF_INET) {
2507 			remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
2508 			local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2509 		} else {
2510 			remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
2511 			local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2512 		}
2513 		dst = &remote_ip;
2514 		dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2515 		flow_flags = info->key.flow_flags;
2516 		vni = tunnel_id_to_key32(info->key.tun_id);
2517 		ifindex = 0;
2518 		dst_cache = &info->dst_cache;
2519 		if (info->key.tun_flags & TUNNEL_VXLAN_OPT) {
2520 			if (info->options_len < sizeof(*md))
2521 				goto drop;
2522 			md = ip_tunnel_info_opts(info);
2523 		}
2524 		ttl = info->key.ttl;
2525 		tos = info->key.tos;
2526 #if IS_ENABLED(CONFIG_IPV6)
2527 		label = info->key.label;
2528 #endif
2529 		udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
2530 	}
2531 	src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2532 				     vxlan->cfg.port_max, true);
2533 
2534 	rcu_read_lock();
2535 	if (dst->sa.sa_family == AF_INET) {
2536 		struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
2537 		struct rtable *rt;
2538 		__be16 df = 0;
2539 
2540 		if (!ifindex)
2541 			ifindex = sock4->sock->sk->sk_bound_dev_if;
2542 
2543 		rt = vxlan_get_route(vxlan, dev, sock4, skb, ifindex, tos,
2544 				     dst->sin.sin_addr.s_addr,
2545 				     &local_ip.sin.sin_addr.s_addr,
2546 				     dst_port, src_port, flow_flags,
2547 				     dst_cache, info);
2548 		if (IS_ERR(rt)) {
2549 			err = PTR_ERR(rt);
2550 			goto tx_error;
2551 		}
2552 
2553 		if (!info) {
2554 			/* Bypass encapsulation if the destination is local */
2555 			err = encap_bypass_if_local(skb, dev, vxlan, dst,
2556 						    dst_port, ifindex, vni,
2557 						    &rt->dst, rt->rt_flags);
2558 			if (err)
2559 				goto out_unlock;
2560 
2561 			if (vxlan->cfg.df == VXLAN_DF_SET) {
2562 				df = htons(IP_DF);
2563 			} else if (vxlan->cfg.df == VXLAN_DF_INHERIT) {
2564 				struct ethhdr *eth = eth_hdr(skb);
2565 
2566 				if (ntohs(eth->h_proto) == ETH_P_IPV6 ||
2567 				    (ntohs(eth->h_proto) == ETH_P_IP &&
2568 				     old_iph->frag_off & htons(IP_DF)))
2569 					df = htons(IP_DF);
2570 			}
2571 		} else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
2572 			df = htons(IP_DF);
2573 		}
2574 
2575 		ndst = &rt->dst;
2576 		err = skb_tunnel_check_pmtu(skb, ndst, vxlan_headroom(flags & VXLAN_F_GPE),
2577 					    netif_is_any_bridge_port(dev));
2578 		if (err < 0) {
2579 			goto tx_error;
2580 		} else if (err) {
2581 			if (info) {
2582 				struct ip_tunnel_info *unclone;
2583 				struct in_addr src, dst;
2584 
2585 				unclone = skb_tunnel_info_unclone(skb);
2586 				if (unlikely(!unclone))
2587 					goto tx_error;
2588 
2589 				src = remote_ip.sin.sin_addr;
2590 				dst = local_ip.sin.sin_addr;
2591 				unclone->key.u.ipv4.src = src.s_addr;
2592 				unclone->key.u.ipv4.dst = dst.s_addr;
2593 			}
2594 			vxlan_encap_bypass(skb, vxlan, vxlan, vni, false);
2595 			dst_release(ndst);
2596 			goto out_unlock;
2597 		}
2598 
2599 		tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2600 		ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
2601 		err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
2602 				      vni, md, flags, udp_sum);
2603 		if (err < 0)
2604 			goto tx_error;
2605 
2606 		udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
2607 				    dst->sin.sin_addr.s_addr, tos, ttl, df,
2608 				    src_port, dst_port, xnet, !udp_sum);
2609 #if IS_ENABLED(CONFIG_IPV6)
2610 	} else {
2611 		struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
2612 
2613 		if (!ifindex)
2614 			ifindex = sock6->sock->sk->sk_bound_dev_if;
2615 
2616 		ndst = vxlan6_get_route(vxlan, dev, sock6, skb, ifindex, tos,
2617 					label, &dst->sin6.sin6_addr,
2618 					&local_ip.sin6.sin6_addr,
2619 					dst_port, src_port,
2620 					dst_cache, info);
2621 		if (IS_ERR(ndst)) {
2622 			err = PTR_ERR(ndst);
2623 			ndst = NULL;
2624 			goto tx_error;
2625 		}
2626 
2627 		if (!info) {
2628 			u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
2629 
2630 			err = encap_bypass_if_local(skb, dev, vxlan, dst,
2631 						    dst_port, ifindex, vni,
2632 						    ndst, rt6i_flags);
2633 			if (err)
2634 				goto out_unlock;
2635 		}
2636 
2637 		err = skb_tunnel_check_pmtu(skb, ndst,
2638 					    vxlan_headroom((flags & VXLAN_F_GPE) | VXLAN_F_IPV6),
2639 					    netif_is_any_bridge_port(dev));
2640 		if (err < 0) {
2641 			goto tx_error;
2642 		} else if (err) {
2643 			if (info) {
2644 				struct ip_tunnel_info *unclone;
2645 				struct in6_addr src, dst;
2646 
2647 				unclone = skb_tunnel_info_unclone(skb);
2648 				if (unlikely(!unclone))
2649 					goto tx_error;
2650 
2651 				src = remote_ip.sin6.sin6_addr;
2652 				dst = local_ip.sin6.sin6_addr;
2653 				unclone->key.u.ipv6.src = src;
2654 				unclone->key.u.ipv6.dst = dst;
2655 			}
2656 
2657 			vxlan_encap_bypass(skb, vxlan, vxlan, vni, false);
2658 			dst_release(ndst);
2659 			goto out_unlock;
2660 		}
2661 
2662 		tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2663 		ttl = ttl ? : ip6_dst_hoplimit(ndst);
2664 		skb_scrub_packet(skb, xnet);
2665 		err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
2666 				      vni, md, flags, udp_sum);
2667 		if (err < 0)
2668 			goto tx_error;
2669 
2670 		udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
2671 				     &local_ip.sin6.sin6_addr,
2672 				     &dst->sin6.sin6_addr, tos, ttl,
2673 				     label, src_port, dst_port, !udp_sum);
2674 #endif
2675 	}
2676 	vxlan_vnifilter_count(vxlan, vni, NULL, VXLAN_VNI_STATS_TX, pkt_len);
2677 out_unlock:
2678 	rcu_read_unlock();
2679 	return;
2680 
2681 drop:
2682 	dev_core_stats_tx_dropped_inc(dev);
2683 	vxlan_vnifilter_count(vxlan, vni, NULL, VXLAN_VNI_STATS_TX_DROPS, 0);
2684 	dev_kfree_skb(skb);
2685 	return;
2686 
2687 tx_error:
2688 	rcu_read_unlock();
2689 	if (err == -ELOOP)
2690 		DEV_STATS_INC(dev, collisions);
2691 	else if (err == -ENETUNREACH)
2692 		DEV_STATS_INC(dev, tx_carrier_errors);
2693 	dst_release(ndst);
2694 	DEV_STATS_INC(dev, tx_errors);
2695 	vxlan_vnifilter_count(vxlan, vni, NULL, VXLAN_VNI_STATS_TX_ERRORS, 0);
2696 	kfree_skb(skb);
2697 }
2698 
2699 static void vxlan_xmit_nh(struct sk_buff *skb, struct net_device *dev,
2700 			  struct vxlan_fdb *f, __be32 vni, bool did_rsc)
2701 {
2702 	struct vxlan_rdst nh_rdst;
2703 	struct nexthop *nh;
2704 	bool do_xmit;
2705 	u32 hash;
2706 
2707 	memset(&nh_rdst, 0, sizeof(struct vxlan_rdst));
2708 	hash = skb_get_hash(skb);
2709 
2710 	rcu_read_lock();
2711 	nh = rcu_dereference(f->nh);
2712 	if (!nh) {
2713 		rcu_read_unlock();
2714 		goto drop;
2715 	}
2716 	do_xmit = vxlan_fdb_nh_path_select(nh, hash, &nh_rdst);
2717 	rcu_read_unlock();
2718 
2719 	if (likely(do_xmit))
2720 		vxlan_xmit_one(skb, dev, vni, &nh_rdst, did_rsc);
2721 	else
2722 		goto drop;
2723 
2724 	return;
2725 
2726 drop:
2727 	dev_core_stats_tx_dropped_inc(dev);
2728 	vxlan_vnifilter_count(netdev_priv(dev), vni, NULL,
2729 			      VXLAN_VNI_STATS_TX_DROPS, 0);
2730 	dev_kfree_skb(skb);
2731 }
2732 
2733 static netdev_tx_t vxlan_xmit_nhid(struct sk_buff *skb, struct net_device *dev,
2734 				   u32 nhid, __be32 vni)
2735 {
2736 	struct vxlan_dev *vxlan = netdev_priv(dev);
2737 	struct vxlan_rdst nh_rdst;
2738 	struct nexthop *nh;
2739 	bool do_xmit;
2740 	u32 hash;
2741 
2742 	memset(&nh_rdst, 0, sizeof(struct vxlan_rdst));
2743 	hash = skb_get_hash(skb);
2744 
2745 	rcu_read_lock();
2746 	nh = nexthop_find_by_id(dev_net(dev), nhid);
2747 	if (unlikely(!nh || !nexthop_is_fdb(nh) || !nexthop_is_multipath(nh))) {
2748 		rcu_read_unlock();
2749 		goto drop;
2750 	}
2751 	do_xmit = vxlan_fdb_nh_path_select(nh, hash, &nh_rdst);
2752 	rcu_read_unlock();
2753 
2754 	if (vxlan->cfg.saddr.sa.sa_family != nh_rdst.remote_ip.sa.sa_family)
2755 		goto drop;
2756 
2757 	if (likely(do_xmit))
2758 		vxlan_xmit_one(skb, dev, vni, &nh_rdst, false);
2759 	else
2760 		goto drop;
2761 
2762 	return NETDEV_TX_OK;
2763 
2764 drop:
2765 	dev_core_stats_tx_dropped_inc(dev);
2766 	vxlan_vnifilter_count(netdev_priv(dev), vni, NULL,
2767 			      VXLAN_VNI_STATS_TX_DROPS, 0);
2768 	dev_kfree_skb(skb);
2769 	return NETDEV_TX_OK;
2770 }
2771 
2772 /* Transmit local packets over Vxlan
2773  *
2774  * Outer IP header inherits ECN and DF from inner header.
2775  * Outer UDP destination is the VXLAN assigned port.
2776  *           source port is based on hash of flow
2777  */
2778 static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2779 {
2780 	struct vxlan_dev *vxlan = netdev_priv(dev);
2781 	struct vxlan_rdst *rdst, *fdst = NULL;
2782 	const struct ip_tunnel_info *info;
2783 	bool did_rsc = false;
2784 	struct vxlan_fdb *f;
2785 	struct ethhdr *eth;
2786 	__be32 vni = 0;
2787 	u32 nhid = 0;
2788 
2789 	info = skb_tunnel_info(skb);
2790 
2791 	skb_reset_mac_header(skb);
2792 
2793 	if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
2794 		if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2795 		    info->mode & IP_TUNNEL_INFO_TX) {
2796 			vni = tunnel_id_to_key32(info->key.tun_id);
2797 			nhid = info->key.nhid;
2798 		} else {
2799 			if (info && info->mode & IP_TUNNEL_INFO_TX)
2800 				vxlan_xmit_one(skb, dev, vni, NULL, false);
2801 			else
2802 				kfree_skb(skb);
2803 			return NETDEV_TX_OK;
2804 		}
2805 	}
2806 
2807 	if (vxlan->cfg.flags & VXLAN_F_PROXY) {
2808 		eth = eth_hdr(skb);
2809 		if (ntohs(eth->h_proto) == ETH_P_ARP)
2810 			return arp_reduce(dev, skb, vni);
2811 #if IS_ENABLED(CONFIG_IPV6)
2812 		else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
2813 			 pskb_may_pull(skb, sizeof(struct ipv6hdr) +
2814 					    sizeof(struct nd_msg)) &&
2815 			 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2816 			struct nd_msg *m = (struct nd_msg *)(ipv6_hdr(skb) + 1);
2817 
2818 			if (m->icmph.icmp6_code == 0 &&
2819 			    m->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
2820 				return neigh_reduce(dev, skb, vni);
2821 		}
2822 #endif
2823 	}
2824 
2825 	if (nhid)
2826 		return vxlan_xmit_nhid(skb, dev, nhid, vni);
2827 
2828 	if (vxlan->cfg.flags & VXLAN_F_MDB) {
2829 		struct vxlan_mdb_entry *mdb_entry;
2830 
2831 		rcu_read_lock();
2832 		mdb_entry = vxlan_mdb_entry_skb_get(vxlan, skb, vni);
2833 		if (mdb_entry) {
2834 			netdev_tx_t ret;
2835 
2836 			ret = vxlan_mdb_xmit(vxlan, mdb_entry, skb);
2837 			rcu_read_unlock();
2838 			return ret;
2839 		}
2840 		rcu_read_unlock();
2841 	}
2842 
2843 	eth = eth_hdr(skb);
2844 	f = vxlan_find_mac(vxlan, eth->h_dest, vni);
2845 	did_rsc = false;
2846 
2847 	if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) &&
2848 	    (ntohs(eth->h_proto) == ETH_P_IP ||
2849 	     ntohs(eth->h_proto) == ETH_P_IPV6)) {
2850 		did_rsc = route_shortcircuit(dev, skb);
2851 		if (did_rsc)
2852 			f = vxlan_find_mac(vxlan, eth->h_dest, vni);
2853 	}
2854 
2855 	if (f == NULL) {
2856 		f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
2857 		if (f == NULL) {
2858 			if ((vxlan->cfg.flags & VXLAN_F_L2MISS) &&
2859 			    !is_multicast_ether_addr(eth->h_dest))
2860 				vxlan_fdb_miss(vxlan, eth->h_dest);
2861 
2862 			dev_core_stats_tx_dropped_inc(dev);
2863 			vxlan_vnifilter_count(vxlan, vni, NULL,
2864 					      VXLAN_VNI_STATS_TX_DROPS, 0);
2865 			kfree_skb(skb);
2866 			return NETDEV_TX_OK;
2867 		}
2868 	}
2869 
2870 	if (rcu_access_pointer(f->nh)) {
2871 		vxlan_xmit_nh(skb, dev, f,
2872 			      (vni ? : vxlan->default_dst.remote_vni), did_rsc);
2873 	} else {
2874 		list_for_each_entry_rcu(rdst, &f->remotes, list) {
2875 			struct sk_buff *skb1;
2876 
2877 			if (!fdst) {
2878 				fdst = rdst;
2879 				continue;
2880 			}
2881 			skb1 = skb_clone(skb, GFP_ATOMIC);
2882 			if (skb1)
2883 				vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
2884 		}
2885 		if (fdst)
2886 			vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
2887 		else
2888 			kfree_skb(skb);
2889 	}
2890 
2891 	return NETDEV_TX_OK;
2892 }
2893 
2894 /* Walk the forwarding table and purge stale entries */
2895 static void vxlan_cleanup(struct timer_list *t)
2896 {
2897 	struct vxlan_dev *vxlan = from_timer(vxlan, t, age_timer);
2898 	unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2899 	unsigned int h;
2900 
2901 	if (!netif_running(vxlan->dev))
2902 		return;
2903 
2904 	for (h = 0; h < FDB_HASH_SIZE; ++h) {
2905 		struct hlist_node *p, *n;
2906 
2907 		spin_lock(&vxlan->hash_lock[h]);
2908 		hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2909 			struct vxlan_fdb *f
2910 				= container_of(p, struct vxlan_fdb, hlist);
2911 			unsigned long timeout;
2912 
2913 			if (f->state & (NUD_PERMANENT | NUD_NOARP))
2914 				continue;
2915 
2916 			if (f->flags & NTF_EXT_LEARNED)
2917 				continue;
2918 
2919 			timeout = f->used + vxlan->cfg.age_interval * HZ;
2920 			if (time_before_eq(timeout, jiffies)) {
2921 				netdev_dbg(vxlan->dev,
2922 					   "garbage collect %pM\n",
2923 					   f->eth_addr);
2924 				f->state = NUD_STALE;
2925 				vxlan_fdb_destroy(vxlan, f, true, true);
2926 			} else if (time_before(timeout, next_timer))
2927 				next_timer = timeout;
2928 		}
2929 		spin_unlock(&vxlan->hash_lock[h]);
2930 	}
2931 
2932 	mod_timer(&vxlan->age_timer, next_timer);
2933 }
2934 
2935 static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2936 {
2937 	struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2938 
2939 	spin_lock(&vn->sock_lock);
2940 	hlist_del_init_rcu(&vxlan->hlist4.hlist);
2941 #if IS_ENABLED(CONFIG_IPV6)
2942 	hlist_del_init_rcu(&vxlan->hlist6.hlist);
2943 #endif
2944 	spin_unlock(&vn->sock_lock);
2945 }
2946 
2947 static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan,
2948 			     struct vxlan_dev_node *node)
2949 {
2950 	struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2951 	__be32 vni = vxlan->default_dst.remote_vni;
2952 
2953 	node->vxlan = vxlan;
2954 	spin_lock(&vn->sock_lock);
2955 	hlist_add_head_rcu(&node->hlist, vni_head(vs, vni));
2956 	spin_unlock(&vn->sock_lock);
2957 }
2958 
2959 /* Setup stats when device is created */
2960 static int vxlan_init(struct net_device *dev)
2961 {
2962 	struct vxlan_dev *vxlan = netdev_priv(dev);
2963 	int err;
2964 
2965 	if (vxlan->cfg.flags & VXLAN_F_VNIFILTER)
2966 		vxlan_vnigroup_init(vxlan);
2967 
2968 	dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2969 	if (!dev->tstats) {
2970 		err = -ENOMEM;
2971 		goto err_vnigroup_uninit;
2972 	}
2973 
2974 	err = gro_cells_init(&vxlan->gro_cells, dev);
2975 	if (err)
2976 		goto err_free_percpu;
2977 
2978 	err = vxlan_mdb_init(vxlan);
2979 	if (err)
2980 		goto err_gro_cells_destroy;
2981 
2982 	netdev_lockdep_set_classes(dev);
2983 	return 0;
2984 
2985 err_gro_cells_destroy:
2986 	gro_cells_destroy(&vxlan->gro_cells);
2987 err_free_percpu:
2988 	free_percpu(dev->tstats);
2989 err_vnigroup_uninit:
2990 	if (vxlan->cfg.flags & VXLAN_F_VNIFILTER)
2991 		vxlan_vnigroup_uninit(vxlan);
2992 	return err;
2993 }
2994 
2995 static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
2996 {
2997 	struct vxlan_fdb *f;
2998 	u32 hash_index = fdb_head_index(vxlan, all_zeros_mac, vni);
2999 
3000 	spin_lock_bh(&vxlan->hash_lock[hash_index]);
3001 	f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
3002 	if (f)
3003 		vxlan_fdb_destroy(vxlan, f, true, true);
3004 	spin_unlock_bh(&vxlan->hash_lock[hash_index]);
3005 }
3006 
3007 static void vxlan_uninit(struct net_device *dev)
3008 {
3009 	struct vxlan_dev *vxlan = netdev_priv(dev);
3010 
3011 	vxlan_mdb_fini(vxlan);
3012 
3013 	if (vxlan->cfg.flags & VXLAN_F_VNIFILTER)
3014 		vxlan_vnigroup_uninit(vxlan);
3015 
3016 	gro_cells_destroy(&vxlan->gro_cells);
3017 
3018 	vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
3019 
3020 	free_percpu(dev->tstats);
3021 }
3022 
3023 /* Start ageing timer and join group when device is brought up */
3024 static int vxlan_open(struct net_device *dev)
3025 {
3026 	struct vxlan_dev *vxlan = netdev_priv(dev);
3027 	int ret;
3028 
3029 	ret = vxlan_sock_add(vxlan);
3030 	if (ret < 0)
3031 		return ret;
3032 
3033 	ret = vxlan_multicast_join(vxlan);
3034 	if (ret) {
3035 		vxlan_sock_release(vxlan);
3036 		return ret;
3037 	}
3038 
3039 	if (vxlan->cfg.age_interval)
3040 		mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
3041 
3042 	return ret;
3043 }
3044 
3045 /* Purge the forwarding table */
3046 static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
3047 {
3048 	unsigned int h;
3049 
3050 	for (h = 0; h < FDB_HASH_SIZE; ++h) {
3051 		struct hlist_node *p, *n;
3052 
3053 		spin_lock_bh(&vxlan->hash_lock[h]);
3054 		hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
3055 			struct vxlan_fdb *f
3056 				= container_of(p, struct vxlan_fdb, hlist);
3057 			if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
3058 				continue;
3059 			/* the all_zeros_mac entry is deleted at vxlan_uninit */
3060 			if (is_zero_ether_addr(f->eth_addr) &&
3061 			    f->vni == vxlan->cfg.vni)
3062 				continue;
3063 			vxlan_fdb_destroy(vxlan, f, true, true);
3064 		}
3065 		spin_unlock_bh(&vxlan->hash_lock[h]);
3066 	}
3067 }
3068 
3069 /* Cleanup timer and forwarding table on shutdown */
3070 static int vxlan_stop(struct net_device *dev)
3071 {
3072 	struct vxlan_dev *vxlan = netdev_priv(dev);
3073 
3074 	vxlan_multicast_leave(vxlan);
3075 
3076 	del_timer_sync(&vxlan->age_timer);
3077 
3078 	vxlan_flush(vxlan, false);
3079 	vxlan_sock_release(vxlan);
3080 
3081 	return 0;
3082 }
3083 
3084 /* Stub, nothing needs to be done. */
3085 static void vxlan_set_multicast_list(struct net_device *dev)
3086 {
3087 }
3088 
3089 static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
3090 {
3091 	struct vxlan_dev *vxlan = netdev_priv(dev);
3092 	struct vxlan_rdst *dst = &vxlan->default_dst;
3093 	struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
3094 							 dst->remote_ifindex);
3095 
3096 	/* This check is different than dev->max_mtu, because it looks at
3097 	 * the lowerdev->mtu, rather than the static dev->max_mtu
3098 	 */
3099 	if (lowerdev) {
3100 		int max_mtu = lowerdev->mtu - vxlan_headroom(vxlan->cfg.flags);
3101 		if (new_mtu > max_mtu)
3102 			return -EINVAL;
3103 	}
3104 
3105 	dev->mtu = new_mtu;
3106 	return 0;
3107 }
3108 
3109 static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
3110 {
3111 	struct vxlan_dev *vxlan = netdev_priv(dev);
3112 	struct ip_tunnel_info *info = skb_tunnel_info(skb);
3113 	__be16 sport, dport;
3114 
3115 	sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
3116 				  vxlan->cfg.port_max, true);
3117 	dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
3118 
3119 	if (ip_tunnel_info_af(info) == AF_INET) {
3120 		struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
3121 		struct rtable *rt;
3122 
3123 		rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
3124 				     info->key.u.ipv4.dst,
3125 				     &info->key.u.ipv4.src, dport, sport,
3126 				     info->key.flow_flags, &info->dst_cache,
3127 				     info);
3128 		if (IS_ERR(rt))
3129 			return PTR_ERR(rt);
3130 		ip_rt_put(rt);
3131 	} else {
3132 #if IS_ENABLED(CONFIG_IPV6)
3133 		struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
3134 		struct dst_entry *ndst;
3135 
3136 		ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
3137 					info->key.label, &info->key.u.ipv6.dst,
3138 					&info->key.u.ipv6.src, dport, sport,
3139 					&info->dst_cache, info);
3140 		if (IS_ERR(ndst))
3141 			return PTR_ERR(ndst);
3142 		dst_release(ndst);
3143 #else /* !CONFIG_IPV6 */
3144 		return -EPFNOSUPPORT;
3145 #endif
3146 	}
3147 	info->key.tp_src = sport;
3148 	info->key.tp_dst = dport;
3149 	return 0;
3150 }
3151 
3152 static const struct net_device_ops vxlan_netdev_ether_ops = {
3153 	.ndo_init		= vxlan_init,
3154 	.ndo_uninit		= vxlan_uninit,
3155 	.ndo_open		= vxlan_open,
3156 	.ndo_stop		= vxlan_stop,
3157 	.ndo_start_xmit		= vxlan_xmit,
3158 	.ndo_get_stats64	= dev_get_tstats64,
3159 	.ndo_set_rx_mode	= vxlan_set_multicast_list,
3160 	.ndo_change_mtu		= vxlan_change_mtu,
3161 	.ndo_validate_addr	= eth_validate_addr,
3162 	.ndo_set_mac_address	= eth_mac_addr,
3163 	.ndo_fdb_add		= vxlan_fdb_add,
3164 	.ndo_fdb_del		= vxlan_fdb_delete,
3165 	.ndo_fdb_dump		= vxlan_fdb_dump,
3166 	.ndo_fdb_get		= vxlan_fdb_get,
3167 	.ndo_mdb_add		= vxlan_mdb_add,
3168 	.ndo_mdb_del		= vxlan_mdb_del,
3169 	.ndo_mdb_dump		= vxlan_mdb_dump,
3170 	.ndo_fill_metadata_dst	= vxlan_fill_metadata_dst,
3171 };
3172 
3173 static const struct net_device_ops vxlan_netdev_raw_ops = {
3174 	.ndo_init		= vxlan_init,
3175 	.ndo_uninit		= vxlan_uninit,
3176 	.ndo_open		= vxlan_open,
3177 	.ndo_stop		= vxlan_stop,
3178 	.ndo_start_xmit		= vxlan_xmit,
3179 	.ndo_get_stats64	= dev_get_tstats64,
3180 	.ndo_change_mtu		= vxlan_change_mtu,
3181 	.ndo_fill_metadata_dst	= vxlan_fill_metadata_dst,
3182 };
3183 
3184 /* Info for udev, that this is a virtual tunnel endpoint */
3185 static struct device_type vxlan_type = {
3186 	.name = "vxlan",
3187 };
3188 
3189 /* Calls the ndo_udp_tunnel_add of the caller in order to
3190  * supply the listening VXLAN udp ports. Callers are expected
3191  * to implement the ndo_udp_tunnel_add.
3192  */
3193 static void vxlan_offload_rx_ports(struct net_device *dev, bool push)
3194 {
3195 	struct vxlan_sock *vs;
3196 	struct net *net = dev_net(dev);
3197 	struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3198 	unsigned int i;
3199 
3200 	spin_lock(&vn->sock_lock);
3201 	for (i = 0; i < PORT_HASH_SIZE; ++i) {
3202 		hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
3203 			unsigned short type;
3204 
3205 			if (vs->flags & VXLAN_F_GPE)
3206 				type = UDP_TUNNEL_TYPE_VXLAN_GPE;
3207 			else
3208 				type = UDP_TUNNEL_TYPE_VXLAN;
3209 
3210 			if (push)
3211 				udp_tunnel_push_rx_port(dev, vs->sock, type);
3212 			else
3213 				udp_tunnel_drop_rx_port(dev, vs->sock, type);
3214 		}
3215 	}
3216 	spin_unlock(&vn->sock_lock);
3217 }
3218 
3219 /* Initialize the device structure. */
3220 static void vxlan_setup(struct net_device *dev)
3221 {
3222 	struct vxlan_dev *vxlan = netdev_priv(dev);
3223 	unsigned int h;
3224 
3225 	eth_hw_addr_random(dev);
3226 	ether_setup(dev);
3227 
3228 	dev->needs_free_netdev = true;
3229 	SET_NETDEV_DEVTYPE(dev, &vxlan_type);
3230 
3231 	dev->features	|= NETIF_F_LLTX;
3232 	dev->features	|= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_FRAGLIST;
3233 	dev->features   |= NETIF_F_RXCSUM;
3234 	dev->features   |= NETIF_F_GSO_SOFTWARE;
3235 
3236 	dev->vlan_features = dev->features;
3237 	dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_FRAGLIST;
3238 	dev->hw_features |= NETIF_F_RXCSUM;
3239 	dev->hw_features |= NETIF_F_GSO_SOFTWARE;
3240 	netif_keep_dst(dev);
3241 	dev->priv_flags |= IFF_NO_QUEUE | IFF_CHANGE_PROTO_DOWN;
3242 
3243 	/* MTU range: 68 - 65535 */
3244 	dev->min_mtu = ETH_MIN_MTU;
3245 	dev->max_mtu = ETH_MAX_MTU;
3246 
3247 	INIT_LIST_HEAD(&vxlan->next);
3248 
3249 	timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE);
3250 
3251 	vxlan->dev = dev;
3252 
3253 	for (h = 0; h < FDB_HASH_SIZE; ++h) {
3254 		spin_lock_init(&vxlan->hash_lock[h]);
3255 		INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
3256 	}
3257 }
3258 
3259 static void vxlan_ether_setup(struct net_device *dev)
3260 {
3261 	dev->priv_flags &= ~IFF_TX_SKB_SHARING;
3262 	dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
3263 	dev->netdev_ops = &vxlan_netdev_ether_ops;
3264 }
3265 
3266 static void vxlan_raw_setup(struct net_device *dev)
3267 {
3268 	dev->header_ops = NULL;
3269 	dev->type = ARPHRD_NONE;
3270 	dev->hard_header_len = 0;
3271 	dev->addr_len = 0;
3272 	dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
3273 	dev->netdev_ops = &vxlan_netdev_raw_ops;
3274 }
3275 
3276 static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
3277 	[IFLA_VXLAN_UNSPEC]     = { .strict_start_type = IFLA_VXLAN_LOCALBYPASS },
3278 	[IFLA_VXLAN_ID]		= { .type = NLA_U32 },
3279 	[IFLA_VXLAN_GROUP]	= { .len = sizeof_field(struct iphdr, daddr) },
3280 	[IFLA_VXLAN_GROUP6]	= { .len = sizeof(struct in6_addr) },
3281 	[IFLA_VXLAN_LINK]	= { .type = NLA_U32 },
3282 	[IFLA_VXLAN_LOCAL]	= { .len = sizeof_field(struct iphdr, saddr) },
3283 	[IFLA_VXLAN_LOCAL6]	= { .len = sizeof(struct in6_addr) },
3284 	[IFLA_VXLAN_TOS]	= { .type = NLA_U8 },
3285 	[IFLA_VXLAN_TTL]	= { .type = NLA_U8 },
3286 	[IFLA_VXLAN_LABEL]	= { .type = NLA_U32 },
3287 	[IFLA_VXLAN_LEARNING]	= { .type = NLA_U8 },
3288 	[IFLA_VXLAN_AGEING]	= { .type = NLA_U32 },
3289 	[IFLA_VXLAN_LIMIT]	= { .type = NLA_U32 },
3290 	[IFLA_VXLAN_PORT_RANGE] = { .len  = sizeof(struct ifla_vxlan_port_range) },
3291 	[IFLA_VXLAN_PROXY]	= { .type = NLA_U8 },
3292 	[IFLA_VXLAN_RSC]	= { .type = NLA_U8 },
3293 	[IFLA_VXLAN_L2MISS]	= { .type = NLA_U8 },
3294 	[IFLA_VXLAN_L3MISS]	= { .type = NLA_U8 },
3295 	[IFLA_VXLAN_COLLECT_METADATA]	= { .type = NLA_U8 },
3296 	[IFLA_VXLAN_PORT]	= { .type = NLA_U16 },
3297 	[IFLA_VXLAN_UDP_CSUM]	= { .type = NLA_U8 },
3298 	[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]	= { .type = NLA_U8 },
3299 	[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]	= { .type = NLA_U8 },
3300 	[IFLA_VXLAN_REMCSUM_TX]	= { .type = NLA_U8 },
3301 	[IFLA_VXLAN_REMCSUM_RX]	= { .type = NLA_U8 },
3302 	[IFLA_VXLAN_GBP]	= { .type = NLA_FLAG, },
3303 	[IFLA_VXLAN_GPE]	= { .type = NLA_FLAG, },
3304 	[IFLA_VXLAN_REMCSUM_NOPARTIAL]	= { .type = NLA_FLAG },
3305 	[IFLA_VXLAN_TTL_INHERIT]	= { .type = NLA_FLAG },
3306 	[IFLA_VXLAN_DF]		= { .type = NLA_U8 },
3307 	[IFLA_VXLAN_VNIFILTER]	= { .type = NLA_U8 },
3308 	[IFLA_VXLAN_LOCALBYPASS]	= NLA_POLICY_MAX(NLA_U8, 1),
3309 };
3310 
3311 static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[],
3312 			  struct netlink_ext_ack *extack)
3313 {
3314 	if (tb[IFLA_ADDRESS]) {
3315 		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
3316 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3317 					    "Provided link layer address is not Ethernet");
3318 			return -EINVAL;
3319 		}
3320 
3321 		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
3322 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3323 					    "Provided Ethernet address is not unicast");
3324 			return -EADDRNOTAVAIL;
3325 		}
3326 	}
3327 
3328 	if (tb[IFLA_MTU]) {
3329 		u32 mtu = nla_get_u32(tb[IFLA_MTU]);
3330 
3331 		if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU) {
3332 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3333 					    "MTU must be between 68 and 65535");
3334 			return -EINVAL;
3335 		}
3336 	}
3337 
3338 	if (!data) {
3339 		NL_SET_ERR_MSG(extack,
3340 			       "Required attributes not provided to perform the operation");
3341 		return -EINVAL;
3342 	}
3343 
3344 	if (data[IFLA_VXLAN_ID]) {
3345 		u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
3346 
3347 		if (id >= VXLAN_N_VID) {
3348 			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_ID],
3349 					    "VXLAN ID must be lower than 16777216");
3350 			return -ERANGE;
3351 		}
3352 	}
3353 
3354 	if (data[IFLA_VXLAN_PORT_RANGE]) {
3355 		const struct ifla_vxlan_port_range *p
3356 			= nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3357 
3358 		if (ntohs(p->high) < ntohs(p->low)) {
3359 			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_PORT_RANGE],
3360 					    "Invalid source port range");
3361 			return -EINVAL;
3362 		}
3363 	}
3364 
3365 	if (data[IFLA_VXLAN_DF]) {
3366 		enum ifla_vxlan_df df = nla_get_u8(data[IFLA_VXLAN_DF]);
3367 
3368 		if (df < 0 || df > VXLAN_DF_MAX) {
3369 			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_DF],
3370 					    "Invalid DF attribute");
3371 			return -EINVAL;
3372 		}
3373 	}
3374 
3375 	return 0;
3376 }
3377 
3378 static void vxlan_get_drvinfo(struct net_device *netdev,
3379 			      struct ethtool_drvinfo *drvinfo)
3380 {
3381 	strscpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
3382 	strscpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
3383 }
3384 
3385 static int vxlan_get_link_ksettings(struct net_device *dev,
3386 				    struct ethtool_link_ksettings *cmd)
3387 {
3388 	struct vxlan_dev *vxlan = netdev_priv(dev);
3389 	struct vxlan_rdst *dst = &vxlan->default_dst;
3390 	struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
3391 							 dst->remote_ifindex);
3392 
3393 	if (!lowerdev) {
3394 		cmd->base.duplex = DUPLEX_UNKNOWN;
3395 		cmd->base.port = PORT_OTHER;
3396 		cmd->base.speed = SPEED_UNKNOWN;
3397 
3398 		return 0;
3399 	}
3400 
3401 	return __ethtool_get_link_ksettings(lowerdev, cmd);
3402 }
3403 
3404 static const struct ethtool_ops vxlan_ethtool_ops = {
3405 	.get_drvinfo		= vxlan_get_drvinfo,
3406 	.get_link		= ethtool_op_get_link,
3407 	.get_link_ksettings	= vxlan_get_link_ksettings,
3408 };
3409 
3410 static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
3411 					__be16 port, u32 flags, int ifindex)
3412 {
3413 	struct socket *sock;
3414 	struct udp_port_cfg udp_conf;
3415 	int err;
3416 
3417 	memset(&udp_conf, 0, sizeof(udp_conf));
3418 
3419 	if (ipv6) {
3420 		udp_conf.family = AF_INET6;
3421 		udp_conf.use_udp6_rx_checksums =
3422 		    !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
3423 		udp_conf.ipv6_v6only = 1;
3424 	} else {
3425 		udp_conf.family = AF_INET;
3426 	}
3427 
3428 	udp_conf.local_udp_port = port;
3429 	udp_conf.bind_ifindex = ifindex;
3430 
3431 	/* Open UDP socket */
3432 	err = udp_sock_create(net, &udp_conf, &sock);
3433 	if (err < 0)
3434 		return ERR_PTR(err);
3435 
3436 	udp_allow_gso(sock->sk);
3437 	return sock;
3438 }
3439 
3440 /* Create new listen socket if needed */
3441 static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
3442 					      __be16 port, u32 flags,
3443 					      int ifindex)
3444 {
3445 	struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3446 	struct vxlan_sock *vs;
3447 	struct socket *sock;
3448 	unsigned int h;
3449 	struct udp_tunnel_sock_cfg tunnel_cfg;
3450 
3451 	vs = kzalloc(sizeof(*vs), GFP_KERNEL);
3452 	if (!vs)
3453 		return ERR_PTR(-ENOMEM);
3454 
3455 	for (h = 0; h < VNI_HASH_SIZE; ++h)
3456 		INIT_HLIST_HEAD(&vs->vni_list[h]);
3457 
3458 	sock = vxlan_create_sock(net, ipv6, port, flags, ifindex);
3459 	if (IS_ERR(sock)) {
3460 		kfree(vs);
3461 		return ERR_CAST(sock);
3462 	}
3463 
3464 	vs->sock = sock;
3465 	refcount_set(&vs->refcnt, 1);
3466 	vs->flags = (flags & VXLAN_F_RCV_FLAGS);
3467 
3468 	spin_lock(&vn->sock_lock);
3469 	hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
3470 	udp_tunnel_notify_add_rx_port(sock,
3471 				      (vs->flags & VXLAN_F_GPE) ?
3472 				      UDP_TUNNEL_TYPE_VXLAN_GPE :
3473 				      UDP_TUNNEL_TYPE_VXLAN);
3474 	spin_unlock(&vn->sock_lock);
3475 
3476 	/* Mark socket as an encapsulation socket. */
3477 	memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
3478 	tunnel_cfg.sk_user_data = vs;
3479 	tunnel_cfg.encap_type = 1;
3480 	tunnel_cfg.encap_rcv = vxlan_rcv;
3481 	tunnel_cfg.encap_err_lookup = vxlan_err_lookup;
3482 	tunnel_cfg.encap_destroy = NULL;
3483 	if (vs->flags & VXLAN_F_GPE) {
3484 		tunnel_cfg.gro_receive = vxlan_gpe_gro_receive;
3485 		tunnel_cfg.gro_complete = vxlan_gpe_gro_complete;
3486 	} else {
3487 		tunnel_cfg.gro_receive = vxlan_gro_receive;
3488 		tunnel_cfg.gro_complete = vxlan_gro_complete;
3489 	}
3490 
3491 	setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
3492 
3493 	return vs;
3494 }
3495 
3496 static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
3497 {
3498 	struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
3499 	bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
3500 	struct vxlan_sock *vs = NULL;
3501 	struct vxlan_dev_node *node;
3502 	int l3mdev_index = 0;
3503 
3504 	if (vxlan->cfg.remote_ifindex)
3505 		l3mdev_index = l3mdev_master_upper_ifindex_by_index(
3506 			vxlan->net, vxlan->cfg.remote_ifindex);
3507 
3508 	if (!vxlan->cfg.no_share) {
3509 		spin_lock(&vn->sock_lock);
3510 		vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
3511 				     vxlan->cfg.dst_port, vxlan->cfg.flags,
3512 				     l3mdev_index);
3513 		if (vs && !refcount_inc_not_zero(&vs->refcnt)) {
3514 			spin_unlock(&vn->sock_lock);
3515 			return -EBUSY;
3516 		}
3517 		spin_unlock(&vn->sock_lock);
3518 	}
3519 	if (!vs)
3520 		vs = vxlan_socket_create(vxlan->net, ipv6,
3521 					 vxlan->cfg.dst_port, vxlan->cfg.flags,
3522 					 l3mdev_index);
3523 	if (IS_ERR(vs))
3524 		return PTR_ERR(vs);
3525 #if IS_ENABLED(CONFIG_IPV6)
3526 	if (ipv6) {
3527 		rcu_assign_pointer(vxlan->vn6_sock, vs);
3528 		node = &vxlan->hlist6;
3529 	} else
3530 #endif
3531 	{
3532 		rcu_assign_pointer(vxlan->vn4_sock, vs);
3533 		node = &vxlan->hlist4;
3534 	}
3535 
3536 	if (metadata && (vxlan->cfg.flags & VXLAN_F_VNIFILTER))
3537 		vxlan_vs_add_vnigrp(vxlan, vs, ipv6);
3538 	else
3539 		vxlan_vs_add_dev(vs, vxlan, node);
3540 
3541 	return 0;
3542 }
3543 
3544 static int vxlan_sock_add(struct vxlan_dev *vxlan)
3545 {
3546 	bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
3547 	bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata;
3548 	bool ipv4 = !ipv6 || metadata;
3549 	int ret = 0;
3550 
3551 	RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
3552 #if IS_ENABLED(CONFIG_IPV6)
3553 	RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
3554 	if (ipv6) {
3555 		ret = __vxlan_sock_add(vxlan, true);
3556 		if (ret < 0 && ret != -EAFNOSUPPORT)
3557 			ipv4 = false;
3558 	}
3559 #endif
3560 	if (ipv4)
3561 		ret = __vxlan_sock_add(vxlan, false);
3562 	if (ret < 0)
3563 		vxlan_sock_release(vxlan);
3564 	return ret;
3565 }
3566 
3567 int vxlan_vni_in_use(struct net *src_net, struct vxlan_dev *vxlan,
3568 		     struct vxlan_config *conf, __be32 vni)
3569 {
3570 	struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
3571 	struct vxlan_dev *tmp;
3572 
3573 	list_for_each_entry(tmp, &vn->vxlan_list, next) {
3574 		if (tmp == vxlan)
3575 			continue;
3576 		if (tmp->cfg.flags & VXLAN_F_VNIFILTER) {
3577 			if (!vxlan_vnifilter_lookup(tmp, vni))
3578 				continue;
3579 		} else if (tmp->cfg.vni != vni) {
3580 			continue;
3581 		}
3582 		if (tmp->cfg.dst_port != conf->dst_port)
3583 			continue;
3584 		if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) !=
3585 		    (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)))
3586 			continue;
3587 
3588 		if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) &&
3589 		    tmp->cfg.remote_ifindex != conf->remote_ifindex)
3590 			continue;
3591 
3592 		return -EEXIST;
3593 	}
3594 
3595 	return 0;
3596 }
3597 
3598 static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf,
3599 				 struct net_device **lower,
3600 				 struct vxlan_dev *old,
3601 				 struct netlink_ext_ack *extack)
3602 {
3603 	bool use_ipv6 = false;
3604 
3605 	if (conf->flags & VXLAN_F_GPE) {
3606 		/* For now, allow GPE only together with
3607 		 * COLLECT_METADATA. This can be relaxed later; in such
3608 		 * case, the other side of the PtP link will have to be
3609 		 * provided.
3610 		 */
3611 		if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
3612 		    !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
3613 			NL_SET_ERR_MSG(extack,
3614 				       "VXLAN GPE does not support this combination of attributes");
3615 			return -EINVAL;
3616 		}
3617 	}
3618 
3619 	if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) {
3620 		/* Unless IPv6 is explicitly requested, assume IPv4 */
3621 		conf->remote_ip.sa.sa_family = AF_INET;
3622 		conf->saddr.sa.sa_family = AF_INET;
3623 	} else if (!conf->remote_ip.sa.sa_family) {
3624 		conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family;
3625 	} else if (!conf->saddr.sa.sa_family) {
3626 		conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family;
3627 	}
3628 
3629 	if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family) {
3630 		NL_SET_ERR_MSG(extack,
3631 			       "Local and remote address must be from the same family");
3632 		return -EINVAL;
3633 	}
3634 
3635 	if (vxlan_addr_multicast(&conf->saddr)) {
3636 		NL_SET_ERR_MSG(extack, "Local address cannot be multicast");
3637 		return -EINVAL;
3638 	}
3639 
3640 	if (conf->saddr.sa.sa_family == AF_INET6) {
3641 		if (!IS_ENABLED(CONFIG_IPV6)) {
3642 			NL_SET_ERR_MSG(extack,
3643 				       "IPv6 support not enabled in the kernel");
3644 			return -EPFNOSUPPORT;
3645 		}
3646 		use_ipv6 = true;
3647 		conf->flags |= VXLAN_F_IPV6;
3648 
3649 		if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) {
3650 			int local_type =
3651 				ipv6_addr_type(&conf->saddr.sin6.sin6_addr);
3652 			int remote_type =
3653 				ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr);
3654 
3655 			if (local_type & IPV6_ADDR_LINKLOCAL) {
3656 				if (!(remote_type & IPV6_ADDR_LINKLOCAL) &&
3657 				    (remote_type != IPV6_ADDR_ANY)) {
3658 					NL_SET_ERR_MSG(extack,
3659 						       "Invalid combination of local and remote address scopes");
3660 					return -EINVAL;
3661 				}
3662 
3663 				conf->flags |= VXLAN_F_IPV6_LINKLOCAL;
3664 			} else {
3665 				if (remote_type ==
3666 				    (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL)) {
3667 					NL_SET_ERR_MSG(extack,
3668 						       "Invalid combination of local and remote address scopes");
3669 					return -EINVAL;
3670 				}
3671 
3672 				conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL;
3673 			}
3674 		}
3675 	}
3676 
3677 	if (conf->label && !use_ipv6) {
3678 		NL_SET_ERR_MSG(extack,
3679 			       "Label attribute only applies to IPv6 VXLAN devices");
3680 		return -EINVAL;
3681 	}
3682 
3683 	if (conf->remote_ifindex) {
3684 		struct net_device *lowerdev;
3685 
3686 		lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
3687 		if (!lowerdev) {
3688 			NL_SET_ERR_MSG(extack,
3689 				       "Invalid local interface, device not found");
3690 			return -ENODEV;
3691 		}
3692 
3693 #if IS_ENABLED(CONFIG_IPV6)
3694 		if (use_ipv6) {
3695 			struct inet6_dev *idev = __in6_dev_get(lowerdev);
3696 
3697 			if (idev && idev->cnf.disable_ipv6) {
3698 				NL_SET_ERR_MSG(extack,
3699 					       "IPv6 support disabled by administrator");
3700 				return -EPERM;
3701 			}
3702 		}
3703 #endif
3704 
3705 		*lower = lowerdev;
3706 	} else {
3707 		if (vxlan_addr_multicast(&conf->remote_ip)) {
3708 			NL_SET_ERR_MSG(extack,
3709 				       "Local interface required for multicast remote destination");
3710 
3711 			return -EINVAL;
3712 		}
3713 
3714 #if IS_ENABLED(CONFIG_IPV6)
3715 		if (conf->flags & VXLAN_F_IPV6_LINKLOCAL) {
3716 			NL_SET_ERR_MSG(extack,
3717 				       "Local interface required for link-local local/remote addresses");
3718 			return -EINVAL;
3719 		}
3720 #endif
3721 
3722 		*lower = NULL;
3723 	}
3724 
3725 	if (!conf->dst_port) {
3726 		if (conf->flags & VXLAN_F_GPE)
3727 			conf->dst_port = htons(IANA_VXLAN_GPE_UDP_PORT);
3728 		else
3729 			conf->dst_port = htons(vxlan_port);
3730 	}
3731 
3732 	if (!conf->age_interval)
3733 		conf->age_interval = FDB_AGE_DEFAULT;
3734 
3735 	if (vxlan_vni_in_use(src_net, old, conf, conf->vni)) {
3736 		NL_SET_ERR_MSG(extack,
3737 			       "A VXLAN device with the specified VNI already exists");
3738 		return -EEXIST;
3739 	}
3740 
3741 	return 0;
3742 }
3743 
3744 static void vxlan_config_apply(struct net_device *dev,
3745 			       struct vxlan_config *conf,
3746 			       struct net_device *lowerdev,
3747 			       struct net *src_net,
3748 			       bool changelink)
3749 {
3750 	struct vxlan_dev *vxlan = netdev_priv(dev);
3751 	struct vxlan_rdst *dst = &vxlan->default_dst;
3752 	unsigned short needed_headroom = ETH_HLEN;
3753 	int max_mtu = ETH_MAX_MTU;
3754 	u32 flags = conf->flags;
3755 
3756 	if (!changelink) {
3757 		if (flags & VXLAN_F_GPE)
3758 			vxlan_raw_setup(dev);
3759 		else
3760 			vxlan_ether_setup(dev);
3761 
3762 		if (conf->mtu)
3763 			dev->mtu = conf->mtu;
3764 
3765 		vxlan->net = src_net;
3766 	}
3767 
3768 	dst->remote_vni = conf->vni;
3769 
3770 	memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
3771 
3772 	if (lowerdev) {
3773 		dst->remote_ifindex = conf->remote_ifindex;
3774 
3775 		netif_inherit_tso_max(dev, lowerdev);
3776 
3777 		needed_headroom = lowerdev->hard_header_len;
3778 		needed_headroom += lowerdev->needed_headroom;
3779 
3780 		dev->needed_tailroom = lowerdev->needed_tailroom;
3781 
3782 		max_mtu = lowerdev->mtu - vxlan_headroom(flags);
3783 		if (max_mtu < ETH_MIN_MTU)
3784 			max_mtu = ETH_MIN_MTU;
3785 
3786 		if (!changelink && !conf->mtu)
3787 			dev->mtu = max_mtu;
3788 	}
3789 
3790 	if (dev->mtu > max_mtu)
3791 		dev->mtu = max_mtu;
3792 
3793 	if (flags & VXLAN_F_COLLECT_METADATA)
3794 		flags |= VXLAN_F_IPV6;
3795 	needed_headroom += vxlan_headroom(flags);
3796 	dev->needed_headroom = needed_headroom;
3797 
3798 	memcpy(&vxlan->cfg, conf, sizeof(*conf));
3799 }
3800 
3801 static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
3802 			       struct vxlan_config *conf, bool changelink,
3803 			       struct netlink_ext_ack *extack)
3804 {
3805 	struct vxlan_dev *vxlan = netdev_priv(dev);
3806 	struct net_device *lowerdev;
3807 	int ret;
3808 
3809 	ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan, extack);
3810 	if (ret)
3811 		return ret;
3812 
3813 	vxlan_config_apply(dev, conf, lowerdev, src_net, changelink);
3814 
3815 	return 0;
3816 }
3817 
3818 static int __vxlan_dev_create(struct net *net, struct net_device *dev,
3819 			      struct vxlan_config *conf,
3820 			      struct netlink_ext_ack *extack)
3821 {
3822 	struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3823 	struct vxlan_dev *vxlan = netdev_priv(dev);
3824 	struct net_device *remote_dev = NULL;
3825 	struct vxlan_fdb *f = NULL;
3826 	bool unregister = false;
3827 	struct vxlan_rdst *dst;
3828 	int err;
3829 
3830 	dst = &vxlan->default_dst;
3831 	err = vxlan_dev_configure(net, dev, conf, false, extack);
3832 	if (err)
3833 		return err;
3834 
3835 	dev->ethtool_ops = &vxlan_ethtool_ops;
3836 
3837 	/* create an fdb entry for a valid default destination */
3838 	if (!vxlan_addr_any(&dst->remote_ip)) {
3839 		err = vxlan_fdb_create(vxlan, all_zeros_mac,
3840 				       &dst->remote_ip,
3841 				       NUD_REACHABLE | NUD_PERMANENT,
3842 				       vxlan->cfg.dst_port,
3843 				       dst->remote_vni,
3844 				       dst->remote_vni,
3845 				       dst->remote_ifindex,
3846 				       NTF_SELF, 0, &f, extack);
3847 		if (err)
3848 			return err;
3849 	}
3850 
3851 	err = register_netdevice(dev);
3852 	if (err)
3853 		goto errout;
3854 	unregister = true;
3855 
3856 	if (dst->remote_ifindex) {
3857 		remote_dev = __dev_get_by_index(net, dst->remote_ifindex);
3858 		if (!remote_dev) {
3859 			err = -ENODEV;
3860 			goto errout;
3861 		}
3862 
3863 		err = netdev_upper_dev_link(remote_dev, dev, extack);
3864 		if (err)
3865 			goto errout;
3866 	}
3867 
3868 	err = rtnl_configure_link(dev, NULL, 0, NULL);
3869 	if (err < 0)
3870 		goto unlink;
3871 
3872 	if (f) {
3873 		vxlan_fdb_insert(vxlan, all_zeros_mac, dst->remote_vni, f);
3874 
3875 		/* notify default fdb entry */
3876 		err = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f),
3877 				       RTM_NEWNEIGH, true, extack);
3878 		if (err) {
3879 			vxlan_fdb_destroy(vxlan, f, false, false);
3880 			if (remote_dev)
3881 				netdev_upper_dev_unlink(remote_dev, dev);
3882 			goto unregister;
3883 		}
3884 	}
3885 
3886 	list_add(&vxlan->next, &vn->vxlan_list);
3887 	if (remote_dev)
3888 		dst->remote_dev = remote_dev;
3889 	return 0;
3890 unlink:
3891 	if (remote_dev)
3892 		netdev_upper_dev_unlink(remote_dev, dev);
3893 errout:
3894 	/* unregister_netdevice() destroys the default FDB entry with deletion
3895 	 * notification. But the addition notification was not sent yet, so
3896 	 * destroy the entry by hand here.
3897 	 */
3898 	if (f)
3899 		__vxlan_fdb_free(f);
3900 unregister:
3901 	if (unregister)
3902 		unregister_netdevice(dev);
3903 	return err;
3904 }
3905 
3906 /* Set/clear flags based on attribute */
3907 static int vxlan_nl2flag(struct vxlan_config *conf, struct nlattr *tb[],
3908 			  int attrtype, unsigned long mask, bool changelink,
3909 			  bool changelink_supported,
3910 			  struct netlink_ext_ack *extack)
3911 {
3912 	unsigned long flags;
3913 
3914 	if (!tb[attrtype])
3915 		return 0;
3916 
3917 	if (changelink && !changelink_supported) {
3918 		vxlan_flag_attr_error(attrtype, extack);
3919 		return -EOPNOTSUPP;
3920 	}
3921 
3922 	if (vxlan_policy[attrtype].type == NLA_FLAG)
3923 		flags = conf->flags | mask;
3924 	else if (nla_get_u8(tb[attrtype]))
3925 		flags = conf->flags | mask;
3926 	else
3927 		flags = conf->flags & ~mask;
3928 
3929 	conf->flags = flags;
3930 
3931 	return 0;
3932 }
3933 
3934 static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3935 			 struct net_device *dev, struct vxlan_config *conf,
3936 			 bool changelink, struct netlink_ext_ack *extack)
3937 {
3938 	struct vxlan_dev *vxlan = netdev_priv(dev);
3939 	int err = 0;
3940 
3941 	memset(conf, 0, sizeof(*conf));
3942 
3943 	/* if changelink operation, start with old existing cfg */
3944 	if (changelink)
3945 		memcpy(conf, &vxlan->cfg, sizeof(*conf));
3946 
3947 	if (data[IFLA_VXLAN_ID]) {
3948 		__be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3949 
3950 		if (changelink && (vni != conf->vni)) {
3951 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID], "Cannot change VNI");
3952 			return -EOPNOTSUPP;
3953 		}
3954 		conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3955 	}
3956 
3957 	if (data[IFLA_VXLAN_GROUP]) {
3958 		if (changelink && (conf->remote_ip.sa.sa_family != AF_INET)) {
3959 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP], "New group address family does not match old group");
3960 			return -EOPNOTSUPP;
3961 		}
3962 
3963 		conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
3964 		conf->remote_ip.sa.sa_family = AF_INET;
3965 	} else if (data[IFLA_VXLAN_GROUP6]) {
3966 		if (!IS_ENABLED(CONFIG_IPV6)) {
3967 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "IPv6 support not enabled in the kernel");
3968 			return -EPFNOSUPPORT;
3969 		}
3970 
3971 		if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6)) {
3972 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "New group address family does not match old group");
3973 			return -EOPNOTSUPP;
3974 		}
3975 
3976 		conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3977 		conf->remote_ip.sa.sa_family = AF_INET6;
3978 	}
3979 
3980 	if (data[IFLA_VXLAN_LOCAL]) {
3981 		if (changelink && (conf->saddr.sa.sa_family != AF_INET)) {
3982 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL], "New local address family does not match old");
3983 			return -EOPNOTSUPP;
3984 		}
3985 
3986 		conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3987 		conf->saddr.sa.sa_family = AF_INET;
3988 	} else if (data[IFLA_VXLAN_LOCAL6]) {
3989 		if (!IS_ENABLED(CONFIG_IPV6)) {
3990 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "IPv6 support not enabled in the kernel");
3991 			return -EPFNOSUPPORT;
3992 		}
3993 
3994 		if (changelink && (conf->saddr.sa.sa_family != AF_INET6)) {
3995 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "New local address family does not match old");
3996 			return -EOPNOTSUPP;
3997 		}
3998 
3999 		/* TODO: respect scope id */
4000 		conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
4001 		conf->saddr.sa.sa_family = AF_INET6;
4002 	}
4003 
4004 	if (data[IFLA_VXLAN_LINK])
4005 		conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
4006 
4007 	if (data[IFLA_VXLAN_TOS])
4008 		conf->tos  = nla_get_u8(data[IFLA_VXLAN_TOS]);
4009 
4010 	if (data[IFLA_VXLAN_TTL])
4011 		conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
4012 
4013 	if (data[IFLA_VXLAN_TTL_INHERIT]) {
4014 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_TTL_INHERIT,
4015 				    VXLAN_F_TTL_INHERIT, changelink, false,
4016 				    extack);
4017 		if (err)
4018 			return err;
4019 
4020 	}
4021 
4022 	if (data[IFLA_VXLAN_LABEL])
4023 		conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
4024 			     IPV6_FLOWLABEL_MASK;
4025 
4026 	if (data[IFLA_VXLAN_LEARNING]) {
4027 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LEARNING,
4028 				    VXLAN_F_LEARN, changelink, true,
4029 				    extack);
4030 		if (err)
4031 			return err;
4032 	} else if (!changelink) {
4033 		/* default to learn on a new device */
4034 		conf->flags |= VXLAN_F_LEARN;
4035 	}
4036 
4037 	if (data[IFLA_VXLAN_AGEING])
4038 		conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
4039 
4040 	if (data[IFLA_VXLAN_PROXY]) {
4041 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_PROXY,
4042 				    VXLAN_F_PROXY, changelink, false,
4043 				    extack);
4044 		if (err)
4045 			return err;
4046 	}
4047 
4048 	if (data[IFLA_VXLAN_RSC]) {
4049 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_RSC,
4050 				    VXLAN_F_RSC, changelink, false,
4051 				    extack);
4052 		if (err)
4053 			return err;
4054 	}
4055 
4056 	if (data[IFLA_VXLAN_L2MISS]) {
4057 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L2MISS,
4058 				    VXLAN_F_L2MISS, changelink, false,
4059 				    extack);
4060 		if (err)
4061 			return err;
4062 	}
4063 
4064 	if (data[IFLA_VXLAN_L3MISS]) {
4065 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L3MISS,
4066 				    VXLAN_F_L3MISS, changelink, false,
4067 				    extack);
4068 		if (err)
4069 			return err;
4070 	}
4071 
4072 	if (data[IFLA_VXLAN_LIMIT]) {
4073 		if (changelink) {
4074 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LIMIT],
4075 					    "Cannot change limit");
4076 			return -EOPNOTSUPP;
4077 		}
4078 		conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
4079 	}
4080 
4081 	if (data[IFLA_VXLAN_COLLECT_METADATA]) {
4082 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_COLLECT_METADATA,
4083 				    VXLAN_F_COLLECT_METADATA, changelink, false,
4084 				    extack);
4085 		if (err)
4086 			return err;
4087 	}
4088 
4089 	if (data[IFLA_VXLAN_PORT_RANGE]) {
4090 		if (!changelink) {
4091 			const struct ifla_vxlan_port_range *p
4092 				= nla_data(data[IFLA_VXLAN_PORT_RANGE]);
4093 			conf->port_min = ntohs(p->low);
4094 			conf->port_max = ntohs(p->high);
4095 		} else {
4096 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
4097 					    "Cannot change port range");
4098 			return -EOPNOTSUPP;
4099 		}
4100 	}
4101 
4102 	if (data[IFLA_VXLAN_PORT]) {
4103 		if (changelink) {
4104 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT],
4105 					    "Cannot change port");
4106 			return -EOPNOTSUPP;
4107 		}
4108 		conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
4109 	}
4110 
4111 	if (data[IFLA_VXLAN_UDP_CSUM]) {
4112 		if (changelink) {
4113 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_UDP_CSUM],
4114 					    "Cannot change UDP_CSUM flag");
4115 			return -EOPNOTSUPP;
4116 		}
4117 		if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
4118 			conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
4119 	}
4120 
4121 	if (data[IFLA_VXLAN_LOCALBYPASS]) {
4122 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LOCALBYPASS,
4123 				    VXLAN_F_LOCALBYPASS, changelink,
4124 				    true, extack);
4125 		if (err)
4126 			return err;
4127 	} else if (!changelink) {
4128 		/* default to local bypass on a new device */
4129 		conf->flags |= VXLAN_F_LOCALBYPASS;
4130 	}
4131 
4132 	if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
4133 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
4134 				    VXLAN_F_UDP_ZERO_CSUM6_TX, changelink,
4135 				    false, extack);
4136 		if (err)
4137 			return err;
4138 	}
4139 
4140 	if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
4141 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
4142 				    VXLAN_F_UDP_ZERO_CSUM6_RX, changelink,
4143 				    false, extack);
4144 		if (err)
4145 			return err;
4146 	}
4147 
4148 	if (data[IFLA_VXLAN_REMCSUM_TX]) {
4149 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_TX,
4150 				    VXLAN_F_REMCSUM_TX, changelink, false,
4151 				    extack);
4152 		if (err)
4153 			return err;
4154 	}
4155 
4156 	if (data[IFLA_VXLAN_REMCSUM_RX]) {
4157 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_RX,
4158 				    VXLAN_F_REMCSUM_RX, changelink, false,
4159 				    extack);
4160 		if (err)
4161 			return err;
4162 	}
4163 
4164 	if (data[IFLA_VXLAN_GBP]) {
4165 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GBP,
4166 				    VXLAN_F_GBP, changelink, false, extack);
4167 		if (err)
4168 			return err;
4169 	}
4170 
4171 	if (data[IFLA_VXLAN_GPE]) {
4172 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GPE,
4173 				    VXLAN_F_GPE, changelink, false,
4174 				    extack);
4175 		if (err)
4176 			return err;
4177 	}
4178 
4179 	if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
4180 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_NOPARTIAL,
4181 				    VXLAN_F_REMCSUM_NOPARTIAL, changelink,
4182 				    false, extack);
4183 		if (err)
4184 			return err;
4185 	}
4186 
4187 	if (tb[IFLA_MTU]) {
4188 		if (changelink) {
4189 			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
4190 					    "Cannot change mtu");
4191 			return -EOPNOTSUPP;
4192 		}
4193 		conf->mtu = nla_get_u32(tb[IFLA_MTU]);
4194 	}
4195 
4196 	if (data[IFLA_VXLAN_DF])
4197 		conf->df = nla_get_u8(data[IFLA_VXLAN_DF]);
4198 
4199 	if (data[IFLA_VXLAN_VNIFILTER]) {
4200 		err = vxlan_nl2flag(conf, data, IFLA_VXLAN_VNIFILTER,
4201 				    VXLAN_F_VNIFILTER, changelink, false,
4202 				    extack);
4203 		if (err)
4204 			return err;
4205 
4206 		if ((conf->flags & VXLAN_F_VNIFILTER) &&
4207 		    !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
4208 			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_VXLAN_VNIFILTER],
4209 					    "vxlan vnifilter only valid in collect metadata mode");
4210 			return -EINVAL;
4211 		}
4212 	}
4213 
4214 	return 0;
4215 }
4216 
4217 static int vxlan_newlink(struct net *src_net, struct net_device *dev,
4218 			 struct nlattr *tb[], struct nlattr *data[],
4219 			 struct netlink_ext_ack *extack)
4220 {
4221 	struct vxlan_config conf;
4222 	int err;
4223 
4224 	err = vxlan_nl2conf(tb, data, dev, &conf, false, extack);
4225 	if (err)
4226 		return err;
4227 
4228 	return __vxlan_dev_create(src_net, dev, &conf, extack);
4229 }
4230 
4231 static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
4232 			    struct nlattr *data[],
4233 			    struct netlink_ext_ack *extack)
4234 {
4235 	struct vxlan_dev *vxlan = netdev_priv(dev);
4236 	struct net_device *lowerdev;
4237 	struct vxlan_config conf;
4238 	struct vxlan_rdst *dst;
4239 	int err;
4240 
4241 	dst = &vxlan->default_dst;
4242 	err = vxlan_nl2conf(tb, data, dev, &conf, true, extack);
4243 	if (err)
4244 		return err;
4245 
4246 	err = vxlan_config_validate(vxlan->net, &conf, &lowerdev,
4247 				    vxlan, extack);
4248 	if (err)
4249 		return err;
4250 
4251 	if (dst->remote_dev == lowerdev)
4252 		lowerdev = NULL;
4253 
4254 	err = netdev_adjacent_change_prepare(dst->remote_dev, lowerdev, dev,
4255 					     extack);
4256 	if (err)
4257 		return err;
4258 
4259 	/* handle default dst entry */
4260 	if (!vxlan_addr_equal(&conf.remote_ip, &dst->remote_ip)) {
4261 		u32 hash_index = fdb_head_index(vxlan, all_zeros_mac, conf.vni);
4262 
4263 		spin_lock_bh(&vxlan->hash_lock[hash_index]);
4264 		if (!vxlan_addr_any(&conf.remote_ip)) {
4265 			err = vxlan_fdb_update(vxlan, all_zeros_mac,
4266 					       &conf.remote_ip,
4267 					       NUD_REACHABLE | NUD_PERMANENT,
4268 					       NLM_F_APPEND | NLM_F_CREATE,
4269 					       vxlan->cfg.dst_port,
4270 					       conf.vni, conf.vni,
4271 					       conf.remote_ifindex,
4272 					       NTF_SELF, 0, true, extack);
4273 			if (err) {
4274 				spin_unlock_bh(&vxlan->hash_lock[hash_index]);
4275 				netdev_adjacent_change_abort(dst->remote_dev,
4276 							     lowerdev, dev);
4277 				return err;
4278 			}
4279 		}
4280 		if (!vxlan_addr_any(&dst->remote_ip))
4281 			__vxlan_fdb_delete(vxlan, all_zeros_mac,
4282 					   dst->remote_ip,
4283 					   vxlan->cfg.dst_port,
4284 					   dst->remote_vni,
4285 					   dst->remote_vni,
4286 					   dst->remote_ifindex,
4287 					   true);
4288 		spin_unlock_bh(&vxlan->hash_lock[hash_index]);
4289 
4290 		/* If vni filtering device, also update fdb entries of
4291 		 * all vnis that were using default remote ip
4292 		 */
4293 		if (vxlan->cfg.flags & VXLAN_F_VNIFILTER) {
4294 			err = vxlan_vnilist_update_group(vxlan, &dst->remote_ip,
4295 							 &conf.remote_ip, extack);
4296 			if (err) {
4297 				netdev_adjacent_change_abort(dst->remote_dev,
4298 							     lowerdev, dev);
4299 				return err;
4300 			}
4301 		}
4302 	}
4303 
4304 	if (conf.age_interval != vxlan->cfg.age_interval)
4305 		mod_timer(&vxlan->age_timer, jiffies);
4306 
4307 	netdev_adjacent_change_commit(dst->remote_dev, lowerdev, dev);
4308 	if (lowerdev && lowerdev != dst->remote_dev)
4309 		dst->remote_dev = lowerdev;
4310 	vxlan_config_apply(dev, &conf, lowerdev, vxlan->net, true);
4311 	return 0;
4312 }
4313 
4314 static void vxlan_dellink(struct net_device *dev, struct list_head *head)
4315 {
4316 	struct vxlan_dev *vxlan = netdev_priv(dev);
4317 
4318 	vxlan_flush(vxlan, true);
4319 
4320 	list_del(&vxlan->next);
4321 	unregister_netdevice_queue(dev, head);
4322 	if (vxlan->default_dst.remote_dev)
4323 		netdev_upper_dev_unlink(vxlan->default_dst.remote_dev, dev);
4324 }
4325 
4326 static size_t vxlan_get_size(const struct net_device *dev)
4327 {
4328 
4329 	return nla_total_size(sizeof(__u32)) +	/* IFLA_VXLAN_ID */
4330 		nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
4331 		nla_total_size(sizeof(__u32)) +	/* IFLA_VXLAN_LINK */
4332 		nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
4333 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_TTL */
4334 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_TTL_INHERIT */
4335 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_TOS */
4336 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_DF */
4337 		nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
4338 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_LEARNING */
4339 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_PROXY */
4340 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_RSC */
4341 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_L2MISS */
4342 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_L3MISS */
4343 		nla_total_size(sizeof(__u8)) +	/* IFLA_VXLAN_COLLECT_METADATA */
4344 		nla_total_size(sizeof(__u32)) +	/* IFLA_VXLAN_AGEING */
4345 		nla_total_size(sizeof(__u32)) +	/* IFLA_VXLAN_LIMIT */
4346 		nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
4347 		nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
4348 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
4349 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
4350 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
4351 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
4352 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
4353 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LOCALBYPASS */
4354 		nla_total_size(0) + /* IFLA_VXLAN_GBP */
4355 		nla_total_size(0) + /* IFLA_VXLAN_GPE */
4356 		nla_total_size(0) + /* IFLA_VXLAN_REMCSUM_NOPARTIAL */
4357 		nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_VNIFILTER */
4358 		0;
4359 }
4360 
4361 static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
4362 {
4363 	const struct vxlan_dev *vxlan = netdev_priv(dev);
4364 	const struct vxlan_rdst *dst = &vxlan->default_dst;
4365 	struct ifla_vxlan_port_range ports = {
4366 		.low =  htons(vxlan->cfg.port_min),
4367 		.high = htons(vxlan->cfg.port_max),
4368 	};
4369 
4370 	if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
4371 		goto nla_put_failure;
4372 
4373 	if (!vxlan_addr_any(&dst->remote_ip)) {
4374 		if (dst->remote_ip.sa.sa_family == AF_INET) {
4375 			if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
4376 					    dst->remote_ip.sin.sin_addr.s_addr))
4377 				goto nla_put_failure;
4378 #if IS_ENABLED(CONFIG_IPV6)
4379 		} else {
4380 			if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
4381 					     &dst->remote_ip.sin6.sin6_addr))
4382 				goto nla_put_failure;
4383 #endif
4384 		}
4385 	}
4386 
4387 	if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
4388 		goto nla_put_failure;
4389 
4390 	if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
4391 		if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
4392 			if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
4393 					    vxlan->cfg.saddr.sin.sin_addr.s_addr))
4394 				goto nla_put_failure;
4395 #if IS_ENABLED(CONFIG_IPV6)
4396 		} else {
4397 			if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
4398 					     &vxlan->cfg.saddr.sin6.sin6_addr))
4399 				goto nla_put_failure;
4400 #endif
4401 		}
4402 	}
4403 
4404 	if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
4405 	    nla_put_u8(skb, IFLA_VXLAN_TTL_INHERIT,
4406 		       !!(vxlan->cfg.flags & VXLAN_F_TTL_INHERIT)) ||
4407 	    nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
4408 	    nla_put_u8(skb, IFLA_VXLAN_DF, vxlan->cfg.df) ||
4409 	    nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
4410 	    nla_put_u8(skb, IFLA_VXLAN_LEARNING,
4411 		       !!(vxlan->cfg.flags & VXLAN_F_LEARN)) ||
4412 	    nla_put_u8(skb, IFLA_VXLAN_PROXY,
4413 		       !!(vxlan->cfg.flags & VXLAN_F_PROXY)) ||
4414 	    nla_put_u8(skb, IFLA_VXLAN_RSC,
4415 		       !!(vxlan->cfg.flags & VXLAN_F_RSC)) ||
4416 	    nla_put_u8(skb, IFLA_VXLAN_L2MISS,
4417 		       !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) ||
4418 	    nla_put_u8(skb, IFLA_VXLAN_L3MISS,
4419 		       !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) ||
4420 	    nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
4421 		       !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) ||
4422 	    nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
4423 	    nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
4424 	    nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
4425 	    nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
4426 		       !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
4427 	    nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
4428 		       !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
4429 	    nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
4430 		       !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
4431 	    nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
4432 		       !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) ||
4433 	    nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
4434 		       !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)) ||
4435 	    nla_put_u8(skb, IFLA_VXLAN_LOCALBYPASS,
4436 		       !!(vxlan->cfg.flags & VXLAN_F_LOCALBYPASS)))
4437 		goto nla_put_failure;
4438 
4439 	if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
4440 		goto nla_put_failure;
4441 
4442 	if (vxlan->cfg.flags & VXLAN_F_GBP &&
4443 	    nla_put_flag(skb, IFLA_VXLAN_GBP))
4444 		goto nla_put_failure;
4445 
4446 	if (vxlan->cfg.flags & VXLAN_F_GPE &&
4447 	    nla_put_flag(skb, IFLA_VXLAN_GPE))
4448 		goto nla_put_failure;
4449 
4450 	if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL &&
4451 	    nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
4452 		goto nla_put_failure;
4453 
4454 	if (vxlan->cfg.flags & VXLAN_F_VNIFILTER &&
4455 	    nla_put_u8(skb, IFLA_VXLAN_VNIFILTER,
4456 		       !!(vxlan->cfg.flags & VXLAN_F_VNIFILTER)))
4457 		goto nla_put_failure;
4458 
4459 	return 0;
4460 
4461 nla_put_failure:
4462 	return -EMSGSIZE;
4463 }
4464 
4465 static struct net *vxlan_get_link_net(const struct net_device *dev)
4466 {
4467 	struct vxlan_dev *vxlan = netdev_priv(dev);
4468 
4469 	return vxlan->net;
4470 }
4471 
4472 static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
4473 	.kind		= "vxlan",
4474 	.maxtype	= IFLA_VXLAN_MAX,
4475 	.policy		= vxlan_policy,
4476 	.priv_size	= sizeof(struct vxlan_dev),
4477 	.setup		= vxlan_setup,
4478 	.validate	= vxlan_validate,
4479 	.newlink	= vxlan_newlink,
4480 	.changelink	= vxlan_changelink,
4481 	.dellink	= vxlan_dellink,
4482 	.get_size	= vxlan_get_size,
4483 	.fill_info	= vxlan_fill_info,
4484 	.get_link_net	= vxlan_get_link_net,
4485 };
4486 
4487 struct net_device *vxlan_dev_create(struct net *net, const char *name,
4488 				    u8 name_assign_type,
4489 				    struct vxlan_config *conf)
4490 {
4491 	struct nlattr *tb[IFLA_MAX + 1];
4492 	struct net_device *dev;
4493 	int err;
4494 
4495 	memset(&tb, 0, sizeof(tb));
4496 
4497 	dev = rtnl_create_link(net, name, name_assign_type,
4498 			       &vxlan_link_ops, tb, NULL);
4499 	if (IS_ERR(dev))
4500 		return dev;
4501 
4502 	err = __vxlan_dev_create(net, dev, conf, NULL);
4503 	if (err < 0) {
4504 		free_netdev(dev);
4505 		return ERR_PTR(err);
4506 	}
4507 
4508 	err = rtnl_configure_link(dev, NULL, 0, NULL);
4509 	if (err < 0) {
4510 		LIST_HEAD(list_kill);
4511 
4512 		vxlan_dellink(dev, &list_kill);
4513 		unregister_netdevice_many(&list_kill);
4514 		return ERR_PTR(err);
4515 	}
4516 
4517 	return dev;
4518 }
4519 EXPORT_SYMBOL_GPL(vxlan_dev_create);
4520 
4521 static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
4522 					     struct net_device *dev)
4523 {
4524 	struct vxlan_dev *vxlan, *next;
4525 	LIST_HEAD(list_kill);
4526 
4527 	list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4528 		struct vxlan_rdst *dst = &vxlan->default_dst;
4529 
4530 		/* In case we created vxlan device with carrier
4531 		 * and we loose the carrier due to module unload
4532 		 * we also need to remove vxlan device. In other
4533 		 * cases, it's not necessary and remote_ifindex
4534 		 * is 0 here, so no matches.
4535 		 */
4536 		if (dst->remote_ifindex == dev->ifindex)
4537 			vxlan_dellink(vxlan->dev, &list_kill);
4538 	}
4539 
4540 	unregister_netdevice_many(&list_kill);
4541 }
4542 
4543 static int vxlan_netdevice_event(struct notifier_block *unused,
4544 				 unsigned long event, void *ptr)
4545 {
4546 	struct net_device *dev = netdev_notifier_info_to_dev(ptr);
4547 	struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
4548 
4549 	if (event == NETDEV_UNREGISTER)
4550 		vxlan_handle_lowerdev_unregister(vn, dev);
4551 	else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO)
4552 		vxlan_offload_rx_ports(dev, true);
4553 	else if (event == NETDEV_UDP_TUNNEL_DROP_INFO)
4554 		vxlan_offload_rx_ports(dev, false);
4555 
4556 	return NOTIFY_DONE;
4557 }
4558 
4559 static struct notifier_block vxlan_notifier_block __read_mostly = {
4560 	.notifier_call = vxlan_netdevice_event,
4561 };
4562 
4563 static void
4564 vxlan_fdb_offloaded_set(struct net_device *dev,
4565 			struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4566 {
4567 	struct vxlan_dev *vxlan = netdev_priv(dev);
4568 	struct vxlan_rdst *rdst;
4569 	struct vxlan_fdb *f;
4570 	u32 hash_index;
4571 
4572 	hash_index = fdb_head_index(vxlan, fdb_info->eth_addr, fdb_info->vni);
4573 
4574 	spin_lock_bh(&vxlan->hash_lock[hash_index]);
4575 
4576 	f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4577 	if (!f)
4578 		goto out;
4579 
4580 	rdst = vxlan_fdb_find_rdst(f, &fdb_info->remote_ip,
4581 				   fdb_info->remote_port,
4582 				   fdb_info->remote_vni,
4583 				   fdb_info->remote_ifindex);
4584 	if (!rdst)
4585 		goto out;
4586 
4587 	rdst->offloaded = fdb_info->offloaded;
4588 
4589 out:
4590 	spin_unlock_bh(&vxlan->hash_lock[hash_index]);
4591 }
4592 
4593 static int
4594 vxlan_fdb_external_learn_add(struct net_device *dev,
4595 			     struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4596 {
4597 	struct vxlan_dev *vxlan = netdev_priv(dev);
4598 	struct netlink_ext_ack *extack;
4599 	u32 hash_index;
4600 	int err;
4601 
4602 	hash_index = fdb_head_index(vxlan, fdb_info->eth_addr, fdb_info->vni);
4603 	extack = switchdev_notifier_info_to_extack(&fdb_info->info);
4604 
4605 	spin_lock_bh(&vxlan->hash_lock[hash_index]);
4606 	err = vxlan_fdb_update(vxlan, fdb_info->eth_addr, &fdb_info->remote_ip,
4607 			       NUD_REACHABLE,
4608 			       NLM_F_CREATE | NLM_F_REPLACE,
4609 			       fdb_info->remote_port,
4610 			       fdb_info->vni,
4611 			       fdb_info->remote_vni,
4612 			       fdb_info->remote_ifindex,
4613 			       NTF_USE | NTF_SELF | NTF_EXT_LEARNED,
4614 			       0, false, extack);
4615 	spin_unlock_bh(&vxlan->hash_lock[hash_index]);
4616 
4617 	return err;
4618 }
4619 
4620 static int
4621 vxlan_fdb_external_learn_del(struct net_device *dev,
4622 			     struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4623 {
4624 	struct vxlan_dev *vxlan = netdev_priv(dev);
4625 	struct vxlan_fdb *f;
4626 	u32 hash_index;
4627 	int err = 0;
4628 
4629 	hash_index = fdb_head_index(vxlan, fdb_info->eth_addr, fdb_info->vni);
4630 	spin_lock_bh(&vxlan->hash_lock[hash_index]);
4631 
4632 	f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4633 	if (!f)
4634 		err = -ENOENT;
4635 	else if (f->flags & NTF_EXT_LEARNED)
4636 		err = __vxlan_fdb_delete(vxlan, fdb_info->eth_addr,
4637 					 fdb_info->remote_ip,
4638 					 fdb_info->remote_port,
4639 					 fdb_info->vni,
4640 					 fdb_info->remote_vni,
4641 					 fdb_info->remote_ifindex,
4642 					 false);
4643 
4644 	spin_unlock_bh(&vxlan->hash_lock[hash_index]);
4645 
4646 	return err;
4647 }
4648 
4649 static int vxlan_switchdev_event(struct notifier_block *unused,
4650 				 unsigned long event, void *ptr)
4651 {
4652 	struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
4653 	struct switchdev_notifier_vxlan_fdb_info *fdb_info;
4654 	int err = 0;
4655 
4656 	switch (event) {
4657 	case SWITCHDEV_VXLAN_FDB_OFFLOADED:
4658 		vxlan_fdb_offloaded_set(dev, ptr);
4659 		break;
4660 	case SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE:
4661 		fdb_info = ptr;
4662 		err = vxlan_fdb_external_learn_add(dev, fdb_info);
4663 		if (err) {
4664 			err = notifier_from_errno(err);
4665 			break;
4666 		}
4667 		fdb_info->offloaded = true;
4668 		vxlan_fdb_offloaded_set(dev, fdb_info);
4669 		break;
4670 	case SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE:
4671 		fdb_info = ptr;
4672 		err = vxlan_fdb_external_learn_del(dev, fdb_info);
4673 		if (err) {
4674 			err = notifier_from_errno(err);
4675 			break;
4676 		}
4677 		fdb_info->offloaded = false;
4678 		vxlan_fdb_offloaded_set(dev, fdb_info);
4679 		break;
4680 	}
4681 
4682 	return err;
4683 }
4684 
4685 static struct notifier_block vxlan_switchdev_notifier_block __read_mostly = {
4686 	.notifier_call = vxlan_switchdev_event,
4687 };
4688 
4689 static void vxlan_fdb_nh_flush(struct nexthop *nh)
4690 {
4691 	struct vxlan_fdb *fdb;
4692 	struct vxlan_dev *vxlan;
4693 	u32 hash_index;
4694 
4695 	rcu_read_lock();
4696 	list_for_each_entry_rcu(fdb, &nh->fdb_list, nh_list) {
4697 		vxlan = rcu_dereference(fdb->vdev);
4698 		WARN_ON(!vxlan);
4699 		hash_index = fdb_head_index(vxlan, fdb->eth_addr,
4700 					    vxlan->default_dst.remote_vni);
4701 		spin_lock_bh(&vxlan->hash_lock[hash_index]);
4702 		if (!hlist_unhashed(&fdb->hlist))
4703 			vxlan_fdb_destroy(vxlan, fdb, false, false);
4704 		spin_unlock_bh(&vxlan->hash_lock[hash_index]);
4705 	}
4706 	rcu_read_unlock();
4707 }
4708 
4709 static int vxlan_nexthop_event(struct notifier_block *nb,
4710 			       unsigned long event, void *ptr)
4711 {
4712 	struct nh_notifier_info *info = ptr;
4713 	struct nexthop *nh;
4714 
4715 	if (event != NEXTHOP_EVENT_DEL)
4716 		return NOTIFY_DONE;
4717 
4718 	nh = nexthop_find_by_id(info->net, info->id);
4719 	if (!nh)
4720 		return NOTIFY_DONE;
4721 
4722 	vxlan_fdb_nh_flush(nh);
4723 
4724 	return NOTIFY_DONE;
4725 }
4726 
4727 static __net_init int vxlan_init_net(struct net *net)
4728 {
4729 	struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4730 	unsigned int h;
4731 
4732 	INIT_LIST_HEAD(&vn->vxlan_list);
4733 	spin_lock_init(&vn->sock_lock);
4734 	vn->nexthop_notifier_block.notifier_call = vxlan_nexthop_event;
4735 
4736 	for (h = 0; h < PORT_HASH_SIZE; ++h)
4737 		INIT_HLIST_HEAD(&vn->sock_list[h]);
4738 
4739 	return register_nexthop_notifier(net, &vn->nexthop_notifier_block,
4740 					 NULL);
4741 }
4742 
4743 static void vxlan_destroy_tunnels(struct net *net, struct list_head *head)
4744 {
4745 	struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4746 	struct vxlan_dev *vxlan, *next;
4747 	struct net_device *dev, *aux;
4748 
4749 	for_each_netdev_safe(net, dev, aux)
4750 		if (dev->rtnl_link_ops == &vxlan_link_ops)
4751 			unregister_netdevice_queue(dev, head);
4752 
4753 	list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4754 		/* If vxlan->dev is in the same netns, it has already been added
4755 		 * to the list by the previous loop.
4756 		 */
4757 		if (!net_eq(dev_net(vxlan->dev), net))
4758 			unregister_netdevice_queue(vxlan->dev, head);
4759 	}
4760 
4761 }
4762 
4763 static void __net_exit vxlan_exit_batch_net(struct list_head *net_list)
4764 {
4765 	struct net *net;
4766 	LIST_HEAD(list);
4767 	unsigned int h;
4768 
4769 	list_for_each_entry(net, net_list, exit_list) {
4770 		struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4771 
4772 		unregister_nexthop_notifier(net, &vn->nexthop_notifier_block);
4773 	}
4774 	rtnl_lock();
4775 	list_for_each_entry(net, net_list, exit_list)
4776 		vxlan_destroy_tunnels(net, &list);
4777 
4778 	unregister_netdevice_many(&list);
4779 	rtnl_unlock();
4780 
4781 	list_for_each_entry(net, net_list, exit_list) {
4782 		struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4783 
4784 		for (h = 0; h < PORT_HASH_SIZE; ++h)
4785 			WARN_ON_ONCE(!hlist_empty(&vn->sock_list[h]));
4786 	}
4787 }
4788 
4789 static struct pernet_operations vxlan_net_ops = {
4790 	.init = vxlan_init_net,
4791 	.exit_batch = vxlan_exit_batch_net,
4792 	.id   = &vxlan_net_id,
4793 	.size = sizeof(struct vxlan_net),
4794 };
4795 
4796 static int __init vxlan_init_module(void)
4797 {
4798 	int rc;
4799 
4800 	get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
4801 
4802 	rc = register_pernet_subsys(&vxlan_net_ops);
4803 	if (rc)
4804 		goto out1;
4805 
4806 	rc = register_netdevice_notifier(&vxlan_notifier_block);
4807 	if (rc)
4808 		goto out2;
4809 
4810 	rc = register_switchdev_notifier(&vxlan_switchdev_notifier_block);
4811 	if (rc)
4812 		goto out3;
4813 
4814 	rc = rtnl_link_register(&vxlan_link_ops);
4815 	if (rc)
4816 		goto out4;
4817 
4818 	vxlan_vnifilter_init();
4819 
4820 	return 0;
4821 out4:
4822 	unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
4823 out3:
4824 	unregister_netdevice_notifier(&vxlan_notifier_block);
4825 out2:
4826 	unregister_pernet_subsys(&vxlan_net_ops);
4827 out1:
4828 	return rc;
4829 }
4830 late_initcall(vxlan_init_module);
4831 
4832 static void __exit vxlan_cleanup_module(void)
4833 {
4834 	vxlan_vnifilter_uninit();
4835 	rtnl_link_unregister(&vxlan_link_ops);
4836 	unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
4837 	unregister_netdevice_notifier(&vxlan_notifier_block);
4838 	unregister_pernet_subsys(&vxlan_net_ops);
4839 	/* rcu_barrier() is called by netns */
4840 }
4841 module_exit(vxlan_cleanup_module);
4842 
4843 MODULE_LICENSE("GPL");
4844 MODULE_VERSION(VXLAN_VERSION);
4845 MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
4846 MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
4847 MODULE_ALIAS_RTNL_LINK("vxlan");
4848