]> Pileus Git - ~andy/linux/blob - drivers/net/vxlan.c
vxlan: add ipv6 route short circuit support
[~andy/linux] / 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/types.h>
15 #include <linux/module.h>
16 #include <linux/errno.h>
17 #include <linux/slab.h>
18 #include <linux/skbuff.h>
19 #include <linux/rculist.h>
20 #include <linux/netdevice.h>
21 #include <linux/in.h>
22 #include <linux/ip.h>
23 #include <linux/udp.h>
24 #include <linux/igmp.h>
25 #include <linux/etherdevice.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
28 #include <linux/hash.h>
29 #include <linux/ethtool.h>
30 #include <net/arp.h>
31 #include <net/ndisc.h>
32 #include <net/ip.h>
33 #include <net/ip_tunnels.h>
34 #include <net/icmp.h>
35 #include <net/udp.h>
36 #include <net/rtnetlink.h>
37 #include <net/route.h>
38 #include <net/dsfield.h>
39 #include <net/inet_ecn.h>
40 #include <net/net_namespace.h>
41 #include <net/netns/generic.h>
42 #include <net/vxlan.h>
43 #if IS_ENABLED(CONFIG_IPV6)
44 #include <net/ipv6.h>
45 #include <net/addrconf.h>
46 #include <net/ip6_tunnel.h>
47 #endif
48
49 #define VXLAN_VERSION   "0.1"
50
51 #define PORT_HASH_BITS  8
52 #define PORT_HASH_SIZE  (1<<PORT_HASH_BITS)
53 #define VNI_HASH_BITS   10
54 #define VNI_HASH_SIZE   (1<<VNI_HASH_BITS)
55 #define FDB_HASH_BITS   8
56 #define FDB_HASH_SIZE   (1<<FDB_HASH_BITS)
57 #define FDB_AGE_DEFAULT 300 /* 5 min */
58 #define FDB_AGE_INTERVAL (10 * HZ)      /* rescan interval */
59
60 #define VXLAN_N_VID     (1u << 24)
61 #define VXLAN_VID_MASK  (VXLAN_N_VID - 1)
62 /* IP header + UDP + VXLAN + Ethernet header */
63 #define VXLAN_HEADROOM (20 + 8 + 8 + 14)
64 /* IPv6 header + UDP + VXLAN + Ethernet header */
65 #define VXLAN6_HEADROOM (40 + 8 + 8 + 14)
66 #define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
67
68 #define VXLAN_FLAGS 0x08000000  /* struct vxlanhdr.vx_flags required value. */
69
70 /* VXLAN protocol header */
71 struct vxlanhdr {
72         __be32 vx_flags;
73         __be32 vx_vni;
74 };
75
76 /* UDP port for VXLAN traffic.
77  * The IANA assigned port is 4789, but the Linux default is 8472
78  * for compatibility with early adopters.
79  */
80 static unsigned short vxlan_port __read_mostly = 8472;
81 module_param_named(udp_port, vxlan_port, ushort, 0444);
82 MODULE_PARM_DESC(udp_port, "Destination UDP port");
83
84 static bool log_ecn_error = true;
85 module_param(log_ecn_error, bool, 0644);
86 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
87
88 static int vxlan_net_id;
89
90 static const u8 all_zeros_mac[ETH_ALEN];
91
92 /* per-network namespace private data for this module */
93 struct vxlan_net {
94         struct list_head  vxlan_list;
95         struct hlist_head sock_list[PORT_HASH_SIZE];
96         spinlock_t        sock_lock;
97 };
98
99 union vxlan_addr {
100         struct sockaddr_in sin;
101         struct sockaddr_in6 sin6;
102         struct sockaddr sa;
103 };
104
105 struct vxlan_rdst {
106         union vxlan_addr         remote_ip;
107         __be16                   remote_port;
108         u32                      remote_vni;
109         u32                      remote_ifindex;
110         struct list_head         list;
111         struct rcu_head          rcu;
112 };
113
114 /* Forwarding table entry */
115 struct vxlan_fdb {
116         struct hlist_node hlist;        /* linked list of entries */
117         struct rcu_head   rcu;
118         unsigned long     updated;      /* jiffies */
119         unsigned long     used;
120         struct list_head  remotes;
121         u16               state;        /* see ndm_state */
122         u8                flags;        /* see ndm_flags */
123         u8                eth_addr[ETH_ALEN];
124 };
125
126 /* Pseudo network device */
127 struct vxlan_dev {
128         struct hlist_node hlist;        /* vni hash table */
129         struct list_head  next;         /* vxlan's per namespace list */
130         struct vxlan_sock *vn_sock;     /* listening socket */
131         struct net_device *dev;
132         struct vxlan_rdst default_dst;  /* default destination */
133         union vxlan_addr  saddr;        /* source address */
134         __be16            dst_port;
135         __u16             port_min;     /* source port range */
136         __u16             port_max;
137         __u8              tos;          /* TOS override */
138         __u8              ttl;
139         u32               flags;        /* VXLAN_F_* below */
140
141         struct work_struct sock_work;
142         struct work_struct igmp_join;
143         struct work_struct igmp_leave;
144
145         unsigned long     age_interval;
146         struct timer_list age_timer;
147         spinlock_t        hash_lock;
148         unsigned int      addrcnt;
149         unsigned int      addrmax;
150
151         struct hlist_head fdb_head[FDB_HASH_SIZE];
152 };
153
154 #define VXLAN_F_LEARN   0x01
155 #define VXLAN_F_PROXY   0x02
156 #define VXLAN_F_RSC     0x04
157 #define VXLAN_F_L2MISS  0x08
158 #define VXLAN_F_L3MISS  0x10
159 #define VXLAN_F_IPV6    0x20 /* internal flag */
160
161 /* salt for hash table */
162 static u32 vxlan_salt __read_mostly;
163 static struct workqueue_struct *vxlan_wq;
164
165 static void vxlan_sock_work(struct work_struct *work);
166
167 #if IS_ENABLED(CONFIG_IPV6)
168 static inline
169 bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
170 {
171        if (a->sa.sa_family != b->sa.sa_family)
172                return false;
173        if (a->sa.sa_family == AF_INET6)
174                return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
175        else
176                return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
177 }
178
179 static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
180 {
181        if (ipa->sa.sa_family == AF_INET6)
182                return ipv6_addr_any(&ipa->sin6.sin6_addr);
183        else
184                return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
185 }
186
187 static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
188 {
189        if (ipa->sa.sa_family == AF_INET6)
190                return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
191        else
192                return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
193 }
194
195 static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
196 {
197        if (nla_len(nla) >= sizeof(struct in6_addr)) {
198                nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr));
199                ip->sa.sa_family = AF_INET6;
200                return 0;
201        } else if (nla_len(nla) >= sizeof(__be32)) {
202                ip->sin.sin_addr.s_addr = nla_get_be32(nla);
203                ip->sa.sa_family = AF_INET;
204                return 0;
205        } else {
206                return -EAFNOSUPPORT;
207        }
208 }
209
210 static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
211                              const union vxlan_addr *ip)
212 {
213        if (ip->sa.sa_family == AF_INET6)
214                return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr);
215        else
216                return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
217 }
218
219 #else /* !CONFIG_IPV6 */
220
221 static inline
222 bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
223 {
224        return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
225 }
226
227 static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
228 {
229        return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
230 }
231
232 static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
233 {
234        return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
235 }
236
237 static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
238 {
239        if (nla_len(nla) >= sizeof(struct in6_addr)) {
240                return -EAFNOSUPPORT;
241        } else if (nla_len(nla) >= sizeof(__be32)) {
242                ip->sin.sin_addr.s_addr = nla_get_be32(nla);
243                ip->sa.sa_family = AF_INET;
244                return 0;
245        } else {
246                return -EAFNOSUPPORT;
247        }
248 }
249
250 static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
251                              const union vxlan_addr *ip)
252 {
253        return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
254 }
255 #endif
256
257 /* Virtual Network hash table head */
258 static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
259 {
260         return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
261 }
262
263 /* Socket hash table head */
264 static inline struct hlist_head *vs_head(struct net *net, __be16 port)
265 {
266         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
267
268         return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
269 }
270
271 /* First remote destination for a forwarding entry.
272  * Guaranteed to be non-NULL because remotes are never deleted.
273  */
274 static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
275 {
276         return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
277 }
278
279 static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
280 {
281         return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
282 }
283
284 /* Find VXLAN socket based on network namespace and UDP port */
285 static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port)
286 {
287         struct vxlan_sock *vs;
288
289         hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
290                 if (inet_sk(vs->sock->sk)->inet_sport == port)
291                         return vs;
292         }
293         return NULL;
294 }
295
296 static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
297 {
298         struct vxlan_dev *vxlan;
299
300         hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
301                 if (vxlan->default_dst.remote_vni == id)
302                         return vxlan;
303         }
304
305         return NULL;
306 }
307
308 /* Look up VNI in a per net namespace table */
309 static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id, __be16 port)
310 {
311         struct vxlan_sock *vs;
312
313         vs = vxlan_find_sock(net, port);
314         if (!vs)
315                 return NULL;
316
317         return vxlan_vs_find_vni(vs, id);
318 }
319
320 /* Fill in neighbour message in skbuff. */
321 static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
322                           const struct vxlan_fdb *fdb,
323                           u32 portid, u32 seq, int type, unsigned int flags,
324                           const struct vxlan_rdst *rdst)
325 {
326         unsigned long now = jiffies;
327         struct nda_cacheinfo ci;
328         struct nlmsghdr *nlh;
329         struct ndmsg *ndm;
330         bool send_ip, send_eth;
331
332         nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
333         if (nlh == NULL)
334                 return -EMSGSIZE;
335
336         ndm = nlmsg_data(nlh);
337         memset(ndm, 0, sizeof(*ndm));
338
339         send_eth = send_ip = true;
340
341         if (type == RTM_GETNEIGH) {
342                 ndm->ndm_family = AF_INET;
343                 send_ip = !vxlan_addr_any(&rdst->remote_ip);
344                 send_eth = !is_zero_ether_addr(fdb->eth_addr);
345         } else
346                 ndm->ndm_family = AF_BRIDGE;
347         ndm->ndm_state = fdb->state;
348         ndm->ndm_ifindex = vxlan->dev->ifindex;
349         ndm->ndm_flags = fdb->flags;
350         ndm->ndm_type = NDA_DST;
351
352         if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
353                 goto nla_put_failure;
354
355         if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
356                 goto nla_put_failure;
357
358         if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
359             nla_put_be16(skb, NDA_PORT, rdst->remote_port))
360                 goto nla_put_failure;
361         if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
362             nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
363                 goto nla_put_failure;
364         if (rdst->remote_ifindex &&
365             nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
366                 goto nla_put_failure;
367
368         ci.ndm_used      = jiffies_to_clock_t(now - fdb->used);
369         ci.ndm_confirmed = 0;
370         ci.ndm_updated   = jiffies_to_clock_t(now - fdb->updated);
371         ci.ndm_refcnt    = 0;
372
373         if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
374                 goto nla_put_failure;
375
376         return nlmsg_end(skb, nlh);
377
378 nla_put_failure:
379         nlmsg_cancel(skb, nlh);
380         return -EMSGSIZE;
381 }
382
383 static inline size_t vxlan_nlmsg_size(void)
384 {
385         return NLMSG_ALIGN(sizeof(struct ndmsg))
386                 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
387                 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
388                 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
389                 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
390                 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
391                 + nla_total_size(sizeof(struct nda_cacheinfo));
392 }
393
394 static void vxlan_fdb_notify(struct vxlan_dev *vxlan,
395                              struct vxlan_fdb *fdb, int type)
396 {
397         struct net *net = dev_net(vxlan->dev);
398         struct sk_buff *skb;
399         int err = -ENOBUFS;
400
401         skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
402         if (skb == NULL)
403                 goto errout;
404
405         err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0,
406                              first_remote_rtnl(fdb));
407         if (err < 0) {
408                 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
409                 WARN_ON(err == -EMSGSIZE);
410                 kfree_skb(skb);
411                 goto errout;
412         }
413
414         rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
415         return;
416 errout:
417         if (err < 0)
418                 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
419 }
420
421 static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
422 {
423         struct vxlan_dev *vxlan = netdev_priv(dev);
424         struct vxlan_fdb f = {
425                 .state = NUD_STALE,
426         };
427         struct vxlan_rdst remote = {
428                 .remote_ip = *ipa, /* goes to NDA_DST */
429                 .remote_vni = VXLAN_N_VID,
430         };
431
432         INIT_LIST_HEAD(&f.remotes);
433         list_add_rcu(&remote.list, &f.remotes);
434
435         vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
436 }
437
438 static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
439 {
440         struct vxlan_fdb f = {
441                 .state = NUD_STALE,
442         };
443
444         INIT_LIST_HEAD(&f.remotes);
445         memcpy(f.eth_addr, eth_addr, ETH_ALEN);
446
447         vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
448 }
449
450 /* Hash Ethernet address */
451 static u32 eth_hash(const unsigned char *addr)
452 {
453         u64 value = get_unaligned((u64 *)addr);
454
455         /* only want 6 bytes */
456 #ifdef __BIG_ENDIAN
457         value >>= 16;
458 #else
459         value <<= 16;
460 #endif
461         return hash_64(value, FDB_HASH_BITS);
462 }
463
464 /* Hash chain to use given mac address */
465 static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
466                                                 const u8 *mac)
467 {
468         return &vxlan->fdb_head[eth_hash(mac)];
469 }
470
471 /* Look up Ethernet address in forwarding table */
472 static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
473                                         const u8 *mac)
474
475 {
476         struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
477         struct vxlan_fdb *f;
478
479         hlist_for_each_entry_rcu(f, head, hlist) {
480                 if (compare_ether_addr(mac, f->eth_addr) == 0)
481                         return f;
482         }
483
484         return NULL;
485 }
486
487 static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
488                                         const u8 *mac)
489 {
490         struct vxlan_fdb *f;
491
492         f = __vxlan_find_mac(vxlan, mac);
493         if (f)
494                 f->used = jiffies;
495
496         return f;
497 }
498
499 /* caller should hold vxlan->hash_lock */
500 static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
501                                               union vxlan_addr *ip, __be16 port,
502                                               __u32 vni, __u32 ifindex)
503 {
504         struct vxlan_rdst *rd;
505
506         list_for_each_entry(rd, &f->remotes, list) {
507                 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
508                     rd->remote_port == port &&
509                     rd->remote_vni == vni &&
510                     rd->remote_ifindex == ifindex)
511                         return rd;
512         }
513
514         return NULL;
515 }
516
517 /* Replace destination of unicast mac */
518 static int vxlan_fdb_replace(struct vxlan_fdb *f,
519                              union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
520 {
521         struct vxlan_rdst *rd;
522
523         rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
524         if (rd)
525                 return 0;
526
527         rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
528         if (!rd)
529                 return 0;
530         rd->remote_ip = *ip;
531         rd->remote_port = port;
532         rd->remote_vni = vni;
533         rd->remote_ifindex = ifindex;
534         return 1;
535 }
536
537 /* Add/update destinations for multicast */
538 static int vxlan_fdb_append(struct vxlan_fdb *f,
539                             union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
540 {
541         struct vxlan_rdst *rd;
542
543         rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
544         if (rd)
545                 return 0;
546
547         rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
548         if (rd == NULL)
549                 return -ENOBUFS;
550         rd->remote_ip = *ip;
551         rd->remote_port = port;
552         rd->remote_vni = vni;
553         rd->remote_ifindex = ifindex;
554
555         list_add_tail_rcu(&rd->list, &f->remotes);
556
557         return 1;
558 }
559
560 /* Add new entry to forwarding table -- assumes lock held */
561 static int vxlan_fdb_create(struct vxlan_dev *vxlan,
562                             const u8 *mac, union vxlan_addr *ip,
563                             __u16 state, __u16 flags,
564                             __be16 port, __u32 vni, __u32 ifindex,
565                             __u8 ndm_flags)
566 {
567         struct vxlan_fdb *f;
568         int notify = 0;
569
570         f = __vxlan_find_mac(vxlan, mac);
571         if (f) {
572                 if (flags & NLM_F_EXCL) {
573                         netdev_dbg(vxlan->dev,
574                                    "lost race to create %pM\n", mac);
575                         return -EEXIST;
576                 }
577                 if (f->state != state) {
578                         f->state = state;
579                         f->updated = jiffies;
580                         notify = 1;
581                 }
582                 if (f->flags != ndm_flags) {
583                         f->flags = ndm_flags;
584                         f->updated = jiffies;
585                         notify = 1;
586                 }
587                 if ((flags & NLM_F_REPLACE)) {
588                         /* Only change unicasts */
589                         if (!(is_multicast_ether_addr(f->eth_addr) ||
590                              is_zero_ether_addr(f->eth_addr))) {
591                                 int rc = vxlan_fdb_replace(f, ip, port, vni,
592                                                            ifindex);
593
594                                 if (rc < 0)
595                                         return rc;
596                                 notify |= rc;
597                         } else
598                                 return -EOPNOTSUPP;
599                 }
600                 if ((flags & NLM_F_APPEND) &&
601                     (is_multicast_ether_addr(f->eth_addr) ||
602                      is_zero_ether_addr(f->eth_addr))) {
603                         int rc = vxlan_fdb_append(f, ip, port, vni, ifindex);
604
605                         if (rc < 0)
606                                 return rc;
607                         notify |= rc;
608                 }
609         } else {
610                 if (!(flags & NLM_F_CREATE))
611                         return -ENOENT;
612
613                 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
614                         return -ENOSPC;
615
616                 /* Disallow replace to add a multicast entry */
617                 if ((flags & NLM_F_REPLACE) &&
618                     (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
619                         return -EOPNOTSUPP;
620
621                 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
622                 f = kmalloc(sizeof(*f), GFP_ATOMIC);
623                 if (!f)
624                         return -ENOMEM;
625
626                 notify = 1;
627                 f->state = state;
628                 f->flags = ndm_flags;
629                 f->updated = f->used = jiffies;
630                 INIT_LIST_HEAD(&f->remotes);
631                 memcpy(f->eth_addr, mac, ETH_ALEN);
632
633                 vxlan_fdb_append(f, ip, port, vni, ifindex);
634
635                 ++vxlan->addrcnt;
636                 hlist_add_head_rcu(&f->hlist,
637                                    vxlan_fdb_head(vxlan, mac));
638         }
639
640         if (notify)
641                 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
642
643         return 0;
644 }
645
646 static void vxlan_fdb_free(struct rcu_head *head)
647 {
648         struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
649         struct vxlan_rdst *rd, *nd;
650
651         list_for_each_entry_safe(rd, nd, &f->remotes, list)
652                 kfree(rd);
653         kfree(f);
654 }
655
656 static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
657 {
658         netdev_dbg(vxlan->dev,
659                     "delete %pM\n", f->eth_addr);
660
661         --vxlan->addrcnt;
662         vxlan_fdb_notify(vxlan, f, RTM_DELNEIGH);
663
664         hlist_del_rcu(&f->hlist);
665         call_rcu(&f->rcu, vxlan_fdb_free);
666 }
667
668 static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
669                            union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
670 {
671         struct net *net = dev_net(vxlan->dev);
672         int err;
673
674         if (tb[NDA_DST]) {
675                 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
676                 if (err)
677                         return err;
678         } else {
679                 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
680                 if (remote->sa.sa_family == AF_INET) {
681                         ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
682                         ip->sa.sa_family = AF_INET;
683 #if IS_ENABLED(CONFIG_IPV6)
684                 } else {
685                         ip->sin6.sin6_addr = in6addr_any;
686                         ip->sa.sa_family = AF_INET6;
687 #endif
688                 }
689         }
690
691         if (tb[NDA_PORT]) {
692                 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
693                         return -EINVAL;
694                 *port = nla_get_be16(tb[NDA_PORT]);
695         } else {
696                 *port = vxlan->dst_port;
697         }
698
699         if (tb[NDA_VNI]) {
700                 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
701                         return -EINVAL;
702                 *vni = nla_get_u32(tb[NDA_VNI]);
703         } else {
704                 *vni = vxlan->default_dst.remote_vni;
705         }
706
707         if (tb[NDA_IFINDEX]) {
708                 struct net_device *tdev;
709
710                 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
711                         return -EINVAL;
712                 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
713                 tdev = dev_get_by_index(net, *ifindex);
714                 if (!tdev)
715                         return -EADDRNOTAVAIL;
716                 dev_put(tdev);
717         } else {
718                 *ifindex = 0;
719         }
720
721         return 0;
722 }
723
724 /* Add static entry (via netlink) */
725 static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
726                          struct net_device *dev,
727                          const unsigned char *addr, u16 flags)
728 {
729         struct vxlan_dev *vxlan = netdev_priv(dev);
730         /* struct net *net = dev_net(vxlan->dev); */
731         union vxlan_addr ip;
732         __be16 port;
733         u32 vni, ifindex;
734         int err;
735
736         if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
737                 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
738                         ndm->ndm_state);
739                 return -EINVAL;
740         }
741
742         if (tb[NDA_DST] == NULL)
743                 return -EINVAL;
744
745         err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
746         if (err)
747                 return err;
748
749         spin_lock_bh(&vxlan->hash_lock);
750         err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
751                                port, vni, ifindex, ndm->ndm_flags);
752         spin_unlock_bh(&vxlan->hash_lock);
753
754         return err;
755 }
756
757 /* Delete entry (via netlink) */
758 static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
759                             struct net_device *dev,
760                             const unsigned char *addr)
761 {
762         struct vxlan_dev *vxlan = netdev_priv(dev);
763         struct vxlan_fdb *f;
764         struct vxlan_rdst *rd = NULL;
765         union vxlan_addr ip;
766         __be16 port;
767         u32 vni, ifindex;
768         int err;
769
770         err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
771         if (err)
772                 return err;
773
774         err = -ENOENT;
775
776         spin_lock_bh(&vxlan->hash_lock);
777         f = vxlan_find_mac(vxlan, addr);
778         if (!f)
779                 goto out;
780
781         if (!vxlan_addr_any(&ip)) {
782                 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
783                 if (!rd)
784                         goto out;
785         }
786
787         err = 0;
788
789         /* remove a destination if it's not the only one on the list,
790          * otherwise destroy the fdb entry
791          */
792         if (rd && !list_is_singular(&f->remotes)) {
793                 list_del_rcu(&rd->list);
794                 kfree_rcu(rd, rcu);
795                 goto out;
796         }
797
798         vxlan_fdb_destroy(vxlan, f);
799
800 out:
801         spin_unlock_bh(&vxlan->hash_lock);
802
803         return err;
804 }
805
806 /* Dump forwarding table */
807 static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
808                           struct net_device *dev, int idx)
809 {
810         struct vxlan_dev *vxlan = netdev_priv(dev);
811         unsigned int h;
812
813         for (h = 0; h < FDB_HASH_SIZE; ++h) {
814                 struct vxlan_fdb *f;
815                 int err;
816
817                 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
818                         struct vxlan_rdst *rd;
819
820                         if (idx < cb->args[0])
821                                 goto skip;
822
823                         list_for_each_entry_rcu(rd, &f->remotes, list) {
824                                 err = vxlan_fdb_info(skb, vxlan, f,
825                                                      NETLINK_CB(cb->skb).portid,
826                                                      cb->nlh->nlmsg_seq,
827                                                      RTM_NEWNEIGH,
828                                                      NLM_F_MULTI, rd);
829                                 if (err < 0)
830                                         goto out;
831                         }
832 skip:
833                         ++idx;
834                 }
835         }
836 out:
837         return idx;
838 }
839
840 /* Watch incoming packets to learn mapping between Ethernet address
841  * and Tunnel endpoint.
842  * Return true if packet is bogus and should be droppped.
843  */
844 static bool vxlan_snoop(struct net_device *dev,
845                         union vxlan_addr *src_ip, const u8 *src_mac)
846 {
847         struct vxlan_dev *vxlan = netdev_priv(dev);
848         struct vxlan_fdb *f;
849
850         f = vxlan_find_mac(vxlan, src_mac);
851         if (likely(f)) {
852                 struct vxlan_rdst *rdst = first_remote_rcu(f);
853
854                 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
855                         return false;
856
857                 /* Don't migrate static entries, drop packets */
858                 if (f->state & NUD_NOARP)
859                         return true;
860
861                 if (net_ratelimit())
862                         netdev_info(dev,
863                                     "%pM migrated from %pIS to %pIS\n",
864                                     src_mac, &rdst->remote_ip, &src_ip);
865
866                 rdst->remote_ip = *src_ip;
867                 f->updated = jiffies;
868                 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
869         } else {
870                 /* learned new entry */
871                 spin_lock(&vxlan->hash_lock);
872
873                 /* close off race between vxlan_flush and incoming packets */
874                 if (netif_running(dev))
875                         vxlan_fdb_create(vxlan, src_mac, src_ip,
876                                          NUD_REACHABLE,
877                                          NLM_F_EXCL|NLM_F_CREATE,
878                                          vxlan->dst_port,
879                                          vxlan->default_dst.remote_vni,
880                                          0, NTF_SELF);
881                 spin_unlock(&vxlan->hash_lock);
882         }
883
884         return false;
885 }
886
887 /* See if multicast group is already in use by other ID */
888 static bool vxlan_group_used(struct vxlan_net *vn, union vxlan_addr *remote_ip)
889 {
890         struct vxlan_dev *vxlan;
891
892         list_for_each_entry(vxlan, &vn->vxlan_list, next) {
893                 if (!netif_running(vxlan->dev))
894                         continue;
895
896                 if (vxlan_addr_equal(&vxlan->default_dst.remote_ip,
897                                      remote_ip))
898                         return true;
899         }
900
901         return false;
902 }
903
904 static void vxlan_sock_hold(struct vxlan_sock *vs)
905 {
906         atomic_inc(&vs->refcnt);
907 }
908
909 void vxlan_sock_release(struct vxlan_sock *vs)
910 {
911         struct vxlan_net *vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
912
913         if (!atomic_dec_and_test(&vs->refcnt))
914                 return;
915
916         spin_lock(&vn->sock_lock);
917         hlist_del_rcu(&vs->hlist);
918         spin_unlock(&vn->sock_lock);
919
920         queue_work(vxlan_wq, &vs->del_work);
921 }
922 EXPORT_SYMBOL_GPL(vxlan_sock_release);
923
924 /* Callback to update multicast group membership when first VNI on
925  * multicast asddress is brought up
926  * Done as workqueue because ip_mc_join_group acquires RTNL.
927  */
928 static void vxlan_igmp_join(struct work_struct *work)
929 {
930         struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
931         struct vxlan_sock *vs = vxlan->vn_sock;
932         struct sock *sk = vs->sock->sk;
933         union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
934         int ifindex = vxlan->default_dst.remote_ifindex;
935
936         lock_sock(sk);
937         if (ip->sa.sa_family == AF_INET) {
938                 struct ip_mreqn mreq = {
939                         .imr_multiaddr.s_addr   = ip->sin.sin_addr.s_addr,
940                         .imr_ifindex            = ifindex,
941                 };
942
943                 ip_mc_join_group(sk, &mreq);
944 #if IS_ENABLED(CONFIG_IPV6)
945         } else {
946                 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
947                                              &ip->sin6.sin6_addr);
948 #endif
949         }
950         release_sock(sk);
951
952         vxlan_sock_release(vs);
953         dev_put(vxlan->dev);
954 }
955
956 /* Inverse of vxlan_igmp_join when last VNI is brought down */
957 static void vxlan_igmp_leave(struct work_struct *work)
958 {
959         struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
960         struct vxlan_sock *vs = vxlan->vn_sock;
961         struct sock *sk = vs->sock->sk;
962         union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
963         int ifindex = vxlan->default_dst.remote_ifindex;
964
965         lock_sock(sk);
966         if (ip->sa.sa_family == AF_INET) {
967                 struct ip_mreqn mreq = {
968                         .imr_multiaddr.s_addr   = ip->sin.sin_addr.s_addr,
969                         .imr_ifindex            = ifindex,
970                 };
971
972                 ip_mc_leave_group(sk, &mreq);
973 #if IS_ENABLED(CONFIG_IPV6)
974         } else {
975                 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
976                                              &ip->sin6.sin6_addr);
977 #endif
978         }
979
980         release_sock(sk);
981
982         vxlan_sock_release(vs);
983         dev_put(vxlan->dev);
984 }
985
986 /* Callback from net/ipv4/udp.c to receive packets */
987 static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
988 {
989         struct vxlan_sock *vs;
990         struct vxlanhdr *vxh;
991         __be16 port;
992
993         /* Need Vxlan and inner Ethernet header to be present */
994         if (!pskb_may_pull(skb, VXLAN_HLEN))
995                 goto error;
996
997         /* Return packets with reserved bits set */
998         vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
999         if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
1000             (vxh->vx_vni & htonl(0xff))) {
1001                 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1002                            ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1003                 goto error;
1004         }
1005
1006         if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
1007                 goto drop;
1008
1009         port = inet_sk(sk)->inet_sport;
1010
1011         vs = vxlan_find_sock(sock_net(sk), port);
1012         if (!vs)
1013                 goto drop;
1014
1015         vs->rcv(vs, skb, vxh->vx_vni);
1016         return 0;
1017
1018 drop:
1019         /* Consume bad packet */
1020         kfree_skb(skb);
1021         return 0;
1022
1023 error:
1024         /* Return non vxlan pkt */
1025         return 1;
1026 }
1027
1028 static void vxlan_rcv(struct vxlan_sock *vs,
1029                       struct sk_buff *skb, __be32 vx_vni)
1030 {
1031         struct iphdr *oip = NULL;
1032         struct ipv6hdr *oip6 = NULL;
1033         struct vxlan_dev *vxlan;
1034         struct pcpu_tstats *stats;
1035         union vxlan_addr saddr;
1036         __u32 vni;
1037         int err = 0;
1038         union vxlan_addr *remote_ip;
1039
1040         vni = ntohl(vx_vni) >> 8;
1041         /* Is this VNI defined? */
1042         vxlan = vxlan_vs_find_vni(vs, vni);
1043         if (!vxlan)
1044                 goto drop;
1045
1046         remote_ip = &vxlan->default_dst.remote_ip;
1047         skb_reset_mac_header(skb);
1048         skb->protocol = eth_type_trans(skb, vxlan->dev);
1049
1050         /* Ignore packet loops (and multicast echo) */
1051         if (compare_ether_addr(eth_hdr(skb)->h_source,
1052                                vxlan->dev->dev_addr) == 0)
1053                 goto drop;
1054
1055         /* Re-examine inner Ethernet packet */
1056         if (remote_ip->sa.sa_family == AF_INET) {
1057                 oip = ip_hdr(skb);
1058                 saddr.sin.sin_addr.s_addr = oip->saddr;
1059                 saddr.sa.sa_family = AF_INET;
1060 #if IS_ENABLED(CONFIG_IPV6)
1061         } else {
1062                 oip6 = ipv6_hdr(skb);
1063                 saddr.sin6.sin6_addr = oip6->saddr;
1064                 saddr.sa.sa_family = AF_INET6;
1065 #endif
1066         }
1067
1068         if ((vxlan->flags & VXLAN_F_LEARN) &&
1069             vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
1070                 goto drop;
1071
1072         skb_reset_network_header(skb);
1073
1074         /* If the NIC driver gave us an encapsulated packet with
1075          * CHECKSUM_UNNECESSARY and Rx checksum feature is enabled,
1076          * leave the CHECKSUM_UNNECESSARY, the device checksummed it
1077          * for us. Otherwise force the upper layers to verify it.
1078          */
1079         if (skb->ip_summed != CHECKSUM_UNNECESSARY || !skb->encapsulation ||
1080             !(vxlan->dev->features & NETIF_F_RXCSUM))
1081                 skb->ip_summed = CHECKSUM_NONE;
1082
1083         skb->encapsulation = 0;
1084
1085         if (oip6)
1086                 err = IP6_ECN_decapsulate(oip6, skb);
1087         if (oip)
1088                 err = IP_ECN_decapsulate(oip, skb);
1089
1090         if (unlikely(err)) {
1091                 if (log_ecn_error) {
1092                         if (oip6)
1093                                 net_info_ratelimited("non-ECT from %pI6\n",
1094                                                      &oip6->saddr);
1095                         if (oip)
1096                                 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1097                                                      &oip->saddr, oip->tos);
1098                 }
1099                 if (err > 1) {
1100                         ++vxlan->dev->stats.rx_frame_errors;
1101                         ++vxlan->dev->stats.rx_errors;
1102                         goto drop;
1103                 }
1104         }
1105
1106         stats = this_cpu_ptr(vxlan->dev->tstats);
1107         u64_stats_update_begin(&stats->syncp);
1108         stats->rx_packets++;
1109         stats->rx_bytes += skb->len;
1110         u64_stats_update_end(&stats->syncp);
1111
1112         netif_rx(skb);
1113
1114         return;
1115 drop:
1116         /* Consume bad packet */
1117         kfree_skb(skb);
1118 }
1119
1120 static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1121 {
1122         struct vxlan_dev *vxlan = netdev_priv(dev);
1123         struct arphdr *parp;
1124         u8 *arpptr, *sha;
1125         __be32 sip, tip;
1126         struct neighbour *n;
1127
1128         if (dev->flags & IFF_NOARP)
1129                 goto out;
1130
1131         if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1132                 dev->stats.tx_dropped++;
1133                 goto out;
1134         }
1135         parp = arp_hdr(skb);
1136
1137         if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1138              parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1139             parp->ar_pro != htons(ETH_P_IP) ||
1140             parp->ar_op != htons(ARPOP_REQUEST) ||
1141             parp->ar_hln != dev->addr_len ||
1142             parp->ar_pln != 4)
1143                 goto out;
1144         arpptr = (u8 *)parp + sizeof(struct arphdr);
1145         sha = arpptr;
1146         arpptr += dev->addr_len;        /* sha */
1147         memcpy(&sip, arpptr, sizeof(sip));
1148         arpptr += sizeof(sip);
1149         arpptr += dev->addr_len;        /* tha */
1150         memcpy(&tip, arpptr, sizeof(tip));
1151
1152         if (ipv4_is_loopback(tip) ||
1153             ipv4_is_multicast(tip))
1154                 goto out;
1155
1156         n = neigh_lookup(&arp_tbl, &tip, dev);
1157
1158         if (n) {
1159                 struct vxlan_fdb *f;
1160                 struct sk_buff  *reply;
1161
1162                 if (!(n->nud_state & NUD_CONNECTED)) {
1163                         neigh_release(n);
1164                         goto out;
1165                 }
1166
1167                 f = vxlan_find_mac(vxlan, n->ha);
1168                 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1169                         /* bridge-local neighbor */
1170                         neigh_release(n);
1171                         goto out;
1172                 }
1173
1174                 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1175                                 n->ha, sha);
1176
1177                 neigh_release(n);
1178
1179                 skb_reset_mac_header(reply);
1180                 __skb_pull(reply, skb_network_offset(reply));
1181                 reply->ip_summed = CHECKSUM_UNNECESSARY;
1182                 reply->pkt_type = PACKET_HOST;
1183
1184                 if (netif_rx_ni(reply) == NET_RX_DROP)
1185                         dev->stats.rx_dropped++;
1186         } else if (vxlan->flags & VXLAN_F_L3MISS) {
1187                 union vxlan_addr ipa = {
1188                         .sin.sin_addr.s_addr = tip,
1189                         .sa.sa_family = AF_INET,
1190                 };
1191
1192                 vxlan_ip_miss(dev, &ipa);
1193         }
1194 out:
1195         consume_skb(skb);
1196         return NETDEV_TX_OK;
1197 }
1198
1199 static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1200 {
1201         struct vxlan_dev *vxlan = netdev_priv(dev);
1202         struct neighbour *n;
1203
1204         if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1205                 return false;
1206
1207         n = NULL;
1208         switch (ntohs(eth_hdr(skb)->h_proto)) {
1209         case ETH_P_IP:
1210         {
1211                 struct iphdr *pip;
1212
1213                 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1214                         return false;
1215                 pip = ip_hdr(skb);
1216                 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
1217                 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1218                         union vxlan_addr ipa = {
1219                                 .sin.sin_addr.s_addr = pip->daddr,
1220                                 .sa.sa_family = AF_INET,
1221                         };
1222
1223                         vxlan_ip_miss(dev, &ipa);
1224                         return false;
1225                 }
1226
1227                 break;
1228         }
1229 #if IS_ENABLED(CONFIG_IPV6)
1230         case ETH_P_IPV6:
1231         {
1232                 struct ipv6hdr *pip6;
1233
1234                 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1235                         return false;
1236                 pip6 = ipv6_hdr(skb);
1237                 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1238                 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1239                         union vxlan_addr ipa = {
1240                                 .sin6.sin6_addr = pip6->daddr,
1241                                 .sa.sa_family = AF_INET6,
1242                         };
1243
1244                         vxlan_ip_miss(dev, &ipa);
1245                         return false;
1246                 }
1247
1248                 break;
1249         }
1250 #endif
1251         default:
1252                 return false;
1253         }
1254
1255         if (n) {
1256                 bool diff;
1257
1258                 diff = compare_ether_addr(eth_hdr(skb)->h_dest, n->ha) != 0;
1259                 if (diff) {
1260                         memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1261                                 dev->addr_len);
1262                         memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1263                 }
1264                 neigh_release(n);
1265                 return diff;
1266         }
1267
1268         return false;
1269 }
1270
1271 static void vxlan_sock_put(struct sk_buff *skb)
1272 {
1273         sock_put(skb->sk);
1274 }
1275
1276 /* On transmit, associate with the tunnel socket */
1277 static void vxlan_set_owner(struct sock *sk, struct sk_buff *skb)
1278 {
1279         skb_orphan(skb);
1280         sock_hold(sk);
1281         skb->sk = sk;
1282         skb->destructor = vxlan_sock_put;
1283 }
1284
1285 /* Compute source port for outgoing packet
1286  *   first choice to use L4 flow hash since it will spread
1287  *     better and maybe available from hardware
1288  *   secondary choice is to use jhash on the Ethernet header
1289  */
1290 __be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb)
1291 {
1292         unsigned int range = (port_max - port_min) + 1;
1293         u32 hash;
1294
1295         hash = skb_get_rxhash(skb);
1296         if (!hash)
1297                 hash = jhash(skb->data, 2 * ETH_ALEN,
1298                              (__force u32) skb->protocol);
1299
1300         return htons((((u64) hash * range) >> 32) + port_min);
1301 }
1302 EXPORT_SYMBOL_GPL(vxlan_src_port);
1303
1304 static int handle_offloads(struct sk_buff *skb)
1305 {
1306         if (skb_is_gso(skb)) {
1307                 int err = skb_unclone(skb, GFP_ATOMIC);
1308                 if (unlikely(err))
1309                         return err;
1310
1311                 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
1312         } else if (skb->ip_summed != CHECKSUM_PARTIAL)
1313                 skb->ip_summed = CHECKSUM_NONE;
1314
1315         return 0;
1316 }
1317
1318 #if IS_ENABLED(CONFIG_IPV6)
1319 static int vxlan6_xmit_skb(struct net *net, struct vxlan_sock *vs,
1320                            struct dst_entry *dst, struct sk_buff *skb,
1321                            struct net_device *dev, struct in6_addr *saddr,
1322                            struct in6_addr *daddr, __u8 prio, __u8 ttl,
1323                            __be16 src_port, __be16 dst_port, __be32 vni)
1324 {
1325         struct ipv6hdr *ip6h;
1326         struct vxlanhdr *vxh;
1327         struct udphdr *uh;
1328         int min_headroom;
1329         int err;
1330
1331         if (!skb->encapsulation) {
1332                 skb_reset_inner_headers(skb);
1333                 skb->encapsulation = 1;
1334         }
1335
1336         min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1337                         + VXLAN_HLEN + sizeof(struct ipv6hdr)
1338                         + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1339
1340         /* Need space for new headers (invalidates iph ptr) */
1341         err = skb_cow_head(skb, min_headroom);
1342         if (unlikely(err))
1343                 return err;
1344
1345         if (vlan_tx_tag_present(skb)) {
1346                 if (WARN_ON(!__vlan_put_tag(skb,
1347                                             skb->vlan_proto,
1348                                             vlan_tx_tag_get(skb))))
1349                         return -ENOMEM;
1350
1351                 skb->vlan_tci = 0;
1352         }
1353
1354         vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1355         vxh->vx_flags = htonl(VXLAN_FLAGS);
1356         vxh->vx_vni = vni;
1357
1358         __skb_push(skb, sizeof(*uh));
1359         skb_reset_transport_header(skb);
1360         uh = udp_hdr(skb);
1361
1362         uh->dest = dst_port;
1363         uh->source = src_port;
1364
1365         uh->len = htons(skb->len);
1366         uh->check = 0;
1367
1368         memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1369         IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1370                               IPSKB_REROUTED);
1371         skb_dst_drop(skb);
1372         skb_dst_set(skb, dst);
1373
1374         if (!skb_is_gso(skb) && !(dst->dev->features & NETIF_F_IPV6_CSUM)) {
1375                 __wsum csum = skb_checksum(skb, 0, skb->len, 0);
1376                 skb->ip_summed = CHECKSUM_UNNECESSARY;
1377                 uh->check = csum_ipv6_magic(saddr, daddr, skb->len,
1378                                             IPPROTO_UDP, csum);
1379                 if (uh->check == 0)
1380                         uh->check = CSUM_MANGLED_0;
1381         } else {
1382                 skb->ip_summed = CHECKSUM_PARTIAL;
1383                 skb->csum_start = skb_transport_header(skb) - skb->head;
1384                 skb->csum_offset = offsetof(struct udphdr, check);
1385                 uh->check = ~csum_ipv6_magic(saddr, daddr,
1386                                              skb->len, IPPROTO_UDP, 0);
1387         }
1388
1389         __skb_push(skb, sizeof(*ip6h));
1390         skb_reset_network_header(skb);
1391         ip6h              = ipv6_hdr(skb);
1392         ip6h->version     = 6;
1393         ip6h->priority    = prio;
1394         ip6h->flow_lbl[0] = 0;
1395         ip6h->flow_lbl[1] = 0;
1396         ip6h->flow_lbl[2] = 0;
1397         ip6h->payload_len = htons(skb->len);
1398         ip6h->nexthdr     = IPPROTO_UDP;
1399         ip6h->hop_limit   = ttl;
1400         ip6h->daddr       = *daddr;
1401         ip6h->saddr       = *saddr;
1402
1403         vxlan_set_owner(vs->sock->sk, skb);
1404
1405         err = handle_offloads(skb);
1406         if (err)
1407                 return err;
1408
1409         ip6tunnel_xmit(skb, dev);
1410         return 0;
1411 }
1412 #endif
1413
1414 int vxlan_xmit_skb(struct net *net, struct vxlan_sock *vs,
1415                    struct rtable *rt, struct sk_buff *skb,
1416                    __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
1417                    __be16 src_port, __be16 dst_port, __be32 vni)
1418 {
1419         struct vxlanhdr *vxh;
1420         struct udphdr *uh;
1421         int min_headroom;
1422         int err;
1423
1424         if (!skb->encapsulation) {
1425                 skb_reset_inner_headers(skb);
1426                 skb->encapsulation = 1;
1427         }
1428
1429         min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
1430                         + VXLAN_HLEN + sizeof(struct iphdr)
1431                         + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1432
1433         /* Need space for new headers (invalidates iph ptr) */
1434         err = skb_cow_head(skb, min_headroom);
1435         if (unlikely(err))
1436                 return err;
1437
1438         if (vlan_tx_tag_present(skb)) {
1439                 if (WARN_ON(!__vlan_put_tag(skb,
1440                                             skb->vlan_proto,
1441                                             vlan_tx_tag_get(skb))))
1442                         return -ENOMEM;
1443
1444                 skb->vlan_tci = 0;
1445         }
1446
1447         vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1448         vxh->vx_flags = htonl(VXLAN_FLAGS);
1449         vxh->vx_vni = vni;
1450
1451         __skb_push(skb, sizeof(*uh));
1452         skb_reset_transport_header(skb);
1453         uh = udp_hdr(skb);
1454
1455         uh->dest = dst_port;
1456         uh->source = src_port;
1457
1458         uh->len = htons(skb->len);
1459         uh->check = 0;
1460
1461         vxlan_set_owner(vs->sock->sk, skb);
1462
1463         err = handle_offloads(skb);
1464         if (err)
1465                 return err;
1466
1467         return iptunnel_xmit(net, rt, skb, src, dst,
1468                         IPPROTO_UDP, tos, ttl, df);
1469 }
1470 EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1471
1472 /* Bypass encapsulation if the destination is local */
1473 static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1474                                struct vxlan_dev *dst_vxlan)
1475 {
1476         struct pcpu_tstats *tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1477         struct pcpu_tstats *rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
1478         union vxlan_addr loopback;
1479         union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
1480
1481         skb->pkt_type = PACKET_HOST;
1482         skb->encapsulation = 0;
1483         skb->dev = dst_vxlan->dev;
1484         __skb_pull(skb, skb_network_offset(skb));
1485
1486         if (remote_ip->sa.sa_family == AF_INET) {
1487                 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1488                 loopback.sa.sa_family =  AF_INET;
1489 #if IS_ENABLED(CONFIG_IPV6)
1490         } else {
1491                 loopback.sin6.sin6_addr = in6addr_loopback;
1492                 loopback.sa.sa_family =  AF_INET6;
1493 #endif
1494         }
1495
1496         if (dst_vxlan->flags & VXLAN_F_LEARN)
1497                 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
1498
1499         u64_stats_update_begin(&tx_stats->syncp);
1500         tx_stats->tx_packets++;
1501         tx_stats->tx_bytes += skb->len;
1502         u64_stats_update_end(&tx_stats->syncp);
1503
1504         if (netif_rx(skb) == NET_RX_SUCCESS) {
1505                 u64_stats_update_begin(&rx_stats->syncp);
1506                 rx_stats->rx_packets++;
1507                 rx_stats->rx_bytes += skb->len;
1508                 u64_stats_update_end(&rx_stats->syncp);
1509         } else {
1510                 skb->dev->stats.rx_dropped++;
1511         }
1512 }
1513
1514 static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1515                            struct vxlan_rdst *rdst, bool did_rsc)
1516 {
1517         struct vxlan_dev *vxlan = netdev_priv(dev);
1518         struct rtable *rt = NULL;
1519         const struct iphdr *old_iph;
1520         struct flowi4 fl4;
1521         union vxlan_addr *dst;
1522         __be16 src_port = 0, dst_port;
1523         u32 vni;
1524         __be16 df = 0;
1525         __u8 tos, ttl;
1526         int err;
1527
1528         dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
1529         vni = rdst->remote_vni;
1530         dst = &rdst->remote_ip;
1531
1532         if (vxlan_addr_any(dst)) {
1533                 if (did_rsc) {
1534                         /* short-circuited back to local bridge */
1535                         vxlan_encap_bypass(skb, vxlan, vxlan);
1536                         return;
1537                 }
1538                 goto drop;
1539         }
1540
1541         old_iph = ip_hdr(skb);
1542
1543         ttl = vxlan->ttl;
1544         if (!ttl && vxlan_addr_multicast(dst))
1545                 ttl = 1;
1546
1547         tos = vxlan->tos;
1548         if (tos == 1)
1549                 tos = ip_tunnel_get_dsfield(old_iph, skb);
1550
1551         src_port = vxlan_src_port(vxlan->port_min, vxlan->port_max, skb);
1552
1553         if (dst->sa.sa_family == AF_INET) {
1554                 memset(&fl4, 0, sizeof(fl4));
1555                 fl4.flowi4_oif = rdst->remote_ifindex;
1556                 fl4.flowi4_tos = RT_TOS(tos);
1557                 fl4.daddr = dst->sin.sin_addr.s_addr;
1558                 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
1559
1560                 rt = ip_route_output_key(dev_net(dev), &fl4);
1561                 if (IS_ERR(rt)) {
1562                         netdev_dbg(dev, "no route to %pI4\n",
1563                                    &dst->sin.sin_addr.s_addr);
1564                         dev->stats.tx_carrier_errors++;
1565                         goto tx_error;
1566                 }
1567
1568                 if (rt->dst.dev == dev) {
1569                         netdev_dbg(dev, "circular route to %pI4\n",
1570                                    &dst->sin.sin_addr.s_addr);
1571                         dev->stats.collisions++;
1572                         goto tx_error;
1573                 }
1574
1575                 /* Bypass encapsulation if the destination is local */
1576                 if (rt->rt_flags & RTCF_LOCAL &&
1577                     !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1578                         struct vxlan_dev *dst_vxlan;
1579
1580                         ip_rt_put(rt);
1581                         dst_vxlan = vxlan_find_vni(dev_net(dev), vni, dst_port);
1582                         if (!dst_vxlan)
1583                                 goto tx_error;
1584                         vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1585                         return;
1586                 }
1587
1588                 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1589                 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
1590
1591                 err = vxlan_xmit_skb(dev_net(dev), vxlan->vn_sock, rt, skb,
1592                                      fl4.saddr, dst->sin.sin_addr.s_addr,
1593                                      tos, ttl, df, src_port, dst_port,
1594                                      htonl(vni << 8));
1595
1596                 if (err < 0)
1597                         goto rt_tx_error;
1598                 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1599 #if IS_ENABLED(CONFIG_IPV6)
1600         } else {
1601                 struct sock *sk = vxlan->vn_sock->sock->sk;
1602                 struct dst_entry *ndst;
1603                 struct flowi6 fl6;
1604                 u32 flags;
1605
1606                 memset(&fl6, 0, sizeof(fl6));
1607                 fl6.flowi6_oif = rdst->remote_ifindex;
1608                 fl6.daddr = dst->sin6.sin6_addr;
1609                 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
1610                 fl6.flowi6_proto = skb->protocol;
1611
1612                 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
1613                         netdev_dbg(dev, "no route to %pI6\n",
1614                                    &dst->sin6.sin6_addr);
1615                         dev->stats.tx_carrier_errors++;
1616                         goto tx_error;
1617                 }
1618
1619                 if (ndst->dev == dev) {
1620                         netdev_dbg(dev, "circular route to %pI6\n",
1621                                    &dst->sin6.sin6_addr);
1622                         dst_release(ndst);
1623                         dev->stats.collisions++;
1624                         goto tx_error;
1625                 }
1626
1627                 /* Bypass encapsulation if the destination is local */
1628                 flags = ((struct rt6_info *)ndst)->rt6i_flags;
1629                 if (flags & RTF_LOCAL &&
1630                     !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1631                         struct vxlan_dev *dst_vxlan;
1632
1633                         dst_release(ndst);
1634                         dst_vxlan = vxlan_find_vni(dev_net(dev), vni, dst_port);
1635                         if (!dst_vxlan)
1636                                 goto tx_error;
1637                         vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1638                         return;
1639                 }
1640
1641                 ttl = ttl ? : ip6_dst_hoplimit(ndst);
1642
1643                 err = vxlan6_xmit_skb(dev_net(dev), vxlan->vn_sock, ndst, skb,
1644                                       dev, &fl6.saddr, &fl6.daddr, 0, ttl,
1645                                       src_port, dst_port, htonl(vni << 8));
1646 #endif
1647         }
1648
1649         return;
1650
1651 drop:
1652         dev->stats.tx_dropped++;
1653         goto tx_free;
1654
1655 rt_tx_error:
1656         ip_rt_put(rt);
1657 tx_error:
1658         dev->stats.tx_errors++;
1659 tx_free:
1660         dev_kfree_skb(skb);
1661 }
1662
1663 /* Transmit local packets over Vxlan
1664  *
1665  * Outer IP header inherits ECN and DF from inner header.
1666  * Outer UDP destination is the VXLAN assigned port.
1667  *           source port is based on hash of flow
1668  */
1669 static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1670 {
1671         struct vxlan_dev *vxlan = netdev_priv(dev);
1672         struct ethhdr *eth;
1673         bool did_rsc = false;
1674         struct vxlan_rdst *rdst;
1675         struct vxlan_fdb *f;
1676
1677         skb_reset_mac_header(skb);
1678         eth = eth_hdr(skb);
1679
1680         if ((vxlan->flags & VXLAN_F_PROXY) && ntohs(eth->h_proto) == ETH_P_ARP)
1681                 return arp_reduce(dev, skb);
1682
1683         f = vxlan_find_mac(vxlan, eth->h_dest);
1684         did_rsc = false;
1685
1686         if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
1687             (ntohs(eth->h_proto) == ETH_P_IP ||
1688              ntohs(eth->h_proto) == ETH_P_IPV6)) {
1689                 did_rsc = route_shortcircuit(dev, skb);
1690                 if (did_rsc)
1691                         f = vxlan_find_mac(vxlan, eth->h_dest);
1692         }
1693
1694         if (f == NULL) {
1695                 f = vxlan_find_mac(vxlan, all_zeros_mac);
1696                 if (f == NULL) {
1697                         if ((vxlan->flags & VXLAN_F_L2MISS) &&
1698                             !is_multicast_ether_addr(eth->h_dest))
1699                                 vxlan_fdb_miss(vxlan, eth->h_dest);
1700
1701                         dev->stats.tx_dropped++;
1702                         dev_kfree_skb(skb);
1703                         return NETDEV_TX_OK;
1704                 }
1705         }
1706
1707         list_for_each_entry_rcu(rdst, &f->remotes, list) {
1708                 struct sk_buff *skb1;
1709
1710                 skb1 = skb_clone(skb, GFP_ATOMIC);
1711                 if (skb1)
1712                         vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1713         }
1714
1715         dev_kfree_skb(skb);
1716         return NETDEV_TX_OK;
1717 }
1718
1719 /* Walk the forwarding table and purge stale entries */
1720 static void vxlan_cleanup(unsigned long arg)
1721 {
1722         struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
1723         unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
1724         unsigned int h;
1725
1726         if (!netif_running(vxlan->dev))
1727                 return;
1728
1729         spin_lock_bh(&vxlan->hash_lock);
1730         for (h = 0; h < FDB_HASH_SIZE; ++h) {
1731                 struct hlist_node *p, *n;
1732                 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1733                         struct vxlan_fdb *f
1734                                 = container_of(p, struct vxlan_fdb, hlist);
1735                         unsigned long timeout;
1736
1737                         if (f->state & NUD_PERMANENT)
1738                                 continue;
1739
1740                         timeout = f->used + vxlan->age_interval * HZ;
1741                         if (time_before_eq(timeout, jiffies)) {
1742                                 netdev_dbg(vxlan->dev,
1743                                            "garbage collect %pM\n",
1744                                            f->eth_addr);
1745                                 f->state = NUD_STALE;
1746                                 vxlan_fdb_destroy(vxlan, f);
1747                         } else if (time_before(timeout, next_timer))
1748                                 next_timer = timeout;
1749                 }
1750         }
1751         spin_unlock_bh(&vxlan->hash_lock);
1752
1753         mod_timer(&vxlan->age_timer, next_timer);
1754 }
1755
1756 static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
1757 {
1758         __u32 vni = vxlan->default_dst.remote_vni;
1759
1760         vxlan->vn_sock = vs;
1761         hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
1762 }
1763
1764 /* Setup stats when device is created */
1765 static int vxlan_init(struct net_device *dev)
1766 {
1767         struct vxlan_dev *vxlan = netdev_priv(dev);
1768         struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
1769         struct vxlan_sock *vs;
1770
1771         dev->tstats = alloc_percpu(struct pcpu_tstats);
1772         if (!dev->tstats)
1773                 return -ENOMEM;
1774
1775         spin_lock(&vn->sock_lock);
1776         vs = vxlan_find_sock(dev_net(dev), vxlan->dst_port);
1777         if (vs) {
1778                 /* If we have a socket with same port already, reuse it */
1779                 atomic_inc(&vs->refcnt);
1780                 vxlan_vs_add_dev(vs, vxlan);
1781         } else {
1782                 /* otherwise make new socket outside of RTNL */
1783                 dev_hold(dev);
1784                 queue_work(vxlan_wq, &vxlan->sock_work);
1785         }
1786         spin_unlock(&vn->sock_lock);
1787
1788         return 0;
1789 }
1790
1791 static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
1792 {
1793         struct vxlan_fdb *f;
1794
1795         spin_lock_bh(&vxlan->hash_lock);
1796         f = __vxlan_find_mac(vxlan, all_zeros_mac);
1797         if (f)
1798                 vxlan_fdb_destroy(vxlan, f);
1799         spin_unlock_bh(&vxlan->hash_lock);
1800 }
1801
1802 static void vxlan_uninit(struct net_device *dev)
1803 {
1804         struct vxlan_dev *vxlan = netdev_priv(dev);
1805         struct vxlan_sock *vs = vxlan->vn_sock;
1806
1807         vxlan_fdb_delete_default(vxlan);
1808
1809         if (vs)
1810                 vxlan_sock_release(vs);
1811         free_percpu(dev->tstats);
1812 }
1813
1814 /* Start ageing timer and join group when device is brought up */
1815 static int vxlan_open(struct net_device *dev)
1816 {
1817         struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
1818         struct vxlan_dev *vxlan = netdev_priv(dev);
1819         struct vxlan_sock *vs = vxlan->vn_sock;
1820
1821         /* socket hasn't been created */
1822         if (!vs)
1823                 return -ENOTCONN;
1824
1825         if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
1826             vxlan_group_used(vn, &vxlan->default_dst.remote_ip)) {
1827                 vxlan_sock_hold(vs);
1828                 dev_hold(dev);
1829                 queue_work(vxlan_wq, &vxlan->igmp_join);
1830         }
1831
1832         if (vxlan->age_interval)
1833                 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
1834
1835         return 0;
1836 }
1837
1838 /* Purge the forwarding table */
1839 static void vxlan_flush(struct vxlan_dev *vxlan)
1840 {
1841         unsigned int h;
1842
1843         spin_lock_bh(&vxlan->hash_lock);
1844         for (h = 0; h < FDB_HASH_SIZE; ++h) {
1845                 struct hlist_node *p, *n;
1846                 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1847                         struct vxlan_fdb *f
1848                                 = container_of(p, struct vxlan_fdb, hlist);
1849                         /* the all_zeros_mac entry is deleted at vxlan_uninit */
1850                         if (!is_zero_ether_addr(f->eth_addr))
1851                                 vxlan_fdb_destroy(vxlan, f);
1852                 }
1853         }
1854         spin_unlock_bh(&vxlan->hash_lock);
1855 }
1856
1857 /* Cleanup timer and forwarding table on shutdown */
1858 static int vxlan_stop(struct net_device *dev)
1859 {
1860         struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
1861         struct vxlan_dev *vxlan = netdev_priv(dev);
1862         struct vxlan_sock *vs = vxlan->vn_sock;
1863
1864         if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
1865             ! vxlan_group_used(vn, &vxlan->default_dst.remote_ip)) {
1866                 vxlan_sock_hold(vs);
1867                 dev_hold(dev);
1868                 queue_work(vxlan_wq, &vxlan->igmp_leave);
1869         }
1870
1871         del_timer_sync(&vxlan->age_timer);
1872
1873         vxlan_flush(vxlan);
1874
1875         return 0;
1876 }
1877
1878 /* Stub, nothing needs to be done. */
1879 static void vxlan_set_multicast_list(struct net_device *dev)
1880 {
1881 }
1882
1883 static const struct net_device_ops vxlan_netdev_ops = {
1884         .ndo_init               = vxlan_init,
1885         .ndo_uninit             = vxlan_uninit,
1886         .ndo_open               = vxlan_open,
1887         .ndo_stop               = vxlan_stop,
1888         .ndo_start_xmit         = vxlan_xmit,
1889         .ndo_get_stats64        = ip_tunnel_get_stats64,
1890         .ndo_set_rx_mode        = vxlan_set_multicast_list,
1891         .ndo_change_mtu         = eth_change_mtu,
1892         .ndo_validate_addr      = eth_validate_addr,
1893         .ndo_set_mac_address    = eth_mac_addr,
1894         .ndo_fdb_add            = vxlan_fdb_add,
1895         .ndo_fdb_del            = vxlan_fdb_delete,
1896         .ndo_fdb_dump           = vxlan_fdb_dump,
1897 };
1898
1899 /* Info for udev, that this is a virtual tunnel endpoint */
1900 static struct device_type vxlan_type = {
1901         .name = "vxlan",
1902 };
1903
1904 /* Initialize the device structure. */
1905 static void vxlan_setup(struct net_device *dev)
1906 {
1907         struct vxlan_dev *vxlan = netdev_priv(dev);
1908         unsigned int h;
1909         int low, high;
1910
1911         eth_hw_addr_random(dev);
1912         ether_setup(dev);
1913         if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
1914                 dev->hard_header_len = ETH_HLEN + VXLAN6_HEADROOM;
1915         else
1916                 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
1917
1918         dev->netdev_ops = &vxlan_netdev_ops;
1919         dev->destructor = free_netdev;
1920         SET_NETDEV_DEVTYPE(dev, &vxlan_type);
1921
1922         dev->tx_queue_len = 0;
1923         dev->features   |= NETIF_F_LLTX;
1924         dev->features   |= NETIF_F_NETNS_LOCAL;
1925         dev->features   |= NETIF_F_SG | NETIF_F_HW_CSUM;
1926         dev->features   |= NETIF_F_RXCSUM;
1927         dev->features   |= NETIF_F_GSO_SOFTWARE;
1928
1929         dev->vlan_features = dev->features;
1930         dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
1931         dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
1932         dev->hw_features |= NETIF_F_GSO_SOFTWARE;
1933         dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
1934         dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
1935         dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1936
1937         INIT_LIST_HEAD(&vxlan->next);
1938         spin_lock_init(&vxlan->hash_lock);
1939         INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
1940         INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
1941         INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
1942
1943         init_timer_deferrable(&vxlan->age_timer);
1944         vxlan->age_timer.function = vxlan_cleanup;
1945         vxlan->age_timer.data = (unsigned long) vxlan;
1946
1947         inet_get_local_port_range(&low, &high);
1948         vxlan->port_min = low;
1949         vxlan->port_max = high;
1950         vxlan->dst_port = htons(vxlan_port);
1951
1952         vxlan->dev = dev;
1953
1954         for (h = 0; h < FDB_HASH_SIZE; ++h)
1955                 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
1956 }
1957
1958 static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
1959         [IFLA_VXLAN_ID]         = { .type = NLA_U32 },
1960         [IFLA_VXLAN_GROUP]      = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
1961         [IFLA_VXLAN_GROUP6]     = { .len = sizeof(struct in6_addr) },
1962         [IFLA_VXLAN_LINK]       = { .type = NLA_U32 },
1963         [IFLA_VXLAN_LOCAL]      = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
1964         [IFLA_VXLAN_LOCAL6]     = { .len = sizeof(struct in6_addr) },
1965         [IFLA_VXLAN_TOS]        = { .type = NLA_U8 },
1966         [IFLA_VXLAN_TTL]        = { .type = NLA_U8 },
1967         [IFLA_VXLAN_LEARNING]   = { .type = NLA_U8 },
1968         [IFLA_VXLAN_AGEING]     = { .type = NLA_U32 },
1969         [IFLA_VXLAN_LIMIT]      = { .type = NLA_U32 },
1970         [IFLA_VXLAN_PORT_RANGE] = { .len  = sizeof(struct ifla_vxlan_port_range) },
1971         [IFLA_VXLAN_PROXY]      = { .type = NLA_U8 },
1972         [IFLA_VXLAN_RSC]        = { .type = NLA_U8 },
1973         [IFLA_VXLAN_L2MISS]     = { .type = NLA_U8 },
1974         [IFLA_VXLAN_L3MISS]     = { .type = NLA_U8 },
1975         [IFLA_VXLAN_PORT]       = { .type = NLA_U16 },
1976 };
1977
1978 static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
1979 {
1980         if (tb[IFLA_ADDRESS]) {
1981                 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
1982                         pr_debug("invalid link address (not ethernet)\n");
1983                         return -EINVAL;
1984                 }
1985
1986                 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
1987                         pr_debug("invalid all zero ethernet address\n");
1988                         return -EADDRNOTAVAIL;
1989                 }
1990         }
1991
1992         if (!data)
1993                 return -EINVAL;
1994
1995         if (data[IFLA_VXLAN_ID]) {
1996                 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
1997                 if (id >= VXLAN_VID_MASK)
1998                         return -ERANGE;
1999         }
2000
2001         if (data[IFLA_VXLAN_PORT_RANGE]) {
2002                 const struct ifla_vxlan_port_range *p
2003                         = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2004
2005                 if (ntohs(p->high) < ntohs(p->low)) {
2006                         pr_debug("port range %u .. %u not valid\n",
2007                                  ntohs(p->low), ntohs(p->high));
2008                         return -EINVAL;
2009                 }
2010         }
2011
2012         return 0;
2013 }
2014
2015 static void vxlan_get_drvinfo(struct net_device *netdev,
2016                               struct ethtool_drvinfo *drvinfo)
2017 {
2018         strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2019         strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2020 }
2021
2022 static const struct ethtool_ops vxlan_ethtool_ops = {
2023         .get_drvinfo    = vxlan_get_drvinfo,
2024         .get_link       = ethtool_op_get_link,
2025 };
2026
2027 static void vxlan_del_work(struct work_struct *work)
2028 {
2029         struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
2030
2031         sk_release_kernel(vs->sock->sk);
2032         kfree_rcu(vs, rcu);
2033 }
2034
2035 #if IS_ENABLED(CONFIG_IPV6)
2036 /* Create UDP socket for encapsulation receive. AF_INET6 socket
2037  * could be used for both IPv4 and IPv6 communications, but
2038  * users may set bindv6only=1.
2039  */
2040 static int create_v6_sock(struct net *net, __be16 port, struct socket **psock)
2041 {
2042         struct sock *sk;
2043         struct socket *sock;
2044         struct sockaddr_in6 vxlan_addr = {
2045                 .sin6_family = AF_INET6,
2046                 .sin6_port = port,
2047         };
2048         int rc, val = 1;
2049
2050         rc = sock_create_kern(AF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock);
2051         if (rc < 0) {
2052                 pr_debug("UDPv6 socket create failed\n");
2053                 return rc;
2054         }
2055
2056         /* Put in proper namespace */
2057         sk = sock->sk;
2058         sk_change_net(sk, net);
2059
2060         kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
2061                           (char *)&val, sizeof(val));
2062         rc = kernel_bind(sock, (struct sockaddr *)&vxlan_addr,
2063                          sizeof(struct sockaddr_in6));
2064         if (rc < 0) {
2065                 pr_debug("bind for UDPv6 socket %pI6:%u (%d)\n",
2066                          &vxlan_addr.sin6_addr, ntohs(vxlan_addr.sin6_port), rc);
2067                 sk_release_kernel(sk);
2068                 return rc;
2069         }
2070         /* At this point, IPv6 module should have been loaded in
2071          * sock_create_kern().
2072          */
2073         BUG_ON(!ipv6_stub);
2074
2075         *psock = sock;
2076         /* Disable multicast loopback */
2077         inet_sk(sk)->mc_loop = 0;
2078         return 0;
2079 }
2080
2081 #else
2082
2083 static int create_v6_sock(struct net *net, __be16 port, struct socket **psock)
2084 {
2085                 return -EPFNOSUPPORT;
2086 }
2087 #endif
2088
2089 static int create_v4_sock(struct net *net, __be16 port, struct socket **psock)
2090 {
2091         struct sock *sk;
2092         struct socket *sock;
2093         struct sockaddr_in vxlan_addr = {
2094                 .sin_family = AF_INET,
2095                 .sin_addr.s_addr = htonl(INADDR_ANY),
2096                 .sin_port = port,
2097         };
2098         int rc;
2099
2100         /* Create UDP socket for encapsulation receive. */
2101         rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
2102         if (rc < 0) {
2103                 pr_debug("UDP socket create failed\n");
2104                 return rc;
2105         }
2106
2107         /* Put in proper namespace */
2108         sk = sock->sk;
2109         sk_change_net(sk, net);
2110
2111         rc = kernel_bind(sock, (struct sockaddr *) &vxlan_addr,
2112                          sizeof(vxlan_addr));
2113         if (rc < 0) {
2114                 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
2115                          &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
2116                 sk_release_kernel(sk);
2117                 return rc;
2118         }
2119
2120         *psock = sock;
2121         /* Disable multicast loopback */
2122         inet_sk(sk)->mc_loop = 0;
2123         return 0;
2124 }
2125
2126 /* Create new listen socket if needed */
2127 static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
2128                                               vxlan_rcv_t *rcv, void *data, bool ipv6)
2129 {
2130         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2131         struct vxlan_sock *vs;
2132         struct socket *sock;
2133         struct sock *sk;
2134         int rc = 0;
2135         unsigned int h;
2136
2137         vs = kmalloc(sizeof(*vs), GFP_KERNEL);
2138         if (!vs)
2139                 return ERR_PTR(-ENOMEM);
2140
2141         for (h = 0; h < VNI_HASH_SIZE; ++h)
2142                 INIT_HLIST_HEAD(&vs->vni_list[h]);
2143
2144         INIT_WORK(&vs->del_work, vxlan_del_work);
2145
2146         if (ipv6)
2147                 rc = create_v6_sock(net, port, &sock);
2148         else
2149                 rc = create_v4_sock(net, port, &sock);
2150         if (rc < 0) {
2151                 kfree(vs);
2152                 return ERR_PTR(rc);
2153         }
2154
2155         vs->sock = sock;
2156         sk = sock->sk;
2157         atomic_set(&vs->refcnt, 1);
2158         vs->rcv = rcv;
2159         vs->data = data;
2160
2161         spin_lock(&vn->sock_lock);
2162         hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
2163         spin_unlock(&vn->sock_lock);
2164
2165         /* Mark socket as an encapsulation socket. */
2166         udp_sk(sk)->encap_type = 1;
2167         udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
2168 #if IS_ENABLED(CONFIG_IPV6)
2169         if (ipv6)
2170                 ipv6_stub->udpv6_encap_enable();
2171         else
2172 #endif
2173                 udp_encap_enable();
2174
2175         return vs;
2176 }
2177
2178 struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2179                                   vxlan_rcv_t *rcv, void *data,
2180                                   bool no_share, bool ipv6)
2181 {
2182         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2183         struct vxlan_sock *vs;
2184
2185         vs = vxlan_socket_create(net, port, rcv, data, ipv6);
2186         if (!IS_ERR(vs))
2187                 return vs;
2188
2189         if (no_share)   /* Return error if sharing is not allowed. */
2190                 return vs;
2191
2192         spin_lock(&vn->sock_lock);
2193         vs = vxlan_find_sock(net, port);
2194         if (vs) {
2195                 if (vs->rcv == rcv)
2196                         atomic_inc(&vs->refcnt);
2197                 else
2198                         vs = ERR_PTR(-EBUSY);
2199         }
2200         spin_unlock(&vn->sock_lock);
2201
2202         if (!vs)
2203                 vs = ERR_PTR(-EINVAL);
2204
2205         return vs;
2206 }
2207 EXPORT_SYMBOL_GPL(vxlan_sock_add);
2208
2209 /* Scheduled at device creation to bind to a socket */
2210 static void vxlan_sock_work(struct work_struct *work)
2211 {
2212         struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
2213         struct net *net = dev_net(vxlan->dev);
2214         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2215         __be16 port = vxlan->dst_port;
2216         struct vxlan_sock *nvs;
2217
2218         nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags & VXLAN_F_IPV6);
2219         spin_lock(&vn->sock_lock);
2220         if (!IS_ERR(nvs))
2221                 vxlan_vs_add_dev(nvs, vxlan);
2222         spin_unlock(&vn->sock_lock);
2223
2224         dev_put(vxlan->dev);
2225 }
2226
2227 static int vxlan_newlink(struct net *net, struct net_device *dev,
2228                          struct nlattr *tb[], struct nlattr *data[])
2229 {
2230         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2231         struct vxlan_dev *vxlan = netdev_priv(dev);
2232         struct vxlan_rdst *dst = &vxlan->default_dst;
2233         __u32 vni;
2234         int err;
2235         bool use_ipv6 = false;
2236
2237         if (!data[IFLA_VXLAN_ID])
2238                 return -EINVAL;
2239
2240         vni = nla_get_u32(data[IFLA_VXLAN_ID]);
2241         dst->remote_vni = vni;
2242
2243         if (data[IFLA_VXLAN_GROUP]) {
2244                 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
2245                 dst->remote_ip.sa.sa_family = AF_INET;
2246         } else if (data[IFLA_VXLAN_GROUP6]) {
2247                 if (!IS_ENABLED(CONFIG_IPV6))
2248                         return -EPFNOSUPPORT;
2249
2250                 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2251                            sizeof(struct in6_addr));
2252                 dst->remote_ip.sa.sa_family = AF_INET6;
2253                 use_ipv6 = true;
2254         }
2255
2256         if (data[IFLA_VXLAN_LOCAL]) {
2257                 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2258                 vxlan->saddr.sa.sa_family = AF_INET;
2259         } else if (data[IFLA_VXLAN_LOCAL6]) {
2260                 if (!IS_ENABLED(CONFIG_IPV6))
2261                         return -EPFNOSUPPORT;
2262
2263                 /* TODO: respect scope id */
2264                 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2265                            sizeof(struct in6_addr));
2266                 vxlan->saddr.sa.sa_family = AF_INET6;
2267                 use_ipv6 = true;
2268         }
2269
2270         if (data[IFLA_VXLAN_LINK] &&
2271             (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
2272                 struct net_device *lowerdev
2273                          = __dev_get_by_index(net, dst->remote_ifindex);
2274
2275                 if (!lowerdev) {
2276                         pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
2277                         return -ENODEV;
2278                 }
2279
2280 #if IS_ENABLED(CONFIG_IPV6)
2281                 if (use_ipv6) {
2282                         struct inet6_dev *idev = __in6_dev_get(lowerdev);
2283                         if (idev && idev->cnf.disable_ipv6) {
2284                                 pr_info("IPv6 is disabled via sysctl\n");
2285                                 return -EPERM;
2286                         }
2287                         vxlan->flags |= VXLAN_F_IPV6;
2288                 }
2289 #endif
2290
2291                 if (!tb[IFLA_MTU])
2292                         dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2293
2294                 /* update header length based on lower device */
2295                 dev->hard_header_len = lowerdev->hard_header_len +
2296                                        (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2297         }
2298
2299         if (data[IFLA_VXLAN_TOS])
2300                 vxlan->tos  = nla_get_u8(data[IFLA_VXLAN_TOS]);
2301
2302         if (data[IFLA_VXLAN_TTL])
2303                 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2304
2305         if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
2306                 vxlan->flags |= VXLAN_F_LEARN;
2307
2308         if (data[IFLA_VXLAN_AGEING])
2309                 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2310         else
2311                 vxlan->age_interval = FDB_AGE_DEFAULT;
2312
2313         if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2314                 vxlan->flags |= VXLAN_F_PROXY;
2315
2316         if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2317                 vxlan->flags |= VXLAN_F_RSC;
2318
2319         if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2320                 vxlan->flags |= VXLAN_F_L2MISS;
2321
2322         if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2323                 vxlan->flags |= VXLAN_F_L3MISS;
2324
2325         if (data[IFLA_VXLAN_LIMIT])
2326                 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2327
2328         if (data[IFLA_VXLAN_PORT_RANGE]) {
2329                 const struct ifla_vxlan_port_range *p
2330                         = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2331                 vxlan->port_min = ntohs(p->low);
2332                 vxlan->port_max = ntohs(p->high);
2333         }
2334
2335         if (data[IFLA_VXLAN_PORT])
2336                 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2337
2338         if (vxlan_find_vni(net, vni, vxlan->dst_port)) {
2339                 pr_info("duplicate VNI %u\n", vni);
2340                 return -EEXIST;
2341         }
2342
2343         SET_ETHTOOL_OPS(dev, &vxlan_ethtool_ops);
2344
2345         /* create an fdb entry for default destination */
2346         err = vxlan_fdb_create(vxlan, all_zeros_mac,
2347                                &vxlan->default_dst.remote_ip,
2348                                NUD_REACHABLE|NUD_PERMANENT,
2349                                NLM_F_EXCL|NLM_F_CREATE,
2350                                vxlan->dst_port, vxlan->default_dst.remote_vni,
2351                                vxlan->default_dst.remote_ifindex, NTF_SELF);
2352         if (err)
2353                 return err;
2354
2355         err = register_netdevice(dev);
2356         if (err) {
2357                 vxlan_fdb_delete_default(vxlan);
2358                 return err;
2359         }
2360
2361         list_add(&vxlan->next, &vn->vxlan_list);
2362
2363         return 0;
2364 }
2365
2366 static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2367 {
2368         struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
2369         struct vxlan_dev *vxlan = netdev_priv(dev);
2370
2371         spin_lock(&vn->sock_lock);
2372         if (!hlist_unhashed(&vxlan->hlist))
2373                 hlist_del_rcu(&vxlan->hlist);
2374         spin_unlock(&vn->sock_lock);
2375
2376         list_del(&vxlan->next);
2377         unregister_netdevice_queue(dev, head);
2378 }
2379
2380 static size_t vxlan_get_size(const struct net_device *dev)
2381 {
2382
2383         return nla_total_size(sizeof(__u32)) +  /* IFLA_VXLAN_ID */
2384                 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
2385                 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
2386                 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
2387                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_TTL */
2388                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_TOS */
2389                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_LEARNING */
2390                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_PROXY */
2391                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_RSC */
2392                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_L2MISS */
2393                 nla_total_size(sizeof(__u8)) +  /* IFLA_VXLAN_L3MISS */
2394                 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2395                 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
2396                 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
2397                 nla_total_size(sizeof(__be16))+ /* IFLA_VXLAN_PORT */
2398                 0;
2399 }
2400
2401 static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2402 {
2403         const struct vxlan_dev *vxlan = netdev_priv(dev);
2404         const struct vxlan_rdst *dst = &vxlan->default_dst;
2405         struct ifla_vxlan_port_range ports = {
2406                 .low =  htons(vxlan->port_min),
2407                 .high = htons(vxlan->port_max),
2408         };
2409
2410         if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
2411                 goto nla_put_failure;
2412
2413         if (!vxlan_addr_any(&dst->remote_ip)) {
2414                 if (dst->remote_ip.sa.sa_family == AF_INET) {
2415                         if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2416                                          dst->remote_ip.sin.sin_addr.s_addr))
2417                                 goto nla_put_failure;
2418 #if IS_ENABLED(CONFIG_IPV6)
2419                 } else {
2420                         if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2421                                     &dst->remote_ip.sin6.sin6_addr))
2422                                 goto nla_put_failure;
2423 #endif
2424                 }
2425         }
2426
2427         if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
2428                 goto nla_put_failure;
2429
2430         if (!vxlan_addr_any(&vxlan->saddr)) {
2431                 if (vxlan->saddr.sa.sa_family == AF_INET) {
2432                         if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2433                                          vxlan->saddr.sin.sin_addr.s_addr))
2434                                 goto nla_put_failure;
2435 #if IS_ENABLED(CONFIG_IPV6)
2436                 } else {
2437                         if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2438                                     &vxlan->saddr.sin6.sin6_addr))
2439                                 goto nla_put_failure;
2440 #endif
2441                 }
2442         }
2443
2444         if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2445             nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
2446             nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2447                         !!(vxlan->flags & VXLAN_F_LEARN)) ||
2448             nla_put_u8(skb, IFLA_VXLAN_PROXY,
2449                         !!(vxlan->flags & VXLAN_F_PROXY)) ||
2450             nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2451             nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2452                         !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2453             nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2454                         !!(vxlan->flags & VXLAN_F_L3MISS)) ||
2455             nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
2456             nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
2457             nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port))
2458                 goto nla_put_failure;
2459
2460         if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2461                 goto nla_put_failure;
2462
2463         return 0;
2464
2465 nla_put_failure:
2466         return -EMSGSIZE;
2467 }
2468
2469 static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2470         .kind           = "vxlan",
2471         .maxtype        = IFLA_VXLAN_MAX,
2472         .policy         = vxlan_policy,
2473         .priv_size      = sizeof(struct vxlan_dev),
2474         .setup          = vxlan_setup,
2475         .validate       = vxlan_validate,
2476         .newlink        = vxlan_newlink,
2477         .dellink        = vxlan_dellink,
2478         .get_size       = vxlan_get_size,
2479         .fill_info      = vxlan_fill_info,
2480 };
2481
2482 static __net_init int vxlan_init_net(struct net *net)
2483 {
2484         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2485         unsigned int h;
2486
2487         INIT_LIST_HEAD(&vn->vxlan_list);
2488         spin_lock_init(&vn->sock_lock);
2489
2490         for (h = 0; h < PORT_HASH_SIZE; ++h)
2491                 INIT_HLIST_HEAD(&vn->sock_list[h]);
2492
2493         return 0;
2494 }
2495
2496 static __net_exit void vxlan_exit_net(struct net *net)
2497 {
2498         struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2499         struct vxlan_dev *vxlan;
2500         LIST_HEAD(list);
2501
2502         rtnl_lock();
2503         list_for_each_entry(vxlan, &vn->vxlan_list, next)
2504                 unregister_netdevice_queue(vxlan->dev, &list);
2505         unregister_netdevice_many(&list);
2506         rtnl_unlock();
2507 }
2508
2509 static struct pernet_operations vxlan_net_ops = {
2510         .init = vxlan_init_net,
2511         .exit = vxlan_exit_net,
2512         .id   = &vxlan_net_id,
2513         .size = sizeof(struct vxlan_net),
2514 };
2515
2516 static int __init vxlan_init_module(void)
2517 {
2518         int rc;
2519
2520         vxlan_wq = alloc_workqueue("vxlan", 0, 0);
2521         if (!vxlan_wq)
2522                 return -ENOMEM;
2523
2524         get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
2525
2526         rc = register_pernet_device(&vxlan_net_ops);
2527         if (rc)
2528                 goto out1;
2529
2530         rc = rtnl_link_register(&vxlan_link_ops);
2531         if (rc)
2532                 goto out2;
2533
2534         return 0;
2535
2536 out2:
2537         unregister_pernet_device(&vxlan_net_ops);
2538 out1:
2539         destroy_workqueue(vxlan_wq);
2540         return rc;
2541 }
2542 late_initcall(vxlan_init_module);
2543
2544 static void __exit vxlan_cleanup_module(void)
2545 {
2546         rtnl_link_unregister(&vxlan_link_ops);
2547         destroy_workqueue(vxlan_wq);
2548         unregister_pernet_device(&vxlan_net_ops);
2549         rcu_barrier();
2550 }
2551 module_exit(vxlan_cleanup_module);
2552
2553 MODULE_LICENSE("GPL");
2554 MODULE_VERSION(VXLAN_VERSION);
2555 MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
2556 MODULE_ALIAS_RTNL_LINK("vxlan");