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