blob: c0cd1c022e775d49bd000690049d06b7658c1362 [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;
Li RongQingce6502a2014-10-16 08:49:41 +08002296 struct net_device *dev = skb->dev;
2297 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
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002316 if (dst_vxlan->cfg.flags & VXLAN_F_LEARN)
Matthias Schiffer87613de2017-06-19 10:03:59 +02002317 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source, 0,
2318 vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002319
2320 u64_stats_update_begin(&tx_stats->syncp);
2321 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002322 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002323 u64_stats_update_end(&tx_stats->syncp);
2324
2325 if (netif_rx(skb) == NET_RX_SUCCESS) {
2326 u64_stats_update_begin(&rx_stats->syncp);
2327 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002328 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002329 u64_stats_update_end(&rx_stats->syncp);
2330 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08002331 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002332 }
2333}
2334
pravin shelarfee1fad2016-11-13 20:43:56 -08002335static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002336 struct vxlan_dev *vxlan,
2337 union vxlan_addr *daddr,
2338 __be16 dst_port, int dst_ifindex, __be32 vni,
2339 struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002340 u32 rt_flags)
2341{
2342#if IS_ENABLED(CONFIG_IPV6)
2343 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2344 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2345 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2346 */
2347 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2348#endif
2349 /* Bypass encapsulation if the destination is local */
2350 if (rt_flags & RTCF_LOCAL &&
2351 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2352 struct vxlan_dev *dst_vxlan;
2353
2354 dst_release(dst);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002355 dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni,
pravin shelarfee1fad2016-11-13 20:43:56 -08002356 daddr->sa.sa_family, dst_port,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002357 vxlan->cfg.flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002358 if (!dst_vxlan) {
2359 dev->stats.tx_errors++;
2360 kfree_skb(skb);
2361
2362 return -ENOENT;
2363 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002364 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002365 return 1;
2366 }
2367
2368 return 0;
2369}
2370
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002371static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002372 __be32 default_vni, struct vxlan_rdst *rdst,
2373 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002374{
Paolo Abenid71785f2016-02-12 15:43:57 +01002375 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002376 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002377 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002378 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002379 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002380 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002381 struct vxlan_metadata _md;
2382 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002383 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002384 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002385 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002386 __u8 tos, ttl;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002387 int ifindex;
Pravin B Shelar0e6fbc5b2013-06-17 17:49:56 -07002388 int err;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002389 u32 flags = vxlan->cfg.flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002390 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002391 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002392
Jiri Benc61adedf2015-08-20 13:56:25 +02002393 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002394
Thomas Grafee122c72015-07-21 10:43:58 +02002395 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002396 dst = &rdst->remote_ip;
2397 if (vxlan_addr_any(dst)) {
2398 if (did_rsc) {
2399 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002400 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002401 return;
2402 }
2403 goto drop;
2404 }
2405
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002406 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002407 vni = (rdst->remote_vni) ? : default_vni;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002408 ifindex = rdst->remote_ifindex;
Brian Russell11586322017-02-24 17:47:11 +00002409 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002410 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002411 md->gbp = skb->mark;
Hangbin Liu72f6d712018-04-17 14:11:28 +08002412 if (flags & VXLAN_F_TTL_INHERIT) {
2413 ttl = ip_tunnel_get_ttl(old_iph, skb);
2414 } else {
2415 ttl = vxlan->cfg.ttl;
2416 if (!ttl && vxlan_addr_multicast(dst))
2417 ttl = 1;
2418 }
pravin shelar0770b532016-11-13 20:43:57 -08002419
2420 tos = vxlan->cfg.tos;
2421 if (tos == 1)
2422 tos = ip_tunnel_get_dsfield(old_iph, skb);
2423
2424 if (dst->sa.sa_family == AF_INET)
2425 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2426 else
2427 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2428 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002429 } else {
2430 if (!info) {
2431 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2432 dev->name);
2433 goto drop;
2434 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002435 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002436 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002437 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002438 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2439 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002440 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002441 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2442 }
Thomas Grafee122c72015-07-21 10:43:58 +02002443 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002444 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2445 vni = tunnel_id_to_key32(info->key.tun_id);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002446 ifindex = 0;
Paolo Abenid71785f2016-02-12 15:43:57 +01002447 dst_cache = &info->dst_cache;
Pieter Jansen van Vuuren256c87c2018-06-26 21:39:36 -07002448 if (info->options_len &&
2449 info->key.tun_flags & TUNNEL_VXLAN_OPT)
pravin shelar0770b532016-11-13 20:43:57 -08002450 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002451 ttl = info->key.ttl;
2452 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002453 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002454 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002455 }
pravin shelar0770b532016-11-13 20:43:57 -08002456 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2457 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002458
Jakub Kicinski56de8592017-02-24 11:43:36 -08002459 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002460 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002461 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002462 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002463 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002464
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002465 if (!ifindex)
2466 ifindex = sock4->sock->sk->sk_bound_dev_if;
2467
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002468 rt = vxlan_get_route(vxlan, dev, sock4, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002469 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002470 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002471 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002472 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002473 if (IS_ERR(rt)) {
2474 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002475 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002476 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002477
pravin shelarfee1fad2016-11-13 20:43:56 -08002478 if (!info) {
Stefano Briviob4d306972018-11-08 12:19:16 +01002479 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002480 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002481 dst_port, ifindex, vni,
2482 &rt->dst, rt->rt_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002483 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002484 goto out_unlock;
Stefano Briviob4d306972018-11-08 12:19:16 +01002485
2486 if (vxlan->cfg.df == VXLAN_DF_SET) {
2487 df = htons(IP_DF);
2488 } else if (vxlan->cfg.df == VXLAN_DF_INHERIT) {
2489 struct ethhdr *eth = eth_hdr(skb);
2490
2491 if (ntohs(eth->h_proto) == ETH_P_IPV6 ||
2492 (ntohs(eth->h_proto) == ETH_P_IP &&
2493 old_iph->frag_off & htons(IP_DF)))
2494 df = htons(IP_DF);
2495 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002496 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002497 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002498 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002499
pravin shelarc46b7892016-11-13 20:43:54 -08002500 ndst = &rt->dst;
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002501 skb_tunnel_check_pmtu(skb, ndst, VXLAN_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002502
Cong Wange4c7ed42013-08-31 13:44:33 +08002503 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2504 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002505 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002506 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002507 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002508 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002509
Brian Russell11586322017-02-24 17:47:11 +00002510 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002511 dst->sin.sin_addr.s_addr, tos, ttl, df,
2512 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002513#if IS_ENABLED(CONFIG_IPV6)
2514 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002515 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002516
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01002517 if (!ifindex)
2518 ifindex = sock6->sock->sk->sk_bound_dev_if;
2519
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002520 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002521 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002522 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002523 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002524 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002525 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002526 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002527 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002528 goto tx_error;
2529 }
pravin shelar655c3de2016-11-13 20:43:55 -08002530
pravin shelarfee1fad2016-11-13 20:43:56 -08002531 if (!info) {
2532 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002533
pravin shelarfee1fad2016-11-13 20:43:56 -08002534 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002535 dst_port, ifindex, vni,
2536 ndst, rt6i_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002537 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002538 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002539 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002540
Stefano Brivio6b4f92a2018-10-12 23:53:59 +02002541 skb_tunnel_check_pmtu(skb, ndst, VXLAN6_HEADROOM);
Xin Longa93bf0f2017-12-18 14:20:56 +08002542
Daniel Borkmann14006152016-03-04 15:15:08 +01002543 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002544 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002545 skb_scrub_packet(skb, xnet);
2546 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002547 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002548 if (err < 0)
2549 goto tx_error;
2550
pravin shelar0770b532016-11-13 20:43:57 -08002551 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002552 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002553 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002554 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002555#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002556 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002557out_unlock:
2558 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002559 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002560
2561drop:
2562 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002563 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002564 return;
2565
2566tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002567 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002568 if (err == -ELOOP)
2569 dev->stats.collisions++;
2570 else if (err == -ENETUNREACH)
2571 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002572 dst_release(ndst);
2573 dev->stats.tx_errors++;
2574 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002575}
2576
David Stevens66817122013-03-15 04:35:51 +00002577/* Transmit local packets over Vxlan
2578 *
2579 * Outer IP header inherits ECN and DF from inner header.
2580 * Outer UDP destination is the VXLAN assigned port.
2581 * source port is based on hash of flow
2582 */
2583static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2584{
2585 struct vxlan_dev *vxlan = netdev_priv(dev);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002586 struct vxlan_rdst *rdst, *fdst = NULL;
Xin Long8bff36852017-11-11 19:58:50 +08002587 const struct ip_tunnel_info *info;
2588 bool did_rsc = false;
David Stevens66817122013-03-15 04:35:51 +00002589 struct vxlan_fdb *f;
Xin Long8bff36852017-11-11 19:58:50 +08002590 struct ethhdr *eth;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002591 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002592
Jiri Benc61adedf2015-08-20 13:56:25 +02002593 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002594
David Stevens66817122013-03-15 04:35:51 +00002595 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002596
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002597 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002598 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2599 info->mode & IP_TUNNEL_INFO_TX) {
2600 vni = tunnel_id_to_key32(info->key.tun_id);
2601 } else {
2602 if (info && info->mode & IP_TUNNEL_INFO_TX)
2603 vxlan_xmit_one(skb, dev, vni, NULL, false);
2604 else
2605 kfree_skb(skb);
2606 return NETDEV_TX_OK;
2607 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002608 }
2609
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002610 if (vxlan->cfg.flags & VXLAN_F_PROXY) {
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002611 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002612 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002613 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002614#if IS_ENABLED(CONFIG_IPV6)
Xin Long8bff36852017-11-11 19:58:50 +08002615 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
2616 pskb_may_pull(skb, sizeof(struct ipv6hdr) +
2617 sizeof(struct nd_msg)) &&
2618 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2619 struct nd_msg *m = (struct nd_msg *)(ipv6_hdr(skb) + 1);
2620
2621 if (m->icmph.icmp6_code == 0 &&
2622 m->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002623 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002624 }
2625#endif
2626 }
David Stevens66817122013-03-15 04:35:51 +00002627
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002628 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002629 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002630 did_rsc = false;
2631
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002632 if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002633 (ntohs(eth->h_proto) == ETH_P_IP ||
2634 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002635 did_rsc = route_shortcircuit(dev, skb);
2636 if (did_rsc)
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 }
2639
David Stevens66817122013-03-15 04:35:51 +00002640 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002641 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002642 if (f == NULL) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002643 if ((vxlan->cfg.flags & VXLAN_F_L2MISS) &&
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002644 !is_multicast_ether_addr(eth->h_dest))
2645 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002646
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002647 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002648 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002649 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002650 }
David Stevens66817122013-03-15 04:35:51 +00002651 }
2652
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002653 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2654 struct sk_buff *skb1;
2655
Eric Dumazet8f646c92014-01-06 09:54:31 -08002656 if (!fdst) {
2657 fdst = rdst;
2658 continue;
2659 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002660 skb1 = skb_clone(skb, GFP_ATOMIC);
2661 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002662 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002663 }
2664
Eric Dumazet8f646c92014-01-06 09:54:31 -08002665 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002666 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002667 else
2668 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002669 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002670}
2671
stephen hemmingerd3428942012-10-01 12:32:35 +00002672/* Walk the forwarding table and purge stale entries */
Kees Cookdf7e8282017-10-04 16:26:59 -07002673static void vxlan_cleanup(struct timer_list *t)
stephen hemmingerd3428942012-10-01 12:32:35 +00002674{
Kees Cookdf7e8282017-10-04 16:26:59 -07002675 struct vxlan_dev *vxlan = from_timer(vxlan, t, age_timer);
stephen hemmingerd3428942012-10-01 12:32:35 +00002676 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2677 unsigned int h;
2678
2679 if (!netif_running(vxlan->dev))
2680 return;
2681
stephen hemmingerd3428942012-10-01 12:32:35 +00002682 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2683 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002684
2685 spin_lock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002686 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2687 struct vxlan_fdb *f
2688 = container_of(p, struct vxlan_fdb, hlist);
2689 unsigned long timeout;
2690
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002691 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002692 continue;
2693
Roopa Prabhudef499c2017-03-27 15:46:41 -07002694 if (f->flags & NTF_EXT_LEARNED)
2695 continue;
2696
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002697 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002698 if (time_before_eq(timeout, jiffies)) {
2699 netdev_dbg(vxlan->dev,
2700 "garbage collect %pM\n",
2701 f->eth_addr);
2702 f->state = NUD_STALE;
Petr Machata0e6160f2018-11-21 08:02:35 +00002703 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002704 } else if (time_before(timeout, next_timer))
2705 next_timer = timeout;
2706 }
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002707 spin_unlock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002708 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002709
2710 mod_timer(&vxlan->age_timer, next_timer);
2711}
2712
Mark Blocha53cb292017-06-02 03:24:08 +03002713static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2714{
2715 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2716
2717 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002718 hlist_del_init_rcu(&vxlan->hlist4.hlist);
2719#if IS_ENABLED(CONFIG_IPV6)
2720 hlist_del_init_rcu(&vxlan->hlist6.hlist);
2721#endif
Mark Blocha53cb292017-06-02 03:24:08 +03002722 spin_unlock(&vn->sock_lock);
2723}
2724
Jiri Benc69e76662017-07-02 19:00:57 +02002725static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan,
2726 struct vxlan_dev_node *node)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002727{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002728 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002729 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002730
Jiri Benc69e76662017-07-02 19:00:57 +02002731 node->vxlan = vxlan;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002732 spin_lock(&vn->sock_lock);
Jiri Benc69e76662017-07-02 19:00:57 +02002733 hlist_add_head_rcu(&node->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002734 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002735}
2736
stephen hemmingerd3428942012-10-01 12:32:35 +00002737/* Setup stats when device is created */
2738static int vxlan_init(struct net_device *dev)
2739{
WANG Cong1c213bd2014-02-13 11:46:28 -08002740 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002741 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002742 return -ENOMEM;
2743
2744 return 0;
2745}
2746
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002747static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002748{
2749 struct vxlan_fdb *f;
2750
2751 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002752 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002753 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00002754 vxlan_fdb_destroy(vxlan, f, true, true);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002755 spin_unlock_bh(&vxlan->hash_lock);
2756}
2757
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002758static void vxlan_uninit(struct net_device *dev)
2759{
2760 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002761
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002762 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002763
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002764 free_percpu(dev->tstats);
2765}
2766
stephen hemmingerd3428942012-10-01 12:32:35 +00002767/* Start ageing timer and join group when device is brought up */
2768static int vxlan_open(struct net_device *dev)
2769{
2770 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002771 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002772
Jiri Benc205f3562015-09-24 13:50:01 +02002773 ret = vxlan_sock_add(vxlan);
2774 if (ret < 0)
2775 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002776
Gao feng79d4a942013-12-10 16:37:32 +08002777 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002778 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002779 if (ret == -EADDRINUSE)
2780 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002781 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002782 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002783 return ret;
2784 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002785 }
2786
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002787 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002788 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2789
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002790 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002791}
2792
2793/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002794static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002795{
Cong Wang31fec5a2013-05-27 22:35:52 +00002796 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002797
2798 spin_lock_bh(&vxlan->hash_lock);
2799 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2800 struct hlist_node *p, *n;
2801 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2802 struct vxlan_fdb *f
2803 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002804 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2805 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002806 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2807 if (!is_zero_ether_addr(f->eth_addr))
Petr Machata0e6160f2018-11-21 08:02:35 +00002808 vxlan_fdb_destroy(vxlan, f, true, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00002809 }
2810 }
2811 spin_unlock_bh(&vxlan->hash_lock);
2812}
2813
2814/* Cleanup timer and forwarding table on shutdown */
2815static int vxlan_stop(struct net_device *dev)
2816{
2817 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002818 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002819 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002820
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002821 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002822 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002823 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002824
2825 del_timer_sync(&vxlan->age_timer);
2826
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002827 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002828 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002829
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002830 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002831}
2832
stephen hemmingerd3428942012-10-01 12:32:35 +00002833/* Stub, nothing needs to be done. */
2834static void vxlan_set_multicast_list(struct net_device *dev)
2835{
2836}
2837
Daniel Borkmann345010b2013-12-18 00:21:08 +01002838static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2839{
2840 struct vxlan_dev *vxlan = netdev_priv(dev);
2841 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002842 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2843 dst->remote_ifindex);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002844 bool use_ipv6 = !!(vxlan->cfg.flags & VXLAN_F_IPV6);
Jarod Wilson91572082016-10-20 13:55:20 -04002845
2846 /* This check is different than dev->max_mtu, because it looks at
2847 * the lowerdev->mtu, rather than the static dev->max_mtu
2848 */
2849 if (lowerdev) {
2850 int max_mtu = lowerdev->mtu -
2851 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2852 if (new_mtu > max_mtu)
2853 return -EINVAL;
2854 }
2855
2856 dev->mtu = new_mtu;
2857 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002858}
2859
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002860static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2861{
2862 struct vxlan_dev *vxlan = netdev_priv(dev);
2863 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2864 __be16 sport, dport;
2865
2866 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2867 vxlan->cfg.port_max, true);
2868 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2869
Jiri Benc239e9442015-12-07 13:04:31 +01002870 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002871 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002872 struct rtable *rt;
2873
pravin shelar655c3de2016-11-13 20:43:55 -08002874 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002875 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002876 &info->key.u.ipv4.src, dport, sport,
2877 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002878 if (IS_ERR(rt))
2879 return PTR_ERR(rt);
2880 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002881 } else {
2882#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002883 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002884 struct dst_entry *ndst;
2885
pravin shelar655c3de2016-11-13 20:43:55 -08002886 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002887 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002888 &info->key.u.ipv6.src, dport, sport,
2889 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002890 if (IS_ERR(ndst))
2891 return PTR_ERR(ndst);
2892 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002893#else /* !CONFIG_IPV6 */
2894 return -EPFNOSUPPORT;
2895#endif
2896 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002897 info->key.tp_src = sport;
2898 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002899 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002900}
2901
Jiri Benc0c867c92016-04-05 14:47:10 +02002902static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002903 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002904 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002905 .ndo_open = vxlan_open,
2906 .ndo_stop = vxlan_stop,
2907 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002908 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002909 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002910 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002911 .ndo_validate_addr = eth_validate_addr,
2912 .ndo_set_mac_address = eth_mac_addr,
2913 .ndo_fdb_add = vxlan_fdb_add,
2914 .ndo_fdb_del = vxlan_fdb_delete,
2915 .ndo_fdb_dump = vxlan_fdb_dump,
Roopa Prabhu474c3c82018-12-15 22:35:10 -08002916 .ndo_fdb_get = vxlan_fdb_get,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002917 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
stephen hemmingerd3428942012-10-01 12:32:35 +00002918};
2919
Jiri Bence1e53142016-04-05 14:47:13 +02002920static const struct net_device_ops vxlan_netdev_raw_ops = {
2921 .ndo_init = vxlan_init,
2922 .ndo_uninit = vxlan_uninit,
2923 .ndo_open = vxlan_open,
2924 .ndo_stop = vxlan_stop,
2925 .ndo_start_xmit = vxlan_xmit,
2926 .ndo_get_stats64 = ip_tunnel_get_stats64,
2927 .ndo_change_mtu = vxlan_change_mtu,
2928 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2929};
2930
stephen hemmingerd3428942012-10-01 12:32:35 +00002931/* Info for udev, that this is a virtual tunnel endpoint */
2932static struct device_type vxlan_type = {
2933 .name = "vxlan",
2934};
2935
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002936/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002937 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002938 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002939 */
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002940static void vxlan_offload_rx_ports(struct net_device *dev, bool push)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002941{
2942 struct vxlan_sock *vs;
2943 struct net *net = dev_net(dev);
2944 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002945 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002946
2947 spin_lock(&vn->sock_lock);
2948 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02002949 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2950 unsigned short type;
2951
2952 if (vs->flags & VXLAN_F_GPE)
2953 type = UDP_TUNNEL_TYPE_VXLAN_GPE;
2954 else
2955 type = UDP_TUNNEL_TYPE_VXLAN;
2956
2957 if (push)
2958 udp_tunnel_push_rx_port(dev, vs->sock, type);
2959 else
2960 udp_tunnel_drop_rx_port(dev, vs->sock, type);
2961 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002962 }
2963 spin_unlock(&vn->sock_lock);
2964}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002965
stephen hemmingerd3428942012-10-01 12:32:35 +00002966/* Initialize the device structure. */
2967static void vxlan_setup(struct net_device *dev)
2968{
2969 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002970 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002971
Jiri Benc65226ef2016-04-28 16:36:30 +02002972 eth_hw_addr_random(dev);
2973 ether_setup(dev);
2974
David S. Millercf124db2017-05-08 12:52:56 -04002975 dev->needs_free_netdev = true;
stephen hemmingerd3428942012-10-01 12:32:35 +00002976 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2977
stephen hemmingerd3428942012-10-01 12:32:35 +00002978 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002979 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002980 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002981 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002982
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002983 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002984 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002985 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07002986 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002987 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002988
Matthias Schiffera9853432017-06-19 10:03:55 +02002989 /* MTU range: 68 - 65535 */
2990 dev->min_mtu = ETH_MIN_MTU;
2991 dev->max_mtu = ETH_MAX_MTU;
2992
stephen hemminger553675f2013-05-16 11:35:20 +00002993 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002994 spin_lock_init(&vxlan->hash_lock);
2995
Kees Cookdf7e8282017-10-04 16:26:59 -07002996 timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE);
stephen hemmingerd3428942012-10-01 12:32:35 +00002997
2998 vxlan->dev = dev;
2999
Tom Herbert58ce31c2015-08-19 17:07:33 -07003000 gro_cells_init(&vxlan->gro_cells, dev);
3001
stephen hemmingerd3428942012-10-01 12:32:35 +00003002 for (h = 0; h < FDB_HASH_SIZE; ++h)
3003 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
3004}
3005
Jiri Benc0c867c92016-04-05 14:47:10 +02003006static void vxlan_ether_setup(struct net_device *dev)
3007{
Jiri Benc0c867c92016-04-05 14:47:10 +02003008 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
3009 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
3010 dev->netdev_ops = &vxlan_netdev_ether_ops;
3011}
3012
Jiri Bence1e53142016-04-05 14:47:13 +02003013static void vxlan_raw_setup(struct net_device *dev)
3014{
Jiri Benc65226ef2016-04-28 16:36:30 +02003015 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02003016 dev->type = ARPHRD_NONE;
3017 dev->hard_header_len = 0;
3018 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02003019 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
3020 dev->netdev_ops = &vxlan_netdev_raw_ops;
3021}
3022
stephen hemmingerd3428942012-10-01 12:32:35 +00003023static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
3024 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00003025 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003026 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003027 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
3028 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08003029 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00003030 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
3031 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003032 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003033 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
3034 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
3035 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00003036 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00003037 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
3038 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
3039 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
3040 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07003041 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00003042 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08003043 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
3044 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
3045 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08003046 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
3047 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01003048 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02003049 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003050 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
Hangbin Liu72f6d712018-04-17 14:11:28 +08003051 [IFLA_VXLAN_TTL_INHERIT] = { .type = NLA_FLAG },
Stefano Briviob4d306972018-11-08 12:19:16 +01003052 [IFLA_VXLAN_DF] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00003053};
3054
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02003055static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[],
3056 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003057{
3058 if (tb[IFLA_ADDRESS]) {
3059 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003060 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3061 "Provided link layer address is not Ethernet");
stephen hemmingerd3428942012-10-01 12:32:35 +00003062 return -EINVAL;
3063 }
3064
3065 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003066 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
3067 "Provided Ethernet address is not unicast");
stephen hemmingerd3428942012-10-01 12:32:35 +00003068 return -EADDRNOTAVAIL;
3069 }
3070 }
3071
Matthias Schiffera9853432017-06-19 10:03:55 +02003072 if (tb[IFLA_MTU]) {
Matthias Schiffer019b13a2017-06-27 14:42:43 +02003073 u32 mtu = nla_get_u32(tb[IFLA_MTU]);
Matthias Schiffera9853432017-06-19 10:03:55 +02003074
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003075 if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU) {
3076 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_MTU],
3077 "MTU must be between 68 and 65535");
Matthias Schiffera9853432017-06-19 10:03:55 +02003078 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003079 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003080 }
3081
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003082 if (!data) {
3083 NL_SET_ERR_MSG(extack,
3084 "Required attributes not provided to perform the operation");
stephen hemmingerd3428942012-10-01 12:32:35 +00003085 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003086 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003087
3088 if (data[IFLA_VXLAN_ID]) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003089 u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
3090
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003091 if (id >= VXLAN_N_VID) {
3092 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_ID],
3093 "VXLAN ID must be lower than 16777216");
stephen hemmingerd3428942012-10-01 12:32:35 +00003094 return -ERANGE;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003095 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003096 }
3097
stephen hemminger05f47d62012-10-09 20:35:50 +00003098 if (data[IFLA_VXLAN_PORT_RANGE]) {
3099 const struct ifla_vxlan_port_range *p
3100 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3101
3102 if (ntohs(p->high) < ntohs(p->low)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003103 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_PORT_RANGE],
3104 "Invalid source port range");
stephen hemminger05f47d62012-10-09 20:35:50 +00003105 return -EINVAL;
3106 }
3107 }
3108
Stefano Briviob4d306972018-11-08 12:19:16 +01003109 if (data[IFLA_VXLAN_DF]) {
3110 enum ifla_vxlan_df df = nla_get_u8(data[IFLA_VXLAN_DF]);
3111
3112 if (df < 0 || df > VXLAN_DF_MAX) {
3113 NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_VXLAN_DF],
3114 "Invalid DF attribute");
3115 return -EINVAL;
3116 }
3117 }
3118
stephen hemmingerd3428942012-10-01 12:32:35 +00003119 return 0;
3120}
3121
Yan Burman1b13c972013-01-29 23:43:07 +00003122static void vxlan_get_drvinfo(struct net_device *netdev,
3123 struct ethtool_drvinfo *drvinfo)
3124{
3125 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
3126 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
3127}
3128
3129static const struct ethtool_ops vxlan_ethtool_ops = {
3130 .get_drvinfo = vxlan_get_drvinfo,
3131 .get_link = ethtool_op_get_link,
3132};
3133
Tom Herbert3ee64f32014-07-13 19:49:42 -07003134static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003135 __be16 port, u32 flags, int ifindex)
stephen hemminger553675f2013-05-16 11:35:20 +00003136{
Cong Wange4c7ed42013-08-31 13:44:33 +08003137 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003138 struct udp_port_cfg udp_conf;
3139 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08003140
Tom Herbert3ee64f32014-07-13 19:49:42 -07003141 memset(&udp_conf, 0, sizeof(udp_conf));
3142
3143 if (ipv6) {
3144 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003145 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08003146 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02003147 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07003148 } else {
3149 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08003150 }
3151
Tom Herbert3ee64f32014-07-13 19:49:42 -07003152 udp_conf.local_udp_port = port;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003153 udp_conf.bind_ifindex = ifindex;
Cong Wange4c7ed42013-08-31 13:44:33 +08003154
Tom Herbert3ee64f32014-07-13 19:49:42 -07003155 /* Open UDP socket */
3156 err = udp_sock_create(net, &udp_conf, &sock);
3157 if (err < 0)
3158 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08003159
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003160 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08003161}
3162
3163/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02003164static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003165 __be16 port, u32 flags,
3166 int ifindex)
Cong Wange4c7ed42013-08-31 13:44:33 +08003167{
3168 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3169 struct vxlan_sock *vs;
3170 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00003171 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003172 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00003173
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02003174 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08003175 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00003176 return ERR_PTR(-ENOMEM);
3177
3178 for (h = 0; h < VNI_HASH_SIZE; ++h)
3179 INIT_HLIST_HEAD(&vs->vni_list[h]);
3180
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003181 sock = vxlan_create_sock(net, ipv6, port, flags, ifindex);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08003182 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00003183 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08003184 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00003185 }
3186
Cong Wange4c7ed42013-08-31 13:44:33 +08003187 vs->sock = sock;
Reshetova, Elena66af8462017-07-04 15:52:59 +03003188 refcount_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08003189 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00003190
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003191 spin_lock(&vn->sock_lock);
3192 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07003193 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07003194 (vs->flags & VXLAN_F_GPE) ?
3195 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07003196 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003197 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00003198
3199 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07003200 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07003201 tunnel_cfg.sk_user_data = vs;
3202 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01003203 tunnel_cfg.encap_rcv = vxlan_rcv;
Stefano Brivioc3a43b92018-11-08 12:19:15 +01003204 tunnel_cfg.encap_err_lookup = vxlan_err_lookup;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003205 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07003206 tunnel_cfg.gro_receive = vxlan_gro_receive;
3207 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07003208
3209 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08003210
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003211 return vs;
3212}
stephen hemminger553675f2013-05-16 11:35:20 +00003213
Jiri Bencb1be00a2015-09-24 13:50:02 +02003214static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003215{
Jiri Benc205f3562015-09-24 13:50:01 +02003216 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
3217 struct vxlan_sock *vs = NULL;
Jiri Benc69e76662017-07-02 19:00:57 +02003218 struct vxlan_dev_node *node;
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003219 int l3mdev_index = 0;
3220
3221 if (vxlan->cfg.remote_ifindex)
3222 l3mdev_index = l3mdev_master_upper_ifindex_by_index(
3223 vxlan->net, vxlan->cfg.remote_ifindex);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003224
Jiri Benc205f3562015-09-24 13:50:01 +02003225 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003226 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003227 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003228 vxlan->cfg.dst_port, vxlan->cfg.flags,
3229 l3mdev_index);
Reshetova, Elena66af8462017-07-04 15:52:59 +03003230 if (vs && !refcount_inc_not_zero(&vs->refcnt)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003231 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02003232 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03003233 }
3234 spin_unlock(&vn->sock_lock);
3235 }
Jiri Benc205f3562015-09-24 13:50:01 +02003236 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003237 vs = vxlan_socket_create(vxlan->net, ipv6,
Alexis Bauvinaab8cc32018-12-03 10:54:40 +01003238 vxlan->cfg.dst_port, vxlan->cfg.flags,
3239 l3mdev_index);
Jiri Benc205f3562015-09-24 13:50:01 +02003240 if (IS_ERR(vs))
3241 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003242#if IS_ENABLED(CONFIG_IPV6)
Jiri Benc69e76662017-07-02 19:00:57 +02003243 if (ipv6) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003244 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003245 node = &vxlan->hlist6;
3246 } else
Jiri Bencb1be00a2015-09-24 13:50:02 +02003247#endif
Jiri Benc69e76662017-07-02 19:00:57 +02003248 {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003249 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc69e76662017-07-02 19:00:57 +02003250 node = &vxlan->hlist4;
3251 }
3252 vxlan_vs_add_dev(vs, vxlan, node);
Jiri Benc205f3562015-09-24 13:50:01 +02003253 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00003254}
3255
Jiri Bencb1be00a2015-09-24 13:50:02 +02003256static int vxlan_sock_add(struct vxlan_dev *vxlan)
3257{
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003258 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
3259 bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata;
Jiri Bencd074bf92017-04-27 21:24:35 +02003260 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003261 int ret = 0;
3262
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003263 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02003264#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07003265 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02003266 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02003267 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02003268 if (ret < 0 && ret != -EAFNOSUPPORT)
3269 ipv4 = false;
3270 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02003271#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02003272 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02003273 ret = __vxlan_sock_add(vxlan, false);
3274 if (ret < 0)
3275 vxlan_sock_release(vxlan);
3276 return ret;
3277}
3278
Matthias Schiffera9853432017-06-19 10:03:55 +02003279static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf,
3280 struct net_device **lower,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003281 struct vxlan_dev *old,
3282 struct netlink_ext_ack *extack)
stephen hemmingerd3428942012-10-01 12:32:35 +00003283{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01003284 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Matthias Schiffera9853432017-06-19 10:03:55 +02003285 struct vxlan_dev *tmp;
3286 bool use_ipv6 = false;
3287
3288 if (conf->flags & VXLAN_F_GPE) {
3289 /* For now, allow GPE only together with
3290 * COLLECT_METADATA. This can be relaxed later; in such
3291 * case, the other side of the PtP link will have to be
3292 * provided.
3293 */
3294 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
3295 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003296 NL_SET_ERR_MSG(extack,
3297 "VXLAN GPE does not support this combination of attributes");
Matthias Schiffera9853432017-06-19 10:03:55 +02003298 return -EINVAL;
3299 }
3300 }
3301
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003302 if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) {
3303 /* Unless IPv6 is explicitly requested, assume IPv4 */
Matthias Schiffera9853432017-06-19 10:03:55 +02003304 conf->remote_ip.sa.sa_family = AF_INET;
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003305 conf->saddr.sa.sa_family = AF_INET;
3306 } else if (!conf->remote_ip.sa.sa_family) {
3307 conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family;
3308 } else if (!conf->saddr.sa.sa_family) {
3309 conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family;
3310 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003311
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003312 if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family) {
3313 NL_SET_ERR_MSG(extack,
3314 "Local and remote address must be from the same family");
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003315 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003316 }
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003317
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003318 if (vxlan_addr_multicast(&conf->saddr)) {
3319 NL_SET_ERR_MSG(extack, "Local address cannot be multicast");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003320 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003321 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003322
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003323 if (conf->saddr.sa.sa_family == AF_INET6) {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003324 if (!IS_ENABLED(CONFIG_IPV6)) {
3325 NL_SET_ERR_MSG(extack,
3326 "IPv6 support not enabled in the kernel");
Matthias Schiffera9853432017-06-19 10:03:55 +02003327 return -EPFNOSUPPORT;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003328 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003329 use_ipv6 = true;
3330 conf->flags |= VXLAN_F_IPV6;
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003331
3332 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) {
3333 int local_type =
3334 ipv6_addr_type(&conf->saddr.sin6.sin6_addr);
3335 int remote_type =
3336 ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr);
3337
3338 if (local_type & IPV6_ADDR_LINKLOCAL) {
3339 if (!(remote_type & IPV6_ADDR_LINKLOCAL) &&
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003340 (remote_type != IPV6_ADDR_ANY)) {
3341 NL_SET_ERR_MSG(extack,
3342 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003343 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003344 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003345
3346 conf->flags |= VXLAN_F_IPV6_LINKLOCAL;
3347 } else {
3348 if (remote_type ==
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003349 (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL)) {
3350 NL_SET_ERR_MSG(extack,
3351 "Invalid combination of local and remote address scopes");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003352 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003353 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003354
3355 conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL;
3356 }
3357 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003358 }
3359
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003360 if (conf->label && !use_ipv6) {
3361 NL_SET_ERR_MSG(extack,
3362 "Label attribute only applies to IPv6 VXLAN devices");
Matthias Schiffera9853432017-06-19 10:03:55 +02003363 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003364 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003365
3366 if (conf->remote_ifindex) {
3367 struct net_device *lowerdev;
3368
3369 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003370 if (!lowerdev) {
3371 NL_SET_ERR_MSG(extack,
3372 "Invalid local interface, device not found");
Matthias Schiffera9853432017-06-19 10:03:55 +02003373 return -ENODEV;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003374 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003375
3376#if IS_ENABLED(CONFIG_IPV6)
3377 if (use_ipv6) {
3378 struct inet6_dev *idev = __in6_dev_get(lowerdev);
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003379 if (idev && idev->cnf.disable_ipv6) {
3380 NL_SET_ERR_MSG(extack,
3381 "IPv6 support disabled by administrator");
Matthias Schiffera9853432017-06-19 10:03:55 +02003382 return -EPERM;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003383 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003384 }
3385#endif
3386
3387 *lower = lowerdev;
3388 } else {
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003389 if (vxlan_addr_multicast(&conf->remote_ip)) {
3390 NL_SET_ERR_MSG(extack,
3391 "Local interface required for multicast remote destination");
3392
Matthias Schiffera9853432017-06-19 10:03:55 +02003393 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003394 }
Matthias Schiffera9853432017-06-19 10:03:55 +02003395
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003396#if IS_ENABLED(CONFIG_IPV6)
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003397 if (conf->flags & VXLAN_F_IPV6_LINKLOCAL) {
3398 NL_SET_ERR_MSG(extack,
3399 "Local interface required for link-local local/remote addresses");
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003400 return -EINVAL;
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003401 }
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02003402#endif
3403
Matthias Schiffera9853432017-06-19 10:03:55 +02003404 *lower = NULL;
3405 }
3406
3407 if (!conf->dst_port) {
3408 if (conf->flags & VXLAN_F_GPE)
3409 conf->dst_port = htons(4790); /* IANA VXLAN-GPE port */
3410 else
3411 conf->dst_port = htons(vxlan_port);
3412 }
3413
3414 if (!conf->age_interval)
3415 conf->age_interval = FDB_AGE_DEFAULT;
3416
3417 list_for_each_entry(tmp, &vn->vxlan_list, next) {
3418 if (tmp == old)
3419 continue;
3420
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003421 if (tmp->cfg.vni != conf->vni)
3422 continue;
3423 if (tmp->cfg.dst_port != conf->dst_port)
3424 continue;
3425 if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) !=
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003426 (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)))
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003427 continue;
3428
3429 if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) &&
3430 tmp->cfg.remote_ifindex != conf->remote_ifindex)
3431 continue;
3432
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003433 NL_SET_ERR_MSG(extack,
3434 "A VXLAN device with the specified VNI already exists");
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003435 return -EEXIST;
Matthias Schiffera9853432017-06-19 10:03:55 +02003436 }
3437
3438 return 0;
3439}
3440
3441static void vxlan_config_apply(struct net_device *dev,
3442 struct vxlan_config *conf,
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003443 struct net_device *lowerdev,
3444 struct net *src_net,
3445 bool changelink)
Matthias Schiffera9853432017-06-19 10:03:55 +02003446{
3447 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003448 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003449 unsigned short needed_headroom = ETH_HLEN;
Matthias Schiffera9853432017-06-19 10:03:55 +02003450 bool use_ipv6 = !!(conf->flags & VXLAN_F_IPV6);
3451 int max_mtu = ETH_MAX_MTU;
stephen hemmingerd3428942012-10-01 12:32:35 +00003452
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003453 if (!changelink) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003454 if (conf->flags & VXLAN_F_GPE)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003455 vxlan_raw_setup(dev);
Matthias Schiffera9853432017-06-19 10:03:55 +02003456 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003457 vxlan_ether_setup(dev);
Jiri Bence1e53142016-04-05 14:47:13 +02003458
Matthias Schiffera9853432017-06-19 10:03:55 +02003459 if (conf->mtu)
3460 dev->mtu = conf->mtu;
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003461
3462 vxlan->net = src_net;
Jiri Bence1e53142016-04-05 14:47:13 +02003463 }
Jiri Benc0c867c92016-04-05 14:47:10 +02003464
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003465 dst->remote_vni = conf->vni;
3466
3467 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00003468
Matthias Schiffera9853432017-06-19 10:03:55 +02003469 if (lowerdev) {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003470 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00003471
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003472 dev->gso_max_size = lowerdev->gso_max_size;
3473 dev->gso_max_segs = lowerdev->gso_max_segs;
Matthias Schiffera9853432017-06-19 10:03:55 +02003474
3475 needed_headroom = lowerdev->hard_header_len;
3476
3477 max_mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM :
3478 VXLAN_HEADROOM);
Alexey Kodanevf870c1f2017-12-14 20:20:00 +03003479 if (max_mtu < ETH_MIN_MTU)
3480 max_mtu = ETH_MIN_MTU;
3481
3482 if (!changelink && !conf->mtu)
3483 dev->mtu = max_mtu;
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003484 }
3485
Matthias Schiffera9853432017-06-19 10:03:55 +02003486 if (dev->mtu > max_mtu)
3487 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00003488
Jiri Bencb1be00a2015-09-24 13:50:02 +02003489 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
3490 needed_headroom += VXLAN6_HEADROOM;
3491 else
3492 needed_headroom += VXLAN_HEADROOM;
3493 dev->needed_headroom = needed_headroom;
3494
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003495 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Matthias Schiffera9853432017-06-19 10:03:55 +02003496}
stephen hemmingerd3428942012-10-01 12:32:35 +00003497
Matthias Schiffera9853432017-06-19 10:03:55 +02003498static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003499 struct vxlan_config *conf, bool changelink,
3500 struct netlink_ext_ack *extack)
Matthias Schiffera9853432017-06-19 10:03:55 +02003501{
3502 struct vxlan_dev *vxlan = netdev_priv(dev);
3503 struct net_device *lowerdev;
3504 int ret;
Vincent Bernatafb97182012-10-30 10:27:16 +00003505
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003506 ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan, extack);
Matthias Schiffera9853432017-06-19 10:03:55 +02003507 if (ret)
3508 return ret;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003509
Sabrina Dubroca889ce932017-06-30 15:50:00 +02003510 vxlan_config_apply(dev, conf, lowerdev, src_net, changelink);
stephen hemminger553675f2013-05-16 11:35:20 +00003511
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003512 return 0;
3513}
3514
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003515static int __vxlan_dev_create(struct net *net, struct net_device *dev,
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003516 struct vxlan_config *conf,
3517 struct netlink_ext_ack *extack)
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003518{
3519 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3520 struct vxlan_dev *vxlan = netdev_priv(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003521 struct vxlan_fdb *f = NULL;
Petr Machata6db92462018-12-18 13:16:00 +00003522 bool unregister = false;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003523 int err;
3524
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003525 err = vxlan_dev_configure(net, dev, conf, false, extack);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003526 if (err)
3527 return err;
3528
3529 dev->ethtool_ops = &vxlan_ethtool_ops;
3530
3531 /* create an fdb entry for a valid default destination */
3532 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
Roopa Prabhu0241b832018-07-04 16:46:32 -07003533 err = vxlan_fdb_create(vxlan, all_zeros_mac,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003534 &vxlan->default_dst.remote_ip,
3535 NUD_REACHABLE | NUD_PERMANENT,
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003536 vxlan->cfg.dst_port,
3537 vxlan->default_dst.remote_vni,
3538 vxlan->default_dst.remote_vni,
3539 vxlan->default_dst.remote_ifindex,
Roopa Prabhu0241b832018-07-04 16:46:32 -07003540 NTF_SELF, &f);
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003541 if (err)
3542 return err;
3543 }
3544
3545 err = register_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003546 if (err)
3547 goto errout;
Petr Machata6db92462018-12-18 13:16:00 +00003548 unregister = true;
Roopa Prabhu0241b832018-07-04 16:46:32 -07003549
3550 err = rtnl_configure_link(dev, NULL);
Petr Machata6db92462018-12-18 13:16:00 +00003551 if (err)
Roopa Prabhu0241b832018-07-04 16:46:32 -07003552 goto errout;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003553
Roopa Prabhu0241b832018-07-04 16:46:32 -07003554 /* notify default fdb entry */
Petr Machata61f46fe2019-01-16 23:06:38 +00003555 if (f) {
3556 err = vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f),
Petr Machata4c59b7d2019-01-16 23:06:54 +00003557 RTM_NEWNEIGH, true, extack);
Petr Machata61f46fe2019-01-16 23:06:38 +00003558 if (err)
3559 goto errout;
3560 }
Roopa Prabhu0241b832018-07-04 16:46:32 -07003561
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003562 list_add(&vxlan->next, &vn->vxlan_list);
3563 return 0;
Petr Machata6db92462018-12-18 13:16:00 +00003564
Roopa Prabhu0241b832018-07-04 16:46:32 -07003565errout:
Petr Machata6db92462018-12-18 13:16:00 +00003566 /* unregister_netdevice() destroys the default FDB entry with deletion
3567 * notification. But the addition notification was not sent yet, so
3568 * destroy the entry by hand here.
3569 */
Roopa Prabhu0241b832018-07-04 16:46:32 -07003570 if (f)
Petr Machata0e6160f2018-11-21 08:02:35 +00003571 vxlan_fdb_destroy(vxlan, f, false, false);
Petr Machata6db92462018-12-18 13:16:00 +00003572 if (unregister)
3573 unregister_netdevice(dev);
Roopa Prabhu0241b832018-07-04 16:46:32 -07003574 return err;
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003575}
3576
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003577static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3578 struct net_device *dev, struct vxlan_config *conf,
3579 bool changelink)
3580{
3581 struct vxlan_dev *vxlan = netdev_priv(dev);
3582
3583 memset(conf, 0, sizeof(*conf));
3584
3585 /* if changelink operation, start with old existing cfg */
3586 if (changelink)
3587 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3588
3589 if (data[IFLA_VXLAN_ID]) {
3590 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3591
3592 if (changelink && (vni != conf->vni))
3593 return -EOPNOTSUPP;
3594 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3595 }
3596
3597 if (data[IFLA_VXLAN_GROUP]) {
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003598 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET))
3599 return -EOPNOTSUPP;
3600
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003601 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003602 conf->remote_ip.sa.sa_family = AF_INET;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003603 } else if (data[IFLA_VXLAN_GROUP6]) {
3604 if (!IS_ENABLED(CONFIG_IPV6))
3605 return -EPFNOSUPPORT;
3606
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003607 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6))
3608 return -EOPNOTSUPP;
3609
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003610 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3611 conf->remote_ip.sa.sa_family = AF_INET6;
3612 }
3613
3614 if (data[IFLA_VXLAN_LOCAL]) {
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003615 if (changelink && (conf->saddr.sa.sa_family != AF_INET))
3616 return -EOPNOTSUPP;
3617
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003618 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3619 conf->saddr.sa.sa_family = AF_INET;
3620 } else if (data[IFLA_VXLAN_LOCAL6]) {
3621 if (!IS_ENABLED(CONFIG_IPV6))
3622 return -EPFNOSUPPORT;
3623
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003624 if (changelink && (conf->saddr.sa.sa_family != AF_INET6))
3625 return -EOPNOTSUPP;
3626
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003627 /* TODO: respect scope id */
3628 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3629 conf->saddr.sa.sa_family = AF_INET6;
3630 }
3631
3632 if (data[IFLA_VXLAN_LINK])
3633 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3634
3635 if (data[IFLA_VXLAN_TOS])
3636 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3637
3638 if (data[IFLA_VXLAN_TTL])
3639 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3640
Hangbin Liu72f6d712018-04-17 14:11:28 +08003641 if (data[IFLA_VXLAN_TTL_INHERIT]) {
3642 if (changelink)
3643 return -EOPNOTSUPP;
3644 conf->flags |= VXLAN_F_TTL_INHERIT;
3645 }
3646
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003647 if (data[IFLA_VXLAN_LABEL])
3648 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3649 IPV6_FLOWLABEL_MASK;
3650
3651 if (data[IFLA_VXLAN_LEARNING]) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003652 if (nla_get_u8(data[IFLA_VXLAN_LEARNING]))
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003653 conf->flags |= VXLAN_F_LEARN;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003654 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003655 conf->flags &= ~VXLAN_F_LEARN;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003656 } else if (!changelink) {
3657 /* default to learn on a new device */
3658 conf->flags |= VXLAN_F_LEARN;
3659 }
3660
Ido Schimmel40051c42018-11-21 08:02:40 +00003661 if (data[IFLA_VXLAN_AGEING])
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003662 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003663
3664 if (data[IFLA_VXLAN_PROXY]) {
3665 if (changelink)
3666 return -EOPNOTSUPP;
3667 if (nla_get_u8(data[IFLA_VXLAN_PROXY]))
3668 conf->flags |= VXLAN_F_PROXY;
3669 }
3670
3671 if (data[IFLA_VXLAN_RSC]) {
3672 if (changelink)
3673 return -EOPNOTSUPP;
3674 if (nla_get_u8(data[IFLA_VXLAN_RSC]))
3675 conf->flags |= VXLAN_F_RSC;
3676 }
3677
3678 if (data[IFLA_VXLAN_L2MISS]) {
3679 if (changelink)
3680 return -EOPNOTSUPP;
3681 if (nla_get_u8(data[IFLA_VXLAN_L2MISS]))
3682 conf->flags |= VXLAN_F_L2MISS;
3683 }
3684
3685 if (data[IFLA_VXLAN_L3MISS]) {
3686 if (changelink)
3687 return -EOPNOTSUPP;
3688 if (nla_get_u8(data[IFLA_VXLAN_L3MISS]))
3689 conf->flags |= VXLAN_F_L3MISS;
3690 }
3691
3692 if (data[IFLA_VXLAN_LIMIT]) {
3693 if (changelink)
3694 return -EOPNOTSUPP;
3695 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3696 }
3697
3698 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
3699 if (changelink)
3700 return -EOPNOTSUPP;
3701 if (nla_get_u8(data[IFLA_VXLAN_COLLECT_METADATA]))
3702 conf->flags |= VXLAN_F_COLLECT_METADATA;
3703 }
3704
3705 if (data[IFLA_VXLAN_PORT_RANGE]) {
3706 if (!changelink) {
3707 const struct ifla_vxlan_port_range *p
3708 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3709 conf->port_min = ntohs(p->low);
3710 conf->port_max = ntohs(p->high);
3711 } else {
3712 return -EOPNOTSUPP;
3713 }
3714 }
3715
3716 if (data[IFLA_VXLAN_PORT]) {
3717 if (changelink)
3718 return -EOPNOTSUPP;
3719 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3720 }
3721
3722 if (data[IFLA_VXLAN_UDP_CSUM]) {
3723 if (changelink)
3724 return -EOPNOTSUPP;
3725 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3726 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3727 }
3728
3729 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
3730 if (changelink)
3731 return -EOPNOTSUPP;
3732 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
3733 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
3734 }
3735
3736 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
3737 if (changelink)
3738 return -EOPNOTSUPP;
3739 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
3740 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
3741 }
3742
3743 if (data[IFLA_VXLAN_REMCSUM_TX]) {
3744 if (changelink)
3745 return -EOPNOTSUPP;
3746 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
3747 conf->flags |= VXLAN_F_REMCSUM_TX;
3748 }
3749
3750 if (data[IFLA_VXLAN_REMCSUM_RX]) {
3751 if (changelink)
3752 return -EOPNOTSUPP;
3753 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
3754 conf->flags |= VXLAN_F_REMCSUM_RX;
3755 }
3756
3757 if (data[IFLA_VXLAN_GBP]) {
3758 if (changelink)
3759 return -EOPNOTSUPP;
3760 conf->flags |= VXLAN_F_GBP;
3761 }
3762
3763 if (data[IFLA_VXLAN_GPE]) {
3764 if (changelink)
3765 return -EOPNOTSUPP;
3766 conf->flags |= VXLAN_F_GPE;
3767 }
3768
3769 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
3770 if (changelink)
3771 return -EOPNOTSUPP;
3772 conf->flags |= VXLAN_F_REMCSUM_NOPARTIAL;
3773 }
3774
3775 if (tb[IFLA_MTU]) {
3776 if (changelink)
3777 return -EOPNOTSUPP;
3778 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3779 }
3780
Stefano Briviob4d306972018-11-08 12:19:16 +01003781 if (data[IFLA_VXLAN_DF])
3782 conf->df = nla_get_u8(data[IFLA_VXLAN_DF]);
3783
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003784 return 0;
3785}
3786
3787static int vxlan_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02003788 struct nlattr *tb[], struct nlattr *data[],
3789 struct netlink_ext_ack *extack)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003790{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003791 struct vxlan_config conf;
3792 int err;
3793
3794 err = vxlan_nl2conf(tb, data, dev, &conf, false);
3795 if (err)
3796 return err;
3797
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07003798 return __vxlan_dev_create(src_net, dev, &conf, extack);
stephen hemmingerd3428942012-10-01 12:32:35 +00003799}
3800
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003801static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
Matthias Schifferad744b22017-06-25 23:56:00 +02003802 struct nlattr *data[],
3803 struct netlink_ext_ack *extack)
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003804{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003805 struct vxlan_dev *vxlan = netdev_priv(dev);
3806 struct vxlan_rdst *dst = &vxlan->default_dst;
Petr Machata8db9427d52019-01-16 23:06:39 +00003807 struct net_device *lowerdev;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003808 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003809 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003810
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003811 err = vxlan_nl2conf(tb, data,
3812 dev, &conf, true);
3813 if (err)
3814 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003815
Petr Machata8db9427d52019-01-16 23:06:39 +00003816 err = vxlan_config_validate(vxlan->net, &conf, &lowerdev,
3817 vxlan, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003818 if (err)
3819 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003820
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003821 /* handle default dst entry */
Petr Machata038a5a92019-01-16 23:06:41 +00003822 if (!vxlan_addr_equal(&conf.remote_ip, &dst->remote_ip)) {
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003823 spin_lock_bh(&vxlan->hash_lock);
Petr Machata038a5a92019-01-16 23:06:41 +00003824 if (!vxlan_addr_any(&conf.remote_ip)) {
Petr Machatace5e098f2018-12-18 13:16:02 +00003825 err = vxlan_fdb_update(vxlan, all_zeros_mac,
Petr Machata038a5a92019-01-16 23:06:41 +00003826 &conf.remote_ip,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003827 NUD_REACHABLE | NUD_PERMANENT,
Petr Machatace5e098f2018-12-18 13:16:02 +00003828 NLM_F_APPEND | NLM_F_CREATE,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003829 vxlan->cfg.dst_port,
Petr Machata038a5a92019-01-16 23:06:41 +00003830 conf.vni, conf.vni,
3831 conf.remote_ifindex,
Petr Machata4c59b7d2019-01-16 23:06:54 +00003832 NTF_SELF, true, extack);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003833 if (err) {
3834 spin_unlock_bh(&vxlan->hash_lock);
3835 return err;
3836 }
3837 }
Petr Machata1cdc98c2019-01-16 23:06:43 +00003838 if (!vxlan_addr_any(&dst->remote_ip))
3839 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3840 dst->remote_ip,
3841 vxlan->cfg.dst_port,
3842 dst->remote_vni,
3843 dst->remote_vni,
3844 dst->remote_ifindex,
3845 true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003846 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003847 }
3848
Petr Machata038a5a92019-01-16 23:06:41 +00003849 if (conf.age_interval != vxlan->cfg.age_interval)
3850 mod_timer(&vxlan->age_timer, jiffies);
3851
3852 vxlan_config_apply(dev, &conf, lowerdev, vxlan->net, true);
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003853 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003854}
3855
stephen hemmingerd3428942012-10-01 12:32:35 +00003856static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3857{
3858 struct vxlan_dev *vxlan = netdev_priv(dev);
3859
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003860 vxlan_flush(vxlan, true);
3861
Tom Herbert58ce31c2015-08-19 17:07:33 -07003862 gro_cells_destroy(&vxlan->gro_cells);
stephen hemminger553675f2013-05-16 11:35:20 +00003863 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003864 unregister_netdevice_queue(dev, head);
3865}
3866
3867static size_t vxlan_get_size(const struct net_device *dev)
3868{
3869
3870 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003871 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003872 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003873 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003874 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
Hangbin Liu8fd78062018-09-26 10:35:42 +08003875 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL_INHERIT */
stephen hemmingerd3428942012-10-01 12:32:35 +00003876 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Stefano Briviob4d306972018-11-08 12:19:16 +01003877 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_DF */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003878 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003879 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003880 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3881 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3882 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3883 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003884 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003885 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3886 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003887 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003888 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3889 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3890 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3891 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003892 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3893 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003894 0;
3895}
3896
3897static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3898{
3899 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003900 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003901 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003902 .low = htons(vxlan->cfg.port_min),
3903 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003904 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003905
Jiri Benc54bfd872016-02-16 21:58:58 +01003906 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003907 goto nla_put_failure;
3908
Cong Wange4c7ed42013-08-31 13:44:33 +08003909 if (!vxlan_addr_any(&dst->remote_ip)) {
3910 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003911 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3912 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003913 goto nla_put_failure;
3914#if IS_ENABLED(CONFIG_IPV6)
3915 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003916 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
3917 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003918 goto nla_put_failure;
3919#endif
3920 }
3921 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003922
Atzm Watanabec7995c42013-04-16 02:50:52 +00003923 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00003924 goto nla_put_failure;
3925
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003926 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
3927 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003928 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003929 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003930 goto nla_put_failure;
3931#if IS_ENABLED(CONFIG_IPV6)
3932 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003933 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003934 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003935 goto nla_put_failure;
3936#endif
3937 }
3938 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003939
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003940 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
Hangbin Liu8fd78062018-09-26 10:35:42 +08003941 nla_put_u8(skb, IFLA_VXLAN_TTL_INHERIT,
3942 !!(vxlan->cfg.flags & VXLAN_F_TTL_INHERIT)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003943 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Stefano Briviob4d306972018-11-08 12:19:16 +01003944 nla_put_u8(skb, IFLA_VXLAN_DF, vxlan->cfg.df) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003945 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003946 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003947 !!(vxlan->cfg.flags & VXLAN_F_LEARN)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003948 nla_put_u8(skb, IFLA_VXLAN_PROXY,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003949 !!(vxlan->cfg.flags & VXLAN_F_PROXY)) ||
3950 nla_put_u8(skb, IFLA_VXLAN_RSC,
3951 !!(vxlan->cfg.flags & VXLAN_F_RSC)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003952 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003953 !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003954 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003955 !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003956 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003957 !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003958 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
3959 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
3960 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003961 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003962 !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003963 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003964 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003965 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003966 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08003967 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003968 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08003969 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003970 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003971 goto nla_put_failure;
3972
stephen hemminger05f47d62012-10-09 20:35:50 +00003973 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
3974 goto nla_put_failure;
3975
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003976 if (vxlan->cfg.flags & VXLAN_F_GBP &&
Thomas Graf35114942015-01-15 03:53:55 +01003977 nla_put_flag(skb, IFLA_VXLAN_GBP))
3978 goto nla_put_failure;
3979
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003980 if (vxlan->cfg.flags & VXLAN_F_GPE &&
Jiri Bence1e53142016-04-05 14:47:13 +02003981 nla_put_flag(skb, IFLA_VXLAN_GPE))
3982 goto nla_put_failure;
3983
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003984 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL &&
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003985 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
3986 goto nla_put_failure;
3987
stephen hemmingerd3428942012-10-01 12:32:35 +00003988 return 0;
3989
3990nla_put_failure:
3991 return -EMSGSIZE;
3992}
3993
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003994static struct net *vxlan_get_link_net(const struct net_device *dev)
3995{
3996 struct vxlan_dev *vxlan = netdev_priv(dev);
3997
3998 return vxlan->net;
3999}
4000
stephen hemmingerd3428942012-10-01 12:32:35 +00004001static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
4002 .kind = "vxlan",
4003 .maxtype = IFLA_VXLAN_MAX,
4004 .policy = vxlan_policy,
4005 .priv_size = sizeof(struct vxlan_dev),
4006 .setup = vxlan_setup,
4007 .validate = vxlan_validate,
4008 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08004009 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00004010 .dellink = vxlan_dellink,
4011 .get_size = vxlan_get_size,
4012 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01004013 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004014};
4015
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004016struct net_device *vxlan_dev_create(struct net *net, const char *name,
4017 u8 name_assign_type,
4018 struct vxlan_config *conf)
4019{
4020 struct nlattr *tb[IFLA_MAX + 1];
4021 struct net_device *dev;
4022 int err;
4023
4024 memset(&tb, 0, sizeof(tb));
4025
4026 dev = rtnl_create_link(net, name, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08004027 &vxlan_link_ops, tb, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004028 if (IS_ERR(dev))
4029 return dev;
4030
Girish Moodalbail653ef6a32017-08-11 15:20:59 -07004031 err = __vxlan_dev_create(net, dev, conf, NULL);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02004032 if (err < 0) {
4033 free_netdev(dev);
4034 return ERR_PTR(err);
4035 }
4036
4037 err = rtnl_configure_link(dev, NULL);
4038 if (err < 0) {
4039 LIST_HEAD(list_kill);
4040
4041 vxlan_dellink(dev, &list_kill);
4042 unregister_netdevice_many(&list_kill);
4043 return ERR_PTR(err);
4044 }
4045
4046 return dev;
4047}
4048EXPORT_SYMBOL_GPL(vxlan_dev_create);
4049
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004050static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
4051 struct net_device *dev)
4052{
4053 struct vxlan_dev *vxlan, *next;
4054 LIST_HEAD(list_kill);
4055
4056 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4057 struct vxlan_rdst *dst = &vxlan->default_dst;
4058
4059 /* In case we created vxlan device with carrier
4060 * and we loose the carrier due to module unload
4061 * we also need to remove vxlan device. In other
4062 * cases, it's not necessary and remote_ifindex
4063 * is 0 here, so no matches.
4064 */
4065 if (dst->remote_ifindex == dev->ifindex)
4066 vxlan_dellink(vxlan->dev, &list_kill);
4067 }
4068
4069 unregister_netdevice_many(&list_kill);
4070}
4071
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004072static int vxlan_netdevice_event(struct notifier_block *unused,
4073 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004074{
4075 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004076 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004077
Sabrina Dubroca04584952017-07-21 12:49:33 +02004078 if (event == NETDEV_UNREGISTER) {
4079 vxlan_offload_rx_ports(dev, false);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004080 vxlan_handle_lowerdev_unregister(vn, dev);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004081 } else if (event == NETDEV_REGISTER) {
4082 vxlan_offload_rx_ports(dev, true);
4083 } else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO ||
4084 event == NETDEV_UDP_TUNNEL_DROP_INFO) {
Sabrina Dubroca2d2b13f2017-07-21 12:49:32 +02004085 vxlan_offload_rx_ports(dev, event == NETDEV_UDP_TUNNEL_PUSH_INFO);
Sabrina Dubroca04584952017-07-21 12:49:33 +02004086 }
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004087
4088 return NOTIFY_DONE;
4089}
4090
4091static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02004092 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004093};
4094
Petr Machata0efe1172018-10-17 08:53:26 +00004095static void
4096vxlan_fdb_offloaded_set(struct net_device *dev,
4097 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4098{
4099 struct vxlan_dev *vxlan = netdev_priv(dev);
4100 struct vxlan_rdst *rdst;
4101 struct vxlan_fdb *f;
4102
4103 spin_lock_bh(&vxlan->hash_lock);
4104
4105 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4106 if (!f)
4107 goto out;
4108
4109 rdst = vxlan_fdb_find_rdst(f, &fdb_info->remote_ip,
4110 fdb_info->remote_port,
4111 fdb_info->remote_vni,
4112 fdb_info->remote_ifindex);
4113 if (!rdst)
4114 goto out;
4115
4116 rdst->offloaded = fdb_info->offloaded;
4117
4118out:
4119 spin_unlock_bh(&vxlan->hash_lock);
4120}
4121
Petr Machata5728ae02018-11-21 08:02:39 +00004122static int
4123vxlan_fdb_external_learn_add(struct net_device *dev,
4124 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4125{
4126 struct vxlan_dev *vxlan = netdev_priv(dev);
Petr Machata4c59b7d2019-01-16 23:06:54 +00004127 struct netlink_ext_ack *extack;
Petr Machata5728ae02018-11-21 08:02:39 +00004128 int err;
4129
Petr Machata4c59b7d2019-01-16 23:06:54 +00004130 extack = switchdev_notifier_info_to_extack(&fdb_info->info);
4131
Petr Machata5728ae02018-11-21 08:02:39 +00004132 spin_lock_bh(&vxlan->hash_lock);
4133 err = vxlan_fdb_update(vxlan, fdb_info->eth_addr, &fdb_info->remote_ip,
4134 NUD_REACHABLE,
4135 NLM_F_CREATE | NLM_F_REPLACE,
4136 fdb_info->remote_port,
4137 fdb_info->vni,
4138 fdb_info->remote_vni,
4139 fdb_info->remote_ifindex,
4140 NTF_USE | NTF_SELF | NTF_EXT_LEARNED,
Petr Machata4c59b7d2019-01-16 23:06:54 +00004141 false, extack);
Petr Machata5728ae02018-11-21 08:02:39 +00004142 spin_unlock_bh(&vxlan->hash_lock);
4143
4144 return err;
4145}
4146
4147static int
4148vxlan_fdb_external_learn_del(struct net_device *dev,
4149 struct switchdev_notifier_vxlan_fdb_info *fdb_info)
4150{
4151 struct vxlan_dev *vxlan = netdev_priv(dev);
4152 struct vxlan_fdb *f;
4153 int err = 0;
4154
4155 spin_lock_bh(&vxlan->hash_lock);
4156
4157 f = vxlan_find_mac(vxlan, fdb_info->eth_addr, fdb_info->vni);
4158 if (!f)
4159 err = -ENOENT;
4160 else if (f->flags & NTF_EXT_LEARNED)
4161 err = __vxlan_fdb_delete(vxlan, fdb_info->eth_addr,
4162 fdb_info->remote_ip,
4163 fdb_info->remote_port,
4164 fdb_info->vni,
4165 fdb_info->remote_vni,
4166 fdb_info->remote_ifindex,
4167 false);
4168
4169 spin_unlock_bh(&vxlan->hash_lock);
4170
4171 return err;
4172}
4173
Petr Machata0efe1172018-10-17 08:53:26 +00004174static int vxlan_switchdev_event(struct notifier_block *unused,
4175 unsigned long event, void *ptr)
4176{
4177 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
Petr Machata5728ae02018-11-21 08:02:39 +00004178 struct switchdev_notifier_vxlan_fdb_info *fdb_info;
4179 int err = 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004180
4181 switch (event) {
4182 case SWITCHDEV_VXLAN_FDB_OFFLOADED:
4183 vxlan_fdb_offloaded_set(dev, ptr);
4184 break;
Petr Machata5728ae02018-11-21 08:02:39 +00004185 case SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE:
4186 fdb_info = ptr;
4187 err = vxlan_fdb_external_learn_add(dev, fdb_info);
4188 if (err) {
4189 err = notifier_from_errno(err);
4190 break;
4191 }
4192 fdb_info->offloaded = true;
4193 vxlan_fdb_offloaded_set(dev, fdb_info);
4194 break;
4195 case SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE:
4196 fdb_info = ptr;
4197 err = vxlan_fdb_external_learn_del(dev, fdb_info);
4198 if (err) {
4199 err = notifier_from_errno(err);
4200 break;
4201 }
4202 fdb_info->offloaded = false;
4203 vxlan_fdb_offloaded_set(dev, fdb_info);
4204 break;
Petr Machata0efe1172018-10-17 08:53:26 +00004205 }
4206
Petr Machata5728ae02018-11-21 08:02:39 +00004207 return err;
Petr Machata0efe1172018-10-17 08:53:26 +00004208}
4209
4210static struct notifier_block vxlan_switchdev_notifier_block __read_mostly = {
4211 .notifier_call = vxlan_switchdev_event,
4212};
4213
stephen hemmingerd3428942012-10-01 12:32:35 +00004214static __net_init int vxlan_init_net(struct net *net)
4215{
4216 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00004217 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00004218
stephen hemminger553675f2013-05-16 11:35:20 +00004219 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07004220 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00004221
stephen hemminger553675f2013-05-16 11:35:20 +00004222 for (h = 0; h < PORT_HASH_SIZE; ++h)
4223 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00004224
4225 return 0;
4226}
4227
Haishuang Yan57b61122017-12-16 17:54:49 +08004228static void vxlan_destroy_tunnels(struct net *net, struct list_head *head)
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004229{
4230 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
4231 struct vxlan_dev *vxlan, *next;
4232 struct net_device *dev, *aux;
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004233 unsigned int h;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004234
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004235 for_each_netdev_safe(net, dev, aux)
4236 if (dev->rtnl_link_ops == &vxlan_link_ops)
Haishuang Yan57b61122017-12-16 17:54:49 +08004237 unregister_netdevice_queue(dev, head);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004238
4239 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
4240 /* If vxlan->dev is in the same netns, it has already been added
4241 * to the list by the previous loop.
4242 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07004243 if (!net_eq(dev_net(vxlan->dev), net)) {
4244 gro_cells_destroy(&vxlan->gro_cells);
Haishuang Yan57b61122017-12-16 17:54:49 +08004245 unregister_netdevice_queue(vxlan->dev, head);
Tom Herbert58ce31c2015-08-19 17:07:33 -07004246 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004247 }
4248
Vasily Averin0e4ec5a2017-11-12 22:28:10 +03004249 for (h = 0; h < PORT_HASH_SIZE; ++h)
4250 WARN_ON_ONCE(!hlist_empty(&vn->sock_list[h]));
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02004251}
4252
Haishuang Yan57b61122017-12-16 17:54:49 +08004253static void __net_exit vxlan_exit_batch_net(struct list_head *net_list)
4254{
4255 struct net *net;
4256 LIST_HEAD(list);
4257
4258 rtnl_lock();
4259 list_for_each_entry(net, net_list, exit_list)
4260 vxlan_destroy_tunnels(net, &list);
4261
4262 unregister_netdevice_many(&list);
4263 rtnl_unlock();
4264}
4265
stephen hemmingerd3428942012-10-01 12:32:35 +00004266static struct pernet_operations vxlan_net_ops = {
4267 .init = vxlan_init_net,
Haishuang Yan57b61122017-12-16 17:54:49 +08004268 .exit_batch = vxlan_exit_batch_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00004269 .id = &vxlan_net_id,
4270 .size = sizeof(struct vxlan_net),
4271};
4272
4273static int __init vxlan_init_module(void)
4274{
4275 int rc;
4276
4277 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
4278
Daniel Borkmann783c1462014-01-22 21:07:53 +01004279 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004280 if (rc)
4281 goto out1;
4282
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004283 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004284 if (rc)
4285 goto out2;
4286
Petr Machata0efe1172018-10-17 08:53:26 +00004287 rc = register_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004288 if (rc)
4289 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00004290
Petr Machata0efe1172018-10-17 08:53:26 +00004291 rc = rtnl_link_register(&vxlan_link_ops);
4292 if (rc)
4293 goto out4;
4294
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004295 return 0;
Petr Machata0efe1172018-10-17 08:53:26 +00004296out4:
4297 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004298out3:
4299 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00004300out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01004301 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00004302out1:
4303 return rc;
4304}
Cong Wang7332a132013-05-27 22:35:53 +00004305late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00004306
4307static void __exit vxlan_cleanup_module(void)
4308{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07004309 rtnl_link_unregister(&vxlan_link_ops);
Petr Machata0efe1172018-10-17 08:53:26 +00004310 unregister_switchdev_notifier(&vxlan_switchdev_notifier_block);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01004311 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01004312 unregister_pernet_subsys(&vxlan_net_ops);
4313 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00004314}
4315module_exit(vxlan_cleanup_module);
4316
4317MODULE_LICENSE("GPL");
4318MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004319MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08004320MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00004321MODULE_ALIAS_RTNL_LINK("vxlan");