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