2 * VXLAN: Virtual eXtensible Local Area Network
4 * Copyright (c) 2012-2013 Vyatta Inc.
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.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
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>
31 #include <net/ndisc.h>
33 #include <net/ip_tunnels.h>
36 #include <net/udp_tunnel.h>
37 #include <net/rtnetlink.h>
38 #include <net/route.h>
39 #include <net/dsfield.h>
40 #include <net/inet_ecn.h>
41 #include <net/net_namespace.h>
42 #include <net/netns/generic.h>
43 #include <net/vxlan.h>
44 #include <net/protocol.h>
46 #if IS_ENABLED(CONFIG_IPV6)
48 #include <net/addrconf.h>
49 #include <net/ip6_tunnel.h>
50 #include <net/ip6_checksum.h>
52 #include <net/dst_metadata.h>
54 #define VXLAN_VERSION "0.1"
56 #define PORT_HASH_BITS 8
57 #define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
58 #define FDB_AGE_DEFAULT 300 /* 5 min */
59 #define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
61 /* UDP port for VXLAN traffic.
62 * The IANA assigned port is 4789, but the Linux default is 8472
63 * for compatibility with early adopters.
65 static unsigned short vxlan_port __read_mostly
= 8472;
66 module_param_named(udp_port
, vxlan_port
, ushort
, 0444);
67 MODULE_PARM_DESC(udp_port
, "Destination UDP port");
69 static bool log_ecn_error
= true;
70 module_param(log_ecn_error
, bool, 0644);
71 MODULE_PARM_DESC(log_ecn_error
, "Log packets received with corrupted ECN");
73 static int vxlan_net_id
;
74 static struct rtnl_link_ops vxlan_link_ops
;
76 static const u8 all_zeros_mac
[ETH_ALEN
+ 2];
78 static int vxlan_sock_add(struct vxlan_dev
*vxlan
);
80 /* per-network namespace private data for this module */
82 struct list_head vxlan_list
;
83 struct hlist_head sock_list
[PORT_HASH_SIZE
];
87 /* Forwarding table entry */
89 struct hlist_node hlist
; /* linked list of entries */
91 unsigned long updated
; /* jiffies */
93 struct list_head remotes
;
94 u8 eth_addr
[ETH_ALEN
];
95 u16 state
; /* see ndm_state */
96 u8 flags
; /* see ndm_flags */
99 /* salt for hash table */
100 static u32 vxlan_salt __read_mostly
;
102 static inline bool vxlan_collect_metadata(struct vxlan_sock
*vs
)
104 return vs
->flags
& VXLAN_F_COLLECT_METADATA
||
105 ip_tunnel_collect_metadata();
108 #if IS_ENABLED(CONFIG_IPV6)
110 bool vxlan_addr_equal(const union vxlan_addr
*a
, const union vxlan_addr
*b
)
112 if (a
->sa
.sa_family
!= b
->sa
.sa_family
)
114 if (a
->sa
.sa_family
== AF_INET6
)
115 return ipv6_addr_equal(&a
->sin6
.sin6_addr
, &b
->sin6
.sin6_addr
);
117 return a
->sin
.sin_addr
.s_addr
== b
->sin
.sin_addr
.s_addr
;
120 static inline bool vxlan_addr_any(const union vxlan_addr
*ipa
)
122 if (ipa
->sa
.sa_family
== AF_INET6
)
123 return ipv6_addr_any(&ipa
->sin6
.sin6_addr
);
125 return ipa
->sin
.sin_addr
.s_addr
== htonl(INADDR_ANY
);
128 static inline bool vxlan_addr_multicast(const union vxlan_addr
*ipa
)
130 if (ipa
->sa
.sa_family
== AF_INET6
)
131 return ipv6_addr_is_multicast(&ipa
->sin6
.sin6_addr
);
133 return IN_MULTICAST(ntohl(ipa
->sin
.sin_addr
.s_addr
));
136 static int vxlan_nla_get_addr(union vxlan_addr
*ip
, struct nlattr
*nla
)
138 if (nla_len(nla
) >= sizeof(struct in6_addr
)) {
139 ip
->sin6
.sin6_addr
= nla_get_in6_addr(nla
);
140 ip
->sa
.sa_family
= AF_INET6
;
142 } else if (nla_len(nla
) >= sizeof(__be32
)) {
143 ip
->sin
.sin_addr
.s_addr
= nla_get_in_addr(nla
);
144 ip
->sa
.sa_family
= AF_INET
;
147 return -EAFNOSUPPORT
;
151 static int vxlan_nla_put_addr(struct sk_buff
*skb
, int attr
,
152 const union vxlan_addr
*ip
)
154 if (ip
->sa
.sa_family
== AF_INET6
)
155 return nla_put_in6_addr(skb
, attr
, &ip
->sin6
.sin6_addr
);
157 return nla_put_in_addr(skb
, attr
, ip
->sin
.sin_addr
.s_addr
);
160 #else /* !CONFIG_IPV6 */
163 bool vxlan_addr_equal(const union vxlan_addr
*a
, const union vxlan_addr
*b
)
165 return a
->sin
.sin_addr
.s_addr
== b
->sin
.sin_addr
.s_addr
;
168 static inline bool vxlan_addr_any(const union vxlan_addr
*ipa
)
170 return ipa
->sin
.sin_addr
.s_addr
== htonl(INADDR_ANY
);
173 static inline bool vxlan_addr_multicast(const union vxlan_addr
*ipa
)
175 return IN_MULTICAST(ntohl(ipa
->sin
.sin_addr
.s_addr
));
178 static int vxlan_nla_get_addr(union vxlan_addr
*ip
, struct nlattr
*nla
)
180 if (nla_len(nla
) >= sizeof(struct in6_addr
)) {
181 return -EAFNOSUPPORT
;
182 } else if (nla_len(nla
) >= sizeof(__be32
)) {
183 ip
->sin
.sin_addr
.s_addr
= nla_get_in_addr(nla
);
184 ip
->sa
.sa_family
= AF_INET
;
187 return -EAFNOSUPPORT
;
191 static int vxlan_nla_put_addr(struct sk_buff
*skb
, int attr
,
192 const union vxlan_addr
*ip
)
194 return nla_put_in_addr(skb
, attr
, ip
->sin
.sin_addr
.s_addr
);
198 /* Virtual Network hash table head */
199 static inline struct hlist_head
*vni_head(struct vxlan_sock
*vs
, __be32 vni
)
201 return &vs
->vni_list
[hash_32((__force u32
)vni
, VNI_HASH_BITS
)];
204 /* Socket hash table head */
205 static inline struct hlist_head
*vs_head(struct net
*net
, __be16 port
)
207 struct vxlan_net
*vn
= net_generic(net
, vxlan_net_id
);
209 return &vn
->sock_list
[hash_32(ntohs(port
), PORT_HASH_BITS
)];
212 /* First remote destination for a forwarding entry.
213 * Guaranteed to be non-NULL because remotes are never deleted.
215 static inline struct vxlan_rdst
*first_remote_rcu(struct vxlan_fdb
*fdb
)
217 return list_entry_rcu(fdb
->remotes
.next
, struct vxlan_rdst
, list
);
220 static inline struct vxlan_rdst
*first_remote_rtnl(struct vxlan_fdb
*fdb
)
222 return list_first_entry(&fdb
->remotes
, struct vxlan_rdst
, list
);
225 /* Find VXLAN socket based on network namespace, address family and UDP port
226 * and enabled unshareable flags.
228 static struct vxlan_sock
*vxlan_find_sock(struct net
*net
, sa_family_t family
,
229 __be16 port
, u32 flags
)
231 struct vxlan_sock
*vs
;
233 flags
&= VXLAN_F_RCV_FLAGS
;
235 hlist_for_each_entry_rcu(vs
, vs_head(net
, port
), hlist
) {
236 if (inet_sk(vs
->sock
->sk
)->inet_sport
== port
&&
237 vxlan_get_sk_family(vs
) == family
&&
244 static struct vxlan_dev
*vxlan_vs_find_vni(struct vxlan_sock
*vs
, __be32 vni
)
246 struct vxlan_dev
*vxlan
;
248 /* For flow based devices, map all packets to VNI 0 */
249 if (vs
->flags
& VXLAN_F_COLLECT_METADATA
)
252 hlist_for_each_entry_rcu(vxlan
, vni_head(vs
, vni
), hlist
) {
253 if (vxlan
->default_dst
.remote_vni
== vni
)
260 /* Look up VNI in a per net namespace table */
261 static struct vxlan_dev
*vxlan_find_vni(struct net
*net
, __be32 vni
,
262 sa_family_t family
, __be16 port
,
265 struct vxlan_sock
*vs
;
267 vs
= vxlan_find_sock(net
, family
, port
, flags
);
271 return vxlan_vs_find_vni(vs
, vni
);
274 /* Fill in neighbour message in skbuff. */
275 static int vxlan_fdb_info(struct sk_buff
*skb
, struct vxlan_dev
*vxlan
,
276 const struct vxlan_fdb
*fdb
,
277 u32 portid
, u32 seq
, int type
, unsigned int flags
,
278 const struct vxlan_rdst
*rdst
)
280 unsigned long now
= jiffies
;
281 struct nda_cacheinfo ci
;
282 struct nlmsghdr
*nlh
;
284 bool send_ip
, send_eth
;
286 nlh
= nlmsg_put(skb
, portid
, seq
, type
, sizeof(*ndm
), flags
);
290 ndm
= nlmsg_data(nlh
);
291 memset(ndm
, 0, sizeof(*ndm
));
293 send_eth
= send_ip
= true;
295 if (type
== RTM_GETNEIGH
) {
296 ndm
->ndm_family
= AF_INET
;
297 send_ip
= !vxlan_addr_any(&rdst
->remote_ip
);
298 send_eth
= !is_zero_ether_addr(fdb
->eth_addr
);
300 ndm
->ndm_family
= AF_BRIDGE
;
301 ndm
->ndm_state
= fdb
->state
;
302 ndm
->ndm_ifindex
= vxlan
->dev
->ifindex
;
303 ndm
->ndm_flags
= fdb
->flags
;
304 ndm
->ndm_type
= RTN_UNICAST
;
306 if (!net_eq(dev_net(vxlan
->dev
), vxlan
->net
) &&
307 nla_put_s32(skb
, NDA_LINK_NETNSID
,
308 peernet2id_alloc(dev_net(vxlan
->dev
), vxlan
->net
)))
309 goto nla_put_failure
;
311 if (send_eth
&& nla_put(skb
, NDA_LLADDR
, ETH_ALEN
, &fdb
->eth_addr
))
312 goto nla_put_failure
;
314 if (send_ip
&& vxlan_nla_put_addr(skb
, NDA_DST
, &rdst
->remote_ip
))
315 goto nla_put_failure
;
317 if (rdst
->remote_port
&& rdst
->remote_port
!= vxlan
->cfg
.dst_port
&&
318 nla_put_be16(skb
, NDA_PORT
, rdst
->remote_port
))
319 goto nla_put_failure
;
320 if (rdst
->remote_vni
!= vxlan
->default_dst
.remote_vni
&&
321 nla_put_u32(skb
, NDA_VNI
, be32_to_cpu(rdst
->remote_vni
)))
322 goto nla_put_failure
;
323 if (rdst
->remote_ifindex
&&
324 nla_put_u32(skb
, NDA_IFINDEX
, rdst
->remote_ifindex
))
325 goto nla_put_failure
;
327 ci
.ndm_used
= jiffies_to_clock_t(now
- fdb
->used
);
328 ci
.ndm_confirmed
= 0;
329 ci
.ndm_updated
= jiffies_to_clock_t(now
- fdb
->updated
);
332 if (nla_put(skb
, NDA_CACHEINFO
, sizeof(ci
), &ci
))
333 goto nla_put_failure
;
339 nlmsg_cancel(skb
, nlh
);
343 static inline size_t vxlan_nlmsg_size(void)
345 return NLMSG_ALIGN(sizeof(struct ndmsg
))
346 + nla_total_size(ETH_ALEN
) /* NDA_LLADDR */
347 + nla_total_size(sizeof(struct in6_addr
)) /* NDA_DST */
348 + nla_total_size(sizeof(__be16
)) /* NDA_PORT */
349 + nla_total_size(sizeof(__be32
)) /* NDA_VNI */
350 + nla_total_size(sizeof(__u32
)) /* NDA_IFINDEX */
351 + nla_total_size(sizeof(__s32
)) /* NDA_LINK_NETNSID */
352 + nla_total_size(sizeof(struct nda_cacheinfo
));
355 static void vxlan_fdb_notify(struct vxlan_dev
*vxlan
, struct vxlan_fdb
*fdb
,
356 struct vxlan_rdst
*rd
, int type
)
358 struct net
*net
= dev_net(vxlan
->dev
);
362 skb
= nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC
);
366 err
= vxlan_fdb_info(skb
, vxlan
, fdb
, 0, 0, type
, 0, rd
);
368 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
369 WARN_ON(err
== -EMSGSIZE
);
374 rtnl_notify(skb
, net
, 0, RTNLGRP_NEIGH
, NULL
, GFP_ATOMIC
);
378 rtnl_set_sk_err(net
, RTNLGRP_NEIGH
, err
);
381 static void vxlan_ip_miss(struct net_device
*dev
, union vxlan_addr
*ipa
)
383 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
384 struct vxlan_fdb f
= {
387 struct vxlan_rdst remote
= {
388 .remote_ip
= *ipa
, /* goes to NDA_DST */
389 .remote_vni
= cpu_to_be32(VXLAN_N_VID
),
392 vxlan_fdb_notify(vxlan
, &f
, &remote
, RTM_GETNEIGH
);
395 static void vxlan_fdb_miss(struct vxlan_dev
*vxlan
, const u8 eth_addr
[ETH_ALEN
])
397 struct vxlan_fdb f
= {
400 struct vxlan_rdst remote
= { };
402 memcpy(f
.eth_addr
, eth_addr
, ETH_ALEN
);
404 vxlan_fdb_notify(vxlan
, &f
, &remote
, RTM_GETNEIGH
);
407 /* Hash Ethernet address */
408 static u32
eth_hash(const unsigned char *addr
)
410 u64 value
= get_unaligned((u64
*)addr
);
412 /* only want 6 bytes */
418 return hash_64(value
, FDB_HASH_BITS
);
421 /* Hash chain to use given mac address */
422 static inline struct hlist_head
*vxlan_fdb_head(struct vxlan_dev
*vxlan
,
425 return &vxlan
->fdb_head
[eth_hash(mac
)];
428 /* Look up Ethernet address in forwarding table */
429 static struct vxlan_fdb
*__vxlan_find_mac(struct vxlan_dev
*vxlan
,
432 struct hlist_head
*head
= vxlan_fdb_head(vxlan
, mac
);
435 hlist_for_each_entry_rcu(f
, head
, hlist
) {
436 if (ether_addr_equal(mac
, f
->eth_addr
))
443 static struct vxlan_fdb
*vxlan_find_mac(struct vxlan_dev
*vxlan
,
448 f
= __vxlan_find_mac(vxlan
, mac
);
455 /* caller should hold vxlan->hash_lock */
456 static struct vxlan_rdst
*vxlan_fdb_find_rdst(struct vxlan_fdb
*f
,
457 union vxlan_addr
*ip
, __be16 port
,
458 __be32 vni
, __u32 ifindex
)
460 struct vxlan_rdst
*rd
;
462 list_for_each_entry(rd
, &f
->remotes
, list
) {
463 if (vxlan_addr_equal(&rd
->remote_ip
, ip
) &&
464 rd
->remote_port
== port
&&
465 rd
->remote_vni
== vni
&&
466 rd
->remote_ifindex
== ifindex
)
473 /* Replace destination of unicast mac */
474 static int vxlan_fdb_replace(struct vxlan_fdb
*f
,
475 union vxlan_addr
*ip
, __be16 port
, __be32 vni
,
478 struct vxlan_rdst
*rd
;
480 rd
= vxlan_fdb_find_rdst(f
, ip
, port
, vni
, ifindex
);
484 rd
= list_first_entry_or_null(&f
->remotes
, struct vxlan_rdst
, list
);
488 dst_cache_reset(&rd
->dst_cache
);
490 rd
->remote_port
= port
;
491 rd
->remote_vni
= vni
;
492 rd
->remote_ifindex
= ifindex
;
496 /* Add/update destinations for multicast */
497 static int vxlan_fdb_append(struct vxlan_fdb
*f
,
498 union vxlan_addr
*ip
, __be16 port
, __be32 vni
,
499 __u32 ifindex
, struct vxlan_rdst
**rdp
)
501 struct vxlan_rdst
*rd
;
503 rd
= vxlan_fdb_find_rdst(f
, ip
, port
, vni
, ifindex
);
507 rd
= kmalloc(sizeof(*rd
), GFP_ATOMIC
);
511 if (dst_cache_init(&rd
->dst_cache
, GFP_ATOMIC
)) {
517 rd
->remote_port
= port
;
518 rd
->remote_vni
= vni
;
519 rd
->remote_ifindex
= ifindex
;
521 list_add_tail_rcu(&rd
->list
, &f
->remotes
);
527 static struct vxlanhdr
*vxlan_gro_remcsum(struct sk_buff
*skb
,
529 struct vxlanhdr
*vh
, size_t hdrlen
,
531 struct gro_remcsum
*grc
,
534 size_t start
, offset
;
536 if (skb
->remcsum_offload
)
539 if (!NAPI_GRO_CB(skb
)->csum_valid
)
542 start
= vxlan_rco_start(vni_field
);
543 offset
= start
+ vxlan_rco_offset(vni_field
);
545 vh
= skb_gro_remcsum_process(skb
, (void *)vh
, off
, hdrlen
,
546 start
, offset
, grc
, nopartial
);
548 skb
->remcsum_offload
= 1;
553 static struct sk_buff
**vxlan_gro_receive(struct sock
*sk
,
554 struct sk_buff
**head
,
557 struct sk_buff
*p
, **pp
= NULL
;
558 struct vxlanhdr
*vh
, *vh2
;
559 unsigned int hlen
, off_vx
;
561 struct vxlan_sock
*vs
= rcu_dereference_sk_user_data(sk
);
563 struct gro_remcsum grc
;
565 skb_gro_remcsum_init(&grc
);
567 off_vx
= skb_gro_offset(skb
);
568 hlen
= off_vx
+ sizeof(*vh
);
569 vh
= skb_gro_header_fast(skb
, off_vx
);
570 if (skb_gro_header_hard(skb
, hlen
)) {
571 vh
= skb_gro_header_slow(skb
, hlen
, off_vx
);
576 skb_gro_postpull_rcsum(skb
, vh
, sizeof(struct vxlanhdr
));
578 flags
= vh
->vx_flags
;
580 if ((flags
& VXLAN_HF_RCO
) && (vs
->flags
& VXLAN_F_REMCSUM_RX
)) {
581 vh
= vxlan_gro_remcsum(skb
, off_vx
, vh
, sizeof(struct vxlanhdr
),
584 VXLAN_F_REMCSUM_NOPARTIAL
));
590 skb_gro_pull(skb
, sizeof(struct vxlanhdr
)); /* pull vxlan header */
592 for (p
= *head
; p
; p
= p
->next
) {
593 if (!NAPI_GRO_CB(p
)->same_flow
)
596 vh2
= (struct vxlanhdr
*)(p
->data
+ off_vx
);
597 if (vh
->vx_flags
!= vh2
->vx_flags
||
598 vh
->vx_vni
!= vh2
->vx_vni
) {
599 NAPI_GRO_CB(p
)->same_flow
= 0;
604 pp
= eth_gro_receive(head
, skb
);
608 skb_gro_remcsum_cleanup(skb
, &grc
);
609 NAPI_GRO_CB(skb
)->flush
|= flush
;
614 static int vxlan_gro_complete(struct sock
*sk
, struct sk_buff
*skb
, int nhoff
)
616 /* Sets 'skb->inner_mac_header' since we are always called with
617 * 'skb->encapsulation' set.
619 return eth_gro_complete(skb
, nhoff
+ sizeof(struct vxlanhdr
));
622 /* Notify netdevs that UDP port started listening */
623 static void vxlan_notify_add_rx_port(struct vxlan_sock
*vs
)
625 struct net_device
*dev
;
626 struct sock
*sk
= vs
->sock
->sk
;
627 struct net
*net
= sock_net(sk
);
628 sa_family_t sa_family
= vxlan_get_sk_family(vs
);
629 __be16 port
= inet_sk(sk
)->inet_sport
;
632 for_each_netdev_rcu(net
, dev
) {
633 if (dev
->netdev_ops
->ndo_add_vxlan_port
)
634 dev
->netdev_ops
->ndo_add_vxlan_port(dev
, sa_family
,
640 /* Notify netdevs that UDP port is no more listening */
641 static void vxlan_notify_del_rx_port(struct vxlan_sock
*vs
)
643 struct net_device
*dev
;
644 struct sock
*sk
= vs
->sock
->sk
;
645 struct net
*net
= sock_net(sk
);
646 sa_family_t sa_family
= vxlan_get_sk_family(vs
);
647 __be16 port
= inet_sk(sk
)->inet_sport
;
650 for_each_netdev_rcu(net
, dev
) {
651 if (dev
->netdev_ops
->ndo_del_vxlan_port
)
652 dev
->netdev_ops
->ndo_del_vxlan_port(dev
, sa_family
,
658 /* Add new entry to forwarding table -- assumes lock held */
659 static int vxlan_fdb_create(struct vxlan_dev
*vxlan
,
660 const u8
*mac
, union vxlan_addr
*ip
,
661 __u16 state
, __u16 flags
,
662 __be16 port
, __be32 vni
, __u32 ifindex
,
665 struct vxlan_rdst
*rd
= NULL
;
669 f
= __vxlan_find_mac(vxlan
, mac
);
671 if (flags
& NLM_F_EXCL
) {
672 netdev_dbg(vxlan
->dev
,
673 "lost race to create %pM\n", mac
);
676 if (f
->state
!= state
) {
678 f
->updated
= jiffies
;
681 if (f
->flags
!= ndm_flags
) {
682 f
->flags
= ndm_flags
;
683 f
->updated
= jiffies
;
686 if ((flags
& NLM_F_REPLACE
)) {
687 /* Only change unicasts */
688 if (!(is_multicast_ether_addr(f
->eth_addr
) ||
689 is_zero_ether_addr(f
->eth_addr
))) {
690 notify
|= vxlan_fdb_replace(f
, ip
, port
, vni
,
695 if ((flags
& NLM_F_APPEND
) &&
696 (is_multicast_ether_addr(f
->eth_addr
) ||
697 is_zero_ether_addr(f
->eth_addr
))) {
698 int rc
= vxlan_fdb_append(f
, ip
, port
, vni
, ifindex
,
706 if (!(flags
& NLM_F_CREATE
))
709 if (vxlan
->cfg
.addrmax
&&
710 vxlan
->addrcnt
>= vxlan
->cfg
.addrmax
)
713 /* Disallow replace to add a multicast entry */
714 if ((flags
& NLM_F_REPLACE
) &&
715 (is_multicast_ether_addr(mac
) || is_zero_ether_addr(mac
)))
718 netdev_dbg(vxlan
->dev
, "add %pM -> %pIS\n", mac
, ip
);
719 f
= kmalloc(sizeof(*f
), GFP_ATOMIC
);
725 f
->flags
= ndm_flags
;
726 f
->updated
= f
->used
= jiffies
;
727 INIT_LIST_HEAD(&f
->remotes
);
728 memcpy(f
->eth_addr
, mac
, ETH_ALEN
);
730 vxlan_fdb_append(f
, ip
, port
, vni
, ifindex
, &rd
);
733 hlist_add_head_rcu(&f
->hlist
,
734 vxlan_fdb_head(vxlan
, mac
));
739 rd
= first_remote_rtnl(f
);
740 vxlan_fdb_notify(vxlan
, f
, rd
, RTM_NEWNEIGH
);
746 static void vxlan_fdb_free(struct rcu_head
*head
)
748 struct vxlan_fdb
*f
= container_of(head
, struct vxlan_fdb
, rcu
);
749 struct vxlan_rdst
*rd
, *nd
;
751 list_for_each_entry_safe(rd
, nd
, &f
->remotes
, list
) {
752 dst_cache_destroy(&rd
->dst_cache
);
758 static void vxlan_fdb_destroy(struct vxlan_dev
*vxlan
, struct vxlan_fdb
*f
)
760 netdev_dbg(vxlan
->dev
,
761 "delete %pM\n", f
->eth_addr
);
764 vxlan_fdb_notify(vxlan
, f
, first_remote_rtnl(f
), RTM_DELNEIGH
);
766 hlist_del_rcu(&f
->hlist
);
767 call_rcu(&f
->rcu
, vxlan_fdb_free
);
770 static int vxlan_fdb_parse(struct nlattr
*tb
[], struct vxlan_dev
*vxlan
,
771 union vxlan_addr
*ip
, __be16
*port
, __be32
*vni
,
774 struct net
*net
= dev_net(vxlan
->dev
);
778 err
= vxlan_nla_get_addr(ip
, tb
[NDA_DST
]);
782 union vxlan_addr
*remote
= &vxlan
->default_dst
.remote_ip
;
783 if (remote
->sa
.sa_family
== AF_INET
) {
784 ip
->sin
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
785 ip
->sa
.sa_family
= AF_INET
;
786 #if IS_ENABLED(CONFIG_IPV6)
788 ip
->sin6
.sin6_addr
= in6addr_any
;
789 ip
->sa
.sa_family
= AF_INET6
;
795 if (nla_len(tb
[NDA_PORT
]) != sizeof(__be16
))
797 *port
= nla_get_be16(tb
[NDA_PORT
]);
799 *port
= vxlan
->cfg
.dst_port
;
803 if (nla_len(tb
[NDA_VNI
]) != sizeof(u32
))
805 *vni
= cpu_to_be32(nla_get_u32(tb
[NDA_VNI
]));
807 *vni
= vxlan
->default_dst
.remote_vni
;
810 if (tb
[NDA_IFINDEX
]) {
811 struct net_device
*tdev
;
813 if (nla_len(tb
[NDA_IFINDEX
]) != sizeof(u32
))
815 *ifindex
= nla_get_u32(tb
[NDA_IFINDEX
]);
816 tdev
= __dev_get_by_index(net
, *ifindex
);
818 return -EADDRNOTAVAIL
;
826 /* Add static entry (via netlink) */
827 static int vxlan_fdb_add(struct ndmsg
*ndm
, struct nlattr
*tb
[],
828 struct net_device
*dev
,
829 const unsigned char *addr
, u16 vid
, u16 flags
)
831 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
832 /* struct net *net = dev_net(vxlan->dev); */
839 if (!(ndm
->ndm_state
& (NUD_PERMANENT
|NUD_REACHABLE
))) {
840 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
845 if (tb
[NDA_DST
] == NULL
)
848 err
= vxlan_fdb_parse(tb
, vxlan
, &ip
, &port
, &vni
, &ifindex
);
852 if (vxlan
->default_dst
.remote_ip
.sa
.sa_family
!= ip
.sa
.sa_family
)
853 return -EAFNOSUPPORT
;
855 spin_lock_bh(&vxlan
->hash_lock
);
856 err
= vxlan_fdb_create(vxlan
, addr
, &ip
, ndm
->ndm_state
, flags
,
857 port
, vni
, ifindex
, ndm
->ndm_flags
);
858 spin_unlock_bh(&vxlan
->hash_lock
);
863 /* Delete entry (via netlink) */
864 static int vxlan_fdb_delete(struct ndmsg
*ndm
, struct nlattr
*tb
[],
865 struct net_device
*dev
,
866 const unsigned char *addr
, u16 vid
)
868 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
870 struct vxlan_rdst
*rd
= NULL
;
877 err
= vxlan_fdb_parse(tb
, vxlan
, &ip
, &port
, &vni
, &ifindex
);
883 spin_lock_bh(&vxlan
->hash_lock
);
884 f
= vxlan_find_mac(vxlan
, addr
);
888 if (!vxlan_addr_any(&ip
)) {
889 rd
= vxlan_fdb_find_rdst(f
, &ip
, port
, vni
, ifindex
);
896 /* remove a destination if it's not the only one on the list,
897 * otherwise destroy the fdb entry
899 if (rd
&& !list_is_singular(&f
->remotes
)) {
900 list_del_rcu(&rd
->list
);
901 vxlan_fdb_notify(vxlan
, f
, rd
, RTM_DELNEIGH
);
906 vxlan_fdb_destroy(vxlan
, f
);
909 spin_unlock_bh(&vxlan
->hash_lock
);
914 /* Dump forwarding table */
915 static int vxlan_fdb_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
,
916 struct net_device
*dev
,
917 struct net_device
*filter_dev
, int idx
)
919 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
922 for (h
= 0; h
< FDB_HASH_SIZE
; ++h
) {
926 hlist_for_each_entry_rcu(f
, &vxlan
->fdb_head
[h
], hlist
) {
927 struct vxlan_rdst
*rd
;
929 list_for_each_entry_rcu(rd
, &f
->remotes
, list
) {
930 if (idx
< cb
->args
[0])
933 err
= vxlan_fdb_info(skb
, vxlan
, f
,
934 NETLINK_CB(cb
->skb
).portid
,
951 /* Watch incoming packets to learn mapping between Ethernet address
952 * and Tunnel endpoint.
953 * Return true if packet is bogus and should be dropped.
955 static bool vxlan_snoop(struct net_device
*dev
,
956 union vxlan_addr
*src_ip
, const u8
*src_mac
)
958 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
961 f
= vxlan_find_mac(vxlan
, src_mac
);
963 struct vxlan_rdst
*rdst
= first_remote_rcu(f
);
965 if (likely(vxlan_addr_equal(&rdst
->remote_ip
, src_ip
)))
968 /* Don't migrate static entries, drop packets */
969 if (f
->state
& NUD_NOARP
)
974 "%pM migrated from %pIS to %pIS\n",
975 src_mac
, &rdst
->remote_ip
.sa
, &src_ip
->sa
);
977 rdst
->remote_ip
= *src_ip
;
978 f
->updated
= jiffies
;
979 vxlan_fdb_notify(vxlan
, f
, rdst
, RTM_NEWNEIGH
);
981 /* learned new entry */
982 spin_lock(&vxlan
->hash_lock
);
984 /* close off race between vxlan_flush and incoming packets */
985 if (netif_running(dev
))
986 vxlan_fdb_create(vxlan
, src_mac
, src_ip
,
988 NLM_F_EXCL
|NLM_F_CREATE
,
990 vxlan
->default_dst
.remote_vni
,
992 spin_unlock(&vxlan
->hash_lock
);
998 /* See if multicast group is already in use by other ID */
999 static bool vxlan_group_used(struct vxlan_net
*vn
, struct vxlan_dev
*dev
)
1001 struct vxlan_dev
*vxlan
;
1002 unsigned short family
= dev
->default_dst
.remote_ip
.sa
.sa_family
;
1004 /* The vxlan_sock is only used by dev, leaving group has
1005 * no effect on other vxlan devices.
1007 if (family
== AF_INET
&& dev
->vn4_sock
&&
1008 atomic_read(&dev
->vn4_sock
->refcnt
) == 1)
1010 #if IS_ENABLED(CONFIG_IPV6)
1011 if (family
== AF_INET6
&& dev
->vn6_sock
&&
1012 atomic_read(&dev
->vn6_sock
->refcnt
) == 1)
1016 list_for_each_entry(vxlan
, &vn
->vxlan_list
, next
) {
1017 if (!netif_running(vxlan
->dev
) || vxlan
== dev
)
1020 if (family
== AF_INET
&& vxlan
->vn4_sock
!= dev
->vn4_sock
)
1022 #if IS_ENABLED(CONFIG_IPV6)
1023 if (family
== AF_INET6
&& vxlan
->vn6_sock
!= dev
->vn6_sock
)
1027 if (!vxlan_addr_equal(&vxlan
->default_dst
.remote_ip
,
1028 &dev
->default_dst
.remote_ip
))
1031 if (vxlan
->default_dst
.remote_ifindex
!=
1032 dev
->default_dst
.remote_ifindex
)
1041 static bool __vxlan_sock_release_prep(struct vxlan_sock
*vs
)
1043 struct vxlan_net
*vn
;
1047 if (!atomic_dec_and_test(&vs
->refcnt
))
1050 vn
= net_generic(sock_net(vs
->sock
->sk
), vxlan_net_id
);
1051 spin_lock(&vn
->sock_lock
);
1052 hlist_del_rcu(&vs
->hlist
);
1053 vxlan_notify_del_rx_port(vs
);
1054 spin_unlock(&vn
->sock_lock
);
1059 static void vxlan_sock_release(struct vxlan_dev
*vxlan
)
1061 bool ipv4
= __vxlan_sock_release_prep(vxlan
->vn4_sock
);
1062 #if IS_ENABLED(CONFIG_IPV6)
1063 bool ipv6
= __vxlan_sock_release_prep(vxlan
->vn6_sock
);
1069 udp_tunnel_sock_release(vxlan
->vn4_sock
->sock
);
1070 kfree(vxlan
->vn4_sock
);
1073 #if IS_ENABLED(CONFIG_IPV6)
1075 udp_tunnel_sock_release(vxlan
->vn6_sock
->sock
);
1076 kfree(vxlan
->vn6_sock
);
1081 /* Update multicast group membership when first VNI on
1082 * multicast address is brought up
1084 static int vxlan_igmp_join(struct vxlan_dev
*vxlan
)
1087 union vxlan_addr
*ip
= &vxlan
->default_dst
.remote_ip
;
1088 int ifindex
= vxlan
->default_dst
.remote_ifindex
;
1091 if (ip
->sa
.sa_family
== AF_INET
) {
1092 struct ip_mreqn mreq
= {
1093 .imr_multiaddr
.s_addr
= ip
->sin
.sin_addr
.s_addr
,
1094 .imr_ifindex
= ifindex
,
1097 sk
= vxlan
->vn4_sock
->sock
->sk
;
1099 ret
= ip_mc_join_group(sk
, &mreq
);
1101 #if IS_ENABLED(CONFIG_IPV6)
1103 sk
= vxlan
->vn6_sock
->sock
->sk
;
1105 ret
= ipv6_stub
->ipv6_sock_mc_join(sk
, ifindex
,
1106 &ip
->sin6
.sin6_addr
);
1114 /* Inverse of vxlan_igmp_join when last VNI is brought down */
1115 static int vxlan_igmp_leave(struct vxlan_dev
*vxlan
)
1118 union vxlan_addr
*ip
= &vxlan
->default_dst
.remote_ip
;
1119 int ifindex
= vxlan
->default_dst
.remote_ifindex
;
1122 if (ip
->sa
.sa_family
== AF_INET
) {
1123 struct ip_mreqn mreq
= {
1124 .imr_multiaddr
.s_addr
= ip
->sin
.sin_addr
.s_addr
,
1125 .imr_ifindex
= ifindex
,
1128 sk
= vxlan
->vn4_sock
->sock
->sk
;
1130 ret
= ip_mc_leave_group(sk
, &mreq
);
1132 #if IS_ENABLED(CONFIG_IPV6)
1134 sk
= vxlan
->vn6_sock
->sock
->sk
;
1136 ret
= ipv6_stub
->ipv6_sock_mc_drop(sk
, ifindex
,
1137 &ip
->sin6
.sin6_addr
);
1145 static bool vxlan_remcsum(struct vxlanhdr
*unparsed
,
1146 struct sk_buff
*skb
, u32 vxflags
)
1148 size_t start
, offset
;
1150 if (!(unparsed
->vx_flags
& VXLAN_HF_RCO
) || skb
->remcsum_offload
)
1153 start
= vxlan_rco_start(unparsed
->vx_vni
);
1154 offset
= start
+ vxlan_rco_offset(unparsed
->vx_vni
);
1156 if (!pskb_may_pull(skb
, offset
+ sizeof(u16
)))
1159 skb_remcsum_process(skb
, (void *)(vxlan_hdr(skb
) + 1), start
, offset
,
1160 !!(vxflags
& VXLAN_F_REMCSUM_NOPARTIAL
));
1162 unparsed
->vx_flags
&= ~VXLAN_HF_RCO
;
1163 unparsed
->vx_vni
&= VXLAN_VNI_MASK
;
1167 static void vxlan_parse_gbp_hdr(struct vxlanhdr
*unparsed
,
1168 struct sk_buff
*skb
, u32 vxflags
,
1169 struct vxlan_metadata
*md
)
1171 struct vxlanhdr_gbp
*gbp
= (struct vxlanhdr_gbp
*)unparsed
;
1172 struct metadata_dst
*tun_dst
;
1174 if (!(unparsed
->vx_flags
& VXLAN_HF_GBP
))
1177 md
->gbp
= ntohs(gbp
->policy_id
);
1179 tun_dst
= (struct metadata_dst
*)skb_dst(skb
);
1181 tun_dst
->u
.tun_info
.key
.tun_flags
|= TUNNEL_VXLAN_OPT
;
1182 tun_dst
->u
.tun_info
.options_len
= sizeof(*md
);
1184 if (gbp
->dont_learn
)
1185 md
->gbp
|= VXLAN_GBP_DONT_LEARN
;
1187 if (gbp
->policy_applied
)
1188 md
->gbp
|= VXLAN_GBP_POLICY_APPLIED
;
1190 /* In flow-based mode, GBP is carried in dst_metadata */
1191 if (!(vxflags
& VXLAN_F_COLLECT_METADATA
))
1192 skb
->mark
= md
->gbp
;
1194 unparsed
->vx_flags
&= ~VXLAN_GBP_USED_BITS
;
1197 static bool vxlan_parse_gpe_hdr(struct vxlanhdr
*unparsed
,
1199 struct sk_buff
*skb
, u32 vxflags
)
1201 struct vxlanhdr_gpe
*gpe
= (struct vxlanhdr_gpe
*)unparsed
;
1203 /* Need to have Next Protocol set for interfaces in GPE mode. */
1204 if (!gpe
->np_applied
)
1206 /* "The initial version is 0. If a receiver does not support the
1207 * version indicated it MUST drop the packet.
1209 if (gpe
->version
!= 0)
1211 /* "When the O bit is set to 1, the packet is an OAM packet and OAM
1212 * processing MUST occur." However, we don't implement OAM
1213 * processing, thus drop the packet.
1218 switch (gpe
->next_protocol
) {
1219 case VXLAN_GPE_NP_IPV4
:
1220 *protocol
= htons(ETH_P_IP
);
1222 case VXLAN_GPE_NP_IPV6
:
1223 *protocol
= htons(ETH_P_IPV6
);
1225 case VXLAN_GPE_NP_ETHERNET
:
1226 *protocol
= htons(ETH_P_TEB
);
1232 unparsed
->vx_flags
&= ~VXLAN_GPE_USED_BITS
;
1236 static bool vxlan_set_mac(struct vxlan_dev
*vxlan
,
1237 struct vxlan_sock
*vs
,
1238 struct sk_buff
*skb
)
1240 union vxlan_addr saddr
;
1242 skb_reset_mac_header(skb
);
1243 skb
->protocol
= eth_type_trans(skb
, vxlan
->dev
);
1244 skb_postpull_rcsum(skb
, eth_hdr(skb
), ETH_HLEN
);
1246 /* Ignore packet loops (and multicast echo) */
1247 if (ether_addr_equal(eth_hdr(skb
)->h_source
, vxlan
->dev
->dev_addr
))
1250 /* Get address from the outer IP header */
1251 if (vxlan_get_sk_family(vs
) == AF_INET
) {
1252 saddr
.sin
.sin_addr
.s_addr
= ip_hdr(skb
)->saddr
;
1253 saddr
.sa
.sa_family
= AF_INET
;
1254 #if IS_ENABLED(CONFIG_IPV6)
1256 saddr
.sin6
.sin6_addr
= ipv6_hdr(skb
)->saddr
;
1257 saddr
.sa
.sa_family
= AF_INET6
;
1261 if ((vxlan
->flags
& VXLAN_F_LEARN
) &&
1262 vxlan_snoop(skb
->dev
, &saddr
, eth_hdr(skb
)->h_source
))
1268 static bool vxlan_ecn_decapsulate(struct vxlan_sock
*vs
, void *oiph
,
1269 struct sk_buff
*skb
)
1273 if (vxlan_get_sk_family(vs
) == AF_INET
)
1274 err
= IP_ECN_decapsulate(oiph
, skb
);
1275 #if IS_ENABLED(CONFIG_IPV6)
1277 err
= IP6_ECN_decapsulate(oiph
, skb
);
1280 if (unlikely(err
) && log_ecn_error
) {
1281 if (vxlan_get_sk_family(vs
) == AF_INET
)
1282 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1283 &((struct iphdr
*)oiph
)->saddr
,
1284 ((struct iphdr
*)oiph
)->tos
);
1286 net_info_ratelimited("non-ECT from %pI6\n",
1287 &((struct ipv6hdr
*)oiph
)->saddr
);
1292 /* Callback from net/ipv4/udp.c to receive packets */
1293 static int vxlan_rcv(struct sock
*sk
, struct sk_buff
*skb
)
1295 struct pcpu_sw_netstats
*stats
;
1296 struct vxlan_dev
*vxlan
;
1297 struct vxlan_sock
*vs
;
1298 struct vxlanhdr unparsed
;
1299 struct vxlan_metadata _md
;
1300 struct vxlan_metadata
*md
= &_md
;
1301 __be16 protocol
= htons(ETH_P_TEB
);
1302 bool raw_proto
= false;
1305 /* Need UDP and VXLAN header to be present */
1306 if (!pskb_may_pull(skb
, VXLAN_HLEN
))
1309 unparsed
= *vxlan_hdr(skb
);
1310 /* VNI flag always required to be set */
1311 if (!(unparsed
.vx_flags
& VXLAN_HF_VNI
)) {
1312 netdev_dbg(skb
->dev
, "invalid vxlan flags=%#x vni=%#x\n",
1313 ntohl(vxlan_hdr(skb
)->vx_flags
),
1314 ntohl(vxlan_hdr(skb
)->vx_vni
));
1315 /* Return non vxlan pkt */
1318 unparsed
.vx_flags
&= ~VXLAN_HF_VNI
;
1319 unparsed
.vx_vni
&= ~VXLAN_VNI_MASK
;
1321 vs
= rcu_dereference_sk_user_data(sk
);
1325 vxlan
= vxlan_vs_find_vni(vs
, vxlan_vni(vxlan_hdr(skb
)->vx_vni
));
1329 /* For backwards compatibility, only allow reserved fields to be
1330 * used by VXLAN extensions if explicitly requested.
1332 if (vs
->flags
& VXLAN_F_GPE
) {
1333 if (!vxlan_parse_gpe_hdr(&unparsed
, &protocol
, skb
, vs
->flags
))
1338 if (__iptunnel_pull_header(skb
, VXLAN_HLEN
, protocol
, raw_proto
,
1339 !net_eq(vxlan
->net
, dev_net(vxlan
->dev
))))
1342 if (vxlan_collect_metadata(vs
)) {
1343 __be32 vni
= vxlan_vni(vxlan_hdr(skb
)->vx_vni
);
1344 struct metadata_dst
*tun_dst
;
1346 tun_dst
= udp_tun_rx_dst(skb
, vxlan_get_sk_family(vs
), TUNNEL_KEY
,
1347 vxlan_vni_to_tun_id(vni
), sizeof(*md
));
1352 md
= ip_tunnel_info_opts(&tun_dst
->u
.tun_info
);
1354 skb_dst_set(skb
, (struct dst_entry
*)tun_dst
);
1356 memset(md
, 0, sizeof(*md
));
1359 if (vs
->flags
& VXLAN_F_REMCSUM_RX
)
1360 if (!vxlan_remcsum(&unparsed
, skb
, vs
->flags
))
1362 if (vs
->flags
& VXLAN_F_GBP
)
1363 vxlan_parse_gbp_hdr(&unparsed
, skb
, vs
->flags
, md
);
1364 /* Note that GBP and GPE can never be active together. This is
1365 * ensured in vxlan_dev_configure.
1368 if (unparsed
.vx_flags
|| unparsed
.vx_vni
) {
1369 /* If there are any unprocessed flags remaining treat
1370 * this as a malformed packet. This behavior diverges from
1371 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1372 * in reserved fields are to be ignored. The approach here
1373 * maintains compatibility with previous stack code, and also
1374 * is more robust and provides a little more security in
1375 * adding extensions to VXLAN.
1381 if (!vxlan_set_mac(vxlan
, vs
, skb
))
1384 skb_reset_mac_header(skb
);
1385 skb
->dev
= vxlan
->dev
;
1386 skb
->pkt_type
= PACKET_HOST
;
1389 oiph
= skb_network_header(skb
);
1390 skb_reset_network_header(skb
);
1392 if (!vxlan_ecn_decapsulate(vs
, oiph
, skb
)) {
1393 ++vxlan
->dev
->stats
.rx_frame_errors
;
1394 ++vxlan
->dev
->stats
.rx_errors
;
1398 stats
= this_cpu_ptr(vxlan
->dev
->tstats
);
1399 u64_stats_update_begin(&stats
->syncp
);
1400 stats
->rx_packets
++;
1401 stats
->rx_bytes
+= skb
->len
;
1402 u64_stats_update_end(&stats
->syncp
);
1404 gro_cells_receive(&vxlan
->gro_cells
, skb
);
1408 /* Consume bad packet */
1413 static int arp_reduce(struct net_device
*dev
, struct sk_buff
*skb
)
1415 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
1416 struct arphdr
*parp
;
1419 struct neighbour
*n
;
1421 if (dev
->flags
& IFF_NOARP
)
1424 if (!pskb_may_pull(skb
, arp_hdr_len(dev
))) {
1425 dev
->stats
.tx_dropped
++;
1428 parp
= arp_hdr(skb
);
1430 if ((parp
->ar_hrd
!= htons(ARPHRD_ETHER
) &&
1431 parp
->ar_hrd
!= htons(ARPHRD_IEEE802
)) ||
1432 parp
->ar_pro
!= htons(ETH_P_IP
) ||
1433 parp
->ar_op
!= htons(ARPOP_REQUEST
) ||
1434 parp
->ar_hln
!= dev
->addr_len
||
1437 arpptr
= (u8
*)parp
+ sizeof(struct arphdr
);
1439 arpptr
+= dev
->addr_len
; /* sha */
1440 memcpy(&sip
, arpptr
, sizeof(sip
));
1441 arpptr
+= sizeof(sip
);
1442 arpptr
+= dev
->addr_len
; /* tha */
1443 memcpy(&tip
, arpptr
, sizeof(tip
));
1445 if (ipv4_is_loopback(tip
) ||
1446 ipv4_is_multicast(tip
))
1449 n
= neigh_lookup(&arp_tbl
, &tip
, dev
);
1452 struct vxlan_fdb
*f
;
1453 struct sk_buff
*reply
;
1455 if (!(n
->nud_state
& NUD_CONNECTED
)) {
1460 f
= vxlan_find_mac(vxlan
, n
->ha
);
1461 if (f
&& vxlan_addr_any(&(first_remote_rcu(f
)->remote_ip
))) {
1462 /* bridge-local neighbor */
1467 reply
= arp_create(ARPOP_REPLY
, ETH_P_ARP
, sip
, dev
, tip
, sha
,
1475 skb_reset_mac_header(reply
);
1476 __skb_pull(reply
, skb_network_offset(reply
));
1477 reply
->ip_summed
= CHECKSUM_UNNECESSARY
;
1478 reply
->pkt_type
= PACKET_HOST
;
1480 if (netif_rx_ni(reply
) == NET_RX_DROP
)
1481 dev
->stats
.rx_dropped
++;
1482 } else if (vxlan
->flags
& VXLAN_F_L3MISS
) {
1483 union vxlan_addr ipa
= {
1484 .sin
.sin_addr
.s_addr
= tip
,
1485 .sin
.sin_family
= AF_INET
,
1488 vxlan_ip_miss(dev
, &ipa
);
1492 return NETDEV_TX_OK
;
1495 #if IS_ENABLED(CONFIG_IPV6)
1496 static struct sk_buff
*vxlan_na_create(struct sk_buff
*request
,
1497 struct neighbour
*n
, bool isrouter
)
1499 struct net_device
*dev
= request
->dev
;
1500 struct sk_buff
*reply
;
1501 struct nd_msg
*ns
, *na
;
1502 struct ipv6hdr
*pip6
;
1504 int na_olen
= 8; /* opt hdr + ETH_ALEN for target */
1511 len
= LL_RESERVED_SPACE(dev
) + sizeof(struct ipv6hdr
) +
1512 sizeof(*na
) + na_olen
+ dev
->needed_tailroom
;
1513 reply
= alloc_skb(len
, GFP_ATOMIC
);
1517 reply
->protocol
= htons(ETH_P_IPV6
);
1519 skb_reserve(reply
, LL_RESERVED_SPACE(request
->dev
));
1520 skb_push(reply
, sizeof(struct ethhdr
));
1521 skb_reset_mac_header(reply
);
1523 ns
= (struct nd_msg
*)skb_transport_header(request
);
1525 daddr
= eth_hdr(request
)->h_source
;
1526 ns_olen
= request
->len
- skb_transport_offset(request
) - sizeof(*ns
);
1527 for (i
= 0; i
< ns_olen
-1; i
+= (ns
->opt
[i
+1]<<3)) {
1528 if (ns
->opt
[i
] == ND_OPT_SOURCE_LL_ADDR
) {
1529 daddr
= ns
->opt
+ i
+ sizeof(struct nd_opt_hdr
);
1534 /* Ethernet header */
1535 ether_addr_copy(eth_hdr(reply
)->h_dest
, daddr
);
1536 ether_addr_copy(eth_hdr(reply
)->h_source
, n
->ha
);
1537 eth_hdr(reply
)->h_proto
= htons(ETH_P_IPV6
);
1538 reply
->protocol
= htons(ETH_P_IPV6
);
1540 skb_pull(reply
, sizeof(struct ethhdr
));
1541 skb_reset_network_header(reply
);
1542 skb_put(reply
, sizeof(struct ipv6hdr
));
1546 pip6
= ipv6_hdr(reply
);
1547 memset(pip6
, 0, sizeof(struct ipv6hdr
));
1549 pip6
->priority
= ipv6_hdr(request
)->priority
;
1550 pip6
->nexthdr
= IPPROTO_ICMPV6
;
1551 pip6
->hop_limit
= 255;
1552 pip6
->daddr
= ipv6_hdr(request
)->saddr
;
1553 pip6
->saddr
= *(struct in6_addr
*)n
->primary_key
;
1555 skb_pull(reply
, sizeof(struct ipv6hdr
));
1556 skb_reset_transport_header(reply
);
1558 na
= (struct nd_msg
*)skb_put(reply
, sizeof(*na
) + na_olen
);
1560 /* Neighbor Advertisement */
1561 memset(na
, 0, sizeof(*na
)+na_olen
);
1562 na
->icmph
.icmp6_type
= NDISC_NEIGHBOUR_ADVERTISEMENT
;
1563 na
->icmph
.icmp6_router
= isrouter
;
1564 na
->icmph
.icmp6_override
= 1;
1565 na
->icmph
.icmp6_solicited
= 1;
1566 na
->target
= ns
->target
;
1567 ether_addr_copy(&na
->opt
[2], n
->ha
);
1568 na
->opt
[0] = ND_OPT_TARGET_LL_ADDR
;
1569 na
->opt
[1] = na_olen
>> 3;
1571 na
->icmph
.icmp6_cksum
= csum_ipv6_magic(&pip6
->saddr
,
1572 &pip6
->daddr
, sizeof(*na
)+na_olen
, IPPROTO_ICMPV6
,
1573 csum_partial(na
, sizeof(*na
)+na_olen
, 0));
1575 pip6
->payload_len
= htons(sizeof(*na
)+na_olen
);
1577 skb_push(reply
, sizeof(struct ipv6hdr
));
1579 reply
->ip_summed
= CHECKSUM_UNNECESSARY
;
1584 static int neigh_reduce(struct net_device
*dev
, struct sk_buff
*skb
)
1586 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
1588 const struct ipv6hdr
*iphdr
;
1589 const struct in6_addr
*saddr
, *daddr
;
1590 struct neighbour
*n
;
1591 struct inet6_dev
*in6_dev
;
1593 in6_dev
= __in6_dev_get(dev
);
1597 iphdr
= ipv6_hdr(skb
);
1598 saddr
= &iphdr
->saddr
;
1599 daddr
= &iphdr
->daddr
;
1601 msg
= (struct nd_msg
*)skb_transport_header(skb
);
1602 if (msg
->icmph
.icmp6_code
!= 0 ||
1603 msg
->icmph
.icmp6_type
!= NDISC_NEIGHBOUR_SOLICITATION
)
1606 if (ipv6_addr_loopback(daddr
) ||
1607 ipv6_addr_is_multicast(&msg
->target
))
1610 n
= neigh_lookup(ipv6_stub
->nd_tbl
, &msg
->target
, dev
);
1613 struct vxlan_fdb
*f
;
1614 struct sk_buff
*reply
;
1616 if (!(n
->nud_state
& NUD_CONNECTED
)) {
1621 f
= vxlan_find_mac(vxlan
, n
->ha
);
1622 if (f
&& vxlan_addr_any(&(first_remote_rcu(f
)->remote_ip
))) {
1623 /* bridge-local neighbor */
1628 reply
= vxlan_na_create(skb
, n
,
1629 !!(f
? f
->flags
& NTF_ROUTER
: 0));
1636 if (netif_rx_ni(reply
) == NET_RX_DROP
)
1637 dev
->stats
.rx_dropped
++;
1639 } else if (vxlan
->flags
& VXLAN_F_L3MISS
) {
1640 union vxlan_addr ipa
= {
1641 .sin6
.sin6_addr
= msg
->target
,
1642 .sin6
.sin6_family
= AF_INET6
,
1645 vxlan_ip_miss(dev
, &ipa
);
1650 return NETDEV_TX_OK
;
1654 static bool route_shortcircuit(struct net_device
*dev
, struct sk_buff
*skb
)
1656 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
1657 struct neighbour
*n
;
1659 if (is_multicast_ether_addr(eth_hdr(skb
)->h_dest
))
1663 switch (ntohs(eth_hdr(skb
)->h_proto
)) {
1668 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
1671 n
= neigh_lookup(&arp_tbl
, &pip
->daddr
, dev
);
1672 if (!n
&& (vxlan
->flags
& VXLAN_F_L3MISS
)) {
1673 union vxlan_addr ipa
= {
1674 .sin
.sin_addr
.s_addr
= pip
->daddr
,
1675 .sin
.sin_family
= AF_INET
,
1678 vxlan_ip_miss(dev
, &ipa
);
1684 #if IS_ENABLED(CONFIG_IPV6)
1687 struct ipv6hdr
*pip6
;
1689 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
1691 pip6
= ipv6_hdr(skb
);
1692 n
= neigh_lookup(ipv6_stub
->nd_tbl
, &pip6
->daddr
, dev
);
1693 if (!n
&& (vxlan
->flags
& VXLAN_F_L3MISS
)) {
1694 union vxlan_addr ipa
= {
1695 .sin6
.sin6_addr
= pip6
->daddr
,
1696 .sin6
.sin6_family
= AF_INET6
,
1699 vxlan_ip_miss(dev
, &ipa
);
1713 diff
= !ether_addr_equal(eth_hdr(skb
)->h_dest
, n
->ha
);
1715 memcpy(eth_hdr(skb
)->h_source
, eth_hdr(skb
)->h_dest
,
1717 memcpy(eth_hdr(skb
)->h_dest
, n
->ha
, dev
->addr_len
);
1726 static void vxlan_build_gbp_hdr(struct vxlanhdr
*vxh
, u32 vxflags
,
1727 struct vxlan_metadata
*md
)
1729 struct vxlanhdr_gbp
*gbp
;
1734 gbp
= (struct vxlanhdr_gbp
*)vxh
;
1735 vxh
->vx_flags
|= VXLAN_HF_GBP
;
1737 if (md
->gbp
& VXLAN_GBP_DONT_LEARN
)
1738 gbp
->dont_learn
= 1;
1740 if (md
->gbp
& VXLAN_GBP_POLICY_APPLIED
)
1741 gbp
->policy_applied
= 1;
1743 gbp
->policy_id
= htons(md
->gbp
& VXLAN_GBP_ID_MASK
);
1746 static int vxlan_build_gpe_hdr(struct vxlanhdr
*vxh
, u32 vxflags
,
1749 struct vxlanhdr_gpe
*gpe
= (struct vxlanhdr_gpe
*)vxh
;
1751 gpe
->np_applied
= 1;
1754 case htons(ETH_P_IP
):
1755 gpe
->next_protocol
= VXLAN_GPE_NP_IPV4
;
1757 case htons(ETH_P_IPV6
):
1758 gpe
->next_protocol
= VXLAN_GPE_NP_IPV6
;
1760 case htons(ETH_P_TEB
):
1761 gpe
->next_protocol
= VXLAN_GPE_NP_ETHERNET
;
1764 return -EPFNOSUPPORT
;
1767 static int vxlan_build_skb(struct sk_buff
*skb
, struct dst_entry
*dst
,
1768 int iphdr_len
, __be32 vni
,
1769 struct vxlan_metadata
*md
, u32 vxflags
,
1772 struct vxlanhdr
*vxh
;
1775 int type
= udp_sum
? SKB_GSO_UDP_TUNNEL_CSUM
: SKB_GSO_UDP_TUNNEL
;
1776 __be16 inner_protocol
= htons(ETH_P_TEB
);
1778 if ((vxflags
& VXLAN_F_REMCSUM_TX
) &&
1779 skb
->ip_summed
== CHECKSUM_PARTIAL
) {
1780 int csum_start
= skb_checksum_start_offset(skb
);
1782 if (csum_start
<= VXLAN_MAX_REMCSUM_START
&&
1783 !(csum_start
& VXLAN_RCO_SHIFT_MASK
) &&
1784 (skb
->csum_offset
== offsetof(struct udphdr
, check
) ||
1785 skb
->csum_offset
== offsetof(struct tcphdr
, check
)))
1786 type
|= SKB_GSO_TUNNEL_REMCSUM
;
1789 min_headroom
= LL_RESERVED_SPACE(dst
->dev
) + dst
->header_len
1790 + VXLAN_HLEN
+ iphdr_len
1791 + (skb_vlan_tag_present(skb
) ? VLAN_HLEN
: 0);
1793 /* Need space for new headers (invalidates iph ptr) */
1794 err
= skb_cow_head(skb
, min_headroom
);
1798 skb
= vlan_hwaccel_push_inside(skb
);
1802 err
= iptunnel_handle_offloads(skb
, type
);
1806 vxh
= (struct vxlanhdr
*) __skb_push(skb
, sizeof(*vxh
));
1807 vxh
->vx_flags
= VXLAN_HF_VNI
;
1808 vxh
->vx_vni
= vxlan_vni_field(vni
);
1810 if (type
& SKB_GSO_TUNNEL_REMCSUM
) {
1813 start
= skb_checksum_start_offset(skb
) - sizeof(struct vxlanhdr
);
1814 vxh
->vx_vni
|= vxlan_compute_rco(start
, skb
->csum_offset
);
1815 vxh
->vx_flags
|= VXLAN_HF_RCO
;
1817 if (!skb_is_gso(skb
)) {
1818 skb
->ip_summed
= CHECKSUM_NONE
;
1819 skb
->encapsulation
= 0;
1823 if (vxflags
& VXLAN_F_GBP
)
1824 vxlan_build_gbp_hdr(vxh
, vxflags
, md
);
1825 if (vxflags
& VXLAN_F_GPE
) {
1826 err
= vxlan_build_gpe_hdr(vxh
, vxflags
, skb
->protocol
);
1829 inner_protocol
= skb
->protocol
;
1832 skb_set_inner_protocol(skb
, inner_protocol
);
1840 static struct rtable
*vxlan_get_route(struct vxlan_dev
*vxlan
,
1841 struct sk_buff
*skb
, int oif
, u8 tos
,
1842 __be32 daddr
, __be32
*saddr
,
1843 struct dst_cache
*dst_cache
,
1844 const struct ip_tunnel_info
*info
)
1846 bool use_cache
= ip_tunnel_dst_cache_usable(skb
, info
);
1847 struct rtable
*rt
= NULL
;
1853 rt
= dst_cache_get_ip4(dst_cache
, saddr
);
1858 memset(&fl4
, 0, sizeof(fl4
));
1859 fl4
.flowi4_oif
= oif
;
1860 fl4
.flowi4_tos
= RT_TOS(tos
);
1861 fl4
.flowi4_mark
= skb
->mark
;
1862 fl4
.flowi4_proto
= IPPROTO_UDP
;
1864 fl4
.saddr
= vxlan
->cfg
.saddr
.sin
.sin_addr
.s_addr
;
1866 rt
= ip_route_output_key(vxlan
->net
, &fl4
);
1870 dst_cache_set_ip4(dst_cache
, &rt
->dst
, fl4
.saddr
);
1875 #if IS_ENABLED(CONFIG_IPV6)
1876 static struct dst_entry
*vxlan6_get_route(struct vxlan_dev
*vxlan
,
1877 struct sk_buff
*skb
, int oif
, u8 tos
,
1879 const struct in6_addr
*daddr
,
1880 struct in6_addr
*saddr
,
1881 struct dst_cache
*dst_cache
,
1882 const struct ip_tunnel_info
*info
)
1884 bool use_cache
= ip_tunnel_dst_cache_usable(skb
, info
);
1885 struct dst_entry
*ndst
;
1892 ndst
= dst_cache_get_ip6(dst_cache
, saddr
);
1897 memset(&fl6
, 0, sizeof(fl6
));
1898 fl6
.flowi6_oif
= oif
;
1900 fl6
.saddr
= vxlan
->cfg
.saddr
.sin6
.sin6_addr
;
1901 fl6
.flowlabel
= ip6_make_flowinfo(RT_TOS(tos
), label
);
1902 fl6
.flowi6_mark
= skb
->mark
;
1903 fl6
.flowi6_proto
= IPPROTO_UDP
;
1905 err
= ipv6_stub
->ipv6_dst_lookup(vxlan
->net
,
1906 vxlan
->vn6_sock
->sock
->sk
,
1909 return ERR_PTR(err
);
1913 dst_cache_set_ip6(dst_cache
, ndst
, saddr
);
1918 /* Bypass encapsulation if the destination is local */
1919 static void vxlan_encap_bypass(struct sk_buff
*skb
, struct vxlan_dev
*src_vxlan
,
1920 struct vxlan_dev
*dst_vxlan
)
1922 struct pcpu_sw_netstats
*tx_stats
, *rx_stats
;
1923 union vxlan_addr loopback
;
1924 union vxlan_addr
*remote_ip
= &dst_vxlan
->default_dst
.remote_ip
;
1925 struct net_device
*dev
= skb
->dev
;
1928 tx_stats
= this_cpu_ptr(src_vxlan
->dev
->tstats
);
1929 rx_stats
= this_cpu_ptr(dst_vxlan
->dev
->tstats
);
1930 skb
->pkt_type
= PACKET_HOST
;
1931 skb
->encapsulation
= 0;
1932 skb
->dev
= dst_vxlan
->dev
;
1933 __skb_pull(skb
, skb_network_offset(skb
));
1935 if (remote_ip
->sa
.sa_family
== AF_INET
) {
1936 loopback
.sin
.sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
1937 loopback
.sa
.sa_family
= AF_INET
;
1938 #if IS_ENABLED(CONFIG_IPV6)
1940 loopback
.sin6
.sin6_addr
= in6addr_loopback
;
1941 loopback
.sa
.sa_family
= AF_INET6
;
1945 if (dst_vxlan
->flags
& VXLAN_F_LEARN
)
1946 vxlan_snoop(skb
->dev
, &loopback
, eth_hdr(skb
)->h_source
);
1948 u64_stats_update_begin(&tx_stats
->syncp
);
1949 tx_stats
->tx_packets
++;
1950 tx_stats
->tx_bytes
+= len
;
1951 u64_stats_update_end(&tx_stats
->syncp
);
1953 if (netif_rx(skb
) == NET_RX_SUCCESS
) {
1954 u64_stats_update_begin(&rx_stats
->syncp
);
1955 rx_stats
->rx_packets
++;
1956 rx_stats
->rx_bytes
+= len
;
1957 u64_stats_update_end(&rx_stats
->syncp
);
1959 dev
->stats
.rx_dropped
++;
1963 static void vxlan_xmit_one(struct sk_buff
*skb
, struct net_device
*dev
,
1964 struct vxlan_rdst
*rdst
, bool did_rsc
)
1966 struct dst_cache
*dst_cache
;
1967 struct ip_tunnel_info
*info
;
1968 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
1970 struct rtable
*rt
= NULL
;
1971 const struct iphdr
*old_iph
;
1972 union vxlan_addr
*dst
;
1973 union vxlan_addr remote_ip
;
1974 struct vxlan_metadata _md
;
1975 struct vxlan_metadata
*md
= &_md
;
1976 __be16 src_port
= 0, dst_port
;
1981 u32 flags
= vxlan
->flags
;
1982 bool udp_sum
= false;
1983 bool xnet
= !net_eq(vxlan
->net
, dev_net(vxlan
->dev
));
1985 info
= skb_tunnel_info(skb
);
1988 dst_port
= rdst
->remote_port
? rdst
->remote_port
: vxlan
->cfg
.dst_port
;
1989 vni
= rdst
->remote_vni
;
1990 dst
= &rdst
->remote_ip
;
1991 dst_cache
= &rdst
->dst_cache
;
1994 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
1998 dst_port
= info
->key
.tp_dst
? : vxlan
->cfg
.dst_port
;
1999 vni
= vxlan_tun_id_to_vni(info
->key
.tun_id
);
2000 remote_ip
.sa
.sa_family
= ip_tunnel_info_af(info
);
2001 if (remote_ip
.sa
.sa_family
== AF_INET
)
2002 remote_ip
.sin
.sin_addr
.s_addr
= info
->key
.u
.ipv4
.dst
;
2004 remote_ip
.sin6
.sin6_addr
= info
->key
.u
.ipv6
.dst
;
2006 dst_cache
= &info
->dst_cache
;
2009 if (vxlan_addr_any(dst
)) {
2011 /* short-circuited back to local bridge */
2012 vxlan_encap_bypass(skb
, vxlan
, vxlan
);
2018 old_iph
= ip_hdr(skb
);
2020 ttl
= vxlan
->cfg
.ttl
;
2021 if (!ttl
&& vxlan_addr_multicast(dst
))
2024 tos
= vxlan
->cfg
.tos
;
2026 tos
= ip_tunnel_get_dsfield(old_iph
, skb
);
2028 label
= vxlan
->cfg
.label
;
2029 src_port
= udp_flow_src_port(dev_net(dev
), skb
, vxlan
->cfg
.port_min
,
2030 vxlan
->cfg
.port_max
, true);
2033 ttl
= info
->key
.ttl
;
2034 tos
= info
->key
.tos
;
2035 label
= info
->key
.label
;
2036 udp_sum
= !!(info
->key
.tun_flags
& TUNNEL_CSUM
);
2038 if (info
->options_len
)
2039 md
= ip_tunnel_info_opts(info
);
2041 md
->gbp
= skb
->mark
;
2044 if (dst
->sa
.sa_family
== AF_INET
) {
2047 if (!vxlan
->vn4_sock
)
2049 sk
= vxlan
->vn4_sock
->sock
->sk
;
2051 rt
= vxlan_get_route(vxlan
, skb
,
2052 rdst
? rdst
->remote_ifindex
: 0, tos
,
2053 dst
->sin
.sin_addr
.s_addr
, &saddr
,
2056 netdev_dbg(dev
, "no route to %pI4\n",
2057 &dst
->sin
.sin_addr
.s_addr
);
2058 dev
->stats
.tx_carrier_errors
++;
2062 if (rt
->dst
.dev
== dev
) {
2063 netdev_dbg(dev
, "circular route to %pI4\n",
2064 &dst
->sin
.sin_addr
.s_addr
);
2065 dev
->stats
.collisions
++;
2069 /* Bypass encapsulation if the destination is local */
2070 if (rt
->rt_flags
& RTCF_LOCAL
&&
2071 !(rt
->rt_flags
& (RTCF_BROADCAST
| RTCF_MULTICAST
))) {
2072 struct vxlan_dev
*dst_vxlan
;
2075 dst_vxlan
= vxlan_find_vni(vxlan
->net
, vni
,
2076 dst
->sa
.sa_family
, dst_port
,
2080 vxlan_encap_bypass(skb
, vxlan
, dst_vxlan
);
2085 udp_sum
= !(flags
& VXLAN_F_UDP_ZERO_CSUM_TX
);
2086 else if (info
->key
.tun_flags
& TUNNEL_DONT_FRAGMENT
)
2089 tos
= ip_tunnel_ecn_encap(tos
, old_iph
, skb
);
2090 ttl
= ttl
? : ip4_dst_hoplimit(&rt
->dst
);
2091 err
= vxlan_build_skb(skb
, &rt
->dst
, sizeof(struct iphdr
),
2092 vni
, md
, flags
, udp_sum
);
2096 udp_tunnel_xmit_skb(rt
, sk
, skb
, saddr
,
2097 dst
->sin
.sin_addr
.s_addr
, tos
, ttl
, df
,
2098 src_port
, dst_port
, xnet
, !udp_sum
);
2099 #if IS_ENABLED(CONFIG_IPV6)
2101 struct dst_entry
*ndst
;
2102 struct in6_addr saddr
;
2105 if (!vxlan
->vn6_sock
)
2107 sk
= vxlan
->vn6_sock
->sock
->sk
;
2109 ndst
= vxlan6_get_route(vxlan
, skb
,
2110 rdst
? rdst
->remote_ifindex
: 0, tos
,
2111 label
, &dst
->sin6
.sin6_addr
, &saddr
,
2114 netdev_dbg(dev
, "no route to %pI6\n",
2115 &dst
->sin6
.sin6_addr
);
2116 dev
->stats
.tx_carrier_errors
++;
2120 if (ndst
->dev
== dev
) {
2121 netdev_dbg(dev
, "circular route to %pI6\n",
2122 &dst
->sin6
.sin6_addr
);
2124 dev
->stats
.collisions
++;
2128 /* Bypass encapsulation if the destination is local */
2129 rt6i_flags
= ((struct rt6_info
*)ndst
)->rt6i_flags
;
2130 if (rt6i_flags
& RTF_LOCAL
&&
2131 !(rt6i_flags
& (RTCF_BROADCAST
| RTCF_MULTICAST
))) {
2132 struct vxlan_dev
*dst_vxlan
;
2135 dst_vxlan
= vxlan_find_vni(vxlan
->net
, vni
,
2136 dst
->sa
.sa_family
, dst_port
,
2140 vxlan_encap_bypass(skb
, vxlan
, dst_vxlan
);
2145 udp_sum
= !(flags
& VXLAN_F_UDP_ZERO_CSUM6_TX
);
2147 tos
= ip_tunnel_ecn_encap(tos
, old_iph
, skb
);
2148 ttl
= ttl
? : ip6_dst_hoplimit(ndst
);
2149 skb_scrub_packet(skb
, xnet
);
2150 err
= vxlan_build_skb(skb
, ndst
, sizeof(struct ipv6hdr
),
2151 vni
, md
, flags
, udp_sum
);
2156 udp_tunnel6_xmit_skb(ndst
, sk
, skb
, dev
,
2157 &saddr
, &dst
->sin6
.sin6_addr
, tos
, ttl
,
2158 label
, src_port
, dst_port
, !udp_sum
);
2165 dev
->stats
.tx_dropped
++;
2169 /* skb is already freed. */
2174 dev
->stats
.tx_errors
++;
2179 /* Transmit local packets over Vxlan
2181 * Outer IP header inherits ECN and DF from inner header.
2182 * Outer UDP destination is the VXLAN assigned port.
2183 * source port is based on hash of flow
2185 static netdev_tx_t
vxlan_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
2187 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2188 const struct ip_tunnel_info
*info
;
2190 bool did_rsc
= false;
2191 struct vxlan_rdst
*rdst
, *fdst
= NULL
;
2192 struct vxlan_fdb
*f
;
2194 info
= skb_tunnel_info(skb
);
2196 skb_reset_mac_header(skb
);
2198 if (vxlan
->flags
& VXLAN_F_COLLECT_METADATA
) {
2199 if (info
&& info
->mode
& IP_TUNNEL_INFO_TX
)
2200 vxlan_xmit_one(skb
, dev
, NULL
, false);
2203 return NETDEV_TX_OK
;
2206 if (vxlan
->flags
& VXLAN_F_PROXY
) {
2208 if (ntohs(eth
->h_proto
) == ETH_P_ARP
)
2209 return arp_reduce(dev
, skb
);
2210 #if IS_ENABLED(CONFIG_IPV6)
2211 else if (ntohs(eth
->h_proto
) == ETH_P_IPV6
&&
2212 pskb_may_pull(skb
, sizeof(struct ipv6hdr
)
2213 + sizeof(struct nd_msg
)) &&
2214 ipv6_hdr(skb
)->nexthdr
== IPPROTO_ICMPV6
) {
2217 msg
= (struct nd_msg
*)skb_transport_header(skb
);
2218 if (msg
->icmph
.icmp6_code
== 0 &&
2219 msg
->icmph
.icmp6_type
== NDISC_NEIGHBOUR_SOLICITATION
)
2220 return neigh_reduce(dev
, skb
);
2226 f
= vxlan_find_mac(vxlan
, eth
->h_dest
);
2229 if (f
&& (f
->flags
& NTF_ROUTER
) && (vxlan
->flags
& VXLAN_F_RSC
) &&
2230 (ntohs(eth
->h_proto
) == ETH_P_IP
||
2231 ntohs(eth
->h_proto
) == ETH_P_IPV6
)) {
2232 did_rsc
= route_shortcircuit(dev
, skb
);
2234 f
= vxlan_find_mac(vxlan
, eth
->h_dest
);
2238 f
= vxlan_find_mac(vxlan
, all_zeros_mac
);
2240 if ((vxlan
->flags
& VXLAN_F_L2MISS
) &&
2241 !is_multicast_ether_addr(eth
->h_dest
))
2242 vxlan_fdb_miss(vxlan
, eth
->h_dest
);
2244 dev
->stats
.tx_dropped
++;
2246 return NETDEV_TX_OK
;
2250 list_for_each_entry_rcu(rdst
, &f
->remotes
, list
) {
2251 struct sk_buff
*skb1
;
2257 skb1
= skb_clone(skb
, GFP_ATOMIC
);
2259 vxlan_xmit_one(skb1
, dev
, rdst
, did_rsc
);
2263 vxlan_xmit_one(skb
, dev
, fdst
, did_rsc
);
2266 return NETDEV_TX_OK
;
2269 /* Walk the forwarding table and purge stale entries */
2270 static void vxlan_cleanup(unsigned long arg
)
2272 struct vxlan_dev
*vxlan
= (struct vxlan_dev
*) arg
;
2273 unsigned long next_timer
= jiffies
+ FDB_AGE_INTERVAL
;
2276 if (!netif_running(vxlan
->dev
))
2279 for (h
= 0; h
< FDB_HASH_SIZE
; ++h
) {
2280 struct hlist_node
*p
, *n
;
2282 spin_lock_bh(&vxlan
->hash_lock
);
2283 hlist_for_each_safe(p
, n
, &vxlan
->fdb_head
[h
]) {
2285 = container_of(p
, struct vxlan_fdb
, hlist
);
2286 unsigned long timeout
;
2288 if (f
->state
& NUD_PERMANENT
)
2291 timeout
= f
->used
+ vxlan
->cfg
.age_interval
* HZ
;
2292 if (time_before_eq(timeout
, jiffies
)) {
2293 netdev_dbg(vxlan
->dev
,
2294 "garbage collect %pM\n",
2296 f
->state
= NUD_STALE
;
2297 vxlan_fdb_destroy(vxlan
, f
);
2298 } else if (time_before(timeout
, next_timer
))
2299 next_timer
= timeout
;
2301 spin_unlock_bh(&vxlan
->hash_lock
);
2304 mod_timer(&vxlan
->age_timer
, next_timer
);
2307 static void vxlan_vs_add_dev(struct vxlan_sock
*vs
, struct vxlan_dev
*vxlan
)
2309 struct vxlan_net
*vn
= net_generic(vxlan
->net
, vxlan_net_id
);
2310 __be32 vni
= vxlan
->default_dst
.remote_vni
;
2312 spin_lock(&vn
->sock_lock
);
2313 hlist_add_head_rcu(&vxlan
->hlist
, vni_head(vs
, vni
));
2314 spin_unlock(&vn
->sock_lock
);
2317 /* Setup stats when device is created */
2318 static int vxlan_init(struct net_device
*dev
)
2320 dev
->tstats
= netdev_alloc_pcpu_stats(struct pcpu_sw_netstats
);
2327 static void vxlan_fdb_delete_default(struct vxlan_dev
*vxlan
)
2329 struct vxlan_fdb
*f
;
2331 spin_lock_bh(&vxlan
->hash_lock
);
2332 f
= __vxlan_find_mac(vxlan
, all_zeros_mac
);
2334 vxlan_fdb_destroy(vxlan
, f
);
2335 spin_unlock_bh(&vxlan
->hash_lock
);
2338 static void vxlan_uninit(struct net_device
*dev
)
2340 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2342 vxlan_fdb_delete_default(vxlan
);
2344 free_percpu(dev
->tstats
);
2347 /* Start ageing timer and join group when device is brought up */
2348 static int vxlan_open(struct net_device
*dev
)
2350 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2353 ret
= vxlan_sock_add(vxlan
);
2357 if (vxlan_addr_multicast(&vxlan
->default_dst
.remote_ip
)) {
2358 ret
= vxlan_igmp_join(vxlan
);
2359 if (ret
== -EADDRINUSE
)
2362 vxlan_sock_release(vxlan
);
2367 if (vxlan
->cfg
.age_interval
)
2368 mod_timer(&vxlan
->age_timer
, jiffies
+ FDB_AGE_INTERVAL
);
2373 /* Purge the forwarding table */
2374 static void vxlan_flush(struct vxlan_dev
*vxlan
)
2378 spin_lock_bh(&vxlan
->hash_lock
);
2379 for (h
= 0; h
< FDB_HASH_SIZE
; ++h
) {
2380 struct hlist_node
*p
, *n
;
2381 hlist_for_each_safe(p
, n
, &vxlan
->fdb_head
[h
]) {
2383 = container_of(p
, struct vxlan_fdb
, hlist
);
2384 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2385 if (!is_zero_ether_addr(f
->eth_addr
))
2386 vxlan_fdb_destroy(vxlan
, f
);
2389 spin_unlock_bh(&vxlan
->hash_lock
);
2392 /* Cleanup timer and forwarding table on shutdown */
2393 static int vxlan_stop(struct net_device
*dev
)
2395 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2396 struct vxlan_net
*vn
= net_generic(vxlan
->net
, vxlan_net_id
);
2399 if (vxlan_addr_multicast(&vxlan
->default_dst
.remote_ip
) &&
2400 !vxlan_group_used(vn
, vxlan
))
2401 ret
= vxlan_igmp_leave(vxlan
);
2403 del_timer_sync(&vxlan
->age_timer
);
2406 vxlan_sock_release(vxlan
);
2411 /* Stub, nothing needs to be done. */
2412 static void vxlan_set_multicast_list(struct net_device
*dev
)
2416 static int __vxlan_change_mtu(struct net_device
*dev
,
2417 struct net_device
*lowerdev
,
2418 struct vxlan_rdst
*dst
, int new_mtu
, bool strict
)
2420 int max_mtu
= IP_MAX_MTU
;
2423 max_mtu
= lowerdev
->mtu
;
2425 if (dst
->remote_ip
.sa
.sa_family
== AF_INET6
)
2426 max_mtu
-= VXLAN6_HEADROOM
;
2428 max_mtu
-= VXLAN_HEADROOM
;
2433 if (new_mtu
> max_mtu
) {
2444 static int vxlan_change_mtu(struct net_device
*dev
, int new_mtu
)
2446 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2447 struct vxlan_rdst
*dst
= &vxlan
->default_dst
;
2448 struct net_device
*lowerdev
= __dev_get_by_index(vxlan
->net
,
2449 dst
->remote_ifindex
);
2450 return __vxlan_change_mtu(dev
, lowerdev
, dst
, new_mtu
, true);
2453 static int vxlan_fill_metadata_dst(struct net_device
*dev
, struct sk_buff
*skb
)
2455 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2456 struct ip_tunnel_info
*info
= skb_tunnel_info(skb
);
2457 __be16 sport
, dport
;
2459 sport
= udp_flow_src_port(dev_net(dev
), skb
, vxlan
->cfg
.port_min
,
2460 vxlan
->cfg
.port_max
, true);
2461 dport
= info
->key
.tp_dst
? : vxlan
->cfg
.dst_port
;
2463 if (ip_tunnel_info_af(info
) == AF_INET
) {
2466 if (!vxlan
->vn4_sock
)
2468 rt
= vxlan_get_route(vxlan
, skb
, 0, info
->key
.tos
,
2469 info
->key
.u
.ipv4
.dst
,
2470 &info
->key
.u
.ipv4
.src
, NULL
, info
);
2475 #if IS_ENABLED(CONFIG_IPV6)
2476 struct dst_entry
*ndst
;
2478 if (!vxlan
->vn6_sock
)
2480 ndst
= vxlan6_get_route(vxlan
, skb
, 0, info
->key
.tos
,
2481 info
->key
.label
, &info
->key
.u
.ipv6
.dst
,
2482 &info
->key
.u
.ipv6
.src
, NULL
, info
);
2484 return PTR_ERR(ndst
);
2486 #else /* !CONFIG_IPV6 */
2487 return -EPFNOSUPPORT
;
2490 info
->key
.tp_src
= sport
;
2491 info
->key
.tp_dst
= dport
;
2495 static const struct net_device_ops vxlan_netdev_ether_ops
= {
2496 .ndo_init
= vxlan_init
,
2497 .ndo_uninit
= vxlan_uninit
,
2498 .ndo_open
= vxlan_open
,
2499 .ndo_stop
= vxlan_stop
,
2500 .ndo_start_xmit
= vxlan_xmit
,
2501 .ndo_get_stats64
= ip_tunnel_get_stats64
,
2502 .ndo_set_rx_mode
= vxlan_set_multicast_list
,
2503 .ndo_change_mtu
= vxlan_change_mtu
,
2504 .ndo_validate_addr
= eth_validate_addr
,
2505 .ndo_set_mac_address
= eth_mac_addr
,
2506 .ndo_fdb_add
= vxlan_fdb_add
,
2507 .ndo_fdb_del
= vxlan_fdb_delete
,
2508 .ndo_fdb_dump
= vxlan_fdb_dump
,
2509 .ndo_fill_metadata_dst
= vxlan_fill_metadata_dst
,
2512 static const struct net_device_ops vxlan_netdev_raw_ops
= {
2513 .ndo_init
= vxlan_init
,
2514 .ndo_uninit
= vxlan_uninit
,
2515 .ndo_open
= vxlan_open
,
2516 .ndo_stop
= vxlan_stop
,
2517 .ndo_start_xmit
= vxlan_xmit
,
2518 .ndo_get_stats64
= ip_tunnel_get_stats64
,
2519 .ndo_change_mtu
= vxlan_change_mtu
,
2520 .ndo_fill_metadata_dst
= vxlan_fill_metadata_dst
,
2523 /* Info for udev, that this is a virtual tunnel endpoint */
2524 static struct device_type vxlan_type
= {
2528 /* Calls the ndo_add_vxlan_port of the caller in order to
2529 * supply the listening VXLAN udp ports. Callers are expected
2530 * to implement the ndo_add_vxlan_port.
2532 static void vxlan_push_rx_ports(struct net_device
*dev
)
2534 struct vxlan_sock
*vs
;
2535 struct net
*net
= dev_net(dev
);
2536 struct vxlan_net
*vn
= net_generic(net
, vxlan_net_id
);
2537 sa_family_t sa_family
;
2541 if (!dev
->netdev_ops
->ndo_add_vxlan_port
)
2544 spin_lock(&vn
->sock_lock
);
2545 for (i
= 0; i
< PORT_HASH_SIZE
; ++i
) {
2546 hlist_for_each_entry_rcu(vs
, &vn
->sock_list
[i
], hlist
) {
2547 port
= inet_sk(vs
->sock
->sk
)->inet_sport
;
2548 sa_family
= vxlan_get_sk_family(vs
);
2549 dev
->netdev_ops
->ndo_add_vxlan_port(dev
, sa_family
,
2553 spin_unlock(&vn
->sock_lock
);
2556 /* Initialize the device structure. */
2557 static void vxlan_setup(struct net_device
*dev
)
2559 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
2562 eth_hw_addr_random(dev
);
2565 dev
->destructor
= free_netdev
;
2566 SET_NETDEV_DEVTYPE(dev
, &vxlan_type
);
2568 dev
->features
|= NETIF_F_LLTX
;
2569 dev
->features
|= NETIF_F_SG
| NETIF_F_HW_CSUM
;
2570 dev
->features
|= NETIF_F_RXCSUM
;
2571 dev
->features
|= NETIF_F_GSO_SOFTWARE
;
2573 dev
->vlan_features
= dev
->features
;
2574 dev
->features
|= NETIF_F_HW_VLAN_CTAG_TX
| NETIF_F_HW_VLAN_STAG_TX
;
2575 dev
->hw_features
|= NETIF_F_SG
| NETIF_F_HW_CSUM
| NETIF_F_RXCSUM
;
2576 dev
->hw_features
|= NETIF_F_GSO_SOFTWARE
;
2577 dev
->hw_features
|= NETIF_F_HW_VLAN_CTAG_TX
| NETIF_F_HW_VLAN_STAG_TX
;
2578 netif_keep_dst(dev
);
2579 dev
->priv_flags
|= IFF_NO_QUEUE
;
2581 INIT_LIST_HEAD(&vxlan
->next
);
2582 spin_lock_init(&vxlan
->hash_lock
);
2584 init_timer_deferrable(&vxlan
->age_timer
);
2585 vxlan
->age_timer
.function
= vxlan_cleanup
;
2586 vxlan
->age_timer
.data
= (unsigned long) vxlan
;
2588 vxlan
->cfg
.dst_port
= htons(vxlan_port
);
2592 gro_cells_init(&vxlan
->gro_cells
, dev
);
2594 for (h
= 0; h
< FDB_HASH_SIZE
; ++h
)
2595 INIT_HLIST_HEAD(&vxlan
->fdb_head
[h
]);
2598 static void vxlan_ether_setup(struct net_device
*dev
)
2600 dev
->priv_flags
&= ~IFF_TX_SKB_SHARING
;
2601 dev
->priv_flags
|= IFF_LIVE_ADDR_CHANGE
;
2602 dev
->netdev_ops
= &vxlan_netdev_ether_ops
;
2605 static void vxlan_raw_setup(struct net_device
*dev
)
2607 dev
->header_ops
= NULL
;
2608 dev
->type
= ARPHRD_NONE
;
2609 dev
->hard_header_len
= 0;
2611 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
2612 dev
->netdev_ops
= &vxlan_netdev_raw_ops
;
2615 static const struct nla_policy vxlan_policy
[IFLA_VXLAN_MAX
+ 1] = {
2616 [IFLA_VXLAN_ID
] = { .type
= NLA_U32
},
2617 [IFLA_VXLAN_GROUP
] = { .len
= FIELD_SIZEOF(struct iphdr
, daddr
) },
2618 [IFLA_VXLAN_GROUP6
] = { .len
= sizeof(struct in6_addr
) },
2619 [IFLA_VXLAN_LINK
] = { .type
= NLA_U32
},
2620 [IFLA_VXLAN_LOCAL
] = { .len
= FIELD_SIZEOF(struct iphdr
, saddr
) },
2621 [IFLA_VXLAN_LOCAL6
] = { .len
= sizeof(struct in6_addr
) },
2622 [IFLA_VXLAN_TOS
] = { .type
= NLA_U8
},
2623 [IFLA_VXLAN_TTL
] = { .type
= NLA_U8
},
2624 [IFLA_VXLAN_LABEL
] = { .type
= NLA_U32
},
2625 [IFLA_VXLAN_LEARNING
] = { .type
= NLA_U8
},
2626 [IFLA_VXLAN_AGEING
] = { .type
= NLA_U32
},
2627 [IFLA_VXLAN_LIMIT
] = { .type
= NLA_U32
},
2628 [IFLA_VXLAN_PORT_RANGE
] = { .len
= sizeof(struct ifla_vxlan_port_range
) },
2629 [IFLA_VXLAN_PROXY
] = { .type
= NLA_U8
},
2630 [IFLA_VXLAN_RSC
] = { .type
= NLA_U8
},
2631 [IFLA_VXLAN_L2MISS
] = { .type
= NLA_U8
},
2632 [IFLA_VXLAN_L3MISS
] = { .type
= NLA_U8
},
2633 [IFLA_VXLAN_COLLECT_METADATA
] = { .type
= NLA_U8
},
2634 [IFLA_VXLAN_PORT
] = { .type
= NLA_U16
},
2635 [IFLA_VXLAN_UDP_CSUM
] = { .type
= NLA_U8
},
2636 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX
] = { .type
= NLA_U8
},
2637 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX
] = { .type
= NLA_U8
},
2638 [IFLA_VXLAN_REMCSUM_TX
] = { .type
= NLA_U8
},
2639 [IFLA_VXLAN_REMCSUM_RX
] = { .type
= NLA_U8
},
2640 [IFLA_VXLAN_GBP
] = { .type
= NLA_FLAG
, },
2641 [IFLA_VXLAN_GPE
] = { .type
= NLA_FLAG
, },
2642 [IFLA_VXLAN_REMCSUM_NOPARTIAL
] = { .type
= NLA_FLAG
},
2645 static int vxlan_validate(struct nlattr
*tb
[], struct nlattr
*data
[])
2647 if (tb
[IFLA_ADDRESS
]) {
2648 if (nla_len(tb
[IFLA_ADDRESS
]) != ETH_ALEN
) {
2649 pr_debug("invalid link address (not ethernet)\n");
2653 if (!is_valid_ether_addr(nla_data(tb
[IFLA_ADDRESS
]))) {
2654 pr_debug("invalid all zero ethernet address\n");
2655 return -EADDRNOTAVAIL
;
2662 if (data
[IFLA_VXLAN_ID
]) {
2663 __u32 id
= nla_get_u32(data
[IFLA_VXLAN_ID
]);
2664 if (id
>= VXLAN_VID_MASK
)
2668 if (data
[IFLA_VXLAN_PORT_RANGE
]) {
2669 const struct ifla_vxlan_port_range
*p
2670 = nla_data(data
[IFLA_VXLAN_PORT_RANGE
]);
2672 if (ntohs(p
->high
) < ntohs(p
->low
)) {
2673 pr_debug("port range %u .. %u not valid\n",
2674 ntohs(p
->low
), ntohs(p
->high
));
2682 static void vxlan_get_drvinfo(struct net_device
*netdev
,
2683 struct ethtool_drvinfo
*drvinfo
)
2685 strlcpy(drvinfo
->version
, VXLAN_VERSION
, sizeof(drvinfo
->version
));
2686 strlcpy(drvinfo
->driver
, "vxlan", sizeof(drvinfo
->driver
));
2689 static const struct ethtool_ops vxlan_ethtool_ops
= {
2690 .get_drvinfo
= vxlan_get_drvinfo
,
2691 .get_link
= ethtool_op_get_link
,
2694 static struct socket
*vxlan_create_sock(struct net
*net
, bool ipv6
,
2695 __be16 port
, u32 flags
)
2697 struct socket
*sock
;
2698 struct udp_port_cfg udp_conf
;
2701 memset(&udp_conf
, 0, sizeof(udp_conf
));
2704 udp_conf
.family
= AF_INET6
;
2705 udp_conf
.use_udp6_rx_checksums
=
2706 !(flags
& VXLAN_F_UDP_ZERO_CSUM6_RX
);
2707 udp_conf
.ipv6_v6only
= 1;
2709 udp_conf
.family
= AF_INET
;
2712 udp_conf
.local_udp_port
= port
;
2714 /* Open UDP socket */
2715 err
= udp_sock_create(net
, &udp_conf
, &sock
);
2717 return ERR_PTR(err
);
2722 /* Create new listen socket if needed */
2723 static struct vxlan_sock
*vxlan_socket_create(struct net
*net
, bool ipv6
,
2724 __be16 port
, u32 flags
)
2726 struct vxlan_net
*vn
= net_generic(net
, vxlan_net_id
);
2727 struct vxlan_sock
*vs
;
2728 struct socket
*sock
;
2730 struct udp_tunnel_sock_cfg tunnel_cfg
;
2732 vs
= kzalloc(sizeof(*vs
), GFP_KERNEL
);
2734 return ERR_PTR(-ENOMEM
);
2736 for (h
= 0; h
< VNI_HASH_SIZE
; ++h
)
2737 INIT_HLIST_HEAD(&vs
->vni_list
[h
]);
2739 sock
= vxlan_create_sock(net
, ipv6
, port
, flags
);
2741 pr_info("Cannot bind port %d, err=%ld\n", ntohs(port
),
2744 return ERR_CAST(sock
);
2748 atomic_set(&vs
->refcnt
, 1);
2749 vs
->flags
= (flags
& VXLAN_F_RCV_FLAGS
);
2751 spin_lock(&vn
->sock_lock
);
2752 hlist_add_head_rcu(&vs
->hlist
, vs_head(net
, port
));
2753 vxlan_notify_add_rx_port(vs
);
2754 spin_unlock(&vn
->sock_lock
);
2756 /* Mark socket as an encapsulation socket. */
2757 memset(&tunnel_cfg
, 0, sizeof(tunnel_cfg
));
2758 tunnel_cfg
.sk_user_data
= vs
;
2759 tunnel_cfg
.encap_type
= 1;
2760 tunnel_cfg
.encap_rcv
= vxlan_rcv
;
2761 tunnel_cfg
.encap_destroy
= NULL
;
2762 tunnel_cfg
.gro_receive
= vxlan_gro_receive
;
2763 tunnel_cfg
.gro_complete
= vxlan_gro_complete
;
2765 setup_udp_tunnel_sock(net
, sock
, &tunnel_cfg
);
2770 static int __vxlan_sock_add(struct vxlan_dev
*vxlan
, bool ipv6
)
2772 struct vxlan_net
*vn
= net_generic(vxlan
->net
, vxlan_net_id
);
2773 struct vxlan_sock
*vs
= NULL
;
2775 if (!vxlan
->cfg
.no_share
) {
2776 spin_lock(&vn
->sock_lock
);
2777 vs
= vxlan_find_sock(vxlan
->net
, ipv6
? AF_INET6
: AF_INET
,
2778 vxlan
->cfg
.dst_port
, vxlan
->flags
);
2779 if (vs
&& !atomic_add_unless(&vs
->refcnt
, 1, 0)) {
2780 spin_unlock(&vn
->sock_lock
);
2783 spin_unlock(&vn
->sock_lock
);
2786 vs
= vxlan_socket_create(vxlan
->net
, ipv6
,
2787 vxlan
->cfg
.dst_port
, vxlan
->flags
);
2790 #if IS_ENABLED(CONFIG_IPV6)
2792 vxlan
->vn6_sock
= vs
;
2795 vxlan
->vn4_sock
= vs
;
2796 vxlan_vs_add_dev(vs
, vxlan
);
2800 static int vxlan_sock_add(struct vxlan_dev
*vxlan
)
2802 bool ipv6
= vxlan
->flags
& VXLAN_F_IPV6
;
2803 bool metadata
= vxlan
->flags
& VXLAN_F_COLLECT_METADATA
;
2806 vxlan
->vn4_sock
= NULL
;
2807 #if IS_ENABLED(CONFIG_IPV6)
2808 vxlan
->vn6_sock
= NULL
;
2809 if (ipv6
|| metadata
)
2810 ret
= __vxlan_sock_add(vxlan
, true);
2812 if (!ret
&& (!ipv6
|| metadata
))
2813 ret
= __vxlan_sock_add(vxlan
, false);
2815 vxlan_sock_release(vxlan
);
2819 static int vxlan_dev_configure(struct net
*src_net
, struct net_device
*dev
,
2820 struct vxlan_config
*conf
)
2822 struct vxlan_net
*vn
= net_generic(src_net
, vxlan_net_id
);
2823 struct vxlan_dev
*vxlan
= netdev_priv(dev
), *tmp
;
2824 struct vxlan_rdst
*dst
= &vxlan
->default_dst
;
2825 unsigned short needed_headroom
= ETH_HLEN
;
2827 bool use_ipv6
= false;
2828 __be16 default_port
= vxlan
->cfg
.dst_port
;
2829 struct net_device
*lowerdev
= NULL
;
2831 if (conf
->flags
& VXLAN_F_GPE
) {
2832 if (conf
->flags
& ~VXLAN_F_ALLOWED_GPE
)
2834 /* For now, allow GPE only together with COLLECT_METADATA.
2835 * This can be relaxed later; in such case, the other side
2836 * of the PtP link will have to be provided.
2838 if (!(conf
->flags
& VXLAN_F_COLLECT_METADATA
))
2841 vxlan_raw_setup(dev
);
2843 vxlan_ether_setup(dev
);
2846 vxlan
->net
= src_net
;
2848 dst
->remote_vni
= conf
->vni
;
2850 memcpy(&dst
->remote_ip
, &conf
->remote_ip
, sizeof(conf
->remote_ip
));
2852 /* Unless IPv6 is explicitly requested, assume IPv4 */
2853 if (!dst
->remote_ip
.sa
.sa_family
)
2854 dst
->remote_ip
.sa
.sa_family
= AF_INET
;
2856 if (dst
->remote_ip
.sa
.sa_family
== AF_INET6
||
2857 vxlan
->cfg
.saddr
.sa
.sa_family
== AF_INET6
) {
2858 if (!IS_ENABLED(CONFIG_IPV6
))
2859 return -EPFNOSUPPORT
;
2861 vxlan
->flags
|= VXLAN_F_IPV6
;
2864 if (conf
->label
&& !use_ipv6
) {
2865 pr_info("label only supported in use with IPv6\n");
2869 if (conf
->remote_ifindex
) {
2870 lowerdev
= __dev_get_by_index(src_net
, conf
->remote_ifindex
);
2871 dst
->remote_ifindex
= conf
->remote_ifindex
;
2874 pr_info("ifindex %d does not exist\n", dst
->remote_ifindex
);
2878 #if IS_ENABLED(CONFIG_IPV6)
2880 struct inet6_dev
*idev
= __in6_dev_get(lowerdev
);
2881 if (idev
&& idev
->cnf
.disable_ipv6
) {
2882 pr_info("IPv6 is disabled via sysctl\n");
2889 dev
->mtu
= lowerdev
->mtu
- (use_ipv6
? VXLAN6_HEADROOM
: VXLAN_HEADROOM
);
2891 needed_headroom
= lowerdev
->hard_header_len
;
2895 err
= __vxlan_change_mtu(dev
, lowerdev
, dst
, conf
->mtu
, false);
2900 if (use_ipv6
|| conf
->flags
& VXLAN_F_COLLECT_METADATA
)
2901 needed_headroom
+= VXLAN6_HEADROOM
;
2903 needed_headroom
+= VXLAN_HEADROOM
;
2904 dev
->needed_headroom
= needed_headroom
;
2906 memcpy(&vxlan
->cfg
, conf
, sizeof(*conf
));
2907 if (!vxlan
->cfg
.dst_port
) {
2908 if (conf
->flags
& VXLAN_F_GPE
)
2909 vxlan
->cfg
.dst_port
= 4790; /* IANA assigned VXLAN-GPE port */
2911 vxlan
->cfg
.dst_port
= default_port
;
2913 vxlan
->flags
|= conf
->flags
;
2915 if (!vxlan
->cfg
.age_interval
)
2916 vxlan
->cfg
.age_interval
= FDB_AGE_DEFAULT
;
2918 list_for_each_entry(tmp
, &vn
->vxlan_list
, next
) {
2919 if (tmp
->cfg
.vni
== conf
->vni
&&
2920 (tmp
->default_dst
.remote_ip
.sa
.sa_family
== AF_INET6
||
2921 tmp
->cfg
.saddr
.sa
.sa_family
== AF_INET6
) == use_ipv6
&&
2922 tmp
->cfg
.dst_port
== vxlan
->cfg
.dst_port
&&
2923 (tmp
->flags
& VXLAN_F_RCV_FLAGS
) ==
2924 (vxlan
->flags
& VXLAN_F_RCV_FLAGS
))
2928 dev
->ethtool_ops
= &vxlan_ethtool_ops
;
2930 /* create an fdb entry for a valid default destination */
2931 if (!vxlan_addr_any(&vxlan
->default_dst
.remote_ip
)) {
2932 err
= vxlan_fdb_create(vxlan
, all_zeros_mac
,
2933 &vxlan
->default_dst
.remote_ip
,
2934 NUD_REACHABLE
|NUD_PERMANENT
,
2935 NLM_F_EXCL
|NLM_F_CREATE
,
2936 vxlan
->cfg
.dst_port
,
2937 vxlan
->default_dst
.remote_vni
,
2938 vxlan
->default_dst
.remote_ifindex
,
2944 err
= register_netdevice(dev
);
2946 vxlan_fdb_delete_default(vxlan
);
2950 list_add(&vxlan
->next
, &vn
->vxlan_list
);
2955 static int vxlan_newlink(struct net
*src_net
, struct net_device
*dev
,
2956 struct nlattr
*tb
[], struct nlattr
*data
[])
2958 struct vxlan_config conf
;
2961 memset(&conf
, 0, sizeof(conf
));
2963 if (data
[IFLA_VXLAN_ID
])
2964 conf
.vni
= cpu_to_be32(nla_get_u32(data
[IFLA_VXLAN_ID
]));
2966 if (data
[IFLA_VXLAN_GROUP
]) {
2967 conf
.remote_ip
.sin
.sin_addr
.s_addr
= nla_get_in_addr(data
[IFLA_VXLAN_GROUP
]);
2968 } else if (data
[IFLA_VXLAN_GROUP6
]) {
2969 if (!IS_ENABLED(CONFIG_IPV6
))
2970 return -EPFNOSUPPORT
;
2972 conf
.remote_ip
.sin6
.sin6_addr
= nla_get_in6_addr(data
[IFLA_VXLAN_GROUP6
]);
2973 conf
.remote_ip
.sa
.sa_family
= AF_INET6
;
2976 if (data
[IFLA_VXLAN_LOCAL
]) {
2977 conf
.saddr
.sin
.sin_addr
.s_addr
= nla_get_in_addr(data
[IFLA_VXLAN_LOCAL
]);
2978 conf
.saddr
.sa
.sa_family
= AF_INET
;
2979 } else if (data
[IFLA_VXLAN_LOCAL6
]) {
2980 if (!IS_ENABLED(CONFIG_IPV6
))
2981 return -EPFNOSUPPORT
;
2983 /* TODO: respect scope id */
2984 conf
.saddr
.sin6
.sin6_addr
= nla_get_in6_addr(data
[IFLA_VXLAN_LOCAL6
]);
2985 conf
.saddr
.sa
.sa_family
= AF_INET6
;
2988 if (data
[IFLA_VXLAN_LINK
])
2989 conf
.remote_ifindex
= nla_get_u32(data
[IFLA_VXLAN_LINK
]);
2991 if (data
[IFLA_VXLAN_TOS
])
2992 conf
.tos
= nla_get_u8(data
[IFLA_VXLAN_TOS
]);
2994 if (data
[IFLA_VXLAN_TTL
])
2995 conf
.ttl
= nla_get_u8(data
[IFLA_VXLAN_TTL
]);
2997 if (data
[IFLA_VXLAN_LABEL
])
2998 conf
.label
= nla_get_be32(data
[IFLA_VXLAN_LABEL
]) &
2999 IPV6_FLOWLABEL_MASK
;
3001 if (!data
[IFLA_VXLAN_LEARNING
] || nla_get_u8(data
[IFLA_VXLAN_LEARNING
]))
3002 conf
.flags
|= VXLAN_F_LEARN
;
3004 if (data
[IFLA_VXLAN_AGEING
])
3005 conf
.age_interval
= nla_get_u32(data
[IFLA_VXLAN_AGEING
]);
3007 if (data
[IFLA_VXLAN_PROXY
] && nla_get_u8(data
[IFLA_VXLAN_PROXY
]))
3008 conf
.flags
|= VXLAN_F_PROXY
;
3010 if (data
[IFLA_VXLAN_RSC
] && nla_get_u8(data
[IFLA_VXLAN_RSC
]))
3011 conf
.flags
|= VXLAN_F_RSC
;
3013 if (data
[IFLA_VXLAN_L2MISS
] && nla_get_u8(data
[IFLA_VXLAN_L2MISS
]))
3014 conf
.flags
|= VXLAN_F_L2MISS
;
3016 if (data
[IFLA_VXLAN_L3MISS
] && nla_get_u8(data
[IFLA_VXLAN_L3MISS
]))
3017 conf
.flags
|= VXLAN_F_L3MISS
;
3019 if (data
[IFLA_VXLAN_LIMIT
])
3020 conf
.addrmax
= nla_get_u32(data
[IFLA_VXLAN_LIMIT
]);
3022 if (data
[IFLA_VXLAN_COLLECT_METADATA
] &&
3023 nla_get_u8(data
[IFLA_VXLAN_COLLECT_METADATA
]))
3024 conf
.flags
|= VXLAN_F_COLLECT_METADATA
;
3026 if (data
[IFLA_VXLAN_PORT_RANGE
]) {
3027 const struct ifla_vxlan_port_range
*p
3028 = nla_data(data
[IFLA_VXLAN_PORT_RANGE
]);
3029 conf
.port_min
= ntohs(p
->low
);
3030 conf
.port_max
= ntohs(p
->high
);
3033 if (data
[IFLA_VXLAN_PORT
])
3034 conf
.dst_port
= nla_get_be16(data
[IFLA_VXLAN_PORT
]);
3036 if (data
[IFLA_VXLAN_UDP_CSUM
] &&
3037 !nla_get_u8(data
[IFLA_VXLAN_UDP_CSUM
]))
3038 conf
.flags
|= VXLAN_F_UDP_ZERO_CSUM_TX
;
3040 if (data
[IFLA_VXLAN_UDP_ZERO_CSUM6_TX
] &&
3041 nla_get_u8(data
[IFLA_VXLAN_UDP_ZERO_CSUM6_TX
]))
3042 conf
.flags
|= VXLAN_F_UDP_ZERO_CSUM6_TX
;
3044 if (data
[IFLA_VXLAN_UDP_ZERO_CSUM6_RX
] &&
3045 nla_get_u8(data
[IFLA_VXLAN_UDP_ZERO_CSUM6_RX
]))
3046 conf
.flags
|= VXLAN_F_UDP_ZERO_CSUM6_RX
;
3048 if (data
[IFLA_VXLAN_REMCSUM_TX
] &&
3049 nla_get_u8(data
[IFLA_VXLAN_REMCSUM_TX
]))
3050 conf
.flags
|= VXLAN_F_REMCSUM_TX
;
3052 if (data
[IFLA_VXLAN_REMCSUM_RX
] &&
3053 nla_get_u8(data
[IFLA_VXLAN_REMCSUM_RX
]))
3054 conf
.flags
|= VXLAN_F_REMCSUM_RX
;
3056 if (data
[IFLA_VXLAN_GBP
])
3057 conf
.flags
|= VXLAN_F_GBP
;
3059 if (data
[IFLA_VXLAN_GPE
])
3060 conf
.flags
|= VXLAN_F_GPE
;
3062 if (data
[IFLA_VXLAN_REMCSUM_NOPARTIAL
])
3063 conf
.flags
|= VXLAN_F_REMCSUM_NOPARTIAL
;
3066 conf
.mtu
= nla_get_u32(tb
[IFLA_MTU
]);
3068 err
= vxlan_dev_configure(src_net
, dev
, &conf
);
3071 pr_info("ifindex %d does not exist\n", conf
.remote_ifindex
);
3075 pr_info("IPv6 is disabled via sysctl\n");
3079 pr_info("duplicate VNI %u\n", be32_to_cpu(conf
.vni
));
3083 pr_info("unsupported combination of extensions\n");
3090 static void vxlan_dellink(struct net_device
*dev
, struct list_head
*head
)
3092 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
3093 struct vxlan_net
*vn
= net_generic(vxlan
->net
, vxlan_net_id
);
3095 spin_lock(&vn
->sock_lock
);
3096 if (!hlist_unhashed(&vxlan
->hlist
))
3097 hlist_del_rcu(&vxlan
->hlist
);
3098 spin_unlock(&vn
->sock_lock
);
3100 gro_cells_destroy(&vxlan
->gro_cells
);
3101 list_del(&vxlan
->next
);
3102 unregister_netdevice_queue(dev
, head
);
3105 static size_t vxlan_get_size(const struct net_device
*dev
)
3108 return nla_total_size(sizeof(__u32
)) + /* IFLA_VXLAN_ID */
3109 nla_total_size(sizeof(struct in6_addr
)) + /* IFLA_VXLAN_GROUP{6} */
3110 nla_total_size(sizeof(__u32
)) + /* IFLA_VXLAN_LINK */
3111 nla_total_size(sizeof(struct in6_addr
)) + /* IFLA_VXLAN_LOCAL{6} */
3112 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_TTL */
3113 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_TOS */
3114 nla_total_size(sizeof(__be32
)) + /* IFLA_VXLAN_LABEL */
3115 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_LEARNING */
3116 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_PROXY */
3117 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_RSC */
3118 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_L2MISS */
3119 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_L3MISS */
3120 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_COLLECT_METADATA */
3121 nla_total_size(sizeof(__u32
)) + /* IFLA_VXLAN_AGEING */
3122 nla_total_size(sizeof(__u32
)) + /* IFLA_VXLAN_LIMIT */
3123 nla_total_size(sizeof(struct ifla_vxlan_port_range
)) +
3124 nla_total_size(sizeof(__be16
)) + /* IFLA_VXLAN_PORT */
3125 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_UDP_CSUM */
3126 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3127 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
3128 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_REMCSUM_TX */
3129 nla_total_size(sizeof(__u8
)) + /* IFLA_VXLAN_REMCSUM_RX */
3133 static int vxlan_fill_info(struct sk_buff
*skb
, const struct net_device
*dev
)
3135 const struct vxlan_dev
*vxlan
= netdev_priv(dev
);
3136 const struct vxlan_rdst
*dst
= &vxlan
->default_dst
;
3137 struct ifla_vxlan_port_range ports
= {
3138 .low
= htons(vxlan
->cfg
.port_min
),
3139 .high
= htons(vxlan
->cfg
.port_max
),
3142 if (nla_put_u32(skb
, IFLA_VXLAN_ID
, be32_to_cpu(dst
->remote_vni
)))
3143 goto nla_put_failure
;
3145 if (!vxlan_addr_any(&dst
->remote_ip
)) {
3146 if (dst
->remote_ip
.sa
.sa_family
== AF_INET
) {
3147 if (nla_put_in_addr(skb
, IFLA_VXLAN_GROUP
,
3148 dst
->remote_ip
.sin
.sin_addr
.s_addr
))
3149 goto nla_put_failure
;
3150 #if IS_ENABLED(CONFIG_IPV6)
3152 if (nla_put_in6_addr(skb
, IFLA_VXLAN_GROUP6
,
3153 &dst
->remote_ip
.sin6
.sin6_addr
))
3154 goto nla_put_failure
;
3159 if (dst
->remote_ifindex
&& nla_put_u32(skb
, IFLA_VXLAN_LINK
, dst
->remote_ifindex
))
3160 goto nla_put_failure
;
3162 if (!vxlan_addr_any(&vxlan
->cfg
.saddr
)) {
3163 if (vxlan
->cfg
.saddr
.sa
.sa_family
== AF_INET
) {
3164 if (nla_put_in_addr(skb
, IFLA_VXLAN_LOCAL
,
3165 vxlan
->cfg
.saddr
.sin
.sin_addr
.s_addr
))
3166 goto nla_put_failure
;
3167 #if IS_ENABLED(CONFIG_IPV6)
3169 if (nla_put_in6_addr(skb
, IFLA_VXLAN_LOCAL6
,
3170 &vxlan
->cfg
.saddr
.sin6
.sin6_addr
))
3171 goto nla_put_failure
;
3176 if (nla_put_u8(skb
, IFLA_VXLAN_TTL
, vxlan
->cfg
.ttl
) ||
3177 nla_put_u8(skb
, IFLA_VXLAN_TOS
, vxlan
->cfg
.tos
) ||
3178 nla_put_be32(skb
, IFLA_VXLAN_LABEL
, vxlan
->cfg
.label
) ||
3179 nla_put_u8(skb
, IFLA_VXLAN_LEARNING
,
3180 !!(vxlan
->flags
& VXLAN_F_LEARN
)) ||
3181 nla_put_u8(skb
, IFLA_VXLAN_PROXY
,
3182 !!(vxlan
->flags
& VXLAN_F_PROXY
)) ||
3183 nla_put_u8(skb
, IFLA_VXLAN_RSC
, !!(vxlan
->flags
& VXLAN_F_RSC
)) ||
3184 nla_put_u8(skb
, IFLA_VXLAN_L2MISS
,
3185 !!(vxlan
->flags
& VXLAN_F_L2MISS
)) ||
3186 nla_put_u8(skb
, IFLA_VXLAN_L3MISS
,
3187 !!(vxlan
->flags
& VXLAN_F_L3MISS
)) ||
3188 nla_put_u8(skb
, IFLA_VXLAN_COLLECT_METADATA
,
3189 !!(vxlan
->flags
& VXLAN_F_COLLECT_METADATA
)) ||
3190 nla_put_u32(skb
, IFLA_VXLAN_AGEING
, vxlan
->cfg
.age_interval
) ||
3191 nla_put_u32(skb
, IFLA_VXLAN_LIMIT
, vxlan
->cfg
.addrmax
) ||
3192 nla_put_be16(skb
, IFLA_VXLAN_PORT
, vxlan
->cfg
.dst_port
) ||
3193 nla_put_u8(skb
, IFLA_VXLAN_UDP_CSUM
,
3194 !(vxlan
->flags
& VXLAN_F_UDP_ZERO_CSUM_TX
)) ||
3195 nla_put_u8(skb
, IFLA_VXLAN_UDP_ZERO_CSUM6_TX
,
3196 !!(vxlan
->flags
& VXLAN_F_UDP_ZERO_CSUM6_TX
)) ||
3197 nla_put_u8(skb
, IFLA_VXLAN_UDP_ZERO_CSUM6_RX
,
3198 !!(vxlan
->flags
& VXLAN_F_UDP_ZERO_CSUM6_RX
)) ||
3199 nla_put_u8(skb
, IFLA_VXLAN_REMCSUM_TX
,
3200 !!(vxlan
->flags
& VXLAN_F_REMCSUM_TX
)) ||
3201 nla_put_u8(skb
, IFLA_VXLAN_REMCSUM_RX
,
3202 !!(vxlan
->flags
& VXLAN_F_REMCSUM_RX
)))
3203 goto nla_put_failure
;
3205 if (nla_put(skb
, IFLA_VXLAN_PORT_RANGE
, sizeof(ports
), &ports
))
3206 goto nla_put_failure
;
3208 if (vxlan
->flags
& VXLAN_F_GBP
&&
3209 nla_put_flag(skb
, IFLA_VXLAN_GBP
))
3210 goto nla_put_failure
;
3212 if (vxlan
->flags
& VXLAN_F_GPE
&&
3213 nla_put_flag(skb
, IFLA_VXLAN_GPE
))
3214 goto nla_put_failure
;
3216 if (vxlan
->flags
& VXLAN_F_REMCSUM_NOPARTIAL
&&
3217 nla_put_flag(skb
, IFLA_VXLAN_REMCSUM_NOPARTIAL
))
3218 goto nla_put_failure
;
3226 static struct net
*vxlan_get_link_net(const struct net_device
*dev
)
3228 struct vxlan_dev
*vxlan
= netdev_priv(dev
);
3233 static struct rtnl_link_ops vxlan_link_ops __read_mostly
= {
3235 .maxtype
= IFLA_VXLAN_MAX
,
3236 .policy
= vxlan_policy
,
3237 .priv_size
= sizeof(struct vxlan_dev
),
3238 .setup
= vxlan_setup
,
3239 .validate
= vxlan_validate
,
3240 .newlink
= vxlan_newlink
,
3241 .dellink
= vxlan_dellink
,
3242 .get_size
= vxlan_get_size
,
3243 .fill_info
= vxlan_fill_info
,
3244 .get_link_net
= vxlan_get_link_net
,
3247 struct net_device
*vxlan_dev_create(struct net
*net
, const char *name
,
3248 u8 name_assign_type
,
3249 struct vxlan_config
*conf
)
3251 struct nlattr
*tb
[IFLA_MAX
+ 1];
3252 struct net_device
*dev
;
3255 memset(&tb
, 0, sizeof(tb
));
3257 dev
= rtnl_create_link(net
, name
, name_assign_type
,
3258 &vxlan_link_ops
, tb
);
3262 err
= vxlan_dev_configure(net
, dev
, conf
);
3265 return ERR_PTR(err
);
3268 err
= rtnl_configure_link(dev
, NULL
);
3270 LIST_HEAD(list_kill
);
3272 vxlan_dellink(dev
, &list_kill
);
3273 unregister_netdevice_many(&list_kill
);
3274 return ERR_PTR(err
);
3279 EXPORT_SYMBOL_GPL(vxlan_dev_create
);
3281 static void vxlan_handle_lowerdev_unregister(struct vxlan_net
*vn
,
3282 struct net_device
*dev
)
3284 struct vxlan_dev
*vxlan
, *next
;
3285 LIST_HEAD(list_kill
);
3287 list_for_each_entry_safe(vxlan
, next
, &vn
->vxlan_list
, next
) {
3288 struct vxlan_rdst
*dst
= &vxlan
->default_dst
;
3290 /* In case we created vxlan device with carrier
3291 * and we loose the carrier due to module unload
3292 * we also need to remove vxlan device. In other
3293 * cases, it's not necessary and remote_ifindex
3294 * is 0 here, so no matches.
3296 if (dst
->remote_ifindex
== dev
->ifindex
)
3297 vxlan_dellink(vxlan
->dev
, &list_kill
);
3300 unregister_netdevice_many(&list_kill
);
3303 static int vxlan_netdevice_event(struct notifier_block
*unused
,
3304 unsigned long event
, void *ptr
)
3306 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
3307 struct vxlan_net
*vn
= net_generic(dev_net(dev
), vxlan_net_id
);
3309 if (event
== NETDEV_UNREGISTER
)
3310 vxlan_handle_lowerdev_unregister(vn
, dev
);
3311 else if (event
== NETDEV_OFFLOAD_PUSH_VXLAN
)
3312 vxlan_push_rx_ports(dev
);
3317 static struct notifier_block vxlan_notifier_block __read_mostly
= {
3318 .notifier_call
= vxlan_netdevice_event
,
3321 static __net_init
int vxlan_init_net(struct net
*net
)
3323 struct vxlan_net
*vn
= net_generic(net
, vxlan_net_id
);
3326 INIT_LIST_HEAD(&vn
->vxlan_list
);
3327 spin_lock_init(&vn
->sock_lock
);
3329 for (h
= 0; h
< PORT_HASH_SIZE
; ++h
)
3330 INIT_HLIST_HEAD(&vn
->sock_list
[h
]);
3335 static void __net_exit
vxlan_exit_net(struct net
*net
)
3337 struct vxlan_net
*vn
= net_generic(net
, vxlan_net_id
);
3338 struct vxlan_dev
*vxlan
, *next
;
3339 struct net_device
*dev
, *aux
;
3343 for_each_netdev_safe(net
, dev
, aux
)
3344 if (dev
->rtnl_link_ops
== &vxlan_link_ops
)
3345 unregister_netdevice_queue(dev
, &list
);
3347 list_for_each_entry_safe(vxlan
, next
, &vn
->vxlan_list
, next
) {
3348 /* If vxlan->dev is in the same netns, it has already been added
3349 * to the list by the previous loop.
3351 if (!net_eq(dev_net(vxlan
->dev
), net
)) {
3352 gro_cells_destroy(&vxlan
->gro_cells
);
3353 unregister_netdevice_queue(vxlan
->dev
, &list
);
3357 unregister_netdevice_many(&list
);
3361 static struct pernet_operations vxlan_net_ops
= {
3362 .init
= vxlan_init_net
,
3363 .exit
= vxlan_exit_net
,
3364 .id
= &vxlan_net_id
,
3365 .size
= sizeof(struct vxlan_net
),
3368 static int __init
vxlan_init_module(void)
3372 get_random_bytes(&vxlan_salt
, sizeof(vxlan_salt
));
3374 rc
= register_pernet_subsys(&vxlan_net_ops
);
3378 rc
= register_netdevice_notifier(&vxlan_notifier_block
);
3382 rc
= rtnl_link_register(&vxlan_link_ops
);
3388 unregister_netdevice_notifier(&vxlan_notifier_block
);
3390 unregister_pernet_subsys(&vxlan_net_ops
);
3394 late_initcall(vxlan_init_module
);
3396 static void __exit
vxlan_cleanup_module(void)
3398 rtnl_link_unregister(&vxlan_link_ops
);
3399 unregister_netdevice_notifier(&vxlan_notifier_block
);
3400 unregister_pernet_subsys(&vxlan_net_ops
);
3401 /* rcu_barrier() is called by netns */
3403 module_exit(vxlan_cleanup_module
);
3405 MODULE_LICENSE("GPL");
3406 MODULE_VERSION(VXLAN_VERSION
);
3407 MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
3408 MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
3409 MODULE_ALIAS_RTNL_LINK("vxlan");