blob: b3b9db68f758a2062a2f6bde2bfb9805d271cc6c [file] [log] [blame]
stephen hemmingerd3428942012-10-01 12:32:35 +00001/*
Rami Roseneb5ce432012-11-13 13:29:15 +00002 * VXLAN: Virtual eXtensible Local Area Network
stephen hemmingerd3428942012-10-01 12:32:35 +00003 *
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004 * Copyright (c) 2012-2013 Vyatta Inc.
stephen hemmingerd3428942012-10-01 12:32:35 +00005 *
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.
stephen hemmingerd3428942012-10-01 12:32:35 +00009 */
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>
Pravin B Shelar1eaa8172013-08-19 11:23:29 -070027#include <linux/if_vlan.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000028#include <linux/hash.h>
Yan Burman1b13c972013-01-29 23:43:07 +000029#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000030#include <net/arp.h>
31#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000032#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000033#include <net/ip_tunnels.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000034#include <net/icmp.h>
35#include <net/udp.h>
Tom Herbert3ee64f32014-07-13 19:49:42 -070036#include <net/udp_tunnel.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000037#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>
Pravin B Shelar012a5722013-08-19 11:23:07 -070043#include <net/vxlan.h>
Or Gerlitzdc01e7d2014-01-20 13:59:21 +020044#include <net/protocol.h>
stephen hemminger40d29af2016-02-09 22:07:29 -080045
Cong Wange4c7ed42013-08-31 13:44:33 +080046#if IS_ENABLED(CONFIG_IPV6)
47#include <net/ipv6.h>
48#include <net/addrconf.h>
49#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080050#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080051#endif
Thomas Grafee122c72015-07-21 10:43:58 +020052#include <net/dst_metadata.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000053
54#define VXLAN_VERSION "0.1"
55
stephen hemminger553675f2013-05-16 11:35:20 +000056#define PORT_HASH_BITS 8
57#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000058#define FDB_AGE_DEFAULT 300 /* 5 min */
59#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
60
stephen hemminger23c578b2013-04-27 11:31:53 +000061/* UDP port for VXLAN traffic.
62 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070063 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000064 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070065static unsigned short vxlan_port __read_mostly = 8472;
66module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000067MODULE_PARM_DESC(udp_port, "Destination UDP port");
68
69static bool log_ecn_error = true;
70module_param(log_ecn_error, bool, 0644);
71MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
72
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -070073static int vxlan_net_id;
Thomas Graf0dfbdf42015-07-21 10:44:02 +020074static struct rtnl_link_ops vxlan_link_ops;
stephen hemminger553675f2013-05-16 11:35:20 +000075
Li RongQing7256eac2016-01-29 09:43:47 +080076static const u8 all_zeros_mac[ETH_ALEN + 2];
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030077
Jiri Benc205f3562015-09-24 13:50:01 +020078static int vxlan_sock_add(struct vxlan_dev *vxlan);
Thomas Graf614732e2015-07-21 10:44:06 +020079
stephen hemminger553675f2013-05-16 11:35:20 +000080/* per-network namespace private data for this module */
81struct vxlan_net {
82 struct list_head vxlan_list;
83 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070084 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000085};
86
stephen hemmingerd3428942012-10-01 12:32:35 +000087/* Forwarding table entry */
88struct vxlan_fdb {
89 struct hlist_node hlist; /* linked list of entries */
90 struct rcu_head rcu;
91 unsigned long updated; /* jiffies */
92 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070093 struct list_head remotes;
Sowmini Varadhan7177a3b2015-07-20 09:54:50 +020094 u8 eth_addr[ETH_ALEN];
stephen hemmingerd3428942012-10-01 12:32:35 +000095 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +000096 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +000097};
98
stephen hemmingerd3428942012-10-01 12:32:35 +000099/* salt for hash table */
100static u32 vxlan_salt __read_mostly;
101
Thomas Grafee122c72015-07-21 10:43:58 +0200102static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
103{
Thomas Grafe7030872015-07-21 10:44:01 +0200104 return vs->flags & VXLAN_F_COLLECT_METADATA ||
105 ip_tunnel_collect_metadata();
Thomas Grafee122c72015-07-21 10:43:58 +0200106}
107
Cong Wange4c7ed42013-08-31 13:44:33 +0800108#if IS_ENABLED(CONFIG_IPV6)
109static inline
110bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
111{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200112 if (a->sa.sa_family != b->sa.sa_family)
113 return false;
114 if (a->sa.sa_family == AF_INET6)
115 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
116 else
117 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800118}
119
120static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
121{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200122 if (ipa->sa.sa_family == AF_INET6)
123 return ipv6_addr_any(&ipa->sin6.sin6_addr);
124 else
125 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800126}
127
128static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
129{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200130 if (ipa->sa.sa_family == AF_INET6)
131 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
132 else
133 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800134}
135
136static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
137{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200138 if (nla_len(nla) >= sizeof(struct in6_addr)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200139 ip->sin6.sin6_addr = nla_get_in6_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200140 ip->sa.sa_family = AF_INET6;
141 return 0;
142 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200143 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200144 ip->sa.sa_family = AF_INET;
145 return 0;
146 } else {
147 return -EAFNOSUPPORT;
148 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800149}
150
151static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200152 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800153{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200154 if (ip->sa.sa_family == AF_INET6)
Jiri Benc930345e2015-03-29 16:59:25 +0200155 return nla_put_in6_addr(skb, attr, &ip->sin6.sin6_addr);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200156 else
Jiri Benc930345e2015-03-29 16:59:25 +0200157 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800158}
159
160#else /* !CONFIG_IPV6 */
161
162static inline
163bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
164{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200165 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800166}
167
168static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
169{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200170 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800171}
172
173static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
174{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200175 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800176}
177
178static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
179{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200180 if (nla_len(nla) >= sizeof(struct in6_addr)) {
181 return -EAFNOSUPPORT;
182 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200183 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200184 ip->sa.sa_family = AF_INET;
185 return 0;
186 } else {
187 return -EAFNOSUPPORT;
188 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800189}
190
191static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200192 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800193{
Jiri Benc930345e2015-03-29 16:59:25 +0200194 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800195}
196#endif
197
stephen hemminger553675f2013-05-16 11:35:20 +0000198/* Virtual Network hash table head */
Jiri Benc54bfd872016-02-16 21:58:58 +0100199static inline struct hlist_head *vni_head(struct vxlan_sock *vs, __be32 vni)
stephen hemminger553675f2013-05-16 11:35:20 +0000200{
Jiri Benc54bfd872016-02-16 21:58:58 +0100201 return &vs->vni_list[hash_32((__force u32)vni, VNI_HASH_BITS)];
stephen hemminger553675f2013-05-16 11:35:20 +0000202}
203
204/* Socket hash table head */
205static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000206{
207 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
208
stephen hemminger553675f2013-05-16 11:35:20 +0000209 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
210}
211
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700212/* First remote destination for a forwarding entry.
213 * Guaranteed to be non-NULL because remotes are never deleted.
214 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700215static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700216{
stephen hemminger5ca54612013-08-04 17:17:39 -0700217 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
218}
219
220static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
221{
222 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700223}
224
Thomas Grafac5132d2015-01-15 03:53:56 +0100225/* Find VXLAN socket based on network namespace, address family and UDP port
226 * and enabled unshareable flags.
227 */
228static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
229 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000230{
231 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800232
233 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000234
235 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200236 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Jiri Benc705cc622015-08-20 13:56:28 +0200237 vxlan_get_sk_family(vs) == family &&
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800238 vs->flags == flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000239 return vs;
240 }
241 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000242}
243
Jiri Benc54bfd872016-02-16 21:58:58 +0100244static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000245{
246 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000247
Jiri Bencb9167b22016-02-16 21:59:03 +0100248 /* For flow based devices, map all packets to VNI 0 */
249 if (vs->flags & VXLAN_F_COLLECT_METADATA)
250 vni = 0;
251
Jiri Benc54bfd872016-02-16 21:58:58 +0100252 hlist_for_each_entry_rcu(vxlan, vni_head(vs, vni), hlist) {
253 if (vxlan->default_dst.remote_vni == vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000254 return vxlan;
255 }
256
257 return NULL;
258}
259
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700260/* Look up VNI in a per net namespace table */
Jiri Benc54bfd872016-02-16 21:58:58 +0100261static struct vxlan_dev *vxlan_find_vni(struct net *net, __be32 vni,
Thomas Grafac5132d2015-01-15 03:53:56 +0100262 sa_family_t family, __be16 port,
263 u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700264{
265 struct vxlan_sock *vs;
266
Thomas Grafac5132d2015-01-15 03:53:56 +0100267 vs = vxlan_find_sock(net, family, port, flags);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700268 if (!vs)
269 return NULL;
270
Jiri Benc54bfd872016-02-16 21:58:58 +0100271 return vxlan_vs_find_vni(vs, vni);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700272}
273
stephen hemmingerd3428942012-10-01 12:32:35 +0000274/* Fill in neighbour message in skbuff. */
275static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700276 const struct vxlan_fdb *fdb,
277 u32 portid, u32 seq, int type, unsigned int flags,
278 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000279{
280 unsigned long now = jiffies;
281 struct nda_cacheinfo ci;
282 struct nlmsghdr *nlh;
283 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000284 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000285
286 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
287 if (nlh == NULL)
288 return -EMSGSIZE;
289
290 ndm = nlmsg_data(nlh);
291 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000292
293 send_eth = send_ip = true;
294
295 if (type == RTM_GETNEIGH) {
296 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800297 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000298 send_eth = !is_zero_ether_addr(fdb->eth_addr);
299 } else
300 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000301 ndm->ndm_state = fdb->state;
302 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000303 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800304 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000305
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100306 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100307 nla_put_s32(skb, NDA_LINK_NETNSID,
Nicolas Dichtel7a0877d2015-05-07 11:02:49 +0200308 peernet2id_alloc(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100309 goto nla_put_failure;
310
David Stevense4f67ad2012-11-20 02:50:14 +0000311 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000312 goto nla_put_failure;
313
Cong Wange4c7ed42013-08-31 13:44:33 +0800314 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000315 goto nla_put_failure;
316
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200317 if (rdst->remote_port && rdst->remote_port != vxlan->cfg.dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000318 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
319 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000320 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Jiri Benc54bfd872016-02-16 21:58:58 +0100321 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
David Stevens66817122013-03-15 04:35:51 +0000322 goto nla_put_failure;
323 if (rdst->remote_ifindex &&
324 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000325 goto nla_put_failure;
326
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);
330 ci.ndm_refcnt = 0;
331
332 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
333 goto nla_put_failure;
334
Johannes Berg053c0952015-01-16 22:09:00 +0100335 nlmsg_end(skb, nlh);
336 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000337
338nla_put_failure:
339 nlmsg_cancel(skb, nlh);
340 return -EMSGSIZE;
341}
342
343static inline size_t vxlan_nlmsg_size(void)
344{
345 return NLMSG_ALIGN(sizeof(struct ndmsg))
346 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800347 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000348 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000349 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
350 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100351 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000352 + nla_total_size(sizeof(struct nda_cacheinfo));
353}
354
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200355static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
356 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000357{
358 struct net *net = dev_net(vxlan->dev);
359 struct sk_buff *skb;
360 int err = -ENOBUFS;
361
362 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
363 if (skb == NULL)
364 goto errout;
365
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200366 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000367 if (err < 0) {
368 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
369 WARN_ON(err == -EMSGSIZE);
370 kfree_skb(skb);
371 goto errout;
372 }
373
374 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
375 return;
376errout:
377 if (err < 0)
378 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
379}
380
Cong Wange4c7ed42013-08-31 13:44:33 +0800381static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000382{
383 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700384 struct vxlan_fdb f = {
385 .state = NUD_STALE,
386 };
387 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800388 .remote_ip = *ipa, /* goes to NDA_DST */
Jiri Benc54bfd872016-02-16 21:58:58 +0100389 .remote_vni = cpu_to_be32(VXLAN_N_VID),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700390 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700391
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200392 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000393}
394
395static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
396{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700397 struct vxlan_fdb f = {
398 .state = NUD_STALE,
399 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200400 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000401
David Stevense4f67ad2012-11-20 02:50:14 +0000402 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
403
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200404 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000405}
406
stephen hemmingerd3428942012-10-01 12:32:35 +0000407/* Hash Ethernet address */
408static u32 eth_hash(const unsigned char *addr)
409{
410 u64 value = get_unaligned((u64 *)addr);
411
412 /* only want 6 bytes */
413#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000414 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000415#else
416 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000417#endif
418 return hash_64(value, FDB_HASH_BITS);
419}
420
421/* Hash chain to use given mac address */
422static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
423 const u8 *mac)
424{
425 return &vxlan->fdb_head[eth_hash(mac)];
426}
427
428/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000429static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000430 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000431{
432 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
433 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000434
Sasha Levinb67bfe02013-02-27 17:06:00 -0800435 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700436 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000437 return f;
438 }
439
440 return NULL;
441}
442
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000443static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
444 const u8 *mac)
445{
446 struct vxlan_fdb *f;
447
448 f = __vxlan_find_mac(vxlan, mac);
449 if (f)
450 f->used = jiffies;
451
452 return f;
453}
454
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300455/* caller should hold vxlan->hash_lock */
456static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800457 union vxlan_addr *ip, __be16 port,
Jiri Benc54bfd872016-02-16 21:58:58 +0100458 __be32 vni, __u32 ifindex)
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300459{
460 struct vxlan_rdst *rd;
461
462 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800463 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300464 rd->remote_port == port &&
465 rd->remote_vni == vni &&
466 rd->remote_ifindex == ifindex)
467 return rd;
468 }
469
470 return NULL;
471}
472
Thomas Richter906dc182013-07-19 17:20:07 +0200473/* Replace destination of unicast mac */
474static int vxlan_fdb_replace(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100475 union vxlan_addr *ip, __be16 port, __be32 vni,
476 __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200477{
478 struct vxlan_rdst *rd;
479
480 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
481 if (rd)
482 return 0;
483
484 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
485 if (!rd)
486 return 0;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100487
488 dst_cache_reset(&rd->dst_cache);
Cong Wange4c7ed42013-08-31 13:44:33 +0800489 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200490 rd->remote_port = port;
491 rd->remote_vni = vni;
492 rd->remote_ifindex = ifindex;
493 return 1;
494}
495
David Stevens66817122013-03-15 04:35:51 +0000496/* Add/update destinations for multicast */
497static int vxlan_fdb_append(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100498 union vxlan_addr *ip, __be16 port, __be32 vni,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200499 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000500{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700501 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000502
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300503 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
504 if (rd)
505 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700506
David Stevens66817122013-03-15 04:35:51 +0000507 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
508 if (rd == NULL)
509 return -ENOBUFS;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100510
511 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
512 kfree(rd);
513 return -ENOBUFS;
514 }
515
Cong Wange4c7ed42013-08-31 13:44:33 +0800516 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000517 rd->remote_port = port;
518 rd->remote_vni = vni;
519 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700520
521 list_add_tail_rcu(&rd->list, &f->remotes);
522
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200523 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000524 return 1;
525}
526
Tom Herbertdfd86452015-01-12 17:00:38 -0800527static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
528 unsigned int off,
529 struct vxlanhdr *vh, size_t hdrlen,
Jiri Benc54bfd872016-02-16 21:58:58 +0100530 __be32 vni_field,
531 struct gro_remcsum *grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800532 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800533{
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700534 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -0800535
536 if (skb->remcsum_offload)
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700537 return vh;
Tom Herbertdfd86452015-01-12 17:00:38 -0800538
539 if (!NAPI_GRO_CB(skb)->csum_valid)
540 return NULL;
541
Jiri Benc54bfd872016-02-16 21:58:58 +0100542 start = vxlan_rco_start(vni_field);
543 offset = start + vxlan_rco_offset(vni_field);
Tom Herbertdfd86452015-01-12 17:00:38 -0800544
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700545 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
546 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800547
548 skb->remcsum_offload = 1;
549
550 return vh;
551}
552
Tom Herbert5602c482016-04-05 08:22:53 -0700553static struct sk_buff **vxlan_gro_receive(struct sock *sk,
554 struct sk_buff **head,
555 struct sk_buff *skb)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200556{
557 struct sk_buff *p, **pp = NULL;
558 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800559 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200560 int flush = 1;
Tom Herbert5602c482016-04-05 08:22:53 -0700561 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
Jiri Benc54bfd872016-02-16 21:58:58 +0100562 __be32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800563 struct gro_remcsum grc;
564
565 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200566
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);
572 if (unlikely(!vh))
573 goto out;
574 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200575
Tom Herbertdfd86452015-01-12 17:00:38 -0800576 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
577
Jiri Benc54bfd872016-02-16 21:58:58 +0100578 flags = vh->vx_flags;
Tom Herbertdfd86452015-01-12 17:00:38 -0800579
580 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
581 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Jiri Benc54bfd872016-02-16 21:58:58 +0100582 vh->vx_vni, &grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800583 !!(vs->flags &
584 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800585
586 if (!vh)
587 goto out;
588 }
589
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700590 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
591
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200592 for (p = *head; p; p = p->next) {
593 if (!NAPI_GRO_CB(p)->same_flow)
594 continue;
595
596 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100597 if (vh->vx_flags != vh2->vx_flags ||
598 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200599 NAPI_GRO_CB(p)->same_flow = 0;
600 continue;
601 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200602 }
603
Jesse Gross9b174d82014-12-30 19:10:15 -0800604 pp = eth_gro_receive(head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800605 flush = 0;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200606
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200607out:
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800608 skb_gro_remcsum_cleanup(skb, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200609 NAPI_GRO_CB(skb)->flush |= flush;
610
611 return pp;
612}
613
Tom Herbert5602c482016-04-05 08:22:53 -0700614static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200615{
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700616 /* Sets 'skb->inner_mac_header' since we are always called with
617 * 'skb->encapsulation' set.
618 */
Jesse Gross9b174d82014-12-30 19:10:15 -0800619 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200620}
621
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700622/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200623static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700624{
625 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200626 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700627 struct net *net = sock_net(sk);
Jiri Benc705cc622015-08-20 13:56:28 +0200628 sa_family_t sa_family = vxlan_get_sk_family(vs);
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700629 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700630
631 rcu_read_lock();
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,
635 port);
636 }
637 rcu_read_unlock();
638}
639
640/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200641static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700642{
643 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200644 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700645 struct net *net = sock_net(sk);
Jiri Benc705cc622015-08-20 13:56:28 +0200646 sa_family_t sa_family = vxlan_get_sk_family(vs);
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700647 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700648
649 rcu_read_lock();
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,
653 port);
654 }
655 rcu_read_unlock();
656}
657
stephen hemmingerd3428942012-10-01 12:32:35 +0000658/* Add new entry to forwarding table -- assumes lock held */
659static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800660 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000661 __u16 state, __u16 flags,
Jiri Benc54bfd872016-02-16 21:58:58 +0100662 __be16 port, __be32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000663 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000664{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200665 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000666 struct vxlan_fdb *f;
667 int notify = 0;
668
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000669 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000670 if (f) {
671 if (flags & NLM_F_EXCL) {
672 netdev_dbg(vxlan->dev,
673 "lost race to create %pM\n", mac);
674 return -EEXIST;
675 }
676 if (f->state != state) {
677 f->state = state;
678 f->updated = jiffies;
679 notify = 1;
680 }
David Stevensae884082013-04-19 00:36:26 +0000681 if (f->flags != ndm_flags) {
682 f->flags = ndm_flags;
683 f->updated = jiffies;
684 notify = 1;
685 }
Thomas Richter906dc182013-07-19 17:20:07 +0200686 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))) {
Li RongQing60840422015-04-22 15:49:10 +0800690 notify |= vxlan_fdb_replace(f, ip, port, vni,
Thomas Richter906dc182013-07-19 17:20:07 +0200691 ifindex);
Thomas Richter906dc182013-07-19 17:20:07 +0200692 } else
693 return -EOPNOTSUPP;
694 }
David Stevens66817122013-03-15 04:35:51 +0000695 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300696 (is_multicast_ether_addr(f->eth_addr) ||
697 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200698 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
699 &rd);
David Stevens66817122013-03-15 04:35:51 +0000700
701 if (rc < 0)
702 return rc;
703 notify |= rc;
704 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000705 } else {
706 if (!(flags & NLM_F_CREATE))
707 return -ENOENT;
708
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200709 if (vxlan->cfg.addrmax &&
710 vxlan->addrcnt >= vxlan->cfg.addrmax)
stephen hemmingerd3428942012-10-01 12:32:35 +0000711 return -ENOSPC;
712
Thomas Richter906dc182013-07-19 17:20:07 +0200713 /* Disallow replace to add a multicast entry */
714 if ((flags & NLM_F_REPLACE) &&
715 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
716 return -EOPNOTSUPP;
717
Cong Wange4c7ed42013-08-31 13:44:33 +0800718 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000719 f = kmalloc(sizeof(*f), GFP_ATOMIC);
720 if (!f)
721 return -ENOMEM;
722
723 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000724 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000725 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000726 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700727 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000728 memcpy(f->eth_addr, mac, ETH_ALEN);
729
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200730 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700731
stephen hemmingerd3428942012-10-01 12:32:35 +0000732 ++vxlan->addrcnt;
733 hlist_add_head_rcu(&f->hlist,
734 vxlan_fdb_head(vxlan, mac));
735 }
736
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200737 if (notify) {
738 if (rd == NULL)
739 rd = first_remote_rtnl(f);
740 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
741 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000742
743 return 0;
744}
745
Wei Yongjun6706c822013-04-11 19:00:35 +0000746static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000747{
748 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700749 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000750
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100751 list_for_each_entry_safe(rd, nd, &f->remotes, list) {
752 dst_cache_destroy(&rd->dst_cache);
David Stevens66817122013-03-15 04:35:51 +0000753 kfree(rd);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100754 }
David Stevens66817122013-03-15 04:35:51 +0000755 kfree(f);
756}
757
stephen hemmingerd3428942012-10-01 12:32:35 +0000758static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
759{
760 netdev_dbg(vxlan->dev,
761 "delete %pM\n", f->eth_addr);
762
763 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200764 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000765
766 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000767 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000768}
769
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300770static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Jiri Benc54bfd872016-02-16 21:58:58 +0100771 union vxlan_addr *ip, __be16 *port, __be32 *vni,
772 u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300773{
774 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800775 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300776
777 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800778 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
779 if (err)
780 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300781 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800782 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)
787 } else {
788 ip->sin6.sin6_addr = in6addr_any;
789 ip->sa.sa_family = AF_INET6;
790#endif
791 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300792 }
793
794 if (tb[NDA_PORT]) {
795 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
796 return -EINVAL;
797 *port = nla_get_be16(tb[NDA_PORT]);
798 } else {
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200799 *port = vxlan->cfg.dst_port;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300800 }
801
802 if (tb[NDA_VNI]) {
803 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
804 return -EINVAL;
Jiri Benc54bfd872016-02-16 21:58:58 +0100805 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300806 } else {
807 *vni = vxlan->default_dst.remote_vni;
808 }
809
810 if (tb[NDA_IFINDEX]) {
811 struct net_device *tdev;
812
813 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
814 return -EINVAL;
815 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800816 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300817 if (!tdev)
818 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300819 } else {
820 *ifindex = 0;
821 }
822
823 return 0;
824}
825
stephen hemmingerd3428942012-10-01 12:32:35 +0000826/* Add static entry (via netlink) */
827static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
828 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100829 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000830{
831 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300832 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800833 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000834 __be16 port;
Jiri Benc54bfd872016-02-16 21:58:58 +0100835 __be32 vni;
836 u32 ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000837 int err;
838
839 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
840 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
841 ndm->ndm_state);
842 return -EINVAL;
843 }
844
845 if (tb[NDA_DST] == NULL)
846 return -EINVAL;
847
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300848 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
849 if (err)
850 return err;
David Stevens66817122013-03-15 04:35:51 +0000851
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300852 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
853 return -EAFNOSUPPORT;
854
stephen hemmingerd3428942012-10-01 12:32:35 +0000855 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800856 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000857 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000858 spin_unlock_bh(&vxlan->hash_lock);
859
860 return err;
861}
862
863/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000864static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
865 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100866 const unsigned char *addr, u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000867{
868 struct vxlan_dev *vxlan = netdev_priv(dev);
869 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300870 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800871 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300872 __be16 port;
Jiri Benc54bfd872016-02-16 21:58:58 +0100873 __be32 vni;
874 u32 ifindex;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300875 int err;
876
877 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
878 if (err)
879 return err;
880
881 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000882
883 spin_lock_bh(&vxlan->hash_lock);
884 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300885 if (!f)
886 goto out;
887
Cong Wange4c7ed42013-08-31 13:44:33 +0800888 if (!vxlan_addr_any(&ip)) {
889 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300890 if (!rd)
891 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000892 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300893
894 err = 0;
895
896 /* remove a destination if it's not the only one on the list,
897 * otherwise destroy the fdb entry
898 */
899 if (rd && !list_is_singular(&f->remotes)) {
900 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200901 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800902 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300903 goto out;
904 }
905
906 vxlan_fdb_destroy(vxlan, f);
907
908out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000909 spin_unlock_bh(&vxlan->hash_lock);
910
911 return err;
912}
913
914/* Dump forwarding table */
915static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400916 struct net_device *dev,
917 struct net_device *filter_dev, int idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000918{
919 struct vxlan_dev *vxlan = netdev_priv(dev);
920 unsigned int h;
921
922 for (h = 0; h < FDB_HASH_SIZE; ++h) {
923 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000924 int err;
925
Sasha Levinb67bfe02013-02-27 17:06:00 -0800926 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000927 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000928
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700929 list_for_each_entry_rcu(rd, &f->remotes, list) {
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900930 if (idx < cb->args[0])
931 goto skip;
932
David Stevens66817122013-03-15 04:35:51 +0000933 err = vxlan_fdb_info(skb, vxlan, f,
934 NETLINK_CB(cb->skb).portid,
935 cb->nlh->nlmsg_seq,
936 RTM_NEWNEIGH,
937 NLM_F_MULTI, rd);
MINOURA Makoto / 箕浦 真472681d2016-02-25 14:20:48 +0900938 if (err < 0) {
939 cb->args[1] = err;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700940 goto out;
MINOURA Makoto / 箕浦 真472681d2016-02-25 14:20:48 +0900941 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700942skip:
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900943 ++idx;
944 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000945 }
946 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700947out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000948 return idx;
949}
950
951/* Watch incoming packets to learn mapping between Ethernet address
952 * and Tunnel endpoint.
Simon Hormanc4b49512015-04-02 11:17:58 +0900953 * Return true if packet is bogus and should be dropped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000954 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700955static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800956 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000957{
958 struct vxlan_dev *vxlan = netdev_priv(dev);
959 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000960
961 f = vxlan_find_mac(vxlan, src_mac);
962 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700963 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700964
Cong Wange4c7ed42013-08-31 13:44:33 +0800965 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700966 return false;
967
968 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700969 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700970 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000971
972 if (net_ratelimit())
973 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800974 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +0100975 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +0000976
Cong Wange4c7ed42013-08-31 13:44:33 +0800977 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000978 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200979 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000980 } else {
981 /* learned new entry */
982 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700983
984 /* close off race between vxlan_flush and incoming packets */
985 if (netif_running(dev))
986 vxlan_fdb_create(vxlan, src_mac, src_ip,
987 NUD_REACHABLE,
988 NLM_F_EXCL|NLM_F_CREATE,
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200989 vxlan->cfg.dst_port,
stephen hemminger3bf74b12013-06-17 12:09:57 -0700990 vxlan->default_dst.remote_vni,
991 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000992 spin_unlock(&vxlan->hash_lock);
993 }
stephen hemminger26a41ae62013-06-17 12:09:58 -0700994
995 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +0000996}
997
stephen hemmingerd3428942012-10-01 12:32:35 +0000998/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +0800999static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001000{
stephen hemminger553675f2013-05-16 11:35:20 +00001001 struct vxlan_dev *vxlan;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001002 unsigned short family = dev->default_dst.remote_ip.sa.sa_family;
stephen hemmingerd3428942012-10-01 12:32:35 +00001003
Gao feng95ab0992013-12-10 16:37:33 +08001004 /* The vxlan_sock is only used by dev, leaving group has
1005 * no effect on other vxlan devices.
1006 */
Jiri Bencb1be00a2015-09-24 13:50:02 +02001007 if (family == AF_INET && dev->vn4_sock &&
1008 atomic_read(&dev->vn4_sock->refcnt) == 1)
Gao feng95ab0992013-12-10 16:37:33 +08001009 return false;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001010#if IS_ENABLED(CONFIG_IPV6)
1011 if (family == AF_INET6 && dev->vn6_sock &&
1012 atomic_read(&dev->vn6_sock->refcnt) == 1)
1013 return false;
1014#endif
Gao feng95ab0992013-12-10 16:37:33 +08001015
stephen hemminger553675f2013-05-16 11:35:20 +00001016 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001017 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001018 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001019
Jiri Bencb1be00a2015-09-24 13:50:02 +02001020 if (family == AF_INET && vxlan->vn4_sock != dev->vn4_sock)
Gao feng95ab0992013-12-10 16:37:33 +08001021 continue;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001022#if IS_ENABLED(CONFIG_IPV6)
1023 if (family == AF_INET6 && vxlan->vn6_sock != dev->vn6_sock)
1024 continue;
1025#endif
Gao feng95ab0992013-12-10 16:37:33 +08001026
1027 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1028 &dev->default_dst.remote_ip))
1029 continue;
1030
1031 if (vxlan->default_dst.remote_ifindex !=
1032 dev->default_dst.remote_ifindex)
1033 continue;
1034
1035 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001036 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001037
1038 return false;
1039}
1040
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001041static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001042{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001043 struct vxlan_net *vn;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001044
Jiri Bencb1be00a2015-09-24 13:50:02 +02001045 if (!vs)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001046 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001047 if (!atomic_dec_and_test(&vs->refcnt))
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001048 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001049
Jiri Bencb1be00a2015-09-24 13:50:02 +02001050 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001051 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001052 hlist_del_rcu(&vs->hlist);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001053 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001054 spin_unlock(&vn->sock_lock);
1055
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001056 return true;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001057}
1058
Jiri Bencb1be00a2015-09-24 13:50:02 +02001059static void vxlan_sock_release(struct vxlan_dev *vxlan)
1060{
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001061 bool ipv4 = __vxlan_sock_release_prep(vxlan->vn4_sock);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001062#if IS_ENABLED(CONFIG_IPV6)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001063 bool ipv6 = __vxlan_sock_release_prep(vxlan->vn6_sock);
1064#endif
1065
1066 synchronize_net();
1067
1068 if (ipv4) {
1069 udp_tunnel_sock_release(vxlan->vn4_sock->sock);
1070 kfree(vxlan->vn4_sock);
1071 }
1072
1073#if IS_ENABLED(CONFIG_IPV6)
1074 if (ipv6) {
1075 udp_tunnel_sock_release(vxlan->vn6_sock->sock);
1076 kfree(vxlan->vn6_sock);
1077 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02001078#endif
1079}
1080
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001081/* Update multicast group membership when first VNI on
Simon Hormanc4b49512015-04-02 11:17:58 +09001082 * multicast address is brought up
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001083 */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001084static int vxlan_igmp_join(struct vxlan_dev *vxlan)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001085{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001086 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001087 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1088 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001089 int ret = -EINVAL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001090
Cong Wange4c7ed42013-08-31 13:44:33 +08001091 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,
1095 };
1096
Jiri Bencb1be00a2015-09-24 13:50:02 +02001097 sk = vxlan->vn4_sock->sock->sk;
1098 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001099 ret = ip_mc_join_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001100 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001101#if IS_ENABLED(CONFIG_IPV6)
1102 } else {
Jiri Bencb1be00a2015-09-24 13:50:02 +02001103 sk = vxlan->vn6_sock->sock->sk;
1104 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001105 ret = ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1106 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001107 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001108#endif
1109 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001110
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001111 return ret;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001112}
1113
1114/* Inverse of vxlan_igmp_join when last VNI is brought down */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001115static int vxlan_igmp_leave(struct vxlan_dev *vxlan)
stephen hemminger3fc2de22013-07-18 08:40:15 -07001116{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001117 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001118 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1119 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001120 int ret = -EINVAL;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001121
Cong Wange4c7ed42013-08-31 13:44:33 +08001122 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,
1126 };
1127
Jiri Bencb1be00a2015-09-24 13:50:02 +02001128 sk = vxlan->vn4_sock->sock->sk;
1129 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001130 ret = ip_mc_leave_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001131 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001132#if IS_ENABLED(CONFIG_IPV6)
1133 } else {
Jiri Bencb1be00a2015-09-24 13:50:02 +02001134 sk = vxlan->vn6_sock->sock->sk;
1135 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001136 ret = ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1137 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001138 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001139#endif
1140 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001141
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001142 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00001143}
1144
Jiri Bencf14eceb2016-02-16 21:59:01 +01001145static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1146 struct sk_buff *skb, u32 vxflags)
Tom Herbertdfd86452015-01-12 17:00:38 -08001147{
Jiri Benc7d34fa72016-03-21 17:50:05 +01001148 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -08001149
Jiri Bencf14eceb2016-02-16 21:59:01 +01001150 if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1151 goto out;
Tom Herbertb7fe10e2015-08-19 17:07:32 -07001152
Jiri Bencf14eceb2016-02-16 21:59:01 +01001153 start = vxlan_rco_start(unparsed->vx_vni);
1154 offset = start + vxlan_rco_offset(unparsed->vx_vni);
Tom Herbertdfd86452015-01-12 17:00:38 -08001155
Jiri Benc7d34fa72016-03-21 17:50:05 +01001156 if (!pskb_may_pull(skb, offset + sizeof(u16)))
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001157 return false;
Tom Herbertdfd86452015-01-12 17:00:38 -08001158
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001159 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1160 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
Jiri Bencf14eceb2016-02-16 21:59:01 +01001161out:
1162 unparsed->vx_flags &= ~VXLAN_HF_RCO;
1163 unparsed->vx_vni &= VXLAN_VNI_MASK;
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001164 return true;
Tom Herbertdfd86452015-01-12 17:00:38 -08001165}
1166
Jiri Bencf14eceb2016-02-16 21:59:01 +01001167static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
Jiri Benc64f87d32016-02-23 18:02:55 +01001168 struct sk_buff *skb, u32 vxflags,
Jiri Benc10a5af22016-02-23 18:02:59 +01001169 struct vxlan_metadata *md)
Jiri Benc3288af02016-02-16 21:59:00 +01001170{
Jiri Bencf14eceb2016-02-16 21:59:01 +01001171 struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
Jiri Benc10a5af22016-02-23 18:02:59 +01001172 struct metadata_dst *tun_dst;
Jiri Benc3288af02016-02-16 21:59:00 +01001173
Jiri Bencf14eceb2016-02-16 21:59:01 +01001174 if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1175 goto out;
1176
Jiri Benc3288af02016-02-16 21:59:00 +01001177 md->gbp = ntohs(gbp->policy_id);
1178
Jiri Benc10a5af22016-02-23 18:02:59 +01001179 tun_dst = (struct metadata_dst *)skb_dst(skb);
David S. Miller810813c2016-03-08 12:34:12 -05001180 if (tun_dst) {
Jiri Benc3288af02016-02-16 21:59:00 +01001181 tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
David S. Miller810813c2016-03-08 12:34:12 -05001182 tun_dst->u.tun_info.options_len = sizeof(*md);
1183 }
Jiri Benc3288af02016-02-16 21:59:00 +01001184 if (gbp->dont_learn)
1185 md->gbp |= VXLAN_GBP_DONT_LEARN;
1186
1187 if (gbp->policy_applied)
1188 md->gbp |= VXLAN_GBP_POLICY_APPLIED;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001189
Jiri Benc64f87d32016-02-23 18:02:55 +01001190 /* In flow-based mode, GBP is carried in dst_metadata */
1191 if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1192 skb->mark = md->gbp;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001193out:
1194 unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
Jiri Benc3288af02016-02-16 21:59:00 +01001195}
1196
Jiri Bence1e53142016-04-05 14:47:13 +02001197static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed,
Jiri Benc61618ee2016-04-11 17:06:08 +02001198 __be16 *protocol,
Jiri Bence1e53142016-04-05 14:47:13 +02001199 struct sk_buff *skb, u32 vxflags)
1200{
1201 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed;
1202
1203 /* Need to have Next Protocol set for interfaces in GPE mode. */
1204 if (!gpe->np_applied)
1205 return false;
1206 /* "The initial version is 0. If a receiver does not support the
1207 * version indicated it MUST drop the packet.
1208 */
1209 if (gpe->version != 0)
1210 return false;
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.
1214 */
1215 if (gpe->oam_flag)
1216 return false;
1217
1218 switch (gpe->next_protocol) {
1219 case VXLAN_GPE_NP_IPV4:
1220 *protocol = htons(ETH_P_IP);
1221 break;
1222 case VXLAN_GPE_NP_IPV6:
1223 *protocol = htons(ETH_P_IPV6);
1224 break;
1225 case VXLAN_GPE_NP_ETHERNET:
1226 *protocol = htons(ETH_P_TEB);
1227 break;
1228 default:
1229 return false;
1230 }
1231
1232 unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS;
1233 return true;
1234}
1235
Jiri Benc1ab016e2016-02-23 18:02:56 +01001236static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1237 struct vxlan_sock *vs,
1238 struct sk_buff *skb)
Thomas Graf614732e2015-07-21 10:44:06 +02001239{
Thomas Graf614732e2015-07-21 10:44:06 +02001240 union vxlan_addr saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001241
Thomas Graf614732e2015-07-21 10:44:06 +02001242 skb_reset_mac_header(skb);
Thomas Graf614732e2015-07-21 10:44:06 +02001243 skb->protocol = eth_type_trans(skb, vxlan->dev);
1244 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1245
1246 /* Ignore packet loops (and multicast echo) */
1247 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001248 return false;
Thomas Graf614732e2015-07-21 10:44:06 +02001249
Jiri Benc760c6802016-02-23 18:02:57 +01001250 /* Get address from the outer IP header */
Jiri Bencce212d02015-12-07 16:29:08 +01001251 if (vxlan_get_sk_family(vs) == AF_INET) {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001252 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001253 saddr.sa.sa_family = AF_INET;
1254#if IS_ENABLED(CONFIG_IPV6)
1255 } else {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001256 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001257 saddr.sa.sa_family = AF_INET6;
1258#endif
1259 }
1260
Jiri Benc1ab016e2016-02-23 18:02:56 +01001261 if ((vxlan->flags & VXLAN_F_LEARN) &&
1262 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
1263 return false;
1264
1265 return true;
1266}
1267
Jiri Benc760c6802016-02-23 18:02:57 +01001268static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1269 struct sk_buff *skb)
1270{
1271 int err = 0;
1272
1273 if (vxlan_get_sk_family(vs) == AF_INET)
1274 err = IP_ECN_decapsulate(oiph, skb);
1275#if IS_ENABLED(CONFIG_IPV6)
1276 else
1277 err = IP6_ECN_decapsulate(oiph, skb);
1278#endif
1279
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);
1285 else
1286 net_info_ratelimited("non-ECT from %pI6\n",
1287 &((struct ipv6hdr *)oiph)->saddr);
1288 }
1289 return err <= 1;
1290}
1291
stephen hemmingerd3428942012-10-01 12:32:35 +00001292/* Callback from net/ipv4/udp.c to receive packets */
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001293static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
stephen hemmingerd3428942012-10-01 12:32:35 +00001294{
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001295 struct pcpu_sw_netstats *stats;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001296 struct vxlan_dev *vxlan;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001297 struct vxlan_sock *vs;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001298 struct vxlanhdr unparsed;
Thomas Grafee122c72015-07-21 10:43:58 +02001299 struct vxlan_metadata _md;
1300 struct vxlan_metadata *md = &_md;
Jiri Benc61618ee2016-04-11 17:06:08 +02001301 __be16 protocol = htons(ETH_P_TEB);
Jiri Bence1e53142016-04-05 14:47:13 +02001302 bool raw_proto = false;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001303 void *oiph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001304
Jiri Bence1e53142016-04-05 14:47:13 +02001305 /* Need UDP and VXLAN header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001306 if (!pskb_may_pull(skb, VXLAN_HLEN))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001307 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001308
Jiri Bencf14eceb2016-02-16 21:59:01 +01001309 unparsed = *vxlan_hdr(skb);
Jiri Benc288b01c2016-02-16 21:59:02 +01001310 /* 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 */
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001316 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001317 }
Jiri Benc288b01c2016-02-16 21:59:02 +01001318 unparsed.vx_flags &= ~VXLAN_HF_VNI;
1319 unparsed.vx_vni &= ~VXLAN_VNI_MASK;
stephen hemmingerd3428942012-10-01 12:32:35 +00001320
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001321 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001322 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001323 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001324
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001325 vxlan = vxlan_vs_find_vni(vs, vxlan_vni(vxlan_hdr(skb)->vx_vni));
1326 if (!vxlan)
1327 goto drop;
1328
Jiri Bence1e53142016-04-05 14:47:13 +02001329 /* For backwards compatibility, only allow reserved fields to be
1330 * used by VXLAN extensions if explicitly requested.
1331 */
1332 if (vs->flags & VXLAN_F_GPE) {
1333 if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags))
1334 goto drop;
1335 raw_proto = true;
1336 }
1337
1338 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1339 !net_eq(vxlan->net, dev_net(vxlan->dev))))
1340 goto drop;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001341
Thomas Grafee122c72015-07-21 10:43:58 +02001342 if (vxlan_collect_metadata(vs)) {
Jiri Benc07dabf22016-02-18 19:19:29 +01001343 __be32 vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
Jiri Benc10a5af22016-02-23 18:02:59 +01001344 struct metadata_dst *tun_dst;
Jiri Benc07dabf22016-02-18 19:19:29 +01001345
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001346 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
Jiri Benc07dabf22016-02-18 19:19:29 +01001347 vxlan_vni_to_tun_id(vni), sizeof(*md));
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001348
Thomas Grafee122c72015-07-21 10:43:58 +02001349 if (!tun_dst)
1350 goto drop;
1351
Geert Uytterhoeven0f1b7352015-09-04 12:49:32 +02001352 md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
Jiri Benc10a5af22016-02-23 18:02:59 +01001353
1354 skb_dst_set(skb, (struct dst_entry *)tun_dst);
Thomas Grafee122c72015-07-21 10:43:58 +02001355 } else {
1356 memset(md, 0, sizeof(*md));
1357 }
1358
Jiri Bencf14eceb2016-02-16 21:59:01 +01001359 if (vs->flags & VXLAN_F_REMCSUM_RX)
1360 if (!vxlan_remcsum(&unparsed, skb, vs->flags))
1361 goto drop;
1362 if (vs->flags & VXLAN_F_GBP)
Jiri Benc10a5af22016-02-23 18:02:59 +01001363 vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001364 /* Note that GBP and GPE can never be active together. This is
1365 * ensured in vxlan_dev_configure.
1366 */
Thomas Graf35114942015-01-15 03:53:55 +01001367
Jiri Bencf14eceb2016-02-16 21:59:01 +01001368 if (unparsed.vx_flags || unparsed.vx_vni) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001369 /* 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
Simon Hormanc4b49512015-04-02 11:17:58 +09001373 * maintains compatibility with previous stack code, and also
Tom Herbert3bf39472015-01-08 12:31:18 -08001374 * is more robust and provides a little more security in
1375 * adding extensions to VXLAN.
1376 */
Jiri Benc288b01c2016-02-16 21:59:02 +01001377 goto drop;
Tom Herbert3bf39472015-01-08 12:31:18 -08001378 }
1379
Jiri Bence1e53142016-04-05 14:47:13 +02001380 if (!raw_proto) {
1381 if (!vxlan_set_mac(vxlan, vs, skb))
1382 goto drop;
1383 } else {
Jiri Benc8be0cfa2016-05-13 10:48:42 +02001384 skb_reset_mac_header(skb);
Jiri Bence1e53142016-04-05 14:47:13 +02001385 skb->dev = vxlan->dev;
1386 skb->pkt_type = PACKET_HOST;
1387 }
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001388
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001389 oiph = skb_network_header(skb);
1390 skb_reset_network_header(skb);
1391
1392 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1393 ++vxlan->dev->stats.rx_frame_errors;
1394 ++vxlan->dev->stats.rx_errors;
1395 goto drop;
1396 }
1397
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);
1403
1404 gro_cells_receive(&vxlan->gro_cells, skb);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001405 return 0;
1406
1407drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001408 /* Consume bad packet */
1409 kfree_skb(skb);
1410 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001411}
1412
David Stevense4f67ad2012-11-20 02:50:14 +00001413static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1414{
1415 struct vxlan_dev *vxlan = netdev_priv(dev);
1416 struct arphdr *parp;
1417 u8 *arpptr, *sha;
1418 __be32 sip, tip;
1419 struct neighbour *n;
1420
1421 if (dev->flags & IFF_NOARP)
1422 goto out;
1423
1424 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1425 dev->stats.tx_dropped++;
1426 goto out;
1427 }
1428 parp = arp_hdr(skb);
1429
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 ||
1435 parp->ar_pln != 4)
1436 goto out;
1437 arpptr = (u8 *)parp + sizeof(struct arphdr);
1438 sha = arpptr;
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));
1444
1445 if (ipv4_is_loopback(tip) ||
1446 ipv4_is_multicast(tip))
1447 goto out;
1448
1449 n = neigh_lookup(&arp_tbl, &tip, dev);
1450
1451 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001452 struct vxlan_fdb *f;
1453 struct sk_buff *reply;
1454
1455 if (!(n->nud_state & NUD_CONNECTED)) {
1456 neigh_release(n);
1457 goto out;
1458 }
1459
1460 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001461 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001462 /* bridge-local neighbor */
1463 neigh_release(n);
1464 goto out;
1465 }
1466
1467 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1468 n->ha, sha);
1469
1470 neigh_release(n);
1471
David Stevens73461352014-03-18 12:32:29 -04001472 if (reply == NULL)
1473 goto out;
1474
David Stevense4f67ad2012-11-20 02:50:14 +00001475 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;
1479
1480 if (netif_rx_ni(reply) == NET_RX_DROP)
1481 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001482 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1483 union vxlan_addr ipa = {
1484 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001485 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001486 };
1487
1488 vxlan_ip_miss(dev, &ipa);
1489 }
David Stevense4f67ad2012-11-20 02:50:14 +00001490out:
1491 consume_skb(skb);
1492 return NETDEV_TX_OK;
1493}
1494
Cong Wangf564f452013-08-31 13:44:36 +08001495#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001496static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1497 struct neighbour *n, bool isrouter)
1498{
1499 struct net_device *dev = request->dev;
1500 struct sk_buff *reply;
1501 struct nd_msg *ns, *na;
1502 struct ipv6hdr *pip6;
1503 u8 *daddr;
1504 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1505 int ns_olen;
1506 int i, len;
1507
1508 if (dev == NULL)
1509 return NULL;
1510
1511 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1512 sizeof(*na) + na_olen + dev->needed_tailroom;
1513 reply = alloc_skb(len, GFP_ATOMIC);
1514 if (reply == NULL)
1515 return NULL;
1516
1517 reply->protocol = htons(ETH_P_IPV6);
1518 reply->dev = dev;
1519 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1520 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001521 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001522
1523 ns = (struct nd_msg *)skb_transport_header(request);
1524
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);
1530 break;
1531 }
1532 }
1533
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);
1539
1540 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001541 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001542 skb_put(reply, sizeof(struct ipv6hdr));
1543
1544 /* IPv6 header */
1545
1546 pip6 = ipv6_hdr(reply);
1547 memset(pip6, 0, sizeof(struct ipv6hdr));
1548 pip6->version = 6;
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;
1554
1555 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001556 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001557
1558 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1559
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;
1570
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));
1574
1575 pip6->payload_len = htons(sizeof(*na)+na_olen);
1576
1577 skb_push(reply, sizeof(struct ipv6hdr));
1578
1579 reply->ip_summed = CHECKSUM_UNNECESSARY;
1580
1581 return reply;
1582}
1583
Cong Wangf564f452013-08-31 13:44:36 +08001584static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1585{
1586 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001587 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001588 const struct ipv6hdr *iphdr;
1589 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001590 struct neighbour *n;
1591 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001592
1593 in6_dev = __in6_dev_get(dev);
1594 if (!in6_dev)
1595 goto out;
1596
Cong Wangf564f452013-08-31 13:44:36 +08001597 iphdr = ipv6_hdr(skb);
1598 saddr = &iphdr->saddr;
1599 daddr = &iphdr->daddr;
1600
Cong Wangf564f452013-08-31 13:44:36 +08001601 msg = (struct nd_msg *)skb_transport_header(skb);
1602 if (msg->icmph.icmp6_code != 0 ||
1603 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1604 goto out;
1605
David Stevens4b29dba2014-03-24 10:39:58 -04001606 if (ipv6_addr_loopback(daddr) ||
1607 ipv6_addr_is_multicast(&msg->target))
1608 goto out;
1609
1610 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001611
1612 if (n) {
1613 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001614 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001615
1616 if (!(n->nud_state & NUD_CONNECTED)) {
1617 neigh_release(n);
1618 goto out;
1619 }
1620
1621 f = vxlan_find_mac(vxlan, n->ha);
1622 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1623 /* bridge-local neighbor */
1624 neigh_release(n);
1625 goto out;
1626 }
1627
David Stevens4b29dba2014-03-24 10:39:58 -04001628 reply = vxlan_na_create(skb, n,
1629 !!(f ? f->flags & NTF_ROUTER : 0));
1630
Cong Wangf564f452013-08-31 13:44:36 +08001631 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001632
1633 if (reply == NULL)
1634 goto out;
1635
1636 if (netif_rx_ni(reply) == NET_RX_DROP)
1637 dev->stats.rx_dropped++;
1638
Cong Wangf564f452013-08-31 13:44:36 +08001639 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001640 union vxlan_addr ipa = {
1641 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001642 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001643 };
1644
Cong Wangf564f452013-08-31 13:44:36 +08001645 vxlan_ip_miss(dev, &ipa);
1646 }
1647
1648out:
1649 consume_skb(skb);
1650 return NETDEV_TX_OK;
1651}
1652#endif
1653
David Stevense4f67ad2012-11-20 02:50:14 +00001654static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1655{
1656 struct vxlan_dev *vxlan = netdev_priv(dev);
1657 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001658
1659 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1660 return false;
1661
1662 n = NULL;
1663 switch (ntohs(eth_hdr(skb)->h_proto)) {
1664 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001665 {
1666 struct iphdr *pip;
1667
David Stevense4f67ad2012-11-20 02:50:14 +00001668 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1669 return false;
1670 pip = ip_hdr(skb);
1671 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001672 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1673 union vxlan_addr ipa = {
1674 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001675 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001676 };
1677
1678 vxlan_ip_miss(dev, &ipa);
1679 return false;
1680 }
1681
David Stevense4f67ad2012-11-20 02:50:14 +00001682 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001683 }
1684#if IS_ENABLED(CONFIG_IPV6)
1685 case ETH_P_IPV6:
1686 {
1687 struct ipv6hdr *pip6;
1688
1689 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1690 return false;
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,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001696 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001697 };
1698
1699 vxlan_ip_miss(dev, &ipa);
1700 return false;
1701 }
1702
1703 break;
1704 }
1705#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001706 default:
1707 return false;
1708 }
1709
1710 if (n) {
1711 bool diff;
1712
Joe Perches7367d0b2013-09-01 11:51:23 -07001713 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001714 if (diff) {
1715 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1716 dev->addr_len);
1717 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1718 }
1719 neigh_release(n);
1720 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001721 }
1722
David Stevense4f67ad2012-11-20 02:50:14 +00001723 return false;
1724}
1725
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001726static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01001727 struct vxlan_metadata *md)
1728{
1729 struct vxlanhdr_gbp *gbp;
1730
Thomas Grafdb79a622015-02-04 17:00:04 +01001731 if (!md->gbp)
1732 return;
1733
Thomas Graf35114942015-01-15 03:53:55 +01001734 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01001735 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01001736
1737 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1738 gbp->dont_learn = 1;
1739
1740 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1741 gbp->policy_applied = 1;
1742
1743 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1744}
1745
Jiri Bence1e53142016-04-05 14:47:13 +02001746static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
1747 __be16 protocol)
1748{
1749 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
1750
1751 gpe->np_applied = 1;
1752
1753 switch (protocol) {
1754 case htons(ETH_P_IP):
1755 gpe->next_protocol = VXLAN_GPE_NP_IPV4;
1756 return 0;
1757 case htons(ETH_P_IPV6):
1758 gpe->next_protocol = VXLAN_GPE_NP_IPV6;
1759 return 0;
1760 case htons(ETH_P_TEB):
1761 gpe->next_protocol = VXLAN_GPE_NP_ETHERNET;
1762 return 0;
1763 }
1764 return -EPFNOSUPPORT;
1765}
1766
Jiri Bencf491e562016-02-02 18:09:16 +01001767static 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,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01001770 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08001771{
Cong Wange4c7ed42013-08-31 13:44:33 +08001772 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001773 int min_headroom;
1774 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08001775 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02001776 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08001777
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001778 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001779 skb->ip_summed == CHECKSUM_PARTIAL) {
1780 int csum_start = skb_checksum_start_offset(skb);
1781
1782 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1783 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1784 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00001785 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08001786 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08001787 }
1788
Cong Wange4c7ed42013-08-31 13:44:33 +08001789 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
Jiri Bencf491e562016-02-02 18:09:16 +01001790 + VXLAN_HLEN + iphdr_len
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001791 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001792
1793 /* Need space for new headers (invalidates iph ptr) */
1794 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02001795 if (unlikely(err))
1796 goto out_free;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001797
Jiri Pirko59682502014-11-19 14:04:59 +01001798 skb = vlan_hwaccel_push_inside(skb);
1799 if (WARN_ON(!skb))
1800 return -ENOMEM;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001801
Alexander Duyckaed069d2016-04-14 15:33:37 -04001802 err = iptunnel_handle_offloads(skb, type);
1803 if (err)
1804 goto out_free;
Jesse Grossb736a622015-04-09 11:19:14 -07001805
Pravin B Shelar49560532013-08-19 11:23:17 -07001806 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01001807 vxh->vx_flags = VXLAN_HF_VNI;
1808 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07001809
Tom Herbertdfd86452015-01-12 17:00:38 -08001810 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01001811 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08001812
Jiri Benc54bfd872016-02-16 21:58:58 +01001813 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;
Tom Herbertdfd86452015-01-12 17:00:38 -08001816
1817 if (!skb_is_gso(skb)) {
1818 skb->ip_summed = CHECKSUM_NONE;
1819 skb->encapsulation = 0;
1820 }
1821 }
1822
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001823 if (vxflags & VXLAN_F_GBP)
1824 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001825 if (vxflags & VXLAN_F_GPE) {
1826 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
1827 if (err < 0)
1828 goto out_free;
1829 inner_protocol = skb->protocol;
1830 }
Thomas Graf35114942015-01-15 03:53:55 +01001831
Jiri Bence1e53142016-04-05 14:47:13 +02001832 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08001833 return 0;
Jiri Bence1e53142016-04-05 14:47:13 +02001834
1835out_free:
1836 kfree_skb(skb);
1837 return err;
Pravin B Shelar49560532013-08-19 11:23:17 -07001838}
Pravin B Shelar49560532013-08-19 11:23:17 -07001839
Jiri Benc1a8496b2016-02-02 18:09:14 +01001840static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan,
1841 struct sk_buff *skb, int oif, u8 tos,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001842 __be32 daddr, __be32 *saddr,
1843 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001844 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01001845{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001846 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01001847 struct rtable *rt = NULL;
1848 struct flowi4 fl4;
1849
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001850 if (tos && !info)
1851 use_cache = false;
1852 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001853 rt = dst_cache_get_ip4(dst_cache, saddr);
1854 if (rt)
1855 return rt;
1856 }
1857
Jiri Benc1a8496b2016-02-02 18:09:14 +01001858 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;
1863 fl4.daddr = daddr;
1864 fl4.saddr = vxlan->cfg.saddr.sin.sin_addr.s_addr;
1865
1866 rt = ip_route_output_key(vxlan->net, &fl4);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001867 if (!IS_ERR(rt)) {
Jiri Benc1a8496b2016-02-02 18:09:14 +01001868 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001869 if (use_cache)
1870 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
1871 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01001872 return rt;
1873}
1874
Jiri Bence5d4b292015-12-07 13:04:30 +01001875#if IS_ENABLED(CONFIG_IPV6)
1876static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
Daniel Borkmann14006152016-03-04 15:15:08 +01001877 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01001878 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01001879 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001880 struct in6_addr *saddr,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001881 struct dst_cache *dst_cache,
1882 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01001883{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001884 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01001885 struct dst_entry *ndst;
1886 struct flowi6 fl6;
1887 int err;
1888
Daniel Borkmann14006152016-03-04 15:15:08 +01001889 if (tos && !info)
1890 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001891 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001892 ndst = dst_cache_get_ip6(dst_cache, saddr);
1893 if (ndst)
1894 return ndst;
1895 }
1896
Jiri Bence5d4b292015-12-07 13:04:30 +01001897 memset(&fl6, 0, sizeof(fl6));
1898 fl6.flowi6_oif = oif;
1899 fl6.daddr = *daddr;
1900 fl6.saddr = vxlan->cfg.saddr.sin6.sin6_addr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01001901 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01001902 fl6.flowi6_mark = skb->mark;
1903 fl6.flowi6_proto = IPPROTO_UDP;
1904
1905 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
1906 vxlan->vn6_sock->sock->sk,
1907 &ndst, &fl6);
1908 if (err < 0)
1909 return ERR_PTR(err);
1910
1911 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001912 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001913 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01001914 return ndst;
1915}
1916#endif
1917
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001918/* Bypass encapsulation if the destination is local */
1919static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1920 struct vxlan_dev *dst_vxlan)
1921{
Li RongQing8f849852014-01-04 13:57:59 +08001922 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001923 union vxlan_addr loopback;
1924 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001925 struct net_device *dev = skb->dev;
1926 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001927
Li RongQing8f849852014-01-04 13:57:59 +08001928 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1929 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001930 skb->pkt_type = PACKET_HOST;
1931 skb->encapsulation = 0;
1932 skb->dev = dst_vxlan->dev;
1933 __skb_pull(skb, skb_network_offset(skb));
1934
Cong Wange4c7ed42013-08-31 13:44:33 +08001935 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)
1939 } else {
1940 loopback.sin6.sin6_addr = in6addr_loopback;
1941 loopback.sa.sa_family = AF_INET6;
1942#endif
1943 }
1944
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001945 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001946 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001947
1948 u64_stats_update_begin(&tx_stats->syncp);
1949 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001950 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001951 u64_stats_update_end(&tx_stats->syncp);
1952
1953 if (netif_rx(skb) == NET_RX_SUCCESS) {
1954 u64_stats_update_begin(&rx_stats->syncp);
1955 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001956 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001957 u64_stats_update_end(&rx_stats->syncp);
1958 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08001959 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001960 }
1961}
1962
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001963static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1964 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001965{
Paolo Abenid71785f2016-02-12 15:43:57 +01001966 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02001967 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00001968 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001969 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001970 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001971 const struct iphdr *old_iph;
Cong Wange4c7ed42013-08-31 13:44:33 +08001972 union vxlan_addr *dst;
Thomas Grafee122c72015-07-21 10:43:58 +02001973 union vxlan_addr remote_ip;
1974 struct vxlan_metadata _md;
1975 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08001976 __be16 src_port = 0, dst_port;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01001977 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00001978 __be16 df = 0;
1979 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001980 int err;
Thomas Grafee122c72015-07-21 10:43:58 +02001981 u32 flags = vxlan->flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01001982 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01001983 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00001984
Jiri Benc61adedf2015-08-20 13:56:25 +02001985 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02001986
Thomas Grafee122c72015-07-21 10:43:58 +02001987 if (rdst) {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001988 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Thomas Grafee122c72015-07-21 10:43:58 +02001989 vni = rdst->remote_vni;
1990 dst = &rdst->remote_ip;
Paolo Abenid71785f2016-02-12 15:43:57 +01001991 dst_cache = &rdst->dst_cache;
Thomas Grafee122c72015-07-21 10:43:58 +02001992 } else {
1993 if (!info) {
1994 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
1995 dev->name);
1996 goto drop;
1997 }
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001998 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
Jiri Benc54bfd872016-02-16 21:58:58 +01001999 vni = vxlan_tun_id_to_vni(info->key.tun_id);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002000 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
2001 if (remote_ip.sa.sa_family == AF_INET)
Jiri Benca725e512015-08-20 13:56:30 +02002002 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
2003 else
2004 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
Thomas Grafee122c72015-07-21 10:43:58 +02002005 dst = &remote_ip;
Paolo Abenid71785f2016-02-12 15:43:57 +01002006 dst_cache = &info->dst_cache;
Thomas Grafee122c72015-07-21 10:43:58 +02002007 }
David Stevense4f67ad2012-11-20 02:50:14 +00002008
Cong Wange4c7ed42013-08-31 13:44:33 +08002009 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00002010 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00002011 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002012 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002013 return;
David Stevense4f67ad2012-11-20 02:50:14 +00002014 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00002015 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00002016 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00002017
stephen hemmingerd3428942012-10-01 12:32:35 +00002018 old_iph = ip_hdr(skb);
2019
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002020 ttl = vxlan->cfg.ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08002021 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00002022 ttl = 1;
2023
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002024 tos = vxlan->cfg.tos;
stephen hemmingerd3428942012-10-01 12:32:35 +00002025 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00002026 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002027
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002028 label = vxlan->cfg.label;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002029 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2030 vxlan->cfg.port_max, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002031
Jiri Benca725e512015-08-20 13:56:30 +02002032 if (info) {
Jiri Benca725e512015-08-20 13:56:30 +02002033 ttl = info->key.ttl;
2034 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002035 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002036 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002037
2038 if (info->options_len)
Pravin B Shelar4c222792015-08-30 18:09:38 -07002039 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002040 } else {
2041 md->gbp = skb->mark;
2042 }
2043
Cong Wange4c7ed42013-08-31 13:44:33 +08002044 if (dst->sa.sa_family == AF_INET) {
Jiri Benc1a8496b2016-02-02 18:09:14 +01002045 __be32 saddr;
2046
Jiri Bencb1be00a2015-09-24 13:50:02 +02002047 if (!vxlan->vn4_sock)
2048 goto drop;
2049 sk = vxlan->vn4_sock->sock->sk;
2050
Jiri Benc1a8496b2016-02-02 18:09:14 +01002051 rt = vxlan_get_route(vxlan, skb,
2052 rdst ? rdst->remote_ifindex : 0, tos,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002053 dst->sin.sin_addr.s_addr, &saddr,
Paolo Abenid71785f2016-02-12 15:43:57 +01002054 dst_cache, info);
Cong Wange4c7ed42013-08-31 13:44:33 +08002055 if (IS_ERR(rt)) {
2056 netdev_dbg(dev, "no route to %pI4\n",
2057 &dst->sin.sin_addr.s_addr);
2058 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002059 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08002060 }
2061
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++;
Fan Dufffc15a2013-12-09 10:33:53 +08002066 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08002067 }
2068
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;
2073
2074 ip_rt_put(rt);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002075 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
Thomas Grafac5132d2015-01-15 03:53:56 +01002076 dst->sa.sa_family, dst_port,
2077 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002078 if (!dst_vxlan)
2079 goto tx_error;
2080 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
2081 return;
2082 }
2083
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002084 if (!info)
2085 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2086 else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT)
2087 df = htons(IP_DF);
2088
Cong Wange4c7ed42013-08-31 13:44:33 +08002089 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2090 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Jiri Bencf491e562016-02-02 18:09:16 +01002091 err = vxlan_build_skb(skb, &rt->dst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002092 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002093 if (err < 0)
2094 goto xmit_tx_error;
2095
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);
Cong Wange4c7ed42013-08-31 13:44:33 +08002099#if IS_ENABLED(CONFIG_IPV6)
2100 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +08002101 struct dst_entry *ndst;
Jiri Bence5d4b292015-12-07 13:04:30 +01002102 struct in6_addr saddr;
Jiri Benc6f264e42015-08-20 13:56:29 +02002103 u32 rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002104
Jiri Bencb1be00a2015-09-24 13:50:02 +02002105 if (!vxlan->vn6_sock)
2106 goto drop;
2107 sk = vxlan->vn6_sock->sock->sk;
2108
Jiri Bence5d4b292015-12-07 13:04:30 +01002109 ndst = vxlan6_get_route(vxlan, skb,
Daniel Borkmann14006152016-03-04 15:15:08 +01002110 rdst ? rdst->remote_ifindex : 0, tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002111 label, &dst->sin6.sin6_addr, &saddr,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002112 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002113 if (IS_ERR(ndst)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08002114 netdev_dbg(dev, "no route to %pI6\n",
2115 &dst->sin6.sin6_addr);
2116 dev->stats.tx_carrier_errors++;
2117 goto tx_error;
2118 }
2119
2120 if (ndst->dev == dev) {
2121 netdev_dbg(dev, "circular route to %pI6\n",
2122 &dst->sin6.sin6_addr);
2123 dst_release(ndst);
2124 dev->stats.collisions++;
2125 goto tx_error;
2126 }
2127
2128 /* Bypass encapsulation if the destination is local */
Jiri Benc6f264e42015-08-20 13:56:29 +02002129 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
2130 if (rt6i_flags & RTF_LOCAL &&
2131 !(rt6i_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
Cong Wange4c7ed42013-08-31 13:44:33 +08002132 struct vxlan_dev *dst_vxlan;
2133
2134 dst_release(ndst);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002135 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
Thomas Grafac5132d2015-01-15 03:53:56 +01002136 dst->sa.sa_family, dst_port,
2137 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002138 if (!dst_vxlan)
2139 goto tx_error;
2140 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
2141 return;
2142 }
2143
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002144 if (!info)
2145 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
Jesse Gross35e2d112016-01-20 16:22:47 -08002146
Daniel Borkmann14006152016-03-04 15:15:08 +01002147 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002148 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002149 skb_scrub_packet(skb, xnet);
2150 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002151 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002152 if (err < 0) {
2153 dst_release(ndst);
2154 return;
2155 }
2156 udp_tunnel6_xmit_skb(ndst, sk, skb, dev,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002157 &saddr, &dst->sin6.sin6_addr, tos, ttl,
2158 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002159#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002160 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002161
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002162 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002163
2164drop:
2165 dev->stats.tx_dropped++;
2166 goto tx_free;
2167
Jiri Bencf491e562016-02-02 18:09:16 +01002168xmit_tx_error:
2169 /* skb is already freed. */
2170 skb = NULL;
Pravin B Shelar49560532013-08-19 11:23:17 -07002171rt_tx_error:
2172 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00002173tx_error:
2174 dev->stats.tx_errors++;
2175tx_free:
2176 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002177}
2178
David Stevens66817122013-03-15 04:35:51 +00002179/* Transmit local packets over Vxlan
2180 *
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
2184 */
2185static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2186{
2187 struct vxlan_dev *vxlan = netdev_priv(dev);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002188 const struct ip_tunnel_info *info;
David Stevens66817122013-03-15 04:35:51 +00002189 struct ethhdr *eth;
2190 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002191 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002192 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00002193
Jiri Benc61adedf2015-08-20 13:56:25 +02002194 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002195
David Stevens66817122013-03-15 04:35:51 +00002196 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002197
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002198 if (vxlan->flags & VXLAN_F_COLLECT_METADATA) {
2199 if (info && info->mode & IP_TUNNEL_INFO_TX)
2200 vxlan_xmit_one(skb, dev, NULL, false);
2201 else
2202 kfree_skb(skb);
2203 return NETDEV_TX_OK;
2204 }
2205
2206 if (vxlan->flags & VXLAN_F_PROXY) {
2207 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002208 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 &&
Li RongQing91269e32014-10-16 09:17:18 +08002212 pskb_may_pull(skb, sizeof(struct ipv6hdr)
2213 + sizeof(struct nd_msg)) &&
Cong Wangf564f452013-08-31 13:44:36 +08002214 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2215 struct nd_msg *msg;
2216
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);
2221 }
2222#endif
2223 }
David Stevens66817122013-03-15 04:35:51 +00002224
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002225 eth = eth_hdr(skb);
David Stevens66817122013-03-15 04:35:51 +00002226 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00002227 did_rsc = false;
2228
2229 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002230 (ntohs(eth->h_proto) == ETH_P_IP ||
2231 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002232 did_rsc = route_shortcircuit(dev, skb);
2233 if (did_rsc)
2234 f = vxlan_find_mac(vxlan, eth->h_dest);
2235 }
2236
David Stevens66817122013-03-15 04:35:51 +00002237 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002238 f = vxlan_find_mac(vxlan, all_zeros_mac);
2239 if (f == NULL) {
2240 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2241 !is_multicast_ether_addr(eth->h_dest))
2242 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002243
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002244 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002245 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002246 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002247 }
David Stevens66817122013-03-15 04:35:51 +00002248 }
2249
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002250 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2251 struct sk_buff *skb1;
2252
Eric Dumazet8f646c92014-01-06 09:54:31 -08002253 if (!fdst) {
2254 fdst = rdst;
2255 continue;
2256 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002257 skb1 = skb_clone(skb, GFP_ATOMIC);
2258 if (skb1)
2259 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
2260 }
2261
Eric Dumazet8f646c92014-01-06 09:54:31 -08002262 if (fdst)
2263 vxlan_xmit_one(skb, dev, fdst, did_rsc);
2264 else
2265 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002266 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002267}
2268
stephen hemmingerd3428942012-10-01 12:32:35 +00002269/* Walk the forwarding table and purge stale entries */
2270static void vxlan_cleanup(unsigned long arg)
2271{
2272 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2273 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2274 unsigned int h;
2275
2276 if (!netif_running(vxlan->dev))
2277 return;
2278
stephen hemmingerd3428942012-10-01 12:32:35 +00002279 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2280 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002281
2282 spin_lock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002283 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2284 struct vxlan_fdb *f
2285 = container_of(p, struct vxlan_fdb, hlist);
2286 unsigned long timeout;
2287
stephen hemminger3c172862012-10-26 06:24:34 +00002288 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00002289 continue;
2290
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002291 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002292 if (time_before_eq(timeout, jiffies)) {
2293 netdev_dbg(vxlan->dev,
2294 "garbage collect %pM\n",
2295 f->eth_addr);
2296 f->state = NUD_STALE;
2297 vxlan_fdb_destroy(vxlan, f);
2298 } else if (time_before(timeout, next_timer))
2299 next_timer = timeout;
2300 }
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002301 spin_unlock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002302 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002303
2304 mod_timer(&vxlan->age_timer, next_timer);
2305}
2306
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002307static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2308{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002309 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002310 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002311
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002312 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002313 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002314 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002315}
2316
stephen hemmingerd3428942012-10-01 12:32:35 +00002317/* Setup stats when device is created */
2318static int vxlan_init(struct net_device *dev)
2319{
WANG Cong1c213bd2014-02-13 11:46:28 -08002320 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002321 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002322 return -ENOMEM;
2323
2324 return 0;
2325}
2326
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002327static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002328{
2329 struct vxlan_fdb *f;
2330
2331 spin_lock_bh(&vxlan->hash_lock);
2332 f = __vxlan_find_mac(vxlan, all_zeros_mac);
2333 if (f)
2334 vxlan_fdb_destroy(vxlan, f);
2335 spin_unlock_bh(&vxlan->hash_lock);
2336}
2337
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002338static void vxlan_uninit(struct net_device *dev)
2339{
2340 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002341
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002342 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002343
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002344 free_percpu(dev->tstats);
2345}
2346
stephen hemmingerd3428942012-10-01 12:32:35 +00002347/* Start ageing timer and join group when device is brought up */
2348static int vxlan_open(struct net_device *dev)
2349{
2350 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002351 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002352
Jiri Benc205f3562015-09-24 13:50:01 +02002353 ret = vxlan_sock_add(vxlan);
2354 if (ret < 0)
2355 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002356
Gao feng79d4a942013-12-10 16:37:32 +08002357 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002358 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002359 if (ret == -EADDRINUSE)
2360 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002361 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002362 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002363 return ret;
2364 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002365 }
2366
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002367 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002368 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2369
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002370 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002371}
2372
2373/* Purge the forwarding table */
2374static void vxlan_flush(struct vxlan_dev *vxlan)
2375{
Cong Wang31fec5a2013-05-27 22:35:52 +00002376 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002377
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]) {
2382 struct vxlan_fdb *f
2383 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002384 /* 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);
stephen hemmingerd3428942012-10-01 12:32:35 +00002387 }
2388 }
2389 spin_unlock_bh(&vxlan->hash_lock);
2390}
2391
2392/* Cleanup timer and forwarding table on shutdown */
2393static int vxlan_stop(struct net_device *dev)
2394{
2395 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002396 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002397 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002398
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002399 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002400 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002401 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002402
2403 del_timer_sync(&vxlan->age_timer);
2404
2405 vxlan_flush(vxlan);
Jiri Benc205f3562015-09-24 13:50:01 +02002406 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002407
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002408 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002409}
2410
stephen hemmingerd3428942012-10-01 12:32:35 +00002411/* Stub, nothing needs to be done. */
2412static void vxlan_set_multicast_list(struct net_device *dev)
2413{
2414}
2415
David Wragg72564b52016-02-10 00:05:55 +00002416static int __vxlan_change_mtu(struct net_device *dev,
2417 struct net_device *lowerdev,
2418 struct vxlan_rdst *dst, int new_mtu, bool strict)
2419{
2420 int max_mtu = IP_MAX_MTU;
2421
2422 if (lowerdev)
2423 max_mtu = lowerdev->mtu;
2424
2425 if (dst->remote_ip.sa.sa_family == AF_INET6)
2426 max_mtu -= VXLAN6_HEADROOM;
2427 else
2428 max_mtu -= VXLAN_HEADROOM;
2429
2430 if (new_mtu < 68)
2431 return -EINVAL;
2432
2433 if (new_mtu > max_mtu) {
2434 if (strict)
2435 return -EINVAL;
2436
2437 new_mtu = max_mtu;
2438 }
2439
2440 dev->mtu = new_mtu;
2441 return 0;
2442}
2443
Daniel Borkmann345010b2013-12-18 00:21:08 +01002444static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2445{
2446 struct vxlan_dev *vxlan = netdev_priv(dev);
2447 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002448 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);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002451}
2452
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002453static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2454{
2455 struct vxlan_dev *vxlan = netdev_priv(dev);
2456 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2457 __be16 sport, dport;
2458
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;
2462
Jiri Benc239e9442015-12-07 13:04:31 +01002463 if (ip_tunnel_info_af(info) == AF_INET) {
Jiri Benc1a8496b2016-02-02 18:09:14 +01002464 struct rtable *rt;
2465
Jiri Benc239e9442015-12-07 13:04:31 +01002466 if (!vxlan->vn4_sock)
2467 return -EINVAL;
Jiri Benc1a8496b2016-02-02 18:09:14 +01002468 rt = vxlan_get_route(vxlan, skb, 0, info->key.tos,
2469 info->key.u.ipv4.dst,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002470 &info->key.u.ipv4.src, NULL, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002471 if (IS_ERR(rt))
2472 return PTR_ERR(rt);
2473 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002474 } else {
2475#if IS_ENABLED(CONFIG_IPV6)
2476 struct dst_entry *ndst;
2477
2478 if (!vxlan->vn6_sock)
2479 return -EINVAL;
Daniel Borkmann14006152016-03-04 15:15:08 +01002480 ndst = vxlan6_get_route(vxlan, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002481 info->key.label, &info->key.u.ipv6.dst,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002482 &info->key.u.ipv6.src, NULL, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002483 if (IS_ERR(ndst))
2484 return PTR_ERR(ndst);
2485 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002486#else /* !CONFIG_IPV6 */
2487 return -EPFNOSUPPORT;
2488#endif
2489 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002490 info->key.tp_src = sport;
2491 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002492 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002493}
2494
Jiri Benc0c867c92016-04-05 14:47:10 +02002495static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002496 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002497 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002498 .ndo_open = vxlan_open,
2499 .ndo_stop = vxlan_stop,
2500 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002501 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002502 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002503 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002504 .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,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002509 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
stephen hemmingerd3428942012-10-01 12:32:35 +00002510};
2511
Jiri Bence1e53142016-04-05 14:47:13 +02002512static 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,
2521};
2522
stephen hemmingerd3428942012-10-01 12:32:35 +00002523/* Info for udev, that this is a virtual tunnel endpoint */
2524static struct device_type vxlan_type = {
2525 .name = "vxlan",
2526};
2527
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002528/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002529 * supply the listening VXLAN udp ports. Callers are expected
2530 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002531 */
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02002532static void vxlan_push_rx_ports(struct net_device *dev)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002533{
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;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002538 __be16 port;
2539 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002540
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02002541 if (!dev->netdev_ops->ndo_add_vxlan_port)
2542 return;
2543
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002544 spin_lock(&vn->sock_lock);
2545 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002546 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2547 port = inet_sk(vs->sock->sk)->inet_sport;
Jiri Benc705cc622015-08-20 13:56:28 +02002548 sa_family = vxlan_get_sk_family(vs);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002549 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2550 port);
2551 }
2552 }
2553 spin_unlock(&vn->sock_lock);
2554}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002555
stephen hemmingerd3428942012-10-01 12:32:35 +00002556/* Initialize the device structure. */
2557static void vxlan_setup(struct net_device *dev)
2558{
2559 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002560 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002561
Jiri Benc65226ef2016-04-28 16:36:30 +02002562 eth_hw_addr_random(dev);
2563 ether_setup(dev);
2564
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002565 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002566 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2567
stephen hemmingerd3428942012-10-01 12:32:35 +00002568 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002569 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002570 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002571 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002572
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002573 dev->vlan_features = dev->features;
2574 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002575 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002576 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002577 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Eric Dumazet02875872014-10-05 18:38:35 -07002578 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002579 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002580
stephen hemminger553675f2013-05-16 11:35:20 +00002581 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002582 spin_lock_init(&vxlan->hash_lock);
2583
2584 init_timer_deferrable(&vxlan->age_timer);
2585 vxlan->age_timer.function = vxlan_cleanup;
2586 vxlan->age_timer.data = (unsigned long) vxlan;
2587
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002588 vxlan->cfg.dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002589
stephen hemmingerd3428942012-10-01 12:32:35 +00002590 vxlan->dev = dev;
2591
Tom Herbert58ce31c2015-08-19 17:07:33 -07002592 gro_cells_init(&vxlan->gro_cells, dev);
2593
stephen hemmingerd3428942012-10-01 12:32:35 +00002594 for (h = 0; h < FDB_HASH_SIZE; ++h)
2595 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2596}
2597
Jiri Benc0c867c92016-04-05 14:47:10 +02002598static void vxlan_ether_setup(struct net_device *dev)
2599{
Jiri Benc0c867c92016-04-05 14:47:10 +02002600 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2601 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2602 dev->netdev_ops = &vxlan_netdev_ether_ops;
2603}
2604
Jiri Bence1e53142016-04-05 14:47:13 +02002605static void vxlan_raw_setup(struct net_device *dev)
2606{
Jiri Benc65226ef2016-04-28 16:36:30 +02002607 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02002608 dev->type = ARPHRD_NONE;
2609 dev->hard_header_len = 0;
2610 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002611 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
2612 dev->netdev_ops = &vxlan_netdev_raw_ops;
2613}
2614
stephen hemmingerd3428942012-10-01 12:32:35 +00002615static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2616 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002617 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002618 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002619 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2620 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002621 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002622 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2623 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002624 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002625 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2626 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2627 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002628 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002629 [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 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07002633 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002634 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002635 [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 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002638 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2639 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002640 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02002641 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002642 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
stephen hemmingerd3428942012-10-01 12:32:35 +00002643};
2644
2645static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2646{
2647 if (tb[IFLA_ADDRESS]) {
2648 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2649 pr_debug("invalid link address (not ethernet)\n");
2650 return -EINVAL;
2651 }
2652
2653 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2654 pr_debug("invalid all zero ethernet address\n");
2655 return -EADDRNOTAVAIL;
2656 }
2657 }
2658
2659 if (!data)
2660 return -EINVAL;
2661
2662 if (data[IFLA_VXLAN_ID]) {
2663 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2664 if (id >= VXLAN_VID_MASK)
2665 return -ERANGE;
2666 }
2667
stephen hemminger05f47d62012-10-09 20:35:50 +00002668 if (data[IFLA_VXLAN_PORT_RANGE]) {
2669 const struct ifla_vxlan_port_range *p
2670 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2671
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));
2675 return -EINVAL;
2676 }
2677 }
2678
stephen hemmingerd3428942012-10-01 12:32:35 +00002679 return 0;
2680}
2681
Yan Burman1b13c972013-01-29 23:43:07 +00002682static void vxlan_get_drvinfo(struct net_device *netdev,
2683 struct ethtool_drvinfo *drvinfo)
2684{
2685 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2686 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2687}
2688
2689static const struct ethtool_ops vxlan_ethtool_ops = {
2690 .get_drvinfo = vxlan_get_drvinfo,
2691 .get_link = ethtool_op_get_link,
2692};
2693
Tom Herbert3ee64f32014-07-13 19:49:42 -07002694static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2695 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002696{
Cong Wange4c7ed42013-08-31 13:44:33 +08002697 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002698 struct udp_port_cfg udp_conf;
2699 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002700
Tom Herbert3ee64f32014-07-13 19:49:42 -07002701 memset(&udp_conf, 0, sizeof(udp_conf));
2702
2703 if (ipv6) {
2704 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002705 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002706 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02002707 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002708 } else {
2709 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002710 }
2711
Tom Herbert3ee64f32014-07-13 19:49:42 -07002712 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002713
Tom Herbert3ee64f32014-07-13 19:49:42 -07002714 /* Open UDP socket */
2715 err = udp_sock_create(net, &udp_conf, &sock);
2716 if (err < 0)
2717 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002718
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002719 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002720}
2721
2722/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02002723static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
2724 __be16 port, u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002725{
2726 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2727 struct vxlan_sock *vs;
2728 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002729 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002730 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002731
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002732 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002733 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002734 return ERR_PTR(-ENOMEM);
2735
2736 for (h = 0; h < VNI_HASH_SIZE; ++h)
2737 INIT_HLIST_HEAD(&vs->vni_list[h]);
2738
Tom Herbert3ee64f32014-07-13 19:49:42 -07002739 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002740 if (IS_ERR(sock)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002741 pr_info("Cannot bind port %d, err=%ld\n", ntohs(port),
2742 PTR_ERR(sock));
stephen hemminger553675f2013-05-16 11:35:20 +00002743 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002744 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002745 }
2746
Cong Wange4c7ed42013-08-31 13:44:33 +08002747 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002748 atomic_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002749 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00002750
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002751 spin_lock(&vn->sock_lock);
2752 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002753 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002754 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002755
2756 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07002757 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07002758 tunnel_cfg.sk_user_data = vs;
2759 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01002760 tunnel_cfg.encap_rcv = vxlan_rcv;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002761 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07002762 tunnel_cfg.gro_receive = vxlan_gro_receive;
2763 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002764
2765 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002766
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002767 return vs;
2768}
stephen hemminger553675f2013-05-16 11:35:20 +00002769
Jiri Bencb1be00a2015-09-24 13:50:02 +02002770static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002771{
Jiri Benc205f3562015-09-24 13:50:01 +02002772 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2773 struct vxlan_sock *vs = NULL;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002774
Jiri Benc205f3562015-09-24 13:50:01 +02002775 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002776 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002777 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)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002780 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002781 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002782 }
2783 spin_unlock(&vn->sock_lock);
2784 }
Jiri Benc205f3562015-09-24 13:50:01 +02002785 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002786 vs = vxlan_socket_create(vxlan->net, ipv6,
2787 vxlan->cfg.dst_port, vxlan->flags);
Jiri Benc205f3562015-09-24 13:50:01 +02002788 if (IS_ERR(vs))
2789 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002790#if IS_ENABLED(CONFIG_IPV6)
2791 if (ipv6)
2792 vxlan->vn6_sock = vs;
2793 else
2794#endif
2795 vxlan->vn4_sock = vs;
Jiri Benc205f3562015-09-24 13:50:01 +02002796 vxlan_vs_add_dev(vs, vxlan);
2797 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00002798}
2799
Jiri Bencb1be00a2015-09-24 13:50:02 +02002800static int vxlan_sock_add(struct vxlan_dev *vxlan)
2801{
2802 bool ipv6 = vxlan->flags & VXLAN_F_IPV6;
2803 bool metadata = vxlan->flags & VXLAN_F_COLLECT_METADATA;
2804 int ret = 0;
2805
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);
2811#endif
2812 if (!ret && (!ipv6 || metadata))
2813 ret = __vxlan_sock_add(vxlan, false);
2814 if (ret < 0)
2815 vxlan_sock_release(vxlan);
2816 return ret;
2817}
2818
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002819static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
2820 struct vxlan_config *conf)
stephen hemmingerd3428942012-10-01 12:32:35 +00002821{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002822 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002823 struct vxlan_dev *vxlan = netdev_priv(dev), *tmp;
Atzm Watanabec7995c42013-04-16 02:50:52 +00002824 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002825 unsigned short needed_headroom = ETH_HLEN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002826 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002827 bool use_ipv6 = false;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002828 __be16 default_port = vxlan->cfg.dst_port;
David Wragg7e059152016-02-10 00:05:58 +00002829 struct net_device *lowerdev = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00002830
Jiri Bence1e53142016-04-05 14:47:13 +02002831 if (conf->flags & VXLAN_F_GPE) {
2832 if (conf->flags & ~VXLAN_F_ALLOWED_GPE)
2833 return -EINVAL;
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.
2837 */
2838 if (!(conf->flags & VXLAN_F_COLLECT_METADATA))
2839 return -EINVAL;
2840
2841 vxlan_raw_setup(dev);
2842 } else {
2843 vxlan_ether_setup(dev);
2844 }
Jiri Benc0c867c92016-04-05 14:47:10 +02002845
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002846 vxlan->net = src_net;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002847
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002848 dst->remote_vni = conf->vni;
2849
2850 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00002851
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002852 /* Unless IPv6 is explicitly requested, assume IPv4 */
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002853 if (!dst->remote_ip.sa.sa_family)
2854 dst->remote_ip.sa.sa_family = AF_INET;
stephen hemmingerd3428942012-10-01 12:32:35 +00002855
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002856 if (dst->remote_ip.sa.sa_family == AF_INET6 ||
Jiri Benc057ba292015-09-17 16:11:11 +02002857 vxlan->cfg.saddr.sa.sa_family == AF_INET6) {
2858 if (!IS_ENABLED(CONFIG_IPV6))
2859 return -EPFNOSUPPORT;
Cong Wange4c7ed42013-08-31 13:44:33 +08002860 use_ipv6 = true;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002861 vxlan->flags |= VXLAN_F_IPV6;
Jiri Benc057ba292015-09-17 16:11:11 +02002862 }
Cong Wange4c7ed42013-08-31 13:44:33 +08002863
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002864 if (conf->label && !use_ipv6) {
2865 pr_info("label only supported in use with IPv6\n");
2866 return -EINVAL;
2867 }
2868
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002869 if (conf->remote_ifindex) {
David Wragg7e059152016-02-10 00:05:58 +00002870 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002871 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00002872
stephen hemminger34e02aa2012-10-09 20:35:53 +00002873 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002874 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002875 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002876 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002877
Cong Wange4c7ed42013-08-31 13:44:33 +08002878#if IS_ENABLED(CONFIG_IPV6)
2879 if (use_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");
2883 return -EPERM;
2884 }
Cong Wange4c7ed42013-08-31 13:44:33 +08002885 }
2886#endif
2887
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002888 if (!conf->mtu)
Cong Wange4c7ed42013-08-31 13:44:33 +08002889 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002890
Jiri Bencb1be00a2015-09-24 13:50:02 +02002891 needed_headroom = lowerdev->hard_header_len;
Jiri Benc9dc2ad12015-09-17 16:11:10 +02002892 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002893
David Wragg7e059152016-02-10 00:05:58 +00002894 if (conf->mtu) {
2895 err = __vxlan_change_mtu(dev, lowerdev, dst, conf->mtu, false);
2896 if (err)
2897 return err;
2898 }
2899
Jiri Bencb1be00a2015-09-24 13:50:02 +02002900 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
2901 needed_headroom += VXLAN6_HEADROOM;
2902 else
2903 needed_headroom += VXLAN_HEADROOM;
2904 dev->needed_headroom = needed_headroom;
2905
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002906 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Jiri Bence1e53142016-04-05 14:47:13 +02002907 if (!vxlan->cfg.dst_port) {
2908 if (conf->flags & VXLAN_F_GPE)
2909 vxlan->cfg.dst_port = 4790; /* IANA assigned VXLAN-GPE port */
2910 else
2911 vxlan->cfg.dst_port = default_port;
2912 }
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002913 vxlan->flags |= conf->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00002914
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002915 if (!vxlan->cfg.age_interval)
2916 vxlan->cfg.age_interval = FDB_AGE_DEFAULT;
Vincent Bernatafb97182012-10-30 10:27:16 +00002917
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002918 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))
stephen hemminger553675f2013-05-16 11:35:20 +00002925 return -EEXIST;
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002926 }
stephen hemminger553675f2013-05-16 11:35:20 +00002927
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002928 dev->ethtool_ops = &vxlan_ethtool_ops;
Yan Burman1b13c972013-01-29 23:43:07 +00002929
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002930 /* 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,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002936 vxlan->cfg.dst_port,
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002937 vxlan->default_dst.remote_vni,
2938 vxlan->default_dst.remote_ifindex,
2939 NTF_SELF);
2940 if (err)
2941 return err;
2942 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002943
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002944 err = register_netdevice(dev);
2945 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002946 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002947 return err;
2948 }
2949
stephen hemminger553675f2013-05-16 11:35:20 +00002950 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002951
2952 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002953}
2954
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002955static int vxlan_newlink(struct net *src_net, struct net_device *dev,
2956 struct nlattr *tb[], struct nlattr *data[])
2957{
2958 struct vxlan_config conf;
2959 int err;
2960
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002961 memset(&conf, 0, sizeof(conf));
Jesse Grosse277de52015-10-16 16:36:00 -07002962
2963 if (data[IFLA_VXLAN_ID])
Jiri Benc54bfd872016-02-16 21:58:58 +01002964 conf.vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002965
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;
2971
2972 conf.remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
2973 conf.remote_ip.sa.sa_family = AF_INET6;
2974 }
2975
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;
2982
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;
2986 }
2987
2988 if (data[IFLA_VXLAN_LINK])
2989 conf.remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
2990
2991 if (data[IFLA_VXLAN_TOS])
2992 conf.tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2993
2994 if (data[IFLA_VXLAN_TTL])
2995 conf.ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2996
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002997 if (data[IFLA_VXLAN_LABEL])
2998 conf.label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
2999 IPV6_FLOWLABEL_MASK;
3000
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003001 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
3002 conf.flags |= VXLAN_F_LEARN;
3003
3004 if (data[IFLA_VXLAN_AGEING])
3005 conf.age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
3006
3007 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
3008 conf.flags |= VXLAN_F_PROXY;
3009
3010 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
3011 conf.flags |= VXLAN_F_RSC;
3012
3013 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
3014 conf.flags |= VXLAN_F_L2MISS;
3015
3016 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
3017 conf.flags |= VXLAN_F_L3MISS;
3018
3019 if (data[IFLA_VXLAN_LIMIT])
3020 conf.addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3021
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07003022 if (data[IFLA_VXLAN_COLLECT_METADATA] &&
3023 nla_get_u8(data[IFLA_VXLAN_COLLECT_METADATA]))
3024 conf.flags |= VXLAN_F_COLLECT_METADATA;
3025
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003026 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);
3031 }
3032
3033 if (data[IFLA_VXLAN_PORT])
3034 conf.dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3035
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08003036 if (data[IFLA_VXLAN_UDP_CSUM] &&
3037 !nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3038 conf.flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003039
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;
3043
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;
3047
3048 if (data[IFLA_VXLAN_REMCSUM_TX] &&
3049 nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
3050 conf.flags |= VXLAN_F_REMCSUM_TX;
3051
3052 if (data[IFLA_VXLAN_REMCSUM_RX] &&
3053 nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
3054 conf.flags |= VXLAN_F_REMCSUM_RX;
3055
3056 if (data[IFLA_VXLAN_GBP])
3057 conf.flags |= VXLAN_F_GBP;
3058
Jiri Bence1e53142016-04-05 14:47:13 +02003059 if (data[IFLA_VXLAN_GPE])
3060 conf.flags |= VXLAN_F_GPE;
3061
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003062 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL])
3063 conf.flags |= VXLAN_F_REMCSUM_NOPARTIAL;
3064
Chen Haiquance577662016-05-27 10:49:11 +08003065 if (tb[IFLA_MTU])
3066 conf.mtu = nla_get_u32(tb[IFLA_MTU]);
3067
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003068 err = vxlan_dev_configure(src_net, dev, &conf);
3069 switch (err) {
3070 case -ENODEV:
3071 pr_info("ifindex %d does not exist\n", conf.remote_ifindex);
3072 break;
3073
3074 case -EPERM:
3075 pr_info("IPv6 is disabled via sysctl\n");
3076 break;
3077
3078 case -EEXIST:
Jiri Benc54bfd872016-02-16 21:58:58 +01003079 pr_info("duplicate VNI %u\n", be32_to_cpu(conf.vni));
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003080 break;
Jiri Bence1e53142016-04-05 14:47:13 +02003081
3082 case -EINVAL:
3083 pr_info("unsupported combination of extensions\n");
3084 break;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003085 }
3086
3087 return err;
3088}
3089
stephen hemmingerd3428942012-10-01 12:32:35 +00003090static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3091{
3092 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003093 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00003094
stephen hemmingerfe5c3562013-07-13 10:18:18 -07003095 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003096 if (!hlist_unhashed(&vxlan->hlist))
3097 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07003098 spin_unlock(&vn->sock_lock);
3099
Tom Herbert58ce31c2015-08-19 17:07:33 -07003100 gro_cells_destroy(&vxlan->gro_cells);
stephen hemminger553675f2013-05-16 11:35:20 +00003101 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003102 unregister_netdevice_queue(dev, head);
3103}
3104
3105static size_t vxlan_get_size(const struct net_device *dev)
3106{
3107
3108 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003109 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003110 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003111 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003112 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
3113 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003114 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003115 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003116 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 */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003120 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003121 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3122 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003123 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003124 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 */
Tom Herbertdfd86452015-01-12 17:00:38 -08003128 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3129 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003130 0;
3131}
3132
3133static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3134{
3135 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003136 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003137 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003138 .low = htons(vxlan->cfg.port_min),
3139 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003140 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003141
Jiri Benc54bfd872016-02-16 21:58:58 +01003142 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003143 goto nla_put_failure;
3144
Cong Wange4c7ed42013-08-31 13:44:33 +08003145 if (!vxlan_addr_any(&dst->remote_ip)) {
3146 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003147 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3148 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003149 goto nla_put_failure;
3150#if IS_ENABLED(CONFIG_IPV6)
3151 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003152 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
3153 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003154 goto nla_put_failure;
3155#endif
3156 }
3157 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003158
Atzm Watanabec7995c42013-04-16 02:50:52 +00003159 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00003160 goto nla_put_failure;
3161
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003162 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
3163 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003164 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003165 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003166 goto nla_put_failure;
3167#if IS_ENABLED(CONFIG_IPV6)
3168 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003169 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003170 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003171 goto nla_put_failure;
3172#endif
3173 }
3174 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003175
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003176 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
3177 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003178 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003179 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)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003188 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
3189 !!(vxlan->flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003190 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) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003193 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08003194 !(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003195 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,
Tom Herbertdfd86452015-01-12 17:00:38 -08003198 !!(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)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003203 goto nla_put_failure;
3204
stephen hemminger05f47d62012-10-09 20:35:50 +00003205 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
3206 goto nla_put_failure;
3207
Thomas Graf35114942015-01-15 03:53:55 +01003208 if (vxlan->flags & VXLAN_F_GBP &&
3209 nla_put_flag(skb, IFLA_VXLAN_GBP))
3210 goto nla_put_failure;
3211
Jiri Bence1e53142016-04-05 14:47:13 +02003212 if (vxlan->flags & VXLAN_F_GPE &&
3213 nla_put_flag(skb, IFLA_VXLAN_GPE))
3214 goto nla_put_failure;
3215
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003216 if (vxlan->flags & VXLAN_F_REMCSUM_NOPARTIAL &&
3217 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
3218 goto nla_put_failure;
3219
stephen hemmingerd3428942012-10-01 12:32:35 +00003220 return 0;
3221
3222nla_put_failure:
3223 return -EMSGSIZE;
3224}
3225
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003226static struct net *vxlan_get_link_net(const struct net_device *dev)
3227{
3228 struct vxlan_dev *vxlan = netdev_priv(dev);
3229
3230 return vxlan->net;
3231}
3232
stephen hemmingerd3428942012-10-01 12:32:35 +00003233static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
3234 .kind = "vxlan",
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,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003244 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003245};
3246
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003247struct net_device *vxlan_dev_create(struct net *net, const char *name,
3248 u8 name_assign_type,
3249 struct vxlan_config *conf)
3250{
3251 struct nlattr *tb[IFLA_MAX + 1];
3252 struct net_device *dev;
3253 int err;
3254
3255 memset(&tb, 0, sizeof(tb));
3256
3257 dev = rtnl_create_link(net, name, name_assign_type,
3258 &vxlan_link_ops, tb);
3259 if (IS_ERR(dev))
3260 return dev;
3261
3262 err = vxlan_dev_configure(net, dev, conf);
3263 if (err < 0) {
3264 free_netdev(dev);
3265 return ERR_PTR(err);
3266 }
3267
3268 err = rtnl_configure_link(dev, NULL);
3269 if (err < 0) {
3270 LIST_HEAD(list_kill);
3271
3272 vxlan_dellink(dev, &list_kill);
3273 unregister_netdevice_many(&list_kill);
3274 return ERR_PTR(err);
3275 }
3276
3277 return dev;
3278}
3279EXPORT_SYMBOL_GPL(vxlan_dev_create);
3280
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003281static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
3282 struct net_device *dev)
3283{
3284 struct vxlan_dev *vxlan, *next;
3285 LIST_HEAD(list_kill);
3286
3287 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3288 struct vxlan_rdst *dst = &vxlan->default_dst;
3289
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.
3295 */
3296 if (dst->remote_ifindex == dev->ifindex)
3297 vxlan_dellink(vxlan->dev, &list_kill);
3298 }
3299
3300 unregister_netdevice_many(&list_kill);
3301}
3302
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003303static int vxlan_netdevice_event(struct notifier_block *unused,
3304 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003305{
3306 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003307 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003308
Daniel Borkmann783c1462014-01-22 21:07:53 +01003309 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003310 vxlan_handle_lowerdev_unregister(vn, dev);
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003311 else if (event == NETDEV_OFFLOAD_PUSH_VXLAN)
3312 vxlan_push_rx_ports(dev);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003313
3314 return NOTIFY_DONE;
3315}
3316
3317static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003318 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003319};
3320
stephen hemmingerd3428942012-10-01 12:32:35 +00003321static __net_init int vxlan_init_net(struct net *net)
3322{
3323 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00003324 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00003325
stephen hemminger553675f2013-05-16 11:35:20 +00003326 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07003327 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00003328
stephen hemminger553675f2013-05-16 11:35:20 +00003329 for (h = 0; h < PORT_HASH_SIZE; ++h)
3330 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00003331
3332 return 0;
3333}
3334
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003335static void __net_exit vxlan_exit_net(struct net *net)
3336{
3337 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3338 struct vxlan_dev *vxlan, *next;
3339 struct net_device *dev, *aux;
3340 LIST_HEAD(list);
3341
3342 rtnl_lock();
3343 for_each_netdev_safe(net, dev, aux)
3344 if (dev->rtnl_link_ops == &vxlan_link_ops)
3345 unregister_netdevice_queue(dev, &list);
3346
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.
3350 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07003351 if (!net_eq(dev_net(vxlan->dev), net)) {
3352 gro_cells_destroy(&vxlan->gro_cells);
John W. Linville13c3ed62015-05-18 13:51:24 -04003353 unregister_netdevice_queue(vxlan->dev, &list);
Tom Herbert58ce31c2015-08-19 17:07:33 -07003354 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003355 }
3356
3357 unregister_netdevice_many(&list);
3358 rtnl_unlock();
3359}
3360
stephen hemmingerd3428942012-10-01 12:32:35 +00003361static struct pernet_operations vxlan_net_ops = {
3362 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003363 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003364 .id = &vxlan_net_id,
3365 .size = sizeof(struct vxlan_net),
3366};
3367
3368static int __init vxlan_init_module(void)
3369{
3370 int rc;
3371
3372 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3373
Daniel Borkmann783c1462014-01-22 21:07:53 +01003374 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003375 if (rc)
3376 goto out1;
3377
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003378 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003379 if (rc)
3380 goto out2;
3381
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003382 rc = rtnl_link_register(&vxlan_link_ops);
3383 if (rc)
3384 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003385
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003386 return 0;
3387out3:
3388 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003389out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003390 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003391out1:
3392 return rc;
3393}
Cong Wang7332a132013-05-27 22:35:53 +00003394late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003395
3396static void __exit vxlan_cleanup_module(void)
3397{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003398 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003399 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003400 unregister_pernet_subsys(&vxlan_net_ops);
3401 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003402}
3403module_exit(vxlan_cleanup_module);
3404
3405MODULE_LICENSE("GPL");
3406MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003407MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003408MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003409MODULE_ALIAS_RTNL_LINK("vxlan");