blob: 5c1d69e37870dff0286ec1cc35d2802d6e6318b4 [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
stephen hemminger553675f2013-05-16 11:35:20 +000062/* per-network namespace private data for this module */
63struct vxlan_net {
64 struct list_head vxlan_list;
65 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070066 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000067};
68
stephen hemmingerd3428942012-10-01 12:32:35 +000069/* Forwarding table entry */
70struct vxlan_fdb {
71 struct hlist_node hlist; /* linked list of entries */
72 struct rcu_head rcu;
73 unsigned long updated; /* jiffies */
74 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070075 struct list_head remotes;
Sowmini Varadhan7177a3b2015-07-20 09:54:50 +020076 u8 eth_addr[ETH_ALEN];
stephen hemmingerd3428942012-10-01 12:32:35 +000077 u16 state; /* see ndm_state */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -080078 __be32 vni;
David Stevensae884082013-04-19 00:36:26 +000079 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +000080};
81
stephen hemmingerd3428942012-10-01 12:32:35 +000082/* salt for hash table */
83static u32 vxlan_salt __read_mostly;
84
Thomas Grafee122c72015-07-21 10:43:58 +020085static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
86{
Thomas Grafe7030872015-07-21 10:44:01 +020087 return vs->flags & VXLAN_F_COLLECT_METADATA ||
88 ip_tunnel_collect_metadata();
Thomas Grafee122c72015-07-21 10:43:58 +020089}
90
Cong Wange4c7ed42013-08-31 13:44:33 +080091#if IS_ENABLED(CONFIG_IPV6)
92static inline
93bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
94{
Jiri Bencf0ef3122015-03-29 16:17:37 +020095 if (a->sa.sa_family != b->sa.sa_family)
96 return false;
97 if (a->sa.sa_family == AF_INET6)
98 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
99 else
100 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800101}
102
103static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
104{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200105 if (ipa->sa.sa_family == AF_INET6)
106 return ipv6_addr_any(&ipa->sin6.sin6_addr);
107 else
108 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800109}
110
111static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
112{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200113 if (ipa->sa.sa_family == AF_INET6)
114 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
115 else
116 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800117}
118
119static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
120{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200121 if (nla_len(nla) >= sizeof(struct in6_addr)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200122 ip->sin6.sin6_addr = nla_get_in6_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200123 ip->sa.sa_family = AF_INET6;
124 return 0;
125 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200126 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200127 ip->sa.sa_family = AF_INET;
128 return 0;
129 } else {
130 return -EAFNOSUPPORT;
131 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800132}
133
134static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200135 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800136{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200137 if (ip->sa.sa_family == AF_INET6)
Jiri Benc930345e2015-03-29 16:59:25 +0200138 return nla_put_in6_addr(skb, attr, &ip->sin6.sin6_addr);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200139 else
Jiri Benc930345e2015-03-29 16:59:25 +0200140 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800141}
142
143#else /* !CONFIG_IPV6 */
144
145static inline
146bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
147{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200148 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800149}
150
151static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
152{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200153 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800154}
155
156static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
157{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200158 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800159}
160
161static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
162{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200163 if (nla_len(nla) >= sizeof(struct in6_addr)) {
164 return -EAFNOSUPPORT;
165 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200166 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200167 ip->sa.sa_family = AF_INET;
168 return 0;
169 } else {
170 return -EAFNOSUPPORT;
171 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800172}
173
174static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200175 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800176{
Jiri Benc930345e2015-03-29 16:59:25 +0200177 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800178}
179#endif
180
stephen hemminger553675f2013-05-16 11:35:20 +0000181/* Virtual Network hash table head */
Jiri Benc54bfd872016-02-16 21:58:58 +0100182static inline struct hlist_head *vni_head(struct vxlan_sock *vs, __be32 vni)
stephen hemminger553675f2013-05-16 11:35:20 +0000183{
Jiri Benc54bfd872016-02-16 21:58:58 +0100184 return &vs->vni_list[hash_32((__force u32)vni, VNI_HASH_BITS)];
stephen hemminger553675f2013-05-16 11:35:20 +0000185}
186
187/* Socket hash table head */
188static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000189{
190 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
191
stephen hemminger553675f2013-05-16 11:35:20 +0000192 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
193}
194
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700195/* First remote destination for a forwarding entry.
196 * Guaranteed to be non-NULL because remotes are never deleted.
197 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700198static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700199{
stephen hemminger5ca54612013-08-04 17:17:39 -0700200 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
201}
202
203static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
204{
205 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700206}
207
Thomas Grafac5132d2015-01-15 03:53:56 +0100208/* Find VXLAN socket based on network namespace, address family and UDP port
209 * and enabled unshareable flags.
210 */
211static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
212 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000213{
214 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800215
216 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000217
218 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200219 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Jiri Benc705cc622015-08-20 13:56:28 +0200220 vxlan_get_sk_family(vs) == family &&
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800221 vs->flags == flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000222 return vs;
223 }
224 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000225}
226
Jiri Benc54bfd872016-02-16 21:58:58 +0100227static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000228{
229 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000230
Jiri Bencb9167b22016-02-16 21:59:03 +0100231 /* For flow based devices, map all packets to VNI 0 */
232 if (vs->flags & VXLAN_F_COLLECT_METADATA)
233 vni = 0;
234
Jiri Benc54bfd872016-02-16 21:58:58 +0100235 hlist_for_each_entry_rcu(vxlan, vni_head(vs, vni), hlist) {
236 if (vxlan->default_dst.remote_vni == vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000237 return vxlan;
238 }
239
240 return NULL;
241}
242
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700243/* Look up VNI in a per net namespace table */
Jiri Benc54bfd872016-02-16 21:58:58 +0100244static struct vxlan_dev *vxlan_find_vni(struct net *net, __be32 vni,
Thomas Grafac5132d2015-01-15 03:53:56 +0100245 sa_family_t family, __be16 port,
246 u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700247{
248 struct vxlan_sock *vs;
249
Thomas Grafac5132d2015-01-15 03:53:56 +0100250 vs = vxlan_find_sock(net, family, port, flags);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700251 if (!vs)
252 return NULL;
253
Jiri Benc54bfd872016-02-16 21:58:58 +0100254 return vxlan_vs_find_vni(vs, vni);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700255}
256
stephen hemmingerd3428942012-10-01 12:32:35 +0000257/* Fill in neighbour message in skbuff. */
258static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700259 const struct vxlan_fdb *fdb,
260 u32 portid, u32 seq, int type, unsigned int flags,
261 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000262{
263 unsigned long now = jiffies;
264 struct nda_cacheinfo ci;
265 struct nlmsghdr *nlh;
266 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000267 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000268
269 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
270 if (nlh == NULL)
271 return -EMSGSIZE;
272
273 ndm = nlmsg_data(nlh);
274 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000275
276 send_eth = send_ip = true;
277
278 if (type == RTM_GETNEIGH) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800279 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000280 send_eth = !is_zero_ether_addr(fdb->eth_addr);
Vincent Bernat8f48ba72017-03-10 16:30:24 +0100281 ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET;
David Stevense4f67ad2012-11-20 02:50:14 +0000282 } else
283 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000284 ndm->ndm_state = fdb->state;
285 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000286 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800287 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000288
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100289 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100290 nla_put_s32(skb, NDA_LINK_NETNSID,
WANG Cong38f507f2016-09-01 21:53:44 -0700291 peernet2id(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100292 goto nla_put_failure;
293
David Stevense4f67ad2012-11-20 02:50:14 +0000294 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000295 goto nla_put_failure;
296
Cong Wange4c7ed42013-08-31 13:44:33 +0800297 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000298 goto nla_put_failure;
299
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200300 if (rdst->remote_port && rdst->remote_port != vxlan->cfg.dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000301 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
302 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000303 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Jiri Benc54bfd872016-02-16 21:58:58 +0100304 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
David Stevens66817122013-03-15 04:35:51 +0000305 goto nla_put_failure;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800306 if ((vxlan->flags & VXLAN_F_COLLECT_METADATA) && fdb->vni &&
307 nla_put_u32(skb, NDA_SRC_VNI,
308 be32_to_cpu(fdb->vni)))
309 goto nla_put_failure;
David Stevens66817122013-03-15 04:35:51 +0000310 if (rdst->remote_ifindex &&
311 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000312 goto nla_put_failure;
313
314 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
315 ci.ndm_confirmed = 0;
316 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
317 ci.ndm_refcnt = 0;
318
319 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
320 goto nla_put_failure;
321
Johannes Berg053c0952015-01-16 22:09:00 +0100322 nlmsg_end(skb, nlh);
323 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000324
325nla_put_failure:
326 nlmsg_cancel(skb, nlh);
327 return -EMSGSIZE;
328}
329
330static inline size_t vxlan_nlmsg_size(void)
331{
332 return NLMSG_ALIGN(sizeof(struct ndmsg))
333 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800334 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000335 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000336 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
337 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100338 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000339 + nla_total_size(sizeof(struct nda_cacheinfo));
340}
341
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200342static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
343 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000344{
345 struct net *net = dev_net(vxlan->dev);
346 struct sk_buff *skb;
347 int err = -ENOBUFS;
348
349 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
350 if (skb == NULL)
351 goto errout;
352
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200353 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000354 if (err < 0) {
355 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
356 WARN_ON(err == -EMSGSIZE);
357 kfree_skb(skb);
358 goto errout;
359 }
360
361 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
362 return;
363errout:
364 if (err < 0)
365 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
366}
367
Cong Wange4c7ed42013-08-31 13:44:33 +0800368static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000369{
370 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700371 struct vxlan_fdb f = {
372 .state = NUD_STALE,
373 };
374 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800375 .remote_ip = *ipa, /* goes to NDA_DST */
Jiri Benc54bfd872016-02-16 21:58:58 +0100376 .remote_vni = cpu_to_be32(VXLAN_N_VID),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700377 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700378
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200379 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000380}
381
382static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
383{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700384 struct vxlan_fdb f = {
385 .state = NUD_STALE,
386 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200387 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000388
David Stevense4f67ad2012-11-20 02:50:14 +0000389 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
390
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200391 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000392}
393
stephen hemmingerd3428942012-10-01 12:32:35 +0000394/* Hash Ethernet address */
395static u32 eth_hash(const unsigned char *addr)
396{
397 u64 value = get_unaligned((u64 *)addr);
398
399 /* only want 6 bytes */
400#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000401 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000402#else
403 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000404#endif
405 return hash_64(value, FDB_HASH_BITS);
406}
407
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800408static u32 eth_vni_hash(const unsigned char *addr, __be32 vni)
409{
410 /* use 1 byte of OUI and 3 bytes of NIC */
411 u32 key = get_unaligned((u32 *)(addr + 2));
412
413 return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1);
414}
415
stephen hemmingerd3428942012-10-01 12:32:35 +0000416/* Hash chain to use given mac address */
417static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800418 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000419{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800420 if (vxlan->flags & VXLAN_F_COLLECT_METADATA)
421 return &vxlan->fdb_head[eth_vni_hash(mac, vni)];
422 else
423 return &vxlan->fdb_head[eth_hash(mac)];
stephen hemmingerd3428942012-10-01 12:32:35 +0000424}
425
426/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000427static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800428 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000429{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800430 struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000431 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000432
Sasha Levinb67bfe02013-02-27 17:06:00 -0800433 hlist_for_each_entry_rcu(f, head, hlist) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800434 if (ether_addr_equal(mac, f->eth_addr)) {
435 if (vxlan->flags & VXLAN_F_COLLECT_METADATA) {
436 if (vni == f->vni)
437 return f;
438 } else {
439 return f;
440 }
441 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000442 }
443
444 return NULL;
445}
446
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000447static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800448 const u8 *mac, __be32 vni)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000449{
450 struct vxlan_fdb *f;
451
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800452 f = __vxlan_find_mac(vxlan, mac, vni);
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000453 if (f)
454 f->used = jiffies;
455
456 return f;
457}
458
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300459/* caller should hold vxlan->hash_lock */
460static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800461 union vxlan_addr *ip, __be16 port,
Jiri Benc54bfd872016-02-16 21:58:58 +0100462 __be32 vni, __u32 ifindex)
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300463{
464 struct vxlan_rdst *rd;
465
466 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800467 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300468 rd->remote_port == port &&
469 rd->remote_vni == vni &&
470 rd->remote_ifindex == ifindex)
471 return rd;
472 }
473
474 return NULL;
475}
476
Thomas Richter906dc182013-07-19 17:20:07 +0200477/* Replace destination of unicast mac */
478static int vxlan_fdb_replace(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100479 union vxlan_addr *ip, __be16 port, __be32 vni,
480 __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200481{
482 struct vxlan_rdst *rd;
483
484 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
485 if (rd)
486 return 0;
487
488 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
489 if (!rd)
490 return 0;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100491
492 dst_cache_reset(&rd->dst_cache);
Cong Wange4c7ed42013-08-31 13:44:33 +0800493 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200494 rd->remote_port = port;
495 rd->remote_vni = vni;
496 rd->remote_ifindex = ifindex;
497 return 1;
498}
499
David Stevens66817122013-03-15 04:35:51 +0000500/* Add/update destinations for multicast */
501static int vxlan_fdb_append(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100502 union vxlan_addr *ip, __be16 port, __be32 vni,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200503 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000504{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700505 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000506
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300507 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
508 if (rd)
509 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700510
David Stevens66817122013-03-15 04:35:51 +0000511 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
512 if (rd == NULL)
513 return -ENOBUFS;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100514
515 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
516 kfree(rd);
517 return -ENOBUFS;
518 }
519
Cong Wange4c7ed42013-08-31 13:44:33 +0800520 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000521 rd->remote_port = port;
522 rd->remote_vni = vni;
523 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700524
525 list_add_tail_rcu(&rd->list, &f->remotes);
526
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200527 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000528 return 1;
529}
530
Tom Herbertdfd86452015-01-12 17:00:38 -0800531static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
532 unsigned int off,
533 struct vxlanhdr *vh, size_t hdrlen,
Jiri Benc54bfd872016-02-16 21:58:58 +0100534 __be32 vni_field,
535 struct gro_remcsum *grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800536 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800537{
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700538 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -0800539
540 if (skb->remcsum_offload)
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700541 return vh;
Tom Herbertdfd86452015-01-12 17:00:38 -0800542
543 if (!NAPI_GRO_CB(skb)->csum_valid)
544 return NULL;
545
Jiri Benc54bfd872016-02-16 21:58:58 +0100546 start = vxlan_rco_start(vni_field);
547 offset = start + vxlan_rco_offset(vni_field);
Tom Herbertdfd86452015-01-12 17:00:38 -0800548
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700549 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
550 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800551
552 skb->remcsum_offload = 1;
553
554 return vh;
555}
556
Tom Herbert5602c482016-04-05 08:22:53 -0700557static struct sk_buff **vxlan_gro_receive(struct sock *sk,
558 struct sk_buff **head,
559 struct sk_buff *skb)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200560{
561 struct sk_buff *p, **pp = NULL;
562 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800563 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200564 int flush = 1;
Tom Herbert5602c482016-04-05 08:22:53 -0700565 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
Jiri Benc54bfd872016-02-16 21:58:58 +0100566 __be32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800567 struct gro_remcsum grc;
568
569 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200570
571 off_vx = skb_gro_offset(skb);
572 hlen = off_vx + sizeof(*vh);
573 vh = skb_gro_header_fast(skb, off_vx);
574 if (skb_gro_header_hard(skb, hlen)) {
575 vh = skb_gro_header_slow(skb, hlen, off_vx);
576 if (unlikely(!vh))
577 goto out;
578 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200579
Tom Herbertdfd86452015-01-12 17:00:38 -0800580 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
581
Jiri Benc54bfd872016-02-16 21:58:58 +0100582 flags = vh->vx_flags;
Tom Herbertdfd86452015-01-12 17:00:38 -0800583
584 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
585 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Jiri Benc54bfd872016-02-16 21:58:58 +0100586 vh->vx_vni, &grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800587 !!(vs->flags &
588 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800589
590 if (!vh)
591 goto out;
592 }
593
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700594 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
595
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200596 for (p = *head; p; p = p->next) {
597 if (!NAPI_GRO_CB(p)->same_flow)
598 continue;
599
600 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100601 if (vh->vx_flags != vh2->vx_flags ||
602 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200603 NAPI_GRO_CB(p)->same_flow = 0;
604 continue;
605 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200606 }
607
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200608 pp = call_gro_receive(eth_gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800609 flush = 0;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200610
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200611out:
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800612 skb_gro_remcsum_cleanup(skb, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200613 NAPI_GRO_CB(skb)->flush |= flush;
614
615 return pp;
616}
617
Tom Herbert5602c482016-04-05 08:22:53 -0700618static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200619{
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700620 /* Sets 'skb->inner_mac_header' since we are always called with
621 * 'skb->encapsulation' set.
622 */
Jesse Gross9b174d82014-12-30 19:10:15 -0800623 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200624}
625
stephen hemmingerd3428942012-10-01 12:32:35 +0000626/* Add new entry to forwarding table -- assumes lock held */
627static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800628 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000629 __u16 state, __u16 flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800630 __be16 port, __be32 src_vni, __be32 vni,
631 __u32 ifindex, __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000632{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200633 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000634 struct vxlan_fdb *f;
635 int notify = 0;
Haishuang Yan17b46362016-11-29 09:59:36 +0800636 int rc;
stephen hemmingerd3428942012-10-01 12:32:35 +0000637
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800638 f = __vxlan_find_mac(vxlan, mac, src_vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000639 if (f) {
640 if (flags & NLM_F_EXCL) {
641 netdev_dbg(vxlan->dev,
642 "lost race to create %pM\n", mac);
643 return -EEXIST;
644 }
645 if (f->state != state) {
646 f->state = state;
647 f->updated = jiffies;
648 notify = 1;
649 }
David Stevensae884082013-04-19 00:36:26 +0000650 if (f->flags != ndm_flags) {
651 f->flags = ndm_flags;
652 f->updated = jiffies;
653 notify = 1;
654 }
Thomas Richter906dc182013-07-19 17:20:07 +0200655 if ((flags & NLM_F_REPLACE)) {
656 /* Only change unicasts */
657 if (!(is_multicast_ether_addr(f->eth_addr) ||
658 is_zero_ether_addr(f->eth_addr))) {
Li RongQing60840422015-04-22 15:49:10 +0800659 notify |= vxlan_fdb_replace(f, ip, port, vni,
Thomas Richter906dc182013-07-19 17:20:07 +0200660 ifindex);
Thomas Richter906dc182013-07-19 17:20:07 +0200661 } else
662 return -EOPNOTSUPP;
663 }
David Stevens66817122013-03-15 04:35:51 +0000664 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300665 (is_multicast_ether_addr(f->eth_addr) ||
666 is_zero_ether_addr(f->eth_addr))) {
Haishuang Yan17b46362016-11-29 09:59:36 +0800667 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
David Stevens66817122013-03-15 04:35:51 +0000668
669 if (rc < 0)
670 return rc;
671 notify |= rc;
672 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000673 } else {
674 if (!(flags & NLM_F_CREATE))
675 return -ENOENT;
676
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200677 if (vxlan->cfg.addrmax &&
678 vxlan->addrcnt >= vxlan->cfg.addrmax)
stephen hemmingerd3428942012-10-01 12:32:35 +0000679 return -ENOSPC;
680
Thomas Richter906dc182013-07-19 17:20:07 +0200681 /* Disallow replace to add a multicast entry */
682 if ((flags & NLM_F_REPLACE) &&
683 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
684 return -EOPNOTSUPP;
685
Cong Wange4c7ed42013-08-31 13:44:33 +0800686 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000687 f = kmalloc(sizeof(*f), GFP_ATOMIC);
688 if (!f)
689 return -ENOMEM;
690
691 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000692 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000693 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000694 f->updated = f->used = jiffies;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800695 f->vni = src_vni;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700696 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000697 memcpy(f->eth_addr, mac, ETH_ALEN);
698
Haishuang Yan17b46362016-11-29 09:59:36 +0800699 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
700 if (rc < 0) {
701 kfree(f);
702 return rc;
703 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700704
stephen hemmingerd3428942012-10-01 12:32:35 +0000705 ++vxlan->addrcnt;
706 hlist_add_head_rcu(&f->hlist,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800707 vxlan_fdb_head(vxlan, mac, src_vni));
stephen hemmingerd3428942012-10-01 12:32:35 +0000708 }
709
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200710 if (notify) {
711 if (rd == NULL)
712 rd = first_remote_rtnl(f);
713 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
714 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000715
716 return 0;
717}
718
Wei Yongjun6706c822013-04-11 19:00:35 +0000719static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000720{
721 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700722 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000723
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100724 list_for_each_entry_safe(rd, nd, &f->remotes, list) {
725 dst_cache_destroy(&rd->dst_cache);
David Stevens66817122013-03-15 04:35:51 +0000726 kfree(rd);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100727 }
David Stevens66817122013-03-15 04:35:51 +0000728 kfree(f);
729}
730
stephen hemmingerd3428942012-10-01 12:32:35 +0000731static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
732{
733 netdev_dbg(vxlan->dev,
734 "delete %pM\n", f->eth_addr);
735
736 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200737 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000738
739 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000740 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000741}
742
Lance Richardson35cf2842017-05-29 13:25:57 -0400743static void vxlan_dst_free(struct rcu_head *head)
744{
745 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
746
747 dst_cache_destroy(&rd->dst_cache);
748 kfree(rd);
749}
750
751static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
752 struct vxlan_rdst *rd)
753{
754 list_del_rcu(&rd->list);
755 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
756 call_rcu(&rd->rcu, vxlan_dst_free);
757}
758
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300759static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800760 union vxlan_addr *ip, __be16 *port, __be32 *src_vni,
761 __be32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300762{
763 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800764 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300765
766 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800767 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
768 if (err)
769 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300770 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800771 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
772 if (remote->sa.sa_family == AF_INET) {
773 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
774 ip->sa.sa_family = AF_INET;
775#if IS_ENABLED(CONFIG_IPV6)
776 } else {
777 ip->sin6.sin6_addr = in6addr_any;
778 ip->sa.sa_family = AF_INET6;
779#endif
780 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300781 }
782
783 if (tb[NDA_PORT]) {
784 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
785 return -EINVAL;
786 *port = nla_get_be16(tb[NDA_PORT]);
787 } else {
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200788 *port = vxlan->cfg.dst_port;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300789 }
790
791 if (tb[NDA_VNI]) {
792 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
793 return -EINVAL;
Jiri Benc54bfd872016-02-16 21:58:58 +0100794 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300795 } else {
796 *vni = vxlan->default_dst.remote_vni;
797 }
798
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800799 if (tb[NDA_SRC_VNI]) {
800 if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32))
801 return -EINVAL;
802 *src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI]));
803 } else {
804 *src_vni = vxlan->default_dst.remote_vni;
805 }
806
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300807 if (tb[NDA_IFINDEX]) {
808 struct net_device *tdev;
809
810 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
811 return -EINVAL;
812 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800813 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300814 if (!tdev)
815 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300816 } else {
817 *ifindex = 0;
818 }
819
820 return 0;
821}
822
stephen hemmingerd3428942012-10-01 12:32:35 +0000823/* Add static entry (via netlink) */
824static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
825 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100826 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000827{
828 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300829 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800830 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000831 __be16 port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800832 __be32 src_vni, vni;
Jiri Benc54bfd872016-02-16 21:58:58 +0100833 u32 ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000834 int err;
835
836 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
837 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
838 ndm->ndm_state);
839 return -EINVAL;
840 }
841
842 if (tb[NDA_DST] == NULL)
843 return -EINVAL;
844
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800845 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300846 if (err)
847 return err;
David Stevens66817122013-03-15 04:35:51 +0000848
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300849 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
850 return -EAFNOSUPPORT;
851
stephen hemmingerd3428942012-10-01 12:32:35 +0000852 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800853 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800854 port, src_vni, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000855 spin_unlock_bh(&vxlan->hash_lock);
856
857 return err;
858}
859
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800860static int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
861 const unsigned char *addr, union vxlan_addr ip,
862 __be16 port, __be32 src_vni, u32 vni, u32 ifindex,
863 u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000864{
stephen hemmingerd3428942012-10-01 12:32:35 +0000865 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300866 struct vxlan_rdst *rd = NULL;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800867 int err = -ENOENT;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300868
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800869 f = vxlan_find_mac(vxlan, addr, src_vni);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300870 if (!f)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800871 return err;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300872
Cong Wange4c7ed42013-08-31 13:44:33 +0800873 if (!vxlan_addr_any(&ip)) {
874 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300875 if (!rd)
876 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000877 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300878
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300879 /* remove a destination if it's not the only one on the list,
880 * otherwise destroy the fdb entry
881 */
882 if (rd && !list_is_singular(&f->remotes)) {
Lance Richardson35cf2842017-05-29 13:25:57 -0400883 vxlan_fdb_dst_destroy(vxlan, f, rd);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300884 goto out;
885 }
886
887 vxlan_fdb_destroy(vxlan, f);
888
889out:
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800890 return 0;
891}
892
893/* Delete entry (via netlink) */
894static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
895 struct net_device *dev,
896 const unsigned char *addr, u16 vid)
897{
898 struct vxlan_dev *vxlan = netdev_priv(dev);
899 union vxlan_addr ip;
900 __be32 src_vni, vni;
901 __be16 port;
902 u32 ifindex;
903 int err;
904
905 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
906 if (err)
907 return err;
908
909 spin_lock_bh(&vxlan->hash_lock);
910 err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex,
911 vid);
stephen hemmingerd3428942012-10-01 12:32:35 +0000912 spin_unlock_bh(&vxlan->hash_lock);
913
914 return err;
915}
916
917/* Dump forwarding table */
918static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400919 struct net_device *dev,
Roopa Prabhud2976532016-08-30 21:56:45 -0700920 struct net_device *filter_dev, int *idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000921{
922 struct vxlan_dev *vxlan = netdev_priv(dev);
923 unsigned int h;
Roopa Prabhud2976532016-08-30 21:56:45 -0700924 int err = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000925
926 for (h = 0; h < FDB_HASH_SIZE; ++h) {
927 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000928
Sasha Levinb67bfe02013-02-27 17:06:00 -0800929 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000930 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000931
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700932 list_for_each_entry_rcu(rd, &f->remotes, list) {
Roopa Prabhud2976532016-08-30 21:56:45 -0700933 if (*idx < cb->args[2])
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900934 goto skip;
935
David Stevens66817122013-03-15 04:35:51 +0000936 err = vxlan_fdb_info(skb, vxlan, f,
937 NETLINK_CB(cb->skb).portid,
938 cb->nlh->nlmsg_seq,
939 RTM_NEWNEIGH,
940 NLM_F_MULTI, rd);
Roopa Prabhud2976532016-08-30 21:56:45 -0700941 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700942 goto out;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700943skip:
Roopa Prabhud2976532016-08-30 21:56:45 -0700944 *idx += 1;
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900945 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000946 }
947 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700948out:
Roopa Prabhud2976532016-08-30 21:56:45 -0700949 return err;
stephen hemmingerd3428942012-10-01 12:32:35 +0000950}
951
952/* Watch incoming packets to learn mapping between Ethernet address
953 * and Tunnel endpoint.
Simon Hormanc4b49512015-04-02 11:17:58 +0900954 * Return true if packet is bogus and should be dropped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000955 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700956static bool vxlan_snoop(struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800957 union vxlan_addr *src_ip, const u8 *src_mac,
958 __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000959{
960 struct vxlan_dev *vxlan = netdev_priv(dev);
961 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000962
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800963 f = vxlan_find_mac(vxlan, src_mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000964 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700965 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700966
Cong Wange4c7ed42013-08-31 13:44:33 +0800967 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700968 return false;
969
970 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700971 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700972 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000973
974 if (net_ratelimit())
975 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800976 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +0100977 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +0000978
Cong Wange4c7ed42013-08-31 13:44:33 +0800979 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000980 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200981 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000982 } else {
983 /* learned new entry */
984 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700985
986 /* close off race between vxlan_flush and incoming packets */
987 if (netif_running(dev))
988 vxlan_fdb_create(vxlan, src_mac, src_ip,
989 NUD_REACHABLE,
990 NLM_F_EXCL|NLM_F_CREATE,
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200991 vxlan->cfg.dst_port,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800992 vni,
stephen hemminger3bf74b12013-06-17 12:09:57 -0700993 vxlan->default_dst.remote_vni,
994 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000995 spin_unlock(&vxlan->hash_lock);
996 }
stephen hemminger26a41ae62013-06-17 12:09:58 -0700997
998 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +0000999}
1000
stephen hemmingerd3428942012-10-01 12:32:35 +00001001/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001002static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001003{
stephen hemminger553675f2013-05-16 11:35:20 +00001004 struct vxlan_dev *vxlan;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001005 struct vxlan_sock *sock4;
Arnd Bergmann4053ab12016-11-07 22:09:07 +01001006#if IS_ENABLED(CONFIG_IPV6)
1007 struct vxlan_sock *sock6;
1008#endif
Jiri Bencb1be00a2015-09-24 13:50:02 +02001009 unsigned short family = dev->default_dst.remote_ip.sa.sa_family;
stephen hemmingerd3428942012-10-01 12:32:35 +00001010
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001011 sock4 = rtnl_dereference(dev->vn4_sock);
1012
Gao feng95ab0992013-12-10 16:37:33 +08001013 /* The vxlan_sock is only used by dev, leaving group has
1014 * no effect on other vxlan devices.
1015 */
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001016 if (family == AF_INET && sock4 && atomic_read(&sock4->refcnt) == 1)
Gao feng95ab0992013-12-10 16:37:33 +08001017 return false;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001018#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001019 sock6 = rtnl_dereference(dev->vn6_sock);
1020 if (family == AF_INET6 && sock6 && atomic_read(&sock6->refcnt) == 1)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001021 return false;
1022#endif
Gao feng95ab0992013-12-10 16:37:33 +08001023
stephen hemminger553675f2013-05-16 11:35:20 +00001024 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001025 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001026 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001027
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001028 if (family == AF_INET &&
1029 rtnl_dereference(vxlan->vn4_sock) != sock4)
Gao feng95ab0992013-12-10 16:37:33 +08001030 continue;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001031#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001032 if (family == AF_INET6 &&
1033 rtnl_dereference(vxlan->vn6_sock) != sock6)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001034 continue;
1035#endif
Gao feng95ab0992013-12-10 16:37:33 +08001036
1037 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1038 &dev->default_dst.remote_ip))
1039 continue;
1040
1041 if (vxlan->default_dst.remote_ifindex !=
1042 dev->default_dst.remote_ifindex)
1043 continue;
1044
1045 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001046 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001047
1048 return false;
1049}
1050
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001051static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001052{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001053 struct vxlan_net *vn;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001054
Jiri Bencb1be00a2015-09-24 13:50:02 +02001055 if (!vs)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001056 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001057 if (!atomic_dec_and_test(&vs->refcnt))
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001058 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001059
Jiri Bencb1be00a2015-09-24 13:50:02 +02001060 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001061 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001062 hlist_del_rcu(&vs->hlist);
Alexander Duycke7b3db52016-06-16 12:20:52 -07001063 udp_tunnel_notify_del_rx_port(vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07001064 (vs->flags & VXLAN_F_GPE) ?
1065 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07001066 UDP_TUNNEL_TYPE_VXLAN);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001067 spin_unlock(&vn->sock_lock);
1068
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001069 return true;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001070}
1071
Jiri Bencb1be00a2015-09-24 13:50:02 +02001072static void vxlan_sock_release(struct vxlan_dev *vxlan)
1073{
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001074 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001075#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001076 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1077
1078 rcu_assign_pointer(vxlan->vn6_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001079#endif
1080
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001081 rcu_assign_pointer(vxlan->vn4_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001082 synchronize_net();
1083
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001084 if (__vxlan_sock_release_prep(sock4)) {
1085 udp_tunnel_sock_release(sock4->sock);
1086 kfree(sock4);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001087 }
1088
1089#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001090 if (__vxlan_sock_release_prep(sock6)) {
1091 udp_tunnel_sock_release(sock6->sock);
1092 kfree(sock6);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001093 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02001094#endif
1095}
1096
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001097/* Update multicast group membership when first VNI on
Simon Hormanc4b49512015-04-02 11:17:58 +09001098 * multicast address is brought up
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001099 */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001100static int vxlan_igmp_join(struct vxlan_dev *vxlan)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001101{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001102 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001103 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1104 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001105 int ret = -EINVAL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001106
Cong Wange4c7ed42013-08-31 13:44:33 +08001107 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001108 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001109 struct ip_mreqn mreq = {
1110 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1111 .imr_ifindex = ifindex,
1112 };
1113
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001114 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001115 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001116 ret = ip_mc_join_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001117 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001118#if IS_ENABLED(CONFIG_IPV6)
1119 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001120 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1121
1122 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001123 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001124 ret = ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1125 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001126 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001127#endif
1128 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001129
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001130 return ret;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001131}
1132
1133/* Inverse of vxlan_igmp_join when last VNI is brought down */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001134static int vxlan_igmp_leave(struct vxlan_dev *vxlan)
stephen hemminger3fc2de22013-07-18 08:40:15 -07001135{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001136 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001137 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1138 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001139 int ret = -EINVAL;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001140
Cong Wange4c7ed42013-08-31 13:44:33 +08001141 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001142 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001143 struct ip_mreqn mreq = {
1144 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1145 .imr_ifindex = ifindex,
1146 };
1147
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001148 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001149 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001150 ret = ip_mc_leave_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001151 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001152#if IS_ENABLED(CONFIG_IPV6)
1153 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001154 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1155
1156 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001157 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001158 ret = ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1159 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001160 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001161#endif
1162 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001163
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001164 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00001165}
1166
Jiri Bencf14eceb2016-02-16 21:59:01 +01001167static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1168 struct sk_buff *skb, u32 vxflags)
Tom Herbertdfd86452015-01-12 17:00:38 -08001169{
Jiri Benc7d34fa72016-03-21 17:50:05 +01001170 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -08001171
Jiri Bencf14eceb2016-02-16 21:59:01 +01001172 if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1173 goto out;
Tom Herbertb7fe10e2015-08-19 17:07:32 -07001174
Jiri Bencf14eceb2016-02-16 21:59:01 +01001175 start = vxlan_rco_start(unparsed->vx_vni);
1176 offset = start + vxlan_rco_offset(unparsed->vx_vni);
Tom Herbertdfd86452015-01-12 17:00:38 -08001177
Jiri Benc7d34fa72016-03-21 17:50:05 +01001178 if (!pskb_may_pull(skb, offset + sizeof(u16)))
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001179 return false;
Tom Herbertdfd86452015-01-12 17:00:38 -08001180
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001181 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1182 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
Jiri Bencf14eceb2016-02-16 21:59:01 +01001183out:
1184 unparsed->vx_flags &= ~VXLAN_HF_RCO;
1185 unparsed->vx_vni &= VXLAN_VNI_MASK;
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001186 return true;
Tom Herbertdfd86452015-01-12 17:00:38 -08001187}
1188
Jiri Bencf14eceb2016-02-16 21:59:01 +01001189static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
Jiri Benc64f87d32016-02-23 18:02:55 +01001190 struct sk_buff *skb, u32 vxflags,
Jiri Benc10a5af22016-02-23 18:02:59 +01001191 struct vxlan_metadata *md)
Jiri Benc3288af02016-02-16 21:59:00 +01001192{
Jiri Bencf14eceb2016-02-16 21:59:01 +01001193 struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
Jiri Benc10a5af22016-02-23 18:02:59 +01001194 struct metadata_dst *tun_dst;
Jiri Benc3288af02016-02-16 21:59:00 +01001195
Jiri Bencf14eceb2016-02-16 21:59:01 +01001196 if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1197 goto out;
1198
Jiri Benc3288af02016-02-16 21:59:00 +01001199 md->gbp = ntohs(gbp->policy_id);
1200
Jiri Benc10a5af22016-02-23 18:02:59 +01001201 tun_dst = (struct metadata_dst *)skb_dst(skb);
David S. Miller810813c2016-03-08 12:34:12 -05001202 if (tun_dst) {
Jiri Benc3288af02016-02-16 21:59:00 +01001203 tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
David S. Miller810813c2016-03-08 12:34:12 -05001204 tun_dst->u.tun_info.options_len = sizeof(*md);
1205 }
Jiri Benc3288af02016-02-16 21:59:00 +01001206 if (gbp->dont_learn)
1207 md->gbp |= VXLAN_GBP_DONT_LEARN;
1208
1209 if (gbp->policy_applied)
1210 md->gbp |= VXLAN_GBP_POLICY_APPLIED;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001211
Jiri Benc64f87d32016-02-23 18:02:55 +01001212 /* In flow-based mode, GBP is carried in dst_metadata */
1213 if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1214 skb->mark = md->gbp;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001215out:
1216 unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
Jiri Benc3288af02016-02-16 21:59:00 +01001217}
1218
Jiri Bence1e53142016-04-05 14:47:13 +02001219static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed,
Jiri Benc61618ee2016-04-11 17:06:08 +02001220 __be16 *protocol,
Jiri Bence1e53142016-04-05 14:47:13 +02001221 struct sk_buff *skb, u32 vxflags)
1222{
1223 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed;
1224
1225 /* Need to have Next Protocol set for interfaces in GPE mode. */
1226 if (!gpe->np_applied)
1227 return false;
1228 /* "The initial version is 0. If a receiver does not support the
1229 * version indicated it MUST drop the packet.
1230 */
1231 if (gpe->version != 0)
1232 return false;
1233 /* "When the O bit is set to 1, the packet is an OAM packet and OAM
1234 * processing MUST occur." However, we don't implement OAM
1235 * processing, thus drop the packet.
1236 */
1237 if (gpe->oam_flag)
1238 return false;
1239
1240 switch (gpe->next_protocol) {
1241 case VXLAN_GPE_NP_IPV4:
1242 *protocol = htons(ETH_P_IP);
1243 break;
1244 case VXLAN_GPE_NP_IPV6:
1245 *protocol = htons(ETH_P_IPV6);
1246 break;
1247 case VXLAN_GPE_NP_ETHERNET:
1248 *protocol = htons(ETH_P_TEB);
1249 break;
1250 default:
1251 return false;
1252 }
1253
1254 unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS;
1255 return true;
1256}
1257
Jiri Benc1ab016e2016-02-23 18:02:56 +01001258static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1259 struct vxlan_sock *vs,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001260 struct sk_buff *skb, __be32 vni)
Thomas Graf614732e2015-07-21 10:44:06 +02001261{
Thomas Graf614732e2015-07-21 10:44:06 +02001262 union vxlan_addr saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001263
Thomas Graf614732e2015-07-21 10:44:06 +02001264 skb_reset_mac_header(skb);
Thomas Graf614732e2015-07-21 10:44:06 +02001265 skb->protocol = eth_type_trans(skb, vxlan->dev);
1266 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1267
1268 /* Ignore packet loops (and multicast echo) */
1269 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001270 return false;
Thomas Graf614732e2015-07-21 10:44:06 +02001271
Jiri Benc760c6802016-02-23 18:02:57 +01001272 /* Get address from the outer IP header */
Jiri Bencce212d02015-12-07 16:29:08 +01001273 if (vxlan_get_sk_family(vs) == AF_INET) {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001274 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001275 saddr.sa.sa_family = AF_INET;
1276#if IS_ENABLED(CONFIG_IPV6)
1277 } else {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001278 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001279 saddr.sa.sa_family = AF_INET6;
1280#endif
1281 }
1282
Jiri Benc1ab016e2016-02-23 18:02:56 +01001283 if ((vxlan->flags & VXLAN_F_LEARN) &&
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001284 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, vni))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001285 return false;
1286
1287 return true;
1288}
1289
Jiri Benc760c6802016-02-23 18:02:57 +01001290static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1291 struct sk_buff *skb)
1292{
1293 int err = 0;
1294
1295 if (vxlan_get_sk_family(vs) == AF_INET)
1296 err = IP_ECN_decapsulate(oiph, skb);
1297#if IS_ENABLED(CONFIG_IPV6)
1298 else
1299 err = IP6_ECN_decapsulate(oiph, skb);
1300#endif
1301
1302 if (unlikely(err) && log_ecn_error) {
1303 if (vxlan_get_sk_family(vs) == AF_INET)
1304 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1305 &((struct iphdr *)oiph)->saddr,
1306 ((struct iphdr *)oiph)->tos);
1307 else
1308 net_info_ratelimited("non-ECT from %pI6\n",
1309 &((struct ipv6hdr *)oiph)->saddr);
1310 }
1311 return err <= 1;
1312}
1313
stephen hemmingerd3428942012-10-01 12:32:35 +00001314/* Callback from net/ipv4/udp.c to receive packets */
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001315static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
stephen hemmingerd3428942012-10-01 12:32:35 +00001316{
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001317 struct pcpu_sw_netstats *stats;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001318 struct vxlan_dev *vxlan;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001319 struct vxlan_sock *vs;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001320 struct vxlanhdr unparsed;
Thomas Grafee122c72015-07-21 10:43:58 +02001321 struct vxlan_metadata _md;
1322 struct vxlan_metadata *md = &_md;
Jiri Benc61618ee2016-04-11 17:06:08 +02001323 __be16 protocol = htons(ETH_P_TEB);
Jiri Bence1e53142016-04-05 14:47:13 +02001324 bool raw_proto = false;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001325 void *oiph;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001326 __be32 vni = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001327
Jiri Bence1e53142016-04-05 14:47:13 +02001328 /* Need UDP and VXLAN header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001329 if (!pskb_may_pull(skb, VXLAN_HLEN))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001330 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001331
Jiri Bencf14eceb2016-02-16 21:59:01 +01001332 unparsed = *vxlan_hdr(skb);
Jiri Benc288b01c2016-02-16 21:59:02 +01001333 /* VNI flag always required to be set */
1334 if (!(unparsed.vx_flags & VXLAN_HF_VNI)) {
1335 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1336 ntohl(vxlan_hdr(skb)->vx_flags),
1337 ntohl(vxlan_hdr(skb)->vx_vni));
1338 /* Return non vxlan pkt */
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001339 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001340 }
Jiri Benc288b01c2016-02-16 21:59:02 +01001341 unparsed.vx_flags &= ~VXLAN_HF_VNI;
1342 unparsed.vx_vni &= ~VXLAN_VNI_MASK;
stephen hemmingerd3428942012-10-01 12:32:35 +00001343
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001344 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001345 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001346 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001347
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001348 vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
1349
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001350 vxlan = vxlan_vs_find_vni(vs, vni);
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001351 if (!vxlan)
1352 goto drop;
1353
Jiri Bence1e53142016-04-05 14:47:13 +02001354 /* For backwards compatibility, only allow reserved fields to be
1355 * used by VXLAN extensions if explicitly requested.
1356 */
1357 if (vs->flags & VXLAN_F_GPE) {
1358 if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags))
1359 goto drop;
1360 raw_proto = true;
1361 }
1362
1363 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1364 !net_eq(vxlan->net, dev_net(vxlan->dev))))
1365 goto drop;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001366
Thomas Grafee122c72015-07-21 10:43:58 +02001367 if (vxlan_collect_metadata(vs)) {
Jiri Benc10a5af22016-02-23 18:02:59 +01001368 struct metadata_dst *tun_dst;
Jiri Benc07dabf22016-02-18 19:19:29 +01001369
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001370 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
Amir Vadaid817f432016-09-08 16:23:45 +03001371 key32_to_tunnel_id(vni), sizeof(*md));
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001372
Thomas Grafee122c72015-07-21 10:43:58 +02001373 if (!tun_dst)
1374 goto drop;
1375
Geert Uytterhoeven0f1b7352015-09-04 12:49:32 +02001376 md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
Jiri Benc10a5af22016-02-23 18:02:59 +01001377
1378 skb_dst_set(skb, (struct dst_entry *)tun_dst);
Thomas Grafee122c72015-07-21 10:43:58 +02001379 } else {
1380 memset(md, 0, sizeof(*md));
1381 }
1382
Jiri Bencf14eceb2016-02-16 21:59:01 +01001383 if (vs->flags & VXLAN_F_REMCSUM_RX)
1384 if (!vxlan_remcsum(&unparsed, skb, vs->flags))
1385 goto drop;
1386 if (vs->flags & VXLAN_F_GBP)
Jiri Benc10a5af22016-02-23 18:02:59 +01001387 vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001388 /* Note that GBP and GPE can never be active together. This is
1389 * ensured in vxlan_dev_configure.
1390 */
Thomas Graf35114942015-01-15 03:53:55 +01001391
Jiri Bencf14eceb2016-02-16 21:59:01 +01001392 if (unparsed.vx_flags || unparsed.vx_vni) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001393 /* If there are any unprocessed flags remaining treat
1394 * this as a malformed packet. This behavior diverges from
1395 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1396 * in reserved fields are to be ignored. The approach here
Simon Hormanc4b49512015-04-02 11:17:58 +09001397 * maintains compatibility with previous stack code, and also
Tom Herbert3bf39472015-01-08 12:31:18 -08001398 * is more robust and provides a little more security in
1399 * adding extensions to VXLAN.
1400 */
Jiri Benc288b01c2016-02-16 21:59:02 +01001401 goto drop;
Tom Herbert3bf39472015-01-08 12:31:18 -08001402 }
1403
Jiri Bence1e53142016-04-05 14:47:13 +02001404 if (!raw_proto) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001405 if (!vxlan_set_mac(vxlan, vs, skb, vni))
Jiri Bence1e53142016-04-05 14:47:13 +02001406 goto drop;
1407 } else {
Jiri Benc8be0cfa2016-05-13 10:48:42 +02001408 skb_reset_mac_header(skb);
Jiri Bence1e53142016-04-05 14:47:13 +02001409 skb->dev = vxlan->dev;
1410 skb->pkt_type = PACKET_HOST;
1411 }
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001412
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001413 oiph = skb_network_header(skb);
1414 skb_reset_network_header(skb);
1415
1416 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1417 ++vxlan->dev->stats.rx_frame_errors;
1418 ++vxlan->dev->stats.rx_errors;
1419 goto drop;
1420 }
1421
1422 stats = this_cpu_ptr(vxlan->dev->tstats);
1423 u64_stats_update_begin(&stats->syncp);
1424 stats->rx_packets++;
1425 stats->rx_bytes += skb->len;
1426 u64_stats_update_end(&stats->syncp);
1427
1428 gro_cells_receive(&vxlan->gro_cells, skb);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001429 return 0;
1430
1431drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001432 /* Consume bad packet */
1433 kfree_skb(skb);
1434 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001435}
1436
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001437static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
David Stevense4f67ad2012-11-20 02:50:14 +00001438{
1439 struct vxlan_dev *vxlan = netdev_priv(dev);
1440 struct arphdr *parp;
1441 u8 *arpptr, *sha;
1442 __be32 sip, tip;
1443 struct neighbour *n;
1444
1445 if (dev->flags & IFF_NOARP)
1446 goto out;
1447
1448 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1449 dev->stats.tx_dropped++;
1450 goto out;
1451 }
1452 parp = arp_hdr(skb);
1453
1454 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1455 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1456 parp->ar_pro != htons(ETH_P_IP) ||
1457 parp->ar_op != htons(ARPOP_REQUEST) ||
1458 parp->ar_hln != dev->addr_len ||
1459 parp->ar_pln != 4)
1460 goto out;
1461 arpptr = (u8 *)parp + sizeof(struct arphdr);
1462 sha = arpptr;
1463 arpptr += dev->addr_len; /* sha */
1464 memcpy(&sip, arpptr, sizeof(sip));
1465 arpptr += sizeof(sip);
1466 arpptr += dev->addr_len; /* tha */
1467 memcpy(&tip, arpptr, sizeof(tip));
1468
1469 if (ipv4_is_loopback(tip) ||
1470 ipv4_is_multicast(tip))
1471 goto out;
1472
1473 n = neigh_lookup(&arp_tbl, &tip, dev);
1474
1475 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001476 struct vxlan_fdb *f;
1477 struct sk_buff *reply;
1478
1479 if (!(n->nud_state & NUD_CONNECTED)) {
1480 neigh_release(n);
1481 goto out;
1482 }
1483
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001484 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wange4c7ed42013-08-31 13:44:33 +08001485 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001486 /* bridge-local neighbor */
1487 neigh_release(n);
1488 goto out;
1489 }
1490
1491 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1492 n->ha, sha);
1493
1494 neigh_release(n);
1495
David Stevens73461352014-03-18 12:32:29 -04001496 if (reply == NULL)
1497 goto out;
1498
David Stevense4f67ad2012-11-20 02:50:14 +00001499 skb_reset_mac_header(reply);
1500 __skb_pull(reply, skb_network_offset(reply));
1501 reply->ip_summed = CHECKSUM_UNNECESSARY;
1502 reply->pkt_type = PACKET_HOST;
1503
1504 if (netif_rx_ni(reply) == NET_RX_DROP)
1505 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001506 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1507 union vxlan_addr ipa = {
1508 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001509 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001510 };
1511
1512 vxlan_ip_miss(dev, &ipa);
1513 }
David Stevense4f67ad2012-11-20 02:50:14 +00001514out:
1515 consume_skb(skb);
1516 return NETDEV_TX_OK;
1517}
1518
Cong Wangf564f452013-08-31 13:44:36 +08001519#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001520static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1521 struct neighbour *n, bool isrouter)
1522{
1523 struct net_device *dev = request->dev;
1524 struct sk_buff *reply;
1525 struct nd_msg *ns, *na;
1526 struct ipv6hdr *pip6;
1527 u8 *daddr;
1528 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1529 int ns_olen;
1530 int i, len;
1531
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001532 if (dev == NULL || !pskb_may_pull(request, request->len))
David Stevens4b29dba2014-03-24 10:39:58 -04001533 return NULL;
1534
1535 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1536 sizeof(*na) + na_olen + dev->needed_tailroom;
1537 reply = alloc_skb(len, GFP_ATOMIC);
1538 if (reply == NULL)
1539 return NULL;
1540
1541 reply->protocol = htons(ETH_P_IPV6);
1542 reply->dev = dev;
1543 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1544 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001545 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001546
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001547 ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
David Stevens4b29dba2014-03-24 10:39:58 -04001548
1549 daddr = eth_hdr(request)->h_source;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001550 ns_olen = request->len - skb_network_offset(request) -
1551 sizeof(struct ipv6hdr) - sizeof(*ns);
David Stevens4b29dba2014-03-24 10:39:58 -04001552 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1553 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1554 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1555 break;
1556 }
1557 }
1558
1559 /* Ethernet header */
1560 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1561 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1562 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1563 reply->protocol = htons(ETH_P_IPV6);
1564
1565 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001566 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001567 skb_put(reply, sizeof(struct ipv6hdr));
1568
1569 /* IPv6 header */
1570
1571 pip6 = ipv6_hdr(reply);
1572 memset(pip6, 0, sizeof(struct ipv6hdr));
1573 pip6->version = 6;
1574 pip6->priority = ipv6_hdr(request)->priority;
1575 pip6->nexthdr = IPPROTO_ICMPV6;
1576 pip6->hop_limit = 255;
1577 pip6->daddr = ipv6_hdr(request)->saddr;
1578 pip6->saddr = *(struct in6_addr *)n->primary_key;
1579
1580 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001581 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001582
1583 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1584
1585 /* Neighbor Advertisement */
1586 memset(na, 0, sizeof(*na)+na_olen);
1587 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1588 na->icmph.icmp6_router = isrouter;
1589 na->icmph.icmp6_override = 1;
1590 na->icmph.icmp6_solicited = 1;
1591 na->target = ns->target;
1592 ether_addr_copy(&na->opt[2], n->ha);
1593 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1594 na->opt[1] = na_olen >> 3;
1595
1596 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1597 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1598 csum_partial(na, sizeof(*na)+na_olen, 0));
1599
1600 pip6->payload_len = htons(sizeof(*na)+na_olen);
1601
1602 skb_push(reply, sizeof(struct ipv6hdr));
1603
1604 reply->ip_summed = CHECKSUM_UNNECESSARY;
1605
1606 return reply;
1607}
1608
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001609static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
Cong Wangf564f452013-08-31 13:44:36 +08001610{
1611 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001612 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001613 const struct ipv6hdr *iphdr;
Roopa Prabhu8dcd81a2017-02-20 08:41:16 -08001614 const struct in6_addr *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001615 struct neighbour *n;
1616 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001617
1618 in6_dev = __in6_dev_get(dev);
1619 if (!in6_dev)
1620 goto out;
1621
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001622 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + sizeof(struct nd_msg)))
1623 goto out;
1624
Cong Wangf564f452013-08-31 13:44:36 +08001625 iphdr = ipv6_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001626 daddr = &iphdr->daddr;
1627
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001628 msg = (struct nd_msg *)(iphdr + 1);
Cong Wangf564f452013-08-31 13:44:36 +08001629 if (msg->icmph.icmp6_code != 0 ||
1630 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1631 goto out;
1632
David Stevens4b29dba2014-03-24 10:39:58 -04001633 if (ipv6_addr_loopback(daddr) ||
1634 ipv6_addr_is_multicast(&msg->target))
1635 goto out;
1636
1637 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001638
1639 if (n) {
1640 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001641 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001642
1643 if (!(n->nud_state & NUD_CONNECTED)) {
1644 neigh_release(n);
1645 goto out;
1646 }
1647
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001648 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wangf564f452013-08-31 13:44:36 +08001649 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1650 /* bridge-local neighbor */
1651 neigh_release(n);
1652 goto out;
1653 }
1654
David Stevens4b29dba2014-03-24 10:39:58 -04001655 reply = vxlan_na_create(skb, n,
1656 !!(f ? f->flags & NTF_ROUTER : 0));
1657
Cong Wangf564f452013-08-31 13:44:36 +08001658 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001659
1660 if (reply == NULL)
1661 goto out;
1662
1663 if (netif_rx_ni(reply) == NET_RX_DROP)
1664 dev->stats.rx_dropped++;
1665
Cong Wangf564f452013-08-31 13:44:36 +08001666 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001667 union vxlan_addr ipa = {
1668 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001669 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001670 };
1671
Cong Wangf564f452013-08-31 13:44:36 +08001672 vxlan_ip_miss(dev, &ipa);
1673 }
1674
1675out:
1676 consume_skb(skb);
1677 return NETDEV_TX_OK;
1678}
1679#endif
1680
David Stevense4f67ad2012-11-20 02:50:14 +00001681static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1682{
1683 struct vxlan_dev *vxlan = netdev_priv(dev);
1684 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001685
1686 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1687 return false;
1688
1689 n = NULL;
1690 switch (ntohs(eth_hdr(skb)->h_proto)) {
1691 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001692 {
1693 struct iphdr *pip;
1694
David Stevense4f67ad2012-11-20 02:50:14 +00001695 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1696 return false;
1697 pip = ip_hdr(skb);
1698 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001699 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1700 union vxlan_addr ipa = {
1701 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001702 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001703 };
1704
1705 vxlan_ip_miss(dev, &ipa);
1706 return false;
1707 }
1708
David Stevense4f67ad2012-11-20 02:50:14 +00001709 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001710 }
1711#if IS_ENABLED(CONFIG_IPV6)
1712 case ETH_P_IPV6:
1713 {
1714 struct ipv6hdr *pip6;
1715
1716 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1717 return false;
1718 pip6 = ipv6_hdr(skb);
1719 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1720 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1721 union vxlan_addr ipa = {
1722 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001723 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001724 };
1725
1726 vxlan_ip_miss(dev, &ipa);
1727 return false;
1728 }
1729
1730 break;
1731 }
1732#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001733 default:
1734 return false;
1735 }
1736
1737 if (n) {
1738 bool diff;
1739
Joe Perches7367d0b2013-09-01 11:51:23 -07001740 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001741 if (diff) {
1742 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1743 dev->addr_len);
1744 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1745 }
1746 neigh_release(n);
1747 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001748 }
1749
David Stevense4f67ad2012-11-20 02:50:14 +00001750 return false;
1751}
1752
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001753static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01001754 struct vxlan_metadata *md)
1755{
1756 struct vxlanhdr_gbp *gbp;
1757
Thomas Grafdb79a622015-02-04 17:00:04 +01001758 if (!md->gbp)
1759 return;
1760
Thomas Graf35114942015-01-15 03:53:55 +01001761 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01001762 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01001763
1764 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1765 gbp->dont_learn = 1;
1766
1767 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1768 gbp->policy_applied = 1;
1769
1770 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1771}
1772
Jiri Bence1e53142016-04-05 14:47:13 +02001773static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
1774 __be16 protocol)
1775{
1776 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
1777
1778 gpe->np_applied = 1;
1779
1780 switch (protocol) {
1781 case htons(ETH_P_IP):
1782 gpe->next_protocol = VXLAN_GPE_NP_IPV4;
1783 return 0;
1784 case htons(ETH_P_IPV6):
1785 gpe->next_protocol = VXLAN_GPE_NP_IPV6;
1786 return 0;
1787 case htons(ETH_P_TEB):
1788 gpe->next_protocol = VXLAN_GPE_NP_ETHERNET;
1789 return 0;
1790 }
1791 return -EPFNOSUPPORT;
1792}
1793
Jiri Bencf491e562016-02-02 18:09:16 +01001794static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
1795 int iphdr_len, __be32 vni,
1796 struct vxlan_metadata *md, u32 vxflags,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01001797 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08001798{
Cong Wange4c7ed42013-08-31 13:44:33 +08001799 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001800 int min_headroom;
1801 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08001802 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02001803 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08001804
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001805 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001806 skb->ip_summed == CHECKSUM_PARTIAL) {
1807 int csum_start = skb_checksum_start_offset(skb);
1808
1809 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1810 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1811 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00001812 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08001813 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08001814 }
1815
Cong Wange4c7ed42013-08-31 13:44:33 +08001816 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
pravin shelar4a4f86c2016-11-13 20:43:52 -08001817 + VXLAN_HLEN + iphdr_len;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001818
1819 /* Need space for new headers (invalidates iph ptr) */
1820 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02001821 if (unlikely(err))
pravin shelarc46b7892016-11-13 20:43:54 -08001822 return err;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001823
Alexander Duyckaed069d2016-04-14 15:33:37 -04001824 err = iptunnel_handle_offloads(skb, type);
1825 if (err)
pravin shelarc46b7892016-11-13 20:43:54 -08001826 return err;
Jesse Grossb736a622015-04-09 11:19:14 -07001827
Pravin B Shelar49560532013-08-19 11:23:17 -07001828 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01001829 vxh->vx_flags = VXLAN_HF_VNI;
1830 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07001831
Tom Herbertdfd86452015-01-12 17:00:38 -08001832 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01001833 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08001834
Jiri Benc54bfd872016-02-16 21:58:58 +01001835 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
1836 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
1837 vxh->vx_flags |= VXLAN_HF_RCO;
Tom Herbertdfd86452015-01-12 17:00:38 -08001838
1839 if (!skb_is_gso(skb)) {
1840 skb->ip_summed = CHECKSUM_NONE;
1841 skb->encapsulation = 0;
1842 }
1843 }
1844
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001845 if (vxflags & VXLAN_F_GBP)
1846 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001847 if (vxflags & VXLAN_F_GPE) {
1848 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
1849 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08001850 return err;
Jiri Bence1e53142016-04-05 14:47:13 +02001851 inner_protocol = skb->protocol;
1852 }
Thomas Graf35114942015-01-15 03:53:55 +01001853
Jiri Bence1e53142016-04-05 14:47:13 +02001854 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08001855 return 0;
Pravin B Shelar49560532013-08-19 11:23:17 -07001856}
Pravin B Shelar49560532013-08-19 11:23:17 -07001857
pravin shelar655c3de2016-11-13 20:43:55 -08001858static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
1859 struct vxlan_sock *sock4,
Jiri Benc1a8496b2016-02-02 18:09:14 +01001860 struct sk_buff *skb, int oif, u8 tos,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001861 __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001862 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001863 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01001864{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001865 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01001866 struct rtable *rt = NULL;
1867 struct flowi4 fl4;
1868
pravin shelar655c3de2016-11-13 20:43:55 -08001869 if (!sock4)
1870 return ERR_PTR(-EIO);
1871
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001872 if (tos && !info)
1873 use_cache = false;
1874 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001875 rt = dst_cache_get_ip4(dst_cache, saddr);
1876 if (rt)
1877 return rt;
1878 }
1879
Jiri Benc1a8496b2016-02-02 18:09:14 +01001880 memset(&fl4, 0, sizeof(fl4));
1881 fl4.flowi4_oif = oif;
1882 fl4.flowi4_tos = RT_TOS(tos);
1883 fl4.flowi4_mark = skb->mark;
1884 fl4.flowi4_proto = IPPROTO_UDP;
1885 fl4.daddr = daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07001886 fl4.saddr = *saddr;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001887 fl4.fl4_dport = dport;
1888 fl4.fl4_sport = sport;
Jiri Benc1a8496b2016-02-02 18:09:14 +01001889
1890 rt = ip_route_output_key(vxlan->net, &fl4);
pravin shelar655c3de2016-11-13 20:43:55 -08001891 if (likely(!IS_ERR(rt))) {
1892 if (rt->dst.dev == dev) {
1893 netdev_dbg(dev, "circular route to %pI4\n", &daddr);
1894 ip_rt_put(rt);
1895 return ERR_PTR(-ELOOP);
1896 }
1897
Jiri Benc1a8496b2016-02-02 18:09:14 +01001898 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001899 if (use_cache)
1900 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
pravin shelar655c3de2016-11-13 20:43:55 -08001901 } else {
1902 netdev_dbg(dev, "no route to %pI4\n", &daddr);
1903 return ERR_PTR(-ENETUNREACH);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001904 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01001905 return rt;
1906}
1907
Jiri Bence5d4b292015-12-07 13:04:30 +01001908#if IS_ENABLED(CONFIG_IPV6)
1909static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
pravin shelar655c3de2016-11-13 20:43:55 -08001910 struct net_device *dev,
pravin shelar03dc52a2016-11-13 20:43:53 -08001911 struct vxlan_sock *sock6,
Daniel Borkmann14006152016-03-04 15:15:08 +01001912 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01001913 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01001914 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001915 struct in6_addr *saddr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001916 __be16 dport, __be16 sport,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001917 struct dst_cache *dst_cache,
1918 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01001919{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001920 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01001921 struct dst_entry *ndst;
1922 struct flowi6 fl6;
1923 int err;
1924
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001925 if (!sock6)
1926 return ERR_PTR(-EIO);
1927
Daniel Borkmann14006152016-03-04 15:15:08 +01001928 if (tos && !info)
1929 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001930 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001931 ndst = dst_cache_get_ip6(dst_cache, saddr);
1932 if (ndst)
1933 return ndst;
1934 }
1935
Jiri Bence5d4b292015-12-07 13:04:30 +01001936 memset(&fl6, 0, sizeof(fl6));
1937 fl6.flowi6_oif = oif;
1938 fl6.daddr = *daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07001939 fl6.saddr = *saddr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01001940 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01001941 fl6.flowi6_mark = skb->mark;
1942 fl6.flowi6_proto = IPPROTO_UDP;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001943 fl6.fl6_dport = dport;
1944 fl6.fl6_sport = sport;
Jiri Bence5d4b292015-12-07 13:04:30 +01001945
1946 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001947 sock6->sock->sk,
Jiri Bence5d4b292015-12-07 13:04:30 +01001948 &ndst, &fl6);
pravin shelar655c3de2016-11-13 20:43:55 -08001949 if (unlikely(err < 0)) {
1950 netdev_dbg(dev, "no route to %pI6\n", daddr);
1951 return ERR_PTR(-ENETUNREACH);
1952 }
1953
1954 if (unlikely(ndst->dev == dev)) {
1955 netdev_dbg(dev, "circular route to %pI6\n", daddr);
1956 dst_release(ndst);
1957 return ERR_PTR(-ELOOP);
1958 }
Jiri Bence5d4b292015-12-07 13:04:30 +01001959
1960 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001961 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001962 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01001963 return ndst;
1964}
1965#endif
1966
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001967/* Bypass encapsulation if the destination is local */
1968static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001969 struct vxlan_dev *dst_vxlan, __be32 vni)
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001970{
Li RongQing8f849852014-01-04 13:57:59 +08001971 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001972 union vxlan_addr loopback;
1973 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001974 struct net_device *dev = skb->dev;
1975 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001976
Li RongQing8f849852014-01-04 13:57:59 +08001977 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1978 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001979 skb->pkt_type = PACKET_HOST;
1980 skb->encapsulation = 0;
1981 skb->dev = dst_vxlan->dev;
1982 __skb_pull(skb, skb_network_offset(skb));
1983
Cong Wange4c7ed42013-08-31 13:44:33 +08001984 if (remote_ip->sa.sa_family == AF_INET) {
1985 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1986 loopback.sa.sa_family = AF_INET;
1987#if IS_ENABLED(CONFIG_IPV6)
1988 } else {
1989 loopback.sin6.sin6_addr = in6addr_loopback;
1990 loopback.sa.sa_family = AF_INET6;
1991#endif
1992 }
1993
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001994 if (dst_vxlan->flags & VXLAN_F_LEARN)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001995 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source, vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001996
1997 u64_stats_update_begin(&tx_stats->syncp);
1998 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001999 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002000 u64_stats_update_end(&tx_stats->syncp);
2001
2002 if (netif_rx(skb) == NET_RX_SUCCESS) {
2003 u64_stats_update_begin(&rx_stats->syncp);
2004 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002005 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002006 u64_stats_update_end(&rx_stats->syncp);
2007 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08002008 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002009 }
2010}
2011
pravin shelarfee1fad2016-11-13 20:43:56 -08002012static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
2013 struct vxlan_dev *vxlan, union vxlan_addr *daddr,
Lance Richardson1f6cc072017-01-18 15:24:57 -05002014 __be16 dst_port, __be32 vni, struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002015 u32 rt_flags)
2016{
2017#if IS_ENABLED(CONFIG_IPV6)
2018 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2019 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2020 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2021 */
2022 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2023#endif
2024 /* Bypass encapsulation if the destination is local */
2025 if (rt_flags & RTCF_LOCAL &&
2026 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2027 struct vxlan_dev *dst_vxlan;
2028
2029 dst_release(dst);
2030 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
2031 daddr->sa.sa_family, dst_port,
2032 vxlan->flags);
2033 if (!dst_vxlan) {
2034 dev->stats.tx_errors++;
2035 kfree_skb(skb);
2036
2037 return -ENOENT;
2038 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002039 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002040 return 1;
2041 }
2042
2043 return 0;
2044}
2045
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002046static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002047 __be32 default_vni, struct vxlan_rdst *rdst,
2048 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002049{
Paolo Abenid71785f2016-02-12 15:43:57 +01002050 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002051 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002052 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002053 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002054 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002055 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002056 struct vxlan_metadata _md;
2057 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002058 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002059 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002060 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002061 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07002062 int err;
Thomas Grafee122c72015-07-21 10:43:58 +02002063 u32 flags = vxlan->flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002064 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002065 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002066
Jiri Benc61adedf2015-08-20 13:56:25 +02002067 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002068
Thomas Grafee122c72015-07-21 10:43:58 +02002069 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002070 dst = &rdst->remote_ip;
2071 if (vxlan_addr_any(dst)) {
2072 if (did_rsc) {
2073 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002074 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002075 return;
2076 }
2077 goto drop;
2078 }
2079
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002080 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002081 vni = (rdst->remote_vni) ? : default_vni;
Brian Russell11586322017-02-24 17:47:11 +00002082 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002083 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002084 md->gbp = skb->mark;
2085 ttl = vxlan->cfg.ttl;
2086 if (!ttl && vxlan_addr_multicast(dst))
2087 ttl = 1;
2088
2089 tos = vxlan->cfg.tos;
2090 if (tos == 1)
2091 tos = ip_tunnel_get_dsfield(old_iph, skb);
2092
2093 if (dst->sa.sa_family == AF_INET)
2094 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2095 else
2096 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2097 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002098 } else {
2099 if (!info) {
2100 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2101 dev->name);
2102 goto drop;
2103 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002104 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002105 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002106 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002107 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2108 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002109 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002110 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2111 }
Thomas Grafee122c72015-07-21 10:43:58 +02002112 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002113 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2114 vni = tunnel_id_to_key32(info->key.tun_id);
Paolo Abenid71785f2016-02-12 15:43:57 +01002115 dst_cache = &info->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002116 if (info->options_len)
2117 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002118 ttl = info->key.ttl;
2119 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002120 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002121 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002122 }
pravin shelar0770b532016-11-13 20:43:57 -08002123 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2124 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002125
Jakub Kicinski56de8592017-02-24 11:43:36 -08002126 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002127 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002128 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002129 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002130 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002131
pravin shelar655c3de2016-11-13 20:43:55 -08002132 rt = vxlan_get_route(vxlan, dev, sock4, skb,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002133 rdst ? rdst->remote_ifindex : 0, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002134 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002135 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002136 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002137 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002138 if (IS_ERR(rt)) {
2139 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002140 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002141 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002142
Cong Wange4c7ed42013-08-31 13:44:33 +08002143 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002144 if (!info) {
2145 err = encap_bypass_if_local(skb, dev, vxlan, dst,
2146 dst_port, vni, &rt->dst,
2147 rt->rt_flags);
2148 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002149 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002150 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002151 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002152 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002153
pravin shelarc46b7892016-11-13 20:43:54 -08002154 ndst = &rt->dst;
Cong Wange4c7ed42013-08-31 13:44:33 +08002155 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2156 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002157 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002158 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002159 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002160 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002161
Brian Russell11586322017-02-24 17:47:11 +00002162 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002163 dst->sin.sin_addr.s_addr, tos, ttl, df,
2164 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002165#if IS_ENABLED(CONFIG_IPV6)
2166 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002167 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002168
pravin shelar655c3de2016-11-13 20:43:55 -08002169 ndst = vxlan6_get_route(vxlan, dev, sock6, skb,
Daniel Borkmann14006152016-03-04 15:15:08 +01002170 rdst ? rdst->remote_ifindex : 0, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002171 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002172 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002173 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002174 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002175 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002176 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002177 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002178 goto tx_error;
2179 }
pravin shelar655c3de2016-11-13 20:43:55 -08002180
pravin shelarfee1fad2016-11-13 20:43:56 -08002181 if (!info) {
2182 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002183
pravin shelarfee1fad2016-11-13 20:43:56 -08002184 err = encap_bypass_if_local(skb, dev, vxlan, dst,
2185 dst_port, vni, ndst,
2186 rt6i_flags);
2187 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002188 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002189 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002190
Daniel Borkmann14006152016-03-04 15:15:08 +01002191 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002192 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002193 skb_scrub_packet(skb, xnet);
2194 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002195 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002196 if (err < 0)
2197 goto tx_error;
2198
pravin shelar0770b532016-11-13 20:43:57 -08002199 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002200 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002201 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002202 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002203#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002204 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002205out_unlock:
2206 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002207 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002208
2209drop:
2210 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002211 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002212 return;
2213
2214tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002215 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002216 if (err == -ELOOP)
2217 dev->stats.collisions++;
2218 else if (err == -ENETUNREACH)
2219 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002220 dst_release(ndst);
2221 dev->stats.tx_errors++;
2222 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002223}
2224
David Stevens66817122013-03-15 04:35:51 +00002225/* Transmit local packets over Vxlan
2226 *
2227 * Outer IP header inherits ECN and DF from inner header.
2228 * Outer UDP destination is the VXLAN assigned port.
2229 * source port is based on hash of flow
2230 */
2231static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2232{
2233 struct vxlan_dev *vxlan = netdev_priv(dev);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002234 const struct ip_tunnel_info *info;
David Stevens66817122013-03-15 04:35:51 +00002235 struct ethhdr *eth;
2236 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002237 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002238 struct vxlan_fdb *f;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002239 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002240
Jiri Benc61adedf2015-08-20 13:56:25 +02002241 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002242
David Stevens66817122013-03-15 04:35:51 +00002243 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002244
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002245 if (vxlan->flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002246 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2247 info->mode & IP_TUNNEL_INFO_TX) {
2248 vni = tunnel_id_to_key32(info->key.tun_id);
2249 } else {
2250 if (info && info->mode & IP_TUNNEL_INFO_TX)
2251 vxlan_xmit_one(skb, dev, vni, NULL, false);
2252 else
2253 kfree_skb(skb);
2254 return NETDEV_TX_OK;
2255 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002256 }
2257
2258 if (vxlan->flags & VXLAN_F_PROXY) {
2259 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002260 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002261 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002262#if IS_ENABLED(CONFIG_IPV6)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002263 else if (ntohs(eth->h_proto) == ETH_P_IPV6) {
2264 struct ipv6hdr *hdr, _hdr;
2265 if ((hdr = skb_header_pointer(skb,
2266 skb_network_offset(skb),
2267 sizeof(_hdr), &_hdr)) &&
2268 hdr->nexthdr == IPPROTO_ICMPV6)
2269 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002270 }
2271#endif
2272 }
David Stevens66817122013-03-15 04:35:51 +00002273
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002274 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002275 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002276 did_rsc = false;
2277
2278 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002279 (ntohs(eth->h_proto) == ETH_P_IP ||
2280 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002281 did_rsc = route_shortcircuit(dev, skb);
2282 if (did_rsc)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002283 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002284 }
2285
David Stevens66817122013-03-15 04:35:51 +00002286 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002287 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002288 if (f == NULL) {
2289 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2290 !is_multicast_ether_addr(eth->h_dest))
2291 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002292
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002293 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002294 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002295 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002296 }
David Stevens66817122013-03-15 04:35:51 +00002297 }
2298
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002299 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2300 struct sk_buff *skb1;
2301
Eric Dumazet8f646c92014-01-06 09:54:31 -08002302 if (!fdst) {
2303 fdst = rdst;
2304 continue;
2305 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002306 skb1 = skb_clone(skb, GFP_ATOMIC);
2307 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002308 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002309 }
2310
Eric Dumazet8f646c92014-01-06 09:54:31 -08002311 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002312 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002313 else
2314 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002315 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002316}
2317
stephen hemmingerd3428942012-10-01 12:32:35 +00002318/* Walk the forwarding table and purge stale entries */
2319static void vxlan_cleanup(unsigned long arg)
2320{
2321 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2322 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2323 unsigned int h;
2324
2325 if (!netif_running(vxlan->dev))
2326 return;
2327
stephen hemmingerd3428942012-10-01 12:32:35 +00002328 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2329 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002330
2331 spin_lock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002332 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2333 struct vxlan_fdb *f
2334 = container_of(p, struct vxlan_fdb, hlist);
2335 unsigned long timeout;
2336
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002337 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002338 continue;
2339
Roopa Prabhudef499c2017-03-27 15:46:41 -07002340 if (f->flags & NTF_EXT_LEARNED)
2341 continue;
2342
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002343 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002344 if (time_before_eq(timeout, jiffies)) {
2345 netdev_dbg(vxlan->dev,
2346 "garbage collect %pM\n",
2347 f->eth_addr);
2348 f->state = NUD_STALE;
2349 vxlan_fdb_destroy(vxlan, f);
2350 } else if (time_before(timeout, next_timer))
2351 next_timer = timeout;
2352 }
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002353 spin_unlock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002354 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002355
2356 mod_timer(&vxlan->age_timer, next_timer);
2357}
2358
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002359static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2360{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002361 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002362 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002363
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002364 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002365 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002366 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002367}
2368
stephen hemmingerd3428942012-10-01 12:32:35 +00002369/* Setup stats when device is created */
2370static int vxlan_init(struct net_device *dev)
2371{
WANG Cong1c213bd2014-02-13 11:46:28 -08002372 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002373 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002374 return -ENOMEM;
2375
2376 return 0;
2377}
2378
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002379static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002380{
2381 struct vxlan_fdb *f;
2382
2383 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002384 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002385 if (f)
2386 vxlan_fdb_destroy(vxlan, f);
2387 spin_unlock_bh(&vxlan->hash_lock);
2388}
2389
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002390static void vxlan_uninit(struct net_device *dev)
2391{
2392 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002393
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002394 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002395
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002396 free_percpu(dev->tstats);
2397}
2398
stephen hemmingerd3428942012-10-01 12:32:35 +00002399/* Start ageing timer and join group when device is brought up */
2400static int vxlan_open(struct net_device *dev)
2401{
2402 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002403 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002404
Jiri Benc205f3562015-09-24 13:50:01 +02002405 ret = vxlan_sock_add(vxlan);
2406 if (ret < 0)
2407 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002408
Gao feng79d4a942013-12-10 16:37:32 +08002409 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002410 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002411 if (ret == -EADDRINUSE)
2412 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002413 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002414 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002415 return ret;
2416 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002417 }
2418
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002419 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002420 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2421
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002422 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002423}
2424
2425/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002426static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002427{
Cong Wang31fec5a2013-05-27 22:35:52 +00002428 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002429
2430 spin_lock_bh(&vxlan->hash_lock);
2431 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2432 struct hlist_node *p, *n;
2433 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2434 struct vxlan_fdb *f
2435 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002436 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2437 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002438 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2439 if (!is_zero_ether_addr(f->eth_addr))
2440 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002441 }
2442 }
2443 spin_unlock_bh(&vxlan->hash_lock);
2444}
2445
2446/* Cleanup timer and forwarding table on shutdown */
2447static int vxlan_stop(struct net_device *dev)
2448{
2449 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002450 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002451 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002452
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002453 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002454 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002455 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002456
2457 del_timer_sync(&vxlan->age_timer);
2458
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002459 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002460 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002461
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002462 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002463}
2464
stephen hemmingerd3428942012-10-01 12:32:35 +00002465/* Stub, nothing needs to be done. */
2466static void vxlan_set_multicast_list(struct net_device *dev)
2467{
2468}
2469
Daniel Borkmann345010b2013-12-18 00:21:08 +01002470static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2471{
2472 struct vxlan_dev *vxlan = netdev_priv(dev);
2473 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002474 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2475 dst->remote_ifindex);
Jarod Wilson91572082016-10-20 13:55:20 -04002476 bool use_ipv6 = false;
2477
2478 if (dst->remote_ip.sa.sa_family == AF_INET6)
2479 use_ipv6 = true;
2480
2481 /* This check is different than dev->max_mtu, because it looks at
2482 * the lowerdev->mtu, rather than the static dev->max_mtu
2483 */
2484 if (lowerdev) {
2485 int max_mtu = lowerdev->mtu -
2486 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2487 if (new_mtu > max_mtu)
2488 return -EINVAL;
2489 }
2490
2491 dev->mtu = new_mtu;
2492 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002493}
2494
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002495static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2496{
2497 struct vxlan_dev *vxlan = netdev_priv(dev);
2498 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2499 __be16 sport, dport;
2500
2501 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2502 vxlan->cfg.port_max, true);
2503 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2504
Jiri Benc239e9442015-12-07 13:04:31 +01002505 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002506 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002507 struct rtable *rt;
2508
pravin shelar655c3de2016-11-13 20:43:55 -08002509 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002510 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002511 &info->key.u.ipv4.src, dport, sport,
2512 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002513 if (IS_ERR(rt))
2514 return PTR_ERR(rt);
2515 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002516 } else {
2517#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002518 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002519 struct dst_entry *ndst;
2520
pravin shelar655c3de2016-11-13 20:43:55 -08002521 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002522 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002523 &info->key.u.ipv6.src, dport, sport,
2524 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002525 if (IS_ERR(ndst))
2526 return PTR_ERR(ndst);
2527 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002528#else /* !CONFIG_IPV6 */
2529 return -EPFNOSUPPORT;
2530#endif
2531 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002532 info->key.tp_src = sport;
2533 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002534 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002535}
2536
Jiri Benc0c867c92016-04-05 14:47:10 +02002537static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002538 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002539 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002540 .ndo_open = vxlan_open,
2541 .ndo_stop = vxlan_stop,
2542 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002543 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002544 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002545 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002546 .ndo_validate_addr = eth_validate_addr,
2547 .ndo_set_mac_address = eth_mac_addr,
2548 .ndo_fdb_add = vxlan_fdb_add,
2549 .ndo_fdb_del = vxlan_fdb_delete,
2550 .ndo_fdb_dump = vxlan_fdb_dump,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002551 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
stephen hemmingerd3428942012-10-01 12:32:35 +00002552};
2553
Jiri Bence1e53142016-04-05 14:47:13 +02002554static const struct net_device_ops vxlan_netdev_raw_ops = {
2555 .ndo_init = vxlan_init,
2556 .ndo_uninit = vxlan_uninit,
2557 .ndo_open = vxlan_open,
2558 .ndo_stop = vxlan_stop,
2559 .ndo_start_xmit = vxlan_xmit,
2560 .ndo_get_stats64 = ip_tunnel_get_stats64,
2561 .ndo_change_mtu = vxlan_change_mtu,
2562 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2563};
2564
stephen hemmingerd3428942012-10-01 12:32:35 +00002565/* Info for udev, that this is a virtual tunnel endpoint */
2566static struct device_type vxlan_type = {
2567 .name = "vxlan",
2568};
2569
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002570/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002571 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002572 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002573 */
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02002574static void vxlan_push_rx_ports(struct net_device *dev)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002575{
2576 struct vxlan_sock *vs;
2577 struct net *net = dev_net(dev);
2578 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002579 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002580
2581 spin_lock(&vn->sock_lock);
2582 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Alexander Duycke7b3db52016-06-16 12:20:52 -07002583 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist)
2584 udp_tunnel_push_rx_port(dev, vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07002585 (vs->flags & VXLAN_F_GPE) ?
2586 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07002587 UDP_TUNNEL_TYPE_VXLAN);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002588 }
2589 spin_unlock(&vn->sock_lock);
2590}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002591
stephen hemmingerd3428942012-10-01 12:32:35 +00002592/* Initialize the device structure. */
2593static void vxlan_setup(struct net_device *dev)
2594{
2595 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002596 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002597
Jiri Benc65226ef2016-04-28 16:36:30 +02002598 eth_hw_addr_random(dev);
2599 ether_setup(dev);
2600
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002601 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002602 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2603
stephen hemmingerd3428942012-10-01 12:32:35 +00002604 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002605 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002606 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002607 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002608
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002609 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002610 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002611 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07002612 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002613 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002614
stephen hemminger553675f2013-05-16 11:35:20 +00002615 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002616 spin_lock_init(&vxlan->hash_lock);
2617
2618 init_timer_deferrable(&vxlan->age_timer);
2619 vxlan->age_timer.function = vxlan_cleanup;
2620 vxlan->age_timer.data = (unsigned long) vxlan;
2621
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002622 vxlan->cfg.dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002623
stephen hemmingerd3428942012-10-01 12:32:35 +00002624 vxlan->dev = dev;
2625
Tom Herbert58ce31c2015-08-19 17:07:33 -07002626 gro_cells_init(&vxlan->gro_cells, dev);
2627
stephen hemmingerd3428942012-10-01 12:32:35 +00002628 for (h = 0; h < FDB_HASH_SIZE; ++h)
2629 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2630}
2631
Jiri Benc0c867c92016-04-05 14:47:10 +02002632static void vxlan_ether_setup(struct net_device *dev)
2633{
Jiri Benc0c867c92016-04-05 14:47:10 +02002634 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2635 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2636 dev->netdev_ops = &vxlan_netdev_ether_ops;
2637}
2638
Jiri Bence1e53142016-04-05 14:47:13 +02002639static void vxlan_raw_setup(struct net_device *dev)
2640{
Jiri Benc65226ef2016-04-28 16:36:30 +02002641 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02002642 dev->type = ARPHRD_NONE;
2643 dev->hard_header_len = 0;
2644 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002645 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
2646 dev->netdev_ops = &vxlan_netdev_raw_ops;
2647}
2648
stephen hemmingerd3428942012-10-01 12:32:35 +00002649static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2650 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002651 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002652 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002653 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2654 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002655 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002656 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2657 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002658 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002659 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2660 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2661 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002662 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002663 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2664 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2665 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2666 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07002667 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002668 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002669 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2670 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2671 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002672 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2673 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002674 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02002675 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002676 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
stephen hemmingerd3428942012-10-01 12:32:35 +00002677};
2678
2679static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2680{
2681 if (tb[IFLA_ADDRESS]) {
2682 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2683 pr_debug("invalid link address (not ethernet)\n");
2684 return -EINVAL;
2685 }
2686
2687 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2688 pr_debug("invalid all zero ethernet address\n");
2689 return -EADDRNOTAVAIL;
2690 }
2691 }
2692
2693 if (!data)
2694 return -EINVAL;
2695
2696 if (data[IFLA_VXLAN_ID]) {
2697 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
Matthias Schiffer4e37d692017-02-23 17:19:41 +01002698 if (id >= VXLAN_N_VID)
stephen hemmingerd3428942012-10-01 12:32:35 +00002699 return -ERANGE;
2700 }
2701
stephen hemminger05f47d62012-10-09 20:35:50 +00002702 if (data[IFLA_VXLAN_PORT_RANGE]) {
2703 const struct ifla_vxlan_port_range *p
2704 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2705
2706 if (ntohs(p->high) < ntohs(p->low)) {
2707 pr_debug("port range %u .. %u not valid\n",
2708 ntohs(p->low), ntohs(p->high));
2709 return -EINVAL;
2710 }
2711 }
2712
stephen hemmingerd3428942012-10-01 12:32:35 +00002713 return 0;
2714}
2715
Yan Burman1b13c972013-01-29 23:43:07 +00002716static void vxlan_get_drvinfo(struct net_device *netdev,
2717 struct ethtool_drvinfo *drvinfo)
2718{
2719 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2720 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2721}
2722
2723static const struct ethtool_ops vxlan_ethtool_ops = {
2724 .get_drvinfo = vxlan_get_drvinfo,
2725 .get_link = ethtool_op_get_link,
2726};
2727
Tom Herbert3ee64f32014-07-13 19:49:42 -07002728static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2729 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002730{
Cong Wange4c7ed42013-08-31 13:44:33 +08002731 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002732 struct udp_port_cfg udp_conf;
2733 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002734
Tom Herbert3ee64f32014-07-13 19:49:42 -07002735 memset(&udp_conf, 0, sizeof(udp_conf));
2736
2737 if (ipv6) {
2738 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002739 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002740 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02002741 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002742 } else {
2743 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002744 }
2745
Tom Herbert3ee64f32014-07-13 19:49:42 -07002746 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002747
Tom Herbert3ee64f32014-07-13 19:49:42 -07002748 /* Open UDP socket */
2749 err = udp_sock_create(net, &udp_conf, &sock);
2750 if (err < 0)
2751 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002752
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002753 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002754}
2755
2756/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02002757static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
2758 __be16 port, u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002759{
2760 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2761 struct vxlan_sock *vs;
2762 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002763 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002764 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002765
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002766 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002767 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002768 return ERR_PTR(-ENOMEM);
2769
2770 for (h = 0; h < VNI_HASH_SIZE; ++h)
2771 INIT_HLIST_HEAD(&vs->vni_list[h]);
2772
Tom Herbert3ee64f32014-07-13 19:49:42 -07002773 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002774 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002775 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002776 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002777 }
2778
Cong Wange4c7ed42013-08-31 13:44:33 +08002779 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002780 atomic_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002781 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00002782
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002783 spin_lock(&vn->sock_lock);
2784 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07002785 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07002786 (vs->flags & VXLAN_F_GPE) ?
2787 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07002788 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002789 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002790
2791 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07002792 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07002793 tunnel_cfg.sk_user_data = vs;
2794 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01002795 tunnel_cfg.encap_rcv = vxlan_rcv;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002796 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07002797 tunnel_cfg.gro_receive = vxlan_gro_receive;
2798 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002799
2800 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002801
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002802 return vs;
2803}
stephen hemminger553675f2013-05-16 11:35:20 +00002804
Jiri Bencb1be00a2015-09-24 13:50:02 +02002805static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002806{
Jiri Benc205f3562015-09-24 13:50:01 +02002807 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2808 struct vxlan_sock *vs = NULL;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002809
Jiri Benc205f3562015-09-24 13:50:01 +02002810 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002811 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002812 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
2813 vxlan->cfg.dst_port, vxlan->flags);
2814 if (vs && !atomic_add_unless(&vs->refcnt, 1, 0)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002815 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002816 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002817 }
2818 spin_unlock(&vn->sock_lock);
2819 }
Jiri Benc205f3562015-09-24 13:50:01 +02002820 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002821 vs = vxlan_socket_create(vxlan->net, ipv6,
2822 vxlan->cfg.dst_port, vxlan->flags);
Jiri Benc205f3562015-09-24 13:50:01 +02002823 if (IS_ERR(vs))
2824 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002825#if IS_ENABLED(CONFIG_IPV6)
2826 if (ipv6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002827 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002828 else
2829#endif
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002830 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc205f3562015-09-24 13:50:01 +02002831 vxlan_vs_add_dev(vs, vxlan);
2832 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00002833}
2834
Jiri Bencb1be00a2015-09-24 13:50:02 +02002835static int vxlan_sock_add(struct vxlan_dev *vxlan)
2836{
Jiri Bencb1be00a2015-09-24 13:50:02 +02002837 bool metadata = vxlan->flags & VXLAN_F_COLLECT_METADATA;
Jiri Bencd074bf92017-04-27 21:24:35 +02002838 bool ipv6 = vxlan->flags & VXLAN_F_IPV6 || metadata;
2839 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002840 int ret = 0;
2841
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002842 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002843#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002844 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02002845 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02002846 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02002847 if (ret < 0 && ret != -EAFNOSUPPORT)
2848 ipv4 = false;
2849 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002850#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02002851 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002852 ret = __vxlan_sock_add(vxlan, false);
2853 if (ret < 0)
2854 vxlan_sock_release(vxlan);
2855 return ret;
2856}
2857
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002858static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002859 struct vxlan_config *conf,
2860 bool changelink)
stephen hemmingerd3428942012-10-01 12:32:35 +00002861{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002862 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002863 struct vxlan_dev *vxlan = netdev_priv(dev), *tmp;
Atzm Watanabec7995c42013-04-16 02:50:52 +00002864 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002865 unsigned short needed_headroom = ETH_HLEN;
Cong Wange4c7ed42013-08-31 13:44:33 +08002866 bool use_ipv6 = false;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002867 __be16 default_port = vxlan->cfg.dst_port;
David Wragg7e059152016-02-10 00:05:58 +00002868 struct net_device *lowerdev = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00002869
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002870 if (!changelink) {
2871 if (conf->flags & VXLAN_F_GPE) {
2872 /* For now, allow GPE only together with
2873 * COLLECT_METADATA. This can be relaxed later; in such
2874 * case, the other side of the PtP link will have to be
2875 * provided.
2876 */
2877 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
2878 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
2879 pr_info("unsupported combination of extensions\n");
2880 return -EINVAL;
2881 }
2882 vxlan_raw_setup(dev);
2883 } else {
2884 vxlan_ether_setup(dev);
Jiri Benc35556212016-09-02 13:37:12 +02002885 }
Jiri Bence1e53142016-04-05 14:47:13 +02002886
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002887 /* MTU range: 68 - 65535 */
2888 dev->min_mtu = ETH_MIN_MTU;
2889 dev->max_mtu = ETH_MAX_MTU;
2890 vxlan->net = src_net;
Jiri Bence1e53142016-04-05 14:47:13 +02002891 }
Jiri Benc0c867c92016-04-05 14:47:10 +02002892
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002893 dst->remote_vni = conf->vni;
2894
2895 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00002896
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002897 /* Unless IPv6 is explicitly requested, assume IPv4 */
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002898 if (!dst->remote_ip.sa.sa_family)
2899 dst->remote_ip.sa.sa_family = AF_INET;
stephen hemmingerd3428942012-10-01 12:32:35 +00002900
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002901 if (dst->remote_ip.sa.sa_family == AF_INET6 ||
Jiri Benc057ba292015-09-17 16:11:11 +02002902 vxlan->cfg.saddr.sa.sa_family == AF_INET6) {
2903 if (!IS_ENABLED(CONFIG_IPV6))
2904 return -EPFNOSUPPORT;
Cong Wange4c7ed42013-08-31 13:44:33 +08002905 use_ipv6 = true;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002906 vxlan->flags |= VXLAN_F_IPV6;
Jiri Benc057ba292015-09-17 16:11:11 +02002907 }
Cong Wange4c7ed42013-08-31 13:44:33 +08002908
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002909 if (conf->label && !use_ipv6) {
2910 pr_info("label only supported in use with IPv6\n");
2911 return -EINVAL;
2912 }
2913
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002914 if (conf->remote_ifindex &&
2915 conf->remote_ifindex != vxlan->cfg.remote_ifindex) {
David Wragg7e059152016-02-10 00:05:58 +00002916 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002917 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00002918
stephen hemminger34e02aa2012-10-09 20:35:53 +00002919 if (!lowerdev) {
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002920 pr_info("ifindex %d does not exist\n",
2921 dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002922 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002923 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002924
Cong Wange4c7ed42013-08-31 13:44:33 +08002925#if IS_ENABLED(CONFIG_IPV6)
2926 if (use_ipv6) {
2927 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2928 if (idev && idev->cnf.disable_ipv6) {
2929 pr_info("IPv6 is disabled via sysctl\n");
2930 return -EPERM;
2931 }
Cong Wange4c7ed42013-08-31 13:44:33 +08002932 }
2933#endif
2934
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002935 if (!conf->mtu)
Jarod Wilson91572082016-10-20 13:55:20 -04002936 dev->mtu = lowerdev->mtu -
2937 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002938
Jiri Bencb1be00a2015-09-24 13:50:02 +02002939 needed_headroom = lowerdev->hard_header_len;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002940 } else if (!conf->remote_ifindex &&
2941 vxlan_addr_multicast(&dst->remote_ip)) {
Jiri Benc9b4cdd52016-09-02 13:37:11 +02002942 pr_info("multicast destination requires interface to be specified\n");
2943 return -EINVAL;
Jiri Benc9dc2ad12015-09-17 16:11:10 +02002944 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002945
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07002946 if (lowerdev) {
2947 dev->gso_max_size = lowerdev->gso_max_size;
2948 dev->gso_max_segs = lowerdev->gso_max_segs;
2949 }
2950
David Wragg7e059152016-02-10 00:05:58 +00002951 if (conf->mtu) {
Jarod Wilson91572082016-10-20 13:55:20 -04002952 int max_mtu = ETH_MAX_MTU;
2953
2954 if (lowerdev)
2955 max_mtu = lowerdev->mtu;
2956
2957 max_mtu -= (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2958
2959 if (conf->mtu < dev->min_mtu || conf->mtu > dev->max_mtu)
2960 return -EINVAL;
2961
2962 dev->mtu = conf->mtu;
2963
2964 if (conf->mtu > max_mtu)
2965 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00002966 }
2967
Jiri Bencb1be00a2015-09-24 13:50:02 +02002968 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
2969 needed_headroom += VXLAN6_HEADROOM;
2970 else
2971 needed_headroom += VXLAN_HEADROOM;
2972 dev->needed_headroom = needed_headroom;
2973
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002974 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Jiri Bence1e53142016-04-05 14:47:13 +02002975 if (!vxlan->cfg.dst_port) {
2976 if (conf->flags & VXLAN_F_GPE)
Lance Richardsond5ff72d2017-01-16 18:37:58 -05002977 vxlan->cfg.dst_port = htons(4790); /* IANA VXLAN-GPE port */
Jiri Bence1e53142016-04-05 14:47:13 +02002978 else
2979 vxlan->cfg.dst_port = default_port;
2980 }
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002981 vxlan->flags |= conf->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00002982
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002983 if (!vxlan->cfg.age_interval)
2984 vxlan->cfg.age_interval = FDB_AGE_DEFAULT;
Vincent Bernatafb97182012-10-30 10:27:16 +00002985
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002986 if (changelink)
2987 return 0;
2988
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002989 list_for_each_entry(tmp, &vn->vxlan_list, next) {
2990 if (tmp->cfg.vni == conf->vni &&
2991 (tmp->default_dst.remote_ip.sa.sa_family == AF_INET6 ||
2992 tmp->cfg.saddr.sa.sa_family == AF_INET6) == use_ipv6 &&
2993 tmp->cfg.dst_port == vxlan->cfg.dst_port &&
2994 (tmp->flags & VXLAN_F_RCV_FLAGS) ==
Jiri Benc35556212016-09-02 13:37:12 +02002995 (vxlan->flags & VXLAN_F_RCV_FLAGS)) {
2996 pr_info("duplicate VNI %u\n", be32_to_cpu(conf->vni));
2997 return -EEXIST;
2998 }
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002999 }
stephen hemminger553675f2013-05-16 11:35:20 +00003000
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003001 return 0;
3002}
3003
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003004static int __vxlan_dev_create(struct net *net, struct net_device *dev,
3005 struct vxlan_config *conf)
3006{
3007 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3008 struct vxlan_dev *vxlan = netdev_priv(dev);
3009 int err;
3010
3011 err = vxlan_dev_configure(net, dev, conf, false);
3012 if (err)
3013 return err;
3014
3015 dev->ethtool_ops = &vxlan_ethtool_ops;
3016
3017 /* create an fdb entry for a valid default destination */
3018 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
3019 err = vxlan_fdb_create(vxlan, all_zeros_mac,
3020 &vxlan->default_dst.remote_ip,
3021 NUD_REACHABLE | NUD_PERMANENT,
3022 NLM_F_EXCL | NLM_F_CREATE,
3023 vxlan->cfg.dst_port,
3024 vxlan->default_dst.remote_vni,
3025 vxlan->default_dst.remote_vni,
3026 vxlan->default_dst.remote_ifindex,
3027 NTF_SELF);
3028 if (err)
3029 return err;
3030 }
3031
3032 err = register_netdevice(dev);
3033 if (err) {
3034 vxlan_fdb_delete_default(vxlan, vxlan->default_dst.remote_vni);
3035 return err;
3036 }
3037
3038 list_add(&vxlan->next, &vn->vxlan_list);
3039 return 0;
3040}
3041
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003042static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3043 struct net_device *dev, struct vxlan_config *conf,
3044 bool changelink)
3045{
3046 struct vxlan_dev *vxlan = netdev_priv(dev);
3047
3048 memset(conf, 0, sizeof(*conf));
3049
3050 /* if changelink operation, start with old existing cfg */
3051 if (changelink)
3052 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3053
3054 if (data[IFLA_VXLAN_ID]) {
3055 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3056
3057 if (changelink && (vni != conf->vni))
3058 return -EOPNOTSUPP;
3059 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3060 }
3061
3062 if (data[IFLA_VXLAN_GROUP]) {
3063 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
3064 } else if (data[IFLA_VXLAN_GROUP6]) {
3065 if (!IS_ENABLED(CONFIG_IPV6))
3066 return -EPFNOSUPPORT;
3067
3068 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3069 conf->remote_ip.sa.sa_family = AF_INET6;
3070 }
3071
3072 if (data[IFLA_VXLAN_LOCAL]) {
3073 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3074 conf->saddr.sa.sa_family = AF_INET;
3075 } else if (data[IFLA_VXLAN_LOCAL6]) {
3076 if (!IS_ENABLED(CONFIG_IPV6))
3077 return -EPFNOSUPPORT;
3078
3079 /* TODO: respect scope id */
3080 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3081 conf->saddr.sa.sa_family = AF_INET6;
3082 }
3083
3084 if (data[IFLA_VXLAN_LINK])
3085 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3086
3087 if (data[IFLA_VXLAN_TOS])
3088 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3089
3090 if (data[IFLA_VXLAN_TTL])
3091 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3092
3093 if (data[IFLA_VXLAN_LABEL])
3094 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3095 IPV6_FLOWLABEL_MASK;
3096
3097 if (data[IFLA_VXLAN_LEARNING]) {
3098 if (nla_get_u8(data[IFLA_VXLAN_LEARNING])) {
3099 conf->flags |= VXLAN_F_LEARN;
3100 } else {
3101 conf->flags &= ~VXLAN_F_LEARN;
3102 vxlan->flags &= ~VXLAN_F_LEARN;
3103 }
3104 } else if (!changelink) {
3105 /* default to learn on a new device */
3106 conf->flags |= VXLAN_F_LEARN;
3107 }
3108
3109 if (data[IFLA_VXLAN_AGEING]) {
3110 if (changelink)
3111 return -EOPNOTSUPP;
3112 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
3113 }
3114
3115 if (data[IFLA_VXLAN_PROXY]) {
3116 if (changelink)
3117 return -EOPNOTSUPP;
3118 if (nla_get_u8(data[IFLA_VXLAN_PROXY]))
3119 conf->flags |= VXLAN_F_PROXY;
3120 }
3121
3122 if (data[IFLA_VXLAN_RSC]) {
3123 if (changelink)
3124 return -EOPNOTSUPP;
3125 if (nla_get_u8(data[IFLA_VXLAN_RSC]))
3126 conf->flags |= VXLAN_F_RSC;
3127 }
3128
3129 if (data[IFLA_VXLAN_L2MISS]) {
3130 if (changelink)
3131 return -EOPNOTSUPP;
3132 if (nla_get_u8(data[IFLA_VXLAN_L2MISS]))
3133 conf->flags |= VXLAN_F_L2MISS;
3134 }
3135
3136 if (data[IFLA_VXLAN_L3MISS]) {
3137 if (changelink)
3138 return -EOPNOTSUPP;
3139 if (nla_get_u8(data[IFLA_VXLAN_L3MISS]))
3140 conf->flags |= VXLAN_F_L3MISS;
3141 }
3142
3143 if (data[IFLA_VXLAN_LIMIT]) {
3144 if (changelink)
3145 return -EOPNOTSUPP;
3146 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3147 }
3148
3149 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
3150 if (changelink)
3151 return -EOPNOTSUPP;
3152 if (nla_get_u8(data[IFLA_VXLAN_COLLECT_METADATA]))
3153 conf->flags |= VXLAN_F_COLLECT_METADATA;
3154 }
3155
3156 if (data[IFLA_VXLAN_PORT_RANGE]) {
3157 if (!changelink) {
3158 const struct ifla_vxlan_port_range *p
3159 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3160 conf->port_min = ntohs(p->low);
3161 conf->port_max = ntohs(p->high);
3162 } else {
3163 return -EOPNOTSUPP;
3164 }
3165 }
3166
3167 if (data[IFLA_VXLAN_PORT]) {
3168 if (changelink)
3169 return -EOPNOTSUPP;
3170 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3171 }
3172
3173 if (data[IFLA_VXLAN_UDP_CSUM]) {
3174 if (changelink)
3175 return -EOPNOTSUPP;
3176 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3177 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3178 }
3179
3180 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
3181 if (changelink)
3182 return -EOPNOTSUPP;
3183 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
3184 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
3185 }
3186
3187 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
3188 if (changelink)
3189 return -EOPNOTSUPP;
3190 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
3191 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
3192 }
3193
3194 if (data[IFLA_VXLAN_REMCSUM_TX]) {
3195 if (changelink)
3196 return -EOPNOTSUPP;
3197 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
3198 conf->flags |= VXLAN_F_REMCSUM_TX;
3199 }
3200
3201 if (data[IFLA_VXLAN_REMCSUM_RX]) {
3202 if (changelink)
3203 return -EOPNOTSUPP;
3204 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
3205 conf->flags |= VXLAN_F_REMCSUM_RX;
3206 }
3207
3208 if (data[IFLA_VXLAN_GBP]) {
3209 if (changelink)
3210 return -EOPNOTSUPP;
3211 conf->flags |= VXLAN_F_GBP;
3212 }
3213
3214 if (data[IFLA_VXLAN_GPE]) {
3215 if (changelink)
3216 return -EOPNOTSUPP;
3217 conf->flags |= VXLAN_F_GPE;
3218 }
3219
3220 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
3221 if (changelink)
3222 return -EOPNOTSUPP;
3223 conf->flags |= VXLAN_F_REMCSUM_NOPARTIAL;
3224 }
3225
3226 if (tb[IFLA_MTU]) {
3227 if (changelink)
3228 return -EOPNOTSUPP;
3229 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3230 }
3231
3232 return 0;
3233}
3234
3235static int vxlan_newlink(struct net *src_net, struct net_device *dev,
3236 struct nlattr *tb[], struct nlattr *data[])
3237{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003238 struct vxlan_config conf;
3239 int err;
3240
3241 err = vxlan_nl2conf(tb, data, dev, &conf, false);
3242 if (err)
3243 return err;
3244
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003245 return __vxlan_dev_create(src_net, dev, &conf);
stephen hemmingerd3428942012-10-01 12:32:35 +00003246}
3247
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003248static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
3249 struct nlattr *data[])
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003250{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003251 struct vxlan_dev *vxlan = netdev_priv(dev);
3252 struct vxlan_rdst *dst = &vxlan->default_dst;
3253 struct vxlan_rdst old_dst;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003254 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003255 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003256
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003257 err = vxlan_nl2conf(tb, data,
3258 dev, &conf, true);
3259 if (err)
3260 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003261
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003262 memcpy(&old_dst, dst, sizeof(struct vxlan_rdst));
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003263
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003264 err = vxlan_dev_configure(vxlan->net, dev, &conf, true);
3265 if (err)
3266 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003267
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003268 /* handle default dst entry */
3269 if (!vxlan_addr_equal(&dst->remote_ip, &old_dst.remote_ip)) {
3270 spin_lock_bh(&vxlan->hash_lock);
3271 if (!vxlan_addr_any(&old_dst.remote_ip))
3272 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3273 old_dst.remote_ip,
3274 vxlan->cfg.dst_port,
3275 old_dst.remote_vni,
3276 old_dst.remote_vni,
3277 old_dst.remote_ifindex, 0);
3278
3279 if (!vxlan_addr_any(&dst->remote_ip)) {
3280 err = vxlan_fdb_create(vxlan, all_zeros_mac,
3281 &dst->remote_ip,
3282 NUD_REACHABLE | NUD_PERMANENT,
3283 NLM_F_CREATE | NLM_F_APPEND,
3284 vxlan->cfg.dst_port,
3285 dst->remote_vni,
3286 dst->remote_vni,
3287 dst->remote_ifindex,
3288 NTF_SELF);
3289 if (err) {
3290 spin_unlock_bh(&vxlan->hash_lock);
3291 return err;
3292 }
3293 }
3294 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003295 }
3296
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003297 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003298}
3299
stephen hemmingerd3428942012-10-01 12:32:35 +00003300static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3301{
3302 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003303 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00003304
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003305 vxlan_flush(vxlan, true);
3306
stephen hemmingerfe5c3562013-07-13 10:18:18 -07003307 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07003308 if (!hlist_unhashed(&vxlan->hlist))
3309 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07003310 spin_unlock(&vn->sock_lock);
3311
Tom Herbert58ce31c2015-08-19 17:07:33 -07003312 gro_cells_destroy(&vxlan->gro_cells);
stephen hemminger553675f2013-05-16 11:35:20 +00003313 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003314 unregister_netdevice_queue(dev, head);
3315}
3316
3317static size_t vxlan_get_size(const struct net_device *dev)
3318{
3319
3320 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003321 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003322 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003323 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003324 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
3325 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003326 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003327 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003328 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3329 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3330 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3331 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003332 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003333 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3334 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003335 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003336 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3337 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3338 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3339 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003340 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3341 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003342 0;
3343}
3344
3345static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3346{
3347 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003348 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003349 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003350 .low = htons(vxlan->cfg.port_min),
3351 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003352 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003353
Jiri Benc54bfd872016-02-16 21:58:58 +01003354 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003355 goto nla_put_failure;
3356
Cong Wange4c7ed42013-08-31 13:44:33 +08003357 if (!vxlan_addr_any(&dst->remote_ip)) {
3358 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003359 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3360 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003361 goto nla_put_failure;
3362#if IS_ENABLED(CONFIG_IPV6)
3363 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003364 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
3365 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003366 goto nla_put_failure;
3367#endif
3368 }
3369 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003370
Atzm Watanabec7995c42013-04-16 02:50:52 +00003371 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00003372 goto nla_put_failure;
3373
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003374 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
3375 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003376 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003377 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003378 goto nla_put_failure;
3379#if IS_ENABLED(CONFIG_IPV6)
3380 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003381 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003382 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003383 goto nla_put_failure;
3384#endif
3385 }
3386 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003387
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003388 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
3389 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003390 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003391 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
3392 !!(vxlan->flags & VXLAN_F_LEARN)) ||
3393 nla_put_u8(skb, IFLA_VXLAN_PROXY,
3394 !!(vxlan->flags & VXLAN_F_PROXY)) ||
3395 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
3396 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
3397 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
3398 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
3399 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003400 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
3401 !!(vxlan->flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003402 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
3403 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
3404 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003405 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08003406 !(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003407 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
3408 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
3409 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Tom Herbertdfd86452015-01-12 17:00:38 -08003410 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
3411 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
3412 !!(vxlan->flags & VXLAN_F_REMCSUM_TX)) ||
3413 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
3414 !!(vxlan->flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003415 goto nla_put_failure;
3416
stephen hemminger05f47d62012-10-09 20:35:50 +00003417 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
3418 goto nla_put_failure;
3419
Thomas Graf35114942015-01-15 03:53:55 +01003420 if (vxlan->flags & VXLAN_F_GBP &&
3421 nla_put_flag(skb, IFLA_VXLAN_GBP))
3422 goto nla_put_failure;
3423
Jiri Bence1e53142016-04-05 14:47:13 +02003424 if (vxlan->flags & VXLAN_F_GPE &&
3425 nla_put_flag(skb, IFLA_VXLAN_GPE))
3426 goto nla_put_failure;
3427
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003428 if (vxlan->flags & VXLAN_F_REMCSUM_NOPARTIAL &&
3429 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
3430 goto nla_put_failure;
3431
stephen hemmingerd3428942012-10-01 12:32:35 +00003432 return 0;
3433
3434nla_put_failure:
3435 return -EMSGSIZE;
3436}
3437
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003438static struct net *vxlan_get_link_net(const struct net_device *dev)
3439{
3440 struct vxlan_dev *vxlan = netdev_priv(dev);
3441
3442 return vxlan->net;
3443}
3444
stephen hemmingerd3428942012-10-01 12:32:35 +00003445static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
3446 .kind = "vxlan",
3447 .maxtype = IFLA_VXLAN_MAX,
3448 .policy = vxlan_policy,
3449 .priv_size = sizeof(struct vxlan_dev),
3450 .setup = vxlan_setup,
3451 .validate = vxlan_validate,
3452 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003453 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00003454 .dellink = vxlan_dellink,
3455 .get_size = vxlan_get_size,
3456 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003457 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003458};
3459
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003460struct net_device *vxlan_dev_create(struct net *net, const char *name,
3461 u8 name_assign_type,
3462 struct vxlan_config *conf)
3463{
3464 struct nlattr *tb[IFLA_MAX + 1];
3465 struct net_device *dev;
3466 int err;
3467
3468 memset(&tb, 0, sizeof(tb));
3469
3470 dev = rtnl_create_link(net, name, name_assign_type,
3471 &vxlan_link_ops, tb);
3472 if (IS_ERR(dev))
3473 return dev;
3474
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003475 err = __vxlan_dev_create(net, dev, conf);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003476 if (err < 0) {
3477 free_netdev(dev);
3478 return ERR_PTR(err);
3479 }
3480
3481 err = rtnl_configure_link(dev, NULL);
3482 if (err < 0) {
3483 LIST_HEAD(list_kill);
3484
3485 vxlan_dellink(dev, &list_kill);
3486 unregister_netdevice_many(&list_kill);
3487 return ERR_PTR(err);
3488 }
3489
3490 return dev;
3491}
3492EXPORT_SYMBOL_GPL(vxlan_dev_create);
3493
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003494static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
3495 struct net_device *dev)
3496{
3497 struct vxlan_dev *vxlan, *next;
3498 LIST_HEAD(list_kill);
3499
3500 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3501 struct vxlan_rdst *dst = &vxlan->default_dst;
3502
3503 /* In case we created vxlan device with carrier
3504 * and we loose the carrier due to module unload
3505 * we also need to remove vxlan device. In other
3506 * cases, it's not necessary and remote_ifindex
3507 * is 0 here, so no matches.
3508 */
3509 if (dst->remote_ifindex == dev->ifindex)
3510 vxlan_dellink(vxlan->dev, &list_kill);
3511 }
3512
3513 unregister_netdevice_many(&list_kill);
3514}
3515
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003516static int vxlan_netdevice_event(struct notifier_block *unused,
3517 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003518{
3519 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003520 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003521
Daniel Borkmann783c1462014-01-22 21:07:53 +01003522 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003523 vxlan_handle_lowerdev_unregister(vn, dev);
Alexander Duyck7c46a642016-06-16 12:21:00 -07003524 else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO)
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003525 vxlan_push_rx_ports(dev);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003526
3527 return NOTIFY_DONE;
3528}
3529
3530static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003531 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003532};
3533
stephen hemmingerd3428942012-10-01 12:32:35 +00003534static __net_init int vxlan_init_net(struct net *net)
3535{
3536 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00003537 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00003538
stephen hemminger553675f2013-05-16 11:35:20 +00003539 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07003540 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00003541
stephen hemminger553675f2013-05-16 11:35:20 +00003542 for (h = 0; h < PORT_HASH_SIZE; ++h)
3543 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00003544
3545 return 0;
3546}
3547
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003548static void __net_exit vxlan_exit_net(struct net *net)
3549{
3550 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3551 struct vxlan_dev *vxlan, *next;
3552 struct net_device *dev, *aux;
3553 LIST_HEAD(list);
3554
3555 rtnl_lock();
3556 for_each_netdev_safe(net, dev, aux)
3557 if (dev->rtnl_link_ops == &vxlan_link_ops)
3558 unregister_netdevice_queue(dev, &list);
3559
3560 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3561 /* If vxlan->dev is in the same netns, it has already been added
3562 * to the list by the previous loop.
3563 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07003564 if (!net_eq(dev_net(vxlan->dev), net)) {
3565 gro_cells_destroy(&vxlan->gro_cells);
John W. Linville13c3ed62015-05-18 13:51:24 -04003566 unregister_netdevice_queue(vxlan->dev, &list);
Tom Herbert58ce31c2015-08-19 17:07:33 -07003567 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003568 }
3569
3570 unregister_netdevice_many(&list);
3571 rtnl_unlock();
3572}
3573
stephen hemmingerd3428942012-10-01 12:32:35 +00003574static struct pernet_operations vxlan_net_ops = {
3575 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003576 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003577 .id = &vxlan_net_id,
3578 .size = sizeof(struct vxlan_net),
3579};
3580
3581static int __init vxlan_init_module(void)
3582{
3583 int rc;
3584
3585 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3586
Daniel Borkmann783c1462014-01-22 21:07:53 +01003587 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003588 if (rc)
3589 goto out1;
3590
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003591 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003592 if (rc)
3593 goto out2;
3594
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003595 rc = rtnl_link_register(&vxlan_link_ops);
3596 if (rc)
3597 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003598
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003599 return 0;
3600out3:
3601 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003602out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003603 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003604out1:
3605 return rc;
3606}
Cong Wang7332a132013-05-27 22:35:53 +00003607late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003608
3609static void __exit vxlan_cleanup_module(void)
3610{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003611 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003612 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003613 unregister_pernet_subsys(&vxlan_net_ops);
3614 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003615}
3616module_exit(vxlan_cleanup_module);
3617
3618MODULE_LICENSE("GPL");
3619MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003620MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003621MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003622MODULE_ALIAS_RTNL_LINK("vxlan");