blob: d76dfed8d9bbef1d1ae8470686e417af2e531ac8 [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
Eric Dumazet59cbf562019-03-10 10:36:40 -07001734 rcu_read_lock();
1735
1736 if (unlikely(!(vxlan->dev->flags & IFF_UP))) {
1737 rcu_read_unlock();
1738 atomic_long_inc(&vxlan->dev->rx_dropped);
1739 goto drop;
1740 }
1741
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001742 stats = this_cpu_ptr(vxlan->dev->tstats);
1743 u64_stats_update_begin(&stats->syncp);
1744 stats->rx_packets++;
1745 stats->rx_bytes += skb->len;
1746 u64_stats_update_end(&stats->syncp);
1747
1748 gro_cells_receive(&vxlan->gro_cells, skb);
Eric Dumazet59cbf562019-03-10 10:36:40 -07001749
1750 rcu_read_unlock();
1751
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001752 return 0;
1753
1754drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001755 /* Consume bad packet */
1756 kfree_skb(skb);
1757 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001758}
1759
Stefano Brivioc3a43b92018-11-08 12:19:15 +01001760/* Callback from net/ipv{4,6}/udp.c to check that we have a VNI for errors */
1761static int vxlan_err_lookup(struct sock *sk, struct sk_buff *skb)
1762{
1763 struct vxlan_dev *vxlan;
1764 struct vxlan_sock *vs;
1765 struct vxlanhdr *hdr;
1766 __be32 vni;
1767
1768 if (skb->len < VXLAN_HLEN)
1769 return -EINVAL;
1770
1771 hdr = vxlan_hdr(skb);
1772
1773 if (!(hdr->vx_flags & VXLAN_HF_VNI))
1774 return -EINVAL;
1775
1776 vs = rcu_dereference_sk_user_data(sk);
1777 if (!vs)
1778 return -ENOENT;
1779
1780 vni = vxlan_vni(hdr->vx_vni);
1781 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni);
1782 if (!vxlan)
1783 return -ENOENT;
1784
1785 return 0;
1786}
1787
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001788static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
David Stevense4f67ad2012-11-20 02:50:14 +00001789{
1790 struct vxlan_dev *vxlan = netdev_priv(dev);
1791 struct arphdr *parp;
1792 u8 *arpptr, *sha;
1793 __be32 sip, tip;
1794 struct neighbour *n;
1795
1796 if (dev->flags & IFF_NOARP)
1797 goto out;
1798
1799 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1800 dev->stats.tx_dropped++;
1801 goto out;
1802 }
1803 parp = arp_hdr(skb);
1804
1805 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1806 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1807 parp->ar_pro != htons(ETH_P_IP) ||
1808 parp->ar_op != htons(ARPOP_REQUEST) ||
1809 parp->ar_hln != dev->addr_len ||
1810 parp->ar_pln != 4)
1811 goto out;
1812 arpptr = (u8 *)parp + sizeof(struct arphdr);
1813 sha = arpptr;
1814 arpptr += dev->addr_len; /* sha */
1815 memcpy(&sip, arpptr, sizeof(sip));
1816 arpptr += sizeof(sip);
1817 arpptr += dev->addr_len; /* tha */
1818 memcpy(&tip, arpptr, sizeof(tip));
1819
1820 if (ipv4_is_loopback(tip) ||
1821 ipv4_is_multicast(tip))
1822 goto out;
1823
1824 n = neigh_lookup(&arp_tbl, &tip, dev);
1825
1826 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001827 struct vxlan_fdb *f;
1828 struct sk_buff *reply;
1829
1830 if (!(n->nud_state & NUD_CONNECTED)) {
1831 neigh_release(n);
1832 goto out;
1833 }
1834
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001835 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wange4c7ed42013-08-31 13:44:33 +08001836 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001837 /* bridge-local neighbor */
1838 neigh_release(n);
1839 goto out;
1840 }
1841
1842 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1843 n->ha, sha);
1844
1845 neigh_release(n);
1846
David Stevens73461352014-03-18 12:32:29 -04001847 if (reply == NULL)
1848 goto out;
1849
David Stevense4f67ad2012-11-20 02:50:14 +00001850 skb_reset_mac_header(reply);
1851 __skb_pull(reply, skb_network_offset(reply));
1852 reply->ip_summed = CHECKSUM_UNNECESSARY;
1853 reply->pkt_type = PACKET_HOST;
1854
1855 if (netif_rx_ni(reply) == NET_RX_DROP)
1856 dev->stats.rx_dropped++;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001857 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001858 union vxlan_addr ipa = {
1859 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001860 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001861 };
1862
1863 vxlan_ip_miss(dev, &ipa);
1864 }
David Stevense4f67ad2012-11-20 02:50:14 +00001865out:
1866 consume_skb(skb);
1867 return NETDEV_TX_OK;
1868}
1869
Cong Wangf564f452013-08-31 13:44:36 +08001870#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001871static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1872 struct neighbour *n, bool isrouter)
1873{
1874 struct net_device *dev = request->dev;
1875 struct sk_buff *reply;
1876 struct nd_msg *ns, *na;
1877 struct ipv6hdr *pip6;
1878 u8 *daddr;
1879 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1880 int ns_olen;
1881 int i, len;
1882
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001883 if (dev == NULL || !pskb_may_pull(request, request->len))
David Stevens4b29dba2014-03-24 10:39:58 -04001884 return NULL;
1885
1886 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1887 sizeof(*na) + na_olen + dev->needed_tailroom;
1888 reply = alloc_skb(len, GFP_ATOMIC);
1889 if (reply == NULL)
1890 return NULL;
1891
1892 reply->protocol = htons(ETH_P_IPV6);
1893 reply->dev = dev;
1894 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1895 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001896 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001897
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001898 ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
David Stevens4b29dba2014-03-24 10:39:58 -04001899
1900 daddr = eth_hdr(request)->h_source;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001901 ns_olen = request->len - skb_network_offset(request) -
1902 sizeof(struct ipv6hdr) - sizeof(*ns);
David Stevens4b29dba2014-03-24 10:39:58 -04001903 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1904 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1905 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1906 break;
1907 }
1908 }
1909
1910 /* Ethernet header */
1911 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1912 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1913 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1914 reply->protocol = htons(ETH_P_IPV6);
1915
1916 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001917 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001918 skb_put(reply, sizeof(struct ipv6hdr));
1919
1920 /* IPv6 header */
1921
1922 pip6 = ipv6_hdr(reply);
1923 memset(pip6, 0, sizeof(struct ipv6hdr));
1924 pip6->version = 6;
1925 pip6->priority = ipv6_hdr(request)->priority;
1926 pip6->nexthdr = IPPROTO_ICMPV6;
1927 pip6->hop_limit = 255;
1928 pip6->daddr = ipv6_hdr(request)->saddr;
1929 pip6->saddr = *(struct in6_addr *)n->primary_key;
1930
1931 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001932 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001933
David Stevens4b29dba2014-03-24 10:39:58 -04001934 /* Neighbor Advertisement */
Johannes Bergb080db52017-06-16 14:29:19 +02001935 na = skb_put_zero(reply, sizeof(*na) + na_olen);
David Stevens4b29dba2014-03-24 10:39:58 -04001936 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1937 na->icmph.icmp6_router = isrouter;
1938 na->icmph.icmp6_override = 1;
1939 na->icmph.icmp6_solicited = 1;
1940 na->target = ns->target;
1941 ether_addr_copy(&na->opt[2], n->ha);
1942 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1943 na->opt[1] = na_olen >> 3;
1944
1945 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1946 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1947 csum_partial(na, sizeof(*na)+na_olen, 0));
1948
1949 pip6->payload_len = htons(sizeof(*na)+na_olen);
1950
1951 skb_push(reply, sizeof(struct ipv6hdr));
1952
1953 reply->ip_summed = CHECKSUM_UNNECESSARY;
1954
1955 return reply;
1956}
1957
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001958static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
Cong Wangf564f452013-08-31 13:44:36 +08001959{
1960 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu8dcd81a2017-02-20 08:41:16 -08001961 const struct in6_addr *daddr;
Xin Long8bff36852017-11-11 19:58:50 +08001962 const struct ipv6hdr *iphdr;
David Stevens4b29dba2014-03-24 10:39:58 -04001963 struct inet6_dev *in6_dev;
Xin Long8bff36852017-11-11 19:58:50 +08001964 struct neighbour *n;
1965 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001966
1967 in6_dev = __in6_dev_get(dev);
1968 if (!in6_dev)
1969 goto out;
1970
Cong Wangf564f452013-08-31 13:44:36 +08001971 iphdr = ipv6_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001972 daddr = &iphdr->daddr;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001973 msg = (struct nd_msg *)(iphdr + 1);
Cong Wangf564f452013-08-31 13:44:36 +08001974
David Stevens4b29dba2014-03-24 10:39:58 -04001975 if (ipv6_addr_loopback(daddr) ||
1976 ipv6_addr_is_multicast(&msg->target))
1977 goto out;
1978
1979 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001980
1981 if (n) {
1982 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001983 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001984
1985 if (!(n->nud_state & NUD_CONNECTED)) {
1986 neigh_release(n);
1987 goto out;
1988 }
1989
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001990 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wangf564f452013-08-31 13:44:36 +08001991 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1992 /* bridge-local neighbor */
1993 neigh_release(n);
1994 goto out;
1995 }
1996
David Stevens4b29dba2014-03-24 10:39:58 -04001997 reply = vxlan_na_create(skb, n,
1998 !!(f ? f->flags & NTF_ROUTER : 0));
1999
Cong Wangf564f452013-08-31 13:44:36 +08002000 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04002001
2002 if (reply == NULL)
2003 goto out;
2004
2005 if (netif_rx_ni(reply) == NET_RX_DROP)
2006 dev->stats.rx_dropped++;
2007
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002008 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04002009 union vxlan_addr ipa = {
2010 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002011 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04002012 };
2013
Cong Wangf564f452013-08-31 13:44:36 +08002014 vxlan_ip_miss(dev, &ipa);
2015 }
2016
2017out:
2018 consume_skb(skb);
2019 return NETDEV_TX_OK;
2020}
2021#endif
2022
David Stevense4f67ad2012-11-20 02:50:14 +00002023static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
2024{
2025 struct vxlan_dev *vxlan = netdev_priv(dev);
2026 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00002027
2028 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
2029 return false;
2030
2031 n = NULL;
2032 switch (ntohs(eth_hdr(skb)->h_proto)) {
2033 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08002034 {
2035 struct iphdr *pip;
2036
David Stevense4f67ad2012-11-20 02:50:14 +00002037 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
2038 return false;
2039 pip = ip_hdr(skb);
2040 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002041 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08002042 union vxlan_addr ipa = {
2043 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002044 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08002045 };
2046
2047 vxlan_ip_miss(dev, &ipa);
2048 return false;
2049 }
2050
David Stevense4f67ad2012-11-20 02:50:14 +00002051 break;
Cong Wange15a00a2013-08-31 13:44:34 +08002052 }
2053#if IS_ENABLED(CONFIG_IPV6)
2054 case ETH_P_IPV6:
2055 {
2056 struct ipv6hdr *pip6;
2057
2058 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
2059 return false;
2060 pip6 = ipv6_hdr(skb);
2061 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002062 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange15a00a2013-08-31 13:44:34 +08002063 union vxlan_addr ipa = {
2064 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002065 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08002066 };
2067
2068 vxlan_ip_miss(dev, &ipa);
2069 return false;
2070 }
2071
2072 break;
2073 }
2074#endif
David Stevense4f67ad2012-11-20 02:50:14 +00002075 default:
2076 return false;
2077 }
2078
2079 if (n) {
2080 bool diff;
2081
Joe Perches7367d0b2013-09-01 11:51:23 -07002082 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00002083 if (diff) {
2084 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
2085 dev->addr_len);
2086 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
2087 }
2088 neigh_release(n);
2089 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08002090 }
2091
David Stevense4f67ad2012-11-20 02:50:14 +00002092 return false;
2093}
2094
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002095static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01002096 struct vxlan_metadata *md)
2097{
2098 struct vxlanhdr_gbp *gbp;
2099
Thomas Grafdb79a622015-02-04 17:00:04 +01002100 if (!md->gbp)
2101 return;
2102
Thomas Graf35114942015-01-15 03:53:55 +01002103 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01002104 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01002105
2106 if (md->gbp & VXLAN_GBP_DONT_LEARN)
2107 gbp->dont_learn = 1;
2108
2109 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
2110 gbp->policy_applied = 1;
2111
2112 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
2113}
2114
Jiri Bence1e53142016-04-05 14:47:13 +02002115static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
2116 __be16 protocol)
2117{
2118 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
2119
2120 gpe->np_applied = 1;
Jiri Bencfa20e0e2017-08-28 21:43:22 +02002121 gpe->next_protocol = tun_p_from_eth_p(protocol);
2122 if (!gpe->next_protocol)
2123 return -EPFNOSUPPORT;
2124 return 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002125}
2126
Jiri Bencf491e562016-02-02 18:09:16 +01002127static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
2128 int iphdr_len, __be32 vni,
2129 struct vxlan_metadata *md, u32 vxflags,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002130 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08002131{
Cong Wange4c7ed42013-08-31 13:44:33 +08002132 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08002133 int min_headroom;
2134 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08002135 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02002136 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08002137
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002138 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08002139 skb->ip_summed == CHECKSUM_PARTIAL) {
2140 int csum_start = skb_checksum_start_offset(skb);
2141
2142 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
2143 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
2144 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00002145 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08002146 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08002147 }
2148
Cong Wange4c7ed42013-08-31 13:44:33 +08002149 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
pravin shelar4a4f86c2016-11-13 20:43:52 -08002150 + VXLAN_HLEN + iphdr_len;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07002151
2152 /* Need space for new headers (invalidates iph ptr) */
2153 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02002154 if (unlikely(err))
pravin shelarc46b7892016-11-13 20:43:54 -08002155 return err;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07002156
Alexander Duyckaed069d2016-04-14 15:33:37 -04002157 err = iptunnel_handle_offloads(skb, type);
2158 if (err)
pravin shelarc46b7892016-11-13 20:43:54 -08002159 return err;
Jesse Grossb736a622015-04-09 11:19:14 -07002160
Johannes Bergd58ff352017-06-16 14:29:23 +02002161 vxh = __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01002162 vxh->vx_flags = VXLAN_HF_VNI;
2163 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07002164
Tom Herbertdfd86452015-01-12 17:00:38 -08002165 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01002166 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08002167
Jiri Benc54bfd872016-02-16 21:58:58 +01002168 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
2169 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
2170 vxh->vx_flags |= VXLAN_HF_RCO;
Tom Herbertdfd86452015-01-12 17:00:38 -08002171
2172 if (!skb_is_gso(skb)) {
2173 skb->ip_summed = CHECKSUM_NONE;
2174 skb->encapsulation = 0;
2175 }
2176 }
2177
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002178 if (vxflags & VXLAN_F_GBP)
2179 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02002180 if (vxflags & VXLAN_F_GPE) {
2181 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
2182 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002183 return err;
Jiri Bence1e53142016-04-05 14:47:13 +02002184 inner_protocol = skb->protocol;
2185 }
Thomas Graf35114942015-01-15 03:53:55 +01002186
Jiri Bence1e53142016-04-05 14:47:13 +02002187 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08002188 return 0;
Pravin B Shelar49560532013-08-19 11:23:17 -07002189}
Pravin B Shelar49560532013-08-19 11:23:17 -07002190
pravin shelar655c3de2016-11-13 20:43:55 -08002191static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
2192 struct vxlan_sock *sock4,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002193 struct sk_buff *skb, int oif, u8 tos,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002194 __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002195 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002196 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01002197{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002198 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002199 struct rtable *rt = NULL;
2200 struct flowi4 fl4;
2201
pravin shelar655c3de2016-11-13 20:43:55 -08002202 if (!sock4)
2203 return ERR_PTR(-EIO);
2204
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002205 if (tos && !info)
2206 use_cache = false;
2207 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002208 rt = dst_cache_get_ip4(dst_cache, saddr);
2209 if (rt)
2210 return rt;
2211 }
2212
Jiri Benc1a8496b2016-02-02 18:09:14 +01002213 memset(&fl4, 0, sizeof(fl4));
2214 fl4.flowi4_oif = oif;
2215 fl4.flowi4_tos = RT_TOS(tos);
2216 fl4.flowi4_mark = skb->mark;
2217 fl4.flowi4_proto = IPPROTO_UDP;
2218 fl4.daddr = daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07002219 fl4.saddr = *saddr;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002220 fl4.fl4_dport = dport;
2221 fl4.fl4_sport = sport;
Jiri Benc1a8496b2016-02-02 18:09:14 +01002222
2223 rt = ip_route_output_key(vxlan->net, &fl4);
pravin shelar655c3de2016-11-13 20:43:55 -08002224 if (likely(!IS_ERR(rt))) {
2225 if (rt->dst.dev == dev) {
2226 netdev_dbg(dev, "circular route to %pI4\n", &daddr);
2227 ip_rt_put(rt);
2228 return ERR_PTR(-ELOOP);
2229 }
2230
Jiri Benc1a8496b2016-02-02 18:09:14 +01002231 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002232 if (use_cache)
2233 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
pravin shelar655c3de2016-11-13 20:43:55 -08002234 } else {
2235 netdev_dbg(dev, "no route to %pI4\n", &daddr);
2236 return ERR_PTR(-ENETUNREACH);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002237 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002238 return rt;
2239}
2240
Jiri Bence5d4b292015-12-07 13:04:30 +01002241#if IS_ENABLED(CONFIG_IPV6)
2242static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
pravin shelar655c3de2016-11-13 20:43:55 -08002243 struct net_device *dev,
pravin shelar03dc52a2016-11-13 20:43:53 -08002244 struct vxlan_sock *sock6,
Daniel Borkmann14006152016-03-04 15:15:08 +01002245 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002246 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01002247 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002248 struct in6_addr *saddr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002249 __be16 dport, __be16 sport,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002250 struct dst_cache *dst_cache,
2251 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01002252{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002253 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002254 struct dst_entry *ndst;
2255 struct flowi6 fl6;
2256 int err;
2257
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002258 if (!sock6)
2259 return ERR_PTR(-EIO);
2260
Daniel Borkmann14006152016-03-04 15:15:08 +01002261 if (tos && !info)
2262 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002263 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002264 ndst = dst_cache_get_ip6(dst_cache, saddr);
2265 if (ndst)
2266 return ndst;
2267 }
2268
Jiri Bence5d4b292015-12-07 13:04:30 +01002269 memset(&fl6, 0, sizeof(fl6));
2270 fl6.flowi6_oif = oif;
2271 fl6.daddr = *daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07002272 fl6.saddr = *saddr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01002273 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01002274 fl6.flowi6_mark = skb->mark;
2275 fl6.flowi6_proto = IPPROTO_UDP;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002276 fl6.fl6_dport = dport;
2277 fl6.fl6_sport = sport;
Jiri Bence5d4b292015-12-07 13:04:30 +01002278
2279 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002280 sock6->sock->sk,
Jiri Bence5d4b292015-12-07 13:04:30 +01002281 &ndst, &fl6);
pravin shelar655c3de2016-11-13 20:43:55 -08002282 if (unlikely(err < 0)) {
2283 netdev_dbg(dev, "no route to %pI6\n", daddr);
2284 return ERR_PTR(-ENETUNREACH);
2285 }
2286
2287 if (unlikely(ndst->dev == dev)) {
2288 netdev_dbg(dev, "circular route to %pI6\n", daddr);
2289 dst_release(ndst);
2290 return ERR_PTR(-ELOOP);
2291 }
Jiri Bence5d4b292015-12-07 13:04:30 +01002292
2293 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002294 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002295 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01002296 return ndst;
2297}
2298#endif
2299
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002300/* Bypass encapsulation if the destination is local */
2301static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002302 struct vxlan_dev *dst_vxlan, __be32 vni)
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002303{
Li RongQing8f849852014-01-04 13:57:59 +08002304 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08002305 union vxlan_addr loopback;
2306 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Eric Dumazet4179cb52019-02-07 12:27:38 -08002307 struct net_device *dev;
Li RongQingce6502a2014-10-16 08:49:41 +08002308 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002309
Li RongQing8f849852014-01-04 13:57:59 +08002310 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
2311 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002312 skb->pkt_type = PACKET_HOST;
2313 skb->encapsulation = 0;
2314 skb->dev = dst_vxlan->dev;
2315 __skb_pull(skb, skb_network_offset(skb));
2316
Cong Wange4c7ed42013-08-31 13:44:33 +08002317 if (remote_ip->sa.sa_family == AF_INET) {
2318 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
2319 loopback.sa.sa_family = AF_INET;
2320#if IS_ENABLED(CONFIG_IPV6)
2321 } else {
2322 loopback.sin6.sin6_addr = in6addr_loopback;
2323 loopback.sa.sa_family = AF_INET6;
2324#endif
2325 }
2326
Eric Dumazet4179cb52019-02-07 12:27:38 -08002327 rcu_read_lock();
2328 dev = skb->dev;
2329 if (unlikely(!(dev->flags & IFF_UP))) {
2330 kfree_skb(skb);
2331 goto drop;
2332 }
2333
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002334 if (dst_vxlan->cfg.flags & VXLAN_F_LEARN)
Eric Dumazet4179cb52019-02-07 12:27:38 -08002335 vxlan_snoop(dev, &loopback, eth_hdr(skb)->h_source, 0, vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002336
2337 u64_stats_update_begin(&tx_stats->syncp);
2338 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002339 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002340 u64_stats_update_end(&tx_stats->syncp);
2341
2342 if (netif_rx(skb) == NET_RX_SUCCESS) {
2343 u64_stats_update_begin(&rx_stats->syncp);
2344 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002345 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002346 u64_stats_update_end(&rx_stats->syncp);
2347 } else {
Eric Dumazet4179cb52019-02-07 12:27:38 -08002348drop:
Li RongQingce6502a2014-10-16 08:49:41 +08002349 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002350 }
Eric Dumazet4179cb52019-02-07 12:27:38 -08002351 rcu_read_unlock();
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002352}
2353
pravin shelarfee1fad2016-11-13 20:43:56 -08002354static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002355 struct vxlan_dev *vxlan,
2356 union vxlan_addr *daddr,
2357 __be16 dst_port, int dst_ifindex, __be32 vni,
2358 struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002359 u32 rt_flags)
2360{
2361#if IS_ENABLED(CONFIG_IPV6)
2362 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2363 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2364 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2365 */
2366 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2367#endif
2368 /* Bypass encapsulation if the destination is local */
2369 if (rt_flags & RTCF_LOCAL &&
2370 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2371 struct vxlan_dev *dst_vxlan;
2372
2373 dst_release(dst);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002374 dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni,
pravin shelarfee1fad2016-11-13 20:43:56 -08002375 daddr->sa.sa_family, dst_port,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002376 vxlan->cfg.flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002377 if (!dst_vxlan) {
2378 dev->stats.tx_errors++;
2379 kfree_skb(skb);
2380
2381 return -ENOENT;
2382 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002383 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002384 return 1;
2385 }
2386
2387 return 0;
2388}
2389
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002390static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002391 __be32 default_vni, struct vxlan_rdst *rdst,
2392 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002393{
Paolo Abenid71785f2016-02-12 15:43:57 +01002394 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002395 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002396 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002397 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002398 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002399 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002400 struct vxlan_metadata _md;
2401 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002402 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002403 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002404 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002405 __u8 tos, ttl;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002406 int ifindex;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07002407 int err;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002408 u32 flags = vxlan->cfg.flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002409 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002410 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002411
Jiri Benc61adedf2015-08-20 13:56:25 +02002412 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002413
Thomas Grafee122c72015-07-21 10:43:58 +02002414 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002415 dst = &rdst->remote_ip;
2416 if (vxlan_addr_any(dst)) {
2417 if (did_rsc) {
2418 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002419 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002420 return;
2421 }
2422 goto drop;
2423 }
2424
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002425 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002426 vni = (rdst->remote_vni) ? : default_vni;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002427 ifindex = rdst->remote_ifindex;
Brian Russell11586322017-02-24 17:47:11 +00002428 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002429 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002430 md->gbp = skb->mark;
Hangbin Liu72f6d712018-04-17 14:11:28 +08002431 if (flags & VXLAN_F_TTL_INHERIT) {
2432 ttl = ip_tunnel_get_ttl(old_iph, skb);
2433 } else {
2434 ttl = vxlan->cfg.ttl;
2435 if (!ttl && vxlan_addr_multicast(dst))
2436 ttl = 1;
2437 }
pravin shelar0770b532016-11-13 20:43:57 -08002438
2439 tos = vxlan->cfg.tos;
2440 if (tos == 1)
2441 tos = ip_tunnel_get_dsfield(old_iph, skb);
2442
2443 if (dst->sa.sa_family == AF_INET)
2444 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2445 else
2446 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2447 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002448 } else {
2449 if (!info) {
2450 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2451 dev->name);
2452 goto drop;
2453 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002454 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002455 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002456 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002457 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2458 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002459 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002460 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2461 }
Thomas Grafee122c72015-07-21 10:43:58 +02002462 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002463 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2464 vni = tunnel_id_to_key32(info->key.tun_id);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002465 ifindex = 0;
Paolo Abenid71785f2016-02-12 15:43:57 +01002466 dst_cache = &info->dst_cache;
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -07002467 if (info->options_len &&
2468 info->key.tun_flags & TUNNEL_VXLAN_OPT)
pravin shelar0770b532016-11-13 20:43:57 -08002469 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002470 ttl = info->key.ttl;
2471 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002472 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002473 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002474 }
pravin shelar0770b532016-11-13 20:43:57 -08002475 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2476 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002477
Jakub Kicinski56de8592017-02-24 11:43:36 -08002478 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002479 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002480 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002481 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002482 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002483
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002484 if (!ifindex)
2485 ifindex = sock4->sock->sk->sk_bound_dev_if;
2486
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002487 rt = vxlan_get_route(vxlan, dev, sock4, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002488 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002489 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002490 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002491 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002492 if (IS_ERR(rt)) {
2493 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002494 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002495 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002496
pravin shelarfee1fad2016-11-13 20:43:56 -08002497 if (!info) {
Stefano Briviob4d306972018-11-08 12:19:16 +01002498 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002499 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002500 dst_port, ifindex, vni,
2501 &rt->dst, rt->rt_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002502 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002503 goto out_unlock;
Stefano Briviob4d306972018-11-08 12:19:16 +01002504
2505 if (vxlan->cfg.df == VXLAN_DF_SET) {
2506 df = htons(IP_DF);
2507 } else if (vxlan->cfg.df == VXLAN_DF_INHERIT) {
2508 struct ethhdr *eth = eth_hdr(skb);
2509
2510 if (ntohs(eth->h_proto) == ETH_P_IPV6 ||
2511 (ntohs(eth->h_proto) == ETH_P_IP &&
2512 old_iph->frag_off & htons(IP_DF)))
2513 df = htons(IP_DF);
2514 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002515 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002516 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002517 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002518
pravin shelarc46b7892016-11-13 20:43:54 -08002519 ndst = &rt->dst;
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002520 skb_tunnel_check_pmtu(skb, ndst, VXLAN_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002521
Cong Wange4c7ed42013-08-31 13:44:33 +08002522 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2523 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002524 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002525 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002526 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002527 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002528
Brian Russell11586322017-02-24 17:47:11 +00002529 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002530 dst->sin.sin_addr.s_addr, tos, ttl, df,
2531 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002532#if IS_ENABLED(CONFIG_IPV6)
2533 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002534 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002535
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002536 if (!ifindex)
2537 ifindex = sock6->sock->sk->sk_bound_dev_if;
2538
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002539 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002540 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002541 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002542 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002543 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002544 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002545 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002546 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002547 goto tx_error;
2548 }
pravin shelar655c3de2016-11-13 20:43:55 -08002549
pravin shelarfee1fad2016-11-13 20:43:56 -08002550 if (!info) {
2551 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002552
pravin shelarfee1fad2016-11-13 20:43:56 -08002553 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002554 dst_port, ifindex, vni,
2555 ndst, rt6i_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002556 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002557 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002558 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002559
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002560 skb_tunnel_check_pmtu(skb, ndst, VXLAN6_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002561
Daniel Borkmann14006152016-03-04 15:15:08 +01002562 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002563 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002564 skb_scrub_packet(skb, xnet);
2565 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002566 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002567 if (err < 0)
2568 goto tx_error;
2569
pravin shelar0770b532016-11-13 20:43:57 -08002570 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002571 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002572 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002573 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002574#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002575 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002576out_unlock:
2577 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002578 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002579
2580drop:
2581 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002582 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002583 return;
2584
2585tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002586 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002587 if (err == -ELOOP)
2588 dev->stats.collisions++;
2589 else if (err == -ENETUNREACH)
2590 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002591 dst_release(ndst);
2592 dev->stats.tx_errors++;
2593 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002594}
2595
David Stevens66817122013-03-15 04:35:51 +00002596/* Transmit local packets over Vxlan
2597 *
2598 * Outer IP header inherits ECN and DF from inner header.
2599 * Outer UDP destination is the VXLAN assigned port.
2600 * source port is based on hash of flow
2601 */
2602static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2603{
2604 struct vxlan_dev *vxlan = netdev_priv(dev);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002605 struct vxlan_rdst *rdst, *fdst = NULL;
Xin Long8bff36852017-11-11 19:58:50 +08002606 const struct ip_tunnel_info *info;
2607 bool did_rsc = false;
David Stevens66817122013-03-15 04:35:51 +00002608 struct vxlan_fdb *f;
Xin Long8bff36852017-11-11 19:58:50 +08002609 struct ethhdr *eth;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002610 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002611
Jiri Benc61adedf2015-08-20 13:56:25 +02002612 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002613
David Stevens66817122013-03-15 04:35:51 +00002614 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002615
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002616 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002617 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2618 info->mode & IP_TUNNEL_INFO_TX) {
2619 vni = tunnel_id_to_key32(info->key.tun_id);
2620 } else {
2621 if (info && info->mode & IP_TUNNEL_INFO_TX)
2622 vxlan_xmit_one(skb, dev, vni, NULL, false);
2623 else
2624 kfree_skb(skb);
2625 return NETDEV_TX_OK;
2626 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002627 }
2628
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002629 if (vxlan->cfg.flags & VXLAN_F_PROXY) {
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002630 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002631 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002632 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002633#if IS_ENABLED(CONFIG_IPV6)
Xin Long8bff36852017-11-11 19:58:50 +08002634 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
2635 pskb_may_pull(skb, sizeof(struct ipv6hdr) +
2636 sizeof(struct nd_msg)) &&
2637 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2638 struct nd_msg *m = (struct nd_msg *)(ipv6_hdr(skb) + 1);
2639
2640 if (m->icmph.icmp6_code == 0 &&
2641 m->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002642 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002643 }
2644#endif
2645 }
David Stevens66817122013-03-15 04:35:51 +00002646
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002647 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002648 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002649 did_rsc = false;
2650
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002651 if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002652 (ntohs(eth->h_proto) == ETH_P_IP ||
2653 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002654 did_rsc = route_shortcircuit(dev, skb);
2655 if (did_rsc)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002656 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002657 }
2658
David Stevens66817122013-03-15 04:35:51 +00002659 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002660 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002661 if (f == NULL) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002662 if ((vxlan->cfg.flags & VXLAN_F_L2MISS) &&
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002663 !is_multicast_ether_addr(eth->h_dest))
2664 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002665
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002666 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002667 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002668 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002669 }
David Stevens66817122013-03-15 04:35:51 +00002670 }
2671
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002672 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2673 struct sk_buff *skb1;
2674
Eric Dumazet8f646c92014-01-06 09:54:31 -08002675 if (!fdst) {
2676 fdst = rdst;
2677 continue;
2678 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002679 skb1 = skb_clone(skb, GFP_ATOMIC);
2680 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002681 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002682 }
2683
Eric Dumazet8f646c92014-01-06 09:54:31 -08002684 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002685 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002686 else
2687 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002688 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002689}
2690
stephen hemmingerd3428942012-10-01 12:32:35 +00002691/* Walk the forwarding table and purge stale entries */
Kees Cookdf7e8282017-10-04 16:26:59 -07002692static void vxlan_cleanup(struct timer_list *t)
stephen hemmingerd3428942012-10-01 12:32:35 +00002693{
Kees Cookdf7e8282017-10-04 16:26:59 -07002694 struct vxlan_dev *vxlan = from_timer(vxlan, t, age_timer);
stephen hemmingerd3428942012-10-01 12:32:35 +00002695 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2696 unsigned int h;
2697
2698 if (!netif_running(vxlan->dev))
2699 return;
2700
stephen hemmingerd3428942012-10-01 12:32:35 +00002701 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2702 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002703
Litao Jiaof98ec782019-03-06 12:01:48 +08002704 spin_lock(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002705 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2706 struct vxlan_fdb *f
2707 = container_of(p, struct vxlan_fdb, hlist);
2708 unsigned long timeout;
2709
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002710 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002711 continue;
2712
Roopa Prabhudef499c2017-03-27 15:46:41 -07002713 if (f->flags & NTF_EXT_LEARNED)
2714 continue;
2715
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002716 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002717 if (time_before_eq(timeout, jiffies)) {
2718 netdev_dbg(vxlan->dev,
2719 "garbage collect %pM\n",
2720 f->eth_addr);
2721 f->state = NUD_STALE;
Petr Machata0e6160f2018-11-21 08:02:35 +00002722 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002723 } else if (time_before(timeout, next_timer))
2724 next_timer = timeout;
2725 }
Litao Jiaof98ec782019-03-06 12:01:48 +08002726 spin_unlock(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002727 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002728
2729 mod_timer(&vxlan->age_timer, next_timer);
2730}
2731
Mark Blocha53cb292017-06-02 03:24:08 +03002732static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2733{
2734 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2735
2736 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002737 hlist_del_init_rcu(&vxlan->hlist4.hlist);
2738#if IS_ENABLED(CONFIG_IPV6)
2739 hlist_del_init_rcu(&vxlan->hlist6.hlist);
2740#endif
Mark Blocha53cb292017-06-02 03:24:08 +03002741 spin_unlock(&vn->sock_lock);
2742}
2743
Jiri Benc69e76662017-07-02 19:00:57 +02002744static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan,
2745 struct vxlan_dev_node *node)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002746{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002747 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002748 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002749
Jiri Benc69e76662017-07-02 19:00:57 +02002750 node->vxlan = vxlan;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002751 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002752 hlist_add_head_rcu(&node->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002753 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002754}
2755
stephen hemmingerd3428942012-10-01 12:32:35 +00002756/* Setup stats when device is created */
2757static int vxlan_init(struct net_device *dev)
2758{
WANG Cong1c213bd2014-02-13 11:46:28 -08002759 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002760 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002761 return -ENOMEM;
2762
2763 return 0;
2764}
2765
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002766static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002767{
2768 struct vxlan_fdb *f;
2769
2770 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002771 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002772 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00002773 vxlan_fdb_destroy(vxlan, f, true, true);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002774 spin_unlock_bh(&vxlan->hash_lock);
2775}
2776
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002777static void vxlan_uninit(struct net_device *dev)
2778{
2779 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002780
Stefano Brivioad6c9982019-03-08 16:40:57 +01002781 gro_cells_destroy(&vxlan->gro_cells);
2782
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002783 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002784
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002785 free_percpu(dev->tstats);
2786}
2787
stephen hemmingerd3428942012-10-01 12:32:35 +00002788/* Start ageing timer and join group when device is brought up */
2789static int vxlan_open(struct net_device *dev)
2790{
2791 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002792 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002793
Jiri Benc205f3562015-09-24 13:50:01 +02002794 ret = vxlan_sock_add(vxlan);
2795 if (ret < 0)
2796 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002797
Gao feng79d4a942013-12-10 16:37:32 +08002798 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002799 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002800 if (ret == -EADDRINUSE)
2801 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002802 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002803 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002804 return ret;
2805 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002806 }
2807
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002808 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002809 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2810
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002811 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002812}
2813
2814/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002815static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002816{
Cong Wang31fec5a2013-05-27 22:35:52 +00002817 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002818
2819 spin_lock_bh(&vxlan->hash_lock);
2820 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2821 struct hlist_node *p, *n;
2822 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2823 struct vxlan_fdb *f
2824 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002825 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2826 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002827 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2828 if (!is_zero_ether_addr(f->eth_addr))
Petr Machata0e6160f2018-11-21 08:02:35 +00002829 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002830 }
2831 }
2832 spin_unlock_bh(&vxlan->hash_lock);
2833}
2834
2835/* Cleanup timer and forwarding table on shutdown */
2836static int vxlan_stop(struct net_device *dev)
2837{
2838 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002839 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002840 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002841
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002842 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002843 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002844 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002845
2846 del_timer_sync(&vxlan->age_timer);
2847
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002848 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002849 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002850
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002851 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002852}
2853
stephen hemmingerd3428942012-10-01 12:32:35 +00002854/* Stub, nothing needs to be done. */
2855static void vxlan_set_multicast_list(struct net_device *dev)
2856{
2857}
2858
Daniel Borkmann345010b2013-12-18 00:21:08 +01002859static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2860{
2861 struct vxlan_dev *vxlan = netdev_priv(dev);
2862 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002863 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2864 dst->remote_ifindex);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002865 bool use_ipv6 = !!(vxlan->cfg.flags & VXLAN_F_IPV6);
Jarod Wilson91572082016-10-20 13:55:20 -04002866
2867 /* This check is different than dev->max_mtu, because it looks at
2868 * the lowerdev->mtu, rather than the static dev->max_mtu
2869 */
2870 if (lowerdev) {
2871 int max_mtu = lowerdev->mtu -
2872 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2873 if (new_mtu > max_mtu)
2874 return -EINVAL;
2875 }
2876
2877 dev->mtu = new_mtu;
2878 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002879}
2880
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002881static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2882{
2883 struct vxlan_dev *vxlan = netdev_priv(dev);
2884 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2885 __be16 sport, dport;
2886
2887 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2888 vxlan->cfg.port_max, true);
2889 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2890
Jiri Benc239e9442015-12-07 13:04:31 +01002891 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002892 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002893 struct rtable *rt;
2894
pravin shelar655c3de2016-11-13 20:43:55 -08002895 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002896 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002897 &info->key.u.ipv4.src, dport, sport,
2898 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002899 if (IS_ERR(rt))
2900 return PTR_ERR(rt);
2901 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002902 } else {
2903#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002904 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002905 struct dst_entry *ndst;
2906
pravin shelar655c3de2016-11-13 20:43:55 -08002907 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002908 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002909 &info->key.u.ipv6.src, dport, sport,
2910 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002911 if (IS_ERR(ndst))
2912 return PTR_ERR(ndst);
2913 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002914#else /* !CONFIG_IPV6 */
2915 return -EPFNOSUPPORT;
2916#endif
2917 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002918 info->key.tp_src = sport;
2919 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002920 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002921}
2922
Jiri Benc0c867c92016-04-05 14:47:10 +02002923static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002924 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002925 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002926 .ndo_open = vxlan_open,
2927 .ndo_stop = vxlan_stop,
2928 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002929 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002930 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002931 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002932 .ndo_validate_addr = eth_validate_addr,
2933 .ndo_set_mac_address = eth_mac_addr,
2934 .ndo_fdb_add = vxlan_fdb_add,
2935 .ndo_fdb_del = vxlan_fdb_delete,
2936 .ndo_fdb_dump = vxlan_fdb_dump,
Roopa Prabhu474c3c82018-12-15 22:35:10 -08002937 .ndo_fdb_get = vxlan_fdb_get,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002938 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
Andy Roulin8f1af752019-02-22 18:06:38 +00002939 .ndo_change_proto_down = dev_change_proto_down_generic,
stephen hemmingerd3428942012-10-01 12:32:35 +00002940};
2941
Jiri Bence1e53142016-04-05 14:47:13 +02002942static const struct net_device_ops vxlan_netdev_raw_ops = {
2943 .ndo_init = vxlan_init,
2944 .ndo_uninit = vxlan_uninit,
2945 .ndo_open = vxlan_open,
2946 .ndo_stop = vxlan_stop,
2947 .ndo_start_xmit = vxlan_xmit,
2948 .ndo_get_stats64 = ip_tunnel_get_stats64,
2949 .ndo_change_mtu = vxlan_change_mtu,
2950 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2951};
2952
stephen hemmingerd3428942012-10-01 12:32:35 +00002953/* Info for udev, that this is a virtual tunnel endpoint */
2954static struct device_type vxlan_type = {
2955 .name = "vxlan",
2956};
2957
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002958/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002959 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002960 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002961 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002962static void vxlan_offload_rx_ports(struct net_device *dev, bool push)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002963{
2964 struct vxlan_sock *vs;
2965 struct net *net = dev_net(dev);
2966 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002967 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002968
2969 spin_lock(&vn->sock_lock);
2970 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002971 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2972 unsigned short type;
2973
2974 if (vs->flags & VXLAN_F_GPE)
2975 type = UDP_TUNNEL_TYPE_VXLAN_GPE;
2976 else
2977 type = UDP_TUNNEL_TYPE_VXLAN;
2978
2979 if (push)
2980 udp_tunnel_push_rx_port(dev, vs->sock, type);
2981 else
2982 udp_tunnel_drop_rx_port(dev, vs->sock, type);
2983 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002984 }
2985 spin_unlock(&vn->sock_lock);
2986}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002987
stephen hemmingerd3428942012-10-01 12:32:35 +00002988/* Initialize the device structure. */
2989static void vxlan_setup(struct net_device *dev)
2990{
2991 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002992 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002993
Jiri Benc65226ef2016-04-28 16:36:30 +02002994 eth_hw_addr_random(dev);
2995 ether_setup(dev);
2996
David S. Millercf124db2017-05-08 12:52:56 -04002997 dev->needs_free_netdev = true;
stephen hemmingerd3428942012-10-01 12:32:35 +00002998 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2999
stephen hemmingerd3428942012-10-01 12:32:35 +00003000 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00003001 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00003002 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00003003 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00003004
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07003005 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00003006 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00003007 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07003008 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02003009 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00003010
Matthias Schiffera9853432017-06-19 10:03:55 +02003011 /* MTU range: 68 - 65535 */
3012 dev->min_mtu = ETH_MIN_MTU;
3013 dev->max_mtu = ETH_MAX_MTU;
3014
stephen hemminger553675f2013-05-16 11:35:20 +00003015 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003016 spin_lock_init(&vxlan->hash_lock);
3017
Kees Cookdf7e8282017-10-04 16:26:59 -07003018 timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE);
stephen hemmingerd3428942012-10-01 12:32:35 +00003019
3020 vxlan->dev = dev;
3021
Tom Herbert58ce31c2015-08-19 17:07:33 -07003022 gro_cells_init(&vxlan->gro_cells, dev);
3023
stephen hemmingerd3428942012-10-01 12:32:35 +00003024 for (h = 0; h < FDB_HASH_SIZE; ++h)
3025 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
3026}
3027
Jiri Benc0c867c92016-04-05 14:47:10 +02003028static void vxlan_ether_setup(struct net_device *dev)
3029{
Jiri Benc0c867c92016-04-05 14:47:10 +02003030 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
3031 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
3032 dev->netdev_ops = &vxlan_netdev_ether_ops;
3033}
3034
Jiri Bence1e53142016-04-05 14:47:13 +02003035static void vxlan_raw_setup(struct net_device *dev)
3036{
Jiri Benc65226ef2016-04-28 16:36:30 +02003037 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02003038 dev->type = ARPHRD_NONE;
3039 dev->hard_header_len = 0;
3040 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02003041 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
3042 dev->netdev_ops = &vxlan_netdev_raw_ops;
3043}
3044
stephen hemmingerd3428942012-10-01 12:32:35 +00003045static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
3046 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00003047 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003048 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003049 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
3050 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003051 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003052 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
3053 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003054 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003055 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
3056 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
3057 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00003058 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00003059 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
3060 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
3061 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
3062 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07003063 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00003064 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08003065 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
3066 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
3067 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08003068 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
3069 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01003070 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02003071 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003072 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
Hangbin Liu72f6d712018-04-17 14:11:28 +08003073 [IFLA_VXLAN_TTL_INHERIT] = { .type = NLA_FLAG },
Stefano Briviob4d306972018-11-08 12:19:16 +01003074 [IFLA_VXLAN_DF] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003075};
3076
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02003077static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[],
3078 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003079{
3080 if (tb[IFLA_ADDRESS]) {
3081 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003082 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3083 "Provided link layer address is not Ethernet");
stephen hemmingerd3428942012-10-01 12:32:35 +00003084 return -EINVAL;
3085 }
3086
3087 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003088 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3089 "Provided Ethernet address is not unicast");
stephen hemmingerd3428942012-10-01 12:32:35 +00003090 return -EADDRNOTAVAIL;
3091 }
3092 }
3093
Matthias Schiffera9853432017-06-19 10:03:55 +02003094 if (tb[IFLA_MTU]) {
Matthias Schiffer019b13a2017-06-27 14:42:43 +02003095 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
Matthias Schiffera9853432017-06-19 10:03:55 +02003096
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003097 if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU) {
3098 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3099 "MTU must be between 68 and 65535");
Matthias Schiffera9853432017-06-19 10:03:55 +02003100 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003101 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003102 }
3103
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003104 if (!data) {
3105 NL_SET_ERR_MSG(extack,
3106 "Required attributes not provided to perform the operation");
stephen hemmingerd3428942012-10-01 12:32:35 +00003107 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003108 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003109
3110 if (data[IFLA_VXLAN_ID]) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003111 u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
3112
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003113 if (id >= VXLAN_N_VID) {
3114 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID],
3115 "VXLAN ID must be lower than 16777216");
stephen hemmingerd3428942012-10-01 12:32:35 +00003116 return -ERANGE;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003117 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003118 }
3119
stephen hemminger05f47d62012-10-09 20:35:50 +00003120 if (data[IFLA_VXLAN_PORT_RANGE]) {
3121 const struct ifla_vxlan_port_range *p
3122 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3123
3124 if (ntohs(p->high) < ntohs(p->low)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003125 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3126 "Invalid source port range");
stephen hemminger05f47d62012-10-09 20:35:50 +00003127 return -EINVAL;
3128 }
3129 }
3130
Stefano Briviob4d306972018-11-08 12:19:16 +01003131 if (data[IFLA_VXLAN_DF]) {
3132 enum ifla_vxlan_df df = nla_get_u8(data[IFLA_VXLAN_DF]);
3133
3134 if (df < 0 || df > VXLAN_DF_MAX) {
3135 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_DF],
3136 "Invalid DF attribute");
3137 return -EINVAL;
3138 }
3139 }
3140
stephen hemmingerd3428942012-10-01 12:32:35 +00003141 return 0;
3142}
3143
Yan Burman1b13c972013-01-29 23:43:07 +00003144static void vxlan_get_drvinfo(struct net_device *netdev,
3145 struct ethtool_drvinfo *drvinfo)
3146{
3147 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
3148 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
3149}
3150
3151static const struct ethtool_ops vxlan_ethtool_ops = {
3152 .get_drvinfo = vxlan_get_drvinfo,
3153 .get_link = ethtool_op_get_link,
3154};
3155
Tom Herbert3ee64f32014-07-13 19:49:42 -07003156static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003157 __be16 port, u32 flags, int ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +00003158{
Cong Wange4c7ed42013-08-31 13:44:33 +08003159 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003160 struct udp_port_cfg udp_conf;
3161 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08003162
Tom Herbert3ee64f32014-07-13 19:49:42 -07003163 memset(&udp_conf, 0, sizeof(udp_conf));
3164
3165 if (ipv6) {
3166 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003167 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08003168 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02003169 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003170 } else {
3171 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08003172 }
3173
Tom Herbert3ee64f32014-07-13 19:49:42 -07003174 udp_conf.local_udp_port = port;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003175 udp_conf.bind_ifindex = ifindex;
Cong Wange4c7ed42013-08-31 13:44:33 +08003176
Tom Herbert3ee64f32014-07-13 19:49:42 -07003177 /* Open UDP socket */
3178 err = udp_sock_create(net, &udp_conf, &sock);
3179 if (err < 0)
3180 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08003181
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003182 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08003183}
3184
3185/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02003186static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003187 __be16 port, u32 flags,
3188 int ifindex)
Cong Wange4c7ed42013-08-31 13:44:33 +08003189{
3190 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3191 struct vxlan_sock *vs;
3192 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00003193 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003194 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00003195
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02003196 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08003197 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00003198 return ERR_PTR(-ENOMEM);
3199
3200 for (h = 0; h < VNI_HASH_SIZE; ++h)
3201 INIT_HLIST_HEAD(&vs->vni_list[h]);
3202
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003203 sock = vxlan_create_sock(net, ipv6, port, flags, ifindex);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003204 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00003205 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08003206 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00003207 }
3208
Cong Wange4c7ed42013-08-31 13:44:33 +08003209 vs->sock = sock;
Reshetova, Elena66af8462017-07-04 15:52:59 +03003210 refcount_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08003211 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00003212
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003213 spin_lock(&vn->sock_lock);
3214 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07003215 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07003216 (vs->flags & VXLAN_F_GPE) ?
3217 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07003218 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003219 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00003220
3221 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07003222 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07003223 tunnel_cfg.sk_user_data = vs;
3224 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01003225 tunnel_cfg.encap_rcv = vxlan_rcv;
Stefano Brivioc3a43b92018-11-08 12:19:15 +01003226 tunnel_cfg.encap_err_lookup = vxlan_err_lookup;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003227 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07003228 tunnel_cfg.gro_receive = vxlan_gro_receive;
3229 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003230
3231 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08003232
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003233 return vs;
3234}
stephen hemminger553675f2013-05-16 11:35:20 +00003235
Jiri Bencb1be00a2015-09-24 13:50:02 +02003236static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003237{
Jiri Benc205f3562015-09-24 13:50:01 +02003238 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
3239 struct vxlan_sock *vs = NULL;
Jiri Benc69e76662017-07-02 19:00:57 +02003240 struct vxlan_dev_node *node;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003241 int l3mdev_index = 0;
3242
3243 if (vxlan->cfg.remote_ifindex)
3244 l3mdev_index = l3mdev_master_upper_ifindex_by_index(
3245 vxlan->net, vxlan->cfg.remote_ifindex);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003246
Jiri Benc205f3562015-09-24 13:50:01 +02003247 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003248 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003249 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003250 vxlan->cfg.dst_port, vxlan->cfg.flags,
3251 l3mdev_index);
Reshetova, Elena66af8462017-07-04 15:52:59 +03003252 if (vs && !refcount_inc_not_zero(&vs->refcnt)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003253 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003254 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003255 }
3256 spin_unlock(&vn->sock_lock);
3257 }
Jiri Benc205f3562015-09-24 13:50:01 +02003258 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003259 vs = vxlan_socket_create(vxlan->net, ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003260 vxlan->cfg.dst_port, vxlan->cfg.flags,
3261 l3mdev_index);
Jiri Benc205f3562015-09-24 13:50:01 +02003262 if (IS_ERR(vs))
3263 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003264#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc69e76662017-07-02 19:00:57 +02003265 if (ipv6) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003266 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003267 node = &vxlan->hlist6;
3268 } else
Jiri Bencb1be00a2015-09-24 13:50:02 +02003269#endif
Jiri Benc69e76662017-07-02 19:00:57 +02003270 {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003271 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003272 node = &vxlan->hlist4;
3273 }
3274 vxlan_vs_add_dev(vs, vxlan, node);
Jiri Benc205f3562015-09-24 13:50:01 +02003275 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00003276}
3277
Jiri Bencb1be00a2015-09-24 13:50:02 +02003278static int vxlan_sock_add(struct vxlan_dev *vxlan)
3279{
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003280 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
3281 bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata;
Jiri Bencd074bf92017-04-27 21:24:35 +02003282 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003283 int ret = 0;
3284
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003285 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003286#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003287 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02003288 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02003289 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02003290 if (ret < 0 && ret != -EAFNOSUPPORT)
3291 ipv4 = false;
3292 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02003293#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02003294 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003295 ret = __vxlan_sock_add(vxlan, false);
3296 if (ret < 0)
3297 vxlan_sock_release(vxlan);
3298 return ret;
3299}
3300
Matthias Schiffera9853432017-06-19 10:03:55 +02003301static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf,
3302 struct net_device **lower,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003303 struct vxlan_dev *old,
3304 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003305{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01003306 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Matthias Schiffera9853432017-06-19 10:03:55 +02003307 struct vxlan_dev *tmp;
3308 bool use_ipv6 = false;
3309
3310 if (conf->flags & VXLAN_F_GPE) {
3311 /* For now, allow GPE only together with
3312 * COLLECT_METADATA. This can be relaxed later; in such
3313 * case, the other side of the PtP link will have to be
3314 * provided.
3315 */
3316 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
3317 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003318 NL_SET_ERR_MSG(extack,
3319 "VXLAN GPE does not support this combination of attributes");
Matthias Schiffera9853432017-06-19 10:03:55 +02003320 return -EINVAL;
3321 }
3322 }
3323
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003324 if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) {
3325 /* Unless IPv6 is explicitly requested, assume IPv4 */
Matthias Schiffera9853432017-06-19 10:03:55 +02003326 conf->remote_ip.sa.sa_family = AF_INET;
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003327 conf->saddr.sa.sa_family = AF_INET;
3328 } else if (!conf->remote_ip.sa.sa_family) {
3329 conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family;
3330 } else if (!conf->saddr.sa.sa_family) {
3331 conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family;
3332 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003333
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003334 if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family) {
3335 NL_SET_ERR_MSG(extack,
3336 "Local and remote address must be from the same family");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003337 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003338 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003339
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003340 if (vxlan_addr_multicast(&conf->saddr)) {
3341 NL_SET_ERR_MSG(extack, "Local address cannot be multicast");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003342 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003343 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003344
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003345 if (conf->saddr.sa.sa_family == AF_INET6) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003346 if (!IS_ENABLED(CONFIG_IPV6)) {
3347 NL_SET_ERR_MSG(extack,
3348 "IPv6 support not enabled in the kernel");
Matthias Schiffera9853432017-06-19 10:03:55 +02003349 return -EPFNOSUPPORT;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003350 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003351 use_ipv6 = true;
3352 conf->flags |= VXLAN_F_IPV6;
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003353
3354 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) {
3355 int local_type =
3356 ipv6_addr_type(&conf->saddr.sin6.sin6_addr);
3357 int remote_type =
3358 ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr);
3359
3360 if (local_type & IPV6_ADDR_LINKLOCAL) {
3361 if (!(remote_type & IPV6_ADDR_LINKLOCAL) &&
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003362 (remote_type != IPV6_ADDR_ANY)) {
3363 NL_SET_ERR_MSG(extack,
3364 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003365 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003366 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003367
3368 conf->flags |= VXLAN_F_IPV6_LINKLOCAL;
3369 } else {
3370 if (remote_type ==
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003371 (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL)) {
3372 NL_SET_ERR_MSG(extack,
3373 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003374 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003375 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003376
3377 conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL;
3378 }
3379 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003380 }
3381
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003382 if (conf->label && !use_ipv6) {
3383 NL_SET_ERR_MSG(extack,
3384 "Label attribute only applies to IPv6 VXLAN devices");
Matthias Schiffera9853432017-06-19 10:03:55 +02003385 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003386 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003387
3388 if (conf->remote_ifindex) {
3389 struct net_device *lowerdev;
3390
3391 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003392 if (!lowerdev) {
3393 NL_SET_ERR_MSG(extack,
3394 "Invalid local interface, device not found");
Matthias Schiffera9853432017-06-19 10:03:55 +02003395 return -ENODEV;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003396 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003397
3398#if IS_ENABLED(CONFIG_IPV6)
3399 if (use_ipv6) {
3400 struct inet6_dev *idev = __in6_dev_get(lowerdev);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003401 if (idev && idev->cnf.disable_ipv6) {
3402 NL_SET_ERR_MSG(extack,
3403 "IPv6 support disabled by administrator");
Matthias Schiffera9853432017-06-19 10:03:55 +02003404 return -EPERM;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003405 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003406 }
3407#endif
3408
3409 *lower = lowerdev;
3410 } else {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003411 if (vxlan_addr_multicast(&conf->remote_ip)) {
3412 NL_SET_ERR_MSG(extack,
3413 "Local interface required for multicast remote destination");
3414
Matthias Schiffera9853432017-06-19 10:03:55 +02003415 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003416 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003417
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003418#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003419 if (conf->flags & VXLAN_F_IPV6_LINKLOCAL) {
3420 NL_SET_ERR_MSG(extack,
3421 "Local interface required for link-local local/remote addresses");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003422 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003423 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003424#endif
3425
Matthias Schiffera9853432017-06-19 10:03:55 +02003426 *lower = NULL;
3427 }
3428
3429 if (!conf->dst_port) {
3430 if (conf->flags & VXLAN_F_GPE)
3431 conf->dst_port = htons(4790); /* IANA VXLAN-GPE port */
3432 else
3433 conf->dst_port = htons(vxlan_port);
3434 }
3435
3436 if (!conf->age_interval)
3437 conf->age_interval = FDB_AGE_DEFAULT;
3438
3439 list_for_each_entry(tmp, &vn->vxlan_list, next) {
3440 if (tmp == old)
3441 continue;
3442
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003443 if (tmp->cfg.vni != conf->vni)
3444 continue;
3445 if (tmp->cfg.dst_port != conf->dst_port)
3446 continue;
3447 if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) !=
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003448 (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)))
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003449 continue;
3450
3451 if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) &&
3452 tmp->cfg.remote_ifindex != conf->remote_ifindex)
3453 continue;
3454
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003455 NL_SET_ERR_MSG(extack,
3456 "A VXLAN device with the specified VNI already exists");
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003457 return -EEXIST;
Matthias Schiffera9853432017-06-19 10:03:55 +02003458 }
3459
3460 return 0;
3461}
3462
3463static void vxlan_config_apply(struct net_device *dev,
3464 struct vxlan_config *conf,
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003465 struct net_device *lowerdev,
3466 struct net *src_net,
3467 bool changelink)
Matthias Schiffera9853432017-06-19 10:03:55 +02003468{
3469 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003470 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003471 unsigned short needed_headroom = ETH_HLEN;
Matthias Schiffera9853432017-06-19 10:03:55 +02003472 bool use_ipv6 = !!(conf->flags & VXLAN_F_IPV6);
3473 int max_mtu = ETH_MAX_MTU;
stephen hemmingerd3428942012-10-01 12:32:35 +00003474
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003475 if (!changelink) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003476 if (conf->flags & VXLAN_F_GPE)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003477 vxlan_raw_setup(dev);
Matthias Schiffera9853432017-06-19 10:03:55 +02003478 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003479 vxlan_ether_setup(dev);
Jiri Bence1e53142016-04-05 14:47:13 +02003480
Matthias Schiffera9853432017-06-19 10:03:55 +02003481 if (conf->mtu)
3482 dev->mtu = conf->mtu;
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003483
3484 vxlan->net = src_net;
Jiri Bence1e53142016-04-05 14:47:13 +02003485 }
Jiri Benc0c867c92016-04-05 14:47:10 +02003486
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003487 dst->remote_vni = conf->vni;
3488
3489 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00003490
Matthias Schiffera9853432017-06-19 10:03:55 +02003491 if (lowerdev) {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003492 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00003493
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003494 dev->gso_max_size = lowerdev->gso_max_size;
3495 dev->gso_max_segs = lowerdev->gso_max_segs;
Matthias Schiffera9853432017-06-19 10:03:55 +02003496
3497 needed_headroom = lowerdev->hard_header_len;
3498
3499 max_mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM :
3500 VXLAN_HEADROOM);
Alexey Kodanevf870c1f2017-12-14 20:20:00 +03003501 if (max_mtu < ETH_MIN_MTU)
3502 max_mtu = ETH_MIN_MTU;
3503
3504 if (!changelink && !conf->mtu)
3505 dev->mtu = max_mtu;
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003506 }
3507
Matthias Schiffera9853432017-06-19 10:03:55 +02003508 if (dev->mtu > max_mtu)
3509 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00003510
Jiri Bencb1be00a2015-09-24 13:50:02 +02003511 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
3512 needed_headroom += VXLAN6_HEADROOM;
3513 else
3514 needed_headroom += VXLAN_HEADROOM;
3515 dev->needed_headroom = needed_headroom;
3516
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003517 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Matthias Schiffera9853432017-06-19 10:03:55 +02003518}
stephen hemmingerd3428942012-10-01 12:32:35 +00003519
Matthias Schiffera9853432017-06-19 10:03:55 +02003520static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003521 struct vxlan_config *conf, bool changelink,
3522 struct netlink_ext_ack *extack)
Matthias Schiffera9853432017-06-19 10:03:55 +02003523{
3524 struct vxlan_dev *vxlan = netdev_priv(dev);
3525 struct net_device *lowerdev;
3526 int ret;
Vincent Bernatafb97182012-10-30 10:27:16 +00003527
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003528 ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan, extack);
Matthias Schiffera9853432017-06-19 10:03:55 +02003529 if (ret)
3530 return ret;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003531
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003532 vxlan_config_apply(dev, conf, lowerdev, src_net, changelink);
stephen hemminger553675f2013-05-16 11:35:20 +00003533
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003534 return 0;
3535}
3536
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003537static int __vxlan_dev_create(struct net *net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003538 struct vxlan_config *conf,
3539 struct netlink_ext_ack *extack)
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003540{
3541 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3542 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003543 struct vxlan_fdb *f = NULL;
Petr Machata6db92462018-12-18 13:16:00 +00003544 bool unregister = false;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003545 int err;
3546
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003547 err = vxlan_dev_configure(net, dev, conf, false, extack);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003548 if (err)
3549 return err;
3550
3551 dev->ethtool_ops = &vxlan_ethtool_ops;
3552
3553 /* create an fdb entry for a valid default destination */
3554 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
Roopa Prabhu0241b832018-07-04 16:46:32 -07003555 err = vxlan_fdb_create(vxlan, all_zeros_mac,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003556 &vxlan->default_dst.remote_ip,
3557 NUD_REACHABLE | NUD_PERMANENT,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003558 vxlan->cfg.dst_port,
3559 vxlan->default_dst.remote_vni,
3560 vxlan->default_dst.remote_vni,
3561 vxlan->default_dst.remote_ifindex,
Roopa Prabhu0241b832018-07-04 16:46:32 -07003562 NTF_SELF, &f);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003563 if (err)
3564 return err;
3565 }
3566
3567 err = register_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003568 if (err)
3569 goto errout;
Petr Machata6db92462018-12-18 13:16:00 +00003570 unregister = true;
Roopa Prabhu0241b832018-07-04 16:46:32 -07003571
3572 err = rtnl_configure_link(dev, NULL);
Petr Machata6db92462018-12-18 13:16:00 +00003573 if (err)
Roopa Prabhu0241b832018-07-04 16:46:32 -07003574 goto errout;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003575
Roopa Prabhu0241b832018-07-04 16:46:32 -07003576 /* notify default fdb entry */
Petr Machata61f46fe2019-01-16 23:06:38 +00003577 if (f) {
3578 err = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f),
Petr Machata4c59b7d2019-01-16 23:06:54 +00003579 RTM_NEWNEIGH, true, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +00003580 if (err)
3581 goto errout;
3582 }
Roopa Prabhu0241b832018-07-04 16:46:32 -07003583
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003584 list_add(&vxlan->next, &vn->vxlan_list);
3585 return 0;
Petr Machata6db92462018-12-18 13:16:00 +00003586
Roopa Prabhu0241b832018-07-04 16:46:32 -07003587errout:
Petr Machata6db92462018-12-18 13:16:00 +00003588 /* unregister_netdevice() destroys the default FDB entry with deletion
3589 * notification. But the addition notification was not sent yet, so
3590 * destroy the entry by hand here.
3591 */
Roopa Prabhu0241b832018-07-04 16:46:32 -07003592 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00003593 vxlan_fdb_destroy(vxlan, f, false, false);
Petr Machata6db92462018-12-18 13:16:00 +00003594 if (unregister)
3595 unregister_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003596 return err;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003597}
3598
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003599/* Set/clear flags based on attribute */
3600static int vxlan_nl2flag(struct vxlan_config *conf, struct nlattr *tb[],
3601 int attrtype, unsigned long mask, bool changelink,
3602 bool changelink_supported,
3603 struct netlink_ext_ack *extack)
3604{
3605 unsigned long flags;
3606
3607 if (!tb[attrtype])
3608 return 0;
3609
3610 if (changelink && !changelink_supported) {
3611 vxlan_flag_attr_error(attrtype, extack);
3612 return -EOPNOTSUPP;
3613 }
3614
3615 if (vxlan_policy[attrtype].type == NLA_FLAG)
3616 flags = conf->flags | mask;
3617 else if (nla_get_u8(tb[attrtype]))
3618 flags = conf->flags | mask;
3619 else
3620 flags = conf->flags & ~mask;
3621
3622 conf->flags = flags;
3623
3624 return 0;
3625}
3626
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003627static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3628 struct net_device *dev, struct vxlan_config *conf,
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003629 bool changelink, struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003630{
3631 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003632 int err = 0;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003633
3634 memset(conf, 0, sizeof(*conf));
3635
3636 /* if changelink operation, start with old existing cfg */
3637 if (changelink)
3638 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3639
3640 if (data[IFLA_VXLAN_ID]) {
3641 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3642
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003643 if (changelink && (vni != conf->vni)) {
3644 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID], "Cannot change VNI");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003645 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003646 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003647 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3648 }
3649
3650 if (data[IFLA_VXLAN_GROUP]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003651 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET)) {
3652 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 +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.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003657 conf->remote_ip.sa.sa_family = AF_INET;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003658 } else if (data[IFLA_VXLAN_GROUP6]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003659 if (!IS_ENABLED(CONFIG_IPV6)) {
3660 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "IPv6 support not enabled in the kernel");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003661 return -EPFNOSUPPORT;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003662 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003663
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003664 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6)) {
3665 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 +02003666 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003667 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003668
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003669 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3670 conf->remote_ip.sa.sa_family = AF_INET6;
3671 }
3672
3673 if (data[IFLA_VXLAN_LOCAL]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003674 if (changelink && (conf->saddr.sa.sa_family != AF_INET)) {
3675 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 +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 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3680 conf->saddr.sa.sa_family = AF_INET;
3681 } else if (data[IFLA_VXLAN_LOCAL6]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003682 if (!IS_ENABLED(CONFIG_IPV6)) {
3683 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "IPv6 support not enabled in the kernel");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003684 return -EPFNOSUPPORT;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003685 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003686
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003687 if (changelink && (conf->saddr.sa.sa_family != AF_INET6)) {
3688 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 +02003689 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003690 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003691
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003692 /* TODO: respect scope id */
3693 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3694 conf->saddr.sa.sa_family = AF_INET6;
3695 }
3696
3697 if (data[IFLA_VXLAN_LINK])
3698 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3699
3700 if (data[IFLA_VXLAN_TOS])
3701 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3702
3703 if (data[IFLA_VXLAN_TTL])
3704 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3705
Hangbin Liu72f6d712018-04-17 14:11:28 +08003706 if (data[IFLA_VXLAN_TTL_INHERIT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003707 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_TTL_INHERIT,
3708 VXLAN_F_TTL_INHERIT, changelink, false,
3709 extack);
3710 if (err)
3711 return err;
3712
Hangbin Liu72f6d712018-04-17 14:11:28 +08003713 }
3714
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003715 if (data[IFLA_VXLAN_LABEL])
3716 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3717 IPV6_FLOWLABEL_MASK;
3718
3719 if (data[IFLA_VXLAN_LEARNING]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003720 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LEARNING,
3721 VXLAN_F_LEARN, changelink, true,
3722 extack);
3723 if (err)
3724 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003725 } else if (!changelink) {
3726 /* default to learn on a new device */
3727 conf->flags |= VXLAN_F_LEARN;
3728 }
3729
Ido Schimmel40051c42018-11-21 08:02:40 +00003730 if (data[IFLA_VXLAN_AGEING])
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003731 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003732
3733 if (data[IFLA_VXLAN_PROXY]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003734 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_PROXY,
3735 VXLAN_F_PROXY, changelink, false,
3736 extack);
3737 if (err)
3738 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003739 }
3740
3741 if (data[IFLA_VXLAN_RSC]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003742 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_RSC,
3743 VXLAN_F_RSC, changelink, false,
3744 extack);
3745 if (err)
3746 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003747 }
3748
3749 if (data[IFLA_VXLAN_L2MISS]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003750 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L2MISS,
3751 VXLAN_F_L2MISS, changelink, false,
3752 extack);
3753 if (err)
3754 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003755 }
3756
3757 if (data[IFLA_VXLAN_L3MISS]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003758 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L3MISS,
3759 VXLAN_F_L3MISS, changelink, false,
3760 extack);
3761 if (err)
3762 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003763 }
3764
3765 if (data[IFLA_VXLAN_LIMIT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003766 if (changelink) {
3767 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LIMIT],
3768 "Cannot change limit");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003769 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003770 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003771 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3772 }
3773
3774 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003775 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_COLLECT_METADATA,
3776 VXLAN_F_COLLECT_METADATA, changelink, false,
3777 extack);
3778 if (err)
3779 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003780 }
3781
3782 if (data[IFLA_VXLAN_PORT_RANGE]) {
3783 if (!changelink) {
3784 const struct ifla_vxlan_port_range *p
3785 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3786 conf->port_min = ntohs(p->low);
3787 conf->port_max = ntohs(p->high);
3788 } else {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003789 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3790 "Cannot change port range");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003791 return -EOPNOTSUPP;
3792 }
3793 }
3794
3795 if (data[IFLA_VXLAN_PORT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003796 if (changelink) {
3797 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT],
3798 "Cannot change port");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003799 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003800 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003801 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3802 }
3803
3804 if (data[IFLA_VXLAN_UDP_CSUM]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003805 if (changelink) {
3806 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_UDP_CSUM],
3807 "Cannot change UDP_CSUM flag");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003808 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003809 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003810 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3811 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3812 }
3813
3814 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003815 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
3816 VXLAN_F_UDP_ZERO_CSUM6_TX, changelink,
3817 false, extack);
3818 if (err)
3819 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003820 }
3821
3822 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003823 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
3824 VXLAN_F_UDP_ZERO_CSUM6_RX, changelink,
3825 false, extack);
3826 if (err)
3827 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003828 }
3829
3830 if (data[IFLA_VXLAN_REMCSUM_TX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003831 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_TX,
3832 VXLAN_F_REMCSUM_TX, changelink, false,
3833 extack);
3834 if (err)
3835 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003836 }
3837
3838 if (data[IFLA_VXLAN_REMCSUM_RX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003839 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_RX,
3840 VXLAN_F_REMCSUM_RX, changelink, false,
3841 extack);
3842 if (err)
3843 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003844 }
3845
3846 if (data[IFLA_VXLAN_GBP]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003847 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GBP,
3848 VXLAN_F_GBP, changelink, false, extack);
3849 if (err)
3850 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003851 }
3852
3853 if (data[IFLA_VXLAN_GPE]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003854 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GPE,
3855 VXLAN_F_GPE, changelink, false,
3856 extack);
3857 if (err)
3858 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003859 }
3860
3861 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003862 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_NOPARTIAL,
3863 VXLAN_F_REMCSUM_NOPARTIAL, changelink,
3864 false, extack);
3865 if (err)
3866 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003867 }
3868
3869 if (tb[IFLA_MTU]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003870 if (changelink) {
3871 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3872 "Cannot change mtu");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003873 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003874 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003875 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3876 }
3877
Stefano Briviob4d306972018-11-08 12:19:16 +01003878 if (data[IFLA_VXLAN_DF])
3879 conf->df = nla_get_u8(data[IFLA_VXLAN_DF]);
3880
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003881 return 0;
3882}
3883
3884static int vxlan_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02003885 struct nlattr *tb[], struct nlattr *data[],
3886 struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003887{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003888 struct vxlan_config conf;
3889 int err;
3890
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003891 err = vxlan_nl2conf(tb, data, dev, &conf, false, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003892 if (err)
3893 return err;
3894
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003895 return __vxlan_dev_create(src_net, dev, &conf, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00003896}
3897
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003898static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +02003899 struct nlattr *data[],
3900 struct netlink_ext_ack *extack)
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003901{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003902 struct vxlan_dev *vxlan = netdev_priv(dev);
3903 struct vxlan_rdst *dst = &vxlan->default_dst;
Petr Machata8db9427d52019-01-16 23:06:39 +00003904 struct net_device *lowerdev;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003905 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003906 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003907
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003908 err = vxlan_nl2conf(tb, data, dev, &conf, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003909 if (err)
3910 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003911
Petr Machata8db9427d52019-01-16 23:06:39 +00003912 err = vxlan_config_validate(vxlan->net, &conf, &lowerdev,
3913 vxlan, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003914 if (err)
3915 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003916
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003917 /* handle default dst entry */
Petr Machata038a5a92019-01-16 23:06:41 +00003918 if (!vxlan_addr_equal(&conf.remote_ip, &dst->remote_ip)) {
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003919 spin_lock_bh(&vxlan->hash_lock);
Petr Machata038a5a92019-01-16 23:06:41 +00003920 if (!vxlan_addr_any(&conf.remote_ip)) {
Petr Machatace5e098f2018-12-18 13:16:02 +00003921 err = vxlan_fdb_update(vxlan, all_zeros_mac,
Petr Machata038a5a92019-01-16 23:06:41 +00003922 &conf.remote_ip,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003923 NUD_REACHABLE | NUD_PERMANENT,
Petr Machatace5e098f2018-12-18 13:16:02 +00003924 NLM_F_APPEND | NLM_F_CREATE,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003925 vxlan->cfg.dst_port,
Petr Machata038a5a92019-01-16 23:06:41 +00003926 conf.vni, conf.vni,
3927 conf.remote_ifindex,
Petr Machata4c59b7d2019-01-16 23:06:54 +00003928 NTF_SELF, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003929 if (err) {
3930 spin_unlock_bh(&vxlan->hash_lock);
3931 return err;
3932 }
3933 }
Petr Machata1cdc98c2019-01-16 23:06:43 +00003934 if (!vxlan_addr_any(&dst->remote_ip))
3935 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3936 dst->remote_ip,
3937 vxlan->cfg.dst_port,
3938 dst->remote_vni,
3939 dst->remote_vni,
3940 dst->remote_ifindex,
3941 true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003942 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003943 }
3944
Petr Machata038a5a92019-01-16 23:06:41 +00003945 if (conf.age_interval != vxlan->cfg.age_interval)
3946 mod_timer(&vxlan->age_timer, jiffies);
3947
3948 vxlan_config_apply(dev, &conf, lowerdev, vxlan->net, true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003949 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003950}
3951
stephen hemmingerd3428942012-10-01 12:32:35 +00003952static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3953{
3954 struct vxlan_dev *vxlan = netdev_priv(dev);
3955
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003956 vxlan_flush(vxlan, true);
3957
stephen hemminger553675f2013-05-16 11:35:20 +00003958 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003959 unregister_netdevice_queue(dev, head);
3960}
3961
3962static size_t vxlan_get_size(const struct net_device *dev)
3963{
3964
3965 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003966 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003967 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003968 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003969 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
Hangbin Liu8fd78062018-09-26 10:35:42 +08003970 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL_INHERIT */
stephen hemmingerd3428942012-10-01 12:32:35 +00003971 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Stefano Briviob4d306972018-11-08 12:19:16 +01003972 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_DF */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003973 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003974 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003975 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3976 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3977 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3978 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003979 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003980 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3981 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003982 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003983 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3984 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3985 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3986 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003987 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3988 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003989 0;
3990}
3991
3992static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3993{
3994 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003995 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003996 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003997 .low = htons(vxlan->cfg.port_min),
3998 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003999 };
stephen hemmingerd3428942012-10-01 12:32:35 +00004000
Jiri Benc54bfd872016-02-16 21:58:58 +01004001 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00004002 goto nla_put_failure;
4003
Cong Wange4c7ed42013-08-31 13:44:33 +08004004 if (!vxlan_addr_any(&dst->remote_ip)) {
4005 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02004006 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
4007 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004008 goto nla_put_failure;
4009#if IS_ENABLED(CONFIG_IPV6)
4010 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02004011 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
4012 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004013 goto nla_put_failure;
4014#endif
4015 }
4016 }
stephen hemmingerd3428942012-10-01 12:32:35 +00004017
Atzm Watanabec7995c42013-04-16 02:50:52 +00004018 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00004019 goto nla_put_failure;
4020
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004021 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
4022 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02004023 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004024 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004025 goto nla_put_failure;
4026#if IS_ENABLED(CONFIG_IPV6)
4027 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02004028 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004029 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004030 goto nla_put_failure;
4031#endif
4032 }
4033 }
stephen hemmingerd3428942012-10-01 12:32:35 +00004034
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004035 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
Hangbin Liu8fd78062018-09-26 10:35:42 +08004036 nla_put_u8(skb, IFLA_VXLAN_TTL_INHERIT,
4037 !!(vxlan->cfg.flags & VXLAN_F_TTL_INHERIT)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004038 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Stefano Briviob4d306972018-11-08 12:19:16 +01004039 nla_put_u8(skb, IFLA_VXLAN_DF, vxlan->cfg.df) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01004040 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004041 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004042 !!(vxlan->cfg.flags & VXLAN_F_LEARN)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004043 nla_put_u8(skb, IFLA_VXLAN_PROXY,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004044 !!(vxlan->cfg.flags & VXLAN_F_PROXY)) ||
4045 nla_put_u8(skb, IFLA_VXLAN_RSC,
4046 !!(vxlan->cfg.flags & VXLAN_F_RSC)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004047 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004048 !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004049 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004050 !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07004051 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004052 !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004053 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
4054 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
4055 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004056 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004057 !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004058 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004059 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004060 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004061 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08004062 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004063 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08004064 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004065 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00004066 goto nla_put_failure;
4067
stephen hemminger05f47d62012-10-09 20:35:50 +00004068 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
4069 goto nla_put_failure;
4070
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004071 if (vxlan->cfg.flags & VXLAN_F_GBP &&
Thomas Graf35114942015-01-15 03:53:55 +01004072 nla_put_flag(skb, IFLA_VXLAN_GBP))
4073 goto nla_put_failure;
4074
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004075 if (vxlan->cfg.flags & VXLAN_F_GPE &&
Jiri Bence1e53142016-04-05 14:47:13 +02004076 nla_put_flag(skb, IFLA_VXLAN_GPE))
4077 goto nla_put_failure;
4078
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004079 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL &&
Tom Herbert0ace2ca2015-02-10 16:30:32 -08004080 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
4081 goto nla_put_failure;
4082
stephen hemmingerd3428942012-10-01 12:32:35 +00004083 return 0;
4084
4085nla_put_failure:
4086 return -EMSGSIZE;
4087}
4088
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004089static struct net *vxlan_get_link_net(const struct net_device *dev)
4090{
4091 struct vxlan_dev *vxlan = netdev_priv(dev);
4092
4093 return vxlan->net;
4094}
4095
stephen hemmingerd3428942012-10-01 12:32:35 +00004096static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
4097 .kind = "vxlan",
4098 .maxtype = IFLA_VXLAN_MAX,
4099 .policy = vxlan_policy,
4100 .priv_size = sizeof(struct vxlan_dev),
4101 .setup = vxlan_setup,
4102 .validate = vxlan_validate,
4103 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08004104 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00004105 .dellink = vxlan_dellink,
4106 .get_size = vxlan_get_size,
4107 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004108 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004109};
4110
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004111struct net_device *vxlan_dev_create(struct net *net, const char *name,
4112 u8 name_assign_type,
4113 struct vxlan_config *conf)
4114{
4115 struct nlattr *tb[IFLA_MAX + 1];
4116 struct net_device *dev;
4117 int err;
4118
4119 memset(&tb, 0, sizeof(tb));
4120
4121 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08004122 &vxlan_link_ops, tb, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004123 if (IS_ERR(dev))
4124 return dev;
4125
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07004126 err = __vxlan_dev_create(net, dev, conf, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004127 if (err < 0) {
4128 free_netdev(dev);
4129 return ERR_PTR(err);
4130 }
4131
4132 err = rtnl_configure_link(dev, NULL);
4133 if (err < 0) {
4134 LIST_HEAD(list_kill);
4135
4136 vxlan_dellink(dev, &list_kill);
4137 unregister_netdevice_many(&list_kill);
4138 return ERR_PTR(err);
4139 }
4140
4141 return dev;
4142}
4143EXPORT_SYMBOL_GPL(vxlan_dev_create);
4144
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004145static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
4146 struct net_device *dev)
4147{
4148 struct vxlan_dev *vxlan, *next;
4149 LIST_HEAD(list_kill);
4150
4151 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4152 struct vxlan_rdst *dst = &vxlan->default_dst;
4153
4154 /* In case we created vxlan device with carrier
4155 * and we loose the carrier due to module unload
4156 * we also need to remove vxlan device. In other
4157 * cases, it's not necessary and remote_ifindex
4158 * is 0 here, so no matches.
4159 */
4160 if (dst->remote_ifindex == dev->ifindex)
4161 vxlan_dellink(vxlan->dev, &list_kill);
4162 }
4163
4164 unregister_netdevice_many(&list_kill);
4165}
4166
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004167static int vxlan_netdevice_event(struct notifier_block *unused,
4168 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004169{
4170 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004171 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004172
Sabrina Dubroca04584952017-07-21 12:49:33 +02004173 if (event == NETDEV_UNREGISTER) {
4174 vxlan_offload_rx_ports(dev, false);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004175 vxlan_handle_lowerdev_unregister(vn, dev);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004176 } else if (event == NETDEV_REGISTER) {
4177 vxlan_offload_rx_ports(dev, true);
4178 } else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
4179 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02004180 vxlan_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004181 }
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004182
4183 return NOTIFY_DONE;
4184}
4185
4186static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004187 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004188};
4189
Petr Machata0efe1172018-10-17 08:53:26 +00004190static void
4191vxlan_fdb_offloaded_set(struct net_device *dev,
4192 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4193{
4194 struct vxlan_dev *vxlan = netdev_priv(dev);
4195 struct vxlan_rdst *rdst;
4196 struct vxlan_fdb *f;
4197
4198 spin_lock_bh(&vxlan->hash_lock);
4199
4200 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4201 if (!f)
4202 goto out;
4203
4204 rdst = vxlan_fdb_find_rdst(f, &fdb_info->remote_ip,
4205 fdb_info->remote_port,
4206 fdb_info->remote_vni,
4207 fdb_info->remote_ifindex);
4208 if (!rdst)
4209 goto out;
4210
4211 rdst->offloaded = fdb_info->offloaded;
4212
4213out:
4214 spin_unlock_bh(&vxlan->hash_lock);
4215}
4216
Petr Machata5728ae02018-11-21 08:02:39 +00004217static int
4218vxlan_fdb_external_learn_add(struct net_device *dev,
4219 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4220{
4221 struct vxlan_dev *vxlan = netdev_priv(dev);
Petr Machata4c59b7d2019-01-16 23:06:54 +00004222 struct netlink_ext_ack *extack;
Petr Machata5728ae02018-11-21 08:02:39 +00004223 int err;
4224
Petr Machata4c59b7d2019-01-16 23:06:54 +00004225 extack = switchdev_notifier_info_to_extack(&fdb_info->info);
4226
Petr Machata5728ae02018-11-21 08:02:39 +00004227 spin_lock_bh(&vxlan->hash_lock);
4228 err = vxlan_fdb_update(vxlan, fdb_info->eth_addr, &fdb_info->remote_ip,
4229 NUD_REACHABLE,
4230 NLM_F_CREATE | NLM_F_REPLACE,
4231 fdb_info->remote_port,
4232 fdb_info->vni,
4233 fdb_info->remote_vni,
4234 fdb_info->remote_ifindex,
4235 NTF_USE | NTF_SELF | NTF_EXT_LEARNED,
Petr Machata4c59b7d2019-01-16 23:06:54 +00004236 false, extack);
Petr Machata5728ae02018-11-21 08:02:39 +00004237 spin_unlock_bh(&vxlan->hash_lock);
4238
4239 return err;
4240}
4241
4242static int
4243vxlan_fdb_external_learn_del(struct net_device *dev,
4244 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4245{
4246 struct vxlan_dev *vxlan = netdev_priv(dev);
4247 struct vxlan_fdb *f;
4248 int err = 0;
4249
4250 spin_lock_bh(&vxlan->hash_lock);
4251
4252 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4253 if (!f)
4254 err = -ENOENT;
4255 else if (f->flags & NTF_EXT_LEARNED)
4256 err = __vxlan_fdb_delete(vxlan, fdb_info->eth_addr,
4257 fdb_info->remote_ip,
4258 fdb_info->remote_port,
4259 fdb_info->vni,
4260 fdb_info->remote_vni,
4261 fdb_info->remote_ifindex,
4262 false);
4263
4264 spin_unlock_bh(&vxlan->hash_lock);
4265
4266 return err;
4267}
4268
Petr Machata0efe1172018-10-17 08:53:26 +00004269static int vxlan_switchdev_event(struct notifier_block *unused,
4270 unsigned long event, void *ptr)
4271{
4272 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
Petr Machata5728ae02018-11-21 08:02:39 +00004273 struct switchdev_notifier_vxlan_fdb_info *fdb_info;
4274 int err = 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004275
4276 switch (event) {
4277 case SWITCHDEV_VXLAN_FDB_OFFLOADED:
4278 vxlan_fdb_offloaded_set(dev, ptr);
4279 break;
Petr Machata5728ae02018-11-21 08:02:39 +00004280 case SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE:
4281 fdb_info = ptr;
4282 err = vxlan_fdb_external_learn_add(dev, fdb_info);
4283 if (err) {
4284 err = notifier_from_errno(err);
4285 break;
4286 }
4287 fdb_info->offloaded = true;
4288 vxlan_fdb_offloaded_set(dev, fdb_info);
4289 break;
4290 case SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE:
4291 fdb_info = ptr;
4292 err = vxlan_fdb_external_learn_del(dev, fdb_info);
4293 if (err) {
4294 err = notifier_from_errno(err);
4295 break;
4296 }
4297 fdb_info->offloaded = false;
4298 vxlan_fdb_offloaded_set(dev, fdb_info);
4299 break;
Petr Machata0efe1172018-10-17 08:53:26 +00004300 }
4301
Petr Machata5728ae02018-11-21 08:02:39 +00004302 return err;
Petr Machata0efe1172018-10-17 08:53:26 +00004303}
4304
4305static struct notifier_block vxlan_switchdev_notifier_block __read_mostly = {
4306 .notifier_call = vxlan_switchdev_event,
4307};
4308
stephen hemmingerd3428942012-10-01 12:32:35 +00004309static __net_init int vxlan_init_net(struct net *net)
4310{
4311 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00004312 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00004313
stephen hemminger553675f2013-05-16 11:35:20 +00004314 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07004315 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00004316
stephen hemminger553675f2013-05-16 11:35:20 +00004317 for (h = 0; h < PORT_HASH_SIZE; ++h)
4318 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00004319
4320 return 0;
4321}
4322
Haishuang Yan57b61122017-12-16 17:54:49 +08004323static void vxlan_destroy_tunnels(struct net *net, struct list_head *head)
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004324{
4325 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4326 struct vxlan_dev *vxlan, *next;
4327 struct net_device *dev, *aux;
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004328 unsigned int h;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004329
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004330 for_each_netdev_safe(net, dev, aux)
4331 if (dev->rtnl_link_ops == &vxlan_link_ops)
Haishuang Yan57b61122017-12-16 17:54:49 +08004332 unregister_netdevice_queue(dev, head);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004333
4334 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4335 /* If vxlan->dev is in the same netns, it has already been added
4336 * to the list by the previous loop.
4337 */
Zhiqiang Liucc4807b2019-03-16 17:02:54 +08004338 if (!net_eq(dev_net(vxlan->dev), net))
Haishuang Yan57b61122017-12-16 17:54:49 +08004339 unregister_netdevice_queue(vxlan->dev, head);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004340 }
4341
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004342 for (h = 0; h < PORT_HASH_SIZE; ++h)
4343 WARN_ON_ONCE(!hlist_empty(&vn->sock_list[h]));
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004344}
4345
Haishuang Yan57b61122017-12-16 17:54:49 +08004346static void __net_exit vxlan_exit_batch_net(struct list_head *net_list)
4347{
4348 struct net *net;
4349 LIST_HEAD(list);
4350
4351 rtnl_lock();
4352 list_for_each_entry(net, net_list, exit_list)
4353 vxlan_destroy_tunnels(net, &list);
4354
4355 unregister_netdevice_many(&list);
4356 rtnl_unlock();
4357}
4358
stephen hemmingerd3428942012-10-01 12:32:35 +00004359static struct pernet_operations vxlan_net_ops = {
4360 .init = vxlan_init_net,
Haishuang Yan57b61122017-12-16 17:54:49 +08004361 .exit_batch = vxlan_exit_batch_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004362 .id = &vxlan_net_id,
4363 .size = sizeof(struct vxlan_net),
4364};
4365
4366static int __init vxlan_init_module(void)
4367{
4368 int rc;
4369
4370 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
4371
Daniel Borkmann783c1462014-01-22 21:07:53 +01004372 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004373 if (rc)
4374 goto out1;
4375
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004376 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004377 if (rc)
4378 goto out2;
4379
Petr Machata0efe1172018-10-17 08:53:26 +00004380 rc = register_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004381 if (rc)
4382 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00004383
Petr Machata0efe1172018-10-17 08:53:26 +00004384 rc = rtnl_link_register(&vxlan_link_ops);
4385 if (rc)
4386 goto out4;
4387
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004388 return 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004389out4:
4390 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004391out3:
4392 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004393out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01004394 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004395out1:
4396 return rc;
4397}
Cong Wang7332a132013-05-27 22:35:53 +00004398late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00004399
4400static void __exit vxlan_cleanup_module(void)
4401{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07004402 rtnl_link_unregister(&vxlan_link_ops);
Petr Machata0efe1172018-10-17 08:53:26 +00004403 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004404 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004405 unregister_pernet_subsys(&vxlan_net_ops);
4406 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00004407}
4408module_exit(vxlan_cleanup_module);
4409
4410MODULE_LICENSE("GPL");
4411MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004412MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08004413MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00004414MODULE_ALIAS_RTNL_LINK("vxlan");