blob: 7610c51b33a0bd4e021fdf8dbe7609e391d40c12 [file] [log] [blame]
stephen hemmingerd3428942012-10-01 12:32:35 +00001/*
Rami Roseneb5ce432012-11-13 13:29:15 +00002 * VXLAN: Virtual eXtensible Local Area Network
stephen hemmingerd3428942012-10-01 12:32:35 +00003 *
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004 * Copyright (c) 2012-2013 Vyatta Inc.
stephen hemmingerd3428942012-10-01 12:32:35 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
stephen hemmingerd3428942012-10-01 12:32:35 +00009 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/kernel.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000014#include <linux/module.h>
15#include <linux/errno.h>
16#include <linux/slab.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000017#include <linux/udp.h>
18#include <linux/igmp.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000019#include <linux/if_ether.h>
Yan Burman1b13c972013-01-29 23:43:07 +000020#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000021#include <net/arp.h>
22#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000023#include <net/ip.h>
24#include <net/icmp.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000025#include <net/rtnetlink.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000026#include <net/inet_ecn.h>
27#include <net/net_namespace.h>
28#include <net/netns/generic.h>
Jiri Bencfa20e0e2017-08-28 21:43:22 +020029#include <net/tun_proto.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070030#include <net/vxlan.h>
stephen hemminger40d29af2016-02-09 22:07:29 -080031
Cong Wange4c7ed42013-08-31 13:44:33 +080032#if IS_ENABLED(CONFIG_IPV6)
Cong Wange4c7ed42013-08-31 13:44:33 +080033#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080034#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080035#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000036
37#define VXLAN_VERSION "0.1"
38
stephen hemminger553675f2013-05-16 11:35:20 +000039#define PORT_HASH_BITS 8
40#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000041#define FDB_AGE_DEFAULT 300 /* 5 min */
42#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
43
stephen hemminger23c578b2013-04-27 11:31:53 +000044/* UDP port for VXLAN traffic.
45 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070046 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000047 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070048static unsigned short vxlan_port __read_mostly = 8472;
49module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000050MODULE_PARM_DESC(udp_port, "Destination UDP port");
51
52static bool log_ecn_error = true;
53module_param(log_ecn_error, bool, 0644);
54MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
55
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030056static unsigned int vxlan_net_id;
Thomas Graf0dfbdf42015-07-21 10:44:02 +020057static struct rtnl_link_ops vxlan_link_ops;
stephen hemminger553675f2013-05-16 11:35:20 +000058
Li RongQing7256eac2016-01-29 09:43:47 +080059static const u8 all_zeros_mac[ETH_ALEN + 2];
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030060
Jiri Benc205f3562015-09-24 13:50:01 +020061static int vxlan_sock_add(struct vxlan_dev *vxlan);
Thomas Graf614732e2015-07-21 10:44:06 +020062
Mark Blocha53cb292017-06-02 03:24:08 +030063static void vxlan_vs_del_dev(struct vxlan_dev *vxlan);
64
stephen hemminger553675f2013-05-16 11:35:20 +000065/* per-network namespace private data for this module */
66struct vxlan_net {
67 struct list_head vxlan_list;
68 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070069 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000070};
71
stephen hemmingerd3428942012-10-01 12:32:35 +000072/* Forwarding table entry */
73struct vxlan_fdb {
74 struct hlist_node hlist; /* linked list of entries */
75 struct rcu_head rcu;
76 unsigned long updated; /* jiffies */
77 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070078 struct list_head remotes;
Sowmini Varadhan7177a3b2015-07-20 09:54:50 +020079 u8 eth_addr[ETH_ALEN];
stephen hemmingerd3428942012-10-01 12:32:35 +000080 u16 state; /* see ndm_state */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -080081 __be32 vni;
Petr Machata45598c12018-11-21 08:02:36 +000082 u16 flags; /* see ndm_flags and below */
stephen hemmingerd3428942012-10-01 12:32:35 +000083};
84
Petr Machata45598c12018-11-21 08:02:36 +000085#define NTF_VXLAN_ADDED_BY_USER 0x100
86
stephen hemmingerd3428942012-10-01 12:32:35 +000087/* salt for hash table */
88static u32 vxlan_salt __read_mostly;
89
Thomas Grafee122c72015-07-21 10:43:58 +020090static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
91{
Thomas Grafe7030872015-07-21 10:44:01 +020092 return vs->flags & VXLAN_F_COLLECT_METADATA ||
93 ip_tunnel_collect_metadata();
Thomas Grafee122c72015-07-21 10:43:58 +020094}
95
Cong Wange4c7ed42013-08-31 13:44:33 +080096#if IS_ENABLED(CONFIG_IPV6)
97static inline
98bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
99{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200100 if (a->sa.sa_family != b->sa.sa_family)
101 return false;
102 if (a->sa.sa_family == AF_INET6)
103 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
104 else
105 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800106}
107
Cong Wange4c7ed42013-08-31 13:44:33 +0800108static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
109{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200110 if (nla_len(nla) >= sizeof(struct in6_addr)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200111 ip->sin6.sin6_addr = nla_get_in6_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200112 ip->sa.sa_family = AF_INET6;
113 return 0;
114 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200115 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200116 ip->sa.sa_family = AF_INET;
117 return 0;
118 } else {
119 return -EAFNOSUPPORT;
120 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800121}
122
123static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200124 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800125{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200126 if (ip->sa.sa_family == AF_INET6)
Jiri Benc930345e2015-03-29 16:59:25 +0200127 return nla_put_in6_addr(skb, attr, &ip->sin6.sin6_addr);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200128 else
Jiri Benc930345e2015-03-29 16:59:25 +0200129 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800130}
131
132#else /* !CONFIG_IPV6 */
133
134static inline
135bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
136{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200137 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800138}
139
Cong Wange4c7ed42013-08-31 13:44:33 +0800140static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
141{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200142 if (nla_len(nla) >= sizeof(struct in6_addr)) {
143 return -EAFNOSUPPORT;
144 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200145 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200146 ip->sa.sa_family = AF_INET;
147 return 0;
148 } else {
149 return -EAFNOSUPPORT;
150 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800151}
152
153static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200154 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800155{
Jiri Benc930345e2015-03-29 16:59:25 +0200156 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800157}
158#endif
159
stephen hemminger553675f2013-05-16 11:35:20 +0000160/* Virtual Network hash table head */
Jiri Benc54bfd872016-02-16 21:58:58 +0100161static inline struct hlist_head *vni_head(struct vxlan_sock *vs, __be32 vni)
stephen hemminger553675f2013-05-16 11:35:20 +0000162{
Jiri Benc54bfd872016-02-16 21:58:58 +0100163 return &vs->vni_list[hash_32((__force u32)vni, VNI_HASH_BITS)];
stephen hemminger553675f2013-05-16 11:35:20 +0000164}
165
166/* Socket hash table head */
167static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000168{
169 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
170
stephen hemminger553675f2013-05-16 11:35:20 +0000171 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
172}
173
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700174/* First remote destination for a forwarding entry.
175 * Guaranteed to be non-NULL because remotes are never deleted.
176 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700177static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700178{
stephen hemminger5ca54612013-08-04 17:17:39 -0700179 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
180}
181
182static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
183{
184 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700185}
186
Thomas Grafac5132d2015-01-15 03:53:56 +0100187/* Find VXLAN socket based on network namespace, address family and UDP port
188 * and enabled unshareable flags.
189 */
190static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +0100191 __be16 port, u32 flags, int ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +0000192{
193 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800194
195 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000196
197 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200198 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Jiri Benc705cc622015-08-20 13:56:28 +0200199 vxlan_get_sk_family(vs) == family &&
Alexis Bauvinaab8cc32018-12-03 10:54:40 +0100200 vs->flags == flags &&
201 vs->sock->sk->sk_bound_dev_if == ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +0000202 return vs;
203 }
204 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000205}
206
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200207static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, int ifindex,
208 __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000209{
Jiri Benc69e76662017-07-02 19:00:57 +0200210 struct vxlan_dev_node *node;
stephen hemmingerd3428942012-10-01 12:32:35 +0000211
Jiri Bencb9167b22016-02-16 21:59:03 +0100212 /* For flow based devices, map all packets to VNI 0 */
213 if (vs->flags & VXLAN_F_COLLECT_METADATA)
214 vni = 0;
215
Jiri Benc69e76662017-07-02 19:00:57 +0200216 hlist_for_each_entry_rcu(node, vni_head(vs, vni), hlist) {
217 if (node->vxlan->default_dst.remote_vni != vni)
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200218 continue;
219
220 if (IS_ENABLED(CONFIG_IPV6)) {
Jiri Benc69e76662017-07-02 19:00:57 +0200221 const struct vxlan_config *cfg = &node->vxlan->cfg;
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200222
223 if ((cfg->flags & VXLAN_F_IPV6_LINKLOCAL) &&
224 cfg->remote_ifindex != ifindex)
225 continue;
226 }
227
Jiri Benc69e76662017-07-02 19:00:57 +0200228 return node->vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000229 }
230
231 return NULL;
232}
233
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700234/* Look up VNI in a per net namespace table */
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200235static struct vxlan_dev *vxlan_find_vni(struct net *net, int ifindex,
236 __be32 vni, sa_family_t family,
237 __be16 port, u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700238{
239 struct vxlan_sock *vs;
240
Alexis Bauvinaab8cc32018-12-03 10:54:40 +0100241 vs = vxlan_find_sock(net, family, port, flags, ifindex);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700242 if (!vs)
243 return NULL;
244
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200245 return vxlan_vs_find_vni(vs, ifindex, vni);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700246}
247
stephen hemmingerd3428942012-10-01 12:32:35 +0000248/* Fill in neighbour message in skbuff. */
249static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700250 const struct vxlan_fdb *fdb,
251 u32 portid, u32 seq, int type, unsigned int flags,
252 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000253{
254 unsigned long now = jiffies;
255 struct nda_cacheinfo ci;
256 struct nlmsghdr *nlh;
257 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000258 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000259
260 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
261 if (nlh == NULL)
262 return -EMSGSIZE;
263
264 ndm = nlmsg_data(nlh);
265 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000266
267 send_eth = send_ip = true;
268
269 if (type == RTM_GETNEIGH) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800270 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000271 send_eth = !is_zero_ether_addr(fdb->eth_addr);
Vincent Bernat8f48ba72017-03-10 16:30:24 +0100272 ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET;
David Stevense4f67ad2012-11-20 02:50:14 +0000273 } else
274 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000275 ndm->ndm_state = fdb->state;
276 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000277 ndm->ndm_flags = fdb->flags;
Petr Machata0efe1172018-10-17 08:53:26 +0000278 if (rdst->offloaded)
279 ndm->ndm_flags |= NTF_OFFLOADED;
Jun Zhao545469f2014-07-26 00:38:59 +0800280 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000281
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100282 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100283 nla_put_s32(skb, NDA_LINK_NETNSID,
WANG Cong38f507f2016-09-01 21:53:44 -0700284 peernet2id(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100285 goto nla_put_failure;
286
David Stevense4f67ad2012-11-20 02:50:14 +0000287 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000288 goto nla_put_failure;
289
Cong Wange4c7ed42013-08-31 13:44:33 +0800290 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000291 goto nla_put_failure;
292
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200293 if (rdst->remote_port && rdst->remote_port != vxlan->cfg.dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000294 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
295 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000296 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Jiri Benc54bfd872016-02-16 21:58:58 +0100297 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
David Stevens66817122013-03-15 04:35:51 +0000298 goto nla_put_failure;
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200299 if ((vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) && fdb->vni &&
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800300 nla_put_u32(skb, NDA_SRC_VNI,
301 be32_to_cpu(fdb->vni)))
302 goto nla_put_failure;
David Stevens66817122013-03-15 04:35:51 +0000303 if (rdst->remote_ifindex &&
304 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000305 goto nla_put_failure;
306
307 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
308 ci.ndm_confirmed = 0;
309 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
310 ci.ndm_refcnt = 0;
311
312 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
313 goto nla_put_failure;
314
Johannes Berg053c0952015-01-16 22:09:00 +0100315 nlmsg_end(skb, nlh);
316 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000317
318nla_put_failure:
319 nlmsg_cancel(skb, nlh);
320 return -EMSGSIZE;
321}
322
323static inline size_t vxlan_nlmsg_size(void)
324{
325 return NLMSG_ALIGN(sizeof(struct ndmsg))
326 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800327 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000328 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000329 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
330 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100331 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000332 + nla_total_size(sizeof(struct nda_cacheinfo));
333}
334
Petr Machata9a997352018-10-17 08:53:22 +0000335static void __vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
336 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000337{
338 struct net *net = dev_net(vxlan->dev);
339 struct sk_buff *skb;
340 int err = -ENOBUFS;
341
342 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
343 if (skb == NULL)
344 goto errout;
345
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200346 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000347 if (err < 0) {
348 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
349 WARN_ON(err == -EMSGSIZE);
350 kfree_skb(skb);
351 goto errout;
352 }
353
354 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
355 return;
356errout:
357 if (err < 0)
358 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
359}
360
Petr Machataff23b912018-12-07 19:55:03 +0000361static void vxlan_fdb_switchdev_notifier_info(const struct vxlan_dev *vxlan,
362 const struct vxlan_fdb *fdb,
363 const struct vxlan_rdst *rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000364 struct netlink_ext_ack *extack,
Petr Machataff23b912018-12-07 19:55:03 +0000365 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
366{
367 fdb_info->info.dev = vxlan->dev;
Petr Machata4c59b7d2019-01-16 23:06:54 +0000368 fdb_info->info.extack = extack;
Petr Machataff23b912018-12-07 19:55:03 +0000369 fdb_info->remote_ip = rd->remote_ip;
370 fdb_info->remote_port = rd->remote_port;
371 fdb_info->remote_vni = rd->remote_vni;
372 fdb_info->remote_ifindex = rd->remote_ifindex;
373 memcpy(fdb_info->eth_addr, fdb->eth_addr, ETH_ALEN);
374 fdb_info->vni = fdb->vni;
375 fdb_info->offloaded = rd->offloaded;
376 fdb_info->added_by_user = fdb->flags & NTF_VXLAN_ADDED_BY_USER;
377}
378
Petr Machata61f46fe2019-01-16 23:06:38 +0000379static int vxlan_fdb_switchdev_call_notifiers(struct vxlan_dev *vxlan,
380 struct vxlan_fdb *fdb,
381 struct vxlan_rdst *rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000382 bool adding,
383 struct netlink_ext_ack *extack)
Petr Machata9a997352018-10-17 08:53:22 +0000384{
385 struct switchdev_notifier_vxlan_fdb_info info;
386 enum switchdev_notifier_type notifier_type;
Petr Machata61f46fe2019-01-16 23:06:38 +0000387 int ret;
Petr Machata9a997352018-10-17 08:53:22 +0000388
389 if (WARN_ON(!rd))
Petr Machata61f46fe2019-01-16 23:06:38 +0000390 return 0;
Petr Machata9a997352018-10-17 08:53:22 +0000391
392 notifier_type = adding ? SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE
393 : SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE;
Petr Machata4c59b7d2019-01-16 23:06:54 +0000394 vxlan_fdb_switchdev_notifier_info(vxlan, fdb, rd, NULL, &info);
Petr Machata61f46fe2019-01-16 23:06:38 +0000395 ret = call_switchdev_notifiers(notifier_type, vxlan->dev,
Petr Machata66859872019-01-16 23:06:56 +0000396 &info.info, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000397 return notifier_to_errno(ret);
Petr Machata9a997352018-10-17 08:53:22 +0000398}
399
Petr Machata61f46fe2019-01-16 23:06:38 +0000400static int vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000401 struct vxlan_rdst *rd, int type, bool swdev_notify,
402 struct netlink_ext_ack *extack)
Petr Machata9a997352018-10-17 08:53:22 +0000403{
Petr Machata61f46fe2019-01-16 23:06:38 +0000404 int err;
405
Petr Machata0e6160f2018-11-21 08:02:35 +0000406 if (swdev_notify) {
407 switch (type) {
408 case RTM_NEWNEIGH:
Petr Machata61f46fe2019-01-16 23:06:38 +0000409 err = vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000410 true, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000411 if (err)
412 return err;
Petr Machata0e6160f2018-11-21 08:02:35 +0000413 break;
414 case RTM_DELNEIGH:
415 vxlan_fdb_switchdev_call_notifiers(vxlan, fdb, rd,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000416 false, extack);
Petr Machata0e6160f2018-11-21 08:02:35 +0000417 break;
418 }
Petr Machata9a997352018-10-17 08:53:22 +0000419 }
420
421 __vxlan_fdb_notify(vxlan, fdb, rd, type);
Petr Machata61f46fe2019-01-16 23:06:38 +0000422 return 0;
Petr Machata9a997352018-10-17 08:53:22 +0000423}
424
Cong Wange4c7ed42013-08-31 13:44:33 +0800425static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000426{
427 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700428 struct vxlan_fdb f = {
429 .state = NUD_STALE,
430 };
431 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800432 .remote_ip = *ipa, /* goes to NDA_DST */
Jiri Benc54bfd872016-02-16 21:58:58 +0100433 .remote_vni = cpu_to_be32(VXLAN_N_VID),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700434 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700435
Petr Machata4c59b7d2019-01-16 23:06:54 +0000436 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL);
David Stevense4f67ad2012-11-20 02:50:14 +0000437}
438
439static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
440{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700441 struct vxlan_fdb f = {
442 .state = NUD_STALE,
443 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200444 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000445
David Stevense4f67ad2012-11-20 02:50:14 +0000446 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
447
Petr Machata4c59b7d2019-01-16 23:06:54 +0000448 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH, true, NULL);
David Stevense4f67ad2012-11-20 02:50:14 +0000449}
450
stephen hemmingerd3428942012-10-01 12:32:35 +0000451/* Hash Ethernet address */
452static u32 eth_hash(const unsigned char *addr)
453{
454 u64 value = get_unaligned((u64 *)addr);
455
456 /* only want 6 bytes */
457#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000458 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000459#else
460 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000461#endif
462 return hash_64(value, FDB_HASH_BITS);
463}
464
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800465static u32 eth_vni_hash(const unsigned char *addr, __be32 vni)
466{
467 /* use 1 byte of OUI and 3 bytes of NIC */
468 u32 key = get_unaligned((u32 *)(addr + 2));
469
470 return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1);
471}
472
stephen hemmingerd3428942012-10-01 12:32:35 +0000473/* Hash chain to use given mac address */
474static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800475 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000476{
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200477 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800478 return &vxlan->fdb_head[eth_vni_hash(mac, vni)];
479 else
480 return &vxlan->fdb_head[eth_hash(mac)];
stephen hemmingerd3428942012-10-01 12:32:35 +0000481}
482
483/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000484static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800485 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000486{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800487 struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000488 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000489
Sasha Levinb67bfe02013-02-27 17:06:00 -0800490 hlist_for_each_entry_rcu(f, head, hlist) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800491 if (ether_addr_equal(mac, f->eth_addr)) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200492 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800493 if (vni == f->vni)
494 return f;
495 } else {
496 return f;
497 }
498 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000499 }
500
501 return NULL;
502}
503
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000504static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800505 const u8 *mac, __be32 vni)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000506{
507 struct vxlan_fdb *f;
508
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800509 f = __vxlan_find_mac(vxlan, mac, vni);
Li RongQing016f3d12018-08-29 11:52:10 +0800510 if (f && f->used != jiffies)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000511 f->used = jiffies;
512
513 return f;
514}
515
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300516/* caller should hold vxlan->hash_lock */
517static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800518 union vxlan_addr *ip, __be16 port,
Jiri Benc54bfd872016-02-16 21:58:58 +0100519 __be32 vni, __u32 ifindex)
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300520{
521 struct vxlan_rdst *rd;
522
523 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800524 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300525 rd->remote_port == port &&
526 rd->remote_vni == vni &&
527 rd->remote_ifindex == ifindex)
528 return rd;
529 }
530
531 return NULL;
532}
533
Petr Machata1941f1d2018-10-17 08:53:24 +0000534int vxlan_fdb_find_uc(struct net_device *dev, const u8 *mac, __be32 vni,
535 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
536{
537 struct vxlan_dev *vxlan = netdev_priv(dev);
538 u8 eth_addr[ETH_ALEN + 2] = { 0 };
539 struct vxlan_rdst *rdst;
540 struct vxlan_fdb *f;
541 int rc = 0;
542
543 if (is_multicast_ether_addr(mac) ||
544 is_zero_ether_addr(mac))
545 return -EINVAL;
546
547 ether_addr_copy(eth_addr, mac);
548
549 rcu_read_lock();
550
551 f = __vxlan_find_mac(vxlan, eth_addr, vni);
552 if (!f) {
553 rc = -ENOENT;
554 goto out;
555 }
556
557 rdst = first_remote_rcu(f);
Petr Machata4c59b7d2019-01-16 23:06:54 +0000558 vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, NULL, fdb_info);
Petr Machata1941f1d2018-10-17 08:53:24 +0000559
560out:
561 rcu_read_unlock();
562 return rc;
563}
564EXPORT_SYMBOL_GPL(vxlan_fdb_find_uc);
565
Petr Machata4f89f5b2018-12-07 19:55:04 +0000566static int vxlan_fdb_notify_one(struct notifier_block *nb,
567 const struct vxlan_dev *vxlan,
568 const struct vxlan_fdb *f,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000569 const struct vxlan_rdst *rdst,
570 struct netlink_ext_ack *extack)
Petr Machata4f89f5b2018-12-07 19:55:04 +0000571{
572 struct switchdev_notifier_vxlan_fdb_info fdb_info;
573 int rc;
574
Petr Machata4c59b7d2019-01-16 23:06:54 +0000575 vxlan_fdb_switchdev_notifier_info(vxlan, f, rdst, extack, &fdb_info);
Petr Machata4f89f5b2018-12-07 19:55:04 +0000576 rc = nb->notifier_call(nb, SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE,
577 &fdb_info);
578 return notifier_to_errno(rc);
579}
580
581int vxlan_fdb_replay(const struct net_device *dev, __be32 vni,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000582 struct notifier_block *nb,
583 struct netlink_ext_ack *extack)
Petr Machata4f89f5b2018-12-07 19:55:04 +0000584{
585 struct vxlan_dev *vxlan;
586 struct vxlan_rdst *rdst;
587 struct vxlan_fdb *f;
588 unsigned int h;
589 int rc = 0;
590
591 if (!netif_is_vxlan(dev))
592 return -EINVAL;
593 vxlan = netdev_priv(dev);
594
595 spin_lock_bh(&vxlan->hash_lock);
596 for (h = 0; h < FDB_HASH_SIZE; ++h) {
597 hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist) {
598 if (f->vni == vni) {
599 list_for_each_entry(rdst, &f->remotes, list) {
600 rc = vxlan_fdb_notify_one(nb, vxlan,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000601 f, rdst,
602 extack);
Petr Machata4f89f5b2018-12-07 19:55:04 +0000603 if (rc)
604 goto out;
605 }
606 }
607 }
608 }
609
610out:
611 spin_unlock_bh(&vxlan->hash_lock);
612 return rc;
613}
614EXPORT_SYMBOL_GPL(vxlan_fdb_replay);
615
Petr Machatae5ff4b12018-12-07 19:55:06 +0000616void vxlan_fdb_clear_offload(const struct net_device *dev, __be32 vni)
617{
618 struct vxlan_dev *vxlan;
619 struct vxlan_rdst *rdst;
620 struct vxlan_fdb *f;
621 unsigned int h;
622
623 if (!netif_is_vxlan(dev))
624 return;
625 vxlan = netdev_priv(dev);
626
627 spin_lock_bh(&vxlan->hash_lock);
628 for (h = 0; h < FDB_HASH_SIZE; ++h) {
629 hlist_for_each_entry(f, &vxlan->fdb_head[h], hlist)
630 if (f->vni == vni)
631 list_for_each_entry(rdst, &f->remotes, list)
632 rdst->offloaded = false;
633 }
634 spin_unlock_bh(&vxlan->hash_lock);
635}
636EXPORT_SYMBOL_GPL(vxlan_fdb_clear_offload);
637
Thomas Richter906dc182013-07-19 17:20:07 +0200638/* Replace destination of unicast mac */
639static int vxlan_fdb_replace(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100640 union vxlan_addr *ip, __be16 port, __be32 vni,
Petr Machataccdfd4f2019-01-16 23:06:34 +0000641 __u32 ifindex, struct vxlan_rdst *oldrd)
Thomas Richter906dc182013-07-19 17:20:07 +0200642{
643 struct vxlan_rdst *rd;
644
645 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
646 if (rd)
647 return 0;
648
649 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
650 if (!rd)
651 return 0;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100652
Petr Machataccdfd4f2019-01-16 23:06:34 +0000653 *oldrd = *rd;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100654 dst_cache_reset(&rd->dst_cache);
Cong Wange4c7ed42013-08-31 13:44:33 +0800655 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200656 rd->remote_port = port;
657 rd->remote_vni = vni;
658 rd->remote_ifindex = ifindex;
Petr Machata6ad0b5a2018-12-18 13:15:59 +0000659 rd->offloaded = false;
Thomas Richter906dc182013-07-19 17:20:07 +0200660 return 1;
661}
662
David Stevens66817122013-03-15 04:35:51 +0000663/* Add/update destinations for multicast */
664static int vxlan_fdb_append(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100665 union vxlan_addr *ip, __be16 port, __be32 vni,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200666 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000667{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700668 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000669
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300670 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
671 if (rd)
672 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700673
David Stevens66817122013-03-15 04:35:51 +0000674 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
675 if (rd == NULL)
676 return -ENOBUFS;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100677
678 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
679 kfree(rd);
680 return -ENOBUFS;
681 }
682
Cong Wange4c7ed42013-08-31 13:44:33 +0800683 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000684 rd->remote_port = port;
Petr Machata0efe1172018-10-17 08:53:26 +0000685 rd->offloaded = false;
David Stevens66817122013-03-15 04:35:51 +0000686 rd->remote_vni = vni;
687 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700688
689 list_add_tail_rcu(&rd->list, &f->remotes);
690
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200691 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000692 return 1;
693}
694
Tom Herbertdfd86452015-01-12 17:00:38 -0800695static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
696 unsigned int off,
697 struct vxlanhdr *vh, size_t hdrlen,
Jiri Benc54bfd872016-02-16 21:58:58 +0100698 __be32 vni_field,
699 struct gro_remcsum *grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800700 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800701{
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700702 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -0800703
704 if (skb->remcsum_offload)
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700705 return vh;
Tom Herbertdfd86452015-01-12 17:00:38 -0800706
707 if (!NAPI_GRO_CB(skb)->csum_valid)
708 return NULL;
709
Jiri Benc54bfd872016-02-16 21:58:58 +0100710 start = vxlan_rco_start(vni_field);
711 offset = start + vxlan_rco_offset(vni_field);
Tom Herbertdfd86452015-01-12 17:00:38 -0800712
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700713 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
714 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800715
716 skb->remcsum_offload = 1;
717
718 return vh;
719}
720
David Millerd4546c22018-06-24 14:13:49 +0900721static struct sk_buff *vxlan_gro_receive(struct sock *sk,
722 struct list_head *head,
723 struct sk_buff *skb)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200724{
David Millerd4546c22018-06-24 14:13:49 +0900725 struct sk_buff *pp = NULL;
726 struct sk_buff *p;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200727 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800728 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200729 int flush = 1;
Tom Herbert5602c482016-04-05 08:22:53 -0700730 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
Jiri Benc54bfd872016-02-16 21:58:58 +0100731 __be32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800732 struct gro_remcsum grc;
733
734 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200735
736 off_vx = skb_gro_offset(skb);
737 hlen = off_vx + sizeof(*vh);
738 vh = skb_gro_header_fast(skb, off_vx);
739 if (skb_gro_header_hard(skb, hlen)) {
740 vh = skb_gro_header_slow(skb, hlen, off_vx);
741 if (unlikely(!vh))
742 goto out;
743 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200744
Tom Herbertdfd86452015-01-12 17:00:38 -0800745 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
746
Jiri Benc54bfd872016-02-16 21:58:58 +0100747 flags = vh->vx_flags;
Tom Herbertdfd86452015-01-12 17:00:38 -0800748
749 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
750 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Jiri Benc54bfd872016-02-16 21:58:58 +0100751 vh->vx_vni, &grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800752 !!(vs->flags &
753 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800754
755 if (!vh)
756 goto out;
757 }
758
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700759 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
760
David Millerd4546c22018-06-24 14:13:49 +0900761 list_for_each_entry(p, head, list) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200762 if (!NAPI_GRO_CB(p)->same_flow)
763 continue;
764
765 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100766 if (vh->vx_flags != vh2->vx_flags ||
767 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200768 NAPI_GRO_CB(p)->same_flow = 0;
769 continue;
770 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200771 }
772
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200773 pp = call_gro_receive(eth_gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800774 flush = 0;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200775
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200776out:
Sabrina Dubroca603d4cf2018-06-30 17:38:55 +0200777 skb_gro_flush_final_remcsum(skb, pp, flush, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200778
779 return pp;
780}
781
Tom Herbert5602c482016-04-05 08:22:53 -0700782static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200783{
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700784 /* Sets 'skb->inner_mac_header' since we are always called with
785 * 'skb->encapsulation' set.
786 */
Jesse Gross9b174d82014-12-30 19:10:15 -0800787 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200788}
789
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700790static struct vxlan_fdb *vxlan_fdb_alloc(struct vxlan_dev *vxlan,
791 const u8 *mac, __u16 state,
Petr Machata45598c12018-11-21 08:02:36 +0000792 __be32 src_vni, __u16 ndm_flags)
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700793{
794 struct vxlan_fdb *f;
795
796 f = kmalloc(sizeof(*f), GFP_ATOMIC);
797 if (!f)
798 return NULL;
799 f->state = state;
800 f->flags = ndm_flags;
801 f->updated = f->used = jiffies;
802 f->vni = src_vni;
803 INIT_LIST_HEAD(&f->remotes);
804 memcpy(f->eth_addr, mac, ETH_ALEN);
805
806 return f;
807}
808
stephen hemmingerd3428942012-10-01 12:32:35 +0000809static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800810 const u8 *mac, union vxlan_addr *ip,
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700811 __u16 state, __be16 port, __be32 src_vni,
Petr Machata45598c12018-11-21 08:02:36 +0000812 __be32 vni, __u32 ifindex, __u16 ndm_flags,
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700813 struct vxlan_fdb **fdb)
814{
815 struct vxlan_rdst *rd = NULL;
816 struct vxlan_fdb *f;
817 int rc;
818
819 if (vxlan->cfg.addrmax &&
820 vxlan->addrcnt >= vxlan->cfg.addrmax)
821 return -ENOSPC;
822
823 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
824 f = vxlan_fdb_alloc(vxlan, mac, state, src_vni, ndm_flags);
825 if (!f)
826 return -ENOMEM;
827
828 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
829 if (rc < 0) {
830 kfree(f);
831 return rc;
832 }
833
834 ++vxlan->addrcnt;
835 hlist_add_head_rcu(&f->hlist,
836 vxlan_fdb_head(vxlan, mac, src_vni));
837
838 *fdb = f;
839
840 return 0;
841}
842
Petr Machatac2b200e2019-01-16 23:06:30 +0000843static void vxlan_fdb_free(struct rcu_head *head)
844{
845 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
846 struct vxlan_rdst *rd, *nd;
847
848 list_for_each_entry_safe(rd, nd, &f->remotes, list) {
849 dst_cache_destroy(&rd->dst_cache);
850 kfree(rd);
851 }
852 kfree(f);
853}
854
855static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
856 bool do_notify, bool swdev_notify)
857{
858 struct vxlan_rdst *rd;
859
860 netdev_dbg(vxlan->dev, "delete %pM\n", f->eth_addr);
861
862 --vxlan->addrcnt;
863 if (do_notify)
864 list_for_each_entry(rd, &f->remotes, list)
865 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000866 swdev_notify, NULL);
Petr Machatac2b200e2019-01-16 23:06:30 +0000867
868 hlist_del_rcu(&f->hlist);
869 call_rcu(&f->rcu, vxlan_fdb_free);
870}
871
Petr Machatafc4aa1c2019-02-07 12:18:02 +0000872static void vxlan_dst_free(struct rcu_head *head)
873{
874 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
875
876 dst_cache_destroy(&rd->dst_cache);
877 kfree(rd);
878}
879
Petr Machataa76d1ca2019-01-16 23:06:32 +0000880static int vxlan_fdb_update_existing(struct vxlan_dev *vxlan,
881 union vxlan_addr *ip,
882 __u16 state, __u16 flags,
883 __be16 port, __be32 vni,
884 __u32 ifindex, __u16 ndm_flags,
885 struct vxlan_fdb *f,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000886 bool swdev_notify,
887 struct netlink_ext_ack *extack)
Petr Machataa76d1ca2019-01-16 23:06:32 +0000888{
889 __u16 fdb_flags = (ndm_flags & ~NTF_USE);
890 struct vxlan_rdst *rd = NULL;
Petr Machataccdfd4f2019-01-16 23:06:34 +0000891 struct vxlan_rdst oldrd;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000892 int notify = 0;
Petr Machata61f46fe2019-01-16 23:06:38 +0000893 int rc = 0;
894 int err;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000895
896 /* Do not allow an externally learned entry to take over an entry added
897 * by the user.
898 */
899 if (!(fdb_flags & NTF_EXT_LEARNED) ||
900 !(f->flags & NTF_VXLAN_ADDED_BY_USER)) {
901 if (f->state != state) {
902 f->state = state;
903 f->updated = jiffies;
904 notify = 1;
905 }
906 if (f->flags != fdb_flags) {
907 f->flags = fdb_flags;
908 f->updated = jiffies;
909 notify = 1;
910 }
911 }
912
913 if ((flags & NLM_F_REPLACE)) {
914 /* Only change unicasts */
915 if (!(is_multicast_ether_addr(f->eth_addr) ||
916 is_zero_ether_addr(f->eth_addr))) {
917 rc = vxlan_fdb_replace(f, ip, port, vni,
Petr Machataccdfd4f2019-01-16 23:06:34 +0000918 ifindex, &oldrd);
Petr Machataa76d1ca2019-01-16 23:06:32 +0000919 notify |= rc;
920 } else {
921 return -EOPNOTSUPP;
922 }
923 }
924 if ((flags & NLM_F_APPEND) &&
925 (is_multicast_ether_addr(f->eth_addr) ||
926 is_zero_ether_addr(f->eth_addr))) {
927 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
928
929 if (rc < 0)
930 return rc;
931 notify |= rc;
932 }
933
934 if (ndm_flags & NTF_USE)
935 f->used = jiffies;
936
937 if (notify) {
938 if (rd == NULL)
939 rd = first_remote_rtnl(f);
940
Petr Machata61f46fe2019-01-16 23:06:38 +0000941 err = vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000942 swdev_notify, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000943 if (err)
944 goto err_notify;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000945 }
946
947 return 0;
Petr Machata61f46fe2019-01-16 23:06:38 +0000948
949err_notify:
950 if ((flags & NLM_F_REPLACE) && rc)
951 *rd = oldrd;
Petr Machatafc4aa1c2019-02-07 12:18:02 +0000952 else if ((flags & NLM_F_APPEND) && rc) {
Petr Machata61f46fe2019-01-16 23:06:38 +0000953 list_del_rcu(&rd->list);
Petr Machatafc4aa1c2019-02-07 12:18:02 +0000954 call_rcu(&rd->rcu, vxlan_dst_free);
955 }
Petr Machata61f46fe2019-01-16 23:06:38 +0000956 return err;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000957}
958
959static int vxlan_fdb_update_create(struct vxlan_dev *vxlan,
960 const u8 *mac, union vxlan_addr *ip,
961 __u16 state, __u16 flags,
962 __be16 port, __be32 src_vni, __be32 vni,
963 __u32 ifindex, __u16 ndm_flags,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000964 bool swdev_notify,
965 struct netlink_ext_ack *extack)
Petr Machataa76d1ca2019-01-16 23:06:32 +0000966{
967 __u16 fdb_flags = (ndm_flags & ~NTF_USE);
968 struct vxlan_fdb *f;
969 int rc;
970
971 /* Disallow replace to add a multicast entry */
972 if ((flags & NLM_F_REPLACE) &&
973 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
974 return -EOPNOTSUPP;
975
976 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
977 rc = vxlan_fdb_create(vxlan, mac, ip, state, port, src_vni,
978 vni, ifindex, fdb_flags, &f);
979 if (rc < 0)
980 return rc;
981
Petr Machata61f46fe2019-01-16 23:06:38 +0000982 rc = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_NEWNEIGH,
Petr Machata4c59b7d2019-01-16 23:06:54 +0000983 swdev_notify, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +0000984 if (rc)
985 goto err_notify;
986
Petr Machataa76d1ca2019-01-16 23:06:32 +0000987 return 0;
Petr Machata61f46fe2019-01-16 23:06:38 +0000988
989err_notify:
990 vxlan_fdb_destroy(vxlan, f, false, false);
991 return rc;
Petr Machataa76d1ca2019-01-16 23:06:32 +0000992}
993
Roopa Prabhu25e20e72018-07-04 16:46:30 -0700994/* Add new entry to forwarding table -- assumes lock held */
995static int vxlan_fdb_update(struct vxlan_dev *vxlan,
996 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000997 __u16 state, __u16 flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800998 __be16 port, __be32 src_vni, __be32 vni,
Petr Machata45598c12018-11-21 08:02:36 +0000999 __u32 ifindex, __u16 ndm_flags,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001000 bool swdev_notify,
1001 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00001002{
1003 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +00001004
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001005 f = __vxlan_find_mac(vxlan, mac, src_vni);
stephen hemmingerd3428942012-10-01 12:32:35 +00001006 if (f) {
1007 if (flags & NLM_F_EXCL) {
1008 netdev_dbg(vxlan->dev,
1009 "lost race to create %pM\n", mac);
1010 return -EEXIST;
1011 }
Petr Machata0ec566a2018-11-21 08:02:37 +00001012
Petr Machataa76d1ca2019-01-16 23:06:32 +00001013 return vxlan_fdb_update_existing(vxlan, ip, state, flags, port,
1014 vni, ifindex, ndm_flags, f,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001015 swdev_notify, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00001016 } else {
1017 if (!(flags & NLM_F_CREATE))
1018 return -ENOENT;
1019
Petr Machataa76d1ca2019-01-16 23:06:32 +00001020 return vxlan_fdb_update_create(vxlan, mac, ip, state, flags,
1021 port, src_vni, vni, ifindex,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001022 ndm_flags, swdev_notify, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00001023 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001024}
1025
Lance Richardson35cf2842017-05-29 13:25:57 -04001026static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
Petr Machata0e6160f2018-11-21 08:02:35 +00001027 struct vxlan_rdst *rd, bool swdev_notify)
Lance Richardson35cf2842017-05-29 13:25:57 -04001028{
1029 list_del_rcu(&rd->list);
Petr Machata4c59b7d2019-01-16 23:06:54 +00001030 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH, swdev_notify, NULL);
Lance Richardson35cf2842017-05-29 13:25:57 -04001031 call_rcu(&rd->rcu, vxlan_dst_free);
1032}
1033
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001034static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001035 union vxlan_addr *ip, __be16 *port, __be32 *src_vni,
1036 __be32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001037{
1038 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001039 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001040
1041 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001042 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
1043 if (err)
1044 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001045 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +08001046 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
1047 if (remote->sa.sa_family == AF_INET) {
1048 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
1049 ip->sa.sa_family = AF_INET;
1050#if IS_ENABLED(CONFIG_IPV6)
1051 } else {
1052 ip->sin6.sin6_addr = in6addr_any;
1053 ip->sa.sa_family = AF_INET6;
1054#endif
1055 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001056 }
1057
1058 if (tb[NDA_PORT]) {
1059 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
1060 return -EINVAL;
1061 *port = nla_get_be16(tb[NDA_PORT]);
1062 } else {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001063 *port = vxlan->cfg.dst_port;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001064 }
1065
1066 if (tb[NDA_VNI]) {
1067 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
1068 return -EINVAL;
Jiri Benc54bfd872016-02-16 21:58:58 +01001069 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001070 } else {
1071 *vni = vxlan->default_dst.remote_vni;
1072 }
1073
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001074 if (tb[NDA_SRC_VNI]) {
1075 if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32))
1076 return -EINVAL;
1077 *src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI]));
1078 } else {
1079 *src_vni = vxlan->default_dst.remote_vni;
1080 }
1081
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001082 if (tb[NDA_IFINDEX]) {
1083 struct net_device *tdev;
1084
1085 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
1086 return -EINVAL;
1087 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +08001088 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001089 if (!tdev)
1090 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001091 } else {
1092 *ifindex = 0;
1093 }
1094
1095 return 0;
1096}
1097
stephen hemmingerd3428942012-10-01 12:32:35 +00001098/* Add static entry (via netlink) */
1099static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1100 struct net_device *dev,
Petr Machata87b09842019-01-16 23:06:50 +00001101 const unsigned char *addr, u16 vid, u16 flags,
1102 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00001103{
1104 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001105 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +08001106 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +00001107 __be16 port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001108 __be32 src_vni, vni;
Jiri Benc54bfd872016-02-16 21:58:58 +01001109 u32 ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001110 int err;
1111
1112 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
1113 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
1114 ndm->ndm_state);
1115 return -EINVAL;
1116 }
1117
1118 if (tb[NDA_DST] == NULL)
1119 return -EINVAL;
1120
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001121 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +03001122 if (err)
1123 return err;
David Stevens66817122013-03-15 04:35:51 +00001124
Mike Rapoport5933a7b2014-04-01 09:23:01 +03001125 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
1126 return -EAFNOSUPPORT;
1127
stephen hemmingerd3428942012-10-01 12:32:35 +00001128 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu25e20e72018-07-04 16:46:30 -07001129 err = vxlan_fdb_update(vxlan, addr, &ip, ndm->ndm_state, flags,
Petr Machata45598c12018-11-21 08:02:36 +00001130 port, src_vni, vni, ifindex,
1131 ndm->ndm_flags | NTF_VXLAN_ADDED_BY_USER,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001132 true, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00001133 spin_unlock_bh(&vxlan->hash_lock);
1134
1135 return err;
1136}
1137
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001138static int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
1139 const unsigned char *addr, union vxlan_addr ip,
Xin Longfc39c382017-11-26 21:19:05 +08001140 __be16 port, __be32 src_vni, __be32 vni,
Petr Machata0e6160f2018-11-21 08:02:35 +00001141 u32 ifindex, bool swdev_notify)
stephen hemmingerd3428942012-10-01 12:32:35 +00001142{
stephen hemmingerd3428942012-10-01 12:32:35 +00001143 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001144 struct vxlan_rdst *rd = NULL;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001145 int err = -ENOENT;
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001146
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001147 f = vxlan_find_mac(vxlan, addr, src_vni);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001148 if (!f)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001149 return err;
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001150
Cong Wange4c7ed42013-08-31 13:44:33 +08001151 if (!vxlan_addr_any(&ip)) {
1152 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001153 if (!rd)
1154 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +00001155 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001156
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001157 /* remove a destination if it's not the only one on the list,
1158 * otherwise destroy the fdb entry
1159 */
1160 if (rd && !list_is_singular(&f->remotes)) {
Petr Machata0e6160f2018-11-21 08:02:35 +00001161 vxlan_fdb_dst_destroy(vxlan, f, rd, swdev_notify);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001162 goto out;
1163 }
1164
Petr Machata0e6160f2018-11-21 08:02:35 +00001165 vxlan_fdb_destroy(vxlan, f, true, swdev_notify);
Mike Rapoportbc7892b2013-06-25 16:01:54 +03001166
1167out:
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001168 return 0;
1169}
1170
1171/* Delete entry (via netlink) */
1172static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
1173 struct net_device *dev,
1174 const unsigned char *addr, u16 vid)
1175{
1176 struct vxlan_dev *vxlan = netdev_priv(dev);
1177 union vxlan_addr ip;
1178 __be32 src_vni, vni;
1179 __be16 port;
1180 u32 ifindex;
1181 int err;
1182
1183 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
1184 if (err)
1185 return err;
1186
1187 spin_lock_bh(&vxlan->hash_lock);
Petr Machata0e6160f2018-11-21 08:02:35 +00001188 err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex,
1189 true);
stephen hemmingerd3428942012-10-01 12:32:35 +00001190 spin_unlock_bh(&vxlan->hash_lock);
1191
1192 return err;
1193}
1194
1195/* Dump forwarding table */
1196static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -04001197 struct net_device *dev,
Roopa Prabhud2976532016-08-30 21:56:45 -07001198 struct net_device *filter_dev, int *idx)
stephen hemmingerd3428942012-10-01 12:32:35 +00001199{
1200 struct vxlan_dev *vxlan = netdev_priv(dev);
1201 unsigned int h;
Roopa Prabhud2976532016-08-30 21:56:45 -07001202 int err = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001203
1204 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1205 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +00001206
Sasha Levinb67bfe02013-02-27 17:06:00 -08001207 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +00001208 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +00001209
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001210 list_for_each_entry_rcu(rd, &f->remotes, list) {
Roopa Prabhud2976532016-08-30 21:56:45 -07001211 if (*idx < cb->args[2])
Atzm Watanabe07a51cd2015-08-10 23:39:09 +09001212 goto skip;
1213
David Stevens66817122013-03-15 04:35:51 +00001214 err = vxlan_fdb_info(skb, vxlan, f,
1215 NETLINK_CB(cb->skb).portid,
1216 cb->nlh->nlmsg_seq,
1217 RTM_NEWNEIGH,
1218 NLM_F_MULTI, rd);
Roopa Prabhud2976532016-08-30 21:56:45 -07001219 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001220 goto out;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001221skip:
Roopa Prabhud2976532016-08-30 21:56:45 -07001222 *idx += 1;
Atzm Watanabe07a51cd2015-08-10 23:39:09 +09001223 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001224 }
1225 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001226out:
Roopa Prabhud2976532016-08-30 21:56:45 -07001227 return err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001228}
1229
Roopa Prabhu474c3c82018-12-15 22:35:10 -08001230static int vxlan_fdb_get(struct sk_buff *skb,
1231 struct nlattr *tb[],
1232 struct net_device *dev,
1233 const unsigned char *addr,
1234 u16 vid, u32 portid, u32 seq,
1235 struct netlink_ext_ack *extack)
1236{
1237 struct vxlan_dev *vxlan = netdev_priv(dev);
1238 struct vxlan_fdb *f;
1239 __be32 vni;
1240 int err;
1241
1242 if (tb[NDA_VNI])
1243 vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
1244 else
1245 vni = vxlan->default_dst.remote_vni;
1246
1247 rcu_read_lock();
1248
1249 f = __vxlan_find_mac(vxlan, addr, vni);
1250 if (!f) {
1251 NL_SET_ERR_MSG(extack, "Fdb entry not found");
1252 err = -ENOENT;
1253 goto errout;
1254 }
1255
1256 err = vxlan_fdb_info(skb, vxlan, f, portid, seq,
1257 RTM_NEWNEIGH, 0, first_remote_rcu(f));
1258errout:
1259 rcu_read_unlock();
1260 return err;
1261}
1262
stephen hemmingerd3428942012-10-01 12:32:35 +00001263/* Watch incoming packets to learn mapping between Ethernet address
1264 * and Tunnel endpoint.
Simon Hormanc4b49512015-04-02 11:17:58 +09001265 * Return true if packet is bogus and should be dropped.
stephen hemmingerd3428942012-10-01 12:32:35 +00001266 */
stephen hemminger26a41ae62013-06-17 12:09:58 -07001267static bool vxlan_snoop(struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001268 union vxlan_addr *src_ip, const u8 *src_mac,
Matthias Schiffer87613de2017-06-19 10:03:59 +02001269 u32 src_ifindex, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +00001270{
1271 struct vxlan_dev *vxlan = netdev_priv(dev);
1272 struct vxlan_fdb *f;
Matthias Schiffer87613de2017-06-19 10:03:59 +02001273 u32 ifindex = 0;
1274
1275#if IS_ENABLED(CONFIG_IPV6)
1276 if (src_ip->sa.sa_family == AF_INET6 &&
1277 (ipv6_addr_type(&src_ip->sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL))
1278 ifindex = src_ifindex;
1279#endif
stephen hemmingerd3428942012-10-01 12:32:35 +00001280
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001281 f = vxlan_find_mac(vxlan, src_mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +00001282 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -07001283 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001284
Matthias Schiffer87613de2017-06-19 10:03:59 +02001285 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip) &&
1286 rdst->remote_ifindex == ifindex))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001287 return false;
1288
1289 /* Don't migrate static entries, drop packets */
Roopa Prabhue0090a92017-06-11 16:32:50 -07001290 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001291 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +00001292
1293 if (net_ratelimit())
1294 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +08001295 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +01001296 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +00001297
Cong Wange4c7ed42013-08-31 13:44:33 +08001298 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001299 f->updated = jiffies;
Petr Machata4c59b7d2019-01-16 23:06:54 +00001300 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH, true, NULL);
stephen hemmingerd3428942012-10-01 12:32:35 +00001301 } else {
1302 /* learned new entry */
1303 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001304
1305 /* close off race between vxlan_flush and incoming packets */
1306 if (netif_running(dev))
Roopa Prabhu25e20e72018-07-04 16:46:30 -07001307 vxlan_fdb_update(vxlan, src_mac, src_ip,
stephen hemminger3bf74b12013-06-17 12:09:57 -07001308 NUD_REACHABLE,
1309 NLM_F_EXCL|NLM_F_CREATE,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001310 vxlan->cfg.dst_port,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001311 vni,
stephen hemminger3bf74b12013-06-17 12:09:57 -07001312 vxlan->default_dst.remote_vni,
Petr Machata4c59b7d2019-01-16 23:06:54 +00001313 ifindex, NTF_SELF, true, NULL);
stephen hemmingerd3428942012-10-01 12:32:35 +00001314 spin_unlock(&vxlan->hash_lock);
1315 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001316
1317 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001318}
1319
stephen hemmingerd3428942012-10-01 12:32:35 +00001320/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001321static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001322{
stephen hemminger553675f2013-05-16 11:35:20 +00001323 struct vxlan_dev *vxlan;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001324 struct vxlan_sock *sock4;
Arnd Bergmann4053ab12016-11-07 22:09:07 +01001325#if IS_ENABLED(CONFIG_IPV6)
1326 struct vxlan_sock *sock6;
1327#endif
Jiri Bencb1be00a2015-09-24 13:50:02 +02001328 unsigned short family = dev->default_dst.remote_ip.sa.sa_family;
stephen hemmingerd3428942012-10-01 12:32:35 +00001329
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001330 sock4 = rtnl_dereference(dev->vn4_sock);
1331
Gao feng95ab0992013-12-10 16:37:33 +08001332 /* The vxlan_sock is only used by dev, leaving group has
1333 * no effect on other vxlan devices.
1334 */
Reshetova, Elena66af8462017-07-04 15:52:59 +03001335 if (family == AF_INET && sock4 && refcount_read(&sock4->refcnt) == 1)
Gao feng95ab0992013-12-10 16:37:33 +08001336 return false;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001337#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001338 sock6 = rtnl_dereference(dev->vn6_sock);
Reshetova, Elena66af8462017-07-04 15:52:59 +03001339 if (family == AF_INET6 && sock6 && refcount_read(&sock6->refcnt) == 1)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001340 return false;
1341#endif
Gao feng95ab0992013-12-10 16:37:33 +08001342
stephen hemminger553675f2013-05-16 11:35:20 +00001343 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001344 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001345 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001346
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001347 if (family == AF_INET &&
1348 rtnl_dereference(vxlan->vn4_sock) != sock4)
Gao feng95ab0992013-12-10 16:37:33 +08001349 continue;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001350#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001351 if (family == AF_INET6 &&
1352 rtnl_dereference(vxlan->vn6_sock) != sock6)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001353 continue;
1354#endif
Gao feng95ab0992013-12-10 16:37:33 +08001355
1356 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1357 &dev->default_dst.remote_ip))
1358 continue;
1359
1360 if (vxlan->default_dst.remote_ifindex !=
1361 dev->default_dst.remote_ifindex)
1362 continue;
1363
1364 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001365 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001366
1367 return false;
1368}
1369
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001370static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001371{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001372 struct vxlan_net *vn;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001373
Jiri Bencb1be00a2015-09-24 13:50:02 +02001374 if (!vs)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001375 return false;
Reshetova, Elena66af8462017-07-04 15:52:59 +03001376 if (!refcount_dec_and_test(&vs->refcnt))
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001377 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001378
Jiri Bencb1be00a2015-09-24 13:50:02 +02001379 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001380 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001381 hlist_del_rcu(&vs->hlist);
Alexander Duycke7b3db52016-06-16 12:20:52 -07001382 udp_tunnel_notify_del_rx_port(vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07001383 (vs->flags & VXLAN_F_GPE) ?
1384 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07001385 UDP_TUNNEL_TYPE_VXLAN);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001386 spin_unlock(&vn->sock_lock);
1387
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001388 return true;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001389}
1390
Jiri Bencb1be00a2015-09-24 13:50:02 +02001391static void vxlan_sock_release(struct vxlan_dev *vxlan)
1392{
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001393 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001394#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001395 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1396
Mark Bloch57d88182017-06-07 14:36:58 +03001397 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001398#endif
1399
Mark Bloch57d88182017-06-07 14:36:58 +03001400 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001401 synchronize_net();
1402
Mark Blocha53cb292017-06-02 03:24:08 +03001403 vxlan_vs_del_dev(vxlan);
1404
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001405 if (__vxlan_sock_release_prep(sock4)) {
1406 udp_tunnel_sock_release(sock4->sock);
1407 kfree(sock4);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001408 }
1409
1410#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001411 if (__vxlan_sock_release_prep(sock6)) {
1412 udp_tunnel_sock_release(sock6->sock);
1413 kfree(sock6);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001414 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02001415#endif
1416}
1417
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001418/* Update multicast group membership when first VNI on
Simon Hormanc4b49512015-04-02 11:17:58 +09001419 * multicast address is brought up
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001420 */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001421static int vxlan_igmp_join(struct vxlan_dev *vxlan)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001422{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001423 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001424 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1425 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001426 int ret = -EINVAL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001427
Cong Wange4c7ed42013-08-31 13:44:33 +08001428 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001429 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001430 struct ip_mreqn mreq = {
1431 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1432 .imr_ifindex = ifindex,
1433 };
1434
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001435 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001436 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001437 ret = ip_mc_join_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001438 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001439#if IS_ENABLED(CONFIG_IPV6)
1440 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001441 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1442
1443 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001444 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001445 ret = ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1446 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001447 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001448#endif
1449 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001450
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001451 return ret;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001452}
1453
1454/* Inverse of vxlan_igmp_join when last VNI is brought down */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001455static int vxlan_igmp_leave(struct vxlan_dev *vxlan)
stephen hemminger3fc2de22013-07-18 08:40:15 -07001456{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001457 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001458 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1459 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001460 int ret = -EINVAL;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001461
Cong Wange4c7ed42013-08-31 13:44:33 +08001462 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001463 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001464 struct ip_mreqn mreq = {
1465 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1466 .imr_ifindex = ifindex,
1467 };
1468
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001469 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001470 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001471 ret = ip_mc_leave_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001472 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001473#if IS_ENABLED(CONFIG_IPV6)
1474 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001475 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1476
1477 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001478 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001479 ret = ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1480 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001481 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001482#endif
1483 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001484
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001485 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00001486}
1487
Jiri Bencf14eceb2016-02-16 21:59:01 +01001488static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1489 struct sk_buff *skb, u32 vxflags)
Tom Herbertdfd86452015-01-12 17:00:38 -08001490{
Jiri Benc7d34fa72016-03-21 17:50:05 +01001491 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -08001492
Jiri Bencf14eceb2016-02-16 21:59:01 +01001493 if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1494 goto out;
Tom Herbertb7fe10e2015-08-19 17:07:32 -07001495
Jiri Bencf14eceb2016-02-16 21:59:01 +01001496 start = vxlan_rco_start(unparsed->vx_vni);
1497 offset = start + vxlan_rco_offset(unparsed->vx_vni);
Tom Herbertdfd86452015-01-12 17:00:38 -08001498
Jiri Benc7d34fa72016-03-21 17:50:05 +01001499 if (!pskb_may_pull(skb, offset + sizeof(u16)))
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001500 return false;
Tom Herbertdfd86452015-01-12 17:00:38 -08001501
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001502 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1503 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
Jiri Bencf14eceb2016-02-16 21:59:01 +01001504out:
1505 unparsed->vx_flags &= ~VXLAN_HF_RCO;
1506 unparsed->vx_vni &= VXLAN_VNI_MASK;
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001507 return true;
Tom Herbertdfd86452015-01-12 17:00:38 -08001508}
1509
Jiri Bencf14eceb2016-02-16 21:59:01 +01001510static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
Jiri Benc64f87d32016-02-23 18:02:55 +01001511 struct sk_buff *skb, u32 vxflags,
Jiri Benc10a5af22016-02-23 18:02:59 +01001512 struct vxlan_metadata *md)
Jiri Benc3288af02016-02-16 21:59:00 +01001513{
Jiri Bencf14eceb2016-02-16 21:59:01 +01001514 struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
Jiri Benc10a5af22016-02-23 18:02:59 +01001515 struct metadata_dst *tun_dst;
Jiri Benc3288af02016-02-16 21:59:00 +01001516
Jiri Bencf14eceb2016-02-16 21:59:01 +01001517 if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1518 goto out;
1519
Jiri Benc3288af02016-02-16 21:59:00 +01001520 md->gbp = ntohs(gbp->policy_id);
1521
Jiri Benc10a5af22016-02-23 18:02:59 +01001522 tun_dst = (struct metadata_dst *)skb_dst(skb);
David S. Miller810813c2016-03-08 12:34:12 -05001523 if (tun_dst) {
Jiri Benc3288af02016-02-16 21:59:00 +01001524 tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
David S. Miller810813c2016-03-08 12:34:12 -05001525 tun_dst->u.tun_info.options_len = sizeof(*md);
1526 }
Jiri Benc3288af02016-02-16 21:59:00 +01001527 if (gbp->dont_learn)
1528 md->gbp |= VXLAN_GBP_DONT_LEARN;
1529
1530 if (gbp->policy_applied)
1531 md->gbp |= VXLAN_GBP_POLICY_APPLIED;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001532
Jiri Benc64f87d32016-02-23 18:02:55 +01001533 /* In flow-based mode, GBP is carried in dst_metadata */
1534 if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1535 skb->mark = md->gbp;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001536out:
1537 unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
Jiri Benc3288af02016-02-16 21:59:00 +01001538}
1539
Jiri Bence1e53142016-04-05 14:47:13 +02001540static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed,
Jiri Benc61618ee2016-04-11 17:06:08 +02001541 __be16 *protocol,
Jiri Bence1e53142016-04-05 14:47:13 +02001542 struct sk_buff *skb, u32 vxflags)
1543{
1544 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed;
1545
1546 /* Need to have Next Protocol set for interfaces in GPE mode. */
1547 if (!gpe->np_applied)
1548 return false;
1549 /* "The initial version is 0. If a receiver does not support the
1550 * version indicated it MUST drop the packet.
1551 */
1552 if (gpe->version != 0)
1553 return false;
1554 /* "When the O bit is set to 1, the packet is an OAM packet and OAM
1555 * processing MUST occur." However, we don't implement OAM
1556 * processing, thus drop the packet.
1557 */
1558 if (gpe->oam_flag)
1559 return false;
1560
Jiri Bencfa20e0e2017-08-28 21:43:22 +02001561 *protocol = tun_p_to_eth_p(gpe->next_protocol);
1562 if (!*protocol)
Jiri Bence1e53142016-04-05 14:47:13 +02001563 return false;
Jiri Bence1e53142016-04-05 14:47:13 +02001564
1565 unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS;
1566 return true;
1567}
1568
Jiri Benc1ab016e2016-02-23 18:02:56 +01001569static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1570 struct vxlan_sock *vs,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001571 struct sk_buff *skb, __be32 vni)
Thomas Graf614732e2015-07-21 10:44:06 +02001572{
Thomas Graf614732e2015-07-21 10:44:06 +02001573 union vxlan_addr saddr;
Matthias Schiffer87613de2017-06-19 10:03:59 +02001574 u32 ifindex = skb->dev->ifindex;
Thomas Graf614732e2015-07-21 10:44:06 +02001575
Thomas Graf614732e2015-07-21 10:44:06 +02001576 skb_reset_mac_header(skb);
Thomas Graf614732e2015-07-21 10:44:06 +02001577 skb->protocol = eth_type_trans(skb, vxlan->dev);
1578 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1579
1580 /* Ignore packet loops (and multicast echo) */
1581 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001582 return false;
Thomas Graf614732e2015-07-21 10:44:06 +02001583
Jiri Benc760c6802016-02-23 18:02:57 +01001584 /* Get address from the outer IP header */
Jiri Bencce212d02015-12-07 16:29:08 +01001585 if (vxlan_get_sk_family(vs) == AF_INET) {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001586 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001587 saddr.sa.sa_family = AF_INET;
1588#if IS_ENABLED(CONFIG_IPV6)
1589 } else {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001590 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001591 saddr.sa.sa_family = AF_INET6;
1592#endif
1593 }
1594
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001595 if ((vxlan->cfg.flags & VXLAN_F_LEARN) &&
Matthias Schiffer87613de2017-06-19 10:03:59 +02001596 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, ifindex, vni))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001597 return false;
1598
1599 return true;
1600}
1601
Jiri Benc760c6802016-02-23 18:02:57 +01001602static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1603 struct sk_buff *skb)
1604{
1605 int err = 0;
1606
1607 if (vxlan_get_sk_family(vs) == AF_INET)
1608 err = IP_ECN_decapsulate(oiph, skb);
1609#if IS_ENABLED(CONFIG_IPV6)
1610 else
1611 err = IP6_ECN_decapsulate(oiph, skb);
1612#endif
1613
1614 if (unlikely(err) && log_ecn_error) {
1615 if (vxlan_get_sk_family(vs) == AF_INET)
1616 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1617 &((struct iphdr *)oiph)->saddr,
1618 ((struct iphdr *)oiph)->tos);
1619 else
1620 net_info_ratelimited("non-ECT from %pI6\n",
1621 &((struct ipv6hdr *)oiph)->saddr);
1622 }
1623 return err <= 1;
1624}
1625
stephen hemmingerd3428942012-10-01 12:32:35 +00001626/* Callback from net/ipv4/udp.c to receive packets */
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001627static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
stephen hemmingerd3428942012-10-01 12:32:35 +00001628{
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001629 struct pcpu_sw_netstats *stats;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001630 struct vxlan_dev *vxlan;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001631 struct vxlan_sock *vs;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001632 struct vxlanhdr unparsed;
Thomas Grafee122c72015-07-21 10:43:58 +02001633 struct vxlan_metadata _md;
1634 struct vxlan_metadata *md = &_md;
Jiri Benc61618ee2016-04-11 17:06:08 +02001635 __be16 protocol = htons(ETH_P_TEB);
Jiri Bence1e53142016-04-05 14:47:13 +02001636 bool raw_proto = false;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001637 void *oiph;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001638 __be32 vni = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001639
Jiri Bence1e53142016-04-05 14:47:13 +02001640 /* Need UDP and VXLAN header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001641 if (!pskb_may_pull(skb, VXLAN_HLEN))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001642 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001643
Jiri Bencf14eceb2016-02-16 21:59:01 +01001644 unparsed = *vxlan_hdr(skb);
Jiri Benc288b01c2016-02-16 21:59:02 +01001645 /* VNI flag always required to be set */
1646 if (!(unparsed.vx_flags & VXLAN_HF_VNI)) {
1647 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1648 ntohl(vxlan_hdr(skb)->vx_flags),
1649 ntohl(vxlan_hdr(skb)->vx_vni));
1650 /* Return non vxlan pkt */
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001651 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001652 }
Jiri Benc288b01c2016-02-16 21:59:02 +01001653 unparsed.vx_flags &= ~VXLAN_HF_VNI;
1654 unparsed.vx_vni &= ~VXLAN_VNI_MASK;
stephen hemmingerd3428942012-10-01 12:32:35 +00001655
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001656 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001657 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001658 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001659
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001660 vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
1661
Matthias Schiffer49f810f2017-06-19 10:04:00 +02001662 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni);
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001663 if (!vxlan)
1664 goto drop;
1665
Jiri Bence1e53142016-04-05 14:47:13 +02001666 /* For backwards compatibility, only allow reserved fields to be
1667 * used by VXLAN extensions if explicitly requested.
1668 */
1669 if (vs->flags & VXLAN_F_GPE) {
1670 if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags))
1671 goto drop;
1672 raw_proto = true;
1673 }
1674
1675 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1676 !net_eq(vxlan->net, dev_net(vxlan->dev))))
1677 goto drop;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001678
Thomas Grafee122c72015-07-21 10:43:58 +02001679 if (vxlan_collect_metadata(vs)) {
Jiri Benc10a5af22016-02-23 18:02:59 +01001680 struct metadata_dst *tun_dst;
Jiri Benc07dabf22016-02-18 19:19:29 +01001681
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001682 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
Amir Vadaid817f432016-09-08 16:23:45 +03001683 key32_to_tunnel_id(vni), sizeof(*md));
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001684
Thomas Grafee122c72015-07-21 10:43:58 +02001685 if (!tun_dst)
1686 goto drop;
1687
Geert Uytterhoeven0f1b7352015-09-04 12:49:32 +02001688 md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
Jiri Benc10a5af22016-02-23 18:02:59 +01001689
1690 skb_dst_set(skb, (struct dst_entry *)tun_dst);
Thomas Grafee122c72015-07-21 10:43:58 +02001691 } else {
1692 memset(md, 0, sizeof(*md));
1693 }
1694
Jiri Bencf14eceb2016-02-16 21:59:01 +01001695 if (vs->flags & VXLAN_F_REMCSUM_RX)
1696 if (!vxlan_remcsum(&unparsed, skb, vs->flags))
1697 goto drop;
1698 if (vs->flags & VXLAN_F_GBP)
Jiri Benc10a5af22016-02-23 18:02:59 +01001699 vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001700 /* Note that GBP and GPE can never be active together. This is
1701 * ensured in vxlan_dev_configure.
1702 */
Thomas Graf35114942015-01-15 03:53:55 +01001703
Jiri Bencf14eceb2016-02-16 21:59:01 +01001704 if (unparsed.vx_flags || unparsed.vx_vni) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001705 /* If there are any unprocessed flags remaining treat
1706 * this as a malformed packet. This behavior diverges from
1707 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1708 * in reserved fields are to be ignored. The approach here
Simon Hormanc4b49512015-04-02 11:17:58 +09001709 * maintains compatibility with previous stack code, and also
Tom Herbert3bf39472015-01-08 12:31:18 -08001710 * is more robust and provides a little more security in
1711 * adding extensions to VXLAN.
1712 */
Jiri Benc288b01c2016-02-16 21:59:02 +01001713 goto drop;
Tom Herbert3bf39472015-01-08 12:31:18 -08001714 }
1715
Jiri Bence1e53142016-04-05 14:47:13 +02001716 if (!raw_proto) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001717 if (!vxlan_set_mac(vxlan, vs, skb, vni))
Jiri Bence1e53142016-04-05 14:47:13 +02001718 goto drop;
1719 } else {
Jiri Benc8be0cfa2016-05-13 10:48:42 +02001720 skb_reset_mac_header(skb);
Jiri Bence1e53142016-04-05 14:47:13 +02001721 skb->dev = vxlan->dev;
1722 skb->pkt_type = PACKET_HOST;
1723 }
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001724
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001725 oiph = skb_network_header(skb);
1726 skb_reset_network_header(skb);
1727
1728 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1729 ++vxlan->dev->stats.rx_frame_errors;
1730 ++vxlan->dev->stats.rx_errors;
1731 goto drop;
1732 }
1733
1734 stats = this_cpu_ptr(vxlan->dev->tstats);
1735 u64_stats_update_begin(&stats->syncp);
1736 stats->rx_packets++;
1737 stats->rx_bytes += skb->len;
1738 u64_stats_update_end(&stats->syncp);
1739
1740 gro_cells_receive(&vxlan->gro_cells, skb);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001741 return 0;
1742
1743drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001744 /* Consume bad packet */
1745 kfree_skb(skb);
1746 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001747}
1748
Stefano Brivioc3a43b92018-11-08 12:19:15 +01001749/* Callback from net/ipv{4,6}/udp.c to check that we have a VNI for errors */
1750static int vxlan_err_lookup(struct sock *sk, struct sk_buff *skb)
1751{
1752 struct vxlan_dev *vxlan;
1753 struct vxlan_sock *vs;
1754 struct vxlanhdr *hdr;
1755 __be32 vni;
1756
1757 if (skb->len < VXLAN_HLEN)
1758 return -EINVAL;
1759
1760 hdr = vxlan_hdr(skb);
1761
1762 if (!(hdr->vx_flags & VXLAN_HF_VNI))
1763 return -EINVAL;
1764
1765 vs = rcu_dereference_sk_user_data(sk);
1766 if (!vs)
1767 return -ENOENT;
1768
1769 vni = vxlan_vni(hdr->vx_vni);
1770 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni);
1771 if (!vxlan)
1772 return -ENOENT;
1773
1774 return 0;
1775}
1776
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001777static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
David Stevense4f67ad2012-11-20 02:50:14 +00001778{
1779 struct vxlan_dev *vxlan = netdev_priv(dev);
1780 struct arphdr *parp;
1781 u8 *arpptr, *sha;
1782 __be32 sip, tip;
1783 struct neighbour *n;
1784
1785 if (dev->flags & IFF_NOARP)
1786 goto out;
1787
1788 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1789 dev->stats.tx_dropped++;
1790 goto out;
1791 }
1792 parp = arp_hdr(skb);
1793
1794 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1795 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1796 parp->ar_pro != htons(ETH_P_IP) ||
1797 parp->ar_op != htons(ARPOP_REQUEST) ||
1798 parp->ar_hln != dev->addr_len ||
1799 parp->ar_pln != 4)
1800 goto out;
1801 arpptr = (u8 *)parp + sizeof(struct arphdr);
1802 sha = arpptr;
1803 arpptr += dev->addr_len; /* sha */
1804 memcpy(&sip, arpptr, sizeof(sip));
1805 arpptr += sizeof(sip);
1806 arpptr += dev->addr_len; /* tha */
1807 memcpy(&tip, arpptr, sizeof(tip));
1808
1809 if (ipv4_is_loopback(tip) ||
1810 ipv4_is_multicast(tip))
1811 goto out;
1812
1813 n = neigh_lookup(&arp_tbl, &tip, dev);
1814
1815 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001816 struct vxlan_fdb *f;
1817 struct sk_buff *reply;
1818
1819 if (!(n->nud_state & NUD_CONNECTED)) {
1820 neigh_release(n);
1821 goto out;
1822 }
1823
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001824 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wange4c7ed42013-08-31 13:44:33 +08001825 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001826 /* bridge-local neighbor */
1827 neigh_release(n);
1828 goto out;
1829 }
1830
1831 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1832 n->ha, sha);
1833
1834 neigh_release(n);
1835
David Stevens73461352014-03-18 12:32:29 -04001836 if (reply == NULL)
1837 goto out;
1838
David Stevense4f67ad2012-11-20 02:50:14 +00001839 skb_reset_mac_header(reply);
1840 __skb_pull(reply, skb_network_offset(reply));
1841 reply->ip_summed = CHECKSUM_UNNECESSARY;
1842 reply->pkt_type = PACKET_HOST;
1843
1844 if (netif_rx_ni(reply) == NET_RX_DROP)
1845 dev->stats.rx_dropped++;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001846 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001847 union vxlan_addr ipa = {
1848 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001849 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001850 };
1851
1852 vxlan_ip_miss(dev, &ipa);
1853 }
David Stevense4f67ad2012-11-20 02:50:14 +00001854out:
1855 consume_skb(skb);
1856 return NETDEV_TX_OK;
1857}
1858
Cong Wangf564f452013-08-31 13:44:36 +08001859#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001860static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1861 struct neighbour *n, bool isrouter)
1862{
1863 struct net_device *dev = request->dev;
1864 struct sk_buff *reply;
1865 struct nd_msg *ns, *na;
1866 struct ipv6hdr *pip6;
1867 u8 *daddr;
1868 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1869 int ns_olen;
1870 int i, len;
1871
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001872 if (dev == NULL || !pskb_may_pull(request, request->len))
David Stevens4b29dba2014-03-24 10:39:58 -04001873 return NULL;
1874
1875 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1876 sizeof(*na) + na_olen + dev->needed_tailroom;
1877 reply = alloc_skb(len, GFP_ATOMIC);
1878 if (reply == NULL)
1879 return NULL;
1880
1881 reply->protocol = htons(ETH_P_IPV6);
1882 reply->dev = dev;
1883 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1884 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001885 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001886
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001887 ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
David Stevens4b29dba2014-03-24 10:39:58 -04001888
1889 daddr = eth_hdr(request)->h_source;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001890 ns_olen = request->len - skb_network_offset(request) -
1891 sizeof(struct ipv6hdr) - sizeof(*ns);
David Stevens4b29dba2014-03-24 10:39:58 -04001892 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1893 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1894 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1895 break;
1896 }
1897 }
1898
1899 /* Ethernet header */
1900 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1901 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1902 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1903 reply->protocol = htons(ETH_P_IPV6);
1904
1905 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001906 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001907 skb_put(reply, sizeof(struct ipv6hdr));
1908
1909 /* IPv6 header */
1910
1911 pip6 = ipv6_hdr(reply);
1912 memset(pip6, 0, sizeof(struct ipv6hdr));
1913 pip6->version = 6;
1914 pip6->priority = ipv6_hdr(request)->priority;
1915 pip6->nexthdr = IPPROTO_ICMPV6;
1916 pip6->hop_limit = 255;
1917 pip6->daddr = ipv6_hdr(request)->saddr;
1918 pip6->saddr = *(struct in6_addr *)n->primary_key;
1919
1920 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001921 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001922
David Stevens4b29dba2014-03-24 10:39:58 -04001923 /* Neighbor Advertisement */
Johannes Bergb080db52017-06-16 14:29:19 +02001924 na = skb_put_zero(reply, sizeof(*na) + na_olen);
David Stevens4b29dba2014-03-24 10:39:58 -04001925 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1926 na->icmph.icmp6_router = isrouter;
1927 na->icmph.icmp6_override = 1;
1928 na->icmph.icmp6_solicited = 1;
1929 na->target = ns->target;
1930 ether_addr_copy(&na->opt[2], n->ha);
1931 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1932 na->opt[1] = na_olen >> 3;
1933
1934 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1935 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1936 csum_partial(na, sizeof(*na)+na_olen, 0));
1937
1938 pip6->payload_len = htons(sizeof(*na)+na_olen);
1939
1940 skb_push(reply, sizeof(struct ipv6hdr));
1941
1942 reply->ip_summed = CHECKSUM_UNNECESSARY;
1943
1944 return reply;
1945}
1946
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001947static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
Cong Wangf564f452013-08-31 13:44:36 +08001948{
1949 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu8dcd81a2017-02-20 08:41:16 -08001950 const struct in6_addr *daddr;
Xin Long8bff36852017-11-11 19:58:50 +08001951 const struct ipv6hdr *iphdr;
David Stevens4b29dba2014-03-24 10:39:58 -04001952 struct inet6_dev *in6_dev;
Xin Long8bff36852017-11-11 19:58:50 +08001953 struct neighbour *n;
1954 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001955
1956 in6_dev = __in6_dev_get(dev);
1957 if (!in6_dev)
1958 goto out;
1959
Cong Wangf564f452013-08-31 13:44:36 +08001960 iphdr = ipv6_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001961 daddr = &iphdr->daddr;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001962 msg = (struct nd_msg *)(iphdr + 1);
Cong Wangf564f452013-08-31 13:44:36 +08001963
David Stevens4b29dba2014-03-24 10:39:58 -04001964 if (ipv6_addr_loopback(daddr) ||
1965 ipv6_addr_is_multicast(&msg->target))
1966 goto out;
1967
1968 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001969
1970 if (n) {
1971 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001972 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001973
1974 if (!(n->nud_state & NUD_CONNECTED)) {
1975 neigh_release(n);
1976 goto out;
1977 }
1978
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001979 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wangf564f452013-08-31 13:44:36 +08001980 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1981 /* bridge-local neighbor */
1982 neigh_release(n);
1983 goto out;
1984 }
1985
David Stevens4b29dba2014-03-24 10:39:58 -04001986 reply = vxlan_na_create(skb, n,
1987 !!(f ? f->flags & NTF_ROUTER : 0));
1988
Cong Wangf564f452013-08-31 13:44:36 +08001989 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001990
1991 if (reply == NULL)
1992 goto out;
1993
1994 if (netif_rx_ni(reply) == NET_RX_DROP)
1995 dev->stats.rx_dropped++;
1996
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001997 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001998 union vxlan_addr ipa = {
1999 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002000 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04002001 };
2002
Cong Wangf564f452013-08-31 13:44:36 +08002003 vxlan_ip_miss(dev, &ipa);
2004 }
2005
2006out:
2007 consume_skb(skb);
2008 return NETDEV_TX_OK;
2009}
2010#endif
2011
David Stevense4f67ad2012-11-20 02:50:14 +00002012static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
2013{
2014 struct vxlan_dev *vxlan = netdev_priv(dev);
2015 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00002016
2017 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
2018 return false;
2019
2020 n = NULL;
2021 switch (ntohs(eth_hdr(skb)->h_proto)) {
2022 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08002023 {
2024 struct iphdr *pip;
2025
David Stevense4f67ad2012-11-20 02:50:14 +00002026 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
2027 return false;
2028 pip = ip_hdr(skb);
2029 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002030 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08002031 union vxlan_addr ipa = {
2032 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002033 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08002034 };
2035
2036 vxlan_ip_miss(dev, &ipa);
2037 return false;
2038 }
2039
David Stevense4f67ad2012-11-20 02:50:14 +00002040 break;
Cong Wange15a00a2013-08-31 13:44:34 +08002041 }
2042#if IS_ENABLED(CONFIG_IPV6)
2043 case ETH_P_IPV6:
2044 {
2045 struct ipv6hdr *pip6;
2046
2047 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
2048 return false;
2049 pip6 = ipv6_hdr(skb);
2050 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002051 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange15a00a2013-08-31 13:44:34 +08002052 union vxlan_addr ipa = {
2053 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02002054 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08002055 };
2056
2057 vxlan_ip_miss(dev, &ipa);
2058 return false;
2059 }
2060
2061 break;
2062 }
2063#endif
David Stevense4f67ad2012-11-20 02:50:14 +00002064 default:
2065 return false;
2066 }
2067
2068 if (n) {
2069 bool diff;
2070
Joe Perches7367d0b2013-09-01 11:51:23 -07002071 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00002072 if (diff) {
2073 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
2074 dev->addr_len);
2075 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
2076 }
2077 neigh_release(n);
2078 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08002079 }
2080
David Stevense4f67ad2012-11-20 02:50:14 +00002081 return false;
2082}
2083
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002084static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01002085 struct vxlan_metadata *md)
2086{
2087 struct vxlanhdr_gbp *gbp;
2088
Thomas Grafdb79a622015-02-04 17:00:04 +01002089 if (!md->gbp)
2090 return;
2091
Thomas Graf35114942015-01-15 03:53:55 +01002092 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01002093 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01002094
2095 if (md->gbp & VXLAN_GBP_DONT_LEARN)
2096 gbp->dont_learn = 1;
2097
2098 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
2099 gbp->policy_applied = 1;
2100
2101 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
2102}
2103
Jiri Bence1e53142016-04-05 14:47:13 +02002104static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
2105 __be16 protocol)
2106{
2107 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
2108
2109 gpe->np_applied = 1;
Jiri Bencfa20e0e2017-08-28 21:43:22 +02002110 gpe->next_protocol = tun_p_from_eth_p(protocol);
2111 if (!gpe->next_protocol)
2112 return -EPFNOSUPPORT;
2113 return 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002114}
2115
Jiri Bencf491e562016-02-02 18:09:16 +01002116static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
2117 int iphdr_len, __be32 vni,
2118 struct vxlan_metadata *md, u32 vxflags,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002119 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08002120{
Cong Wange4c7ed42013-08-31 13:44:33 +08002121 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08002122 int min_headroom;
2123 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08002124 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02002125 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08002126
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002127 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08002128 skb->ip_summed == CHECKSUM_PARTIAL) {
2129 int csum_start = skb_checksum_start_offset(skb);
2130
2131 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
2132 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
2133 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00002134 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08002135 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08002136 }
2137
Cong Wange4c7ed42013-08-31 13:44:33 +08002138 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
pravin shelar4a4f86c2016-11-13 20:43:52 -08002139 + VXLAN_HLEN + iphdr_len;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07002140
2141 /* Need space for new headers (invalidates iph ptr) */
2142 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02002143 if (unlikely(err))
pravin shelarc46b7892016-11-13 20:43:54 -08002144 return err;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07002145
Alexander Duyckaed069d2016-04-14 15:33:37 -04002146 err = iptunnel_handle_offloads(skb, type);
2147 if (err)
pravin shelarc46b7892016-11-13 20:43:54 -08002148 return err;
Jesse Grossb736a622015-04-09 11:19:14 -07002149
Johannes Bergd58ff352017-06-16 14:29:23 +02002150 vxh = __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01002151 vxh->vx_flags = VXLAN_HF_VNI;
2152 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07002153
Tom Herbertdfd86452015-01-12 17:00:38 -08002154 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01002155 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08002156
Jiri Benc54bfd872016-02-16 21:58:58 +01002157 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
2158 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
2159 vxh->vx_flags |= VXLAN_HF_RCO;
Tom Herbertdfd86452015-01-12 17:00:38 -08002160
2161 if (!skb_is_gso(skb)) {
2162 skb->ip_summed = CHECKSUM_NONE;
2163 skb->encapsulation = 0;
2164 }
2165 }
2166
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002167 if (vxflags & VXLAN_F_GBP)
2168 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02002169 if (vxflags & VXLAN_F_GPE) {
2170 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
2171 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002172 return err;
Jiri Bence1e53142016-04-05 14:47:13 +02002173 inner_protocol = skb->protocol;
2174 }
Thomas Graf35114942015-01-15 03:53:55 +01002175
Jiri Bence1e53142016-04-05 14:47:13 +02002176 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08002177 return 0;
Pravin B Shelar49560532013-08-19 11:23:17 -07002178}
Pravin B Shelar49560532013-08-19 11:23:17 -07002179
pravin shelar655c3de2016-11-13 20:43:55 -08002180static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
2181 struct vxlan_sock *sock4,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002182 struct sk_buff *skb, int oif, u8 tos,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002183 __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002184 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002185 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01002186{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002187 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002188 struct rtable *rt = NULL;
2189 struct flowi4 fl4;
2190
pravin shelar655c3de2016-11-13 20:43:55 -08002191 if (!sock4)
2192 return ERR_PTR(-EIO);
2193
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002194 if (tos && !info)
2195 use_cache = false;
2196 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002197 rt = dst_cache_get_ip4(dst_cache, saddr);
2198 if (rt)
2199 return rt;
2200 }
2201
Jiri Benc1a8496b2016-02-02 18:09:14 +01002202 memset(&fl4, 0, sizeof(fl4));
2203 fl4.flowi4_oif = oif;
2204 fl4.flowi4_tos = RT_TOS(tos);
2205 fl4.flowi4_mark = skb->mark;
2206 fl4.flowi4_proto = IPPROTO_UDP;
2207 fl4.daddr = daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07002208 fl4.saddr = *saddr;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002209 fl4.fl4_dport = dport;
2210 fl4.fl4_sport = sport;
Jiri Benc1a8496b2016-02-02 18:09:14 +01002211
2212 rt = ip_route_output_key(vxlan->net, &fl4);
pravin shelar655c3de2016-11-13 20:43:55 -08002213 if (likely(!IS_ERR(rt))) {
2214 if (rt->dst.dev == dev) {
2215 netdev_dbg(dev, "circular route to %pI4\n", &daddr);
2216 ip_rt_put(rt);
2217 return ERR_PTR(-ELOOP);
2218 }
2219
Jiri Benc1a8496b2016-02-02 18:09:14 +01002220 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002221 if (use_cache)
2222 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
pravin shelar655c3de2016-11-13 20:43:55 -08002223 } else {
2224 netdev_dbg(dev, "no route to %pI4\n", &daddr);
2225 return ERR_PTR(-ENETUNREACH);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002226 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002227 return rt;
2228}
2229
Jiri Bence5d4b292015-12-07 13:04:30 +01002230#if IS_ENABLED(CONFIG_IPV6)
2231static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
pravin shelar655c3de2016-11-13 20:43:55 -08002232 struct net_device *dev,
pravin shelar03dc52a2016-11-13 20:43:53 -08002233 struct vxlan_sock *sock6,
Daniel Borkmann14006152016-03-04 15:15:08 +01002234 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002235 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01002236 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002237 struct in6_addr *saddr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002238 __be16 dport, __be16 sport,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002239 struct dst_cache *dst_cache,
2240 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01002241{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002242 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002243 struct dst_entry *ndst;
2244 struct flowi6 fl6;
2245 int err;
2246
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002247 if (!sock6)
2248 return ERR_PTR(-EIO);
2249
Daniel Borkmann14006152016-03-04 15:15:08 +01002250 if (tos && !info)
2251 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002252 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002253 ndst = dst_cache_get_ip6(dst_cache, saddr);
2254 if (ndst)
2255 return ndst;
2256 }
2257
Jiri Bence5d4b292015-12-07 13:04:30 +01002258 memset(&fl6, 0, sizeof(fl6));
2259 fl6.flowi6_oif = oif;
2260 fl6.daddr = *daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07002261 fl6.saddr = *saddr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01002262 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01002263 fl6.flowi6_mark = skb->mark;
2264 fl6.flowi6_proto = IPPROTO_UDP;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002265 fl6.fl6_dport = dport;
2266 fl6.fl6_sport = sport;
Jiri Bence5d4b292015-12-07 13:04:30 +01002267
2268 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002269 sock6->sock->sk,
Jiri Bence5d4b292015-12-07 13:04:30 +01002270 &ndst, &fl6);
pravin shelar655c3de2016-11-13 20:43:55 -08002271 if (unlikely(err < 0)) {
2272 netdev_dbg(dev, "no route to %pI6\n", daddr);
2273 return ERR_PTR(-ENETUNREACH);
2274 }
2275
2276 if (unlikely(ndst->dev == dev)) {
2277 netdev_dbg(dev, "circular route to %pI6\n", daddr);
2278 dst_release(ndst);
2279 return ERR_PTR(-ELOOP);
2280 }
Jiri Bence5d4b292015-12-07 13:04:30 +01002281
2282 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002283 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01002284 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01002285 return ndst;
2286}
2287#endif
2288
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002289/* Bypass encapsulation if the destination is local */
2290static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002291 struct vxlan_dev *dst_vxlan, __be32 vni)
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002292{
Li RongQing8f849852014-01-04 13:57:59 +08002293 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08002294 union vxlan_addr loopback;
2295 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Eric Dumazet4179cb52019-02-07 12:27:38 -08002296 struct net_device *dev;
Li RongQingce6502a2014-10-16 08:49:41 +08002297 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002298
Li RongQing8f849852014-01-04 13:57:59 +08002299 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
2300 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002301 skb->pkt_type = PACKET_HOST;
2302 skb->encapsulation = 0;
2303 skb->dev = dst_vxlan->dev;
2304 __skb_pull(skb, skb_network_offset(skb));
2305
Cong Wange4c7ed42013-08-31 13:44:33 +08002306 if (remote_ip->sa.sa_family == AF_INET) {
2307 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
2308 loopback.sa.sa_family = AF_INET;
2309#if IS_ENABLED(CONFIG_IPV6)
2310 } else {
2311 loopback.sin6.sin6_addr = in6addr_loopback;
2312 loopback.sa.sa_family = AF_INET6;
2313#endif
2314 }
2315
Eric Dumazet4179cb52019-02-07 12:27:38 -08002316 rcu_read_lock();
2317 dev = skb->dev;
2318 if (unlikely(!(dev->flags & IFF_UP))) {
2319 kfree_skb(skb);
2320 goto drop;
2321 }
2322
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002323 if (dst_vxlan->cfg.flags & VXLAN_F_LEARN)
Eric Dumazet4179cb52019-02-07 12:27:38 -08002324 vxlan_snoop(dev, &loopback, eth_hdr(skb)->h_source, 0, vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002325
2326 u64_stats_update_begin(&tx_stats->syncp);
2327 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002328 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002329 u64_stats_update_end(&tx_stats->syncp);
2330
2331 if (netif_rx(skb) == NET_RX_SUCCESS) {
2332 u64_stats_update_begin(&rx_stats->syncp);
2333 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002334 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002335 u64_stats_update_end(&rx_stats->syncp);
2336 } else {
Eric Dumazet4179cb52019-02-07 12:27:38 -08002337drop:
Li RongQingce6502a2014-10-16 08:49:41 +08002338 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002339 }
Eric Dumazet4179cb52019-02-07 12:27:38 -08002340 rcu_read_unlock();
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002341}
2342
pravin shelarfee1fad2016-11-13 20:43:56 -08002343static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002344 struct vxlan_dev *vxlan,
2345 union vxlan_addr *daddr,
2346 __be16 dst_port, int dst_ifindex, __be32 vni,
2347 struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002348 u32 rt_flags)
2349{
2350#if IS_ENABLED(CONFIG_IPV6)
2351 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2352 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2353 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2354 */
2355 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2356#endif
2357 /* Bypass encapsulation if the destination is local */
2358 if (rt_flags & RTCF_LOCAL &&
2359 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2360 struct vxlan_dev *dst_vxlan;
2361
2362 dst_release(dst);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002363 dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni,
pravin shelarfee1fad2016-11-13 20:43:56 -08002364 daddr->sa.sa_family, dst_port,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002365 vxlan->cfg.flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002366 if (!dst_vxlan) {
2367 dev->stats.tx_errors++;
2368 kfree_skb(skb);
2369
2370 return -ENOENT;
2371 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002372 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002373 return 1;
2374 }
2375
2376 return 0;
2377}
2378
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002379static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002380 __be32 default_vni, struct vxlan_rdst *rdst,
2381 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002382{
Paolo Abenid71785f2016-02-12 15:43:57 +01002383 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002384 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002385 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002386 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002387 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002388 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002389 struct vxlan_metadata _md;
2390 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002391 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002392 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002393 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002394 __u8 tos, ttl;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002395 int ifindex;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07002396 int err;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002397 u32 flags = vxlan->cfg.flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002398 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002399 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002400
Jiri Benc61adedf2015-08-20 13:56:25 +02002401 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002402
Thomas Grafee122c72015-07-21 10:43:58 +02002403 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002404 dst = &rdst->remote_ip;
2405 if (vxlan_addr_any(dst)) {
2406 if (did_rsc) {
2407 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002408 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002409 return;
2410 }
2411 goto drop;
2412 }
2413
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002414 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002415 vni = (rdst->remote_vni) ? : default_vni;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002416 ifindex = rdst->remote_ifindex;
Brian Russell11586322017-02-24 17:47:11 +00002417 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002418 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002419 md->gbp = skb->mark;
Hangbin Liu72f6d712018-04-17 14:11:28 +08002420 if (flags & VXLAN_F_TTL_INHERIT) {
2421 ttl = ip_tunnel_get_ttl(old_iph, skb);
2422 } else {
2423 ttl = vxlan->cfg.ttl;
2424 if (!ttl && vxlan_addr_multicast(dst))
2425 ttl = 1;
2426 }
pravin shelar0770b532016-11-13 20:43:57 -08002427
2428 tos = vxlan->cfg.tos;
2429 if (tos == 1)
2430 tos = ip_tunnel_get_dsfield(old_iph, skb);
2431
2432 if (dst->sa.sa_family == AF_INET)
2433 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2434 else
2435 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2436 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002437 } else {
2438 if (!info) {
2439 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2440 dev->name);
2441 goto drop;
2442 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002443 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002444 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002445 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002446 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2447 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002448 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002449 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2450 }
Thomas Grafee122c72015-07-21 10:43:58 +02002451 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002452 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2453 vni = tunnel_id_to_key32(info->key.tun_id);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002454 ifindex = 0;
Paolo Abenid71785f2016-02-12 15:43:57 +01002455 dst_cache = &info->dst_cache;
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -07002456 if (info->options_len &&
2457 info->key.tun_flags & TUNNEL_VXLAN_OPT)
pravin shelar0770b532016-11-13 20:43:57 -08002458 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002459 ttl = info->key.ttl;
2460 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002461 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002462 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002463 }
pravin shelar0770b532016-11-13 20:43:57 -08002464 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2465 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002466
Jakub Kicinski56de8592017-02-24 11:43:36 -08002467 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002468 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002469 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002470 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002471 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002472
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002473 if (!ifindex)
2474 ifindex = sock4->sock->sk->sk_bound_dev_if;
2475
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002476 rt = vxlan_get_route(vxlan, dev, sock4, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002477 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002478 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002479 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002480 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002481 if (IS_ERR(rt)) {
2482 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002483 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002484 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002485
pravin shelarfee1fad2016-11-13 20:43:56 -08002486 if (!info) {
Stefano Briviob4d306972018-11-08 12:19:16 +01002487 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002488 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002489 dst_port, ifindex, vni,
2490 &rt->dst, rt->rt_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002491 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002492 goto out_unlock;
Stefano Briviob4d306972018-11-08 12:19:16 +01002493
2494 if (vxlan->cfg.df == VXLAN_DF_SET) {
2495 df = htons(IP_DF);
2496 } else if (vxlan->cfg.df == VXLAN_DF_INHERIT) {
2497 struct ethhdr *eth = eth_hdr(skb);
2498
2499 if (ntohs(eth->h_proto) == ETH_P_IPV6 ||
2500 (ntohs(eth->h_proto) == ETH_P_IP &&
2501 old_iph->frag_off & htons(IP_DF)))
2502 df = htons(IP_DF);
2503 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002504 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002505 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002506 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002507
pravin shelarc46b7892016-11-13 20:43:54 -08002508 ndst = &rt->dst;
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002509 skb_tunnel_check_pmtu(skb, ndst, VXLAN_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002510
Cong Wange4c7ed42013-08-31 13:44:33 +08002511 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2512 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002513 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002514 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002515 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002516 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002517
Brian Russell11586322017-02-24 17:47:11 +00002518 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002519 dst->sin.sin_addr.s_addr, tos, ttl, df,
2520 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002521#if IS_ENABLED(CONFIG_IPV6)
2522 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002523 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002524
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002525 if (!ifindex)
2526 ifindex = sock6->sock->sk->sk_bound_dev_if;
2527
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002528 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002529 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002530 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002531 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002532 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002533 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002534 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002535 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002536 goto tx_error;
2537 }
pravin shelar655c3de2016-11-13 20:43:55 -08002538
pravin shelarfee1fad2016-11-13 20:43:56 -08002539 if (!info) {
2540 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002541
pravin shelarfee1fad2016-11-13 20:43:56 -08002542 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002543 dst_port, ifindex, vni,
2544 ndst, rt6i_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002545 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002546 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002547 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002548
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002549 skb_tunnel_check_pmtu(skb, ndst, VXLAN6_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002550
Daniel Borkmann14006152016-03-04 15:15:08 +01002551 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002552 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002553 skb_scrub_packet(skb, xnet);
2554 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002555 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002556 if (err < 0)
2557 goto tx_error;
2558
pravin shelar0770b532016-11-13 20:43:57 -08002559 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002560 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002561 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002562 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002563#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002564 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002565out_unlock:
2566 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002567 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002568
2569drop:
2570 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002571 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002572 return;
2573
2574tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002575 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002576 if (err == -ELOOP)
2577 dev->stats.collisions++;
2578 else if (err == -ENETUNREACH)
2579 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002580 dst_release(ndst);
2581 dev->stats.tx_errors++;
2582 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002583}
2584
David Stevens66817122013-03-15 04:35:51 +00002585/* Transmit local packets over Vxlan
2586 *
2587 * Outer IP header inherits ECN and DF from inner header.
2588 * Outer UDP destination is the VXLAN assigned port.
2589 * source port is based on hash of flow
2590 */
2591static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2592{
2593 struct vxlan_dev *vxlan = netdev_priv(dev);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002594 struct vxlan_rdst *rdst, *fdst = NULL;
Xin Long8bff36852017-11-11 19:58:50 +08002595 const struct ip_tunnel_info *info;
2596 bool did_rsc = false;
David Stevens66817122013-03-15 04:35:51 +00002597 struct vxlan_fdb *f;
Xin Long8bff36852017-11-11 19:58:50 +08002598 struct ethhdr *eth;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002599 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002600
Jiri Benc61adedf2015-08-20 13:56:25 +02002601 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002602
David Stevens66817122013-03-15 04:35:51 +00002603 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002604
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002605 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002606 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2607 info->mode & IP_TUNNEL_INFO_TX) {
2608 vni = tunnel_id_to_key32(info->key.tun_id);
2609 } else {
2610 if (info && info->mode & IP_TUNNEL_INFO_TX)
2611 vxlan_xmit_one(skb, dev, vni, NULL, false);
2612 else
2613 kfree_skb(skb);
2614 return NETDEV_TX_OK;
2615 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002616 }
2617
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002618 if (vxlan->cfg.flags & VXLAN_F_PROXY) {
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002619 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002620 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002621 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002622#if IS_ENABLED(CONFIG_IPV6)
Xin Long8bff36852017-11-11 19:58:50 +08002623 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
2624 pskb_may_pull(skb, sizeof(struct ipv6hdr) +
2625 sizeof(struct nd_msg)) &&
2626 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2627 struct nd_msg *m = (struct nd_msg *)(ipv6_hdr(skb) + 1);
2628
2629 if (m->icmph.icmp6_code == 0 &&
2630 m->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002631 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002632 }
2633#endif
2634 }
David Stevens66817122013-03-15 04:35:51 +00002635
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002636 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002637 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002638 did_rsc = false;
2639
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002640 if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002641 (ntohs(eth->h_proto) == ETH_P_IP ||
2642 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002643 did_rsc = route_shortcircuit(dev, skb);
2644 if (did_rsc)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002645 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002646 }
2647
David Stevens66817122013-03-15 04:35:51 +00002648 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002649 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002650 if (f == NULL) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002651 if ((vxlan->cfg.flags & VXLAN_F_L2MISS) &&
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002652 !is_multicast_ether_addr(eth->h_dest))
2653 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002654
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002655 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002656 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002657 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002658 }
David Stevens66817122013-03-15 04:35:51 +00002659 }
2660
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002661 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2662 struct sk_buff *skb1;
2663
Eric Dumazet8f646c92014-01-06 09:54:31 -08002664 if (!fdst) {
2665 fdst = rdst;
2666 continue;
2667 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002668 skb1 = skb_clone(skb, GFP_ATOMIC);
2669 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002670 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002671 }
2672
Eric Dumazet8f646c92014-01-06 09:54:31 -08002673 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002674 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002675 else
2676 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002677 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002678}
2679
stephen hemmingerd3428942012-10-01 12:32:35 +00002680/* Walk the forwarding table and purge stale entries */
Kees Cookdf7e8282017-10-04 16:26:59 -07002681static void vxlan_cleanup(struct timer_list *t)
stephen hemmingerd3428942012-10-01 12:32:35 +00002682{
Kees Cookdf7e8282017-10-04 16:26:59 -07002683 struct vxlan_dev *vxlan = from_timer(vxlan, t, age_timer);
stephen hemmingerd3428942012-10-01 12:32:35 +00002684 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2685 unsigned int h;
2686
2687 if (!netif_running(vxlan->dev))
2688 return;
2689
stephen hemmingerd3428942012-10-01 12:32:35 +00002690 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2691 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002692
Litao Jiaof98ec782019-03-06 12:01:48 +08002693 spin_lock(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002694 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2695 struct vxlan_fdb *f
2696 = container_of(p, struct vxlan_fdb, hlist);
2697 unsigned long timeout;
2698
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002699 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002700 continue;
2701
Roopa Prabhudef499c2017-03-27 15:46:41 -07002702 if (f->flags & NTF_EXT_LEARNED)
2703 continue;
2704
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002705 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002706 if (time_before_eq(timeout, jiffies)) {
2707 netdev_dbg(vxlan->dev,
2708 "garbage collect %pM\n",
2709 f->eth_addr);
2710 f->state = NUD_STALE;
Petr Machata0e6160f2018-11-21 08:02:35 +00002711 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002712 } else if (time_before(timeout, next_timer))
2713 next_timer = timeout;
2714 }
Litao Jiaof98ec782019-03-06 12:01:48 +08002715 spin_unlock(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002716 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002717
2718 mod_timer(&vxlan->age_timer, next_timer);
2719}
2720
Mark Blocha53cb292017-06-02 03:24:08 +03002721static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2722{
2723 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2724
2725 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002726 hlist_del_init_rcu(&vxlan->hlist4.hlist);
2727#if IS_ENABLED(CONFIG_IPV6)
2728 hlist_del_init_rcu(&vxlan->hlist6.hlist);
2729#endif
Mark Blocha53cb292017-06-02 03:24:08 +03002730 spin_unlock(&vn->sock_lock);
2731}
2732
Jiri Benc69e76662017-07-02 19:00:57 +02002733static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan,
2734 struct vxlan_dev_node *node)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002735{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002736 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002737 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002738
Jiri Benc69e76662017-07-02 19:00:57 +02002739 node->vxlan = vxlan;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002740 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002741 hlist_add_head_rcu(&node->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002742 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002743}
2744
stephen hemmingerd3428942012-10-01 12:32:35 +00002745/* Setup stats when device is created */
2746static int vxlan_init(struct net_device *dev)
2747{
WANG Cong1c213bd2014-02-13 11:46:28 -08002748 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002749 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002750 return -ENOMEM;
2751
2752 return 0;
2753}
2754
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002755static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002756{
2757 struct vxlan_fdb *f;
2758
2759 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002760 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002761 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00002762 vxlan_fdb_destroy(vxlan, f, true, true);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002763 spin_unlock_bh(&vxlan->hash_lock);
2764}
2765
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002766static void vxlan_uninit(struct net_device *dev)
2767{
2768 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002769
Stefano Brivioad6c9982019-03-08 16:40:57 +01002770 gro_cells_destroy(&vxlan->gro_cells);
2771
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002772 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002773
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002774 free_percpu(dev->tstats);
2775}
2776
stephen hemmingerd3428942012-10-01 12:32:35 +00002777/* Start ageing timer and join group when device is brought up */
2778static int vxlan_open(struct net_device *dev)
2779{
2780 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002781 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002782
Jiri Benc205f3562015-09-24 13:50:01 +02002783 ret = vxlan_sock_add(vxlan);
2784 if (ret < 0)
2785 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002786
Gao feng79d4a942013-12-10 16:37:32 +08002787 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002788 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002789 if (ret == -EADDRINUSE)
2790 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002791 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002792 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002793 return ret;
2794 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002795 }
2796
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002797 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002798 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2799
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002800 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002801}
2802
2803/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002804static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002805{
Cong Wang31fec5a2013-05-27 22:35:52 +00002806 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002807
2808 spin_lock_bh(&vxlan->hash_lock);
2809 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2810 struct hlist_node *p, *n;
2811 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2812 struct vxlan_fdb *f
2813 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002814 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2815 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002816 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2817 if (!is_zero_ether_addr(f->eth_addr))
Petr Machata0e6160f2018-11-21 08:02:35 +00002818 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002819 }
2820 }
2821 spin_unlock_bh(&vxlan->hash_lock);
2822}
2823
2824/* Cleanup timer and forwarding table on shutdown */
2825static int vxlan_stop(struct net_device *dev)
2826{
2827 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002828 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002829 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002830
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002831 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002832 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002833 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002834
2835 del_timer_sync(&vxlan->age_timer);
2836
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002837 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002838 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002839
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002840 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002841}
2842
stephen hemmingerd3428942012-10-01 12:32:35 +00002843/* Stub, nothing needs to be done. */
2844static void vxlan_set_multicast_list(struct net_device *dev)
2845{
2846}
2847
Daniel Borkmann345010b2013-12-18 00:21:08 +01002848static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2849{
2850 struct vxlan_dev *vxlan = netdev_priv(dev);
2851 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002852 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2853 dst->remote_ifindex);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002854 bool use_ipv6 = !!(vxlan->cfg.flags & VXLAN_F_IPV6);
Jarod Wilson91572082016-10-20 13:55:20 -04002855
2856 /* This check is different than dev->max_mtu, because it looks at
2857 * the lowerdev->mtu, rather than the static dev->max_mtu
2858 */
2859 if (lowerdev) {
2860 int max_mtu = lowerdev->mtu -
2861 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2862 if (new_mtu > max_mtu)
2863 return -EINVAL;
2864 }
2865
2866 dev->mtu = new_mtu;
2867 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002868}
2869
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002870static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2871{
2872 struct vxlan_dev *vxlan = netdev_priv(dev);
2873 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2874 __be16 sport, dport;
2875
2876 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2877 vxlan->cfg.port_max, true);
2878 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2879
Jiri Benc239e9442015-12-07 13:04:31 +01002880 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002881 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002882 struct rtable *rt;
2883
pravin shelar655c3de2016-11-13 20:43:55 -08002884 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002885 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002886 &info->key.u.ipv4.src, dport, sport,
2887 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002888 if (IS_ERR(rt))
2889 return PTR_ERR(rt);
2890 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002891 } else {
2892#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002893 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002894 struct dst_entry *ndst;
2895
pravin shelar655c3de2016-11-13 20:43:55 -08002896 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002897 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002898 &info->key.u.ipv6.src, dport, sport,
2899 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002900 if (IS_ERR(ndst))
2901 return PTR_ERR(ndst);
2902 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002903#else /* !CONFIG_IPV6 */
2904 return -EPFNOSUPPORT;
2905#endif
2906 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002907 info->key.tp_src = sport;
2908 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002909 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002910}
2911
Jiri Benc0c867c92016-04-05 14:47:10 +02002912static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002913 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002914 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002915 .ndo_open = vxlan_open,
2916 .ndo_stop = vxlan_stop,
2917 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002918 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002919 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002920 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002921 .ndo_validate_addr = eth_validate_addr,
2922 .ndo_set_mac_address = eth_mac_addr,
2923 .ndo_fdb_add = vxlan_fdb_add,
2924 .ndo_fdb_del = vxlan_fdb_delete,
2925 .ndo_fdb_dump = vxlan_fdb_dump,
Roopa Prabhu474c3c82018-12-15 22:35:10 -08002926 .ndo_fdb_get = vxlan_fdb_get,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002927 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
Andy Roulin8f1af752019-02-22 18:06:38 +00002928 .ndo_change_proto_down = dev_change_proto_down_generic,
stephen hemmingerd3428942012-10-01 12:32:35 +00002929};
2930
Jiri Bence1e53142016-04-05 14:47:13 +02002931static const struct net_device_ops vxlan_netdev_raw_ops = {
2932 .ndo_init = vxlan_init,
2933 .ndo_uninit = vxlan_uninit,
2934 .ndo_open = vxlan_open,
2935 .ndo_stop = vxlan_stop,
2936 .ndo_start_xmit = vxlan_xmit,
2937 .ndo_get_stats64 = ip_tunnel_get_stats64,
2938 .ndo_change_mtu = vxlan_change_mtu,
2939 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2940};
2941
stephen hemmingerd3428942012-10-01 12:32:35 +00002942/* Info for udev, that this is a virtual tunnel endpoint */
2943static struct device_type vxlan_type = {
2944 .name = "vxlan",
2945};
2946
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002947/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002948 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002949 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002950 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002951static void vxlan_offload_rx_ports(struct net_device *dev, bool push)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002952{
2953 struct vxlan_sock *vs;
2954 struct net *net = dev_net(dev);
2955 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002956 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002957
2958 spin_lock(&vn->sock_lock);
2959 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002960 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2961 unsigned short type;
2962
2963 if (vs->flags & VXLAN_F_GPE)
2964 type = UDP_TUNNEL_TYPE_VXLAN_GPE;
2965 else
2966 type = UDP_TUNNEL_TYPE_VXLAN;
2967
2968 if (push)
2969 udp_tunnel_push_rx_port(dev, vs->sock, type);
2970 else
2971 udp_tunnel_drop_rx_port(dev, vs->sock, type);
2972 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002973 }
2974 spin_unlock(&vn->sock_lock);
2975}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002976
stephen hemmingerd3428942012-10-01 12:32:35 +00002977/* Initialize the device structure. */
2978static void vxlan_setup(struct net_device *dev)
2979{
2980 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002981 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002982
Jiri Benc65226ef2016-04-28 16:36:30 +02002983 eth_hw_addr_random(dev);
2984 ether_setup(dev);
2985
David S. Millercf124db2017-05-08 12:52:56 -04002986 dev->needs_free_netdev = true;
stephen hemmingerd3428942012-10-01 12:32:35 +00002987 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2988
stephen hemmingerd3428942012-10-01 12:32:35 +00002989 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002990 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002991 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002992 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002993
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002994 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002995 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002996 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07002997 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002998 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002999
Matthias Schiffera9853432017-06-19 10:03:55 +02003000 /* MTU range: 68 - 65535 */
3001 dev->min_mtu = ETH_MIN_MTU;
3002 dev->max_mtu = ETH_MAX_MTU;
3003
stephen hemminger553675f2013-05-16 11:35:20 +00003004 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003005 spin_lock_init(&vxlan->hash_lock);
3006
Kees Cookdf7e8282017-10-04 16:26:59 -07003007 timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE);
stephen hemmingerd3428942012-10-01 12:32:35 +00003008
3009 vxlan->dev = dev;
3010
Tom Herbert58ce31c2015-08-19 17:07:33 -07003011 gro_cells_init(&vxlan->gro_cells, dev);
3012
stephen hemmingerd3428942012-10-01 12:32:35 +00003013 for (h = 0; h < FDB_HASH_SIZE; ++h)
3014 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
3015}
3016
Jiri Benc0c867c92016-04-05 14:47:10 +02003017static void vxlan_ether_setup(struct net_device *dev)
3018{
Jiri Benc0c867c92016-04-05 14:47:10 +02003019 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
3020 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
3021 dev->netdev_ops = &vxlan_netdev_ether_ops;
3022}
3023
Jiri Bence1e53142016-04-05 14:47:13 +02003024static void vxlan_raw_setup(struct net_device *dev)
3025{
Jiri Benc65226ef2016-04-28 16:36:30 +02003026 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02003027 dev->type = ARPHRD_NONE;
3028 dev->hard_header_len = 0;
3029 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02003030 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
3031 dev->netdev_ops = &vxlan_netdev_raw_ops;
3032}
3033
stephen hemmingerd3428942012-10-01 12:32:35 +00003034static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
3035 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00003036 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003037 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003038 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
3039 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003040 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003041 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
3042 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003043 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003044 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
3045 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
3046 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00003047 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00003048 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
3049 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
3050 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
3051 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07003052 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00003053 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08003054 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
3055 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
3056 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08003057 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
3058 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01003059 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02003060 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003061 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
Hangbin Liu72f6d712018-04-17 14:11:28 +08003062 [IFLA_VXLAN_TTL_INHERIT] = { .type = NLA_FLAG },
Stefano Briviob4d306972018-11-08 12:19:16 +01003063 [IFLA_VXLAN_DF] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003064};
3065
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02003066static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[],
3067 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003068{
3069 if (tb[IFLA_ADDRESS]) {
3070 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003071 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3072 "Provided link layer address is not Ethernet");
stephen hemmingerd3428942012-10-01 12:32:35 +00003073 return -EINVAL;
3074 }
3075
3076 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003077 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3078 "Provided Ethernet address is not unicast");
stephen hemmingerd3428942012-10-01 12:32:35 +00003079 return -EADDRNOTAVAIL;
3080 }
3081 }
3082
Matthias Schiffera9853432017-06-19 10:03:55 +02003083 if (tb[IFLA_MTU]) {
Matthias Schiffer019b13a2017-06-27 14:42:43 +02003084 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
Matthias Schiffera9853432017-06-19 10:03:55 +02003085
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003086 if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU) {
3087 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3088 "MTU must be between 68 and 65535");
Matthias Schiffera9853432017-06-19 10:03:55 +02003089 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003090 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003091 }
3092
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003093 if (!data) {
3094 NL_SET_ERR_MSG(extack,
3095 "Required attributes not provided to perform the operation");
stephen hemmingerd3428942012-10-01 12:32:35 +00003096 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003097 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003098
3099 if (data[IFLA_VXLAN_ID]) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003100 u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
3101
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003102 if (id >= VXLAN_N_VID) {
3103 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID],
3104 "VXLAN ID must be lower than 16777216");
stephen hemmingerd3428942012-10-01 12:32:35 +00003105 return -ERANGE;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003106 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003107 }
3108
stephen hemminger05f47d62012-10-09 20:35:50 +00003109 if (data[IFLA_VXLAN_PORT_RANGE]) {
3110 const struct ifla_vxlan_port_range *p
3111 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3112
3113 if (ntohs(p->high) < ntohs(p->low)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003114 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3115 "Invalid source port range");
stephen hemminger05f47d62012-10-09 20:35:50 +00003116 return -EINVAL;
3117 }
3118 }
3119
Stefano Briviob4d306972018-11-08 12:19:16 +01003120 if (data[IFLA_VXLAN_DF]) {
3121 enum ifla_vxlan_df df = nla_get_u8(data[IFLA_VXLAN_DF]);
3122
3123 if (df < 0 || df > VXLAN_DF_MAX) {
3124 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_DF],
3125 "Invalid DF attribute");
3126 return -EINVAL;
3127 }
3128 }
3129
stephen hemmingerd3428942012-10-01 12:32:35 +00003130 return 0;
3131}
3132
Yan Burman1b13c972013-01-29 23:43:07 +00003133static void vxlan_get_drvinfo(struct net_device *netdev,
3134 struct ethtool_drvinfo *drvinfo)
3135{
3136 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
3137 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
3138}
3139
3140static const struct ethtool_ops vxlan_ethtool_ops = {
3141 .get_drvinfo = vxlan_get_drvinfo,
3142 .get_link = ethtool_op_get_link,
3143};
3144
Tom Herbert3ee64f32014-07-13 19:49:42 -07003145static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003146 __be16 port, u32 flags, int ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +00003147{
Cong Wange4c7ed42013-08-31 13:44:33 +08003148 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003149 struct udp_port_cfg udp_conf;
3150 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08003151
Tom Herbert3ee64f32014-07-13 19:49:42 -07003152 memset(&udp_conf, 0, sizeof(udp_conf));
3153
3154 if (ipv6) {
3155 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003156 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08003157 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02003158 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003159 } else {
3160 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08003161 }
3162
Tom Herbert3ee64f32014-07-13 19:49:42 -07003163 udp_conf.local_udp_port = port;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003164 udp_conf.bind_ifindex = ifindex;
Cong Wange4c7ed42013-08-31 13:44:33 +08003165
Tom Herbert3ee64f32014-07-13 19:49:42 -07003166 /* Open UDP socket */
3167 err = udp_sock_create(net, &udp_conf, &sock);
3168 if (err < 0)
3169 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08003170
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003171 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08003172}
3173
3174/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02003175static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003176 __be16 port, u32 flags,
3177 int ifindex)
Cong Wange4c7ed42013-08-31 13:44:33 +08003178{
3179 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3180 struct vxlan_sock *vs;
3181 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00003182 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003183 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00003184
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02003185 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08003186 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00003187 return ERR_PTR(-ENOMEM);
3188
3189 for (h = 0; h < VNI_HASH_SIZE; ++h)
3190 INIT_HLIST_HEAD(&vs->vni_list[h]);
3191
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003192 sock = vxlan_create_sock(net, ipv6, port, flags, ifindex);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003193 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00003194 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08003195 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00003196 }
3197
Cong Wange4c7ed42013-08-31 13:44:33 +08003198 vs->sock = sock;
Reshetova, Elena66af8462017-07-04 15:52:59 +03003199 refcount_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08003200 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00003201
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003202 spin_lock(&vn->sock_lock);
3203 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07003204 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07003205 (vs->flags & VXLAN_F_GPE) ?
3206 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07003207 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003208 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00003209
3210 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07003211 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07003212 tunnel_cfg.sk_user_data = vs;
3213 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01003214 tunnel_cfg.encap_rcv = vxlan_rcv;
Stefano Brivioc3a43b92018-11-08 12:19:15 +01003215 tunnel_cfg.encap_err_lookup = vxlan_err_lookup;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003216 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07003217 tunnel_cfg.gro_receive = vxlan_gro_receive;
3218 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003219
3220 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08003221
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003222 return vs;
3223}
stephen hemminger553675f2013-05-16 11:35:20 +00003224
Jiri Bencb1be00a2015-09-24 13:50:02 +02003225static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003226{
Jiri Benc205f3562015-09-24 13:50:01 +02003227 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
3228 struct vxlan_sock *vs = NULL;
Jiri Benc69e76662017-07-02 19:00:57 +02003229 struct vxlan_dev_node *node;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003230 int l3mdev_index = 0;
3231
3232 if (vxlan->cfg.remote_ifindex)
3233 l3mdev_index = l3mdev_master_upper_ifindex_by_index(
3234 vxlan->net, vxlan->cfg.remote_ifindex);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003235
Jiri Benc205f3562015-09-24 13:50:01 +02003236 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003237 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003238 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003239 vxlan->cfg.dst_port, vxlan->cfg.flags,
3240 l3mdev_index);
Reshetova, Elena66af8462017-07-04 15:52:59 +03003241 if (vs && !refcount_inc_not_zero(&vs->refcnt)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003242 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003243 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003244 }
3245 spin_unlock(&vn->sock_lock);
3246 }
Jiri Benc205f3562015-09-24 13:50:01 +02003247 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003248 vs = vxlan_socket_create(vxlan->net, ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003249 vxlan->cfg.dst_port, vxlan->cfg.flags,
3250 l3mdev_index);
Jiri Benc205f3562015-09-24 13:50:01 +02003251 if (IS_ERR(vs))
3252 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003253#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc69e76662017-07-02 19:00:57 +02003254 if (ipv6) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003255 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003256 node = &vxlan->hlist6;
3257 } else
Jiri Bencb1be00a2015-09-24 13:50:02 +02003258#endif
Jiri Benc69e76662017-07-02 19:00:57 +02003259 {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003260 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003261 node = &vxlan->hlist4;
3262 }
3263 vxlan_vs_add_dev(vs, vxlan, node);
Jiri Benc205f3562015-09-24 13:50:01 +02003264 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00003265}
3266
Jiri Bencb1be00a2015-09-24 13:50:02 +02003267static int vxlan_sock_add(struct vxlan_dev *vxlan)
3268{
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003269 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
3270 bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata;
Jiri Bencd074bf92017-04-27 21:24:35 +02003271 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003272 int ret = 0;
3273
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003274 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003275#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003276 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02003277 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02003278 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02003279 if (ret < 0 && ret != -EAFNOSUPPORT)
3280 ipv4 = false;
3281 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02003282#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02003283 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003284 ret = __vxlan_sock_add(vxlan, false);
3285 if (ret < 0)
3286 vxlan_sock_release(vxlan);
3287 return ret;
3288}
3289
Matthias Schiffera9853432017-06-19 10:03:55 +02003290static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf,
3291 struct net_device **lower,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003292 struct vxlan_dev *old,
3293 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003294{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01003295 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Matthias Schiffera9853432017-06-19 10:03:55 +02003296 struct vxlan_dev *tmp;
3297 bool use_ipv6 = false;
3298
3299 if (conf->flags & VXLAN_F_GPE) {
3300 /* For now, allow GPE only together with
3301 * COLLECT_METADATA. This can be relaxed later; in such
3302 * case, the other side of the PtP link will have to be
3303 * provided.
3304 */
3305 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
3306 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003307 NL_SET_ERR_MSG(extack,
3308 "VXLAN GPE does not support this combination of attributes");
Matthias Schiffera9853432017-06-19 10:03:55 +02003309 return -EINVAL;
3310 }
3311 }
3312
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003313 if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) {
3314 /* Unless IPv6 is explicitly requested, assume IPv4 */
Matthias Schiffera9853432017-06-19 10:03:55 +02003315 conf->remote_ip.sa.sa_family = AF_INET;
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003316 conf->saddr.sa.sa_family = AF_INET;
3317 } else if (!conf->remote_ip.sa.sa_family) {
3318 conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family;
3319 } else if (!conf->saddr.sa.sa_family) {
3320 conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family;
3321 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003322
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003323 if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family) {
3324 NL_SET_ERR_MSG(extack,
3325 "Local and remote address must be from the same family");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003326 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003327 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003328
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003329 if (vxlan_addr_multicast(&conf->saddr)) {
3330 NL_SET_ERR_MSG(extack, "Local address cannot be multicast");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003331 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003332 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003333
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003334 if (conf->saddr.sa.sa_family == AF_INET6) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003335 if (!IS_ENABLED(CONFIG_IPV6)) {
3336 NL_SET_ERR_MSG(extack,
3337 "IPv6 support not enabled in the kernel");
Matthias Schiffera9853432017-06-19 10:03:55 +02003338 return -EPFNOSUPPORT;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003339 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003340 use_ipv6 = true;
3341 conf->flags |= VXLAN_F_IPV6;
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003342
3343 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) {
3344 int local_type =
3345 ipv6_addr_type(&conf->saddr.sin6.sin6_addr);
3346 int remote_type =
3347 ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr);
3348
3349 if (local_type & IPV6_ADDR_LINKLOCAL) {
3350 if (!(remote_type & IPV6_ADDR_LINKLOCAL) &&
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003351 (remote_type != IPV6_ADDR_ANY)) {
3352 NL_SET_ERR_MSG(extack,
3353 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003354 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003355 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003356
3357 conf->flags |= VXLAN_F_IPV6_LINKLOCAL;
3358 } else {
3359 if (remote_type ==
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003360 (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL)) {
3361 NL_SET_ERR_MSG(extack,
3362 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003363 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003364 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003365
3366 conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL;
3367 }
3368 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003369 }
3370
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003371 if (conf->label && !use_ipv6) {
3372 NL_SET_ERR_MSG(extack,
3373 "Label attribute only applies to IPv6 VXLAN devices");
Matthias Schiffera9853432017-06-19 10:03:55 +02003374 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003375 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003376
3377 if (conf->remote_ifindex) {
3378 struct net_device *lowerdev;
3379
3380 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003381 if (!lowerdev) {
3382 NL_SET_ERR_MSG(extack,
3383 "Invalid local interface, device not found");
Matthias Schiffera9853432017-06-19 10:03:55 +02003384 return -ENODEV;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003385 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003386
3387#if IS_ENABLED(CONFIG_IPV6)
3388 if (use_ipv6) {
3389 struct inet6_dev *idev = __in6_dev_get(lowerdev);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003390 if (idev && idev->cnf.disable_ipv6) {
3391 NL_SET_ERR_MSG(extack,
3392 "IPv6 support disabled by administrator");
Matthias Schiffera9853432017-06-19 10:03:55 +02003393 return -EPERM;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003394 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003395 }
3396#endif
3397
3398 *lower = lowerdev;
3399 } else {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003400 if (vxlan_addr_multicast(&conf->remote_ip)) {
3401 NL_SET_ERR_MSG(extack,
3402 "Local interface required for multicast remote destination");
3403
Matthias Schiffera9853432017-06-19 10:03:55 +02003404 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003405 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003406
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003407#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003408 if (conf->flags & VXLAN_F_IPV6_LINKLOCAL) {
3409 NL_SET_ERR_MSG(extack,
3410 "Local interface required for link-local local/remote addresses");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003411 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003412 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003413#endif
3414
Matthias Schiffera9853432017-06-19 10:03:55 +02003415 *lower = NULL;
3416 }
3417
3418 if (!conf->dst_port) {
3419 if (conf->flags & VXLAN_F_GPE)
3420 conf->dst_port = htons(4790); /* IANA VXLAN-GPE port */
3421 else
3422 conf->dst_port = htons(vxlan_port);
3423 }
3424
3425 if (!conf->age_interval)
3426 conf->age_interval = FDB_AGE_DEFAULT;
3427
3428 list_for_each_entry(tmp, &vn->vxlan_list, next) {
3429 if (tmp == old)
3430 continue;
3431
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003432 if (tmp->cfg.vni != conf->vni)
3433 continue;
3434 if (tmp->cfg.dst_port != conf->dst_port)
3435 continue;
3436 if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) !=
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003437 (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)))
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003438 continue;
3439
3440 if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) &&
3441 tmp->cfg.remote_ifindex != conf->remote_ifindex)
3442 continue;
3443
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003444 NL_SET_ERR_MSG(extack,
3445 "A VXLAN device with the specified VNI already exists");
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003446 return -EEXIST;
Matthias Schiffera9853432017-06-19 10:03:55 +02003447 }
3448
3449 return 0;
3450}
3451
3452static void vxlan_config_apply(struct net_device *dev,
3453 struct vxlan_config *conf,
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003454 struct net_device *lowerdev,
3455 struct net *src_net,
3456 bool changelink)
Matthias Schiffera9853432017-06-19 10:03:55 +02003457{
3458 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003459 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003460 unsigned short needed_headroom = ETH_HLEN;
Matthias Schiffera9853432017-06-19 10:03:55 +02003461 bool use_ipv6 = !!(conf->flags & VXLAN_F_IPV6);
3462 int max_mtu = ETH_MAX_MTU;
stephen hemmingerd3428942012-10-01 12:32:35 +00003463
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003464 if (!changelink) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003465 if (conf->flags & VXLAN_F_GPE)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003466 vxlan_raw_setup(dev);
Matthias Schiffera9853432017-06-19 10:03:55 +02003467 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003468 vxlan_ether_setup(dev);
Jiri Bence1e53142016-04-05 14:47:13 +02003469
Matthias Schiffera9853432017-06-19 10:03:55 +02003470 if (conf->mtu)
3471 dev->mtu = conf->mtu;
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003472
3473 vxlan->net = src_net;
Jiri Bence1e53142016-04-05 14:47:13 +02003474 }
Jiri Benc0c867c92016-04-05 14:47:10 +02003475
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003476 dst->remote_vni = conf->vni;
3477
3478 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00003479
Matthias Schiffera9853432017-06-19 10:03:55 +02003480 if (lowerdev) {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003481 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00003482
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003483 dev->gso_max_size = lowerdev->gso_max_size;
3484 dev->gso_max_segs = lowerdev->gso_max_segs;
Matthias Schiffera9853432017-06-19 10:03:55 +02003485
3486 needed_headroom = lowerdev->hard_header_len;
3487
3488 max_mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM :
3489 VXLAN_HEADROOM);
Alexey Kodanevf870c1f2017-12-14 20:20:00 +03003490 if (max_mtu < ETH_MIN_MTU)
3491 max_mtu = ETH_MIN_MTU;
3492
3493 if (!changelink && !conf->mtu)
3494 dev->mtu = max_mtu;
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003495 }
3496
Matthias Schiffera9853432017-06-19 10:03:55 +02003497 if (dev->mtu > max_mtu)
3498 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00003499
Jiri Bencb1be00a2015-09-24 13:50:02 +02003500 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
3501 needed_headroom += VXLAN6_HEADROOM;
3502 else
3503 needed_headroom += VXLAN_HEADROOM;
3504 dev->needed_headroom = needed_headroom;
3505
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003506 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Matthias Schiffera9853432017-06-19 10:03:55 +02003507}
stephen hemmingerd3428942012-10-01 12:32:35 +00003508
Matthias Schiffera9853432017-06-19 10:03:55 +02003509static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003510 struct vxlan_config *conf, bool changelink,
3511 struct netlink_ext_ack *extack)
Matthias Schiffera9853432017-06-19 10:03:55 +02003512{
3513 struct vxlan_dev *vxlan = netdev_priv(dev);
3514 struct net_device *lowerdev;
3515 int ret;
Vincent Bernatafb97182012-10-30 10:27:16 +00003516
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003517 ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan, extack);
Matthias Schiffera9853432017-06-19 10:03:55 +02003518 if (ret)
3519 return ret;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003520
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003521 vxlan_config_apply(dev, conf, lowerdev, src_net, changelink);
stephen hemminger553675f2013-05-16 11:35:20 +00003522
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003523 return 0;
3524}
3525
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003526static int __vxlan_dev_create(struct net *net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003527 struct vxlan_config *conf,
3528 struct netlink_ext_ack *extack)
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003529{
3530 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3531 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003532 struct vxlan_fdb *f = NULL;
Petr Machata6db92462018-12-18 13:16:00 +00003533 bool unregister = false;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003534 int err;
3535
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003536 err = vxlan_dev_configure(net, dev, conf, false, extack);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003537 if (err)
3538 return err;
3539
3540 dev->ethtool_ops = &vxlan_ethtool_ops;
3541
3542 /* create an fdb entry for a valid default destination */
3543 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
Roopa Prabhu0241b832018-07-04 16:46:32 -07003544 err = vxlan_fdb_create(vxlan, all_zeros_mac,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003545 &vxlan->default_dst.remote_ip,
3546 NUD_REACHABLE | NUD_PERMANENT,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003547 vxlan->cfg.dst_port,
3548 vxlan->default_dst.remote_vni,
3549 vxlan->default_dst.remote_vni,
3550 vxlan->default_dst.remote_ifindex,
Roopa Prabhu0241b832018-07-04 16:46:32 -07003551 NTF_SELF, &f);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003552 if (err)
3553 return err;
3554 }
3555
3556 err = register_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003557 if (err)
3558 goto errout;
Petr Machata6db92462018-12-18 13:16:00 +00003559 unregister = true;
Roopa Prabhu0241b832018-07-04 16:46:32 -07003560
3561 err = rtnl_configure_link(dev, NULL);
Petr Machata6db92462018-12-18 13:16:00 +00003562 if (err)
Roopa Prabhu0241b832018-07-04 16:46:32 -07003563 goto errout;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003564
Roopa Prabhu0241b832018-07-04 16:46:32 -07003565 /* notify default fdb entry */
Petr Machata61f46fe2019-01-16 23:06:38 +00003566 if (f) {
3567 err = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f),
Petr Machata4c59b7d2019-01-16 23:06:54 +00003568 RTM_NEWNEIGH, true, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +00003569 if (err)
3570 goto errout;
3571 }
Roopa Prabhu0241b832018-07-04 16:46:32 -07003572
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003573 list_add(&vxlan->next, &vn->vxlan_list);
3574 return 0;
Petr Machata6db92462018-12-18 13:16:00 +00003575
Roopa Prabhu0241b832018-07-04 16:46:32 -07003576errout:
Petr Machata6db92462018-12-18 13:16:00 +00003577 /* unregister_netdevice() destroys the default FDB entry with deletion
3578 * notification. But the addition notification was not sent yet, so
3579 * destroy the entry by hand here.
3580 */
Roopa Prabhu0241b832018-07-04 16:46:32 -07003581 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00003582 vxlan_fdb_destroy(vxlan, f, false, false);
Petr Machata6db92462018-12-18 13:16:00 +00003583 if (unregister)
3584 unregister_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003585 return err;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003586}
3587
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003588/* Set/clear flags based on attribute */
3589static int vxlan_nl2flag(struct vxlan_config *conf, struct nlattr *tb[],
3590 int attrtype, unsigned long mask, bool changelink,
3591 bool changelink_supported,
3592 struct netlink_ext_ack *extack)
3593{
3594 unsigned long flags;
3595
3596 if (!tb[attrtype])
3597 return 0;
3598
3599 if (changelink && !changelink_supported) {
3600 vxlan_flag_attr_error(attrtype, extack);
3601 return -EOPNOTSUPP;
3602 }
3603
3604 if (vxlan_policy[attrtype].type == NLA_FLAG)
3605 flags = conf->flags | mask;
3606 else if (nla_get_u8(tb[attrtype]))
3607 flags = conf->flags | mask;
3608 else
3609 flags = conf->flags & ~mask;
3610
3611 conf->flags = flags;
3612
3613 return 0;
3614}
3615
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003616static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3617 struct net_device *dev, struct vxlan_config *conf,
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003618 bool changelink, struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003619{
3620 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003621 int err = 0;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003622
3623 memset(conf, 0, sizeof(*conf));
3624
3625 /* if changelink operation, start with old existing cfg */
3626 if (changelink)
3627 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3628
3629 if (data[IFLA_VXLAN_ID]) {
3630 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3631
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003632 if (changelink && (vni != conf->vni)) {
3633 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID], "Cannot change VNI");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003634 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003635 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003636 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3637 }
3638
3639 if (data[IFLA_VXLAN_GROUP]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003640 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET)) {
3641 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 +02003642 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003643 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003644
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003645 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003646 conf->remote_ip.sa.sa_family = AF_INET;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003647 } else if (data[IFLA_VXLAN_GROUP6]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003648 if (!IS_ENABLED(CONFIG_IPV6)) {
3649 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_GROUP6], "IPv6 support not enabled in the kernel");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003650 return -EPFNOSUPPORT;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003651 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003652
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003653 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6)) {
3654 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 +02003655 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003656 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003657
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003658 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3659 conf->remote_ip.sa.sa_family = AF_INET6;
3660 }
3661
3662 if (data[IFLA_VXLAN_LOCAL]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003663 if (changelink && (conf->saddr.sa.sa_family != AF_INET)) {
3664 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 +02003665 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003666 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003667
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003668 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3669 conf->saddr.sa.sa_family = AF_INET;
3670 } else if (data[IFLA_VXLAN_LOCAL6]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003671 if (!IS_ENABLED(CONFIG_IPV6)) {
3672 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LOCAL6], "IPv6 support not enabled in the kernel");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003673 return -EPFNOSUPPORT;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003674 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003675
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003676 if (changelink && (conf->saddr.sa.sa_family != AF_INET6)) {
3677 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 +02003678 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003679 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003680
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003681 /* TODO: respect scope id */
3682 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3683 conf->saddr.sa.sa_family = AF_INET6;
3684 }
3685
3686 if (data[IFLA_VXLAN_LINK])
3687 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3688
3689 if (data[IFLA_VXLAN_TOS])
3690 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3691
3692 if (data[IFLA_VXLAN_TTL])
3693 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3694
Hangbin Liu72f6d712018-04-17 14:11:28 +08003695 if (data[IFLA_VXLAN_TTL_INHERIT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003696 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_TTL_INHERIT,
3697 VXLAN_F_TTL_INHERIT, changelink, false,
3698 extack);
3699 if (err)
3700 return err;
3701
Hangbin Liu72f6d712018-04-17 14:11:28 +08003702 }
3703
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003704 if (data[IFLA_VXLAN_LABEL])
3705 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3706 IPV6_FLOWLABEL_MASK;
3707
3708 if (data[IFLA_VXLAN_LEARNING]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003709 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_LEARNING,
3710 VXLAN_F_LEARN, changelink, true,
3711 extack);
3712 if (err)
3713 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003714 } else if (!changelink) {
3715 /* default to learn on a new device */
3716 conf->flags |= VXLAN_F_LEARN;
3717 }
3718
Ido Schimmel40051c42018-11-21 08:02:40 +00003719 if (data[IFLA_VXLAN_AGEING])
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003720 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003721
3722 if (data[IFLA_VXLAN_PROXY]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003723 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_PROXY,
3724 VXLAN_F_PROXY, changelink, false,
3725 extack);
3726 if (err)
3727 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003728 }
3729
3730 if (data[IFLA_VXLAN_RSC]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003731 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_RSC,
3732 VXLAN_F_RSC, changelink, false,
3733 extack);
3734 if (err)
3735 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003736 }
3737
3738 if (data[IFLA_VXLAN_L2MISS]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003739 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L2MISS,
3740 VXLAN_F_L2MISS, changelink, false,
3741 extack);
3742 if (err)
3743 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003744 }
3745
3746 if (data[IFLA_VXLAN_L3MISS]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003747 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_L3MISS,
3748 VXLAN_F_L3MISS, changelink, false,
3749 extack);
3750 if (err)
3751 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003752 }
3753
3754 if (data[IFLA_VXLAN_LIMIT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003755 if (changelink) {
3756 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_LIMIT],
3757 "Cannot change limit");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003758 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003759 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003760 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3761 }
3762
3763 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003764 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_COLLECT_METADATA,
3765 VXLAN_F_COLLECT_METADATA, changelink, false,
3766 extack);
3767 if (err)
3768 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003769 }
3770
3771 if (data[IFLA_VXLAN_PORT_RANGE]) {
3772 if (!changelink) {
3773 const struct ifla_vxlan_port_range *p
3774 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3775 conf->port_min = ntohs(p->low);
3776 conf->port_max = ntohs(p->high);
3777 } else {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003778 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3779 "Cannot change port range");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003780 return -EOPNOTSUPP;
3781 }
3782 }
3783
3784 if (data[IFLA_VXLAN_PORT]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003785 if (changelink) {
3786 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT],
3787 "Cannot change port");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003788 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003789 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003790 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3791 }
3792
3793 if (data[IFLA_VXLAN_UDP_CSUM]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003794 if (changelink) {
3795 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_UDP_CSUM],
3796 "Cannot change UDP_CSUM flag");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003797 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003798 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003799 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3800 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3801 }
3802
3803 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003804 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
3805 VXLAN_F_UDP_ZERO_CSUM6_TX, changelink,
3806 false, extack);
3807 if (err)
3808 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003809 }
3810
3811 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003812 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
3813 VXLAN_F_UDP_ZERO_CSUM6_RX, changelink,
3814 false, extack);
3815 if (err)
3816 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003817 }
3818
3819 if (data[IFLA_VXLAN_REMCSUM_TX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003820 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_TX,
3821 VXLAN_F_REMCSUM_TX, changelink, false,
3822 extack);
3823 if (err)
3824 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003825 }
3826
3827 if (data[IFLA_VXLAN_REMCSUM_RX]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003828 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_RX,
3829 VXLAN_F_REMCSUM_RX, changelink, false,
3830 extack);
3831 if (err)
3832 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003833 }
3834
3835 if (data[IFLA_VXLAN_GBP]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003836 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GBP,
3837 VXLAN_F_GBP, changelink, false, extack);
3838 if (err)
3839 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003840 }
3841
3842 if (data[IFLA_VXLAN_GPE]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003843 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_GPE,
3844 VXLAN_F_GPE, changelink, false,
3845 extack);
3846 if (err)
3847 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003848 }
3849
3850 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003851 err = vxlan_nl2flag(conf, data, IFLA_VXLAN_REMCSUM_NOPARTIAL,
3852 VXLAN_F_REMCSUM_NOPARTIAL, changelink,
3853 false, extack);
3854 if (err)
3855 return err;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003856 }
3857
3858 if (tb[IFLA_MTU]) {
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003859 if (changelink) {
3860 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3861 "Cannot change mtu");
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003862 return -EOPNOTSUPP;
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003863 }
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003864 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3865 }
3866
Stefano Briviob4d306972018-11-08 12:19:16 +01003867 if (data[IFLA_VXLAN_DF])
3868 conf->df = nla_get_u8(data[IFLA_VXLAN_DF]);
3869
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003870 return 0;
3871}
3872
3873static int vxlan_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02003874 struct nlattr *tb[], struct nlattr *data[],
3875 struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003876{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003877 struct vxlan_config conf;
3878 int err;
3879
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003880 err = vxlan_nl2conf(tb, data, dev, &conf, false, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003881 if (err)
3882 return err;
3883
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003884 return __vxlan_dev_create(src_net, dev, &conf, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00003885}
3886
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003887static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +02003888 struct nlattr *data[],
3889 struct netlink_ext_ack *extack)
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003890{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003891 struct vxlan_dev *vxlan = netdev_priv(dev);
3892 struct vxlan_rdst *dst = &vxlan->default_dst;
Petr Machata8db9427d52019-01-16 23:06:39 +00003893 struct net_device *lowerdev;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003894 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003895 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003896
Roopa Prabhu70fb0822019-02-25 22:03:01 -08003897 err = vxlan_nl2conf(tb, data, dev, &conf, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003898 if (err)
3899 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003900
Petr Machata8db9427d52019-01-16 23:06:39 +00003901 err = vxlan_config_validate(vxlan->net, &conf, &lowerdev,
3902 vxlan, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003903 if (err)
3904 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003905
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003906 /* handle default dst entry */
Petr Machata038a5a92019-01-16 23:06:41 +00003907 if (!vxlan_addr_equal(&conf.remote_ip, &dst->remote_ip)) {
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003908 spin_lock_bh(&vxlan->hash_lock);
Petr Machata038a5a92019-01-16 23:06:41 +00003909 if (!vxlan_addr_any(&conf.remote_ip)) {
Petr Machatace5e098f2018-12-18 13:16:02 +00003910 err = vxlan_fdb_update(vxlan, all_zeros_mac,
Petr Machata038a5a92019-01-16 23:06:41 +00003911 &conf.remote_ip,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003912 NUD_REACHABLE | NUD_PERMANENT,
Petr Machatace5e098f2018-12-18 13:16:02 +00003913 NLM_F_APPEND | NLM_F_CREATE,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003914 vxlan->cfg.dst_port,
Petr Machata038a5a92019-01-16 23:06:41 +00003915 conf.vni, conf.vni,
3916 conf.remote_ifindex,
Petr Machata4c59b7d2019-01-16 23:06:54 +00003917 NTF_SELF, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003918 if (err) {
3919 spin_unlock_bh(&vxlan->hash_lock);
3920 return err;
3921 }
3922 }
Petr Machata1cdc98c2019-01-16 23:06:43 +00003923 if (!vxlan_addr_any(&dst->remote_ip))
3924 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3925 dst->remote_ip,
3926 vxlan->cfg.dst_port,
3927 dst->remote_vni,
3928 dst->remote_vni,
3929 dst->remote_ifindex,
3930 true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003931 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003932 }
3933
Petr Machata038a5a92019-01-16 23:06:41 +00003934 if (conf.age_interval != vxlan->cfg.age_interval)
3935 mod_timer(&vxlan->age_timer, jiffies);
3936
3937 vxlan_config_apply(dev, &conf, lowerdev, vxlan->net, true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003938 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003939}
3940
stephen hemmingerd3428942012-10-01 12:32:35 +00003941static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3942{
3943 struct vxlan_dev *vxlan = netdev_priv(dev);
3944
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003945 vxlan_flush(vxlan, true);
3946
stephen hemminger553675f2013-05-16 11:35:20 +00003947 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003948 unregister_netdevice_queue(dev, head);
3949}
3950
3951static size_t vxlan_get_size(const struct net_device *dev)
3952{
3953
3954 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003955 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003956 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003957 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003958 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
Hangbin Liu8fd78062018-09-26 10:35:42 +08003959 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL_INHERIT */
stephen hemmingerd3428942012-10-01 12:32:35 +00003960 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Stefano Briviob4d306972018-11-08 12:19:16 +01003961 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_DF */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003962 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003963 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003964 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3965 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3966 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3967 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003968 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003969 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3970 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003971 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003972 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3973 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3974 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3975 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003976 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3977 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003978 0;
3979}
3980
3981static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3982{
3983 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003984 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003985 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003986 .low = htons(vxlan->cfg.port_min),
3987 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003988 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003989
Jiri Benc54bfd872016-02-16 21:58:58 +01003990 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003991 goto nla_put_failure;
3992
Cong Wange4c7ed42013-08-31 13:44:33 +08003993 if (!vxlan_addr_any(&dst->remote_ip)) {
3994 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003995 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3996 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003997 goto nla_put_failure;
3998#if IS_ENABLED(CONFIG_IPV6)
3999 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02004000 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
4001 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004002 goto nla_put_failure;
4003#endif
4004 }
4005 }
stephen hemmingerd3428942012-10-01 12:32:35 +00004006
Atzm Watanabec7995c42013-04-16 02:50:52 +00004007 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00004008 goto nla_put_failure;
4009
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004010 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
4011 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02004012 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004013 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004014 goto nla_put_failure;
4015#if IS_ENABLED(CONFIG_IPV6)
4016 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02004017 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004018 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08004019 goto nla_put_failure;
4020#endif
4021 }
4022 }
stephen hemmingerd3428942012-10-01 12:32:35 +00004023
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004024 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
Hangbin Liu8fd78062018-09-26 10:35:42 +08004025 nla_put_u8(skb, IFLA_VXLAN_TTL_INHERIT,
4026 !!(vxlan->cfg.flags & VXLAN_F_TTL_INHERIT)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004027 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Stefano Briviob4d306972018-11-08 12:19:16 +01004028 nla_put_u8(skb, IFLA_VXLAN_DF, vxlan->cfg.df) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01004029 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004030 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004031 !!(vxlan->cfg.flags & VXLAN_F_LEARN)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004032 nla_put_u8(skb, IFLA_VXLAN_PROXY,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004033 !!(vxlan->cfg.flags & VXLAN_F_PROXY)) ||
4034 nla_put_u8(skb, IFLA_VXLAN_RSC,
4035 !!(vxlan->cfg.flags & VXLAN_F_RSC)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004036 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004037 !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00004038 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004039 !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07004040 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004041 !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02004042 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
4043 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
4044 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004045 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004046 !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004047 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004048 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07004049 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004050 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08004051 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004052 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08004053 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004054 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00004055 goto nla_put_failure;
4056
stephen hemminger05f47d62012-10-09 20:35:50 +00004057 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
4058 goto nla_put_failure;
4059
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004060 if (vxlan->cfg.flags & VXLAN_F_GBP &&
Thomas Graf35114942015-01-15 03:53:55 +01004061 nla_put_flag(skb, IFLA_VXLAN_GBP))
4062 goto nla_put_failure;
4063
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004064 if (vxlan->cfg.flags & VXLAN_F_GPE &&
Jiri Bence1e53142016-04-05 14:47:13 +02004065 nla_put_flag(skb, IFLA_VXLAN_GPE))
4066 goto nla_put_failure;
4067
Matthias Schifferdc5321d2017-06-19 10:03:56 +02004068 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL &&
Tom Herbert0ace2ca2015-02-10 16:30:32 -08004069 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
4070 goto nla_put_failure;
4071
stephen hemmingerd3428942012-10-01 12:32:35 +00004072 return 0;
4073
4074nla_put_failure:
4075 return -EMSGSIZE;
4076}
4077
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004078static struct net *vxlan_get_link_net(const struct net_device *dev)
4079{
4080 struct vxlan_dev *vxlan = netdev_priv(dev);
4081
4082 return vxlan->net;
4083}
4084
stephen hemmingerd3428942012-10-01 12:32:35 +00004085static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
4086 .kind = "vxlan",
4087 .maxtype = IFLA_VXLAN_MAX,
4088 .policy = vxlan_policy,
4089 .priv_size = sizeof(struct vxlan_dev),
4090 .setup = vxlan_setup,
4091 .validate = vxlan_validate,
4092 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08004093 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00004094 .dellink = vxlan_dellink,
4095 .get_size = vxlan_get_size,
4096 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004097 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004098};
4099
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004100struct net_device *vxlan_dev_create(struct net *net, const char *name,
4101 u8 name_assign_type,
4102 struct vxlan_config *conf)
4103{
4104 struct nlattr *tb[IFLA_MAX + 1];
4105 struct net_device *dev;
4106 int err;
4107
4108 memset(&tb, 0, sizeof(tb));
4109
4110 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08004111 &vxlan_link_ops, tb, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004112 if (IS_ERR(dev))
4113 return dev;
4114
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07004115 err = __vxlan_dev_create(net, dev, conf, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004116 if (err < 0) {
4117 free_netdev(dev);
4118 return ERR_PTR(err);
4119 }
4120
4121 err = rtnl_configure_link(dev, NULL);
4122 if (err < 0) {
4123 LIST_HEAD(list_kill);
4124
4125 vxlan_dellink(dev, &list_kill);
4126 unregister_netdevice_many(&list_kill);
4127 return ERR_PTR(err);
4128 }
4129
4130 return dev;
4131}
4132EXPORT_SYMBOL_GPL(vxlan_dev_create);
4133
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004134static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
4135 struct net_device *dev)
4136{
4137 struct vxlan_dev *vxlan, *next;
4138 LIST_HEAD(list_kill);
4139
4140 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4141 struct vxlan_rdst *dst = &vxlan->default_dst;
4142
4143 /* In case we created vxlan device with carrier
4144 * and we loose the carrier due to module unload
4145 * we also need to remove vxlan device. In other
4146 * cases, it's not necessary and remote_ifindex
4147 * is 0 here, so no matches.
4148 */
4149 if (dst->remote_ifindex == dev->ifindex)
4150 vxlan_dellink(vxlan->dev, &list_kill);
4151 }
4152
4153 unregister_netdevice_many(&list_kill);
4154}
4155
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004156static int vxlan_netdevice_event(struct notifier_block *unused,
4157 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004158{
4159 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004160 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004161
Sabrina Dubroca04584952017-07-21 12:49:33 +02004162 if (event == NETDEV_UNREGISTER) {
4163 vxlan_offload_rx_ports(dev, false);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004164 vxlan_handle_lowerdev_unregister(vn, dev);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004165 } else if (event == NETDEV_REGISTER) {
4166 vxlan_offload_rx_ports(dev, true);
4167 } else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
4168 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02004169 vxlan_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004170 }
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004171
4172 return NOTIFY_DONE;
4173}
4174
4175static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004176 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004177};
4178
Petr Machata0efe1172018-10-17 08:53:26 +00004179static void
4180vxlan_fdb_offloaded_set(struct net_device *dev,
4181 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4182{
4183 struct vxlan_dev *vxlan = netdev_priv(dev);
4184 struct vxlan_rdst *rdst;
4185 struct vxlan_fdb *f;
4186
4187 spin_lock_bh(&vxlan->hash_lock);
4188
4189 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4190 if (!f)
4191 goto out;
4192
4193 rdst = vxlan_fdb_find_rdst(f, &fdb_info->remote_ip,
4194 fdb_info->remote_port,
4195 fdb_info->remote_vni,
4196 fdb_info->remote_ifindex);
4197 if (!rdst)
4198 goto out;
4199
4200 rdst->offloaded = fdb_info->offloaded;
4201
4202out:
4203 spin_unlock_bh(&vxlan->hash_lock);
4204}
4205
Petr Machata5728ae02018-11-21 08:02:39 +00004206static int
4207vxlan_fdb_external_learn_add(struct net_device *dev,
4208 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4209{
4210 struct vxlan_dev *vxlan = netdev_priv(dev);
Petr Machata4c59b7d2019-01-16 23:06:54 +00004211 struct netlink_ext_ack *extack;
Petr Machata5728ae02018-11-21 08:02:39 +00004212 int err;
4213
Petr Machata4c59b7d2019-01-16 23:06:54 +00004214 extack = switchdev_notifier_info_to_extack(&fdb_info->info);
4215
Petr Machata5728ae02018-11-21 08:02:39 +00004216 spin_lock_bh(&vxlan->hash_lock);
4217 err = vxlan_fdb_update(vxlan, fdb_info->eth_addr, &fdb_info->remote_ip,
4218 NUD_REACHABLE,
4219 NLM_F_CREATE | NLM_F_REPLACE,
4220 fdb_info->remote_port,
4221 fdb_info->vni,
4222 fdb_info->remote_vni,
4223 fdb_info->remote_ifindex,
4224 NTF_USE | NTF_SELF | NTF_EXT_LEARNED,
Petr Machata4c59b7d2019-01-16 23:06:54 +00004225 false, extack);
Petr Machata5728ae02018-11-21 08:02:39 +00004226 spin_unlock_bh(&vxlan->hash_lock);
4227
4228 return err;
4229}
4230
4231static int
4232vxlan_fdb_external_learn_del(struct net_device *dev,
4233 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4234{
4235 struct vxlan_dev *vxlan = netdev_priv(dev);
4236 struct vxlan_fdb *f;
4237 int err = 0;
4238
4239 spin_lock_bh(&vxlan->hash_lock);
4240
4241 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4242 if (!f)
4243 err = -ENOENT;
4244 else if (f->flags & NTF_EXT_LEARNED)
4245 err = __vxlan_fdb_delete(vxlan, fdb_info->eth_addr,
4246 fdb_info->remote_ip,
4247 fdb_info->remote_port,
4248 fdb_info->vni,
4249 fdb_info->remote_vni,
4250 fdb_info->remote_ifindex,
4251 false);
4252
4253 spin_unlock_bh(&vxlan->hash_lock);
4254
4255 return err;
4256}
4257
Petr Machata0efe1172018-10-17 08:53:26 +00004258static int vxlan_switchdev_event(struct notifier_block *unused,
4259 unsigned long event, void *ptr)
4260{
4261 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
Petr Machata5728ae02018-11-21 08:02:39 +00004262 struct switchdev_notifier_vxlan_fdb_info *fdb_info;
4263 int err = 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004264
4265 switch (event) {
4266 case SWITCHDEV_VXLAN_FDB_OFFLOADED:
4267 vxlan_fdb_offloaded_set(dev, ptr);
4268 break;
Petr Machata5728ae02018-11-21 08:02:39 +00004269 case SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE:
4270 fdb_info = ptr;
4271 err = vxlan_fdb_external_learn_add(dev, fdb_info);
4272 if (err) {
4273 err = notifier_from_errno(err);
4274 break;
4275 }
4276 fdb_info->offloaded = true;
4277 vxlan_fdb_offloaded_set(dev, fdb_info);
4278 break;
4279 case SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE:
4280 fdb_info = ptr;
4281 err = vxlan_fdb_external_learn_del(dev, fdb_info);
4282 if (err) {
4283 err = notifier_from_errno(err);
4284 break;
4285 }
4286 fdb_info->offloaded = false;
4287 vxlan_fdb_offloaded_set(dev, fdb_info);
4288 break;
Petr Machata0efe1172018-10-17 08:53:26 +00004289 }
4290
Petr Machata5728ae02018-11-21 08:02:39 +00004291 return err;
Petr Machata0efe1172018-10-17 08:53:26 +00004292}
4293
4294static struct notifier_block vxlan_switchdev_notifier_block __read_mostly = {
4295 .notifier_call = vxlan_switchdev_event,
4296};
4297
stephen hemmingerd3428942012-10-01 12:32:35 +00004298static __net_init int vxlan_init_net(struct net *net)
4299{
4300 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00004301 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00004302
stephen hemminger553675f2013-05-16 11:35:20 +00004303 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07004304 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00004305
stephen hemminger553675f2013-05-16 11:35:20 +00004306 for (h = 0; h < PORT_HASH_SIZE; ++h)
4307 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00004308
4309 return 0;
4310}
4311
Haishuang Yan57b61122017-12-16 17:54:49 +08004312static void vxlan_destroy_tunnels(struct net *net, struct list_head *head)
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004313{
4314 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4315 struct vxlan_dev *vxlan, *next;
4316 struct net_device *dev, *aux;
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004317 unsigned int h;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004318
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004319 for_each_netdev_safe(net, dev, aux)
4320 if (dev->rtnl_link_ops == &vxlan_link_ops)
Haishuang Yan57b61122017-12-16 17:54:49 +08004321 unregister_netdevice_queue(dev, head);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004322
4323 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4324 /* If vxlan->dev is in the same netns, it has already been added
4325 * to the list by the previous loop.
4326 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07004327 if (!net_eq(dev_net(vxlan->dev), net)) {
4328 gro_cells_destroy(&vxlan->gro_cells);
Haishuang Yan57b61122017-12-16 17:54:49 +08004329 unregister_netdevice_queue(vxlan->dev, head);
Tom Herbert58ce31c2015-08-19 17:07:33 -07004330 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004331 }
4332
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004333 for (h = 0; h < PORT_HASH_SIZE; ++h)
4334 WARN_ON_ONCE(!hlist_empty(&vn->sock_list[h]));
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004335}
4336
Haishuang Yan57b61122017-12-16 17:54:49 +08004337static void __net_exit vxlan_exit_batch_net(struct list_head *net_list)
4338{
4339 struct net *net;
4340 LIST_HEAD(list);
4341
4342 rtnl_lock();
4343 list_for_each_entry(net, net_list, exit_list)
4344 vxlan_destroy_tunnels(net, &list);
4345
4346 unregister_netdevice_many(&list);
4347 rtnl_unlock();
4348}
4349
stephen hemmingerd3428942012-10-01 12:32:35 +00004350static struct pernet_operations vxlan_net_ops = {
4351 .init = vxlan_init_net,
Haishuang Yan57b61122017-12-16 17:54:49 +08004352 .exit_batch = vxlan_exit_batch_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004353 .id = &vxlan_net_id,
4354 .size = sizeof(struct vxlan_net),
4355};
4356
4357static int __init vxlan_init_module(void)
4358{
4359 int rc;
4360
4361 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
4362
Daniel Borkmann783c1462014-01-22 21:07:53 +01004363 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004364 if (rc)
4365 goto out1;
4366
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004367 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004368 if (rc)
4369 goto out2;
4370
Petr Machata0efe1172018-10-17 08:53:26 +00004371 rc = register_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004372 if (rc)
4373 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00004374
Petr Machata0efe1172018-10-17 08:53:26 +00004375 rc = rtnl_link_register(&vxlan_link_ops);
4376 if (rc)
4377 goto out4;
4378
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004379 return 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004380out4:
4381 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004382out3:
4383 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004384out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01004385 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004386out1:
4387 return rc;
4388}
Cong Wang7332a132013-05-27 22:35:53 +00004389late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00004390
4391static void __exit vxlan_cleanup_module(void)
4392{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07004393 rtnl_link_unregister(&vxlan_link_ops);
Petr Machata0efe1172018-10-17 08:53:26 +00004394 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004395 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004396 unregister_pernet_subsys(&vxlan_net_ops);
4397 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00004398}
4399module_exit(vxlan_cleanup_module);
4400
4401MODULE_LICENSE("GPL");
4402MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004403MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08004404MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00004405MODULE_ALIAS_RTNL_LINK("vxlan");