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