blob: 653b2bb32be17defaa0c51c37df1968a789fa1fa [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>
Pravin B Shelar012a5722013-08-19 11:23:07 -070029#include <net/vxlan.h>
stephen hemminger40d29af2016-02-09 22:07:29 -080030
Cong Wange4c7ed42013-08-31 13:44:33 +080031#if IS_ENABLED(CONFIG_IPV6)
Cong Wange4c7ed42013-08-31 13:44:33 +080032#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080033#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080034#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000035
36#define VXLAN_VERSION "0.1"
37
stephen hemminger553675f2013-05-16 11:35:20 +000038#define PORT_HASH_BITS 8
39#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000040#define FDB_AGE_DEFAULT 300 /* 5 min */
41#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
42
stephen hemminger23c578b2013-04-27 11:31:53 +000043/* UDP port for VXLAN traffic.
44 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070045 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000046 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070047static unsigned short vxlan_port __read_mostly = 8472;
48module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000049MODULE_PARM_DESC(udp_port, "Destination UDP port");
50
51static bool log_ecn_error = true;
52module_param(log_ecn_error, bool, 0644);
53MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
54
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030055static unsigned int vxlan_net_id;
Thomas Graf0dfbdf42015-07-21 10:44:02 +020056static struct rtnl_link_ops vxlan_link_ops;
stephen hemminger553675f2013-05-16 11:35:20 +000057
Li RongQing7256eac2016-01-29 09:43:47 +080058static const u8 all_zeros_mac[ETH_ALEN + 2];
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030059
Jiri Benc205f3562015-09-24 13:50:01 +020060static int vxlan_sock_add(struct vxlan_dev *vxlan);
Thomas Graf614732e2015-07-21 10:44:06 +020061
Mark Blocha53cb292017-06-02 03:24:08 +030062static void vxlan_vs_del_dev(struct vxlan_dev *vxlan);
63
stephen hemminger553675f2013-05-16 11:35:20 +000064/* per-network namespace private data for this module */
65struct vxlan_net {
66 struct list_head vxlan_list;
67 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070068 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000069};
70
stephen hemmingerd3428942012-10-01 12:32:35 +000071/* Forwarding table entry */
72struct vxlan_fdb {
73 struct hlist_node hlist; /* linked list of entries */
74 struct rcu_head rcu;
75 unsigned long updated; /* jiffies */
76 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070077 struct list_head remotes;
Sowmini Varadhan7177a3b2015-07-20 09:54:50 +020078 u8 eth_addr[ETH_ALEN];
stephen hemmingerd3428942012-10-01 12:32:35 +000079 u16 state; /* see ndm_state */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -080080 __be32 vni;
David Stevensae884082013-04-19 00:36:26 +000081 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +000082};
83
stephen hemmingerd3428942012-10-01 12:32:35 +000084/* salt for hash table */
85static u32 vxlan_salt __read_mostly;
86
Thomas Grafee122c72015-07-21 10:43:58 +020087static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
88{
Thomas Grafe7030872015-07-21 10:44:01 +020089 return vs->flags & VXLAN_F_COLLECT_METADATA ||
90 ip_tunnel_collect_metadata();
Thomas Grafee122c72015-07-21 10:43:58 +020091}
92
Cong Wange4c7ed42013-08-31 13:44:33 +080093#if IS_ENABLED(CONFIG_IPV6)
94static inline
95bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
96{
Jiri Bencf0ef3122015-03-29 16:17:37 +020097 if (a->sa.sa_family != b->sa.sa_family)
98 return false;
99 if (a->sa.sa_family == AF_INET6)
100 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
101 else
102 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800103}
104
105static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
106{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200107 if (ipa->sa.sa_family == AF_INET6)
108 return ipv6_addr_any(&ipa->sin6.sin6_addr);
109 else
110 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800111}
112
113static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
114{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200115 if (ipa->sa.sa_family == AF_INET6)
116 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
117 else
118 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800119}
120
121static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
122{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200123 if (nla_len(nla) >= sizeof(struct in6_addr)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200124 ip->sin6.sin6_addr = nla_get_in6_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200125 ip->sa.sa_family = AF_INET6;
126 return 0;
127 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200128 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200129 ip->sa.sa_family = AF_INET;
130 return 0;
131 } else {
132 return -EAFNOSUPPORT;
133 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800134}
135
136static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200137 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800138{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200139 if (ip->sa.sa_family == AF_INET6)
Jiri Benc930345e2015-03-29 16:59:25 +0200140 return nla_put_in6_addr(skb, attr, &ip->sin6.sin6_addr);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200141 else
Jiri Benc930345e2015-03-29 16:59:25 +0200142 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800143}
144
145#else /* !CONFIG_IPV6 */
146
147static inline
148bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
149{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200150 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800151}
152
153static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
154{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200155 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800156}
157
158static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
159{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200160 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800161}
162
163static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
164{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200165 if (nla_len(nla) >= sizeof(struct in6_addr)) {
166 return -EAFNOSUPPORT;
167 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200168 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200169 ip->sa.sa_family = AF_INET;
170 return 0;
171 } else {
172 return -EAFNOSUPPORT;
173 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800174}
175
176static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200177 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800178{
Jiri Benc930345e2015-03-29 16:59:25 +0200179 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800180}
181#endif
182
stephen hemminger553675f2013-05-16 11:35:20 +0000183/* Virtual Network hash table head */
Jiri Benc54bfd872016-02-16 21:58:58 +0100184static inline struct hlist_head *vni_head(struct vxlan_sock *vs, __be32 vni)
stephen hemminger553675f2013-05-16 11:35:20 +0000185{
Jiri Benc54bfd872016-02-16 21:58:58 +0100186 return &vs->vni_list[hash_32((__force u32)vni, VNI_HASH_BITS)];
stephen hemminger553675f2013-05-16 11:35:20 +0000187}
188
189/* Socket hash table head */
190static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000191{
192 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
193
stephen hemminger553675f2013-05-16 11:35:20 +0000194 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
195}
196
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700197/* First remote destination for a forwarding entry.
198 * Guaranteed to be non-NULL because remotes are never deleted.
199 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700200static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700201{
stephen hemminger5ca54612013-08-04 17:17:39 -0700202 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
203}
204
205static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
206{
207 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700208}
209
Thomas Grafac5132d2015-01-15 03:53:56 +0100210/* Find VXLAN socket based on network namespace, address family and UDP port
211 * and enabled unshareable flags.
212 */
213static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
214 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000215{
216 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800217
218 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000219
220 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200221 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Jiri Benc705cc622015-08-20 13:56:28 +0200222 vxlan_get_sk_family(vs) == family &&
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800223 vs->flags == flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000224 return vs;
225 }
226 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000227}
228
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200229static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, int ifindex,
230 __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000231{
232 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000233
Jiri Bencb9167b22016-02-16 21:59:03 +0100234 /* For flow based devices, map all packets to VNI 0 */
235 if (vs->flags & VXLAN_F_COLLECT_METADATA)
236 vni = 0;
237
Jiri Benc54bfd872016-02-16 21:58:58 +0100238 hlist_for_each_entry_rcu(vxlan, vni_head(vs, vni), hlist) {
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200239 if (vxlan->default_dst.remote_vni != vni)
240 continue;
241
242 if (IS_ENABLED(CONFIG_IPV6)) {
243 const struct vxlan_config *cfg = &vxlan->cfg;
244
245 if ((cfg->flags & VXLAN_F_IPV6_LINKLOCAL) &&
246 cfg->remote_ifindex != ifindex)
247 continue;
248 }
249
250 return vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000251 }
252
253 return NULL;
254}
255
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700256/* Look up VNI in a per net namespace table */
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200257static struct vxlan_dev *vxlan_find_vni(struct net *net, int ifindex,
258 __be32 vni, sa_family_t family,
259 __be16 port, u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700260{
261 struct vxlan_sock *vs;
262
Thomas Grafac5132d2015-01-15 03:53:56 +0100263 vs = vxlan_find_sock(net, family, port, flags);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700264 if (!vs)
265 return NULL;
266
Matthias Schiffer49f810f2017-06-19 10:04:00 +0200267 return vxlan_vs_find_vni(vs, ifindex, vni);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700268}
269
stephen hemmingerd3428942012-10-01 12:32:35 +0000270/* Fill in neighbour message in skbuff. */
271static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700272 const struct vxlan_fdb *fdb,
273 u32 portid, u32 seq, int type, unsigned int flags,
274 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000275{
276 unsigned long now = jiffies;
277 struct nda_cacheinfo ci;
278 struct nlmsghdr *nlh;
279 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000280 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000281
282 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
283 if (nlh == NULL)
284 return -EMSGSIZE;
285
286 ndm = nlmsg_data(nlh);
287 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000288
289 send_eth = send_ip = true;
290
291 if (type == RTM_GETNEIGH) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800292 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000293 send_eth = !is_zero_ether_addr(fdb->eth_addr);
Vincent Bernat8f48ba72017-03-10 16:30:24 +0100294 ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET;
David Stevense4f67ad2012-11-20 02:50:14 +0000295 } else
296 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000297 ndm->ndm_state = fdb->state;
298 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000299 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800300 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000301
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100302 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100303 nla_put_s32(skb, NDA_LINK_NETNSID,
WANG Cong38f507f2016-09-01 21:53:44 -0700304 peernet2id(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100305 goto nla_put_failure;
306
David Stevense4f67ad2012-11-20 02:50:14 +0000307 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000308 goto nla_put_failure;
309
Cong Wange4c7ed42013-08-31 13:44:33 +0800310 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000311 goto nla_put_failure;
312
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200313 if (rdst->remote_port && rdst->remote_port != vxlan->cfg.dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000314 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
315 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000316 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Jiri Benc54bfd872016-02-16 21:58:58 +0100317 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
David Stevens66817122013-03-15 04:35:51 +0000318 goto nla_put_failure;
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200319 if ((vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) && fdb->vni &&
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800320 nla_put_u32(skb, NDA_SRC_VNI,
321 be32_to_cpu(fdb->vni)))
322 goto nla_put_failure;
David Stevens66817122013-03-15 04:35:51 +0000323 if (rdst->remote_ifindex &&
324 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000325 goto nla_put_failure;
326
327 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
328 ci.ndm_confirmed = 0;
329 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
330 ci.ndm_refcnt = 0;
331
332 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
333 goto nla_put_failure;
334
Johannes Berg053c0952015-01-16 22:09:00 +0100335 nlmsg_end(skb, nlh);
336 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000337
338nla_put_failure:
339 nlmsg_cancel(skb, nlh);
340 return -EMSGSIZE;
341}
342
343static inline size_t vxlan_nlmsg_size(void)
344{
345 return NLMSG_ALIGN(sizeof(struct ndmsg))
346 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800347 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000348 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000349 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
350 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100351 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000352 + nla_total_size(sizeof(struct nda_cacheinfo));
353}
354
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200355static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
356 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000357{
358 struct net *net = dev_net(vxlan->dev);
359 struct sk_buff *skb;
360 int err = -ENOBUFS;
361
362 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
363 if (skb == NULL)
364 goto errout;
365
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200366 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000367 if (err < 0) {
368 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
369 WARN_ON(err == -EMSGSIZE);
370 kfree_skb(skb);
371 goto errout;
372 }
373
374 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
375 return;
376errout:
377 if (err < 0)
378 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
379}
380
Cong Wange4c7ed42013-08-31 13:44:33 +0800381static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000382{
383 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700384 struct vxlan_fdb f = {
385 .state = NUD_STALE,
386 };
387 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800388 .remote_ip = *ipa, /* goes to NDA_DST */
Jiri Benc54bfd872016-02-16 21:58:58 +0100389 .remote_vni = cpu_to_be32(VXLAN_N_VID),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700390 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700391
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200392 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000393}
394
395static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
396{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700397 struct vxlan_fdb f = {
398 .state = NUD_STALE,
399 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200400 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000401
David Stevense4f67ad2012-11-20 02:50:14 +0000402 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
403
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200404 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000405}
406
stephen hemmingerd3428942012-10-01 12:32:35 +0000407/* Hash Ethernet address */
408static u32 eth_hash(const unsigned char *addr)
409{
410 u64 value = get_unaligned((u64 *)addr);
411
412 /* only want 6 bytes */
413#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000414 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000415#else
416 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000417#endif
418 return hash_64(value, FDB_HASH_BITS);
419}
420
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800421static u32 eth_vni_hash(const unsigned char *addr, __be32 vni)
422{
423 /* use 1 byte of OUI and 3 bytes of NIC */
424 u32 key = get_unaligned((u32 *)(addr + 2));
425
426 return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1);
427}
428
stephen hemmingerd3428942012-10-01 12:32:35 +0000429/* Hash chain to use given mac address */
430static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800431 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000432{
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200433 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800434 return &vxlan->fdb_head[eth_vni_hash(mac, vni)];
435 else
436 return &vxlan->fdb_head[eth_hash(mac)];
stephen hemmingerd3428942012-10-01 12:32:35 +0000437}
438
439/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000440static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800441 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000442{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800443 struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000444 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000445
Sasha Levinb67bfe02013-02-27 17:06:00 -0800446 hlist_for_each_entry_rcu(f, head, hlist) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800447 if (ether_addr_equal(mac, f->eth_addr)) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +0200448 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800449 if (vni == f->vni)
450 return f;
451 } else {
452 return f;
453 }
454 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000455 }
456
457 return NULL;
458}
459
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000460static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800461 const u8 *mac, __be32 vni)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000462{
463 struct vxlan_fdb *f;
464
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800465 f = __vxlan_find_mac(vxlan, mac, vni);
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000466 if (f)
467 f->used = jiffies;
468
469 return f;
470}
471
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300472/* caller should hold vxlan->hash_lock */
473static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800474 union vxlan_addr *ip, __be16 port,
Jiri Benc54bfd872016-02-16 21:58:58 +0100475 __be32 vni, __u32 ifindex)
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300476{
477 struct vxlan_rdst *rd;
478
479 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800480 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300481 rd->remote_port == port &&
482 rd->remote_vni == vni &&
483 rd->remote_ifindex == ifindex)
484 return rd;
485 }
486
487 return NULL;
488}
489
Thomas Richter906dc182013-07-19 17:20:07 +0200490/* Replace destination of unicast mac */
491static int vxlan_fdb_replace(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100492 union vxlan_addr *ip, __be16 port, __be32 vni,
493 __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200494{
495 struct vxlan_rdst *rd;
496
497 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
498 if (rd)
499 return 0;
500
501 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
502 if (!rd)
503 return 0;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100504
505 dst_cache_reset(&rd->dst_cache);
Cong Wange4c7ed42013-08-31 13:44:33 +0800506 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200507 rd->remote_port = port;
508 rd->remote_vni = vni;
509 rd->remote_ifindex = ifindex;
510 return 1;
511}
512
David Stevens66817122013-03-15 04:35:51 +0000513/* Add/update destinations for multicast */
514static int vxlan_fdb_append(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100515 union vxlan_addr *ip, __be16 port, __be32 vni,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200516 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000517{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700518 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000519
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300520 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
521 if (rd)
522 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700523
David Stevens66817122013-03-15 04:35:51 +0000524 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
525 if (rd == NULL)
526 return -ENOBUFS;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100527
528 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
529 kfree(rd);
530 return -ENOBUFS;
531 }
532
Cong Wange4c7ed42013-08-31 13:44:33 +0800533 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000534 rd->remote_port = port;
535 rd->remote_vni = vni;
536 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700537
538 list_add_tail_rcu(&rd->list, &f->remotes);
539
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200540 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000541 return 1;
542}
543
Tom Herbertdfd86452015-01-12 17:00:38 -0800544static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
545 unsigned int off,
546 struct vxlanhdr *vh, size_t hdrlen,
Jiri Benc54bfd872016-02-16 21:58:58 +0100547 __be32 vni_field,
548 struct gro_remcsum *grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800549 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800550{
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700551 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -0800552
553 if (skb->remcsum_offload)
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700554 return vh;
Tom Herbertdfd86452015-01-12 17:00:38 -0800555
556 if (!NAPI_GRO_CB(skb)->csum_valid)
557 return NULL;
558
Jiri Benc54bfd872016-02-16 21:58:58 +0100559 start = vxlan_rco_start(vni_field);
560 offset = start + vxlan_rco_offset(vni_field);
Tom Herbertdfd86452015-01-12 17:00:38 -0800561
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700562 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
563 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800564
565 skb->remcsum_offload = 1;
566
567 return vh;
568}
569
Tom Herbert5602c482016-04-05 08:22:53 -0700570static struct sk_buff **vxlan_gro_receive(struct sock *sk,
571 struct sk_buff **head,
572 struct sk_buff *skb)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200573{
574 struct sk_buff *p, **pp = NULL;
575 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800576 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200577 int flush = 1;
Tom Herbert5602c482016-04-05 08:22:53 -0700578 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
Jiri Benc54bfd872016-02-16 21:58:58 +0100579 __be32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800580 struct gro_remcsum grc;
581
582 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200583
584 off_vx = skb_gro_offset(skb);
585 hlen = off_vx + sizeof(*vh);
586 vh = skb_gro_header_fast(skb, off_vx);
587 if (skb_gro_header_hard(skb, hlen)) {
588 vh = skb_gro_header_slow(skb, hlen, off_vx);
589 if (unlikely(!vh))
590 goto out;
591 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200592
Tom Herbertdfd86452015-01-12 17:00:38 -0800593 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
594
Jiri Benc54bfd872016-02-16 21:58:58 +0100595 flags = vh->vx_flags;
Tom Herbertdfd86452015-01-12 17:00:38 -0800596
597 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
598 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Jiri Benc54bfd872016-02-16 21:58:58 +0100599 vh->vx_vni, &grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800600 !!(vs->flags &
601 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800602
603 if (!vh)
604 goto out;
605 }
606
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700607 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
608
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200609 for (p = *head; p; p = p->next) {
610 if (!NAPI_GRO_CB(p)->same_flow)
611 continue;
612
613 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100614 if (vh->vx_flags != vh2->vx_flags ||
615 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200616 NAPI_GRO_CB(p)->same_flow = 0;
617 continue;
618 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200619 }
620
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200621 pp = call_gro_receive(eth_gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800622 flush = 0;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200623
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200624out:
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800625 skb_gro_remcsum_cleanup(skb, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200626 NAPI_GRO_CB(skb)->flush |= flush;
627
628 return pp;
629}
630
Tom Herbert5602c482016-04-05 08:22:53 -0700631static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200632{
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700633 /* Sets 'skb->inner_mac_header' since we are always called with
634 * 'skb->encapsulation' set.
635 */
Jesse Gross9b174d82014-12-30 19:10:15 -0800636 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200637}
638
stephen hemmingerd3428942012-10-01 12:32:35 +0000639/* Add new entry to forwarding table -- assumes lock held */
640static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800641 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000642 __u16 state, __u16 flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800643 __be16 port, __be32 src_vni, __be32 vni,
644 __u32 ifindex, __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000645{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200646 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000647 struct vxlan_fdb *f;
648 int notify = 0;
Haishuang Yan17b46362016-11-29 09:59:36 +0800649 int rc;
stephen hemmingerd3428942012-10-01 12:32:35 +0000650
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800651 f = __vxlan_find_mac(vxlan, mac, src_vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000652 if (f) {
653 if (flags & NLM_F_EXCL) {
654 netdev_dbg(vxlan->dev,
655 "lost race to create %pM\n", mac);
656 return -EEXIST;
657 }
658 if (f->state != state) {
659 f->state = state;
660 f->updated = jiffies;
661 notify = 1;
662 }
David Stevensae884082013-04-19 00:36:26 +0000663 if (f->flags != ndm_flags) {
664 f->flags = ndm_flags;
665 f->updated = jiffies;
666 notify = 1;
667 }
Thomas Richter906dc182013-07-19 17:20:07 +0200668 if ((flags & NLM_F_REPLACE)) {
669 /* Only change unicasts */
670 if (!(is_multicast_ether_addr(f->eth_addr) ||
671 is_zero_ether_addr(f->eth_addr))) {
Li RongQing60840422015-04-22 15:49:10 +0800672 notify |= vxlan_fdb_replace(f, ip, port, vni,
Thomas Richter906dc182013-07-19 17:20:07 +0200673 ifindex);
Thomas Richter906dc182013-07-19 17:20:07 +0200674 } else
675 return -EOPNOTSUPP;
676 }
David Stevens66817122013-03-15 04:35:51 +0000677 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300678 (is_multicast_ether_addr(f->eth_addr) ||
679 is_zero_ether_addr(f->eth_addr))) {
Haishuang Yan17b46362016-11-29 09:59:36 +0800680 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
David Stevens66817122013-03-15 04:35:51 +0000681
682 if (rc < 0)
683 return rc;
684 notify |= rc;
685 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000686 } else {
687 if (!(flags & NLM_F_CREATE))
688 return -ENOENT;
689
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200690 if (vxlan->cfg.addrmax &&
691 vxlan->addrcnt >= vxlan->cfg.addrmax)
stephen hemmingerd3428942012-10-01 12:32:35 +0000692 return -ENOSPC;
693
Thomas Richter906dc182013-07-19 17:20:07 +0200694 /* Disallow replace to add a multicast entry */
695 if ((flags & NLM_F_REPLACE) &&
696 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
697 return -EOPNOTSUPP;
698
Cong Wange4c7ed42013-08-31 13:44:33 +0800699 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000700 f = kmalloc(sizeof(*f), GFP_ATOMIC);
701 if (!f)
702 return -ENOMEM;
703
704 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000705 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000706 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000707 f->updated = f->used = jiffies;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800708 f->vni = src_vni;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700709 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000710 memcpy(f->eth_addr, mac, ETH_ALEN);
711
Haishuang Yan17b46362016-11-29 09:59:36 +0800712 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
713 if (rc < 0) {
714 kfree(f);
715 return rc;
716 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700717
stephen hemmingerd3428942012-10-01 12:32:35 +0000718 ++vxlan->addrcnt;
719 hlist_add_head_rcu(&f->hlist,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800720 vxlan_fdb_head(vxlan, mac, src_vni));
stephen hemmingerd3428942012-10-01 12:32:35 +0000721 }
722
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200723 if (notify) {
724 if (rd == NULL)
725 rd = first_remote_rtnl(f);
726 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
727 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000728
729 return 0;
730}
731
Wei Yongjun6706c822013-04-11 19:00:35 +0000732static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000733{
734 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700735 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000736
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100737 list_for_each_entry_safe(rd, nd, &f->remotes, list) {
738 dst_cache_destroy(&rd->dst_cache);
David Stevens66817122013-03-15 04:35:51 +0000739 kfree(rd);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100740 }
David Stevens66817122013-03-15 04:35:51 +0000741 kfree(f);
742}
743
stephen hemmingerd3428942012-10-01 12:32:35 +0000744static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
745{
746 netdev_dbg(vxlan->dev,
747 "delete %pM\n", f->eth_addr);
748
749 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200750 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000751
752 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000753 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000754}
755
Lance Richardson35cf2842017-05-29 13:25:57 -0400756static void vxlan_dst_free(struct rcu_head *head)
757{
758 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
759
760 dst_cache_destroy(&rd->dst_cache);
761 kfree(rd);
762}
763
764static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
765 struct vxlan_rdst *rd)
766{
767 list_del_rcu(&rd->list);
768 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
769 call_rcu(&rd->rcu, vxlan_dst_free);
770}
771
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300772static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800773 union vxlan_addr *ip, __be16 *port, __be32 *src_vni,
774 __be32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300775{
776 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800777 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300778
779 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800780 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
781 if (err)
782 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300783 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800784 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
785 if (remote->sa.sa_family == AF_INET) {
786 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
787 ip->sa.sa_family = AF_INET;
788#if IS_ENABLED(CONFIG_IPV6)
789 } else {
790 ip->sin6.sin6_addr = in6addr_any;
791 ip->sa.sa_family = AF_INET6;
792#endif
793 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300794 }
795
796 if (tb[NDA_PORT]) {
797 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
798 return -EINVAL;
799 *port = nla_get_be16(tb[NDA_PORT]);
800 } else {
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200801 *port = vxlan->cfg.dst_port;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300802 }
803
804 if (tb[NDA_VNI]) {
805 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
806 return -EINVAL;
Jiri Benc54bfd872016-02-16 21:58:58 +0100807 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300808 } else {
809 *vni = vxlan->default_dst.remote_vni;
810 }
811
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800812 if (tb[NDA_SRC_VNI]) {
813 if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32))
814 return -EINVAL;
815 *src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI]));
816 } else {
817 *src_vni = vxlan->default_dst.remote_vni;
818 }
819
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300820 if (tb[NDA_IFINDEX]) {
821 struct net_device *tdev;
822
823 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
824 return -EINVAL;
825 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800826 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300827 if (!tdev)
828 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300829 } else {
830 *ifindex = 0;
831 }
832
833 return 0;
834}
835
stephen hemmingerd3428942012-10-01 12:32:35 +0000836/* Add static entry (via netlink) */
837static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
838 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100839 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000840{
841 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300842 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800843 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000844 __be16 port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800845 __be32 src_vni, vni;
Jiri Benc54bfd872016-02-16 21:58:58 +0100846 u32 ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000847 int err;
848
849 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
850 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
851 ndm->ndm_state);
852 return -EINVAL;
853 }
854
855 if (tb[NDA_DST] == NULL)
856 return -EINVAL;
857
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800858 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300859 if (err)
860 return err;
David Stevens66817122013-03-15 04:35:51 +0000861
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300862 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
863 return -EAFNOSUPPORT;
864
stephen hemmingerd3428942012-10-01 12:32:35 +0000865 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800866 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800867 port, src_vni, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000868 spin_unlock_bh(&vxlan->hash_lock);
869
870 return err;
871}
872
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800873static int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
874 const unsigned char *addr, union vxlan_addr ip,
875 __be16 port, __be32 src_vni, u32 vni, u32 ifindex,
876 u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000877{
stephen hemmingerd3428942012-10-01 12:32:35 +0000878 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300879 struct vxlan_rdst *rd = NULL;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800880 int err = -ENOENT;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300881
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800882 f = vxlan_find_mac(vxlan, addr, src_vni);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300883 if (!f)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800884 return err;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300885
Cong Wange4c7ed42013-08-31 13:44:33 +0800886 if (!vxlan_addr_any(&ip)) {
887 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300888 if (!rd)
889 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000890 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300891
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300892 /* remove a destination if it's not the only one on the list,
893 * otherwise destroy the fdb entry
894 */
895 if (rd && !list_is_singular(&f->remotes)) {
Lance Richardson35cf2842017-05-29 13:25:57 -0400896 vxlan_fdb_dst_destroy(vxlan, f, rd);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300897 goto out;
898 }
899
900 vxlan_fdb_destroy(vxlan, f);
901
902out:
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800903 return 0;
904}
905
906/* Delete entry (via netlink) */
907static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
908 struct net_device *dev,
909 const unsigned char *addr, u16 vid)
910{
911 struct vxlan_dev *vxlan = netdev_priv(dev);
912 union vxlan_addr ip;
913 __be32 src_vni, vni;
914 __be16 port;
915 u32 ifindex;
916 int err;
917
918 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
919 if (err)
920 return err;
921
922 spin_lock_bh(&vxlan->hash_lock);
923 err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex,
924 vid);
stephen hemmingerd3428942012-10-01 12:32:35 +0000925 spin_unlock_bh(&vxlan->hash_lock);
926
927 return err;
928}
929
930/* Dump forwarding table */
931static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400932 struct net_device *dev,
Roopa Prabhud2976532016-08-30 21:56:45 -0700933 struct net_device *filter_dev, int *idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000934{
935 struct vxlan_dev *vxlan = netdev_priv(dev);
936 unsigned int h;
Roopa Prabhud2976532016-08-30 21:56:45 -0700937 int err = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000938
939 for (h = 0; h < FDB_HASH_SIZE; ++h) {
940 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000941
Sasha Levinb67bfe02013-02-27 17:06:00 -0800942 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000943 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000944
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700945 list_for_each_entry_rcu(rd, &f->remotes, list) {
Roopa Prabhud2976532016-08-30 21:56:45 -0700946 if (*idx < cb->args[2])
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900947 goto skip;
948
David Stevens66817122013-03-15 04:35:51 +0000949 err = vxlan_fdb_info(skb, vxlan, f,
950 NETLINK_CB(cb->skb).portid,
951 cb->nlh->nlmsg_seq,
952 RTM_NEWNEIGH,
953 NLM_F_MULTI, rd);
Roopa Prabhud2976532016-08-30 21:56:45 -0700954 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700955 goto out;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700956skip:
Roopa Prabhud2976532016-08-30 21:56:45 -0700957 *idx += 1;
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900958 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000959 }
960 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700961out:
Roopa Prabhud2976532016-08-30 21:56:45 -0700962 return err;
stephen hemmingerd3428942012-10-01 12:32:35 +0000963}
964
965/* Watch incoming packets to learn mapping between Ethernet address
966 * and Tunnel endpoint.
Simon Hormanc4b49512015-04-02 11:17:58 +0900967 * Return true if packet is bogus and should be dropped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000968 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700969static bool vxlan_snoop(struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800970 union vxlan_addr *src_ip, const u8 *src_mac,
Matthias Schiffer87613de2017-06-19 10:03:59 +0200971 u32 src_ifindex, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000972{
973 struct vxlan_dev *vxlan = netdev_priv(dev);
974 struct vxlan_fdb *f;
Matthias Schiffer87613de2017-06-19 10:03:59 +0200975 u32 ifindex = 0;
976
977#if IS_ENABLED(CONFIG_IPV6)
978 if (src_ip->sa.sa_family == AF_INET6 &&
979 (ipv6_addr_type(&src_ip->sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL))
980 ifindex = src_ifindex;
981#endif
stephen hemmingerd3428942012-10-01 12:32:35 +0000982
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800983 f = vxlan_find_mac(vxlan, src_mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000984 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700985 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700986
Matthias Schiffer87613de2017-06-19 10:03:59 +0200987 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip) &&
988 rdst->remote_ifindex == ifindex))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700989 return false;
990
991 /* Don't migrate static entries, drop packets */
Roopa Prabhue0090a92017-06-11 16:32:50 -0700992 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700993 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000994
995 if (net_ratelimit())
996 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800997 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +0100998 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +0000999
Cong Wange4c7ed42013-08-31 13:44:33 +08001000 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001001 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +02001002 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +00001003 } else {
1004 /* learned new entry */
1005 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001006
1007 /* close off race between vxlan_flush and incoming packets */
1008 if (netif_running(dev))
1009 vxlan_fdb_create(vxlan, src_mac, src_ip,
1010 NUD_REACHABLE,
1011 NLM_F_EXCL|NLM_F_CREATE,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02001012 vxlan->cfg.dst_port,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001013 vni,
stephen hemminger3bf74b12013-06-17 12:09:57 -07001014 vxlan->default_dst.remote_vni,
Matthias Schiffer87613de2017-06-19 10:03:59 +02001015 ifindex, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +00001016 spin_unlock(&vxlan->hash_lock);
1017 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001018
1019 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001020}
1021
stephen hemmingerd3428942012-10-01 12:32:35 +00001022/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001023static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001024{
stephen hemminger553675f2013-05-16 11:35:20 +00001025 struct vxlan_dev *vxlan;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001026 struct vxlan_sock *sock4;
Arnd Bergmann4053ab12016-11-07 22:09:07 +01001027#if IS_ENABLED(CONFIG_IPV6)
1028 struct vxlan_sock *sock6;
1029#endif
Jiri Bencb1be00a2015-09-24 13:50:02 +02001030 unsigned short family = dev->default_dst.remote_ip.sa.sa_family;
stephen hemmingerd3428942012-10-01 12:32:35 +00001031
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001032 sock4 = rtnl_dereference(dev->vn4_sock);
1033
Gao feng95ab0992013-12-10 16:37:33 +08001034 /* The vxlan_sock is only used by dev, leaving group has
1035 * no effect on other vxlan devices.
1036 */
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001037 if (family == AF_INET && sock4 && atomic_read(&sock4->refcnt) == 1)
Gao feng95ab0992013-12-10 16:37:33 +08001038 return false;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001039#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001040 sock6 = rtnl_dereference(dev->vn6_sock);
1041 if (family == AF_INET6 && sock6 && atomic_read(&sock6->refcnt) == 1)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001042 return false;
1043#endif
Gao feng95ab0992013-12-10 16:37:33 +08001044
stephen hemminger553675f2013-05-16 11:35:20 +00001045 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001046 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001047 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001048
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001049 if (family == AF_INET &&
1050 rtnl_dereference(vxlan->vn4_sock) != sock4)
Gao feng95ab0992013-12-10 16:37:33 +08001051 continue;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001052#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001053 if (family == AF_INET6 &&
1054 rtnl_dereference(vxlan->vn6_sock) != sock6)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001055 continue;
1056#endif
Gao feng95ab0992013-12-10 16:37:33 +08001057
1058 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1059 &dev->default_dst.remote_ip))
1060 continue;
1061
1062 if (vxlan->default_dst.remote_ifindex !=
1063 dev->default_dst.remote_ifindex)
1064 continue;
1065
1066 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001067 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001068
1069 return false;
1070}
1071
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001072static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001073{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001074 struct vxlan_net *vn;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001075
Jiri Bencb1be00a2015-09-24 13:50:02 +02001076 if (!vs)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001077 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001078 if (!atomic_dec_and_test(&vs->refcnt))
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001079 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001080
Jiri Bencb1be00a2015-09-24 13:50:02 +02001081 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001082 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001083 hlist_del_rcu(&vs->hlist);
Alexander Duycke7b3db52016-06-16 12:20:52 -07001084 udp_tunnel_notify_del_rx_port(vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07001085 (vs->flags & VXLAN_F_GPE) ?
1086 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07001087 UDP_TUNNEL_TYPE_VXLAN);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001088 spin_unlock(&vn->sock_lock);
1089
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001090 return true;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001091}
1092
Jiri Bencb1be00a2015-09-24 13:50:02 +02001093static void vxlan_sock_release(struct vxlan_dev *vxlan)
1094{
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001095 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001096#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001097 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1098
Mark Bloch57d88182017-06-07 14:36:58 +03001099 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001100#endif
1101
Mark Bloch57d88182017-06-07 14:36:58 +03001102 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001103 synchronize_net();
1104
Mark Blocha53cb292017-06-02 03:24:08 +03001105 vxlan_vs_del_dev(vxlan);
1106
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001107 if (__vxlan_sock_release_prep(sock4)) {
1108 udp_tunnel_sock_release(sock4->sock);
1109 kfree(sock4);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001110 }
1111
1112#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001113 if (__vxlan_sock_release_prep(sock6)) {
1114 udp_tunnel_sock_release(sock6->sock);
1115 kfree(sock6);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001116 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02001117#endif
1118}
1119
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001120/* Update multicast group membership when first VNI on
Simon Hormanc4b49512015-04-02 11:17:58 +09001121 * multicast address is brought up
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001122 */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001123static int vxlan_igmp_join(struct vxlan_dev *vxlan)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001124{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001125 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001126 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1127 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001128 int ret = -EINVAL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001129
Cong Wange4c7ed42013-08-31 13:44:33 +08001130 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001131 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001132 struct ip_mreqn mreq = {
1133 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1134 .imr_ifindex = ifindex,
1135 };
1136
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001137 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001138 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001139 ret = ip_mc_join_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001140 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001141#if IS_ENABLED(CONFIG_IPV6)
1142 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001143 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1144
1145 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001146 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001147 ret = ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1148 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001149 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001150#endif
1151 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001152
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001153 return ret;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001154}
1155
1156/* Inverse of vxlan_igmp_join when last VNI is brought down */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001157static int vxlan_igmp_leave(struct vxlan_dev *vxlan)
stephen hemminger3fc2de22013-07-18 08:40:15 -07001158{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001159 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001160 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1161 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001162 int ret = -EINVAL;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001163
Cong Wange4c7ed42013-08-31 13:44:33 +08001164 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001165 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001166 struct ip_mreqn mreq = {
1167 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1168 .imr_ifindex = ifindex,
1169 };
1170
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001171 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001172 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001173 ret = ip_mc_leave_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001174 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001175#if IS_ENABLED(CONFIG_IPV6)
1176 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001177 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1178
1179 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001180 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001181 ret = ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1182 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001183 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001184#endif
1185 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001186
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001187 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00001188}
1189
Jiri Bencf14eceb2016-02-16 21:59:01 +01001190static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1191 struct sk_buff *skb, u32 vxflags)
Tom Herbertdfd86452015-01-12 17:00:38 -08001192{
Jiri Benc7d34fa72016-03-21 17:50:05 +01001193 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -08001194
Jiri Bencf14eceb2016-02-16 21:59:01 +01001195 if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1196 goto out;
Tom Herbertb7fe10e2015-08-19 17:07:32 -07001197
Jiri Bencf14eceb2016-02-16 21:59:01 +01001198 start = vxlan_rco_start(unparsed->vx_vni);
1199 offset = start + vxlan_rco_offset(unparsed->vx_vni);
Tom Herbertdfd86452015-01-12 17:00:38 -08001200
Jiri Benc7d34fa72016-03-21 17:50:05 +01001201 if (!pskb_may_pull(skb, offset + sizeof(u16)))
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001202 return false;
Tom Herbertdfd86452015-01-12 17:00:38 -08001203
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001204 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1205 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
Jiri Bencf14eceb2016-02-16 21:59:01 +01001206out:
1207 unparsed->vx_flags &= ~VXLAN_HF_RCO;
1208 unparsed->vx_vni &= VXLAN_VNI_MASK;
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001209 return true;
Tom Herbertdfd86452015-01-12 17:00:38 -08001210}
1211
Jiri Bencf14eceb2016-02-16 21:59:01 +01001212static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
Jiri Benc64f87d32016-02-23 18:02:55 +01001213 struct sk_buff *skb, u32 vxflags,
Jiri Benc10a5af22016-02-23 18:02:59 +01001214 struct vxlan_metadata *md)
Jiri Benc3288af02016-02-16 21:59:00 +01001215{
Jiri Bencf14eceb2016-02-16 21:59:01 +01001216 struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
Jiri Benc10a5af22016-02-23 18:02:59 +01001217 struct metadata_dst *tun_dst;
Jiri Benc3288af02016-02-16 21:59:00 +01001218
Jiri Bencf14eceb2016-02-16 21:59:01 +01001219 if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1220 goto out;
1221
Jiri Benc3288af02016-02-16 21:59:00 +01001222 md->gbp = ntohs(gbp->policy_id);
1223
Jiri Benc10a5af22016-02-23 18:02:59 +01001224 tun_dst = (struct metadata_dst *)skb_dst(skb);
David S. Miller810813c2016-03-08 12:34:12 -05001225 if (tun_dst) {
Jiri Benc3288af02016-02-16 21:59:00 +01001226 tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
David S. Miller810813c2016-03-08 12:34:12 -05001227 tun_dst->u.tun_info.options_len = sizeof(*md);
1228 }
Jiri Benc3288af02016-02-16 21:59:00 +01001229 if (gbp->dont_learn)
1230 md->gbp |= VXLAN_GBP_DONT_LEARN;
1231
1232 if (gbp->policy_applied)
1233 md->gbp |= VXLAN_GBP_POLICY_APPLIED;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001234
Jiri Benc64f87d32016-02-23 18:02:55 +01001235 /* In flow-based mode, GBP is carried in dst_metadata */
1236 if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1237 skb->mark = md->gbp;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001238out:
1239 unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
Jiri Benc3288af02016-02-16 21:59:00 +01001240}
1241
Jiri Bence1e53142016-04-05 14:47:13 +02001242static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed,
Jiri Benc61618ee2016-04-11 17:06:08 +02001243 __be16 *protocol,
Jiri Bence1e53142016-04-05 14:47:13 +02001244 struct sk_buff *skb, u32 vxflags)
1245{
1246 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed;
1247
1248 /* Need to have Next Protocol set for interfaces in GPE mode. */
1249 if (!gpe->np_applied)
1250 return false;
1251 /* "The initial version is 0. If a receiver does not support the
1252 * version indicated it MUST drop the packet.
1253 */
1254 if (gpe->version != 0)
1255 return false;
1256 /* "When the O bit is set to 1, the packet is an OAM packet and OAM
1257 * processing MUST occur." However, we don't implement OAM
1258 * processing, thus drop the packet.
1259 */
1260 if (gpe->oam_flag)
1261 return false;
1262
1263 switch (gpe->next_protocol) {
1264 case VXLAN_GPE_NP_IPV4:
1265 *protocol = htons(ETH_P_IP);
1266 break;
1267 case VXLAN_GPE_NP_IPV6:
1268 *protocol = htons(ETH_P_IPV6);
1269 break;
1270 case VXLAN_GPE_NP_ETHERNET:
1271 *protocol = htons(ETH_P_TEB);
1272 break;
1273 default:
1274 return false;
1275 }
1276
1277 unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS;
1278 return true;
1279}
1280
Jiri Benc1ab016e2016-02-23 18:02:56 +01001281static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1282 struct vxlan_sock *vs,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001283 struct sk_buff *skb, __be32 vni)
Thomas Graf614732e2015-07-21 10:44:06 +02001284{
Thomas Graf614732e2015-07-21 10:44:06 +02001285 union vxlan_addr saddr;
Matthias Schiffer87613de2017-06-19 10:03:59 +02001286 u32 ifindex = skb->dev->ifindex;
Thomas Graf614732e2015-07-21 10:44:06 +02001287
Thomas Graf614732e2015-07-21 10:44:06 +02001288 skb_reset_mac_header(skb);
Thomas Graf614732e2015-07-21 10:44:06 +02001289 skb->protocol = eth_type_trans(skb, vxlan->dev);
1290 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1291
1292 /* Ignore packet loops (and multicast echo) */
1293 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001294 return false;
Thomas Graf614732e2015-07-21 10:44:06 +02001295
Jiri Benc760c6802016-02-23 18:02:57 +01001296 /* Get address from the outer IP header */
Jiri Bencce212d02015-12-07 16:29:08 +01001297 if (vxlan_get_sk_family(vs) == AF_INET) {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001298 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001299 saddr.sa.sa_family = AF_INET;
1300#if IS_ENABLED(CONFIG_IPV6)
1301 } else {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001302 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001303 saddr.sa.sa_family = AF_INET6;
1304#endif
1305 }
1306
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001307 if ((vxlan->cfg.flags & VXLAN_F_LEARN) &&
Matthias Schiffer87613de2017-06-19 10:03:59 +02001308 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, ifindex, vni))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001309 return false;
1310
1311 return true;
1312}
1313
Jiri Benc760c6802016-02-23 18:02:57 +01001314static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1315 struct sk_buff *skb)
1316{
1317 int err = 0;
1318
1319 if (vxlan_get_sk_family(vs) == AF_INET)
1320 err = IP_ECN_decapsulate(oiph, skb);
1321#if IS_ENABLED(CONFIG_IPV6)
1322 else
1323 err = IP6_ECN_decapsulate(oiph, skb);
1324#endif
1325
1326 if (unlikely(err) && log_ecn_error) {
1327 if (vxlan_get_sk_family(vs) == AF_INET)
1328 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1329 &((struct iphdr *)oiph)->saddr,
1330 ((struct iphdr *)oiph)->tos);
1331 else
1332 net_info_ratelimited("non-ECT from %pI6\n",
1333 &((struct ipv6hdr *)oiph)->saddr);
1334 }
1335 return err <= 1;
1336}
1337
stephen hemmingerd3428942012-10-01 12:32:35 +00001338/* Callback from net/ipv4/udp.c to receive packets */
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001339static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
stephen hemmingerd3428942012-10-01 12:32:35 +00001340{
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001341 struct pcpu_sw_netstats *stats;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001342 struct vxlan_dev *vxlan;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001343 struct vxlan_sock *vs;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001344 struct vxlanhdr unparsed;
Thomas Grafee122c72015-07-21 10:43:58 +02001345 struct vxlan_metadata _md;
1346 struct vxlan_metadata *md = &_md;
Jiri Benc61618ee2016-04-11 17:06:08 +02001347 __be16 protocol = htons(ETH_P_TEB);
Jiri Bence1e53142016-04-05 14:47:13 +02001348 bool raw_proto = false;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001349 void *oiph;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001350 __be32 vni = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001351
Jiri Bence1e53142016-04-05 14:47:13 +02001352 /* Need UDP and VXLAN header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001353 if (!pskb_may_pull(skb, VXLAN_HLEN))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001354 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001355
Jiri Bencf14eceb2016-02-16 21:59:01 +01001356 unparsed = *vxlan_hdr(skb);
Jiri Benc288b01c2016-02-16 21:59:02 +01001357 /* VNI flag always required to be set */
1358 if (!(unparsed.vx_flags & VXLAN_HF_VNI)) {
1359 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1360 ntohl(vxlan_hdr(skb)->vx_flags),
1361 ntohl(vxlan_hdr(skb)->vx_vni));
1362 /* Return non vxlan pkt */
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001363 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001364 }
Jiri Benc288b01c2016-02-16 21:59:02 +01001365 unparsed.vx_flags &= ~VXLAN_HF_VNI;
1366 unparsed.vx_vni &= ~VXLAN_VNI_MASK;
stephen hemmingerd3428942012-10-01 12:32:35 +00001367
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001368 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001369 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001370 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001371
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001372 vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
1373
Matthias Schiffer49f810f2017-06-19 10:04:00 +02001374 vxlan = vxlan_vs_find_vni(vs, skb->dev->ifindex, vni);
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001375 if (!vxlan)
1376 goto drop;
1377
Jiri Bence1e53142016-04-05 14:47:13 +02001378 /* For backwards compatibility, only allow reserved fields to be
1379 * used by VXLAN extensions if explicitly requested.
1380 */
1381 if (vs->flags & VXLAN_F_GPE) {
1382 if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags))
1383 goto drop;
1384 raw_proto = true;
1385 }
1386
1387 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1388 !net_eq(vxlan->net, dev_net(vxlan->dev))))
1389 goto drop;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001390
Thomas Grafee122c72015-07-21 10:43:58 +02001391 if (vxlan_collect_metadata(vs)) {
Jiri Benc10a5af22016-02-23 18:02:59 +01001392 struct metadata_dst *tun_dst;
Jiri Benc07dabf22016-02-18 19:19:29 +01001393
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001394 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
Amir Vadaid817f432016-09-08 16:23:45 +03001395 key32_to_tunnel_id(vni), sizeof(*md));
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001396
Thomas Grafee122c72015-07-21 10:43:58 +02001397 if (!tun_dst)
1398 goto drop;
1399
Geert Uytterhoeven0f1b7352015-09-04 12:49:32 +02001400 md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
Jiri Benc10a5af22016-02-23 18:02:59 +01001401
1402 skb_dst_set(skb, (struct dst_entry *)tun_dst);
Thomas Grafee122c72015-07-21 10:43:58 +02001403 } else {
1404 memset(md, 0, sizeof(*md));
1405 }
1406
Jiri Bencf14eceb2016-02-16 21:59:01 +01001407 if (vs->flags & VXLAN_F_REMCSUM_RX)
1408 if (!vxlan_remcsum(&unparsed, skb, vs->flags))
1409 goto drop;
1410 if (vs->flags & VXLAN_F_GBP)
Jiri Benc10a5af22016-02-23 18:02:59 +01001411 vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001412 /* Note that GBP and GPE can never be active together. This is
1413 * ensured in vxlan_dev_configure.
1414 */
Thomas Graf35114942015-01-15 03:53:55 +01001415
Jiri Bencf14eceb2016-02-16 21:59:01 +01001416 if (unparsed.vx_flags || unparsed.vx_vni) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001417 /* If there are any unprocessed flags remaining treat
1418 * this as a malformed packet. This behavior diverges from
1419 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1420 * in reserved fields are to be ignored. The approach here
Simon Hormanc4b49512015-04-02 11:17:58 +09001421 * maintains compatibility with previous stack code, and also
Tom Herbert3bf39472015-01-08 12:31:18 -08001422 * is more robust and provides a little more security in
1423 * adding extensions to VXLAN.
1424 */
Jiri Benc288b01c2016-02-16 21:59:02 +01001425 goto drop;
Tom Herbert3bf39472015-01-08 12:31:18 -08001426 }
1427
Jiri Bence1e53142016-04-05 14:47:13 +02001428 if (!raw_proto) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001429 if (!vxlan_set_mac(vxlan, vs, skb, vni))
Jiri Bence1e53142016-04-05 14:47:13 +02001430 goto drop;
1431 } else {
Jiri Benc8be0cfa2016-05-13 10:48:42 +02001432 skb_reset_mac_header(skb);
Jiri Bence1e53142016-04-05 14:47:13 +02001433 skb->dev = vxlan->dev;
1434 skb->pkt_type = PACKET_HOST;
1435 }
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001436
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001437 oiph = skb_network_header(skb);
1438 skb_reset_network_header(skb);
1439
1440 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1441 ++vxlan->dev->stats.rx_frame_errors;
1442 ++vxlan->dev->stats.rx_errors;
1443 goto drop;
1444 }
1445
1446 stats = this_cpu_ptr(vxlan->dev->tstats);
1447 u64_stats_update_begin(&stats->syncp);
1448 stats->rx_packets++;
1449 stats->rx_bytes += skb->len;
1450 u64_stats_update_end(&stats->syncp);
1451
1452 gro_cells_receive(&vxlan->gro_cells, skb);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001453 return 0;
1454
1455drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001456 /* Consume bad packet */
1457 kfree_skb(skb);
1458 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001459}
1460
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001461static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
David Stevense4f67ad2012-11-20 02:50:14 +00001462{
1463 struct vxlan_dev *vxlan = netdev_priv(dev);
1464 struct arphdr *parp;
1465 u8 *arpptr, *sha;
1466 __be32 sip, tip;
1467 struct neighbour *n;
1468
1469 if (dev->flags & IFF_NOARP)
1470 goto out;
1471
1472 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1473 dev->stats.tx_dropped++;
1474 goto out;
1475 }
1476 parp = arp_hdr(skb);
1477
1478 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1479 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1480 parp->ar_pro != htons(ETH_P_IP) ||
1481 parp->ar_op != htons(ARPOP_REQUEST) ||
1482 parp->ar_hln != dev->addr_len ||
1483 parp->ar_pln != 4)
1484 goto out;
1485 arpptr = (u8 *)parp + sizeof(struct arphdr);
1486 sha = arpptr;
1487 arpptr += dev->addr_len; /* sha */
1488 memcpy(&sip, arpptr, sizeof(sip));
1489 arpptr += sizeof(sip);
1490 arpptr += dev->addr_len; /* tha */
1491 memcpy(&tip, arpptr, sizeof(tip));
1492
1493 if (ipv4_is_loopback(tip) ||
1494 ipv4_is_multicast(tip))
1495 goto out;
1496
1497 n = neigh_lookup(&arp_tbl, &tip, dev);
1498
1499 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001500 struct vxlan_fdb *f;
1501 struct sk_buff *reply;
1502
1503 if (!(n->nud_state & NUD_CONNECTED)) {
1504 neigh_release(n);
1505 goto out;
1506 }
1507
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001508 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wange4c7ed42013-08-31 13:44:33 +08001509 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001510 /* bridge-local neighbor */
1511 neigh_release(n);
1512 goto out;
1513 }
1514
1515 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1516 n->ha, sha);
1517
1518 neigh_release(n);
1519
David Stevens73461352014-03-18 12:32:29 -04001520 if (reply == NULL)
1521 goto out;
1522
David Stevense4f67ad2012-11-20 02:50:14 +00001523 skb_reset_mac_header(reply);
1524 __skb_pull(reply, skb_network_offset(reply));
1525 reply->ip_summed = CHECKSUM_UNNECESSARY;
1526 reply->pkt_type = PACKET_HOST;
1527
1528 if (netif_rx_ni(reply) == NET_RX_DROP)
1529 dev->stats.rx_dropped++;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001530 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001531 union vxlan_addr ipa = {
1532 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001533 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001534 };
1535
1536 vxlan_ip_miss(dev, &ipa);
1537 }
David Stevense4f67ad2012-11-20 02:50:14 +00001538out:
1539 consume_skb(skb);
1540 return NETDEV_TX_OK;
1541}
1542
Cong Wangf564f452013-08-31 13:44:36 +08001543#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001544static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1545 struct neighbour *n, bool isrouter)
1546{
1547 struct net_device *dev = request->dev;
1548 struct sk_buff *reply;
1549 struct nd_msg *ns, *na;
1550 struct ipv6hdr *pip6;
1551 u8 *daddr;
1552 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1553 int ns_olen;
1554 int i, len;
1555
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001556 if (dev == NULL || !pskb_may_pull(request, request->len))
David Stevens4b29dba2014-03-24 10:39:58 -04001557 return NULL;
1558
1559 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1560 sizeof(*na) + na_olen + dev->needed_tailroom;
1561 reply = alloc_skb(len, GFP_ATOMIC);
1562 if (reply == NULL)
1563 return NULL;
1564
1565 reply->protocol = htons(ETH_P_IPV6);
1566 reply->dev = dev;
1567 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1568 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001569 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001570
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001571 ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
David Stevens4b29dba2014-03-24 10:39:58 -04001572
1573 daddr = eth_hdr(request)->h_source;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001574 ns_olen = request->len - skb_network_offset(request) -
1575 sizeof(struct ipv6hdr) - sizeof(*ns);
David Stevens4b29dba2014-03-24 10:39:58 -04001576 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1577 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1578 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1579 break;
1580 }
1581 }
1582
1583 /* Ethernet header */
1584 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1585 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1586 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1587 reply->protocol = htons(ETH_P_IPV6);
1588
1589 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001590 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001591 skb_put(reply, sizeof(struct ipv6hdr));
1592
1593 /* IPv6 header */
1594
1595 pip6 = ipv6_hdr(reply);
1596 memset(pip6, 0, sizeof(struct ipv6hdr));
1597 pip6->version = 6;
1598 pip6->priority = ipv6_hdr(request)->priority;
1599 pip6->nexthdr = IPPROTO_ICMPV6;
1600 pip6->hop_limit = 255;
1601 pip6->daddr = ipv6_hdr(request)->saddr;
1602 pip6->saddr = *(struct in6_addr *)n->primary_key;
1603
1604 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001605 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001606
David Stevens4b29dba2014-03-24 10:39:58 -04001607 /* Neighbor Advertisement */
Johannes Bergb080db52017-06-16 14:29:19 +02001608 na = skb_put_zero(reply, sizeof(*na) + na_olen);
David Stevens4b29dba2014-03-24 10:39:58 -04001609 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1610 na->icmph.icmp6_router = isrouter;
1611 na->icmph.icmp6_override = 1;
1612 na->icmph.icmp6_solicited = 1;
1613 na->target = ns->target;
1614 ether_addr_copy(&na->opt[2], n->ha);
1615 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1616 na->opt[1] = na_olen >> 3;
1617
1618 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1619 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1620 csum_partial(na, sizeof(*na)+na_olen, 0));
1621
1622 pip6->payload_len = htons(sizeof(*na)+na_olen);
1623
1624 skb_push(reply, sizeof(struct ipv6hdr));
1625
1626 reply->ip_summed = CHECKSUM_UNNECESSARY;
1627
1628 return reply;
1629}
1630
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001631static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
Cong Wangf564f452013-08-31 13:44:36 +08001632{
1633 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001634 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001635 const struct ipv6hdr *iphdr;
Roopa Prabhu8dcd81a2017-02-20 08:41:16 -08001636 const struct in6_addr *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001637 struct neighbour *n;
1638 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001639
1640 in6_dev = __in6_dev_get(dev);
1641 if (!in6_dev)
1642 goto out;
1643
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001644 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + sizeof(struct nd_msg)))
1645 goto out;
1646
Cong Wangf564f452013-08-31 13:44:36 +08001647 iphdr = ipv6_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001648 daddr = &iphdr->daddr;
1649
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001650 msg = (struct nd_msg *)(iphdr + 1);
Cong Wangf564f452013-08-31 13:44:36 +08001651 if (msg->icmph.icmp6_code != 0 ||
1652 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1653 goto out;
1654
David Stevens4b29dba2014-03-24 10:39:58 -04001655 if (ipv6_addr_loopback(daddr) ||
1656 ipv6_addr_is_multicast(&msg->target))
1657 goto out;
1658
1659 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001660
1661 if (n) {
1662 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001663 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001664
1665 if (!(n->nud_state & NUD_CONNECTED)) {
1666 neigh_release(n);
1667 goto out;
1668 }
1669
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001670 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wangf564f452013-08-31 13:44:36 +08001671 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1672 /* bridge-local neighbor */
1673 neigh_release(n);
1674 goto out;
1675 }
1676
David Stevens4b29dba2014-03-24 10:39:58 -04001677 reply = vxlan_na_create(skb, n,
1678 !!(f ? f->flags & NTF_ROUTER : 0));
1679
Cong Wangf564f452013-08-31 13:44:36 +08001680 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001681
1682 if (reply == NULL)
1683 goto out;
1684
1685 if (netif_rx_ni(reply) == NET_RX_DROP)
1686 dev->stats.rx_dropped++;
1687
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001688 } else if (vxlan->cfg.flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001689 union vxlan_addr ipa = {
1690 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001691 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001692 };
1693
Cong Wangf564f452013-08-31 13:44:36 +08001694 vxlan_ip_miss(dev, &ipa);
1695 }
1696
1697out:
1698 consume_skb(skb);
1699 return NETDEV_TX_OK;
1700}
1701#endif
1702
David Stevense4f67ad2012-11-20 02:50:14 +00001703static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1704{
1705 struct vxlan_dev *vxlan = netdev_priv(dev);
1706 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001707
1708 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1709 return false;
1710
1711 n = NULL;
1712 switch (ntohs(eth_hdr(skb)->h_proto)) {
1713 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001714 {
1715 struct iphdr *pip;
1716
David Stevense4f67ad2012-11-20 02:50:14 +00001717 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1718 return false;
1719 pip = ip_hdr(skb);
1720 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001721 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001722 union vxlan_addr ipa = {
1723 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001724 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001725 };
1726
1727 vxlan_ip_miss(dev, &ipa);
1728 return false;
1729 }
1730
David Stevense4f67ad2012-11-20 02:50:14 +00001731 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001732 }
1733#if IS_ENABLED(CONFIG_IPV6)
1734 case ETH_P_IPV6:
1735 {
1736 struct ipv6hdr *pip6;
1737
1738 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1739 return false;
1740 pip6 = ipv6_hdr(skb);
1741 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
Matthias Schifferdc5321d2017-06-19 10:03:56 +02001742 if (!n && (vxlan->cfg.flags & VXLAN_F_L3MISS)) {
Cong Wange15a00a2013-08-31 13:44:34 +08001743 union vxlan_addr ipa = {
1744 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001745 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001746 };
1747
1748 vxlan_ip_miss(dev, &ipa);
1749 return false;
1750 }
1751
1752 break;
1753 }
1754#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001755 default:
1756 return false;
1757 }
1758
1759 if (n) {
1760 bool diff;
1761
Joe Perches7367d0b2013-09-01 11:51:23 -07001762 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001763 if (diff) {
1764 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1765 dev->addr_len);
1766 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1767 }
1768 neigh_release(n);
1769 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001770 }
1771
David Stevense4f67ad2012-11-20 02:50:14 +00001772 return false;
1773}
1774
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001775static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01001776 struct vxlan_metadata *md)
1777{
1778 struct vxlanhdr_gbp *gbp;
1779
Thomas Grafdb79a622015-02-04 17:00:04 +01001780 if (!md->gbp)
1781 return;
1782
Thomas Graf35114942015-01-15 03:53:55 +01001783 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01001784 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01001785
1786 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1787 gbp->dont_learn = 1;
1788
1789 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1790 gbp->policy_applied = 1;
1791
1792 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1793}
1794
Jiri Bence1e53142016-04-05 14:47:13 +02001795static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
1796 __be16 protocol)
1797{
1798 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
1799
1800 gpe->np_applied = 1;
1801
1802 switch (protocol) {
1803 case htons(ETH_P_IP):
1804 gpe->next_protocol = VXLAN_GPE_NP_IPV4;
1805 return 0;
1806 case htons(ETH_P_IPV6):
1807 gpe->next_protocol = VXLAN_GPE_NP_IPV6;
1808 return 0;
1809 case htons(ETH_P_TEB):
1810 gpe->next_protocol = VXLAN_GPE_NP_ETHERNET;
1811 return 0;
1812 }
1813 return -EPFNOSUPPORT;
1814}
1815
Jiri Bencf491e562016-02-02 18:09:16 +01001816static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
1817 int iphdr_len, __be32 vni,
1818 struct vxlan_metadata *md, u32 vxflags,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01001819 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08001820{
Cong Wange4c7ed42013-08-31 13:44:33 +08001821 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001822 int min_headroom;
1823 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08001824 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02001825 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08001826
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001827 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001828 skb->ip_summed == CHECKSUM_PARTIAL) {
1829 int csum_start = skb_checksum_start_offset(skb);
1830
1831 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1832 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1833 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00001834 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08001835 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08001836 }
1837
Cong Wange4c7ed42013-08-31 13:44:33 +08001838 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
pravin shelar4a4f86c2016-11-13 20:43:52 -08001839 + VXLAN_HLEN + iphdr_len;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001840
1841 /* Need space for new headers (invalidates iph ptr) */
1842 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02001843 if (unlikely(err))
pravin shelarc46b7892016-11-13 20:43:54 -08001844 return err;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001845
Alexander Duyckaed069d2016-04-14 15:33:37 -04001846 err = iptunnel_handle_offloads(skb, type);
1847 if (err)
pravin shelarc46b7892016-11-13 20:43:54 -08001848 return err;
Jesse Grossb736a622015-04-09 11:19:14 -07001849
Johannes Bergd58ff352017-06-16 14:29:23 +02001850 vxh = __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01001851 vxh->vx_flags = VXLAN_HF_VNI;
1852 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07001853
Tom Herbertdfd86452015-01-12 17:00:38 -08001854 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01001855 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08001856
Jiri Benc54bfd872016-02-16 21:58:58 +01001857 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
1858 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
1859 vxh->vx_flags |= VXLAN_HF_RCO;
Tom Herbertdfd86452015-01-12 17:00:38 -08001860
1861 if (!skb_is_gso(skb)) {
1862 skb->ip_summed = CHECKSUM_NONE;
1863 skb->encapsulation = 0;
1864 }
1865 }
1866
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001867 if (vxflags & VXLAN_F_GBP)
1868 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001869 if (vxflags & VXLAN_F_GPE) {
1870 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
1871 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08001872 return err;
Jiri Bence1e53142016-04-05 14:47:13 +02001873 inner_protocol = skb->protocol;
1874 }
Thomas Graf35114942015-01-15 03:53:55 +01001875
Jiri Bence1e53142016-04-05 14:47:13 +02001876 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08001877 return 0;
Pravin B Shelar49560532013-08-19 11:23:17 -07001878}
Pravin B Shelar49560532013-08-19 11:23:17 -07001879
pravin shelar655c3de2016-11-13 20:43:55 -08001880static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
1881 struct vxlan_sock *sock4,
Jiri Benc1a8496b2016-02-02 18:09:14 +01001882 struct sk_buff *skb, int oif, u8 tos,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001883 __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001884 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001885 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01001886{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001887 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01001888 struct rtable *rt = NULL;
1889 struct flowi4 fl4;
1890
pravin shelar655c3de2016-11-13 20:43:55 -08001891 if (!sock4)
1892 return ERR_PTR(-EIO);
1893
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001894 if (tos && !info)
1895 use_cache = false;
1896 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001897 rt = dst_cache_get_ip4(dst_cache, saddr);
1898 if (rt)
1899 return rt;
1900 }
1901
Jiri Benc1a8496b2016-02-02 18:09:14 +01001902 memset(&fl4, 0, sizeof(fl4));
1903 fl4.flowi4_oif = oif;
1904 fl4.flowi4_tos = RT_TOS(tos);
1905 fl4.flowi4_mark = skb->mark;
1906 fl4.flowi4_proto = IPPROTO_UDP;
1907 fl4.daddr = daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07001908 fl4.saddr = *saddr;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001909 fl4.fl4_dport = dport;
1910 fl4.fl4_sport = sport;
Jiri Benc1a8496b2016-02-02 18:09:14 +01001911
1912 rt = ip_route_output_key(vxlan->net, &fl4);
pravin shelar655c3de2016-11-13 20:43:55 -08001913 if (likely(!IS_ERR(rt))) {
1914 if (rt->dst.dev == dev) {
1915 netdev_dbg(dev, "circular route to %pI4\n", &daddr);
1916 ip_rt_put(rt);
1917 return ERR_PTR(-ELOOP);
1918 }
1919
Jiri Benc1a8496b2016-02-02 18:09:14 +01001920 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001921 if (use_cache)
1922 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
pravin shelar655c3de2016-11-13 20:43:55 -08001923 } else {
1924 netdev_dbg(dev, "no route to %pI4\n", &daddr);
1925 return ERR_PTR(-ENETUNREACH);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001926 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01001927 return rt;
1928}
1929
Jiri Bence5d4b292015-12-07 13:04:30 +01001930#if IS_ENABLED(CONFIG_IPV6)
1931static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
pravin shelar655c3de2016-11-13 20:43:55 -08001932 struct net_device *dev,
pravin shelar03dc52a2016-11-13 20:43:53 -08001933 struct vxlan_sock *sock6,
Daniel Borkmann14006152016-03-04 15:15:08 +01001934 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01001935 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01001936 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001937 struct in6_addr *saddr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001938 __be16 dport, __be16 sport,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001939 struct dst_cache *dst_cache,
1940 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01001941{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001942 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01001943 struct dst_entry *ndst;
1944 struct flowi6 fl6;
1945 int err;
1946
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001947 if (!sock6)
1948 return ERR_PTR(-EIO);
1949
Daniel Borkmann14006152016-03-04 15:15:08 +01001950 if (tos && !info)
1951 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001952 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001953 ndst = dst_cache_get_ip6(dst_cache, saddr);
1954 if (ndst)
1955 return ndst;
1956 }
1957
Jiri Bence5d4b292015-12-07 13:04:30 +01001958 memset(&fl6, 0, sizeof(fl6));
1959 fl6.flowi6_oif = oif;
1960 fl6.daddr = *daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07001961 fl6.saddr = *saddr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01001962 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01001963 fl6.flowi6_mark = skb->mark;
1964 fl6.flowi6_proto = IPPROTO_UDP;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001965 fl6.fl6_dport = dport;
1966 fl6.fl6_sport = sport;
Jiri Bence5d4b292015-12-07 13:04:30 +01001967
1968 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001969 sock6->sock->sk,
Jiri Bence5d4b292015-12-07 13:04:30 +01001970 &ndst, &fl6);
pravin shelar655c3de2016-11-13 20:43:55 -08001971 if (unlikely(err < 0)) {
1972 netdev_dbg(dev, "no route to %pI6\n", daddr);
1973 return ERR_PTR(-ENETUNREACH);
1974 }
1975
1976 if (unlikely(ndst->dev == dev)) {
1977 netdev_dbg(dev, "circular route to %pI6\n", daddr);
1978 dst_release(ndst);
1979 return ERR_PTR(-ELOOP);
1980 }
Jiri Bence5d4b292015-12-07 13:04:30 +01001981
1982 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001983 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001984 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01001985 return ndst;
1986}
1987#endif
1988
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001989/* Bypass encapsulation if the destination is local */
1990static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001991 struct vxlan_dev *dst_vxlan, __be32 vni)
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001992{
Li RongQing8f849852014-01-04 13:57:59 +08001993 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001994 union vxlan_addr loopback;
1995 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001996 struct net_device *dev = skb->dev;
1997 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001998
Li RongQing8f849852014-01-04 13:57:59 +08001999 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
2000 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002001 skb->pkt_type = PACKET_HOST;
2002 skb->encapsulation = 0;
2003 skb->dev = dst_vxlan->dev;
2004 __skb_pull(skb, skb_network_offset(skb));
2005
Cong Wange4c7ed42013-08-31 13:44:33 +08002006 if (remote_ip->sa.sa_family == AF_INET) {
2007 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
2008 loopback.sa.sa_family = AF_INET;
2009#if IS_ENABLED(CONFIG_IPV6)
2010 } else {
2011 loopback.sin6.sin6_addr = in6addr_loopback;
2012 loopback.sa.sa_family = AF_INET6;
2013#endif
2014 }
2015
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002016 if (dst_vxlan->cfg.flags & VXLAN_F_LEARN)
Matthias Schiffer87613de2017-06-19 10:03:59 +02002017 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source, 0,
2018 vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002019
2020 u64_stats_update_begin(&tx_stats->syncp);
2021 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002022 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002023 u64_stats_update_end(&tx_stats->syncp);
2024
2025 if (netif_rx(skb) == NET_RX_SUCCESS) {
2026 u64_stats_update_begin(&rx_stats->syncp);
2027 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002028 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002029 u64_stats_update_end(&rx_stats->syncp);
2030 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08002031 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002032 }
2033}
2034
pravin shelarfee1fad2016-11-13 20:43:56 -08002035static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002036 struct vxlan_dev *vxlan,
2037 union vxlan_addr *daddr,
2038 __be16 dst_port, int dst_ifindex, __be32 vni,
2039 struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002040 u32 rt_flags)
2041{
2042#if IS_ENABLED(CONFIG_IPV6)
2043 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2044 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2045 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2046 */
2047 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2048#endif
2049 /* Bypass encapsulation if the destination is local */
2050 if (rt_flags & RTCF_LOCAL &&
2051 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2052 struct vxlan_dev *dst_vxlan;
2053
2054 dst_release(dst);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002055 dst_vxlan = vxlan_find_vni(vxlan->net, dst_ifindex, vni,
pravin shelarfee1fad2016-11-13 20:43:56 -08002056 daddr->sa.sa_family, dst_port,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002057 vxlan->cfg.flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002058 if (!dst_vxlan) {
2059 dev->stats.tx_errors++;
2060 kfree_skb(skb);
2061
2062 return -ENOENT;
2063 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002064 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002065 return 1;
2066 }
2067
2068 return 0;
2069}
2070
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002071static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002072 __be32 default_vni, struct vxlan_rdst *rdst,
2073 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002074{
Paolo Abenid71785f2016-02-12 15:43:57 +01002075 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002076 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002077 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002078 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002079 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002080 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002081 struct vxlan_metadata _md;
2082 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002083 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002084 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002085 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002086 __u8 tos, ttl;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002087 int ifindex;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07002088 int err;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002089 u32 flags = vxlan->cfg.flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002090 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002091 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002092
Jiri Benc61adedf2015-08-20 13:56:25 +02002093 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002094
Thomas Grafee122c72015-07-21 10:43:58 +02002095 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002096 dst = &rdst->remote_ip;
2097 if (vxlan_addr_any(dst)) {
2098 if (did_rsc) {
2099 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002100 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002101 return;
2102 }
2103 goto drop;
2104 }
2105
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002106 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002107 vni = (rdst->remote_vni) ? : default_vni;
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002108 ifindex = rdst->remote_ifindex;
Brian Russell11586322017-02-24 17:47:11 +00002109 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002110 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002111 md->gbp = skb->mark;
2112 ttl = vxlan->cfg.ttl;
2113 if (!ttl && vxlan_addr_multicast(dst))
2114 ttl = 1;
2115
2116 tos = vxlan->cfg.tos;
2117 if (tos == 1)
2118 tos = ip_tunnel_get_dsfield(old_iph, skb);
2119
2120 if (dst->sa.sa_family == AF_INET)
2121 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2122 else
2123 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2124 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002125 } else {
2126 if (!info) {
2127 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2128 dev->name);
2129 goto drop;
2130 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002131 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002132 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002133 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002134 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2135 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002136 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002137 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2138 }
Thomas Grafee122c72015-07-21 10:43:58 +02002139 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002140 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2141 vni = tunnel_id_to_key32(info->key.tun_id);
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002142 ifindex = 0;
Paolo Abenid71785f2016-02-12 15:43:57 +01002143 dst_cache = &info->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002144 if (info->options_len)
2145 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002146 ttl = info->key.ttl;
2147 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002148 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002149 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002150 }
pravin shelar0770b532016-11-13 20:43:57 -08002151 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2152 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002153
Jakub Kicinski56de8592017-02-24 11:43:36 -08002154 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002155 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002156 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002157 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002158 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002159
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002160 rt = vxlan_get_route(vxlan, dev, sock4, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002161 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002162 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002163 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002164 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002165 if (IS_ERR(rt)) {
2166 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002167 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002168 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002169
Cong Wange4c7ed42013-08-31 13:44:33 +08002170 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002171 if (!info) {
2172 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002173 dst_port, ifindex, vni,
2174 &rt->dst, rt->rt_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002175 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002176 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002177 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002178 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002179 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002180
pravin shelarc46b7892016-11-13 20:43:54 -08002181 ndst = &rt->dst;
Cong Wange4c7ed42013-08-31 13:44:33 +08002182 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2183 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002184 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002185 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002186 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002187 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002188
Brian Russell11586322017-02-24 17:47:11 +00002189 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002190 dst->sin.sin_addr.s_addr, tos, ttl, df,
2191 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002192#if IS_ENABLED(CONFIG_IPV6)
2193 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002194 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002195
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002196 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, ifindex, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002197 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002198 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002199 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002200 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002201 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002202 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002203 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002204 goto tx_error;
2205 }
pravin shelar655c3de2016-11-13 20:43:55 -08002206
pravin shelarfee1fad2016-11-13 20:43:56 -08002207 if (!info) {
2208 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002209
pravin shelarfee1fad2016-11-13 20:43:56 -08002210 err = encap_bypass_if_local(skb, dev, vxlan, dst,
Matthias Schiffer49f810f2017-06-19 10:04:00 +02002211 dst_port, ifindex, vni,
2212 ndst, rt6i_flags);
pravin shelarfee1fad2016-11-13 20:43:56 -08002213 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002214 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002215 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002216
Daniel Borkmann14006152016-03-04 15:15:08 +01002217 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002218 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002219 skb_scrub_packet(skb, xnet);
2220 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002221 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002222 if (err < 0)
2223 goto tx_error;
2224
pravin shelar0770b532016-11-13 20:43:57 -08002225 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002226 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002227 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002228 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002229#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002230 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002231out_unlock:
2232 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002233 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002234
2235drop:
2236 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002237 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002238 return;
2239
2240tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002241 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002242 if (err == -ELOOP)
2243 dev->stats.collisions++;
2244 else if (err == -ENETUNREACH)
2245 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002246 dst_release(ndst);
2247 dev->stats.tx_errors++;
2248 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002249}
2250
David Stevens66817122013-03-15 04:35:51 +00002251/* Transmit local packets over Vxlan
2252 *
2253 * Outer IP header inherits ECN and DF from inner header.
2254 * Outer UDP destination is the VXLAN assigned port.
2255 * source port is based on hash of flow
2256 */
2257static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2258{
2259 struct vxlan_dev *vxlan = netdev_priv(dev);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002260 const struct ip_tunnel_info *info;
David Stevens66817122013-03-15 04:35:51 +00002261 struct ethhdr *eth;
2262 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002263 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002264 struct vxlan_fdb *f;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002265 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002266
Jiri Benc61adedf2015-08-20 13:56:25 +02002267 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002268
David Stevens66817122013-03-15 04:35:51 +00002269 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002270
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002271 if (vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002272 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2273 info->mode & IP_TUNNEL_INFO_TX) {
2274 vni = tunnel_id_to_key32(info->key.tun_id);
2275 } else {
2276 if (info && info->mode & IP_TUNNEL_INFO_TX)
2277 vxlan_xmit_one(skb, dev, vni, NULL, false);
2278 else
2279 kfree_skb(skb);
2280 return NETDEV_TX_OK;
2281 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002282 }
2283
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002284 if (vxlan->cfg.flags & VXLAN_F_PROXY) {
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002285 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002286 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002287 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002288#if IS_ENABLED(CONFIG_IPV6)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002289 else if (ntohs(eth->h_proto) == ETH_P_IPV6) {
2290 struct ipv6hdr *hdr, _hdr;
2291 if ((hdr = skb_header_pointer(skb,
2292 skb_network_offset(skb),
2293 sizeof(_hdr), &_hdr)) &&
2294 hdr->nexthdr == IPPROTO_ICMPV6)
2295 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002296 }
2297#endif
2298 }
David Stevens66817122013-03-15 04:35:51 +00002299
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002300 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002301 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002302 did_rsc = false;
2303
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002304 if (f && (f->flags & NTF_ROUTER) && (vxlan->cfg.flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002305 (ntohs(eth->h_proto) == ETH_P_IP ||
2306 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002307 did_rsc = route_shortcircuit(dev, skb);
2308 if (did_rsc)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002309 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002310 }
2311
David Stevens66817122013-03-15 04:35:51 +00002312 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002313 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002314 if (f == NULL) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002315 if ((vxlan->cfg.flags & VXLAN_F_L2MISS) &&
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002316 !is_multicast_ether_addr(eth->h_dest))
2317 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002318
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002319 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002320 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002321 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002322 }
David Stevens66817122013-03-15 04:35:51 +00002323 }
2324
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002325 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2326 struct sk_buff *skb1;
2327
Eric Dumazet8f646c92014-01-06 09:54:31 -08002328 if (!fdst) {
2329 fdst = rdst;
2330 continue;
2331 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002332 skb1 = skb_clone(skb, GFP_ATOMIC);
2333 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002334 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002335 }
2336
Eric Dumazet8f646c92014-01-06 09:54:31 -08002337 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002338 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002339 else
2340 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002341 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002342}
2343
stephen hemmingerd3428942012-10-01 12:32:35 +00002344/* Walk the forwarding table and purge stale entries */
2345static void vxlan_cleanup(unsigned long arg)
2346{
2347 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2348 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2349 unsigned int h;
2350
2351 if (!netif_running(vxlan->dev))
2352 return;
2353
stephen hemmingerd3428942012-10-01 12:32:35 +00002354 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2355 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002356
2357 spin_lock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002358 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2359 struct vxlan_fdb *f
2360 = container_of(p, struct vxlan_fdb, hlist);
2361 unsigned long timeout;
2362
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002363 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002364 continue;
2365
Roopa Prabhudef499c2017-03-27 15:46:41 -07002366 if (f->flags & NTF_EXT_LEARNED)
2367 continue;
2368
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002369 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002370 if (time_before_eq(timeout, jiffies)) {
2371 netdev_dbg(vxlan->dev,
2372 "garbage collect %pM\n",
2373 f->eth_addr);
2374 f->state = NUD_STALE;
2375 vxlan_fdb_destroy(vxlan, f);
2376 } else if (time_before(timeout, next_timer))
2377 next_timer = timeout;
2378 }
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002379 spin_unlock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002380 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002381
2382 mod_timer(&vxlan->age_timer, next_timer);
2383}
2384
Mark Blocha53cb292017-06-02 03:24:08 +03002385static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2386{
2387 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2388
2389 spin_lock(&vn->sock_lock);
2390 hlist_del_init_rcu(&vxlan->hlist);
2391 spin_unlock(&vn->sock_lock);
2392}
2393
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002394static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2395{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002396 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002397 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002398
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002399 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002400 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002401 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002402}
2403
stephen hemmingerd3428942012-10-01 12:32:35 +00002404/* Setup stats when device is created */
2405static int vxlan_init(struct net_device *dev)
2406{
WANG Cong1c213bd2014-02-13 11:46:28 -08002407 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002408 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002409 return -ENOMEM;
2410
2411 return 0;
2412}
2413
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002414static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002415{
2416 struct vxlan_fdb *f;
2417
2418 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002419 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002420 if (f)
2421 vxlan_fdb_destroy(vxlan, f);
2422 spin_unlock_bh(&vxlan->hash_lock);
2423}
2424
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002425static void vxlan_uninit(struct net_device *dev)
2426{
2427 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002428
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002429 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002430
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002431 free_percpu(dev->tstats);
2432}
2433
stephen hemmingerd3428942012-10-01 12:32:35 +00002434/* Start ageing timer and join group when device is brought up */
2435static int vxlan_open(struct net_device *dev)
2436{
2437 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002438 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002439
Jiri Benc205f3562015-09-24 13:50:01 +02002440 ret = vxlan_sock_add(vxlan);
2441 if (ret < 0)
2442 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002443
Gao feng79d4a942013-12-10 16:37:32 +08002444 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002445 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002446 if (ret == -EADDRINUSE)
2447 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002448 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002449 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002450 return ret;
2451 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002452 }
2453
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002454 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002455 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2456
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002457 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002458}
2459
2460/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002461static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002462{
Cong Wang31fec5a2013-05-27 22:35:52 +00002463 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002464
2465 spin_lock_bh(&vxlan->hash_lock);
2466 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2467 struct hlist_node *p, *n;
2468 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2469 struct vxlan_fdb *f
2470 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002471 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2472 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002473 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2474 if (!is_zero_ether_addr(f->eth_addr))
2475 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002476 }
2477 }
2478 spin_unlock_bh(&vxlan->hash_lock);
2479}
2480
2481/* Cleanup timer and forwarding table on shutdown */
2482static int vxlan_stop(struct net_device *dev)
2483{
2484 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002485 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002486 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002487
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002488 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002489 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002490 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002491
2492 del_timer_sync(&vxlan->age_timer);
2493
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002494 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002495 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002496
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002497 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002498}
2499
stephen hemmingerd3428942012-10-01 12:32:35 +00002500/* Stub, nothing needs to be done. */
2501static void vxlan_set_multicast_list(struct net_device *dev)
2502{
2503}
2504
Daniel Borkmann345010b2013-12-18 00:21:08 +01002505static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2506{
2507 struct vxlan_dev *vxlan = netdev_priv(dev);
2508 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002509 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2510 dst->remote_ifindex);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002511 bool use_ipv6 = !!(vxlan->cfg.flags & VXLAN_F_IPV6);
Jarod Wilson91572082016-10-20 13:55:20 -04002512
2513 /* This check is different than dev->max_mtu, because it looks at
2514 * the lowerdev->mtu, rather than the static dev->max_mtu
2515 */
2516 if (lowerdev) {
2517 int max_mtu = lowerdev->mtu -
2518 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2519 if (new_mtu > max_mtu)
2520 return -EINVAL;
2521 }
2522
2523 dev->mtu = new_mtu;
2524 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002525}
2526
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002527static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2528{
2529 struct vxlan_dev *vxlan = netdev_priv(dev);
2530 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2531 __be16 sport, dport;
2532
2533 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2534 vxlan->cfg.port_max, true);
2535 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2536
Jiri Benc239e9442015-12-07 13:04:31 +01002537 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002538 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002539 struct rtable *rt;
2540
pravin shelar655c3de2016-11-13 20:43:55 -08002541 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002542 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002543 &info->key.u.ipv4.src, dport, sport,
2544 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002545 if (IS_ERR(rt))
2546 return PTR_ERR(rt);
2547 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002548 } else {
2549#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002550 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002551 struct dst_entry *ndst;
2552
pravin shelar655c3de2016-11-13 20:43:55 -08002553 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002554 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002555 &info->key.u.ipv6.src, dport, sport,
2556 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002557 if (IS_ERR(ndst))
2558 return PTR_ERR(ndst);
2559 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002560#else /* !CONFIG_IPV6 */
2561 return -EPFNOSUPPORT;
2562#endif
2563 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002564 info->key.tp_src = sport;
2565 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002566 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002567}
2568
Jiri Benc0c867c92016-04-05 14:47:10 +02002569static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002570 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002571 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002572 .ndo_open = vxlan_open,
2573 .ndo_stop = vxlan_stop,
2574 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002575 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002576 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002577 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002578 .ndo_validate_addr = eth_validate_addr,
2579 .ndo_set_mac_address = eth_mac_addr,
2580 .ndo_fdb_add = vxlan_fdb_add,
2581 .ndo_fdb_del = vxlan_fdb_delete,
2582 .ndo_fdb_dump = vxlan_fdb_dump,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002583 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
stephen hemmingerd3428942012-10-01 12:32:35 +00002584};
2585
Jiri Bence1e53142016-04-05 14:47:13 +02002586static const struct net_device_ops vxlan_netdev_raw_ops = {
2587 .ndo_init = vxlan_init,
2588 .ndo_uninit = vxlan_uninit,
2589 .ndo_open = vxlan_open,
2590 .ndo_stop = vxlan_stop,
2591 .ndo_start_xmit = vxlan_xmit,
2592 .ndo_get_stats64 = ip_tunnel_get_stats64,
2593 .ndo_change_mtu = vxlan_change_mtu,
2594 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2595};
2596
stephen hemmingerd3428942012-10-01 12:32:35 +00002597/* Info for udev, that this is a virtual tunnel endpoint */
2598static struct device_type vxlan_type = {
2599 .name = "vxlan",
2600};
2601
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002602/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002603 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002604 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002605 */
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02002606static void vxlan_push_rx_ports(struct net_device *dev)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002607{
2608 struct vxlan_sock *vs;
2609 struct net *net = dev_net(dev);
2610 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002611 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002612
2613 spin_lock(&vn->sock_lock);
2614 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Alexander Duycke7b3db52016-06-16 12:20:52 -07002615 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist)
2616 udp_tunnel_push_rx_port(dev, vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07002617 (vs->flags & VXLAN_F_GPE) ?
2618 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07002619 UDP_TUNNEL_TYPE_VXLAN);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002620 }
2621 spin_unlock(&vn->sock_lock);
2622}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002623
stephen hemmingerd3428942012-10-01 12:32:35 +00002624/* Initialize the device structure. */
2625static void vxlan_setup(struct net_device *dev)
2626{
2627 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002628 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002629
Jiri Benc65226ef2016-04-28 16:36:30 +02002630 eth_hw_addr_random(dev);
2631 ether_setup(dev);
2632
David S. Millercf124db2017-05-08 12:52:56 -04002633 dev->needs_free_netdev = true;
stephen hemmingerd3428942012-10-01 12:32:35 +00002634 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2635
stephen hemmingerd3428942012-10-01 12:32:35 +00002636 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002637 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002638 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002639 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002640
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002641 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002642 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002643 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07002644 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002645 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002646
Matthias Schiffera9853432017-06-19 10:03:55 +02002647 /* MTU range: 68 - 65535 */
2648 dev->min_mtu = ETH_MIN_MTU;
2649 dev->max_mtu = ETH_MAX_MTU;
2650
stephen hemminger553675f2013-05-16 11:35:20 +00002651 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002652 spin_lock_init(&vxlan->hash_lock);
2653
2654 init_timer_deferrable(&vxlan->age_timer);
2655 vxlan->age_timer.function = vxlan_cleanup;
2656 vxlan->age_timer.data = (unsigned long) vxlan;
2657
2658 vxlan->dev = dev;
Matthias Schiffera9853432017-06-19 10:03:55 +02002659 vxlan->net = dev_net(dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00002660
Tom Herbert58ce31c2015-08-19 17:07:33 -07002661 gro_cells_init(&vxlan->gro_cells, dev);
2662
stephen hemmingerd3428942012-10-01 12:32:35 +00002663 for (h = 0; h < FDB_HASH_SIZE; ++h)
2664 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2665}
2666
Jiri Benc0c867c92016-04-05 14:47:10 +02002667static void vxlan_ether_setup(struct net_device *dev)
2668{
Jiri Benc0c867c92016-04-05 14:47:10 +02002669 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2670 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2671 dev->netdev_ops = &vxlan_netdev_ether_ops;
2672}
2673
Jiri Bence1e53142016-04-05 14:47:13 +02002674static void vxlan_raw_setup(struct net_device *dev)
2675{
Jiri Benc65226ef2016-04-28 16:36:30 +02002676 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02002677 dev->type = ARPHRD_NONE;
2678 dev->hard_header_len = 0;
2679 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002680 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
2681 dev->netdev_ops = &vxlan_netdev_raw_ops;
2682}
2683
stephen hemmingerd3428942012-10-01 12:32:35 +00002684static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2685 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002686 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002687 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002688 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2689 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002690 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002691 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2692 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002693 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002694 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2695 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2696 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002697 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002698 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2699 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2700 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2701 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07002702 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002703 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002704 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2705 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2706 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002707 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2708 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002709 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02002710 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002711 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
stephen hemmingerd3428942012-10-01 12:32:35 +00002712};
2713
2714static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2715{
2716 if (tb[IFLA_ADDRESS]) {
2717 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2718 pr_debug("invalid link address (not ethernet)\n");
2719 return -EINVAL;
2720 }
2721
2722 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2723 pr_debug("invalid all zero ethernet address\n");
2724 return -EADDRNOTAVAIL;
2725 }
2726 }
2727
Matthias Schiffera9853432017-06-19 10:03:55 +02002728 if (tb[IFLA_MTU]) {
2729 u32 mtu = nla_get_u32(data[IFLA_MTU]);
2730
2731 if (mtu < ETH_MIN_MTU || mtu > ETH_MAX_MTU)
2732 return -EINVAL;
2733 }
2734
stephen hemmingerd3428942012-10-01 12:32:35 +00002735 if (!data)
2736 return -EINVAL;
2737
2738 if (data[IFLA_VXLAN_ID]) {
Matthias Schiffera9853432017-06-19 10:03:55 +02002739 u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2740
Matthias Schiffer4e37d692017-02-23 17:19:41 +01002741 if (id >= VXLAN_N_VID)
stephen hemmingerd3428942012-10-01 12:32:35 +00002742 return -ERANGE;
2743 }
2744
stephen hemminger05f47d62012-10-09 20:35:50 +00002745 if (data[IFLA_VXLAN_PORT_RANGE]) {
2746 const struct ifla_vxlan_port_range *p
2747 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2748
2749 if (ntohs(p->high) < ntohs(p->low)) {
2750 pr_debug("port range %u .. %u not valid\n",
2751 ntohs(p->low), ntohs(p->high));
2752 return -EINVAL;
2753 }
2754 }
2755
stephen hemmingerd3428942012-10-01 12:32:35 +00002756 return 0;
2757}
2758
Yan Burman1b13c972013-01-29 23:43:07 +00002759static void vxlan_get_drvinfo(struct net_device *netdev,
2760 struct ethtool_drvinfo *drvinfo)
2761{
2762 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2763 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2764}
2765
2766static const struct ethtool_ops vxlan_ethtool_ops = {
2767 .get_drvinfo = vxlan_get_drvinfo,
2768 .get_link = ethtool_op_get_link,
2769};
2770
Tom Herbert3ee64f32014-07-13 19:49:42 -07002771static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2772 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002773{
Cong Wange4c7ed42013-08-31 13:44:33 +08002774 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002775 struct udp_port_cfg udp_conf;
2776 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002777
Tom Herbert3ee64f32014-07-13 19:49:42 -07002778 memset(&udp_conf, 0, sizeof(udp_conf));
2779
2780 if (ipv6) {
2781 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002782 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002783 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02002784 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002785 } else {
2786 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002787 }
2788
Tom Herbert3ee64f32014-07-13 19:49:42 -07002789 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002790
Tom Herbert3ee64f32014-07-13 19:49:42 -07002791 /* Open UDP socket */
2792 err = udp_sock_create(net, &udp_conf, &sock);
2793 if (err < 0)
2794 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002795
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002796 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002797}
2798
2799/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02002800static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
2801 __be16 port, u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002802{
2803 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2804 struct vxlan_sock *vs;
2805 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002806 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002807 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002808
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002809 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002810 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002811 return ERR_PTR(-ENOMEM);
2812
2813 for (h = 0; h < VNI_HASH_SIZE; ++h)
2814 INIT_HLIST_HEAD(&vs->vni_list[h]);
2815
Tom Herbert3ee64f32014-07-13 19:49:42 -07002816 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002817 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002818 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002819 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002820 }
2821
Cong Wange4c7ed42013-08-31 13:44:33 +08002822 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002823 atomic_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002824 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00002825
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002826 spin_lock(&vn->sock_lock);
2827 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07002828 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07002829 (vs->flags & VXLAN_F_GPE) ?
2830 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07002831 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002832 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002833
2834 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07002835 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07002836 tunnel_cfg.sk_user_data = vs;
2837 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01002838 tunnel_cfg.encap_rcv = vxlan_rcv;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002839 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07002840 tunnel_cfg.gro_receive = vxlan_gro_receive;
2841 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002842
2843 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002844
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002845 return vs;
2846}
stephen hemminger553675f2013-05-16 11:35:20 +00002847
Jiri Bencb1be00a2015-09-24 13:50:02 +02002848static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002849{
Jiri Benc205f3562015-09-24 13:50:01 +02002850 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2851 struct vxlan_sock *vs = NULL;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002852
Jiri Benc205f3562015-09-24 13:50:01 +02002853 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002854 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002855 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002856 vxlan->cfg.dst_port, vxlan->cfg.flags);
Jiri Benc205f3562015-09-24 13:50:01 +02002857 if (vs && !atomic_add_unless(&vs->refcnt, 1, 0)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002858 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002859 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002860 }
2861 spin_unlock(&vn->sock_lock);
2862 }
Jiri Benc205f3562015-09-24 13:50:01 +02002863 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002864 vs = vxlan_socket_create(vxlan->net, ipv6,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002865 vxlan->cfg.dst_port, vxlan->cfg.flags);
Jiri Benc205f3562015-09-24 13:50:01 +02002866 if (IS_ERR(vs))
2867 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002868#if IS_ENABLED(CONFIG_IPV6)
2869 if (ipv6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002870 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002871 else
2872#endif
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002873 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc205f3562015-09-24 13:50:01 +02002874 vxlan_vs_add_dev(vs, vxlan);
2875 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00002876}
2877
Jiri Bencb1be00a2015-09-24 13:50:02 +02002878static int vxlan_sock_add(struct vxlan_dev *vxlan)
2879{
Matthias Schifferdc5321d2017-06-19 10:03:56 +02002880 bool metadata = vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA;
2881 bool ipv6 = vxlan->cfg.flags & VXLAN_F_IPV6 || metadata;
Jiri Bencd074bf92017-04-27 21:24:35 +02002882 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002883 int ret = 0;
2884
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002885 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002886#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002887 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02002888 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02002889 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02002890 if (ret < 0 && ret != -EAFNOSUPPORT)
2891 ipv4 = false;
2892 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002893#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02002894 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002895 ret = __vxlan_sock_add(vxlan, false);
2896 if (ret < 0)
2897 vxlan_sock_release(vxlan);
2898 return ret;
2899}
2900
Matthias Schiffera9853432017-06-19 10:03:55 +02002901static int vxlan_config_validate(struct net *src_net, struct vxlan_config *conf,
2902 struct net_device **lower,
2903 struct vxlan_dev *old)
stephen hemmingerd3428942012-10-01 12:32:35 +00002904{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002905 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Matthias Schiffera9853432017-06-19 10:03:55 +02002906 struct vxlan_dev *tmp;
2907 bool use_ipv6 = false;
2908
2909 if (conf->flags & VXLAN_F_GPE) {
2910 /* For now, allow GPE only together with
2911 * COLLECT_METADATA. This can be relaxed later; in such
2912 * case, the other side of the PtP link will have to be
2913 * provided.
2914 */
2915 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
2916 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
2917 return -EINVAL;
2918 }
2919 }
2920
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002921 if (!conf->remote_ip.sa.sa_family && !conf->saddr.sa.sa_family) {
2922 /* Unless IPv6 is explicitly requested, assume IPv4 */
Matthias Schiffera9853432017-06-19 10:03:55 +02002923 conf->remote_ip.sa.sa_family = AF_INET;
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002924 conf->saddr.sa.sa_family = AF_INET;
2925 } else if (!conf->remote_ip.sa.sa_family) {
2926 conf->remote_ip.sa.sa_family = conf->saddr.sa.sa_family;
2927 } else if (!conf->saddr.sa.sa_family) {
2928 conf->saddr.sa.sa_family = conf->remote_ip.sa.sa_family;
2929 }
Matthias Schiffera9853432017-06-19 10:03:55 +02002930
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002931 if (conf->saddr.sa.sa_family != conf->remote_ip.sa.sa_family)
2932 return -EINVAL;
2933
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02002934 if (vxlan_addr_multicast(&conf->saddr))
2935 return -EINVAL;
2936
Matthias Schifferce44a4a2017-06-19 10:03:57 +02002937 if (conf->saddr.sa.sa_family == AF_INET6) {
Matthias Schiffera9853432017-06-19 10:03:55 +02002938 if (!IS_ENABLED(CONFIG_IPV6))
2939 return -EPFNOSUPPORT;
2940 use_ipv6 = true;
2941 conf->flags |= VXLAN_F_IPV6;
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02002942
2943 if (!(conf->flags & VXLAN_F_COLLECT_METADATA)) {
2944 int local_type =
2945 ipv6_addr_type(&conf->saddr.sin6.sin6_addr);
2946 int remote_type =
2947 ipv6_addr_type(&conf->remote_ip.sin6.sin6_addr);
2948
2949 if (local_type & IPV6_ADDR_LINKLOCAL) {
2950 if (!(remote_type & IPV6_ADDR_LINKLOCAL) &&
2951 (remote_type != IPV6_ADDR_ANY))
2952 return -EINVAL;
2953
2954 conf->flags |= VXLAN_F_IPV6_LINKLOCAL;
2955 } else {
2956 if (remote_type ==
2957 (IPV6_ADDR_UNICAST | IPV6_ADDR_LINKLOCAL))
2958 return -EINVAL;
2959
2960 conf->flags &= ~VXLAN_F_IPV6_LINKLOCAL;
2961 }
2962 }
Matthias Schiffera9853432017-06-19 10:03:55 +02002963 }
2964
2965 if (conf->label && !use_ipv6)
2966 return -EINVAL;
2967
2968 if (conf->remote_ifindex) {
2969 struct net_device *lowerdev;
2970
2971 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
2972 if (!lowerdev)
2973 return -ENODEV;
2974
2975#if IS_ENABLED(CONFIG_IPV6)
2976 if (use_ipv6) {
2977 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2978 if (idev && idev->cnf.disable_ipv6)
2979 return -EPERM;
2980 }
2981#endif
2982
2983 *lower = lowerdev;
2984 } else {
2985 if (vxlan_addr_multicast(&conf->remote_ip))
2986 return -EINVAL;
2987
Matthias Schiffer0f22a3c2017-06-19 10:03:58 +02002988#if IS_ENABLED(CONFIG_IPV6)
2989 if (conf->flags & VXLAN_F_IPV6_LINKLOCAL)
2990 return -EINVAL;
2991#endif
2992
Matthias Schiffera9853432017-06-19 10:03:55 +02002993 *lower = NULL;
2994 }
2995
2996 if (!conf->dst_port) {
2997 if (conf->flags & VXLAN_F_GPE)
2998 conf->dst_port = htons(4790); /* IANA VXLAN-GPE port */
2999 else
3000 conf->dst_port = htons(vxlan_port);
3001 }
3002
3003 if (!conf->age_interval)
3004 conf->age_interval = FDB_AGE_DEFAULT;
3005
3006 list_for_each_entry(tmp, &vn->vxlan_list, next) {
3007 if (tmp == old)
3008 continue;
3009
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003010 if (tmp->cfg.vni != conf->vni)
3011 continue;
3012 if (tmp->cfg.dst_port != conf->dst_port)
3013 continue;
3014 if ((tmp->cfg.flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)) !=
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003015 (conf->flags & (VXLAN_F_RCV_FLAGS | VXLAN_F_IPV6)))
Matthias Schiffer49f810f2017-06-19 10:04:00 +02003016 continue;
3017
3018 if ((conf->flags & VXLAN_F_IPV6_LINKLOCAL) &&
3019 tmp->cfg.remote_ifindex != conf->remote_ifindex)
3020 continue;
3021
3022 return -EEXIST;
Matthias Schiffera9853432017-06-19 10:03:55 +02003023 }
3024
3025 return 0;
3026}
3027
3028static void vxlan_config_apply(struct net_device *dev,
3029 struct vxlan_config *conf,
3030 struct net_device *lowerdev, bool changelink)
3031{
3032 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003033 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02003034 unsigned short needed_headroom = ETH_HLEN;
Matthias Schiffera9853432017-06-19 10:03:55 +02003035 bool use_ipv6 = !!(conf->flags & VXLAN_F_IPV6);
3036 int max_mtu = ETH_MAX_MTU;
stephen hemmingerd3428942012-10-01 12:32:35 +00003037
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003038 if (!changelink) {
Matthias Schiffera9853432017-06-19 10:03:55 +02003039 if (conf->flags & VXLAN_F_GPE)
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003040 vxlan_raw_setup(dev);
Matthias Schiffera9853432017-06-19 10:03:55 +02003041 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003042 vxlan_ether_setup(dev);
Jiri Bence1e53142016-04-05 14:47:13 +02003043
Matthias Schiffera9853432017-06-19 10:03:55 +02003044 if (conf->mtu)
3045 dev->mtu = conf->mtu;
Jiri Bence1e53142016-04-05 14:47:13 +02003046 }
Jiri Benc0c867c92016-04-05 14:47:10 +02003047
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003048 dst->remote_vni = conf->vni;
3049
3050 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00003051
Matthias Schiffera9853432017-06-19 10:03:55 +02003052 if (lowerdev) {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003053 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00003054
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003055 dev->gso_max_size = lowerdev->gso_max_size;
3056 dev->gso_max_segs = lowerdev->gso_max_segs;
Matthias Schiffera9853432017-06-19 10:03:55 +02003057
3058 needed_headroom = lowerdev->hard_header_len;
3059
3060 max_mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM :
3061 VXLAN_HEADROOM);
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07003062 }
3063
Matthias Schiffera9853432017-06-19 10:03:55 +02003064 if (dev->mtu > max_mtu)
3065 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00003066
Jiri Bencb1be00a2015-09-24 13:50:02 +02003067 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
3068 needed_headroom += VXLAN6_HEADROOM;
3069 else
3070 needed_headroom += VXLAN_HEADROOM;
3071 dev->needed_headroom = needed_headroom;
3072
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003073 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Matthias Schiffera9853432017-06-19 10:03:55 +02003074}
stephen hemmingerd3428942012-10-01 12:32:35 +00003075
Matthias Schiffera9853432017-06-19 10:03:55 +02003076static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
3077 struct vxlan_config *conf,
3078 bool changelink)
3079{
3080 struct vxlan_dev *vxlan = netdev_priv(dev);
3081 struct net_device *lowerdev;
3082 int ret;
Vincent Bernatafb97182012-10-30 10:27:16 +00003083
Matthias Schiffera9853432017-06-19 10:03:55 +02003084 ret = vxlan_config_validate(src_net, conf, &lowerdev, vxlan);
3085 if (ret)
3086 return ret;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003087
Matthias Schiffera9853432017-06-19 10:03:55 +02003088 vxlan_config_apply(dev, conf, lowerdev, changelink);
stephen hemminger553675f2013-05-16 11:35:20 +00003089
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003090 return 0;
3091}
3092
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003093static int __vxlan_dev_create(struct net *net, struct net_device *dev,
3094 struct vxlan_config *conf)
3095{
3096 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3097 struct vxlan_dev *vxlan = netdev_priv(dev);
3098 int err;
3099
3100 err = vxlan_dev_configure(net, dev, conf, false);
3101 if (err)
3102 return err;
3103
3104 dev->ethtool_ops = &vxlan_ethtool_ops;
3105
3106 /* create an fdb entry for a valid default destination */
3107 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
3108 err = vxlan_fdb_create(vxlan, all_zeros_mac,
3109 &vxlan->default_dst.remote_ip,
3110 NUD_REACHABLE | NUD_PERMANENT,
3111 NLM_F_EXCL | NLM_F_CREATE,
3112 vxlan->cfg.dst_port,
3113 vxlan->default_dst.remote_vni,
3114 vxlan->default_dst.remote_vni,
3115 vxlan->default_dst.remote_ifindex,
3116 NTF_SELF);
3117 if (err)
3118 return err;
3119 }
3120
3121 err = register_netdevice(dev);
3122 if (err) {
3123 vxlan_fdb_delete_default(vxlan, vxlan->default_dst.remote_vni);
3124 return err;
3125 }
3126
3127 list_add(&vxlan->next, &vn->vxlan_list);
3128 return 0;
3129}
3130
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003131static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3132 struct net_device *dev, struct vxlan_config *conf,
3133 bool changelink)
3134{
3135 struct vxlan_dev *vxlan = netdev_priv(dev);
3136
3137 memset(conf, 0, sizeof(*conf));
3138
3139 /* if changelink operation, start with old existing cfg */
3140 if (changelink)
3141 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3142
3143 if (data[IFLA_VXLAN_ID]) {
3144 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3145
3146 if (changelink && (vni != conf->vni))
3147 return -EOPNOTSUPP;
3148 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3149 }
3150
3151 if (data[IFLA_VXLAN_GROUP]) {
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003152 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET))
3153 return -EOPNOTSUPP;
3154
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003155 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003156 conf->remote_ip.sa.sa_family = AF_INET;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003157 } else if (data[IFLA_VXLAN_GROUP6]) {
3158 if (!IS_ENABLED(CONFIG_IPV6))
3159 return -EPFNOSUPPORT;
3160
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003161 if (changelink && (conf->remote_ip.sa.sa_family != AF_INET6))
3162 return -EOPNOTSUPP;
3163
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003164 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3165 conf->remote_ip.sa.sa_family = AF_INET6;
3166 }
3167
3168 if (data[IFLA_VXLAN_LOCAL]) {
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003169 if (changelink && (conf->saddr.sa.sa_family != AF_INET))
3170 return -EOPNOTSUPP;
3171
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003172 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3173 conf->saddr.sa.sa_family = AF_INET;
3174 } else if (data[IFLA_VXLAN_LOCAL6]) {
3175 if (!IS_ENABLED(CONFIG_IPV6))
3176 return -EPFNOSUPPORT;
3177
Matthias Schifferce44a4a2017-06-19 10:03:57 +02003178 if (changelink && (conf->saddr.sa.sa_family != AF_INET6))
3179 return -EOPNOTSUPP;
3180
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003181 /* TODO: respect scope id */
3182 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3183 conf->saddr.sa.sa_family = AF_INET6;
3184 }
3185
3186 if (data[IFLA_VXLAN_LINK])
3187 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3188
3189 if (data[IFLA_VXLAN_TOS])
3190 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3191
3192 if (data[IFLA_VXLAN_TTL])
3193 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3194
3195 if (data[IFLA_VXLAN_LABEL])
3196 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3197 IPV6_FLOWLABEL_MASK;
3198
3199 if (data[IFLA_VXLAN_LEARNING]) {
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003200 if (nla_get_u8(data[IFLA_VXLAN_LEARNING]))
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003201 conf->flags |= VXLAN_F_LEARN;
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003202 else
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003203 conf->flags &= ~VXLAN_F_LEARN;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003204 } else if (!changelink) {
3205 /* default to learn on a new device */
3206 conf->flags |= VXLAN_F_LEARN;
3207 }
3208
3209 if (data[IFLA_VXLAN_AGEING]) {
3210 if (changelink)
3211 return -EOPNOTSUPP;
3212 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
3213 }
3214
3215 if (data[IFLA_VXLAN_PROXY]) {
3216 if (changelink)
3217 return -EOPNOTSUPP;
3218 if (nla_get_u8(data[IFLA_VXLAN_PROXY]))
3219 conf->flags |= VXLAN_F_PROXY;
3220 }
3221
3222 if (data[IFLA_VXLAN_RSC]) {
3223 if (changelink)
3224 return -EOPNOTSUPP;
3225 if (nla_get_u8(data[IFLA_VXLAN_RSC]))
3226 conf->flags |= VXLAN_F_RSC;
3227 }
3228
3229 if (data[IFLA_VXLAN_L2MISS]) {
3230 if (changelink)
3231 return -EOPNOTSUPP;
3232 if (nla_get_u8(data[IFLA_VXLAN_L2MISS]))
3233 conf->flags |= VXLAN_F_L2MISS;
3234 }
3235
3236 if (data[IFLA_VXLAN_L3MISS]) {
3237 if (changelink)
3238 return -EOPNOTSUPP;
3239 if (nla_get_u8(data[IFLA_VXLAN_L3MISS]))
3240 conf->flags |= VXLAN_F_L3MISS;
3241 }
3242
3243 if (data[IFLA_VXLAN_LIMIT]) {
3244 if (changelink)
3245 return -EOPNOTSUPP;
3246 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3247 }
3248
3249 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
3250 if (changelink)
3251 return -EOPNOTSUPP;
3252 if (nla_get_u8(data[IFLA_VXLAN_COLLECT_METADATA]))
3253 conf->flags |= VXLAN_F_COLLECT_METADATA;
3254 }
3255
3256 if (data[IFLA_VXLAN_PORT_RANGE]) {
3257 if (!changelink) {
3258 const struct ifla_vxlan_port_range *p
3259 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3260 conf->port_min = ntohs(p->low);
3261 conf->port_max = ntohs(p->high);
3262 } else {
3263 return -EOPNOTSUPP;
3264 }
3265 }
3266
3267 if (data[IFLA_VXLAN_PORT]) {
3268 if (changelink)
3269 return -EOPNOTSUPP;
3270 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3271 }
3272
3273 if (data[IFLA_VXLAN_UDP_CSUM]) {
3274 if (changelink)
3275 return -EOPNOTSUPP;
3276 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3277 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3278 }
3279
3280 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
3281 if (changelink)
3282 return -EOPNOTSUPP;
3283 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
3284 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
3285 }
3286
3287 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
3288 if (changelink)
3289 return -EOPNOTSUPP;
3290 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
3291 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
3292 }
3293
3294 if (data[IFLA_VXLAN_REMCSUM_TX]) {
3295 if (changelink)
3296 return -EOPNOTSUPP;
3297 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
3298 conf->flags |= VXLAN_F_REMCSUM_TX;
3299 }
3300
3301 if (data[IFLA_VXLAN_REMCSUM_RX]) {
3302 if (changelink)
3303 return -EOPNOTSUPP;
3304 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
3305 conf->flags |= VXLAN_F_REMCSUM_RX;
3306 }
3307
3308 if (data[IFLA_VXLAN_GBP]) {
3309 if (changelink)
3310 return -EOPNOTSUPP;
3311 conf->flags |= VXLAN_F_GBP;
3312 }
3313
3314 if (data[IFLA_VXLAN_GPE]) {
3315 if (changelink)
3316 return -EOPNOTSUPP;
3317 conf->flags |= VXLAN_F_GPE;
3318 }
3319
3320 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
3321 if (changelink)
3322 return -EOPNOTSUPP;
3323 conf->flags |= VXLAN_F_REMCSUM_NOPARTIAL;
3324 }
3325
3326 if (tb[IFLA_MTU]) {
3327 if (changelink)
3328 return -EOPNOTSUPP;
3329 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3330 }
3331
3332 return 0;
3333}
3334
3335static int vxlan_newlink(struct net *src_net, struct net_device *dev,
3336 struct nlattr *tb[], struct nlattr *data[])
3337{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003338 struct vxlan_config conf;
3339 int err;
3340
3341 err = vxlan_nl2conf(tb, data, dev, &conf, false);
3342 if (err)
3343 return err;
3344
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003345 return __vxlan_dev_create(src_net, dev, &conf);
stephen hemmingerd3428942012-10-01 12:32:35 +00003346}
3347
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003348static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
3349 struct nlattr *data[])
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003350{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003351 struct vxlan_dev *vxlan = netdev_priv(dev);
3352 struct vxlan_rdst *dst = &vxlan->default_dst;
3353 struct vxlan_rdst old_dst;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003354 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003355 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003356
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003357 err = vxlan_nl2conf(tb, data,
3358 dev, &conf, true);
3359 if (err)
3360 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003361
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003362 memcpy(&old_dst, dst, sizeof(struct vxlan_rdst));
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003363
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003364 err = vxlan_dev_configure(vxlan->net, dev, &conf, true);
3365 if (err)
3366 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003367
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003368 /* handle default dst entry */
3369 if (!vxlan_addr_equal(&dst->remote_ip, &old_dst.remote_ip)) {
3370 spin_lock_bh(&vxlan->hash_lock);
3371 if (!vxlan_addr_any(&old_dst.remote_ip))
3372 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3373 old_dst.remote_ip,
3374 vxlan->cfg.dst_port,
3375 old_dst.remote_vni,
3376 old_dst.remote_vni,
3377 old_dst.remote_ifindex, 0);
3378
3379 if (!vxlan_addr_any(&dst->remote_ip)) {
3380 err = vxlan_fdb_create(vxlan, all_zeros_mac,
3381 &dst->remote_ip,
3382 NUD_REACHABLE | NUD_PERMANENT,
3383 NLM_F_CREATE | NLM_F_APPEND,
3384 vxlan->cfg.dst_port,
3385 dst->remote_vni,
3386 dst->remote_vni,
3387 dst->remote_ifindex,
3388 NTF_SELF);
3389 if (err) {
3390 spin_unlock_bh(&vxlan->hash_lock);
3391 return err;
3392 }
3393 }
3394 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003395 }
3396
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003397 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003398}
3399
stephen hemmingerd3428942012-10-01 12:32:35 +00003400static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3401{
3402 struct vxlan_dev *vxlan = netdev_priv(dev);
3403
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003404 vxlan_flush(vxlan, true);
3405
Tom Herbert58ce31c2015-08-19 17:07:33 -07003406 gro_cells_destroy(&vxlan->gro_cells);
stephen hemminger553675f2013-05-16 11:35:20 +00003407 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003408 unregister_netdevice_queue(dev, head);
3409}
3410
3411static size_t vxlan_get_size(const struct net_device *dev)
3412{
3413
3414 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003415 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003416 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003417 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003418 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
3419 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003420 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003421 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003422 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3423 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3424 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3425 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003426 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003427 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3428 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003429 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003430 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3431 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3432 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3433 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003434 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3435 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003436 0;
3437}
3438
3439static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3440{
3441 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003442 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003443 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003444 .low = htons(vxlan->cfg.port_min),
3445 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003446 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003447
Jiri Benc54bfd872016-02-16 21:58:58 +01003448 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003449 goto nla_put_failure;
3450
Cong Wange4c7ed42013-08-31 13:44:33 +08003451 if (!vxlan_addr_any(&dst->remote_ip)) {
3452 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003453 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3454 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003455 goto nla_put_failure;
3456#if IS_ENABLED(CONFIG_IPV6)
3457 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003458 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
3459 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003460 goto nla_put_failure;
3461#endif
3462 }
3463 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003464
Atzm Watanabec7995c42013-04-16 02:50:52 +00003465 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00003466 goto nla_put_failure;
3467
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003468 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
3469 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003470 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003471 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003472 goto nla_put_failure;
3473#if IS_ENABLED(CONFIG_IPV6)
3474 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003475 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003476 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003477 goto nla_put_failure;
3478#endif
3479 }
3480 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003481
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003482 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
3483 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003484 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003485 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003486 !!(vxlan->cfg.flags & VXLAN_F_LEARN)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003487 nla_put_u8(skb, IFLA_VXLAN_PROXY,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003488 !!(vxlan->cfg.flags & VXLAN_F_PROXY)) ||
3489 nla_put_u8(skb, IFLA_VXLAN_RSC,
3490 !!(vxlan->cfg.flags & VXLAN_F_RSC)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003491 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003492 !!(vxlan->cfg.flags & VXLAN_F_L2MISS)) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003493 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003494 !!(vxlan->cfg.flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003495 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003496 !!(vxlan->cfg.flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003497 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
3498 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
3499 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003500 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003501 !(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003502 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003503 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003504 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003505 !!(vxlan->cfg.flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08003506 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003507 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_TX)) ||
Tom Herbertdfd86452015-01-12 17:00:38 -08003508 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003509 !!(vxlan->cfg.flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003510 goto nla_put_failure;
3511
stephen hemminger05f47d62012-10-09 20:35:50 +00003512 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
3513 goto nla_put_failure;
3514
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003515 if (vxlan->cfg.flags & VXLAN_F_GBP &&
Thomas Graf35114942015-01-15 03:53:55 +01003516 nla_put_flag(skb, IFLA_VXLAN_GBP))
3517 goto nla_put_failure;
3518
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003519 if (vxlan->cfg.flags & VXLAN_F_GPE &&
Jiri Bence1e53142016-04-05 14:47:13 +02003520 nla_put_flag(skb, IFLA_VXLAN_GPE))
3521 goto nla_put_failure;
3522
Matthias Schifferdc5321d2017-06-19 10:03:56 +02003523 if (vxlan->cfg.flags & VXLAN_F_REMCSUM_NOPARTIAL &&
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003524 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
3525 goto nla_put_failure;
3526
stephen hemmingerd3428942012-10-01 12:32:35 +00003527 return 0;
3528
3529nla_put_failure:
3530 return -EMSGSIZE;
3531}
3532
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003533static struct net *vxlan_get_link_net(const struct net_device *dev)
3534{
3535 struct vxlan_dev *vxlan = netdev_priv(dev);
3536
3537 return vxlan->net;
3538}
3539
stephen hemmingerd3428942012-10-01 12:32:35 +00003540static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
3541 .kind = "vxlan",
3542 .maxtype = IFLA_VXLAN_MAX,
3543 .policy = vxlan_policy,
3544 .priv_size = sizeof(struct vxlan_dev),
3545 .setup = vxlan_setup,
3546 .validate = vxlan_validate,
3547 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003548 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00003549 .dellink = vxlan_dellink,
3550 .get_size = vxlan_get_size,
3551 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003552 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003553};
3554
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003555struct net_device *vxlan_dev_create(struct net *net, const char *name,
3556 u8 name_assign_type,
3557 struct vxlan_config *conf)
3558{
3559 struct nlattr *tb[IFLA_MAX + 1];
3560 struct net_device *dev;
3561 int err;
3562
3563 memset(&tb, 0, sizeof(tb));
3564
3565 dev = rtnl_create_link(net, name, name_assign_type,
3566 &vxlan_link_ops, tb);
3567 if (IS_ERR(dev))
3568 return dev;
3569
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003570 err = __vxlan_dev_create(net, dev, conf);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003571 if (err < 0) {
3572 free_netdev(dev);
3573 return ERR_PTR(err);
3574 }
3575
3576 err = rtnl_configure_link(dev, NULL);
3577 if (err < 0) {
3578 LIST_HEAD(list_kill);
3579
3580 vxlan_dellink(dev, &list_kill);
3581 unregister_netdevice_many(&list_kill);
3582 return ERR_PTR(err);
3583 }
3584
3585 return dev;
3586}
3587EXPORT_SYMBOL_GPL(vxlan_dev_create);
3588
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003589static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
3590 struct net_device *dev)
3591{
3592 struct vxlan_dev *vxlan, *next;
3593 LIST_HEAD(list_kill);
3594
3595 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3596 struct vxlan_rdst *dst = &vxlan->default_dst;
3597
3598 /* In case we created vxlan device with carrier
3599 * and we loose the carrier due to module unload
3600 * we also need to remove vxlan device. In other
3601 * cases, it's not necessary and remote_ifindex
3602 * is 0 here, so no matches.
3603 */
3604 if (dst->remote_ifindex == dev->ifindex)
3605 vxlan_dellink(vxlan->dev, &list_kill);
3606 }
3607
3608 unregister_netdevice_many(&list_kill);
3609}
3610
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003611static int vxlan_netdevice_event(struct notifier_block *unused,
3612 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003613{
3614 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003615 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003616
Daniel Borkmann783c1462014-01-22 21:07:53 +01003617 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003618 vxlan_handle_lowerdev_unregister(vn, dev);
Alexander Duyck7c46a642016-06-16 12:21:00 -07003619 else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO)
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003620 vxlan_push_rx_ports(dev);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003621
3622 return NOTIFY_DONE;
3623}
3624
3625static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003626 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003627};
3628
stephen hemmingerd3428942012-10-01 12:32:35 +00003629static __net_init int vxlan_init_net(struct net *net)
3630{
3631 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00003632 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00003633
stephen hemminger553675f2013-05-16 11:35:20 +00003634 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07003635 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00003636
stephen hemminger553675f2013-05-16 11:35:20 +00003637 for (h = 0; h < PORT_HASH_SIZE; ++h)
3638 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00003639
3640 return 0;
3641}
3642
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003643static void __net_exit vxlan_exit_net(struct net *net)
3644{
3645 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3646 struct vxlan_dev *vxlan, *next;
3647 struct net_device *dev, *aux;
3648 LIST_HEAD(list);
3649
3650 rtnl_lock();
3651 for_each_netdev_safe(net, dev, aux)
3652 if (dev->rtnl_link_ops == &vxlan_link_ops)
3653 unregister_netdevice_queue(dev, &list);
3654
3655 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3656 /* If vxlan->dev is in the same netns, it has already been added
3657 * to the list by the previous loop.
3658 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07003659 if (!net_eq(dev_net(vxlan->dev), net)) {
3660 gro_cells_destroy(&vxlan->gro_cells);
John W. Linville13c3ed62015-05-18 13:51:24 -04003661 unregister_netdevice_queue(vxlan->dev, &list);
Tom Herbert58ce31c2015-08-19 17:07:33 -07003662 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003663 }
3664
3665 unregister_netdevice_many(&list);
3666 rtnl_unlock();
3667}
3668
stephen hemmingerd3428942012-10-01 12:32:35 +00003669static struct pernet_operations vxlan_net_ops = {
3670 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003671 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003672 .id = &vxlan_net_id,
3673 .size = sizeof(struct vxlan_net),
3674};
3675
3676static int __init vxlan_init_module(void)
3677{
3678 int rc;
3679
3680 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3681
Daniel Borkmann783c1462014-01-22 21:07:53 +01003682 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003683 if (rc)
3684 goto out1;
3685
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003686 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003687 if (rc)
3688 goto out2;
3689
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003690 rc = rtnl_link_register(&vxlan_link_ops);
3691 if (rc)
3692 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003693
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003694 return 0;
3695out3:
3696 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003697out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003698 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003699out1:
3700 return rc;
3701}
Cong Wang7332a132013-05-27 22:35:53 +00003702late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003703
3704static void __exit vxlan_cleanup_module(void)
3705{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003706 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003707 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003708 unregister_pernet_subsys(&vxlan_net_ops);
3709 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003710}
3711module_exit(vxlan_cleanup_module);
3712
3713MODULE_LICENSE("GPL");
3714MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003715MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003716MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003717MODULE_ALIAS_RTNL_LINK("vxlan");