blob: a3c46d78d216bf088545d7550170545c1771ab79 [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>
stephen hemmingerd3428942012-10-01 12:32:35 +000014#include <linux/module.h>
15#include <linux/errno.h>
16#include <linux/slab.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000017#include <linux/udp.h>
18#include <linux/igmp.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000019#include <linux/if_ether.h>
Yan Burman1b13c972013-01-29 23:43:07 +000020#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000021#include <net/arp.h>
22#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000023#include <net/ip.h>
24#include <net/icmp.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000025#include <net/rtnetlink.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000026#include <net/inet_ecn.h>
27#include <net/net_namespace.h>
28#include <net/netns/generic.h>
Jiri Bencfa20e0e2017-08-28 21:43:22 +020029#include <net/tun_proto.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070030#include <net/vxlan.h>
stephen hemminger40d29af2016-02-09 22:07:29 -080031
Cong Wange4c7ed42013-08-31 13:44:33 +080032#if IS_ENABLED(CONFIG_IPV6)
Cong Wange4c7ed42013-08-31 13:44:33 +080033#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080034#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080035#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000036
37#define VXLAN_VERSION "0.1"
38
stephen hemminger553675f2013-05-16 11:35:20 +000039#define PORT_HASH_BITS 8
40#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000041#define FDB_AGE_DEFAULT 300 /* 5 min */
42#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
43
stephen hemminger23c578b2013-04-27 11:31:53 +000044/* UDP port for VXLAN traffic.
45 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070046 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000047 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070048static unsigned short vxlan_port __read_mostly = 8472;
49module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000050MODULE_PARM_DESC(udp_port, "Destination UDP port");
51
52static bool log_ecn_error = true;
53module_param(log_ecn_error, bool, 0644);
54MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
55
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030056static unsigned int vxlan_net_id;
Thomas Graf0dfbdf42015-07-21 10:44:02 +020057static struct rtnl_link_ops vxlan_link_ops;
stephen hemminger553675f2013-05-16 11:35:20 +000058
Li RongQing7256eac2016-01-29 09:43:47 +080059static const u8 all_zeros_mac[ETH_ALEN + 2];
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030060
Jiri Benc205f3562015-09-24 13:50:01 +020061static int vxlan_sock_add(struct vxlan_dev *vxlan);
Thomas Graf614732e2015-07-21 10:44:06 +020062
Mark Blocha53cb292017-06-02 03:24:08 +030063static void vxlan_vs_del_dev(struct vxlan_dev *vxlan);
64
stephen hemminger553675f2013-05-16 11:35:20 +000065/* per-network namespace private data for this module */
66struct vxlan_net {
67 struct list_head vxlan_list;
68 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070069 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000070};
71
stephen hemmingerd3428942012-10-01 12:32:35 +000072/* Forwarding table entry */
73struct vxlan_fdb {
74 struct hlist_node hlist; /* linked list of entries */
75 struct rcu_head rcu;
76 unsigned long updated; /* jiffies */
77 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070078 struct list_head remotes;
Sowmini Varadhan7177a3b2015-07-20 09:54:50 +020079 u8 eth_addr[ETH_ALEN];
stephen hemmingerd3428942012-10-01 12:32:35 +000080 u16 state; /* see ndm_state */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -080081 __be32 vni;
Petr Machata45598c12018-11-21 08:02:36 +000082 u16 flags; /* see ndm_flags and below */
stephen hemmingerd3428942012-10-01 12:32:35 +000083};
84
Petr Machata45598c12018-11-21 08:02:36 +000085#define NTF_VXLAN_ADDED_BY_USER 0x100
86
stephen hemmingerd3428942012-10-01 12:32:35 +000087/* salt for hash table */
88static u32 vxlan_salt __read_mostly;
89
Thomas Grafee122c72015-07-21 10:43:58 +020090static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
91{
Thomas Grafe7030872015-07-21 10:44:01 +020092 return vs->flags & VXLAN_F_COLLECT_METADATA ||
93 ip_tunnel_collect_metadata();
Thomas Grafee122c72015-07-21 10:43:58 +020094}
95
Cong Wange4c7ed42013-08-31 13:44:33 +080096#if IS_ENABLED(CONFIG_IPV6)
97static inline
98bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
99{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200100 if (a->sa.sa_family != b->sa.sa_family)
101 return false;
102 if (a->sa.sa_family == AF_INET6)
103 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
104 else
105 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800106}
107
Cong Wange4c7ed42013-08-31 13:44:33 +0800108static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
109{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200110 if (nla_len(nla) >= sizeof(struct in6_addr)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200111 ip->sin6.sin6_addr = nla_get_in6_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200112 ip->sa.sa_family = AF_INET6;
113 return 0;
114 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200115 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200116 ip->sa.sa_family = AF_INET;
117 return 0;
118 } else {
119 return -EAFNOSUPPORT;
120 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800121}
122
123static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200124 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800125{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200126 if (ip->sa.sa_family == AF_INET6)
Jiri Benc930345e2015-03-29 16:59:25 +0200127 return nla_put_in6_addr(skb, attr, &ip->sin6.sin6_addr);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200128 else
Jiri Benc930345e2015-03-29 16:59:25 +0200129 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800130}
131
132#else /* !CONFIG_IPV6 */
133
134static inline
135bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
136{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200137 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800138}
139
Cong Wange4c7ed42013-08-31 13:44:33 +0800140static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
141{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200142 if (nla_len(nla) >= sizeof(struct in6_addr)) {
143 return -EAFNOSUPPORT;
144 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200145 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200146 ip->sa.sa_family = AF_INET;
147 return 0;
148 } else {
149 return -EAFNOSUPPORT;
150 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800151}
152
153static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200154 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800155{
Jiri Benc930345e2015-03-29 16:59:25 +0200156 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800157}
158#endif
159
stephen hemminger553675f2013-05-16 11:35:20 +0000160/* Virtual Network hash table head */
Jiri Benc54bfd872016-02-16 21:58:58 +0100161static inline struct hlist_head *vni_head(struct vxlan_sock *vs, __be32 vni)
stephen hemminger553675f2013-05-16 11:35:20 +0000162{
Jiri Benc54bfd872016-02-16 21:58:58 +0100163 return &vs->vni_list[hash_32((__force u32)vni, VNI_HASH_BITS)];
stephen hemminger553675f2013-05-16 11:35:20 +0000164}
165
166/* Socket hash table head */
167static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000168{
169 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
170
stephen hemminger553675f2013-05-16 11:35:20 +0000171 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
172}
173
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700174/* First remote destination for a forwarding entry.
175 * Guaranteed to be non-NULL because remotes are never deleted.
176 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700177static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700178{
stephen hemminger5ca54612013-08-04 17:17:39 -0700179 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
180}
181
182static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
183{
184 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700185}
186
Thomas Grafac5132d2015-01-15 03:53:56 +0100187/* Find VXLAN socket based on network namespace, address family and UDP port
188 * and enabled unshareable flags.
189 */
190static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +0100191 __be16 port, u32 flags, int ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +0000192{
193 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800194
195 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000196
197 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200198 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Jiri Benc705cc622015-08-20 13:56:28 +0200199 vxlan_get_sk_family(vs) == family &&
Alexis Bauvinaab8cc32018-12-03 10:54:40 +0100200 vs->flags == flags &&
201 vs->sock->sk->sk_bound_dev_if == ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +0000202 return vs;
203 }
204 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000205}
206
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200207static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, int ifindex,
208 __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000209{
Jiri Benc69e76662017-07-02 19:00:57 +0200210 struct vxlan_dev_node *node;
stephen hemmingerd3428942012-10-01 12:32:35 +0000211
Jiri Bencb9167b22016-02-16 21:59:03 +0100212 /* For flow based devices, map all packets to VNI 0 */
213 if (vs->flags & VXLAN_F_COLLECT_METADATA)
214 vni = 0;
215
Jiri Benc69e76662017-07-02 19:00:57 +0200216 hlist_for_each_entry_rcu(node, vni_head(vs, vni), hlist) {
217 if (node->vxlan->default_dst.remote_vni != vni)
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200218 continue;
219
220 if (IS_ENABLED(CONFIG_IPV6)) {
Jiri Benc69e76662017-07-02 19:00:57 +0200221 const struct vxlan_config *cfg = &node->vxlan->cfg;
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200222
223 if ((cfg->flags & VXLAN_F_IPV6_LINKLOCAL) &&
224 cfg->remote_ifindex != ifindex)
225 continue;
226 }
227
Jiri Benc69e76662017-07-02 19:00:57 +0200228 return node->vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000229 }
230
231 return NULL;
232}
233
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700234/* Look up VNI in a per net namespace table */
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200235static struct vxlan_dev *vxlan_find_vni(struct net *net, int ifindex,
236 __be32 vni, sa_family_t family,
237 __be16 port, u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700238{
239 struct vxlan_sock *vs;
240
Alexis Bauvinaab8cc32018-12-03 10:54:40 +0100241 vs = vxlan_find_sock(net, family, port, flags, ifindex);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700242 if (!vs)
243 return NULL;
244
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200245 return vxlan_vs_find_vni(vs, ifindex, vni);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700246}
247
stephen hemmingerd3428942012-10-01 12:32:35 +0000248/* Fill in neighbour message in skbuff. */
249static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700250 const struct vxlan_fdb *fdb,
251 u32 portid, u32 seq, int type, unsigned int flags,
252 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000253{
254 unsigned long now = jiffies;
255 struct nda_cacheinfo ci;
256 struct nlmsghdr *nlh;
257 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000258 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000259
260 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
261 if (nlh == NULL)
262 return -EMSGSIZE;
263
264 ndm = nlmsg_data(nlh);
265 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000266
267 send_eth = send_ip = true;
268
269 if (type == RTM_GETNEIGH) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800270 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000271 send_eth = !is_zero_ether_addr(fdb->eth_addr);
Vincent Bernat8f48ba72017-03-10 16:30:24 +0100272 ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET;
David Stevense4f67ad2012-11-20 02:50:14 +0000273 } else
274 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000275 ndm->ndm_state = fdb->state;
276 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000277 ndm->ndm_flags = fdb->flags;
Petr Machata0efe1172018-10-17 08:53:26 +0000278 if (rdst->offloaded)
279 ndm->ndm_flags |= NTF_OFFLOADED;
Jun Zhao545469f2014-07-26 00:38:59 +0800280 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000281
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100282 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100283 nla_put_s32(skb, NDA_LINK_NETNSID,
WANG Cong38f507f2016-09-01 21:53:44 -0700284 peernet2id(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100285 goto nla_put_failure;
286
David Stevense4f67ad2012-11-20 02:50:14 +0000287 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000288 goto nla_put_failure;
289
Cong Wange4c7ed42013-08-31 13:44:33 +0800290 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000291 goto nla_put_failure;
292
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200293 if (rdst->remote_port && rdst->remote_port != vxlan->cfg.dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000294 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
295 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000296 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Jiri Benc54bfd872016-02-16 21:58:58 +0100297 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
David Stevens66817122013-03-15 04:35:51 +0000298 goto nla_put_failure;
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200299 if ((vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) && fdb->vni &&
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800300 nla_put_u32(skb, NDA_SRC_VNI,
301 be32_to_cpu(fdb->vni)))
302 goto nla_put_failure;
David Stevens66817122013-03-15 04:35:51 +0000303 if (rdst->remote_ifindex &&
304 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000305 goto nla_put_failure;
306
307 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
308 ci.ndm_confirmed = 0;
309 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
310 ci.ndm_refcnt = 0;
311
312 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
313 goto nla_put_failure;
314
Johannes Berg053c0952015-01-16 22:09:00 +0100315 nlmsg_end(skb, nlh);
316 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000317
318nla_put_failure:
319 nlmsg_cancel(skb, nlh);
320 return -EMSGSIZE;
321}
322
323static inline size_t vxlan_nlmsg_size(void)
324{
325 return NLMSG_ALIGN(sizeof(struct ndmsg))
326 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800327 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000328 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000329 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
330 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100331 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000332 + nla_total_size(sizeof(struct nda_cacheinfo));
333}
334
Petr Machata9a997352018-10-17 08:53:22 +0000335static void __vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
336 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000337{
338 struct net *net = dev_net(vxlan->dev);
339 struct sk_buff *skb;
340 int err = -ENOBUFS;
341
342 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
343 if (skb == NULL)
344 goto errout;
345
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200346 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000347 if (err < 0) {
348 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
349 WARN_ON(err == -EMSGSIZE);
350 kfree_skb(skb);
351 goto errout;
352 }
353
354 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
355 return;
356errout:
357 if (err < 0)
358 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
359}
360
Petr Machataff23b912018-12-07 19:55:03 +0000361static void vxlan_fdb_switchdev_notifier_info(const struct vxlan_dev *vxlan,
362 const struct vxlan_fdb *fdb,
363 const struct vxlan_rdst *rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000364 struct netlink_ext_ack *extack,
Petr Machataff23b912018-12-07 19:55:03 +0000365 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
366{
367 fdb_info->info.dev = vxlan->dev;
Petr Machata4c59b7d2019-01-16 23:06:54 +0000368 fdb_info->info.extack = extack;
Petr Machataff23b912018-12-07 19:55:03 +0000369 fdb_info->remote_ip = rd->remote_ip;
370 fdb_info->remote_port = rd->remote_port;
371 fdb_info->remote_vni = rd->remote_vni;
372 fdb_info->remote_ifindex = rd->remote_ifindex;
373 memcpy(fdb_info->eth_addr, fdb->eth_addr, ETH_ALEN);
374 fdb_info->vni = fdb->vni;
375 fdb_info->offloaded = rd->offloaded;
376 fdb_info->added_by_user = fdb->flags & NTF_VXLAN_ADDED_BY_USER;
377}
378
Petr Machata61f46fe2019-01-16 23:06:38 +0000379static int vxlan_fdb_switchdev_call_notifiers(struct vxlan_dev *vxlan,
380 struct vxlan_fdb *fdb,
381 struct vxlan_rdst *rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000382 bool adding,
383 struct netlink_ext_ack *extack)
Petr Machata9a997352018-10-17 08:53:22 +0000384{
385 struct switchdev_notifier_vxlan_fdb_info info;
386 enum switchdev_notifier_type notifier_type;
Petr Machata61f46fe2019-01-16 23:06:38 +0000387 int ret;
Petr Machata9a997352018-10-17 08:53:22 +0000388
389 if (WARN_ON(!rd))
Petr Machata61f46fe2019-01-16 23:06:38 +0000390 return 0;
Petr Machata9a997352018-10-17 08:53:22 +0000391
392 notifier_type = adding ? SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE
393 : SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE;
Petr Machata4c59b7d2019-01-16 23:06:54 +0000394 vxlan_fdb_switchdev_notifier_info(vxlan, fdb, rd, NULL, &info);
Petr Machata61f46fe2019-01-16 23:06:38 +0000395 ret = call_switchdev_notifiers(notifier_type, vxlan->dev,
Petr Machata66859872019-01-16 23:06:56 +0000396 &info.info, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000397 return notifier_to_errno(ret);
Petr Machata9a997352018-10-17 08:53:22 +0000398}
399
Petr Machata61f46fe2019-01-16 23:06:38 +0000400static int vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000401 struct vxlan_rdst *rd, int type, bool swdev_notify,
402 struct netlink_ext_ack *extack)
Petr Machata9a997352018-10-17 08:53:22 +0000403{
Petr Machata61f46fe2019-01-16 23:06:38 +0000404 int err;
405
Petr Machata0e6160f2018-11-21 08:02:35 +0000406 if (swdev_notify) {
407 switch (type) {
408 case RTM_NEWNEIGH:
Petr Machata61f46fe2019-01-16 23:06:38 +0000409 err = vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000410 true, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000411 if (err)
412 return err;
Petr Machata0e6160f2018-11-21 08:02:35 +0000413 break;
414 case RTM_DELNEIGH:
415 vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000416 false, extack);
Petr Machata0e6160f2018-11-21 08:02:35 +0000417 break;
418 }
Petr Machata9a997352018-10-17 08:53:22 +0000419 }
420
421 __vxlan_fdb_notify(vxlan, fdb, rd, type);
Petr Machata61f46fe2019-01-16 23:06:38 +0000422 return 0;
Petr Machata9a997352018-10-17 08:53:22 +0000423}
424
Cong Wange4c7ed42013-08-31 13:44:33 +0800425static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000426{
427 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700428 struct vxlan_fdb f = {
429 .state = NUD_STALE,
430 };
431 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800432 .remote_ip = *ipa, /* goes to NDA_DST */
Jiri Benc54bfd872016-02-16 21:58:58 +0100433 .remote_vni = cpu_to_be32(VXLAN_N_VID),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700434 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700435
Petr Machata4c59b7d2019-01-16 23:06:54 +0000436 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL);
David Stevense4f67ad2012-11-20 02:50:14 +0000437}
438
439static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
440{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700441 struct vxlan_fdb f = {
442 .state = NUD_STALE,
443 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200444 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000445
David Stevense4f67ad2012-11-20 02:50:14 +0000446 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
447
Petr Machata4c59b7d2019-01-16 23:06:54 +0000448 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL);
David Stevense4f67ad2012-11-20 02:50:14 +0000449}
450
stephen hemmingerd3428942012-10-01 12:32:35 +0000451/* Hash Ethernet address */
452static u32 eth_hash(const unsigned char *addr)
453{
454 u64 value = get_unaligned((u64 *)addr);
455
456 /* only want 6 bytes */
457#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000458 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000459#else
460 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000461#endif
462 return hash_64(value, FDB_HASH_BITS);
463}
464
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800465static u32 eth_vni_hash(const unsigned char *addr, __be32 vni)
466{
467 /* use 1 byte of OUI and 3 bytes of NIC */
468 u32 key = get_unaligned((u32 *)(addr + 2));
469
470 return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1);
471}
472
stephen hemmingerd3428942012-10-01 12:32:35 +0000473/* Hash chain to use given mac address */
474static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800475 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000476{
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200477 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800478 return &vxlan->fdb_head[eth_vni_hash(mac, vni)];
479 else
480 return &vxlan->fdb_head[eth_hash(mac)];
stephen hemmingerd3428942012-10-01 12:32:35 +0000481}
482
483/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000484static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800485 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000486{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800487 struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000488 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000489
Sasha Levinb67bfe02013-02-27 17:06:00 -0800490 hlist_for_each_entry_rcu(f, head, hlist) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800491 if (ether_addr_equal(mac, f->eth_addr)) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200492 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800493 if (vni == f->vni)
494 return f;
495 } else {
496 return f;
497 }
498 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000499 }
500
501 return NULL;
502}
503
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000504static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800505 const u8 *mac, __be32 vni)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000506{
507 struct vxlan_fdb *f;
508
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800509 f = __vxlan_find_mac(vxlan, mac, vni);
Li RongQing016f3d12018-08-29 11:52:10 +0800510 if (f && f->used != jiffies)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000511 f->used = jiffies;
512
513 return f;
514}
515
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300516/* caller should hold vxlan->hash_lock */
517static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800518 union vxlan_addr *ip, __be16 port,
Jiri Benc54bfd872016-02-16 21:58:58 +0100519 __be32 vni, __u32 ifindex)
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300520{
521 struct vxlan_rdst *rd;
522
523 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800524 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300525 rd->remote_port == port &&
526 rd->remote_vni == vni &&
527 rd->remote_ifindex == ifindex)
528 return rd;
529 }
530
531 return NULL;
532}
533
Petr Machata1941f1d2018-10-17 08:53:24 +0000534int vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
535 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
536{
537 struct vxlan_dev *vxlan = netdev_priv(dev);
538 u8 eth_addr[ETH_ALEN + 2] = { 0 };
539 struct vxlan_rdst *rdst;
540 struct vxlan_fdb *f;
541 int rc = 0;
542
543 if (is_multicast_ether_addr(mac) ||
544 is_zero_ether_addr(mac))
545 return -EINVAL;
546
547 ether_addr_copy(eth_addr, mac);
548
549 rcu_read_lock();
550
551 f = __vxlan_find_mac(vxlan, eth_addr, vni);
552 if (!f) {
553 rc = -ENOENT;
554 goto out;
555 }
556
557 rdst = first_remote_rcu(f);
Petr Machata4c59b7d2019-01-16 23:06:54 +0000558 vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, NULL, fdb_info);
Petr Machata1941f1d2018-10-17 08:53:24 +0000559
560out:
561 rcu_read_unlock();
562 return rc;
563}
564EXPORT_SYMBOL_GPL(vxlan_fdb_find_uc);
565
Petr Machata4f89f5b2018-12-07 19:55:04 +0000566static int vxlan_fdb_notify_one(struct notifier_block *nb,
567 const struct vxlan_dev *vxlan,
568 const struct vxlan_fdb *f,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000569 const struct vxlan_rdst *rdst,
570 struct netlink_ext_ack *extack)
Petr Machata4f89f5b2018-12-07 19:55:04 +0000571{
572 struct switchdev_notifier_vxlan_fdb_info fdb_info;
573 int rc;
574
Petr Machata4c59b7d2019-01-16 23:06:54 +0000575 vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, extack, &fdb_info);
Petr Machata4f89f5b2018-12-07 19:55:04 +0000576 rc = nb->notifier_call(nb, SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE,
577 &fdb_info);
578 return notifier_to_errno(rc);
579}
580
581int vxlan_fdb_replay(const struct net_device *dev, __be32 vni,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000582 struct notifier_block *nb,
583 struct netlink_ext_ack *extack)
Petr Machata4f89f5b2018-12-07 19:55:04 +0000584{
585 struct vxlan_dev *vxlan;
586 struct vxlan_rdst *rdst;
587 struct vxlan_fdb *f;
588 unsigned int h;
589 int rc = 0;
590
591 if (!netif_is_vxlan(dev))
592 return -EINVAL;
593 vxlan = netdev_priv(dev);
594
595 spin_lock_bh(&vxlan->hash_lock);
596 for (h = 0; h < FDB_HASH_SIZE; ++h) {
597 hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist) {
598 if (f->vni == vni) {
599 list_for_each_entry(rdst, &f->remotes, list) {
600 rc = vxlan_fdb_notify_one(nb, vxlan,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000601 f, rdst,
602 extack);
Petr Machata4f89f5b2018-12-07 19:55:04 +0000603 if (rc)
604 goto out;
605 }
606 }
607 }
608 }
609
610out:
611 spin_unlock_bh(&vxlan->hash_lock);
612 return rc;
613}
614EXPORT_SYMBOL_GPL(vxlan_fdb_replay);
615
Petr Machatae5ff4b12018-12-07 19:55:06 +0000616void vxlan_fdb_clear_offload(const struct net_device *dev, __be32 vni)
617{
618 struct vxlan_dev *vxlan;
619 struct vxlan_rdst *rdst;
620 struct vxlan_fdb *f;
621 unsigned int h;
622
623 if (!netif_is_vxlan(dev))
624 return;
625 vxlan = netdev_priv(dev);
626
627 spin_lock_bh(&vxlan->hash_lock);
628 for (h = 0; h < FDB_HASH_SIZE; ++h) {
629 hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist)
630 if (f->vni == vni)
631 list_for_each_entry(rdst, &f->remotes, list)
632 rdst->offloaded = false;
633 }
634 spin_unlock_bh(&vxlan->hash_lock);
635}
636EXPORT_SYMBOL_GPL(vxlan_fdb_clear_offload);
637
Thomas Richter906dc182013-07-19 17:20:07 +0200638/* Replace destination of unicast mac */
639static int vxlan_fdb_replace(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100640 union vxlan_addr *ip, __be16 port, __be32 vni,
Petr Machataccdfd4f2019-01-16 23:06:34 +0000641 __u32 ifindex, struct vxlan_rdst *oldrd)
Thomas Richter906dc182013-07-19 17:20:07 +0200642{
643 struct vxlan_rdst *rd;
644
645 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
646 if (rd)
647 return 0;
648
649 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
650 if (!rd)
651 return 0;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100652
Petr Machataccdfd4f2019-01-16 23:06:34 +0000653 *oldrd = *rd;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100654 dst_cache_reset(&rd->dst_cache);
Cong Wange4c7ed42013-08-31 13:44:33 +0800655 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200656 rd->remote_port = port;
657 rd->remote_vni = vni;
658 rd->remote_ifindex = ifindex;
Petr Machata6ad0b5a2018-12-18 13:15:59 +0000659 rd->offloaded = false;
Thomas Richter906dc182013-07-19 17:20:07 +0200660 return 1;
661}
662
David Stevens66817122013-03-15 04:35:51 +0000663/* Add/update destinations for multicast */
664static int vxlan_fdb_append(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100665 union vxlan_addr *ip, __be16 port, __be32 vni,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200666 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000667{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700668 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000669
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300670 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
671 if (rd)
672 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700673
David Stevens66817122013-03-15 04:35:51 +0000674 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
675 if (rd == NULL)
676 return -ENOBUFS;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100677
678 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
679 kfree(rd);
680 return -ENOBUFS;
681 }
682
Cong Wange4c7ed42013-08-31 13:44:33 +0800683 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000684 rd->remote_port = port;
Petr Machata0efe1172018-10-17 08:53:26 +0000685 rd->offloaded = false;
David Stevens66817122013-03-15 04:35:51 +0000686 rd->remote_vni = vni;
687 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700688
689 list_add_tail_rcu(&rd->list, &f->remotes);
690
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200691 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000692 return 1;
693}
694
Tom Herbertdfd86452015-01-12 17:00:38 -0800695static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
696 unsigned int off,
697 struct vxlanhdr *vh, size_t hdrlen,
Jiri Benc54bfd872016-02-16 21:58:58 +0100698 __be32 vni_field,
699 struct gro_remcsum *grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800700 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800701{
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700702 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -0800703
704 if (skb->remcsum_offload)
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700705 return vh;
Tom Herbertdfd86452015-01-12 17:00:38 -0800706
707 if (!NAPI_GRO_CB(skb)->csum_valid)
708 return NULL;
709
Jiri Benc54bfd872016-02-16 21:58:58 +0100710 start = vxlan_rco_start(vni_field);
711 offset = start + vxlan_rco_offset(vni_field);
Tom Herbertdfd86452015-01-12 17:00:38 -0800712
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700713 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
714 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800715
716 skb->remcsum_offload = 1;
717
718 return vh;
719}
720
David Millerd4546c22018-06-24 14:13:49 +0900721static struct sk_buff *vxlan_gro_receive(struct sock *sk,
722 struct list_head *head,
723 struct sk_buff *skb)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200724{
David Millerd4546c22018-06-24 14:13:49 +0900725 struct sk_buff *pp = NULL;
726 struct sk_buff *p;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200727 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800728 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200729 int flush = 1;
Tom Herbert5602c482016-04-05 08:22:53 -0700730 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
Jiri Benc54bfd872016-02-16 21:58:58 +0100731 __be32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800732 struct gro_remcsum grc;
733
734 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200735
736 off_vx = skb_gro_offset(skb);
737 hlen = off_vx + sizeof(*vh);
738 vh = skb_gro_header_fast(skb, off_vx);
739 if (skb_gro_header_hard(skb, hlen)) {
740 vh = skb_gro_header_slow(skb, hlen, off_vx);
741 if (unlikely(!vh))
742 goto out;
743 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200744
Tom Herbertdfd86452015-01-12 17:00:38 -0800745 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
746
Jiri Benc54bfd872016-02-16 21:58:58 +0100747 flags = vh->vx_flags;
Tom Herbertdfd86452015-01-12 17:00:38 -0800748
749 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
750 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Jiri Benc54bfd872016-02-16 21:58:58 +0100751 vh->vx_vni, &grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800752 !!(vs->flags &
753 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800754
755 if (!vh)
756 goto out;
757 }
758
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700759 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
760
David Millerd4546c22018-06-24 14:13:49 +0900761 list_for_each_entry(p, head, list) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200762 if (!NAPI_GRO_CB(p)->same_flow)
763 continue;
764
765 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100766 if (vh->vx_flags != vh2->vx_flags ||
767 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200768 NAPI_GRO_CB(p)->same_flow = 0;
769 continue;
770 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200771 }
772
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200773 pp = call_gro_receive(eth_gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800774 flush = 0;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200775
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200776out:
Sabrina Dubroca603d4cf2018-06-30 17:38:55 +0200777 skb_gro_flush_final_remcsum(skb, pp, flush, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200778
779 return pp;
780}
781
Tom Herbert5602c482016-04-05 08:22:53 -0700782static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200783{
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700784 /* Sets 'skb->inner_mac_header' since we are always called with
785 * 'skb->encapsulation' set.
786 */
Jesse Gross9b174d82014-12-30 19:10:15 -0800787 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200788}
789
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700790static struct vxlan_fdb *vxlan_fdb_alloc(struct vxlan_dev *vxlan,
791 const u8 *mac, __u16 state,
Petr Machata45598c12018-11-21 08:02:36 +0000792 __be32 src_vni, __u16 ndm_flags)
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700793{
794 struct vxlan_fdb *f;
795
796 f = kmalloc(sizeof(*f), GFP_ATOMIC);
797 if (!f)
798 return NULL;
799 f->state = state;
800 f->flags = ndm_flags;
801 f->updated = f->used = jiffies;
802 f->vni = src_vni;
803 INIT_LIST_HEAD(&f->remotes);
804 memcpy(f->eth_addr, mac, ETH_ALEN);
805
806 return f;
807}
808
stephen hemmingerd3428942012-10-01 12:32:35 +0000809static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800810 const u8 *mac, union vxlan_addr *ip,
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700811 __u16 state, __be16 port, __be32 src_vni,
Petr Machata45598c12018-11-21 08:02:36 +0000812 __be32 vni, __u32 ifindex, __u16 ndm_flags,
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700813 struct vxlan_fdb **fdb)
814{
815 struct vxlan_rdst *rd = NULL;
816 struct vxlan_fdb *f;
817 int rc;
818
819 if (vxlan->cfg.addrmax &&
820 vxlan->addrcnt >= vxlan->cfg.addrmax)
821 return -ENOSPC;
822
823 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
824 f = vxlan_fdb_alloc(vxlan, mac, state, src_vni, ndm_flags);
825 if (!f)
826 return -ENOMEM;
827
828 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
829 if (rc < 0) {
830 kfree(f);
831 return rc;
832 }
833
834 ++vxlan->addrcnt;
835 hlist_add_head_rcu(&f->hlist,
836 vxlan_fdb_head(vxlan, mac, src_vni));
837
838 *fdb = f;
839
840 return 0;
841}
842
Petr Machatac2b200e2019-01-16 23:06:30 +0000843static void vxlan_fdb_free(struct rcu_head *head)
844{
845 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
846 struct vxlan_rdst *rd, *nd;
847
848 list_for_each_entry_safe(rd, nd, &f->remotes, list) {
849 dst_cache_destroy(&rd->dst_cache);
850 kfree(rd);
851 }
852 kfree(f);
853}
854
855static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
856 bool do_notify, bool swdev_notify)
857{
858 struct vxlan_rdst *rd;
859
860 netdev_dbg(vxlan->dev, "delete %pM\n", f->eth_addr);
861
862 --vxlan->addrcnt;
863 if (do_notify)
864 list_for_each_entry(rd, &f->remotes, list)
865 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000866 swdev_notify, NULL);
Petr Machatac2b200e2019-01-16 23:06:30 +0000867
868 hlist_del_rcu(&f->hlist);
869 call_rcu(&f->rcu, vxlan_fdb_free);
870}
871
Petr Machatafc4aa1c2019-02-07 12:18:02 +0000872static void vxlan_dst_free(struct rcu_head *head)
873{
874 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
875
876 dst_cache_destroy(&rd->dst_cache);
877 kfree(rd);
878}
879
Petr Machataa76d1ca2019-01-16 23:06:32 +0000880static int vxlan_fdb_update_existing(struct vxlan_dev *vxlan,
881 union vxlan_addr *ip,
882 __u16 state, __u16 flags,
883 __be16 port, __be32 vni,
884 __u32 ifindex, __u16 ndm_flags,
885 struct vxlan_fdb *f,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000886 bool swdev_notify,
887 struct netlink_ext_ack *extack)
Petr Machataa76d1ca2019-01-16 23:06:32 +0000888{
889 __u16 fdb_flags = (ndm_flags & ~NTF_USE);
890 struct vxlan_rdst *rd = NULL;
Petr Machataccdfd4f2019-01-16 23:06:34 +0000891 struct vxlan_rdst oldrd;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000892 int notify = 0;
Petr Machata61f46fe2019-01-16 23:06:38 +0000893 int rc = 0;
894 int err;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000895
896 /* Do not allow an externally learned entry to take over an entry added
897 * by the user.
898 */
899 if (!(fdb_flags & NTF_EXT_LEARNED) ||
900 !(f->flags & NTF_VXLAN_ADDED_BY_USER)) {
901 if (f->state != state) {
902 f->state = state;
903 f->updated = jiffies;
904 notify = 1;
905 }
906 if (f->flags != fdb_flags) {
907 f->flags = fdb_flags;
908 f->updated = jiffies;
909 notify = 1;
910 }
911 }
912
913 if ((flags & NLM_F_REPLACE)) {
914 /* Only change unicasts */
915 if (!(is_multicast_ether_addr(f->eth_addr) ||
916 is_zero_ether_addr(f->eth_addr))) {
917 rc = vxlan_fdb_replace(f, ip, port, vni,
Petr Machataccdfd4f2019-01-16 23:06:34 +0000918 ifindex, &oldrd);
Petr Machataa76d1ca2019-01-16 23:06:32 +0000919 notify |= rc;
920 } else {
921 return -EOPNOTSUPP;
922 }
923 }
924 if ((flags & NLM_F_APPEND) &&
925 (is_multicast_ether_addr(f->eth_addr) ||
926 is_zero_ether_addr(f->eth_addr))) {
927 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
928
929 if (rc < 0)
930 return rc;
931 notify |= rc;
932 }
933
934 if (ndm_flags & NTF_USE)
935 f->used = jiffies;
936
937 if (notify) {
938 if (rd == NULL)
939 rd = first_remote_rtnl(f);
940
Petr Machata61f46fe2019-01-16 23:06:38 +0000941 err = vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000942 swdev_notify, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000943 if (err)
944 goto err_notify;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000945 }
946
947 return 0;
Petr Machata61f46fe2019-01-16 23:06:38 +0000948
949err_notify:
950 if ((flags & NLM_F_REPLACE) && rc)
951 *rd = oldrd;
Petr Machatafc4aa1c2019-02-07 12:18:02 +0000952 else if ((flags & NLM_F_APPEND) && rc) {
Petr Machata61f46fe2019-01-16 23:06:38 +0000953 list_del_rcu(&rd->list);
Petr Machatafc4aa1c2019-02-07 12:18:02 +0000954 call_rcu(&rd->rcu, vxlan_dst_free);
955 }
Petr Machata61f46fe2019-01-16 23:06:38 +0000956 return err;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000957}
958
959static int vxlan_fdb_update_create(struct vxlan_dev *vxlan,
960 const u8 *mac, union vxlan_addr *ip,
961 __u16 state, __u16 flags,
962 __be16 port, __be32 src_vni, __be32 vni,
963 __u32 ifindex, __u16 ndm_flags,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000964 bool swdev_notify,
965 struct netlink_ext_ack *extack)
Petr Machataa76d1ca2019-01-16 23:06:32 +0000966{
967 __u16 fdb_flags = (ndm_flags & ~NTF_USE);
968 struct vxlan_fdb *f;
969 int rc;
970
971 /* Disallow replace to add a multicast entry */
972 if ((flags & NLM_F_REPLACE) &&
973 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
974 return -EOPNOTSUPP;
975
976 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
977 rc = vxlan_fdb_create(vxlan, mac, ip, state, port, src_vni,
978 vni, ifindex, fdb_flags, &f);
979 if (rc < 0)
980 return rc;
981
Petr Machata61f46fe2019-01-16 23:06:38 +0000982 rc = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_NEWNEIGH,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000983 swdev_notify, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000984 if (rc)
985 goto err_notify;
986
Petr Machataa76d1ca2019-01-16 23:06:32 +0000987 return 0;
Petr Machata61f46fe2019-01-16 23:06:38 +0000988
989err_notify:
990 vxlan_fdb_destroy(vxlan, f, false, false);
991 return rc;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000992}
993
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700994/* Add new entry to forwarding table -- assumes lock held */
995static int vxlan_fdb_update(struct vxlan_dev *vxlan,
996 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000997 __u16 state, __u16 flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800998 __be16 port, __be32 src_vni, __be32 vni,
Petr Machata45598c12018-11-21 08:02:36 +0000999 __u32 ifindex, __u16 ndm_flags,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001000 bool swdev_notify,
1001 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00001002{
1003 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +00001004
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001005 f = __vxlan_find_mac(vxlan, mac, src_vni);
stephen hemmingerd3428942012-10-01 12:32:35 +00001006 if (f) {
1007 if (flags & NLM_F_EXCL) {
1008 netdev_dbg(vxlan->dev,
1009 "lost race to create %pM\n", mac);
1010 return -EEXIST;
1011 }
Petr Machata0ec566a2018-11-21 08:02:37 +00001012
Petr Machataa76d1ca2019-01-16 23:06:32 +00001013 return vxlan_fdb_update_existing(vxlan, ip, state, flags, port,
1014 vni, ifindex, ndm_flags, f,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001015 swdev_notify, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00001016 } else {
1017 if (!(flags & NLM_F_CREATE))
1018 return -ENOENT;
1019
Petr Machataa76d1ca2019-01-16 23:06:32 +00001020 return vxlan_fdb_update_create(vxlan, mac, ip, state, flags,
1021 port, src_vni, vni, ifindex,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001022 ndm_flags, swdev_notify, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00001023 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001024}
1025
Lance Richardson35cf2842017-05-29 13:25:57 -04001026static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
Petr Machata0e6160f2018-11-21 08:02:35 +00001027 struct vxlan_rdst *rd, bool swdev_notify)
Lance Richardson35cf2842017-05-29 13:25:57 -04001028{
1029 list_del_rcu(&rd->list);
Petr Machata4c59b7d2019-01-16 23:06:54 +00001030 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH, swdev_notify, NULL);
Lance Richardson35cf2842017-05-29 13:25:57 -04001031 call_rcu(&rd->rcu, vxlan_dst_free);
1032}
1033
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001034static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001035 union vxlan_addr *ip, __be16 *port, __be32 *src_vni,
1036 __be32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001037{
1038 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001039 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001040
1041 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001042 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
1043 if (err)
1044 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001045 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +08001046 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
1047 if (remote->sa.sa_family == AF_INET) {
1048 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
1049 ip->sa.sa_family = AF_INET;
1050#if IS_ENABLED(CONFIG_IPV6)
1051 } else {
1052 ip->sin6.sin6_addr = in6addr_any;
1053 ip->sa.sa_family = AF_INET6;
1054#endif
1055 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001056 }
1057
1058 if (tb[NDA_PORT]) {
1059 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
1060 return -EINVAL;
1061 *port = nla_get_be16(tb[NDA_PORT]);
1062 } else {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001063 *port = vxlan->cfg.dst_port;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001064 }
1065
1066 if (tb[NDA_VNI]) {
1067 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
1068 return -EINVAL;
Jiri Benc54bfd872016-02-16 21:58:58 +01001069 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001070 } else {
1071 *vni = vxlan->default_dst.remote_vni;
1072 }
1073
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001074 if (tb[NDA_SRC_VNI]) {
1075 if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32))
1076 return -EINVAL;
1077 *src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI]));
1078 } else {
1079 *src_vni = vxlan->default_dst.remote_vni;
1080 }
1081
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001082 if (tb[NDA_IFINDEX]) {
1083 struct net_device *tdev;
1084
1085 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
1086 return -EINVAL;
1087 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +08001088 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001089 if (!tdev)
1090 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001091 } else {
1092 *ifindex = 0;
1093 }
1094
1095 return 0;
1096}
1097
stephen hemmingerd3428942012-10-01 12:32:35 +00001098/* Add static entry (via netlink) */
1099static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1100 struct net_device *dev,
Petr Machata87b09842019-01-16 23:06:50 +00001101 const unsigned char *addr, u16 vid, u16 flags,
1102 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00001103{
1104 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001105 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +08001106 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +00001107 __be16 port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001108 __be32 src_vni, vni;
Jiri Benc54bfd872016-02-16 21:58:58 +01001109 u32 ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001110 int err;
1111
1112 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
1113 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
1114 ndm->ndm_state);
1115 return -EINVAL;
1116 }
1117
1118 if (tb[NDA_DST] == NULL)
1119 return -EINVAL;
1120
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001121 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001122 if (err)
1123 return err;
David Stevens66817122013-03-15 04:35:51 +00001124
Mike Rapoport5933a7b2014-04-01 09:23:01 +03001125 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
1126 return -EAFNOSUPPORT;
1127
stephen hemmingerd3428942012-10-01 12:32:35 +00001128 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu25e20e72018-07-04 16:46:30 -07001129 err = vxlan_fdb_update(vxlan, addr, &ip, ndm->ndm_state, flags,
Petr Machata45598c12018-11-21 08:02:36 +00001130 port, src_vni, vni, ifindex,
1131 ndm->ndm_flags | NTF_VXLAN_ADDED_BY_USER,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001132 true, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00001133 spin_unlock_bh(&vxlan->hash_lock);
1134
1135 return err;
1136}
1137
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001138static int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
1139 const unsigned char *addr, union vxlan_addr ip,
Xin Longfc39c382017-11-26 21:19:05 +08001140 __be16 port, __be32 src_vni, __be32 vni,
Petr Machata0e6160f2018-11-21 08:02:35 +00001141 u32 ifindex, bool swdev_notify)
stephen hemmingerd3428942012-10-01 12:32:35 +00001142{
stephen hemmingerd3428942012-10-01 12:32:35 +00001143 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001144 struct vxlan_rdst *rd = NULL;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001145 int err = -ENOENT;
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001146
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001147 f = vxlan_find_mac(vxlan, addr, src_vni);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001148 if (!f)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001149 return err;
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001150
Cong Wange4c7ed42013-08-31 13:44:33 +08001151 if (!vxlan_addr_any(&ip)) {
1152 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001153 if (!rd)
1154 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +00001155 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001156
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001157 /* remove a destination if it's not the only one on the list,
1158 * otherwise destroy the fdb entry
1159 */
1160 if (rd && !list_is_singular(&f->remotes)) {
Petr Machata0e6160f2018-11-21 08:02:35 +00001161 vxlan_fdb_dst_destroy(vxlan, f, rd, swdev_notify);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001162 goto out;
1163 }
1164
Petr Machata0e6160f2018-11-21 08:02:35 +00001165 vxlan_fdb_destroy(vxlan, f, true, swdev_notify);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001166
1167out:
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001168 return 0;
1169}
1170
1171/* Delete entry (via netlink) */
1172static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
1173 struct net_device *dev,
1174 const unsigned char *addr, u16 vid)
1175{
1176 struct vxlan_dev *vxlan = netdev_priv(dev);
1177 union vxlan_addr ip;
1178 __be32 src_vni, vni;
1179 __be16 port;
1180 u32 ifindex;
1181 int err;
1182
1183 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
1184 if (err)
1185 return err;
1186
1187 spin_lock_bh(&vxlan->hash_lock);
Petr Machata0e6160f2018-11-21 08:02:35 +00001188 err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex,
1189 true);
stephen hemmingerd3428942012-10-01 12:32:35 +00001190 spin_unlock_bh(&vxlan->hash_lock);
1191
1192 return err;
1193}
1194
1195/* Dump forwarding table */
1196static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04001197 struct net_device *dev,
Roopa Prabhud2976532016-08-30 21:56:45 -07001198 struct net_device *filter_dev, int *idx)
stephen hemmingerd3428942012-10-01 12:32:35 +00001199{
1200 struct vxlan_dev *vxlan = netdev_priv(dev);
1201 unsigned int h;
Roopa Prabhud2976532016-08-30 21:56:45 -07001202 int err = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001203
1204 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1205 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +00001206
Sasha Levinb67bfe02013-02-27 17:06:00 -08001207 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +00001208 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +00001209
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001210 list_for_each_entry_rcu(rd, &f->remotes, list) {
Roopa Prabhud2976532016-08-30 21:56:45 -07001211 if (*idx < cb->args[2])
Atzm Watanabe07a51cd2015-08-10 23:39:09 +09001212 goto skip;
1213
David Stevens66817122013-03-15 04:35:51 +00001214 err = vxlan_fdb_info(skb, vxlan, f,
1215 NETLINK_CB(cb->skb).portid,
1216 cb->nlh->nlmsg_seq,
1217 RTM_NEWNEIGH,
1218 NLM_F_MULTI, rd);
Roopa Prabhud2976532016-08-30 21:56:45 -07001219 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001220 goto out;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001221skip:
Roopa Prabhud2976532016-08-30 21:56:45 -07001222 *idx += 1;
Atzm Watanabe07a51cd2015-08-10 23:39:09 +09001223 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001224 }
1225 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001226out:
Roopa Prabhud2976532016-08-30 21:56:45 -07001227 return err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001228}
1229
Roopa Prabhu474c3c82018-12-15 22:35:10 -08001230static int vxlan_fdb_get(struct sk_buff *skb,
1231 struct nlattr *tb[],
1232 struct net_device *dev,
1233 const unsigned char *addr,
1234 u16 vid, u32 portid, u32 seq,
1235 struct netlink_ext_ack *extack)
1236{
1237 struct vxlan_dev *vxlan = netdev_priv(dev);
1238 struct vxlan_fdb *f;
1239 __be32 vni;
1240 int err;
1241
1242 if (tb[NDA_VNI])
1243 vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
1244 else
1245 vni = vxlan->default_dst.remote_vni;
1246
1247 rcu_read_lock();
1248
1249 f = __vxlan_find_mac(vxlan, addr, vni);
1250 if (!f) {
1251 NL_SET_ERR_MSG(extack, "Fdb entry not found");
1252 err = -ENOENT;
1253 goto errout;
1254 }
1255
1256 err = vxlan_fdb_info(skb, vxlan, f, portid, seq,
1257 RTM_NEWNEIGH, 0, first_remote_rcu(f));
1258errout:
1259 rcu_read_unlock();
1260 return err;
1261}
1262
stephen hemmingerd3428942012-10-01 12:32:35 +00001263/* Watch incoming packets to learn mapping between Ethernet address
1264 * and Tunnel endpoint.
Simon Hormanc4b49512015-04-02 11:17:58 +09001265 * Return true if packet is bogus and should be dropped.
stephen hemmingerd3428942012-10-01 12:32:35 +00001266 */
stephen hemminger26a41ae62013-06-17 12:09:58 -07001267static bool vxlan_snoop(struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001268 union vxlan_addr *src_ip, const u8 *src_mac,
Matthias Schiffer87613de2017-06-19 10:03:59 +02001269 u32 src_ifindex, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +00001270{
1271 struct vxlan_dev *vxlan = netdev_priv(dev);
1272 struct vxlan_fdb *f;
Matthias Schiffer87613de2017-06-19 10:03:59 +02001273 u32 ifindex = 0;
1274
1275#if IS_ENABLED(CONFIG_IPV6)
1276 if (src_ip->sa.sa_family == AF_INET6 &&
1277 (ipv6_addr_type(&src_ip->sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL))
1278 ifindex = src_ifindex;
1279#endif
stephen hemmingerd3428942012-10-01 12:32:35 +00001280
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001281 f = vxlan_find_mac(vxlan, src_mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +00001282 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -07001283 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001284
Matthias Schiffer87613de2017-06-19 10:03:59 +02001285 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip) &&
1286 rdst->remote_ifindex == ifindex))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001287 return false;
1288
1289 /* Don't migrate static entries, drop packets */
Roopa Prabhue0090a92017-06-11 16:32:50 -07001290 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001291 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +00001292
1293 if (net_ratelimit())
1294 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +08001295 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +01001296 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +00001297
Cong Wange4c7ed42013-08-31 13:44:33 +08001298 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001299 f->updated = jiffies;
Petr Machata4c59b7d2019-01-16 23:06:54 +00001300 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH, true, NULL);
stephen hemmingerd3428942012-10-01 12:32:35 +00001301 } else {
1302 /* learned new entry */
1303 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001304
1305 /* close off race between vxlan_flush and incoming packets */
1306 if (netif_running(dev))
Roopa Prabhu25e20e72018-07-04 16:46:30 -07001307 vxlan_fdb_update(vxlan, src_mac, src_ip,
stephen hemminger3bf74b12013-06-17 12:09:57 -07001308 NUD_REACHABLE,
1309 NLM_F_EXCL|NLM_F_CREATE,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001310 vxlan->cfg.dst_port,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001311 vni,
stephen hemminger3bf74b12013-06-17 12:09:57 -07001312 vxlan->default_dst.remote_vni,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001313 ifindex, NTF_SELF, true, NULL);
stephen hemmingerd3428942012-10-01 12:32:35 +00001314 spin_unlock(&vxlan->hash_lock);
1315 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001316
1317 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001318}
1319
stephen hemmingerd3428942012-10-01 12:32:35 +00001320/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001321static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001322{
stephen hemminger553675f2013-05-16 11:35:20 +00001323 struct vxlan_dev *vxlan;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001324 struct vxlan_sock *sock4;
Arnd Bergmann4053ab12016-11-07 22:09:07 +01001325#if IS_ENABLED(CONFIG_IPV6)
1326 struct vxlan_sock *sock6;
1327#endif
Jiri Bencb1be00a2015-09-24 13:50:02 +02001328 unsigned short family = dev->default_dst.remote_ip.sa.sa_family;
stephen hemmingerd3428942012-10-01 12:32:35 +00001329
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001330 sock4 = rtnl_dereference(dev->vn4_sock);
1331
Gao feng95ab0992013-12-10 16:37:33 +08001332 /* The vxlan_sock is only used by dev, leaving group has
1333 * no effect on other vxlan devices.
1334 */
Reshetova, Elena66af8462017-07-04 15:52:59 +03001335 if (family == AF_INET && sock4 && refcount_read(&sock4->refcnt) == 1)
Gao feng95ab0992013-12-10 16:37:33 +08001336 return false;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001337#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001338 sock6 = rtnl_dereference(dev->vn6_sock);
Reshetova, Elena66af8462017-07-04 15:52:59 +03001339 if (family == AF_INET6 && sock6 && refcount_read(&sock6->refcnt) == 1)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001340 return false;
1341#endif
Gao feng95ab0992013-12-10 16:37:33 +08001342
stephen hemminger553675f2013-05-16 11:35:20 +00001343 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001344 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001345 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001346
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001347 if (family == AF_INET &&
1348 rtnl_dereference(vxlan->vn4_sock) != sock4)
Gao feng95ab0992013-12-10 16:37:33 +08001349 continue;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001350#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001351 if (family == AF_INET6 &&
1352 rtnl_dereference(vxlan->vn6_sock) != sock6)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001353 continue;
1354#endif
Gao feng95ab0992013-12-10 16:37:33 +08001355
1356 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1357 &dev->default_dst.remote_ip))
1358 continue;
1359
1360 if (vxlan->default_dst.remote_ifindex !=
1361 dev->default_dst.remote_ifindex)
1362 continue;
1363
1364 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001365 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001366
1367 return false;
1368}
1369
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001370static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001371{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001372 struct vxlan_net *vn;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001373
Jiri Bencb1be00a2015-09-24 13:50:02 +02001374 if (!vs)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001375 return false;
Reshetova, Elena66af8462017-07-04 15:52:59 +03001376 if (!refcount_dec_and_test(&vs->refcnt))
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001377 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001378
Jiri Bencb1be00a2015-09-24 13:50:02 +02001379 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001380 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001381 hlist_del_rcu(&vs->hlist);
Alexander Duycke7b3db52016-06-16 12:20:52 -07001382 udp_tunnel_notify_del_rx_port(vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07001383 (vs->flags & VXLAN_F_GPE) ?
1384 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07001385 UDP_TUNNEL_TYPE_VXLAN);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001386 spin_unlock(&vn->sock_lock);
1387
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001388 return true;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001389}
1390
Jiri Bencb1be00a2015-09-24 13:50:02 +02001391static void vxlan_sock_release(struct vxlan_dev *vxlan)
1392{
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001393 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001394#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001395 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1396
Mark Bloch57d88182017-06-07 14:36:58 +03001397 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001398#endif
1399
Mark Bloch57d88182017-06-07 14:36:58 +03001400 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001401 synchronize_net();
1402
Mark Blocha53cb292017-06-02 03:24:08 +03001403 vxlan_vs_del_dev(vxlan);
1404
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001405 if (__vxlan_sock_release_prep(sock4)) {
1406 udp_tunnel_sock_release(sock4->sock);
1407 kfree(sock4);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001408 }
1409
1410#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001411 if (__vxlan_sock_release_prep(sock6)) {
1412 udp_tunnel_sock_release(sock6->sock);
1413 kfree(sock6);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001414 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02001415#endif
1416}
1417
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001418/* Update multicast group membership when first VNI on
Simon Hormanc4b49512015-04-02 11:17:58 +09001419 * multicast address is brought up
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001420 */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001421static int vxlan_igmp_join(struct vxlan_dev *vxlan)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001422{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001423 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001424 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1425 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001426 int ret = -EINVAL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001427
Cong Wange4c7ed42013-08-31 13:44:33 +08001428 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001429 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001430 struct ip_mreqn mreq = {
1431 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1432 .imr_ifindex = ifindex,
1433 };
1434
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001435 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001436 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001437 ret = ip_mc_join_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001438 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001439#if IS_ENABLED(CONFIG_IPV6)
1440 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001441 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1442
1443 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001444 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001445 ret = ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1446 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001447 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001448#endif
1449 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001450
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001451 return ret;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001452}
1453
1454/* Inverse of vxlan_igmp_join when last VNI is brought down */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001455static int vxlan_igmp_leave(struct vxlan_dev *vxlan)
stephen hemminger3fc2de22013-07-18 08:40:15 -07001456{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001457 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001458 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1459 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001460 int ret = -EINVAL;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001461
Cong Wange4c7ed42013-08-31 13:44:33 +08001462 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001463 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001464 struct ip_mreqn mreq = {
1465 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1466 .imr_ifindex = ifindex,
1467 };
1468
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001469 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001470 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001471 ret = ip_mc_leave_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001472 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001473#if IS_ENABLED(CONFIG_IPV6)
1474 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001475 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1476
1477 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001478 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001479 ret = ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1480 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001481 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001482#endif
1483 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001484
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001485 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00001486}
1487
Jiri Bencf14eceb2016-02-16 21:59:01 +01001488static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1489 struct sk_buff *skb, u32 vxflags)
Tom Herbertdfd86452015-01-12 17:00:38 -08001490{
Jiri Benc7d34fa72016-03-21 17:50:05 +01001491 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -08001492
Jiri Bencf14eceb2016-02-16 21:59:01 +01001493 if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1494 goto out;
Tom Herbertb7fe10e2015-08-19 17:07:32 -07001495
Jiri Bencf14eceb2016-02-16 21:59:01 +01001496 start = vxlan_rco_start(unparsed->vx_vni);
1497 offset = start + vxlan_rco_offset(unparsed->vx_vni);
Tom Herbertdfd86452015-01-12 17:00:38 -08001498
Jiri Benc7d34fa72016-03-21 17:50:05 +01001499 if (!pskb_may_pull(skb, offset + sizeof(u16)))
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001500 return false;
Tom Herbertdfd86452015-01-12 17:00:38 -08001501
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001502 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1503 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
Jiri Bencf14eceb2016-02-16 21:59:01 +01001504out:
1505 unparsed->vx_flags &= ~VXLAN_HF_RCO;
1506 unparsed->vx_vni &= VXLAN_VNI_MASK;
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001507 return true;
Tom Herbertdfd86452015-01-12 17:00:38 -08001508}
1509
Jiri Bencf14eceb2016-02-16 21:59:01 +01001510static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
Jiri Benc64f87d32016-02-23 18:02:55 +01001511 struct sk_buff *skb, u32 vxflags,
Jiri Benc10a5af22016-02-23 18:02:59 +01001512 struct vxlan_metadata *md)
Jiri Benc3288af02016-02-16 21:59:00 +01001513{
Jiri Bencf14eceb2016-02-16 21:59:01 +01001514 struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
Jiri Benc10a5af22016-02-23 18:02:59 +01001515 struct metadata_dst *tun_dst;
Jiri Benc3288af02016-02-16 21:59:00 +01001516
Jiri Bencf14eceb2016-02-16 21:59:01 +01001517 if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1518 goto out;
1519
Jiri Benc3288af02016-02-16 21:59:00 +01001520 md->gbp = ntohs(gbp->policy_id);
1521
Jiri Benc10a5af22016-02-23 18:02:59 +01001522 tun_dst = (struct metadata_dst *)skb_dst(skb);
David S. Miller810813c2016-03-08 12:34:12 -05001523 if (tun_dst) {
Jiri Benc3288af02016-02-16 21:59:00 +01001524 tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
David S. Miller810813c2016-03-08 12:34:12 -05001525 tun_dst->u.tun_info.options_len = sizeof(*md);
1526 }
Jiri Benc3288af02016-02-16 21:59:00 +01001527 if (gbp->dont_learn)
1528 md->gbp |= VXLAN_GBP_DONT_LEARN;
1529
1530 if (gbp->policy_applied)
1531 md->gbp |= VXLAN_GBP_POLICY_APPLIED;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001532
Jiri Benc64f87d32016-02-23 18:02:55 +01001533 /* In flow-based mode, GBP is carried in dst_metadata */
1534 if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1535 skb->mark = md->gbp;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001536out:
1537 unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
Jiri Benc3288af02016-02-16 21:59:00 +01001538}
1539
Jiri Bence1e53142016-04-05 14:47:13 +02001540static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed,
Jiri Benc61618ee2016-04-11 17:06:08 +02001541 __be16 *protocol,
Jiri Bence1e53142016-04-05 14:47:13 +02001542 struct sk_buff *skb, u32 vxflags)
1543{
1544 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed;
1545
1546 /* Need to have Next Protocol set for interfaces in GPE mode. */
1547 if (!gpe->np_applied)
1548 return false;
1549 /* "The initial version is 0. If a receiver does not support the
1550 * version indicated it MUST drop the packet.
1551 */
1552 if (gpe->version != 0)
1553 return false;
1554 /* "When the O bit is set to 1, the packet is an OAM packet and OAM
1555 * processing MUST occur." However, we don't implement OAM
1556 * processing, thus drop the packet.
1557 */
1558 if (gpe->oam_flag)
1559 return false;
1560
Jiri Bencfa20e0e2017-08-28 21:43:22 +02001561 *protocol = tun_p_to_eth_p(gpe->next_protocol);
1562 if (!*protocol)
Jiri Bence1e53142016-04-05 14:47:13 +02001563 return false;
Jiri Bence1e53142016-04-05 14:47:13 +02001564
1565 unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS;
1566 return true;
1567}
1568
Jiri Benc1ab016e2016-02-23 18:02:56 +01001569static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1570 struct vxlan_sock *vs,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001571 struct sk_buff *skb, __be32 vni)
Thomas Graf614732e2015-07-21 10:44:06 +02001572{
Thomas Graf614732e2015-07-21 10:44:06 +02001573 union vxlan_addr saddr;
Matthias Schiffer87613de2017-06-19 10:03:59 +02001574 u32 ifindex = skb->dev->ifindex;
Thomas Graf614732e2015-07-21 10:44:06 +02001575
Thomas Graf614732e2015-07-21 10:44:06 +02001576 skb_reset_mac_header(skb);
Thomas Graf614732e2015-07-21 10:44:06 +02001577 skb->protocol = eth_type_trans(skb, vxlan->dev);
1578 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1579
1580 /* Ignore packet loops (and multicast echo) */
1581 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001582 return false;
Thomas Graf614732e2015-07-21 10:44:06 +02001583
Jiri Benc760c6802016-02-23 18:02:57 +01001584 /* Get address from the outer IP header */
Jiri Bencce212d02015-12-07 16:29:08 +01001585 if (vxlan_get_sk_family(vs) == AF_INET) {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001586 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001587 saddr.sa.sa_family = AF_INET;
1588#if IS_ENABLED(CONFIG_IPV6)
1589 } else {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001590 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001591 saddr.sa.sa_family = AF_INET6;
1592#endif
1593 }
1594
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001595 if ((vxlan->cfg.flags & VXLAN_F_LEARN) &&
Matthias Schiffer87613de2017-06-19 10:03:59 +02001596 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, ifindex, vni))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001597 return false;
1598
1599 return true;
1600}
1601
Jiri Benc760c6802016-02-23 18:02:57 +01001602static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1603 struct sk_buff *skb)
1604{
1605 int err = 0;
1606
1607 if (vxlan_get_sk_family(vs) == AF_INET)
1608 err = IP_ECN_decapsulate(oiph, skb);
1609#if IS_ENABLED(CONFIG_IPV6)
1610 else
1611 err = IP6_ECN_decapsulate(oiph, skb);
1612#endif
1613
1614 if (unlikely(err) && log_ecn_error) {
1615 if (vxlan_get_sk_family(vs) == AF_INET)
1616 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1617 &((struct iphdr *)oiph)->saddr,
1618 ((struct iphdr *)oiph)->tos);
1619 else
1620 net_info_ratelimited("non-ECT from %pI6\n",
1621 &((struct ipv6hdr *)oiph)->saddr);
1622 }
1623 return err <= 1;
1624}
1625
stephen hemmingerd3428942012-10-01 12:32:35 +00001626/* Callback from net/ipv4/udp.c to receive packets */
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001627static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
stephen hemmingerd3428942012-10-01 12:32:35 +00001628{
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001629 struct pcpu_sw_netstats *stats;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001630 struct vxlan_dev *vxlan;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001631 struct vxlan_sock *vs;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001632 struct vxlanhdr unparsed;
Thomas Grafee122c72015-07-21 10:43:58 +02001633 struct vxlan_metadata _md;
1634 struct vxlan_metadata *md = &_md;
Jiri Benc61618ee2016-04-11 17:06:08 +02001635 __be16 protocol = htons(ETH_P_TEB);
Jiri Bence1e53142016-04-05 14:47:13 +02001636 bool raw_proto = false;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001637 void *oiph;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001638 __be32 vni = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001639
Jiri Bence1e53142016-04-05 14:47:13 +02001640 /* Need UDP and VXLAN header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001641 if (!pskb_may_pull(skb, VXLAN_HLEN))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001642 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001643
Jiri Bencf14eceb2016-02-16 21:59:01 +01001644 unparsed = *vxlan_hdr(skb);
Jiri Benc288b01c2016-02-16 21:59:02 +01001645 /* VNI flag always required to be set */
1646 if (!(unparsed.vx_flags & VXLAN_HF_VNI)) {
1647 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1648 ntohl(vxlan_hdr(skb)->vx_flags),
1649 ntohl(vxlan_hdr(skb)->vx_vni));
1650 /* Return non vxlan pkt */
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001651 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001652 }
Jiri Benc288b01c2016-02-16 21:59:02 +01001653 unparsed.vx_flags &= ~VXLAN_HF_VNI;
1654 unparsed.vx_vni &= ~VXLAN_VNI_MASK;
stephen hemmingerd3428942012-10-01 12:32:35 +00001655
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001656 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001657 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001658 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001659
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001660 vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
1661
Matthias Schiffer49f810f2017-06-19 10:04:00 +02001662 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni);
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001663 if (!vxlan)
1664 goto drop;
1665
Jiri Bence1e53142016-04-05 14:47:13 +02001666 /* For backwards compatibility, only allow reserved fields to be
1667 * used by VXLAN extensions if explicitly requested.
1668 */
1669 if (vs->flags & VXLAN_F_GPE) {
1670 if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags))
1671 goto drop;
1672 raw_proto = true;
1673 }
1674
1675 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1676 !net_eq(vxlan->net, dev_net(vxlan->dev))))
1677 goto drop;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001678
Thomas Grafee122c72015-07-21 10:43:58 +02001679 if (vxlan_collect_metadata(vs)) {
Jiri Benc10a5af22016-02-23 18:02:59 +01001680 struct metadata_dst *tun_dst;
Jiri Benc07dabf22016-02-18 19:19:29 +01001681
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001682 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
Amir Vadaid817f432016-09-08 16:23:45 +03001683 key32_to_tunnel_id(vni), sizeof(*md));
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001684
Thomas Grafee122c72015-07-21 10:43:58 +02001685 if (!tun_dst)
1686 goto drop;
1687
Geert Uytterhoeven0f1b7352015-09-04 12:49:32 +02001688 md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
Jiri Benc10a5af22016-02-23 18:02:59 +01001689
1690 skb_dst_set(skb, (struct dst_entry *)tun_dst);
Thomas Grafee122c72015-07-21 10:43:58 +02001691 } else {
1692 memset(md, 0, sizeof(*md));
1693 }
1694
Jiri Bencf14eceb2016-02-16 21:59:01 +01001695 if (vs->flags & VXLAN_F_REMCSUM_RX)
1696 if (!vxlan_remcsum(&unparsed, skb, vs->flags))
1697 goto drop;
1698 if (vs->flags & VXLAN_F_GBP)
Jiri Benc10a5af22016-02-23 18:02:59 +01001699 vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001700 /* Note that GBP and GPE can never be active together. This is
1701 * ensured in vxlan_dev_configure.
1702 */
Thomas Graf35114942015-01-15 03:53:55 +01001703
Jiri Bencf14eceb2016-02-16 21:59:01 +01001704 if (unparsed.vx_flags || unparsed.vx_vni) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001705 /* If there are any unprocessed flags remaining treat
1706 * this as a malformed packet. This behavior diverges from
1707 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1708 * in reserved fields are to be ignored. The approach here
Simon Hormanc4b49512015-04-02 11:17:58 +09001709 * maintains compatibility with previous stack code, and also
Tom Herbert3bf39472015-01-08 12:31:18 -08001710 * is more robust and provides a little more security in
1711 * adding extensions to VXLAN.
1712 */
Jiri Benc288b01c2016-02-16 21:59:02 +01001713 goto drop;
Tom Herbert3bf39472015-01-08 12:31:18 -08001714 }
1715
Jiri Bence1e53142016-04-05 14:47:13 +02001716 if (!raw_proto) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001717 if (!vxlan_set_mac(vxlan, vs, skb, vni))
Jiri Bence1e53142016-04-05 14:47:13 +02001718 goto drop;
1719 } else {
Jiri Benc8be0cfa2016-05-13 10:48:42 +02001720 skb_reset_mac_header(skb);
Jiri Bence1e53142016-04-05 14:47:13 +02001721 skb->dev = vxlan->dev;
1722 skb->pkt_type = PACKET_HOST;
1723 }
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001724
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001725 oiph = skb_network_header(skb);
1726 skb_reset_network_header(skb);
1727
1728 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1729 ++vxlan->dev->stats.rx_frame_errors;
1730 ++vxlan->dev->stats.rx_errors;
1731 goto drop;
1732 }
1733
1734 stats = this_cpu_ptr(vxlan->dev->tstats);
1735 u64_stats_update_begin(&stats->syncp);
1736 stats->rx_packets++;
1737 stats->rx_bytes += skb->len;
1738 u64_stats_update_end(&stats->syncp);
1739
1740 gro_cells_receive(&vxlan->gro_cells, skb);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001741 return 0;
1742
1743drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001744 /* Consume bad packet */
1745 kfree_skb(skb);
1746 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001747}
1748
Stefano Brivioc3a43b92018-11-08 12:19:15 +01001749/* Callback from net/ipv{4,6}/udp.c to check that we have a VNI for errors */
1750static int vxlan_err_lookup(struct sock *sk, struct sk_buff *skb)
1751{
1752 struct vxlan_dev *vxlan;
1753 struct vxlan_sock *vs;
1754 struct vxlanhdr *hdr;
1755 __be32 vni;
1756
1757 if (skb->len < VXLAN_HLEN)
1758 return -EINVAL;
1759
1760 hdr = vxlan_hdr(skb);
1761
1762 if (!(hdr->vx_flags & VXLAN_HF_VNI))
1763 return -EINVAL;
1764
1765 vs = rcu_dereference_sk_user_data(sk);
1766 if (!vs)
1767 return -ENOENT;
1768
1769 vni = vxlan_vni(hdr->vx_vni);
1770 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni);
1771 if (!vxlan)
1772 return -ENOENT;
1773
1774 return 0;
1775}
1776
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001777static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
David Stevense4f67ad2012-11-20 02:50:14 +00001778{
1779 struct vxlan_dev *vxlan = netdev_priv(dev);
1780 struct arphdr *parp;
1781 u8 *arpptr, *sha;
1782 __be32 sip, tip;
1783 struct neighbour *n;
1784
1785 if (dev->flags & IFF_NOARP)
1786 goto out;
1787
1788 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1789 dev->stats.tx_dropped++;
1790 goto out;
1791 }
1792 parp = arp_hdr(skb);
1793
1794 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1795 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1796 parp->ar_pro != htons(ETH_P_IP) ||
1797 parp->ar_op != htons(ARPOP_REQUEST) ||
1798 parp->ar_hln != dev->addr_len ||
1799 parp->ar_pln != 4)
1800 goto out;
1801 arpptr = (u8 *)parp + sizeof(struct arphdr);
1802 sha = arpptr;
1803 arpptr += dev->addr_len; /* sha */
1804 memcpy(&sip, arpptr, sizeof(sip));
1805 arpptr += sizeof(sip);
1806 arpptr += dev->addr_len; /* tha */
1807 memcpy(&tip, arpptr, sizeof(tip));
1808
1809 if (ipv4_is_loopback(tip) ||
1810 ipv4_is_multicast(tip))
1811 goto out;
1812
1813 n = neigh_lookup(&arp_tbl, &tip, dev);
1814
1815 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001816 struct vxlan_fdb *f;
1817 struct sk_buff *reply;
1818
1819 if (!(n->nud_state & NUD_CONNECTED)) {
1820 neigh_release(n);
1821 goto out;
1822 }
1823
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001824 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wange4c7ed42013-08-31 13:44:33 +08001825 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001826 /* bridge-local neighbor */
1827 neigh_release(n);
1828 goto out;
1829 }
1830
1831 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1832 n->ha, sha);
1833
1834 neigh_release(n);
1835
David Stevens73461352014-03-18 12:32:29 -04001836 if (reply == NULL)
1837 goto out;
1838
David Stevense4f67ad2012-11-20 02:50:14 +00001839 skb_reset_mac_header(reply);
1840 __skb_pull(reply, skb_network_offset(reply));
1841 reply->ip_summed = CHECKSUM_UNNECESSARY;
1842 reply->pkt_type = PACKET_HOST;
1843
1844 if (netif_rx_ni(reply) == NET_RX_DROP)
1845 dev->stats.rx_dropped++;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001846 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001847 union vxlan_addr ipa = {
1848 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001849 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001850 };
1851
1852 vxlan_ip_miss(dev, &ipa);
1853 }
David Stevense4f67ad2012-11-20 02:50:14 +00001854out:
1855 consume_skb(skb);
1856 return NETDEV_TX_OK;
1857}
1858
Cong Wangf564f452013-08-31 13:44:36 +08001859#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001860static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1861 struct neighbour *n, bool isrouter)
1862{
1863 struct net_device *dev = request->dev;
1864 struct sk_buff *reply;
1865 struct nd_msg *ns, *na;
1866 struct ipv6hdr *pip6;
1867 u8 *daddr;
1868 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1869 int ns_olen;
1870 int i, len;
1871
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001872 if (dev == NULL || !pskb_may_pull(request, request->len))
David Stevens4b29dba2014-03-24 10:39:58 -04001873 return NULL;
1874
1875 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1876 sizeof(*na) + na_olen + dev->needed_tailroom;
1877 reply = alloc_skb(len, GFP_ATOMIC);
1878 if (reply == NULL)
1879 return NULL;
1880
1881 reply->protocol = htons(ETH_P_IPV6);
1882 reply->dev = dev;
1883 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1884 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001885 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001886
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001887 ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
David Stevens4b29dba2014-03-24 10:39:58 -04001888
1889 daddr = eth_hdr(request)->h_source;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001890 ns_olen = request->len - skb_network_offset(request) -
1891 sizeof(struct ipv6hdr) - sizeof(*ns);
David Stevens4b29dba2014-03-24 10:39:58 -04001892 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1893 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1894 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1895 break;
1896 }
1897 }
1898
1899 /* Ethernet header */
1900 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1901 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1902 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1903 reply->protocol = htons(ETH_P_IPV6);
1904
1905 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001906 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001907 skb_put(reply, sizeof(struct ipv6hdr));
1908
1909 /* IPv6 header */
1910
1911 pip6 = ipv6_hdr(reply);
1912 memset(pip6, 0, sizeof(struct ipv6hdr));
1913 pip6->version = 6;
1914 pip6->priority = ipv6_hdr(request)->priority;
1915 pip6->nexthdr = IPPROTO_ICMPV6;
1916 pip6->hop_limit = 255;
1917 pip6->daddr = ipv6_hdr(request)->saddr;
1918 pip6->saddr = *(struct in6_addr *)n->primary_key;
1919
1920 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001921 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001922
David Stevens4b29dba2014-03-24 10:39:58 -04001923 /* Neighbor Advertisement */
Johannes Bergb080db52017-06-16 14:29:19 +02001924 na = skb_put_zero(reply, sizeof(*na) + na_olen);
David Stevens4b29dba2014-03-24 10:39:58 -04001925 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1926 na->icmph.icmp6_router = isrouter;
1927 na->icmph.icmp6_override = 1;
1928 na->icmph.icmp6_solicited = 1;
1929 na->target = ns->target;
1930 ether_addr_copy(&na->opt[2], n->ha);
1931 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1932 na->opt[1] = na_olen >> 3;
1933
1934 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1935 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1936 csum_partial(na, sizeof(*na)+na_olen, 0));
1937
1938 pip6->payload_len = htons(sizeof(*na)+na_olen);
1939
1940 skb_push(reply, sizeof(struct ipv6hdr));
1941
1942 reply->ip_summed = CHECKSUM_UNNECESSARY;
1943
1944 return reply;
1945}
1946
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001947static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
Cong Wangf564f452013-08-31 13:44:36 +08001948{
1949 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu8dcd81a2017-02-20 08:41:16 -08001950 const struct in6_addr *daddr;
Xin Long8bff36852017-11-11 19:58:50 +08001951 const struct ipv6hdr *iphdr;
David Stevens4b29dba2014-03-24 10:39:58 -04001952 struct inet6_dev *in6_dev;
Xin Long8bff36852017-11-11 19:58:50 +08001953 struct neighbour *n;
1954 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001955
1956 in6_dev = __in6_dev_get(dev);
1957 if (!in6_dev)
1958 goto out;
1959
Cong Wangf564f452013-08-31 13:44:36 +08001960 iphdr = ipv6_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001961 daddr = &iphdr->daddr;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001962 msg = (struct nd_msg *)(iphdr + 1);
Cong Wangf564f452013-08-31 13:44:36 +08001963
David Stevens4b29dba2014-03-24 10:39:58 -04001964 if (ipv6_addr_loopback(daddr) ||
1965 ipv6_addr_is_multicast(&msg->target))
1966 goto out;
1967
1968 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001969
1970 if (n) {
1971 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001972 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001973
1974 if (!(n->nud_state & NUD_CONNECTED)) {
1975 neigh_release(n);
1976 goto out;
1977 }
1978
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001979 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wangf564f452013-08-31 13:44:36 +08001980 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1981 /* bridge-local neighbor */
1982 neigh_release(n);
1983 goto out;
1984 }
1985
David Stevens4b29dba2014-03-24 10:39:58 -04001986 reply = vxlan_na_create(skb, n,
1987 !!(f ? f->flags & NTF_ROUTER : 0));
1988
Cong Wangf564f452013-08-31 13:44:36 +08001989 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001990
1991 if (reply == NULL)
1992 goto out;
1993
1994 if (netif_rx_ni(reply) == NET_RX_DROP)
1995 dev->stats.rx_dropped++;
1996
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001997 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001998 union vxlan_addr ipa = {
1999 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002000 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04002001 };
2002
Cong Wangf564f452013-08-31 13:44:36 +08002003 vxlan_ip_miss(dev, &ipa);
2004 }
2005
2006out:
2007 consume_skb(skb);
2008 return NETDEV_TX_OK;
2009}
2010#endif
2011
David Stevense4f67ad2012-11-20 02:50:14 +00002012static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
2013{
2014 struct vxlan_dev *vxlan = netdev_priv(dev);
2015 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00002016
2017 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
2018 return false;
2019
2020 n = NULL;
2021 switch (ntohs(eth_hdr(skb)->h_proto)) {
2022 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08002023 {
2024 struct iphdr *pip;
2025
David Stevense4f67ad2012-11-20 02:50:14 +00002026 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
2027 return false;
2028 pip = ip_hdr(skb);
2029 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002030 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08002031 union vxlan_addr ipa = {
2032 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002033 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08002034 };
2035
2036 vxlan_ip_miss(dev, &ipa);
2037 return false;
2038 }
2039
David Stevense4f67ad2012-11-20 02:50:14 +00002040 break;
Cong Wange15a00a2013-08-31 13:44:34 +08002041 }
2042#if IS_ENABLED(CONFIG_IPV6)
2043 case ETH_P_IPV6:
2044 {
2045 struct ipv6hdr *pip6;
2046
2047 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
2048 return false;
2049 pip6 = ipv6_hdr(skb);
2050 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002051 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange15a00a2013-08-31 13:44:34 +08002052 union vxlan_addr ipa = {
2053 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002054 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08002055 };
2056
2057 vxlan_ip_miss(dev, &ipa);
2058 return false;
2059 }
2060
2061 break;
2062 }
2063#endif
David Stevense4f67ad2012-11-20 02:50:14 +00002064 default:
2065 return false;
2066 }
2067
2068 if (n) {
2069 bool diff;
2070
Joe Perches7367d0b2013-09-01 11:51:23 -07002071 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00002072 if (diff) {
2073 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
2074 dev->addr_len);
2075 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
2076 }
2077 neigh_release(n);
2078 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08002079 }
2080
David Stevense4f67ad2012-11-20 02:50:14 +00002081 return false;
2082}
2083
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002084static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01002085 struct vxlan_metadata *md)
2086{
2087 struct vxlanhdr_gbp *gbp;
2088
Thomas Grafdb79a622015-02-04 17:00:04 +01002089 if (!md->gbp)
2090 return;
2091
Thomas Graf35114942015-01-15 03:53:55 +01002092 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01002093 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01002094
2095 if (md->gbp & VXLAN_GBP_DONT_LEARN)
2096 gbp->dont_learn = 1;
2097
2098 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
2099 gbp->policy_applied = 1;
2100
2101 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
2102}
2103
Jiri Bence1e53142016-04-05 14:47:13 +02002104static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
2105 __be16 protocol)
2106{
2107 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
2108
2109 gpe->np_applied = 1;
Jiri Bencfa20e0e2017-08-28 21:43:22 +02002110 gpe->next_protocol = tun_p_from_eth_p(protocol);
2111 if (!gpe->next_protocol)
2112 return -EPFNOSUPPORT;
2113 return 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002114}
2115
Jiri Bencf491e562016-02-02 18:09:16 +01002116static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
2117 int iphdr_len, __be32 vni,
2118 struct vxlan_metadata *md, u32 vxflags,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002119 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08002120{
Cong Wange4c7ed42013-08-31 13:44:33 +08002121 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08002122 int min_headroom;
2123 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08002124 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02002125 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08002126
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002127 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08002128 skb->ip_summed == CHECKSUM_PARTIAL) {
2129 int csum_start = skb_checksum_start_offset(skb);
2130
2131 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
2132 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
2133 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00002134 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08002135 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08002136 }
2137
Cong Wange4c7ed42013-08-31 13:44:33 +08002138 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
pravin shelar4a4f86c2016-11-13 20:43:52 -08002139 + VXLAN_HLEN + iphdr_len;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07002140
2141 /* Need space for new headers (invalidates iph ptr) */
2142 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02002143 if (unlikely(err))
pravin shelarc46b7892016-11-13 20:43:54 -08002144 return err;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07002145
Alexander Duyckaed069d2016-04-14 15:33:37 -04002146 err = iptunnel_handle_offloads(skb, type);
2147 if (err)
pravin shelarc46b7892016-11-13 20:43:54 -08002148 return err;
Jesse Grossb736a622015-04-09 11:19:14 -07002149
Johannes Bergd58ff352017-06-16 14:29:23 +02002150 vxh = __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01002151 vxh->vx_flags = VXLAN_HF_VNI;
2152 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07002153
Tom Herbertdfd86452015-01-12 17:00:38 -08002154 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01002155 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08002156
Jiri Benc54bfd872016-02-16 21:58:58 +01002157 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
2158 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
2159 vxh->vx_flags |= VXLAN_HF_RCO;
Tom Herbertdfd86452015-01-12 17:00:38 -08002160
2161 if (!skb_is_gso(skb)) {
2162 skb->ip_summed = CHECKSUM_NONE;
2163 skb->encapsulation = 0;
2164 }
2165 }
2166
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002167 if (vxflags & VXLAN_F_GBP)
2168 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02002169 if (vxflags & VXLAN_F_GPE) {
2170 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
2171 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002172 return err;
Jiri Bence1e53142016-04-05 14:47:13 +02002173 inner_protocol = skb->protocol;
2174 }
Thomas Graf35114942015-01-15 03:53:55 +01002175
Jiri Bence1e53142016-04-05 14:47:13 +02002176 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08002177 return 0;
Pravin B Shelar49560532013-08-19 11:23:17 -07002178}
Pravin B Shelar49560532013-08-19 11:23:17 -07002179
pravin shelar655c3de2016-11-13 20:43:55 -08002180static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
2181 struct vxlan_sock *sock4,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002182 struct sk_buff *skb, int oif, u8 tos,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002183 __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002184 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002185 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01002186{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002187 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002188 struct rtable *rt = NULL;
2189 struct flowi4 fl4;
2190
pravin shelar655c3de2016-11-13 20:43:55 -08002191 if (!sock4)
2192 return ERR_PTR(-EIO);
2193
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002194 if (tos && !info)
2195 use_cache = false;
2196 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002197 rt = dst_cache_get_ip4(dst_cache, saddr);
2198 if (rt)
2199 return rt;
2200 }
2201
Jiri Benc1a8496b2016-02-02 18:09:14 +01002202 memset(&fl4, 0, sizeof(fl4));
2203 fl4.flowi4_oif = oif;
2204 fl4.flowi4_tos = RT_TOS(tos);
2205 fl4.flowi4_mark = skb->mark;
2206 fl4.flowi4_proto = IPPROTO_UDP;
2207 fl4.daddr = daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07002208 fl4.saddr = *saddr;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002209 fl4.fl4_dport = dport;
2210 fl4.fl4_sport = sport;
Jiri Benc1a8496b2016-02-02 18:09:14 +01002211
2212 rt = ip_route_output_key(vxlan->net, &fl4);
pravin shelar655c3de2016-11-13 20:43:55 -08002213 if (likely(!IS_ERR(rt))) {
2214 if (rt->dst.dev == dev) {
2215 netdev_dbg(dev, "circular route to %pI4\n", &daddr);
2216 ip_rt_put(rt);
2217 return ERR_PTR(-ELOOP);
2218 }
2219
Jiri Benc1a8496b2016-02-02 18:09:14 +01002220 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002221 if (use_cache)
2222 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
pravin shelar655c3de2016-11-13 20:43:55 -08002223 } else {
2224 netdev_dbg(dev, "no route to %pI4\n", &daddr);
2225 return ERR_PTR(-ENETUNREACH);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002226 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002227 return rt;
2228}
2229
Jiri Bence5d4b292015-12-07 13:04:30 +01002230#if IS_ENABLED(CONFIG_IPV6)
2231static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
pravin shelar655c3de2016-11-13 20:43:55 -08002232 struct net_device *dev,
pravin shelar03dc52a2016-11-13 20:43:53 -08002233 struct vxlan_sock *sock6,
Daniel Borkmann14006152016-03-04 15:15:08 +01002234 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002235 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01002236 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002237 struct in6_addr *saddr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002238 __be16 dport, __be16 sport,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002239 struct dst_cache *dst_cache,
2240 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01002241{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002242 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002243 struct dst_entry *ndst;
2244 struct flowi6 fl6;
2245 int err;
2246
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002247 if (!sock6)
2248 return ERR_PTR(-EIO);
2249
Daniel Borkmann14006152016-03-04 15:15:08 +01002250 if (tos && !info)
2251 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002252 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002253 ndst = dst_cache_get_ip6(dst_cache, saddr);
2254 if (ndst)
2255 return ndst;
2256 }
2257
Jiri Bence5d4b292015-12-07 13:04:30 +01002258 memset(&fl6, 0, sizeof(fl6));
2259 fl6.flowi6_oif = oif;
2260 fl6.daddr = *daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07002261 fl6.saddr = *saddr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01002262 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01002263 fl6.flowi6_mark = skb->mark;
2264 fl6.flowi6_proto = IPPROTO_UDP;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002265 fl6.fl6_dport = dport;
2266 fl6.fl6_sport = sport;
Jiri Bence5d4b292015-12-07 13:04:30 +01002267
2268 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002269 sock6->sock->sk,
Jiri Bence5d4b292015-12-07 13:04:30 +01002270 &ndst, &fl6);
pravin shelar655c3de2016-11-13 20:43:55 -08002271 if (unlikely(err < 0)) {
2272 netdev_dbg(dev, "no route to %pI6\n", daddr);
2273 return ERR_PTR(-ENETUNREACH);
2274 }
2275
2276 if (unlikely(ndst->dev == dev)) {
2277 netdev_dbg(dev, "circular route to %pI6\n", daddr);
2278 dst_release(ndst);
2279 return ERR_PTR(-ELOOP);
2280 }
Jiri Bence5d4b292015-12-07 13:04:30 +01002281
2282 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002283 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002284 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01002285 return ndst;
2286}
2287#endif
2288
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002289/* Bypass encapsulation if the destination is local */
2290static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002291 struct vxlan_dev *dst_vxlan, __be32 vni)
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002292{
Li RongQing8f849852014-01-04 13:57:59 +08002293 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08002294 union vxlan_addr loopback;
2295 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Eric Dumazet4179cb52019-02-07 12:27:38 -08002296 struct net_device *dev;
Li RongQingce6502a2014-10-16 08:49:41 +08002297 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002298
Li RongQing8f849852014-01-04 13:57:59 +08002299 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
2300 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002301 skb->pkt_type = PACKET_HOST;
2302 skb->encapsulation = 0;
2303 skb->dev = dst_vxlan->dev;
2304 __skb_pull(skb, skb_network_offset(skb));
2305
Cong Wange4c7ed42013-08-31 13:44:33 +08002306 if (remote_ip->sa.sa_family == AF_INET) {
2307 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
2308 loopback.sa.sa_family = AF_INET;
2309#if IS_ENABLED(CONFIG_IPV6)
2310 } else {
2311 loopback.sin6.sin6_addr = in6addr_loopback;
2312 loopback.sa.sa_family = AF_INET6;
2313#endif
2314 }
2315
Eric Dumazet4179cb52019-02-07 12:27:38 -08002316 rcu_read_lock();
2317 dev = skb->dev;
2318 if (unlikely(!(dev->flags & IFF_UP))) {
2319 kfree_skb(skb);
2320 goto drop;
2321 }
2322
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002323 if (dst_vxlan->cfg.flags & VXLAN_F_LEARN)
Eric Dumazet4179cb52019-02-07 12:27:38 -08002324 vxlan_snoop(dev, &loopback, eth_hdr(skb)->h_source, 0, vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002325
2326 u64_stats_update_begin(&tx_stats->syncp);
2327 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002328 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002329 u64_stats_update_end(&tx_stats->syncp);
2330
2331 if (netif_rx(skb) == NET_RX_SUCCESS) {
2332 u64_stats_update_begin(&rx_stats->syncp);
2333 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002334 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002335 u64_stats_update_end(&rx_stats->syncp);
2336 } else {
Eric Dumazet4179cb52019-02-07 12:27:38 -08002337drop:
Li RongQingce6502a2014-10-16 08:49:41 +08002338 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002339 }
Eric Dumazet4179cb52019-02-07 12:27:38 -08002340 rcu_read_unlock();
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002341}
2342
pravin shelarfee1fad2016-11-13 20:43:56 -08002343static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002344 struct vxlan_dev *vxlan,
2345 union vxlan_addr *daddr,
2346 __be16 dst_port, int dst_ifindex, __be32 vni,
2347 struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002348 u32 rt_flags)
2349{
2350#if IS_ENABLED(CONFIG_IPV6)
2351 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2352 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2353 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2354 */
2355 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2356#endif
2357 /* Bypass encapsulation if the destination is local */
2358 if (rt_flags & RTCF_LOCAL &&
2359 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2360 struct vxlan_dev *dst_vxlan;
2361
2362 dst_release(dst);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002363 dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni,
pravin shelarfee1fad2016-11-13 20:43:56 -08002364 daddr->sa.sa_family, dst_port,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002365 vxlan->cfg.flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002366 if (!dst_vxlan) {
2367 dev->stats.tx_errors++;
2368 kfree_skb(skb);
2369
2370 return -ENOENT;
2371 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002372 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002373 return 1;
2374 }
2375
2376 return 0;
2377}
2378
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002379static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002380 __be32 default_vni, struct vxlan_rdst *rdst,
2381 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002382{
Paolo Abenid71785f2016-02-12 15:43:57 +01002383 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002384 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002385 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002386 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002387 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002388 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002389 struct vxlan_metadata _md;
2390 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002391 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002392 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002393 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002394 __u8 tos, ttl;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002395 int ifindex;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07002396 int err;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002397 u32 flags = vxlan->cfg.flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002398 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002399 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002400
Jiri Benc61adedf2015-08-20 13:56:25 +02002401 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002402
Thomas Grafee122c72015-07-21 10:43:58 +02002403 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002404 dst = &rdst->remote_ip;
2405 if (vxlan_addr_any(dst)) {
2406 if (did_rsc) {
2407 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002408 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002409 return;
2410 }
2411 goto drop;
2412 }
2413
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002414 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002415 vni = (rdst->remote_vni) ? : default_vni;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002416 ifindex = rdst->remote_ifindex;
Brian Russell11586322017-02-24 17:47:11 +00002417 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002418 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002419 md->gbp = skb->mark;
Hangbin Liu72f6d712018-04-17 14:11:28 +08002420 if (flags & VXLAN_F_TTL_INHERIT) {
2421 ttl = ip_tunnel_get_ttl(old_iph, skb);
2422 } else {
2423 ttl = vxlan->cfg.ttl;
2424 if (!ttl && vxlan_addr_multicast(dst))
2425 ttl = 1;
2426 }
pravin shelar0770b532016-11-13 20:43:57 -08002427
2428 tos = vxlan->cfg.tos;
2429 if (tos == 1)
2430 tos = ip_tunnel_get_dsfield(old_iph, skb);
2431
2432 if (dst->sa.sa_family == AF_INET)
2433 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2434 else
2435 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2436 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002437 } else {
2438 if (!info) {
2439 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2440 dev->name);
2441 goto drop;
2442 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002443 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002444 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002445 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002446 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2447 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002448 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002449 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2450 }
Thomas Grafee122c72015-07-21 10:43:58 +02002451 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002452 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2453 vni = tunnel_id_to_key32(info->key.tun_id);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002454 ifindex = 0;
Paolo Abenid71785f2016-02-12 15:43:57 +01002455 dst_cache = &info->dst_cache;
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -07002456 if (info->options_len &&
2457 info->key.tun_flags & TUNNEL_VXLAN_OPT)
pravin shelar0770b532016-11-13 20:43:57 -08002458 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002459 ttl = info->key.ttl;
2460 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002461 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002462 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002463 }
pravin shelar0770b532016-11-13 20:43:57 -08002464 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2465 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002466
Jakub Kicinski56de8592017-02-24 11:43:36 -08002467 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002468 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002469 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002470 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002471 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002472
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002473 if (!ifindex)
2474 ifindex = sock4->sock->sk->sk_bound_dev_if;
2475
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002476 rt = vxlan_get_route(vxlan, dev, sock4, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002477 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002478 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002479 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002480 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002481 if (IS_ERR(rt)) {
2482 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002483 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002484 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002485
pravin shelarfee1fad2016-11-13 20:43:56 -08002486 if (!info) {
Stefano Briviob4d306972018-11-08 12:19:16 +01002487 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002488 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002489 dst_port, ifindex, vni,
2490 &rt->dst, rt->rt_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002491 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002492 goto out_unlock;
Stefano Briviob4d306972018-11-08 12:19:16 +01002493
2494 if (vxlan->cfg.df == VXLAN_DF_SET) {
2495 df = htons(IP_DF);
2496 } else if (vxlan->cfg.df == VXLAN_DF_INHERIT) {
2497 struct ethhdr *eth = eth_hdr(skb);
2498
2499 if (ntohs(eth->h_proto) == ETH_P_IPV6 ||
2500 (ntohs(eth->h_proto) == ETH_P_IP &&
2501 old_iph->frag_off & htons(IP_DF)))
2502 df = htons(IP_DF);
2503 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002504 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002505 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002506 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002507
pravin shelarc46b7892016-11-13 20:43:54 -08002508 ndst = &rt->dst;
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002509 skb_tunnel_check_pmtu(skb, ndst, VXLAN_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002510
Cong Wange4c7ed42013-08-31 13:44:33 +08002511 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2512 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002513 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002514 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002515 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002516 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002517
Brian Russell11586322017-02-24 17:47:11 +00002518 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002519 dst->sin.sin_addr.s_addr, tos, ttl, df,
2520 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002521#if IS_ENABLED(CONFIG_IPV6)
2522 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002523 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002524
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002525 if (!ifindex)
2526 ifindex = sock6->sock->sk->sk_bound_dev_if;
2527
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002528 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002529 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002530 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002531 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002532 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002533 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002534 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002535 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002536 goto tx_error;
2537 }
pravin shelar655c3de2016-11-13 20:43:55 -08002538
pravin shelarfee1fad2016-11-13 20:43:56 -08002539 if (!info) {
2540 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002541
pravin shelarfee1fad2016-11-13 20:43:56 -08002542 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002543 dst_port, ifindex, vni,
2544 ndst, rt6i_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002545 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002546 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002547 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002548
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002549 skb_tunnel_check_pmtu(skb, ndst, VXLAN6_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002550
Daniel Borkmann14006152016-03-04 15:15:08 +01002551 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002552 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002553 skb_scrub_packet(skb, xnet);
2554 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002555 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002556 if (err < 0)
2557 goto tx_error;
2558
pravin shelar0770b532016-11-13 20:43:57 -08002559 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002560 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002561 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002562 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002563#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002564 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002565out_unlock:
2566 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002567 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002568
2569drop:
2570 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002571 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002572 return;
2573
2574tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002575 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002576 if (err == -ELOOP)
2577 dev->stats.collisions++;
2578 else if (err == -ENETUNREACH)
2579 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002580 dst_release(ndst);
2581 dev->stats.tx_errors++;
2582 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002583}
2584
David Stevens66817122013-03-15 04:35:51 +00002585/* Transmit local packets over Vxlan
2586 *
2587 * Outer IP header inherits ECN and DF from inner header.
2588 * Outer UDP destination is the VXLAN assigned port.
2589 * source port is based on hash of flow
2590 */
2591static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2592{
2593 struct vxlan_dev *vxlan = netdev_priv(dev);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002594 struct vxlan_rdst *rdst, *fdst = NULL;
Xin Long8bff36852017-11-11 19:58:50 +08002595 const struct ip_tunnel_info *info;
2596 bool did_rsc = false;
David Stevens66817122013-03-15 04:35:51 +00002597 struct vxlan_fdb *f;
Xin Long8bff36852017-11-11 19:58:50 +08002598 struct ethhdr *eth;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002599 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002600
Jiri Benc61adedf2015-08-20 13:56:25 +02002601 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002602
David Stevens66817122013-03-15 04:35:51 +00002603 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002604
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002605 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002606 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2607 info->mode & IP_TUNNEL_INFO_TX) {
2608 vni = tunnel_id_to_key32(info->key.tun_id);
2609 } else {
2610 if (info && info->mode & IP_TUNNEL_INFO_TX)
2611 vxlan_xmit_one(skb, dev, vni, NULL, false);
2612 else
2613 kfree_skb(skb);
2614 return NETDEV_TX_OK;
2615 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002616 }
2617
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002618 if (vxlan->cfg.flags & VXLAN_F_PROXY) {
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002619 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002620 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002621 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002622#if IS_ENABLED(CONFIG_IPV6)
Xin Long8bff36852017-11-11 19:58:50 +08002623 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
2624 pskb_may_pull(skb, sizeof(struct ipv6hdr) +
2625 sizeof(struct nd_msg)) &&
2626 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2627 struct nd_msg *m = (struct nd_msg *)(ipv6_hdr(skb) + 1);
2628
2629 if (m->icmph.icmp6_code == 0 &&
2630 m->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002631 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002632 }
2633#endif
2634 }
David Stevens66817122013-03-15 04:35:51 +00002635
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002636 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002637 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002638 did_rsc = false;
2639
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002640 if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002641 (ntohs(eth->h_proto) == ETH_P_IP ||
2642 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002643 did_rsc = route_shortcircuit(dev, skb);
2644 if (did_rsc)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002645 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002646 }
2647
David Stevens66817122013-03-15 04:35:51 +00002648 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002649 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002650 if (f == NULL) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002651 if ((vxlan->cfg.flags & VXLAN_F_L2MISS) &&
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002652 !is_multicast_ether_addr(eth->h_dest))
2653 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002654
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002655 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002656 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002657 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002658 }
David Stevens66817122013-03-15 04:35:51 +00002659 }
2660
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002661 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2662 struct sk_buff *skb1;
2663
Eric Dumazet8f646c92014-01-06 09:54:31 -08002664 if (!fdst) {
2665 fdst = rdst;
2666 continue;
2667 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002668 skb1 = skb_clone(skb, GFP_ATOMIC);
2669 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002670 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002671 }
2672
Eric Dumazet8f646c92014-01-06 09:54:31 -08002673 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002674 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002675 else
2676 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002677 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002678}
2679
stephen hemmingerd3428942012-10-01 12:32:35 +00002680/* Walk the forwarding table and purge stale entries */
Kees Cookdf7e8282017-10-04 16:26:59 -07002681static void vxlan_cleanup(struct timer_list *t)
stephen hemmingerd3428942012-10-01 12:32:35 +00002682{
Kees Cookdf7e8282017-10-04 16:26:59 -07002683 struct vxlan_dev *vxlan = from_timer(vxlan, t, age_timer);
stephen hemmingerd3428942012-10-01 12:32:35 +00002684 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2685 unsigned int h;
2686
2687 if (!netif_running(vxlan->dev))
2688 return;
2689
stephen hemmingerd3428942012-10-01 12:32:35 +00002690 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2691 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002692
2693 spin_lock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002694 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2695 struct vxlan_fdb *f
2696 = container_of(p, struct vxlan_fdb, hlist);
2697 unsigned long timeout;
2698
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002699 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002700 continue;
2701
Roopa Prabhudef499c2017-03-27 15:46:41 -07002702 if (f->flags & NTF_EXT_LEARNED)
2703 continue;
2704
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002705 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002706 if (time_before_eq(timeout, jiffies)) {
2707 netdev_dbg(vxlan->dev,
2708 "garbage collect %pM\n",
2709 f->eth_addr);
2710 f->state = NUD_STALE;
Petr Machata0e6160f2018-11-21 08:02:35 +00002711 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002712 } else if (time_before(timeout, next_timer))
2713 next_timer = timeout;
2714 }
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002715 spin_unlock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002716 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002717
2718 mod_timer(&vxlan->age_timer, next_timer);
2719}
2720
Mark Blocha53cb292017-06-02 03:24:08 +03002721static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2722{
2723 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2724
2725 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002726 hlist_del_init_rcu(&vxlan->hlist4.hlist);
2727#if IS_ENABLED(CONFIG_IPV6)
2728 hlist_del_init_rcu(&vxlan->hlist6.hlist);
2729#endif
Mark Blocha53cb292017-06-02 03:24:08 +03002730 spin_unlock(&vn->sock_lock);
2731}
2732
Jiri Benc69e76662017-07-02 19:00:57 +02002733static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan,
2734 struct vxlan_dev_node *node)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002735{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002736 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002737 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002738
Jiri Benc69e76662017-07-02 19:00:57 +02002739 node->vxlan = vxlan;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002740 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002741 hlist_add_head_rcu(&node->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002742 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002743}
2744
stephen hemmingerd3428942012-10-01 12:32:35 +00002745/* Setup stats when device is created */
2746static int vxlan_init(struct net_device *dev)
2747{
WANG Cong1c213bd2014-02-13 11:46:28 -08002748 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002749 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002750 return -ENOMEM;
2751
2752 return 0;
2753}
2754
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002755static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002756{
2757 struct vxlan_fdb *f;
2758
2759 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002760 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002761 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00002762 vxlan_fdb_destroy(vxlan, f, true, true);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002763 spin_unlock_bh(&vxlan->hash_lock);
2764}
2765
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002766static void vxlan_uninit(struct net_device *dev)
2767{
2768 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002769
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002770 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002771
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002772 free_percpu(dev->tstats);
2773}
2774
stephen hemmingerd3428942012-10-01 12:32:35 +00002775/* Start ageing timer and join group when device is brought up */
2776static int vxlan_open(struct net_device *dev)
2777{
2778 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002779 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002780
Jiri Benc205f3562015-09-24 13:50:01 +02002781 ret = vxlan_sock_add(vxlan);
2782 if (ret < 0)
2783 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002784
Gao feng79d4a942013-12-10 16:37:32 +08002785 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002786 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002787 if (ret == -EADDRINUSE)
2788 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002789 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002790 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002791 return ret;
2792 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002793 }
2794
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002795 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002796 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2797
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002798 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002799}
2800
2801/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002802static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002803{
Cong Wang31fec5a2013-05-27 22:35:52 +00002804 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002805
2806 spin_lock_bh(&vxlan->hash_lock);
2807 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2808 struct hlist_node *p, *n;
2809 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2810 struct vxlan_fdb *f
2811 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002812 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2813 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002814 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2815 if (!is_zero_ether_addr(f->eth_addr))
Petr Machata0e6160f2018-11-21 08:02:35 +00002816 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002817 }
2818 }
2819 spin_unlock_bh(&vxlan->hash_lock);
2820}
2821
2822/* Cleanup timer and forwarding table on shutdown */
2823static int vxlan_stop(struct net_device *dev)
2824{
2825 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002826 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002827 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002828
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002829 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002830 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002831 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002832
2833 del_timer_sync(&vxlan->age_timer);
2834
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002835 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002836 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002837
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002838 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002839}
2840
stephen hemmingerd3428942012-10-01 12:32:35 +00002841/* Stub, nothing needs to be done. */
2842static void vxlan_set_multicast_list(struct net_device *dev)
2843{
2844}
2845
Daniel Borkmann345010b2013-12-18 00:21:08 +01002846static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2847{
2848 struct vxlan_dev *vxlan = netdev_priv(dev);
2849 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002850 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2851 dst->remote_ifindex);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002852 bool use_ipv6 = !!(vxlan->cfg.flags & VXLAN_F_IPV6);
Jarod Wilson91572082016-10-20 13:55:20 -04002853
2854 /* This check is different than dev->max_mtu, because it looks at
2855 * the lowerdev->mtu, rather than the static dev->max_mtu
2856 */
2857 if (lowerdev) {
2858 int max_mtu = lowerdev->mtu -
2859 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2860 if (new_mtu > max_mtu)
2861 return -EINVAL;
2862 }
2863
2864 dev->mtu = new_mtu;
2865 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002866}
2867
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002868static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2869{
2870 struct vxlan_dev *vxlan = netdev_priv(dev);
2871 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2872 __be16 sport, dport;
2873
2874 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2875 vxlan->cfg.port_max, true);
2876 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2877
Jiri Benc239e9442015-12-07 13:04:31 +01002878 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002879 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002880 struct rtable *rt;
2881
pravin shelar655c3de2016-11-13 20:43:55 -08002882 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002883 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002884 &info->key.u.ipv4.src, dport, sport,
2885 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002886 if (IS_ERR(rt))
2887 return PTR_ERR(rt);
2888 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002889 } else {
2890#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002891 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002892 struct dst_entry *ndst;
2893
pravin shelar655c3de2016-11-13 20:43:55 -08002894 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002895 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002896 &info->key.u.ipv6.src, dport, sport,
2897 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002898 if (IS_ERR(ndst))
2899 return PTR_ERR(ndst);
2900 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002901#else /* !CONFIG_IPV6 */
2902 return -EPFNOSUPPORT;
2903#endif
2904 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002905 info->key.tp_src = sport;
2906 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002907 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002908}
2909
Jiri Benc0c867c92016-04-05 14:47:10 +02002910static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002911 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002912 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002913 .ndo_open = vxlan_open,
2914 .ndo_stop = vxlan_stop,
2915 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002916 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002917 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002918 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002919 .ndo_validate_addr = eth_validate_addr,
2920 .ndo_set_mac_address = eth_mac_addr,
2921 .ndo_fdb_add = vxlan_fdb_add,
2922 .ndo_fdb_del = vxlan_fdb_delete,
2923 .ndo_fdb_dump = vxlan_fdb_dump,
Roopa Prabhu474c3c82018-12-15 22:35:10 -08002924 .ndo_fdb_get = vxlan_fdb_get,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002925 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
Andy Roulin8f1af752019-02-22 18:06:38 +00002926 .ndo_change_proto_down = dev_change_proto_down_generic,
stephen hemmingerd3428942012-10-01 12:32:35 +00002927};
2928
Jiri Bence1e53142016-04-05 14:47:13 +02002929static const struct net_device_ops vxlan_netdev_raw_ops = {
2930 .ndo_init = vxlan_init,
2931 .ndo_uninit = vxlan_uninit,
2932 .ndo_open = vxlan_open,
2933 .ndo_stop = vxlan_stop,
2934 .ndo_start_xmit = vxlan_xmit,
2935 .ndo_get_stats64 = ip_tunnel_get_stats64,
2936 .ndo_change_mtu = vxlan_change_mtu,
2937 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2938};
2939
stephen hemmingerd3428942012-10-01 12:32:35 +00002940/* Info for udev, that this is a virtual tunnel endpoint */
2941static struct device_type vxlan_type = {
2942 .name = "vxlan",
2943};
2944
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002945/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002946 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002947 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002948 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002949static void vxlan_offload_rx_ports(struct net_device *dev, bool push)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002950{
2951 struct vxlan_sock *vs;
2952 struct net *net = dev_net(dev);
2953 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002954 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002955
2956 spin_lock(&vn->sock_lock);
2957 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002958 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2959 unsigned short type;
2960
2961 if (vs->flags & VXLAN_F_GPE)
2962 type = UDP_TUNNEL_TYPE_VXLAN_GPE;
2963 else
2964 type = UDP_TUNNEL_TYPE_VXLAN;
2965
2966 if (push)
2967 udp_tunnel_push_rx_port(dev, vs->sock, type);
2968 else
2969 udp_tunnel_drop_rx_port(dev, vs->sock, type);
2970 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002971 }
2972 spin_unlock(&vn->sock_lock);
2973}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002974
stephen hemmingerd3428942012-10-01 12:32:35 +00002975/* Initialize the device structure. */
2976static void vxlan_setup(struct net_device *dev)
2977{
2978 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002979 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002980
Jiri Benc65226ef2016-04-28 16:36:30 +02002981 eth_hw_addr_random(dev);
2982 ether_setup(dev);
2983
David S. Millercf124db2017-05-08 12:52:56 -04002984 dev->needs_free_netdev = true;
stephen hemmingerd3428942012-10-01 12:32:35 +00002985 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2986
stephen hemmingerd3428942012-10-01 12:32:35 +00002987 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002988 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002989 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002990 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002991
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002992 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002993 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002994 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07002995 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002996 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002997
Matthias Schiffera9853432017-06-19 10:03:55 +02002998 /* MTU range: 68 - 65535 */
2999 dev->min_mtu = ETH_MIN_MTU;
3000 dev->max_mtu = ETH_MAX_MTU;
3001
stephen hemminger553675f2013-05-16 11:35:20 +00003002 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003003 spin_lock_init(&vxlan->hash_lock);
3004
Kees Cookdf7e8282017-10-04 16:26:59 -07003005 timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE);
stephen hemmingerd3428942012-10-01 12:32:35 +00003006
3007 vxlan->dev = dev;
3008
Tom Herbert58ce31c2015-08-19 17:07:33 -07003009 gro_cells_init(&vxlan->gro_cells, dev);
3010
stephen hemmingerd3428942012-10-01 12:32:35 +00003011 for (h = 0; h < FDB_HASH_SIZE; ++h)
3012 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
3013}
3014
Jiri Benc0c867c92016-04-05 14:47:10 +02003015static void vxlan_ether_setup(struct net_device *dev)
3016{
Jiri Benc0c867c92016-04-05 14:47:10 +02003017 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
3018 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
3019 dev->netdev_ops = &vxlan_netdev_ether_ops;
3020}
3021
Jiri Bence1e53142016-04-05 14:47:13 +02003022static void vxlan_raw_setup(struct net_device *dev)
3023{
Jiri Benc65226ef2016-04-28 16:36:30 +02003024 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02003025 dev->type = ARPHRD_NONE;
3026 dev->hard_header_len = 0;
3027 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02003028 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
3029 dev->netdev_ops = &vxlan_netdev_raw_ops;
3030}
3031
stephen hemmingerd3428942012-10-01 12:32:35 +00003032static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
3033 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00003034 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003035 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003036 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
3037 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003038 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003039 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
3040 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003041 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003042 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
3043 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
3044 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00003045 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00003046 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
3047 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
3048 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
3049 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07003050 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00003051 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08003052 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
3053 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
3054 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08003055 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
3056 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01003057 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02003058 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003059 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
Hangbin Liu72f6d712018-04-17 14:11:28 +08003060 [IFLA_VXLAN_TTL_INHERIT] = { .type = NLA_FLAG },
Stefano Briviob4d306972018-11-08 12:19:16 +01003061 [IFLA_VXLAN_DF] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003062};
3063
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02003064static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[],
3065 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003066{
3067 if (tb[IFLA_ADDRESS]) {
3068 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003069 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3070 "Provided link layer address is not Ethernet");
stephen hemmingerd3428942012-10-01 12:32:35 +00003071 return -EINVAL;
3072 }
3073
3074 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003075 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3076 "Provided Ethernet address is not unicast");
stephen hemmingerd3428942012-10-01 12:32:35 +00003077 return -EADDRNOTAVAIL;
3078 }
3079 }
3080
Matthias Schiffera9853432017-06-19 10:03:55 +02003081 if (tb[IFLA_MTU]) {
Matthias Schiffer019b13a2017-06-27 14:42:43 +02003082 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
Matthias Schiffera9853432017-06-19 10:03:55 +02003083
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003084 if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU) {
3085 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3086 "MTU must be between 68 and 65535");
Matthias Schiffera9853432017-06-19 10:03:55 +02003087 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003088 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003089 }
3090
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003091 if (!data) {
3092 NL_SET_ERR_MSG(extack,
3093 "Required attributes not provided to perform the operation");
stephen hemmingerd3428942012-10-01 12:32:35 +00003094 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003095 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003096
3097 if (data[IFLA_VXLAN_ID]) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003098 u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
3099
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003100 if (id >= VXLAN_N_VID) {
3101 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID],
3102 "VXLAN ID must be lower than 16777216");
stephen hemmingerd3428942012-10-01 12:32:35 +00003103 return -ERANGE;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003104 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003105 }
3106
stephen hemminger05f47d62012-10-09 20:35:50 +00003107 if (data[IFLA_VXLAN_PORT_RANGE]) {
3108 const struct ifla_vxlan_port_range *p
3109 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3110
3111 if (ntohs(p->high) < ntohs(p->low)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003112 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3113 "Invalid source port range");
stephen hemminger05f47d62012-10-09 20:35:50 +00003114 return -EINVAL;
3115 }
3116 }
3117
Stefano Briviob4d306972018-11-08 12:19:16 +01003118 if (data[IFLA_VXLAN_DF]) {
3119 enum ifla_vxlan_df df = nla_get_u8(data[IFLA_VXLAN_DF]);
3120
3121 if (df < 0 || df > VXLAN_DF_MAX) {
3122 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_DF],
3123 "Invalid DF attribute");
3124 return -EINVAL;
3125 }
3126 }
3127
stephen hemmingerd3428942012-10-01 12:32:35 +00003128 return 0;
3129}
3130
Yan Burman1b13c972013-01-29 23:43:07 +00003131static void vxlan_get_drvinfo(struct net_device *netdev,
3132 struct ethtool_drvinfo *drvinfo)
3133{
3134 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
3135 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
3136}
3137
3138static const struct ethtool_ops vxlan_ethtool_ops = {
3139 .get_drvinfo = vxlan_get_drvinfo,
3140 .get_link = ethtool_op_get_link,
3141};
3142
Tom Herbert3ee64f32014-07-13 19:49:42 -07003143static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003144 __be16 port, u32 flags, int ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +00003145{
Cong Wange4c7ed42013-08-31 13:44:33 +08003146 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003147 struct udp_port_cfg udp_conf;
3148 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08003149
Tom Herbert3ee64f32014-07-13 19:49:42 -07003150 memset(&udp_conf, 0, sizeof(udp_conf));
3151
3152 if (ipv6) {
3153 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003154 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08003155 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02003156 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003157 } else {
3158 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08003159 }
3160
Tom Herbert3ee64f32014-07-13 19:49:42 -07003161 udp_conf.local_udp_port = port;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003162 udp_conf.bind_ifindex = ifindex;
Cong Wange4c7ed42013-08-31 13:44:33 +08003163
Tom Herbert3ee64f32014-07-13 19:49:42 -07003164 /* Open UDP socket */
3165 err = udp_sock_create(net, &udp_conf, &sock);
3166 if (err < 0)
3167 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08003168
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003169 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08003170}
3171
3172/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02003173static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003174 __be16 port, u32 flags,
3175 int ifindex)
Cong Wange4c7ed42013-08-31 13:44:33 +08003176{
3177 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3178 struct vxlan_sock *vs;
3179 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00003180 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003181 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00003182
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02003183 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08003184 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00003185 return ERR_PTR(-ENOMEM);
3186
3187 for (h = 0; h < VNI_HASH_SIZE; ++h)
3188 INIT_HLIST_HEAD(&vs->vni_list[h]);
3189
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003190 sock = vxlan_create_sock(net, ipv6, port, flags, ifindex);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003191 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00003192 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08003193 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00003194 }
3195
Cong Wange4c7ed42013-08-31 13:44:33 +08003196 vs->sock = sock;
Reshetova, Elena66af8462017-07-04 15:52:59 +03003197 refcount_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08003198 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00003199
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003200 spin_lock(&vn->sock_lock);
3201 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07003202 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07003203 (vs->flags & VXLAN_F_GPE) ?
3204 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07003205 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003206 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00003207
3208 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07003209 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07003210 tunnel_cfg.sk_user_data = vs;
3211 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01003212 tunnel_cfg.encap_rcv = vxlan_rcv;
Stefano Brivioc3a43b92018-11-08 12:19:15 +01003213 tunnel_cfg.encap_err_lookup = vxlan_err_lookup;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003214 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07003215 tunnel_cfg.gro_receive = vxlan_gro_receive;
3216 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003217
3218 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08003219
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003220 return vs;
3221}
stephen hemminger553675f2013-05-16 11:35:20 +00003222
Jiri Bencb1be00a2015-09-24 13:50:02 +02003223static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003224{
Jiri Benc205f3562015-09-24 13:50:01 +02003225 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
3226 struct vxlan_sock *vs = NULL;
Jiri Benc69e76662017-07-02 19:00:57 +02003227 struct vxlan_dev_node *node;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003228 int l3mdev_index = 0;
3229
3230 if (vxlan->cfg.remote_ifindex)
3231 l3mdev_index = l3mdev_master_upper_ifindex_by_index(
3232 vxlan->net, vxlan->cfg.remote_ifindex);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003233
Jiri Benc205f3562015-09-24 13:50:01 +02003234 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003235 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003236 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003237 vxlan->cfg.dst_port, vxlan->cfg.flags,
3238 l3mdev_index);
Reshetova, Elena66af8462017-07-04 15:52:59 +03003239 if (vs && !refcount_inc_not_zero(&vs->refcnt)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003240 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003241 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003242 }
3243 spin_unlock(&vn->sock_lock);
3244 }
Jiri Benc205f3562015-09-24 13:50:01 +02003245 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003246 vs = vxlan_socket_create(vxlan->net, ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003247 vxlan->cfg.dst_port, vxlan->cfg.flags,
3248 l3mdev_index);
Jiri Benc205f3562015-09-24 13:50:01 +02003249 if (IS_ERR(vs))
3250 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003251#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc69e76662017-07-02 19:00:57 +02003252 if (ipv6) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003253 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003254 node = &vxlan->hlist6;
3255 } else
Jiri Bencb1be00a2015-09-24 13:50:02 +02003256#endif
Jiri Benc69e76662017-07-02 19:00:57 +02003257 {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003258 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003259 node = &vxlan->hlist4;
3260 }
3261 vxlan_vs_add_dev(vs, vxlan, node);
Jiri Benc205f3562015-09-24 13:50:01 +02003262 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00003263}
3264
Jiri Bencb1be00a2015-09-24 13:50:02 +02003265static int vxlan_sock_add(struct vxlan_dev *vxlan)
3266{
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003267 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
3268 bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata;
Jiri Bencd074bf92017-04-27 21:24:35 +02003269 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003270 int ret = 0;
3271
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003272 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003273#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003274 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02003275 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02003276 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02003277 if (ret < 0 && ret != -EAFNOSUPPORT)
3278 ipv4 = false;
3279 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02003280#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02003281 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003282 ret = __vxlan_sock_add(vxlan, false);
3283 if (ret < 0)
3284 vxlan_sock_release(vxlan);
3285 return ret;
3286}
3287
Matthias Schiffera9853432017-06-19 10:03:55 +02003288static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf,
3289 struct net_device **lower,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003290 struct vxlan_dev *old,
3291 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003292{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01003293 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Matthias Schiffera9853432017-06-19 10:03:55 +02003294 struct vxlan_dev *tmp;
3295 bool use_ipv6 = false;
3296
3297 if (conf->flags & VXLAN_F_GPE) {
3298 /* For now, allow GPE only together with
3299 * COLLECT_METADATA. This can be relaxed later; in such
3300 * case, the other side of the PtP link will have to be
3301 * provided.
3302 */
3303 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
3304 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003305 NL_SET_ERR_MSG(extack,
3306 "VXLAN GPE does not support this combination of attributes");
Matthias Schiffera9853432017-06-19 10:03:55 +02003307 return -EINVAL;
3308 }
3309 }
3310
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003311 if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) {
3312 /* Unless IPv6 is explicitly requested, assume IPv4 */
Matthias Schiffera9853432017-06-19 10:03:55 +02003313 conf->remote_ip.sa.sa_family = AF_INET;
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003314 conf->saddr.sa.sa_family = AF_INET;
3315 } else if (!conf->remote_ip.sa.sa_family) {
3316 conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family;
3317 } else if (!conf->saddr.sa.sa_family) {
3318 conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family;
3319 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003320
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003321 if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family) {
3322 NL_SET_ERR_MSG(extack,
3323 "Local and remote address must be from the same family");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003324 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003325 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003326
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003327 if (vxlan_addr_multicast(&conf->saddr)) {
3328 NL_SET_ERR_MSG(extack, "Local address cannot be multicast");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003329 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003330 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003331
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003332 if (conf->saddr.sa.sa_family == AF_INET6) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003333 if (!IS_ENABLED(CONFIG_IPV6)) {
3334 NL_SET_ERR_MSG(extack,
3335 "IPv6 support not enabled in the kernel");
Matthias Schiffera9853432017-06-19 10:03:55 +02003336 return -EPFNOSUPPORT;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003337 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003338 use_ipv6 = true;
3339 conf->flags |= VXLAN_F_IPV6;
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003340
3341 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) {
3342 int local_type =
3343 ipv6_addr_type(&conf->saddr.sin6.sin6_addr);
3344 int remote_type =
3345 ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr);
3346
3347 if (local_type & IPV6_ADDR_LINKLOCAL) {
3348 if (!(remote_type & IPV6_ADDR_LINKLOCAL) &&
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003349 (remote_type != IPV6_ADDR_ANY)) {
3350 NL_SET_ERR_MSG(extack,
3351 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003352 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003353 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003354
3355 conf->flags |= VXLAN_F_IPV6_LINKLOCAL;
3356 } else {
3357 if (remote_type ==
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003358 (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL)) {
3359 NL_SET_ERR_MSG(extack,
3360 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003361 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003362 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003363
3364 conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL;
3365 }
3366 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003367 }
3368
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003369 if (conf->label && !use_ipv6) {
3370 NL_SET_ERR_MSG(extack,
3371 "Label attribute only applies to IPv6 VXLAN devices");
Matthias Schiffera9853432017-06-19 10:03:55 +02003372 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003373 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003374
3375 if (conf->remote_ifindex) {
3376 struct net_device *lowerdev;
3377
3378 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003379 if (!lowerdev) {
3380 NL_SET_ERR_MSG(extack,
3381 "Invalid local interface, device not found");
Matthias Schiffera9853432017-06-19 10:03:55 +02003382 return -ENODEV;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003383 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003384
3385#if IS_ENABLED(CONFIG_IPV6)
3386 if (use_ipv6) {
3387 struct inet6_dev *idev = __in6_dev_get(lowerdev);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003388 if (idev && idev->cnf.disable_ipv6) {
3389 NL_SET_ERR_MSG(extack,
3390 "IPv6 support disabled by administrator");
Matthias Schiffera9853432017-06-19 10:03:55 +02003391 return -EPERM;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003392 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003393 }
3394#endif
3395
3396 *lower = lowerdev;
3397 } else {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003398 if (vxlan_addr_multicast(&conf->remote_ip)) {
3399 NL_SET_ERR_MSG(extack,
3400 "Local interface required for multicast remote destination");
3401
Matthias Schiffera9853432017-06-19 10:03:55 +02003402 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003403 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003404
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003405#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003406 if (conf->flags & VXLAN_F_IPV6_LINKLOCAL) {
3407 NL_SET_ERR_MSG(extack,
3408 "Local interface required for link-local local/remote addresses");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003409 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003410 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003411#endif
3412
Matthias Schiffera9853432017-06-19 10:03:55 +02003413 *lower = NULL;
3414 }
3415
3416 if (!conf->dst_port) {
3417 if (conf->flags & VXLAN_F_GPE)
3418 conf->dst_port = htons(4790); /* IANA VXLAN-GPE port */
3419 else
3420 conf->dst_port = htons(vxlan_port);
3421 }
3422
3423 if (!conf->age_interval)
3424 conf->age_interval = FDB_AGE_DEFAULT;
3425
3426 list_for_each_entry(tmp, &vn->vxlan_list, next) {
3427 if (tmp == old)
3428 continue;
3429
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003430 if (tmp->cfg.vni != conf->vni)
3431 continue;
3432 if (tmp->cfg.dst_port != conf->dst_port)
3433 continue;
3434 if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) !=
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003435 (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)))
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003436 continue;
3437
3438 if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) &&
3439 tmp->cfg.remote_ifindex != conf->remote_ifindex)
3440 continue;
3441
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003442 NL_SET_ERR_MSG(extack,
3443 "A VXLAN device with the specified VNI already exists");
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003444 return -EEXIST;
Matthias Schiffera9853432017-06-19 10:03:55 +02003445 }
3446
3447 return 0;
3448}
3449
3450static void vxlan_config_apply(struct net_device *dev,
3451 struct vxlan_config *conf,
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003452 struct net_device *lowerdev,
3453 struct net *src_net,
3454 bool changelink)
Matthias Schiffera9853432017-06-19 10:03:55 +02003455{
3456 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003457 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003458 unsigned short needed_headroom = ETH_HLEN;
Matthias Schiffera9853432017-06-19 10:03:55 +02003459 bool use_ipv6 = !!(conf->flags & VXLAN_F_IPV6);
3460 int max_mtu = ETH_MAX_MTU;
stephen hemmingerd3428942012-10-01 12:32:35 +00003461
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003462 if (!changelink) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003463 if (conf->flags & VXLAN_F_GPE)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003464 vxlan_raw_setup(dev);
Matthias Schiffera9853432017-06-19 10:03:55 +02003465 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003466 vxlan_ether_setup(dev);
Jiri Bence1e53142016-04-05 14:47:13 +02003467
Matthias Schiffera9853432017-06-19 10:03:55 +02003468 if (conf->mtu)
3469 dev->mtu = conf->mtu;
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003470
3471 vxlan->net = src_net;
Jiri Bence1e53142016-04-05 14:47:13 +02003472 }
Jiri Benc0c867c92016-04-05 14:47:10 +02003473
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003474 dst->remote_vni = conf->vni;
3475
3476 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00003477
Matthias Schiffera9853432017-06-19 10:03:55 +02003478 if (lowerdev) {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003479 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00003480
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003481 dev->gso_max_size = lowerdev->gso_max_size;
3482 dev->gso_max_segs = lowerdev->gso_max_segs;
Matthias Schiffera9853432017-06-19 10:03:55 +02003483
3484 needed_headroom = lowerdev->hard_header_len;
3485
3486 max_mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM :
3487 VXLAN_HEADROOM);
Alexey Kodanevf870c1f2017-12-14 20:20:00 +03003488 if (max_mtu < ETH_MIN_MTU)
3489 max_mtu = ETH_MIN_MTU;
3490
3491 if (!changelink && !conf->mtu)
3492 dev->mtu = max_mtu;
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003493 }
3494
Matthias Schiffera9853432017-06-19 10:03:55 +02003495 if (dev->mtu > max_mtu)
3496 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00003497
Jiri Bencb1be00a2015-09-24 13:50:02 +02003498 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
3499 needed_headroom += VXLAN6_HEADROOM;
3500 else
3501 needed_headroom += VXLAN_HEADROOM;
3502 dev->needed_headroom = needed_headroom;
3503
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003504 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Matthias Schiffera9853432017-06-19 10:03:55 +02003505}
stephen hemmingerd3428942012-10-01 12:32:35 +00003506
Matthias Schiffera9853432017-06-19 10:03:55 +02003507static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003508 struct vxlan_config *conf, bool changelink,
3509 struct netlink_ext_ack *extack)
Matthias Schiffera9853432017-06-19 10:03:55 +02003510{
3511 struct vxlan_dev *vxlan = netdev_priv(dev);
3512 struct net_device *lowerdev;
3513 int ret;
Vincent Bernatafb97182012-10-30 10:27:16 +00003514
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003515 ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan, extack);
Matthias Schiffera9853432017-06-19 10:03:55 +02003516 if (ret)
3517 return ret;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003518
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003519 vxlan_config_apply(dev, conf, lowerdev, src_net, changelink);
stephen hemminger553675f2013-05-16 11:35:20 +00003520
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003521 return 0;
3522}
3523
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003524static int __vxlan_dev_create(struct net *net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003525 struct vxlan_config *conf,
3526 struct netlink_ext_ack *extack)
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003527{
3528 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3529 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003530 struct vxlan_fdb *f = NULL;
Petr Machata6db92462018-12-18 13:16:00 +00003531 bool unregister = false;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003532 int err;
3533
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003534 err = vxlan_dev_configure(net, dev, conf, false, extack);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003535 if (err)
3536 return err;
3537
3538 dev->ethtool_ops = &vxlan_ethtool_ops;
3539
3540 /* create an fdb entry for a valid default destination */
3541 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
Roopa Prabhu0241b832018-07-04 16:46:32 -07003542 err = vxlan_fdb_create(vxlan, all_zeros_mac,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003543 &vxlan->default_dst.remote_ip,
3544 NUD_REACHABLE | NUD_PERMANENT,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003545 vxlan->cfg.dst_port,
3546 vxlan->default_dst.remote_vni,
3547 vxlan->default_dst.remote_vni,
3548 vxlan->default_dst.remote_ifindex,
Roopa Prabhu0241b832018-07-04 16:46:32 -07003549 NTF_SELF, &f);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003550 if (err)
3551 return err;
3552 }
3553
3554 err = register_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003555 if (err)
3556 goto errout;
Petr Machata6db92462018-12-18 13:16:00 +00003557 unregister = true;
Roopa Prabhu0241b832018-07-04 16:46:32 -07003558
3559 err = rtnl_configure_link(dev, NULL);
Petr Machata6db92462018-12-18 13:16:00 +00003560 if (err)
Roopa Prabhu0241b832018-07-04 16:46:32 -07003561 goto errout;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003562
Roopa Prabhu0241b832018-07-04 16:46:32 -07003563 /* notify default fdb entry */
Petr Machata61f46fe2019-01-16 23:06:38 +00003564 if (f) {
3565 err = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f),
Petr Machata4c59b7d2019-01-16 23:06:54 +00003566 RTM_NEWNEIGH, true, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +00003567 if (err)
3568 goto errout;
3569 }
Roopa Prabhu0241b832018-07-04 16:46:32 -07003570
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003571 list_add(&vxlan->next, &vn->vxlan_list);
3572 return 0;
Petr Machata6db92462018-12-18 13:16:00 +00003573
Roopa Prabhu0241b832018-07-04 16:46:32 -07003574errout:
Petr Machata6db92462018-12-18 13:16:00 +00003575 /* unregister_netdevice() destroys the default FDB entry with deletion
3576 * notification. But the addition notification was not sent yet, so
3577 * destroy the entry by hand here.
3578 */
Roopa Prabhu0241b832018-07-04 16:46:32 -07003579 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00003580 vxlan_fdb_destroy(vxlan, f, false, false);
Petr Machata6db92462018-12-18 13:16:00 +00003581 if (unregister)
3582 unregister_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003583 return err;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003584}
3585
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003586/* Set/clear flags based on attribute */
3587static int vxlan_nl2flag(struct vxlan_config *conf, struct nlattr *tb[],
3588 int attrtype, unsigned long mask, bool changelink,
3589 bool changelink_supported,
3590 struct netlink_ext_ack *extack)
3591{
3592 unsigned long flags;
3593
3594 if (!tb[attrtype])
3595 return 0;
3596
3597 if (changelink && !changelink_supported) {
3598 vxlan_flag_attr_error(attrtype, extack);
3599 return -EOPNOTSUPP;
3600 }
3601
3602 if (vxlan_policy[attrtype].type == NLA_FLAG)
3603 flags = conf->flags | mask;
3604 else if (nla_get_u8(tb[attrtype]))
3605 flags = conf->flags | mask;
3606 else
3607 flags = conf->flags & ~mask;
3608
3609 conf->flags = flags;
3610
3611 return 0;
3612}
3613
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003614static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3615 struct net_device *dev, struct vxlan_config *conf,
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003616 bool changelink, struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003617{
3618 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003619 int err = 0;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003620
3621 memset(conf, 0, sizeof(*conf));
3622
3623 /* if changelink operation, start with old existing cfg */
3624 if (changelink)
3625 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3626
3627 if (data[IFLA_VXLAN_ID]) {
3628 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3629
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003630 if (changelink && (vni != conf->vni)) {
3631 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID], "Cannot change VNI");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003632 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003633 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003634 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3635 }
3636
3637 if (data[IFLA_VXLAN_GROUP]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003638 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET)) {
3639 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP], "New group address family does not match old group");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003640 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003641 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003642
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003643 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003644 conf->remote_ip.sa.sa_family = AF_INET;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003645 } else if (data[IFLA_VXLAN_GROUP6]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003646 if (!IS_ENABLED(CONFIG_IPV6)) {
3647 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "IPv6 support not enabled in the kernel");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003648 return -EPFNOSUPPORT;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003649 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003650
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003651 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6)) {
3652 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "New group address family does not match old group");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003653 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003654 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003655
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003656 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3657 conf->remote_ip.sa.sa_family = AF_INET6;
3658 }
3659
3660 if (data[IFLA_VXLAN_LOCAL]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003661 if (changelink && (conf->saddr.sa.sa_family != AF_INET)) {
3662 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL], "New local address family does not match old");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003663 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003664 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003665
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003666 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3667 conf->saddr.sa.sa_family = AF_INET;
3668 } else if (data[IFLA_VXLAN_LOCAL6]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003669 if (!IS_ENABLED(CONFIG_IPV6)) {
3670 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "IPv6 support not enabled in the kernel");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003671 return -EPFNOSUPPORT;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003672 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003673
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003674 if (changelink && (conf->saddr.sa.sa_family != AF_INET6)) {
3675 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "New local address family does not match old");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003676 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003677 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003678
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003679 /* TODO: respect scope id */
3680 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3681 conf->saddr.sa.sa_family = AF_INET6;
3682 }
3683
3684 if (data[IFLA_VXLAN_LINK])
3685 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3686
3687 if (data[IFLA_VXLAN_TOS])
3688 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3689
3690 if (data[IFLA_VXLAN_TTL])
3691 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3692
Hangbin Liu72f6d712018-04-17 14:11:28 +08003693 if (data[IFLA_VXLAN_TTL_INHERIT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003694 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_TTL_INHERIT,
3695 VXLAN_F_TTL_INHERIT, changelink, false,
3696 extack);
3697 if (err)
3698 return err;
3699
Hangbin Liu72f6d712018-04-17 14:11:28 +08003700 }
3701
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003702 if (data[IFLA_VXLAN_LABEL])
3703 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3704 IPV6_FLOWLABEL_MASK;
3705
3706 if (data[IFLA_VXLAN_LEARNING]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003707 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LEARNING,
3708 VXLAN_F_LEARN, changelink, true,
3709 extack);
3710 if (err)
3711 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003712 } else if (!changelink) {
3713 /* default to learn on a new device */
3714 conf->flags |= VXLAN_F_LEARN;
3715 }
3716
Ido Schimmel40051c42018-11-21 08:02:40 +00003717 if (data[IFLA_VXLAN_AGEING])
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003718 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003719
3720 if (data[IFLA_VXLAN_PROXY]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003721 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_PROXY,
3722 VXLAN_F_PROXY, changelink, false,
3723 extack);
3724 if (err)
3725 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003726 }
3727
3728 if (data[IFLA_VXLAN_RSC]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003729 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_RSC,
3730 VXLAN_F_RSC, changelink, false,
3731 extack);
3732 if (err)
3733 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003734 }
3735
3736 if (data[IFLA_VXLAN_L2MISS]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003737 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L2MISS,
3738 VXLAN_F_L2MISS, changelink, false,
3739 extack);
3740 if (err)
3741 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003742 }
3743
3744 if (data[IFLA_VXLAN_L3MISS]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003745 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L3MISS,
3746 VXLAN_F_L3MISS, changelink, false,
3747 extack);
3748 if (err)
3749 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003750 }
3751
3752 if (data[IFLA_VXLAN_LIMIT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003753 if (changelink) {
3754 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LIMIT],
3755 "Cannot change limit");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003756 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003757 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003758 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3759 }
3760
3761 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003762 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_COLLECT_METADATA,
3763 VXLAN_F_COLLECT_METADATA, changelink, false,
3764 extack);
3765 if (err)
3766 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003767 }
3768
3769 if (data[IFLA_VXLAN_PORT_RANGE]) {
3770 if (!changelink) {
3771 const struct ifla_vxlan_port_range *p
3772 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3773 conf->port_min = ntohs(p->low);
3774 conf->port_max = ntohs(p->high);
3775 } else {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003776 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3777 "Cannot change port range");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003778 return -EOPNOTSUPP;
3779 }
3780 }
3781
3782 if (data[IFLA_VXLAN_PORT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003783 if (changelink) {
3784 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT],
3785 "Cannot change port");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003786 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003787 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003788 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3789 }
3790
3791 if (data[IFLA_VXLAN_UDP_CSUM]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003792 if (changelink) {
3793 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_UDP_CSUM],
3794 "Cannot change UDP_CSUM flag");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003795 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003796 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003797 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3798 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3799 }
3800
3801 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003802 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
3803 VXLAN_F_UDP_ZERO_CSUM6_TX, changelink,
3804 false, extack);
3805 if (err)
3806 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003807 }
3808
3809 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003810 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
3811 VXLAN_F_UDP_ZERO_CSUM6_RX, changelink,
3812 false, extack);
3813 if (err)
3814 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003815 }
3816
3817 if (data[IFLA_VXLAN_REMCSUM_TX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003818 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_TX,
3819 VXLAN_F_REMCSUM_TX, changelink, false,
3820 extack);
3821 if (err)
3822 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003823 }
3824
3825 if (data[IFLA_VXLAN_REMCSUM_RX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003826 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_RX,
3827 VXLAN_F_REMCSUM_RX, changelink, false,
3828 extack);
3829 if (err)
3830 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003831 }
3832
3833 if (data[IFLA_VXLAN_GBP]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003834 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GBP,
3835 VXLAN_F_GBP, changelink, false, extack);
3836 if (err)
3837 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003838 }
3839
3840 if (data[IFLA_VXLAN_GPE]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003841 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GPE,
3842 VXLAN_F_GPE, changelink, false,
3843 extack);
3844 if (err)
3845 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003846 }
3847
3848 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003849 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_NOPARTIAL,
3850 VXLAN_F_REMCSUM_NOPARTIAL, changelink,
3851 false, extack);
3852 if (err)
3853 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003854 }
3855
3856 if (tb[IFLA_MTU]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003857 if (changelink) {
3858 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3859 "Cannot change mtu");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003860 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003861 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003862 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3863 }
3864
Stefano Briviob4d306972018-11-08 12:19:16 +01003865 if (data[IFLA_VXLAN_DF])
3866 conf->df = nla_get_u8(data[IFLA_VXLAN_DF]);
3867
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003868 return 0;
3869}
3870
3871static int vxlan_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02003872 struct nlattr *tb[], struct nlattr *data[],
3873 struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003874{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003875 struct vxlan_config conf;
3876 int err;
3877
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003878 err = vxlan_nl2conf(tb, data, dev, &conf, false, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003879 if (err)
3880 return err;
3881
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003882 return __vxlan_dev_create(src_net, dev, &conf, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00003883}
3884
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003885static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +02003886 struct nlattr *data[],
3887 struct netlink_ext_ack *extack)
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003888{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003889 struct vxlan_dev *vxlan = netdev_priv(dev);
3890 struct vxlan_rdst *dst = &vxlan->default_dst;
Petr Machata8db9427d52019-01-16 23:06:39 +00003891 struct net_device *lowerdev;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003892 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003893 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003894
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003895 err = vxlan_nl2conf(tb, data, dev, &conf, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003896 if (err)
3897 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003898
Petr Machata8db9427d52019-01-16 23:06:39 +00003899 err = vxlan_config_validate(vxlan->net, &conf, &lowerdev,
3900 vxlan, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003901 if (err)
3902 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003903
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003904 /* handle default dst entry */
Petr Machata038a5a92019-01-16 23:06:41 +00003905 if (!vxlan_addr_equal(&conf.remote_ip, &dst->remote_ip)) {
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003906 spin_lock_bh(&vxlan->hash_lock);
Petr Machata038a5a92019-01-16 23:06:41 +00003907 if (!vxlan_addr_any(&conf.remote_ip)) {
Petr Machatace5e098f2018-12-18 13:16:02 +00003908 err = vxlan_fdb_update(vxlan, all_zeros_mac,
Petr Machata038a5a92019-01-16 23:06:41 +00003909 &conf.remote_ip,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003910 NUD_REACHABLE | NUD_PERMANENT,
Petr Machatace5e098f2018-12-18 13:16:02 +00003911 NLM_F_APPEND | NLM_F_CREATE,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003912 vxlan->cfg.dst_port,
Petr Machata038a5a92019-01-16 23:06:41 +00003913 conf.vni, conf.vni,
3914 conf.remote_ifindex,
Petr Machata4c59b7d2019-01-16 23:06:54 +00003915 NTF_SELF, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003916 if (err) {
3917 spin_unlock_bh(&vxlan->hash_lock);
3918 return err;
3919 }
3920 }
Petr Machata1cdc98c2019-01-16 23:06:43 +00003921 if (!vxlan_addr_any(&dst->remote_ip))
3922 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3923 dst->remote_ip,
3924 vxlan->cfg.dst_port,
3925 dst->remote_vni,
3926 dst->remote_vni,
3927 dst->remote_ifindex,
3928 true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003929 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003930 }
3931
Petr Machata038a5a92019-01-16 23:06:41 +00003932 if (conf.age_interval != vxlan->cfg.age_interval)
3933 mod_timer(&vxlan->age_timer, jiffies);
3934
3935 vxlan_config_apply(dev, &conf, lowerdev, vxlan->net, true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003936 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003937}
3938
stephen hemmingerd3428942012-10-01 12:32:35 +00003939static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3940{
3941 struct vxlan_dev *vxlan = netdev_priv(dev);
3942
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003943 vxlan_flush(vxlan, true);
3944
Tom Herbert58ce31c2015-08-19 17:07:33 -07003945 gro_cells_destroy(&vxlan->gro_cells);
stephen hemminger553675f2013-05-16 11:35:20 +00003946 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003947 unregister_netdevice_queue(dev, head);
3948}
3949
3950static size_t vxlan_get_size(const struct net_device *dev)
3951{
3952
3953 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003954 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003955 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003956 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003957 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
Hangbin Liu8fd78062018-09-26 10:35:42 +08003958 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL_INHERIT */
stephen hemmingerd3428942012-10-01 12:32:35 +00003959 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Stefano Briviob4d306972018-11-08 12:19:16 +01003960 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_DF */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003961 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003962 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003963 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3964 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3965 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3966 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003967 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003968 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3969 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003970 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003971 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3972 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3973 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3974 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003975 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3976 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003977 0;
3978}
3979
3980static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3981{
3982 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003983 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003984 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003985 .low = htons(vxlan->cfg.port_min),
3986 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003987 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003988
Jiri Benc54bfd872016-02-16 21:58:58 +01003989 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003990 goto nla_put_failure;
3991
Cong Wange4c7ed42013-08-31 13:44:33 +08003992 if (!vxlan_addr_any(&dst->remote_ip)) {
3993 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003994 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3995 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003996 goto nla_put_failure;
3997#if IS_ENABLED(CONFIG_IPV6)
3998 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003999 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
4000 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004001 goto nla_put_failure;
4002#endif
4003 }
4004 }
stephen hemmingerd3428942012-10-01 12:32:35 +00004005
Atzm Watanabec7995c42013-04-16 02:50:52 +00004006 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00004007 goto nla_put_failure;
4008
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004009 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
4010 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02004011 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004012 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004013 goto nla_put_failure;
4014#if IS_ENABLED(CONFIG_IPV6)
4015 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02004016 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004017 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004018 goto nla_put_failure;
4019#endif
4020 }
4021 }
stephen hemmingerd3428942012-10-01 12:32:35 +00004022
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004023 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
Hangbin Liu8fd78062018-09-26 10:35:42 +08004024 nla_put_u8(skb, IFLA_VXLAN_TTL_INHERIT,
4025 !!(vxlan->cfg.flags & VXLAN_F_TTL_INHERIT)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004026 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Stefano Briviob4d306972018-11-08 12:19:16 +01004027 nla_put_u8(skb, IFLA_VXLAN_DF, vxlan->cfg.df) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01004028 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004029 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004030 !!(vxlan->cfg.flags & VXLAN_F_LEARN)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004031 nla_put_u8(skb, IFLA_VXLAN_PROXY,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004032 !!(vxlan->cfg.flags & VXLAN_F_PROXY)) ||
4033 nla_put_u8(skb, IFLA_VXLAN_RSC,
4034 !!(vxlan->cfg.flags & VXLAN_F_RSC)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004035 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004036 !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004037 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004038 !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07004039 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004040 !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004041 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
4042 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
4043 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004044 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004045 !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004046 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004047 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004048 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004049 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08004050 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004051 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08004052 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004053 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00004054 goto nla_put_failure;
4055
stephen hemminger05f47d62012-10-09 20:35:50 +00004056 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
4057 goto nla_put_failure;
4058
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004059 if (vxlan->cfg.flags & VXLAN_F_GBP &&
Thomas Graf35114942015-01-15 03:53:55 +01004060 nla_put_flag(skb, IFLA_VXLAN_GBP))
4061 goto nla_put_failure;
4062
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004063 if (vxlan->cfg.flags & VXLAN_F_GPE &&
Jiri Bence1e53142016-04-05 14:47:13 +02004064 nla_put_flag(skb, IFLA_VXLAN_GPE))
4065 goto nla_put_failure;
4066
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004067 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL &&
Tom Herbert0ace2ca2015-02-10 16:30:32 -08004068 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
4069 goto nla_put_failure;
4070
stephen hemmingerd3428942012-10-01 12:32:35 +00004071 return 0;
4072
4073nla_put_failure:
4074 return -EMSGSIZE;
4075}
4076
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004077static struct net *vxlan_get_link_net(const struct net_device *dev)
4078{
4079 struct vxlan_dev *vxlan = netdev_priv(dev);
4080
4081 return vxlan->net;
4082}
4083
stephen hemmingerd3428942012-10-01 12:32:35 +00004084static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
4085 .kind = "vxlan",
4086 .maxtype = IFLA_VXLAN_MAX,
4087 .policy = vxlan_policy,
4088 .priv_size = sizeof(struct vxlan_dev),
4089 .setup = vxlan_setup,
4090 .validate = vxlan_validate,
4091 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08004092 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00004093 .dellink = vxlan_dellink,
4094 .get_size = vxlan_get_size,
4095 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004096 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004097};
4098
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004099struct net_device *vxlan_dev_create(struct net *net, const char *name,
4100 u8 name_assign_type,
4101 struct vxlan_config *conf)
4102{
4103 struct nlattr *tb[IFLA_MAX + 1];
4104 struct net_device *dev;
4105 int err;
4106
4107 memset(&tb, 0, sizeof(tb));
4108
4109 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08004110 &vxlan_link_ops, tb, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004111 if (IS_ERR(dev))
4112 return dev;
4113
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07004114 err = __vxlan_dev_create(net, dev, conf, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004115 if (err < 0) {
4116 free_netdev(dev);
4117 return ERR_PTR(err);
4118 }
4119
4120 err = rtnl_configure_link(dev, NULL);
4121 if (err < 0) {
4122 LIST_HEAD(list_kill);
4123
4124 vxlan_dellink(dev, &list_kill);
4125 unregister_netdevice_many(&list_kill);
4126 return ERR_PTR(err);
4127 }
4128
4129 return dev;
4130}
4131EXPORT_SYMBOL_GPL(vxlan_dev_create);
4132
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004133static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
4134 struct net_device *dev)
4135{
4136 struct vxlan_dev *vxlan, *next;
4137 LIST_HEAD(list_kill);
4138
4139 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4140 struct vxlan_rdst *dst = &vxlan->default_dst;
4141
4142 /* In case we created vxlan device with carrier
4143 * and we loose the carrier due to module unload
4144 * we also need to remove vxlan device. In other
4145 * cases, it's not necessary and remote_ifindex
4146 * is 0 here, so no matches.
4147 */
4148 if (dst->remote_ifindex == dev->ifindex)
4149 vxlan_dellink(vxlan->dev, &list_kill);
4150 }
4151
4152 unregister_netdevice_many(&list_kill);
4153}
4154
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004155static int vxlan_netdevice_event(struct notifier_block *unused,
4156 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004157{
4158 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004159 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004160
Sabrina Dubroca04584952017-07-21 12:49:33 +02004161 if (event == NETDEV_UNREGISTER) {
4162 vxlan_offload_rx_ports(dev, false);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004163 vxlan_handle_lowerdev_unregister(vn, dev);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004164 } else if (event == NETDEV_REGISTER) {
4165 vxlan_offload_rx_ports(dev, true);
4166 } else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
4167 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02004168 vxlan_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004169 }
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004170
4171 return NOTIFY_DONE;
4172}
4173
4174static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004175 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004176};
4177
Petr Machata0efe1172018-10-17 08:53:26 +00004178static void
4179vxlan_fdb_offloaded_set(struct net_device *dev,
4180 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4181{
4182 struct vxlan_dev *vxlan = netdev_priv(dev);
4183 struct vxlan_rdst *rdst;
4184 struct vxlan_fdb *f;
4185
4186 spin_lock_bh(&vxlan->hash_lock);
4187
4188 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4189 if (!f)
4190 goto out;
4191
4192 rdst = vxlan_fdb_find_rdst(f, &fdb_info->remote_ip,
4193 fdb_info->remote_port,
4194 fdb_info->remote_vni,
4195 fdb_info->remote_ifindex);
4196 if (!rdst)
4197 goto out;
4198
4199 rdst->offloaded = fdb_info->offloaded;
4200
4201out:
4202 spin_unlock_bh(&vxlan->hash_lock);
4203}
4204
Petr Machata5728ae02018-11-21 08:02:39 +00004205static int
4206vxlan_fdb_external_learn_add(struct net_device *dev,
4207 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4208{
4209 struct vxlan_dev *vxlan = netdev_priv(dev);
Petr Machata4c59b7d2019-01-16 23:06:54 +00004210 struct netlink_ext_ack *extack;
Petr Machata5728ae02018-11-21 08:02:39 +00004211 int err;
4212
Petr Machata4c59b7d2019-01-16 23:06:54 +00004213 extack = switchdev_notifier_info_to_extack(&fdb_info->info);
4214
Petr Machata5728ae02018-11-21 08:02:39 +00004215 spin_lock_bh(&vxlan->hash_lock);
4216 err = vxlan_fdb_update(vxlan, fdb_info->eth_addr, &fdb_info->remote_ip,
4217 NUD_REACHABLE,
4218 NLM_F_CREATE | NLM_F_REPLACE,
4219 fdb_info->remote_port,
4220 fdb_info->vni,
4221 fdb_info->remote_vni,
4222 fdb_info->remote_ifindex,
4223 NTF_USE | NTF_SELF | NTF_EXT_LEARNED,
Petr Machata4c59b7d2019-01-16 23:06:54 +00004224 false, extack);
Petr Machata5728ae02018-11-21 08:02:39 +00004225 spin_unlock_bh(&vxlan->hash_lock);
4226
4227 return err;
4228}
4229
4230static int
4231vxlan_fdb_external_learn_del(struct net_device *dev,
4232 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4233{
4234 struct vxlan_dev *vxlan = netdev_priv(dev);
4235 struct vxlan_fdb *f;
4236 int err = 0;
4237
4238 spin_lock_bh(&vxlan->hash_lock);
4239
4240 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4241 if (!f)
4242 err = -ENOENT;
4243 else if (f->flags & NTF_EXT_LEARNED)
4244 err = __vxlan_fdb_delete(vxlan, fdb_info->eth_addr,
4245 fdb_info->remote_ip,
4246 fdb_info->remote_port,
4247 fdb_info->vni,
4248 fdb_info->remote_vni,
4249 fdb_info->remote_ifindex,
4250 false);
4251
4252 spin_unlock_bh(&vxlan->hash_lock);
4253
4254 return err;
4255}
4256
Petr Machata0efe1172018-10-17 08:53:26 +00004257static int vxlan_switchdev_event(struct notifier_block *unused,
4258 unsigned long event, void *ptr)
4259{
4260 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
Petr Machata5728ae02018-11-21 08:02:39 +00004261 struct switchdev_notifier_vxlan_fdb_info *fdb_info;
4262 int err = 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004263
4264 switch (event) {
4265 case SWITCHDEV_VXLAN_FDB_OFFLOADED:
4266 vxlan_fdb_offloaded_set(dev, ptr);
4267 break;
Petr Machata5728ae02018-11-21 08:02:39 +00004268 case SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE:
4269 fdb_info = ptr;
4270 err = vxlan_fdb_external_learn_add(dev, fdb_info);
4271 if (err) {
4272 err = notifier_from_errno(err);
4273 break;
4274 }
4275 fdb_info->offloaded = true;
4276 vxlan_fdb_offloaded_set(dev, fdb_info);
4277 break;
4278 case SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE:
4279 fdb_info = ptr;
4280 err = vxlan_fdb_external_learn_del(dev, fdb_info);
4281 if (err) {
4282 err = notifier_from_errno(err);
4283 break;
4284 }
4285 fdb_info->offloaded = false;
4286 vxlan_fdb_offloaded_set(dev, fdb_info);
4287 break;
Petr Machata0efe1172018-10-17 08:53:26 +00004288 }
4289
Petr Machata5728ae02018-11-21 08:02:39 +00004290 return err;
Petr Machata0efe1172018-10-17 08:53:26 +00004291}
4292
4293static struct notifier_block vxlan_switchdev_notifier_block __read_mostly = {
4294 .notifier_call = vxlan_switchdev_event,
4295};
4296
stephen hemmingerd3428942012-10-01 12:32:35 +00004297static __net_init int vxlan_init_net(struct net *net)
4298{
4299 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00004300 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00004301
stephen hemminger553675f2013-05-16 11:35:20 +00004302 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07004303 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00004304
stephen hemminger553675f2013-05-16 11:35:20 +00004305 for (h = 0; h < PORT_HASH_SIZE; ++h)
4306 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00004307
4308 return 0;
4309}
4310
Haishuang Yan57b61122017-12-16 17:54:49 +08004311static void vxlan_destroy_tunnels(struct net *net, struct list_head *head)
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004312{
4313 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4314 struct vxlan_dev *vxlan, *next;
4315 struct net_device *dev, *aux;
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004316 unsigned int h;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004317
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004318 for_each_netdev_safe(net, dev, aux)
4319 if (dev->rtnl_link_ops == &vxlan_link_ops)
Haishuang Yan57b61122017-12-16 17:54:49 +08004320 unregister_netdevice_queue(dev, head);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004321
4322 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4323 /* If vxlan->dev is in the same netns, it has already been added
4324 * to the list by the previous loop.
4325 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07004326 if (!net_eq(dev_net(vxlan->dev), net)) {
4327 gro_cells_destroy(&vxlan->gro_cells);
Haishuang Yan57b61122017-12-16 17:54:49 +08004328 unregister_netdevice_queue(vxlan->dev, head);
Tom Herbert58ce31c2015-08-19 17:07:33 -07004329 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004330 }
4331
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004332 for (h = 0; h < PORT_HASH_SIZE; ++h)
4333 WARN_ON_ONCE(!hlist_empty(&vn->sock_list[h]));
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004334}
4335
Haishuang Yan57b61122017-12-16 17:54:49 +08004336static void __net_exit vxlan_exit_batch_net(struct list_head *net_list)
4337{
4338 struct net *net;
4339 LIST_HEAD(list);
4340
4341 rtnl_lock();
4342 list_for_each_entry(net, net_list, exit_list)
4343 vxlan_destroy_tunnels(net, &list);
4344
4345 unregister_netdevice_many(&list);
4346 rtnl_unlock();
4347}
4348
stephen hemmingerd3428942012-10-01 12:32:35 +00004349static struct pernet_operations vxlan_net_ops = {
4350 .init = vxlan_init_net,
Haishuang Yan57b61122017-12-16 17:54:49 +08004351 .exit_batch = vxlan_exit_batch_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004352 .id = &vxlan_net_id,
4353 .size = sizeof(struct vxlan_net),
4354};
4355
4356static int __init vxlan_init_module(void)
4357{
4358 int rc;
4359
4360 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
4361
Daniel Borkmann783c1462014-01-22 21:07:53 +01004362 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004363 if (rc)
4364 goto out1;
4365
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004366 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004367 if (rc)
4368 goto out2;
4369
Petr Machata0efe1172018-10-17 08:53:26 +00004370 rc = register_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004371 if (rc)
4372 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00004373
Petr Machata0efe1172018-10-17 08:53:26 +00004374 rc = rtnl_link_register(&vxlan_link_ops);
4375 if (rc)
4376 goto out4;
4377
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004378 return 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004379out4:
4380 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004381out3:
4382 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004383out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01004384 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004385out1:
4386 return rc;
4387}
Cong Wang7332a132013-05-27 22:35:53 +00004388late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00004389
4390static void __exit vxlan_cleanup_module(void)
4391{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07004392 rtnl_link_unregister(&vxlan_link_ops);
Petr Machata0efe1172018-10-17 08:53:26 +00004393 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004394 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004395 unregister_pernet_subsys(&vxlan_net_ops);
4396 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00004397}
4398module_exit(vxlan_cleanup_module);
4399
4400MODULE_LICENSE("GPL");
4401MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004402MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08004403MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00004404MODULE_ALIAS_RTNL_LINK("vxlan");