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