blob: 94ce982298288facf8f752735451470c86136f74 [file] [log] [blame]
stephen hemmingerd3428942012-10-01 12:32:35 +00001/*
Rami Roseneb5ce432012-11-13 13:29:15 +00002 * VXLAN: Virtual eXtensible Local Area Network
stephen hemmingerd3428942012-10-01 12:32:35 +00003 *
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004 * Copyright (c) 2012-2013 Vyatta Inc.
stephen hemmingerd3428942012-10-01 12:32:35 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
stephen hemmingerd3428942012-10-01 12:32:35 +00009 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/kernel.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000014#include <linux/module.h>
15#include <linux/errno.h>
16#include <linux/slab.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000017#include <linux/udp.h>
18#include <linux/igmp.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000019#include <linux/if_ether.h>
Yan Burman1b13c972013-01-29 23:43:07 +000020#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000021#include <net/arp.h>
22#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000023#include <net/ip.h>
24#include <net/icmp.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000025#include <net/rtnetlink.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000026#include <net/inet_ecn.h>
27#include <net/net_namespace.h>
28#include <net/netns/generic.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070029#include <net/vxlan.h>
stephen hemminger40d29af2016-02-09 22:07:29 -080030
Cong Wange4c7ed42013-08-31 13:44:33 +080031#if IS_ENABLED(CONFIG_IPV6)
Cong Wange4c7ed42013-08-31 13:44:33 +080032#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080033#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080034#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000035
36#define VXLAN_VERSION "0.1"
37
stephen hemminger553675f2013-05-16 11:35:20 +000038#define PORT_HASH_BITS 8
39#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000040#define FDB_AGE_DEFAULT 300 /* 5 min */
41#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
42
stephen hemminger23c578b2013-04-27 11:31:53 +000043/* UDP port for VXLAN traffic.
44 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070045 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000046 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070047static unsigned short vxlan_port __read_mostly = 8472;
48module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000049MODULE_PARM_DESC(udp_port, "Destination UDP port");
50
51static bool log_ecn_error = true;
52module_param(log_ecn_error, bool, 0644);
53MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
54
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +030055static unsigned int vxlan_net_id;
Thomas Graf0dfbdf42015-07-21 10:44:02 +020056static struct rtnl_link_ops vxlan_link_ops;
stephen hemminger553675f2013-05-16 11:35:20 +000057
Li RongQing7256eac2016-01-29 09:43:47 +080058static const u8 all_zeros_mac[ETH_ALEN + 2];
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030059
Jiri Benc205f3562015-09-24 13:50:01 +020060static int vxlan_sock_add(struct vxlan_dev *vxlan);
Thomas Graf614732e2015-07-21 10:44:06 +020061
Mark Blocha53cb292017-06-02 03:24:08 +030062static void vxlan_vs_del_dev(struct vxlan_dev *vxlan);
63
stephen hemminger553675f2013-05-16 11:35:20 +000064/* per-network namespace private data for this module */
65struct vxlan_net {
66 struct list_head vxlan_list;
67 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070068 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000069};
70
stephen hemmingerd3428942012-10-01 12:32:35 +000071/* Forwarding table entry */
72struct vxlan_fdb {
73 struct hlist_node hlist; /* linked list of entries */
74 struct rcu_head rcu;
75 unsigned long updated; /* jiffies */
76 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070077 struct list_head remotes;
Sowmini Varadhan7177a3b2015-07-20 09:54:50 +020078 u8 eth_addr[ETH_ALEN];
stephen hemmingerd3428942012-10-01 12:32:35 +000079 u16 state; /* see ndm_state */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -080080 __be32 vni;
David Stevensae884082013-04-19 00:36:26 +000081 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +000082};
83
stephen hemmingerd3428942012-10-01 12:32:35 +000084/* salt for hash table */
85static u32 vxlan_salt __read_mostly;
86
Thomas Grafee122c72015-07-21 10:43:58 +020087static inline bool vxlan_collect_metadata(struct vxlan_sock *vs)
88{
Thomas Grafe7030872015-07-21 10:44:01 +020089 return vs->flags & VXLAN_F_COLLECT_METADATA ||
90 ip_tunnel_collect_metadata();
Thomas Grafee122c72015-07-21 10:43:58 +020091}
92
Cong Wange4c7ed42013-08-31 13:44:33 +080093#if IS_ENABLED(CONFIG_IPV6)
94static inline
95bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
96{
Jiri Bencf0ef3122015-03-29 16:17:37 +020097 if (a->sa.sa_family != b->sa.sa_family)
98 return false;
99 if (a->sa.sa_family == AF_INET6)
100 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
101 else
102 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800103}
104
105static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
106{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200107 if (ipa->sa.sa_family == AF_INET6)
108 return ipv6_addr_any(&ipa->sin6.sin6_addr);
109 else
110 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800111}
112
113static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
114{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200115 if (ipa->sa.sa_family == AF_INET6)
116 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
117 else
118 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800119}
120
121static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
122{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200123 if (nla_len(nla) >= sizeof(struct in6_addr)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200124 ip->sin6.sin6_addr = nla_get_in6_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200125 ip->sa.sa_family = AF_INET6;
126 return 0;
127 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200128 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200129 ip->sa.sa_family = AF_INET;
130 return 0;
131 } else {
132 return -EAFNOSUPPORT;
133 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800134}
135
136static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200137 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800138{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200139 if (ip->sa.sa_family == AF_INET6)
Jiri Benc930345e2015-03-29 16:59:25 +0200140 return nla_put_in6_addr(skb, attr, &ip->sin6.sin6_addr);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200141 else
Jiri Benc930345e2015-03-29 16:59:25 +0200142 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800143}
144
145#else /* !CONFIG_IPV6 */
146
147static inline
148bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
149{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200150 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
Cong Wange4c7ed42013-08-31 13:44:33 +0800151}
152
153static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
154{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200155 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
Cong Wange4c7ed42013-08-31 13:44:33 +0800156}
157
158static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
159{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200160 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
Cong Wange4c7ed42013-08-31 13:44:33 +0800161}
162
163static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
164{
Jiri Bencf0ef3122015-03-29 16:17:37 +0200165 if (nla_len(nla) >= sizeof(struct in6_addr)) {
166 return -EAFNOSUPPORT;
167 } else if (nla_len(nla) >= sizeof(__be32)) {
Jiri Benc67b61f62015-03-29 16:59:26 +0200168 ip->sin.sin_addr.s_addr = nla_get_in_addr(nla);
Jiri Bencf0ef3122015-03-29 16:17:37 +0200169 ip->sa.sa_family = AF_INET;
170 return 0;
171 } else {
172 return -EAFNOSUPPORT;
173 }
Cong Wange4c7ed42013-08-31 13:44:33 +0800174}
175
176static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
Jiri Bencf0ef3122015-03-29 16:17:37 +0200177 const union vxlan_addr *ip)
Cong Wange4c7ed42013-08-31 13:44:33 +0800178{
Jiri Benc930345e2015-03-29 16:59:25 +0200179 return nla_put_in_addr(skb, attr, ip->sin.sin_addr.s_addr);
Cong Wange4c7ed42013-08-31 13:44:33 +0800180}
181#endif
182
stephen hemminger553675f2013-05-16 11:35:20 +0000183/* Virtual Network hash table head */
Jiri Benc54bfd872016-02-16 21:58:58 +0100184static inline struct hlist_head *vni_head(struct vxlan_sock *vs, __be32 vni)
stephen hemminger553675f2013-05-16 11:35:20 +0000185{
Jiri Benc54bfd872016-02-16 21:58:58 +0100186 return &vs->vni_list[hash_32((__force u32)vni, VNI_HASH_BITS)];
stephen hemminger553675f2013-05-16 11:35:20 +0000187}
188
189/* Socket hash table head */
190static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000191{
192 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
193
stephen hemminger553675f2013-05-16 11:35:20 +0000194 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
195}
196
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700197/* First remote destination for a forwarding entry.
198 * Guaranteed to be non-NULL because remotes are never deleted.
199 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700200static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700201{
stephen hemminger5ca54612013-08-04 17:17:39 -0700202 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
203}
204
205static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
206{
207 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700208}
209
Thomas Grafac5132d2015-01-15 03:53:56 +0100210/* Find VXLAN socket based on network namespace, address family and UDP port
211 * and enabled unshareable flags.
212 */
213static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
214 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000215{
216 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800217
218 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000219
220 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200221 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Jiri Benc705cc622015-08-20 13:56:28 +0200222 vxlan_get_sk_family(vs) == family &&
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800223 vs->flags == flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000224 return vs;
225 }
226 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000227}
228
Jiri Benc54bfd872016-02-16 21:58:58 +0100229static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000230{
231 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000232
Jiri Bencb9167b22016-02-16 21:59:03 +0100233 /* For flow based devices, map all packets to VNI 0 */
234 if (vs->flags & VXLAN_F_COLLECT_METADATA)
235 vni = 0;
236
Jiri Benc54bfd872016-02-16 21:58:58 +0100237 hlist_for_each_entry_rcu(vxlan, vni_head(vs, vni), hlist) {
238 if (vxlan->default_dst.remote_vni == vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000239 return vxlan;
240 }
241
242 return NULL;
243}
244
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700245/* Look up VNI in a per net namespace table */
Jiri Benc54bfd872016-02-16 21:58:58 +0100246static struct vxlan_dev *vxlan_find_vni(struct net *net, __be32 vni,
Thomas Grafac5132d2015-01-15 03:53:56 +0100247 sa_family_t family, __be16 port,
248 u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700249{
250 struct vxlan_sock *vs;
251
Thomas Grafac5132d2015-01-15 03:53:56 +0100252 vs = vxlan_find_sock(net, family, port, flags);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700253 if (!vs)
254 return NULL;
255
Jiri Benc54bfd872016-02-16 21:58:58 +0100256 return vxlan_vs_find_vni(vs, vni);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700257}
258
stephen hemmingerd3428942012-10-01 12:32:35 +0000259/* Fill in neighbour message in skbuff. */
260static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700261 const struct vxlan_fdb *fdb,
262 u32 portid, u32 seq, int type, unsigned int flags,
263 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000264{
265 unsigned long now = jiffies;
266 struct nda_cacheinfo ci;
267 struct nlmsghdr *nlh;
268 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000269 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000270
271 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
272 if (nlh == NULL)
273 return -EMSGSIZE;
274
275 ndm = nlmsg_data(nlh);
276 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000277
278 send_eth = send_ip = true;
279
280 if (type == RTM_GETNEIGH) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800281 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000282 send_eth = !is_zero_ether_addr(fdb->eth_addr);
Vincent Bernat8f48ba72017-03-10 16:30:24 +0100283 ndm->ndm_family = send_ip ? rdst->remote_ip.sa.sa_family : AF_INET;
David Stevense4f67ad2012-11-20 02:50:14 +0000284 } else
285 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000286 ndm->ndm_state = fdb->state;
287 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000288 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800289 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000290
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100291 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100292 nla_put_s32(skb, NDA_LINK_NETNSID,
WANG Cong38f507f2016-09-01 21:53:44 -0700293 peernet2id(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100294 goto nla_put_failure;
295
David Stevense4f67ad2012-11-20 02:50:14 +0000296 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000297 goto nla_put_failure;
298
Cong Wange4c7ed42013-08-31 13:44:33 +0800299 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000300 goto nla_put_failure;
301
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200302 if (rdst->remote_port && rdst->remote_port != vxlan->cfg.dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000303 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
304 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000305 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Jiri Benc54bfd872016-02-16 21:58:58 +0100306 nla_put_u32(skb, NDA_VNI, be32_to_cpu(rdst->remote_vni)))
David Stevens66817122013-03-15 04:35:51 +0000307 goto nla_put_failure;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800308 if ((vxlan->flags & VXLAN_F_COLLECT_METADATA) && fdb->vni &&
309 nla_put_u32(skb, NDA_SRC_VNI,
310 be32_to_cpu(fdb->vni)))
311 goto nla_put_failure;
David Stevens66817122013-03-15 04:35:51 +0000312 if (rdst->remote_ifindex &&
313 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000314 goto nla_put_failure;
315
316 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
317 ci.ndm_confirmed = 0;
318 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
319 ci.ndm_refcnt = 0;
320
321 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
322 goto nla_put_failure;
323
Johannes Berg053c0952015-01-16 22:09:00 +0100324 nlmsg_end(skb, nlh);
325 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000326
327nla_put_failure:
328 nlmsg_cancel(skb, nlh);
329 return -EMSGSIZE;
330}
331
332static inline size_t vxlan_nlmsg_size(void)
333{
334 return NLMSG_ALIGN(sizeof(struct ndmsg))
335 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800336 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000337 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000338 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
339 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100340 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000341 + nla_total_size(sizeof(struct nda_cacheinfo));
342}
343
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200344static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
345 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000346{
347 struct net *net = dev_net(vxlan->dev);
348 struct sk_buff *skb;
349 int err = -ENOBUFS;
350
351 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
352 if (skb == NULL)
353 goto errout;
354
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200355 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000356 if (err < 0) {
357 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
358 WARN_ON(err == -EMSGSIZE);
359 kfree_skb(skb);
360 goto errout;
361 }
362
363 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
364 return;
365errout:
366 if (err < 0)
367 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
368}
369
Cong Wange4c7ed42013-08-31 13:44:33 +0800370static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000371{
372 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700373 struct vxlan_fdb f = {
374 .state = NUD_STALE,
375 };
376 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800377 .remote_ip = *ipa, /* goes to NDA_DST */
Jiri Benc54bfd872016-02-16 21:58:58 +0100378 .remote_vni = cpu_to_be32(VXLAN_N_VID),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700379 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700380
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200381 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000382}
383
384static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
385{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700386 struct vxlan_fdb f = {
387 .state = NUD_STALE,
388 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200389 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000390
David Stevense4f67ad2012-11-20 02:50:14 +0000391 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
392
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200393 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000394}
395
stephen hemmingerd3428942012-10-01 12:32:35 +0000396/* Hash Ethernet address */
397static u32 eth_hash(const unsigned char *addr)
398{
399 u64 value = get_unaligned((u64 *)addr);
400
401 /* only want 6 bytes */
402#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000403 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000404#else
405 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000406#endif
407 return hash_64(value, FDB_HASH_BITS);
408}
409
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800410static u32 eth_vni_hash(const unsigned char *addr, __be32 vni)
411{
412 /* use 1 byte of OUI and 3 bytes of NIC */
413 u32 key = get_unaligned((u32 *)(addr + 2));
414
415 return jhash_2words(key, vni, vxlan_salt) & (FDB_HASH_SIZE - 1);
416}
417
stephen hemmingerd3428942012-10-01 12:32:35 +0000418/* Hash chain to use given mac address */
419static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800420 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000421{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800422 if (vxlan->flags & VXLAN_F_COLLECT_METADATA)
423 return &vxlan->fdb_head[eth_vni_hash(mac, vni)];
424 else
425 return &vxlan->fdb_head[eth_hash(mac)];
stephen hemmingerd3428942012-10-01 12:32:35 +0000426}
427
428/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000429static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800430 const u8 *mac, __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000431{
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800432 struct hlist_head *head = vxlan_fdb_head(vxlan, mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000433 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000434
Sasha Levinb67bfe02013-02-27 17:06:00 -0800435 hlist_for_each_entry_rcu(f, head, hlist) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800436 if (ether_addr_equal(mac, f->eth_addr)) {
437 if (vxlan->flags & VXLAN_F_COLLECT_METADATA) {
438 if (vni == f->vni)
439 return f;
440 } else {
441 return f;
442 }
443 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000444 }
445
446 return NULL;
447}
448
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000449static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800450 const u8 *mac, __be32 vni)
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000451{
452 struct vxlan_fdb *f;
453
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800454 f = __vxlan_find_mac(vxlan, mac, vni);
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000455 if (f)
456 f->used = jiffies;
457
458 return f;
459}
460
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300461/* caller should hold vxlan->hash_lock */
462static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800463 union vxlan_addr *ip, __be16 port,
Jiri Benc54bfd872016-02-16 21:58:58 +0100464 __be32 vni, __u32 ifindex)
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300465{
466 struct vxlan_rdst *rd;
467
468 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800469 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300470 rd->remote_port == port &&
471 rd->remote_vni == vni &&
472 rd->remote_ifindex == ifindex)
473 return rd;
474 }
475
476 return NULL;
477}
478
Thomas Richter906dc182013-07-19 17:20:07 +0200479/* Replace destination of unicast mac */
480static int vxlan_fdb_replace(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100481 union vxlan_addr *ip, __be16 port, __be32 vni,
482 __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200483{
484 struct vxlan_rdst *rd;
485
486 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
487 if (rd)
488 return 0;
489
490 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
491 if (!rd)
492 return 0;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100493
494 dst_cache_reset(&rd->dst_cache);
Cong Wange4c7ed42013-08-31 13:44:33 +0800495 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200496 rd->remote_port = port;
497 rd->remote_vni = vni;
498 rd->remote_ifindex = ifindex;
499 return 1;
500}
501
David Stevens66817122013-03-15 04:35:51 +0000502/* Add/update destinations for multicast */
503static int vxlan_fdb_append(struct vxlan_fdb *f,
Jiri Benc54bfd872016-02-16 21:58:58 +0100504 union vxlan_addr *ip, __be16 port, __be32 vni,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200505 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000506{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700507 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000508
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300509 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
510 if (rd)
511 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700512
David Stevens66817122013-03-15 04:35:51 +0000513 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
514 if (rd == NULL)
515 return -ENOBUFS;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100516
517 if (dst_cache_init(&rd->dst_cache, GFP_ATOMIC)) {
518 kfree(rd);
519 return -ENOBUFS;
520 }
521
Cong Wange4c7ed42013-08-31 13:44:33 +0800522 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000523 rd->remote_port = port;
524 rd->remote_vni = vni;
525 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700526
527 list_add_tail_rcu(&rd->list, &f->remotes);
528
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200529 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000530 return 1;
531}
532
Tom Herbertdfd86452015-01-12 17:00:38 -0800533static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
534 unsigned int off,
535 struct vxlanhdr *vh, size_t hdrlen,
Jiri Benc54bfd872016-02-16 21:58:58 +0100536 __be32 vni_field,
537 struct gro_remcsum *grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800538 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800539{
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700540 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -0800541
542 if (skb->remcsum_offload)
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700543 return vh;
Tom Herbertdfd86452015-01-12 17:00:38 -0800544
545 if (!NAPI_GRO_CB(skb)->csum_valid)
546 return NULL;
547
Jiri Benc54bfd872016-02-16 21:58:58 +0100548 start = vxlan_rco_start(vni_field);
549 offset = start + vxlan_rco_offset(vni_field);
Tom Herbertdfd86452015-01-12 17:00:38 -0800550
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700551 vh = skb_gro_remcsum_process(skb, (void *)vh, off, hdrlen,
552 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800553
554 skb->remcsum_offload = 1;
555
556 return vh;
557}
558
Tom Herbert5602c482016-04-05 08:22:53 -0700559static struct sk_buff **vxlan_gro_receive(struct sock *sk,
560 struct sk_buff **head,
561 struct sk_buff *skb)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200562{
563 struct sk_buff *p, **pp = NULL;
564 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800565 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200566 int flush = 1;
Tom Herbert5602c482016-04-05 08:22:53 -0700567 struct vxlan_sock *vs = rcu_dereference_sk_user_data(sk);
Jiri Benc54bfd872016-02-16 21:58:58 +0100568 __be32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800569 struct gro_remcsum grc;
570
571 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200572
573 off_vx = skb_gro_offset(skb);
574 hlen = off_vx + sizeof(*vh);
575 vh = skb_gro_header_fast(skb, off_vx);
576 if (skb_gro_header_hard(skb, hlen)) {
577 vh = skb_gro_header_slow(skb, hlen, off_vx);
578 if (unlikely(!vh))
579 goto out;
580 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200581
Tom Herbertdfd86452015-01-12 17:00:38 -0800582 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
583
Jiri Benc54bfd872016-02-16 21:58:58 +0100584 flags = vh->vx_flags;
Tom Herbertdfd86452015-01-12 17:00:38 -0800585
586 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
587 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Jiri Benc54bfd872016-02-16 21:58:58 +0100588 vh->vx_vni, &grc,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800589 !!(vs->flags &
590 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800591
592 if (!vh)
593 goto out;
594 }
595
Tom Herbertb7fe10e2015-08-19 17:07:32 -0700596 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
597
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200598 for (p = *head; p; p = p->next) {
599 if (!NAPI_GRO_CB(p)->same_flow)
600 continue;
601
602 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100603 if (vh->vx_flags != vh2->vx_flags ||
604 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200605 NAPI_GRO_CB(p)->same_flow = 0;
606 continue;
607 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200608 }
609
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +0200610 pp = call_gro_receive(eth_gro_receive, head, skb);
Alexander Duyckc194cf92016-03-09 09:24:23 -0800611 flush = 0;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200612
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200613out:
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800614 skb_gro_remcsum_cleanup(skb, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200615 NAPI_GRO_CB(skb)->flush |= flush;
616
617 return pp;
618}
619
Tom Herbert5602c482016-04-05 08:22:53 -0700620static int vxlan_gro_complete(struct sock *sk, struct sk_buff *skb, int nhoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200621{
Jarno Rajahalme229740c2016-05-03 16:10:21 -0700622 /* Sets 'skb->inner_mac_header' since we are always called with
623 * 'skb->encapsulation' set.
624 */
Jesse Gross9b174d82014-12-30 19:10:15 -0800625 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200626}
627
stephen hemmingerd3428942012-10-01 12:32:35 +0000628/* Add new entry to forwarding table -- assumes lock held */
629static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800630 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000631 __u16 state, __u16 flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800632 __be16 port, __be32 src_vni, __be32 vni,
633 __u32 ifindex, __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000634{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200635 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000636 struct vxlan_fdb *f;
637 int notify = 0;
Haishuang Yan17b46362016-11-29 09:59:36 +0800638 int rc;
stephen hemmingerd3428942012-10-01 12:32:35 +0000639
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800640 f = __vxlan_find_mac(vxlan, mac, src_vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000641 if (f) {
642 if (flags & NLM_F_EXCL) {
643 netdev_dbg(vxlan->dev,
644 "lost race to create %pM\n", mac);
645 return -EEXIST;
646 }
647 if (f->state != state) {
648 f->state = state;
649 f->updated = jiffies;
650 notify = 1;
651 }
David Stevensae884082013-04-19 00:36:26 +0000652 if (f->flags != ndm_flags) {
653 f->flags = ndm_flags;
654 f->updated = jiffies;
655 notify = 1;
656 }
Thomas Richter906dc182013-07-19 17:20:07 +0200657 if ((flags & NLM_F_REPLACE)) {
658 /* Only change unicasts */
659 if (!(is_multicast_ether_addr(f->eth_addr) ||
660 is_zero_ether_addr(f->eth_addr))) {
Li RongQing60840422015-04-22 15:49:10 +0800661 notify |= vxlan_fdb_replace(f, ip, port, vni,
Thomas Richter906dc182013-07-19 17:20:07 +0200662 ifindex);
Thomas Richter906dc182013-07-19 17:20:07 +0200663 } else
664 return -EOPNOTSUPP;
665 }
David Stevens66817122013-03-15 04:35:51 +0000666 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300667 (is_multicast_ether_addr(f->eth_addr) ||
668 is_zero_ether_addr(f->eth_addr))) {
Haishuang Yan17b46362016-11-29 09:59:36 +0800669 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
David Stevens66817122013-03-15 04:35:51 +0000670
671 if (rc < 0)
672 return rc;
673 notify |= rc;
674 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000675 } else {
676 if (!(flags & NLM_F_CREATE))
677 return -ENOENT;
678
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200679 if (vxlan->cfg.addrmax &&
680 vxlan->addrcnt >= vxlan->cfg.addrmax)
stephen hemmingerd3428942012-10-01 12:32:35 +0000681 return -ENOSPC;
682
Thomas Richter906dc182013-07-19 17:20:07 +0200683 /* Disallow replace to add a multicast entry */
684 if ((flags & NLM_F_REPLACE) &&
685 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
686 return -EOPNOTSUPP;
687
Cong Wange4c7ed42013-08-31 13:44:33 +0800688 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000689 f = kmalloc(sizeof(*f), GFP_ATOMIC);
690 if (!f)
691 return -ENOMEM;
692
693 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000694 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000695 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000696 f->updated = f->used = jiffies;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800697 f->vni = src_vni;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700698 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000699 memcpy(f->eth_addr, mac, ETH_ALEN);
700
Haishuang Yan17b46362016-11-29 09:59:36 +0800701 rc = vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
702 if (rc < 0) {
703 kfree(f);
704 return rc;
705 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700706
stephen hemmingerd3428942012-10-01 12:32:35 +0000707 ++vxlan->addrcnt;
708 hlist_add_head_rcu(&f->hlist,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800709 vxlan_fdb_head(vxlan, mac, src_vni));
stephen hemmingerd3428942012-10-01 12:32:35 +0000710 }
711
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200712 if (notify) {
713 if (rd == NULL)
714 rd = first_remote_rtnl(f);
715 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
716 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000717
718 return 0;
719}
720
Wei Yongjun6706c822013-04-11 19:00:35 +0000721static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000722{
723 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700724 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000725
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100726 list_for_each_entry_safe(rd, nd, &f->remotes, list) {
727 dst_cache_destroy(&rd->dst_cache);
David Stevens66817122013-03-15 04:35:51 +0000728 kfree(rd);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +0100729 }
David Stevens66817122013-03-15 04:35:51 +0000730 kfree(f);
731}
732
stephen hemmingerd3428942012-10-01 12:32:35 +0000733static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
734{
735 netdev_dbg(vxlan->dev,
736 "delete %pM\n", f->eth_addr);
737
738 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200739 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000740
741 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000742 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000743}
744
Lance Richardson35cf2842017-05-29 13:25:57 -0400745static void vxlan_dst_free(struct rcu_head *head)
746{
747 struct vxlan_rdst *rd = container_of(head, struct vxlan_rdst, rcu);
748
749 dst_cache_destroy(&rd->dst_cache);
750 kfree(rd);
751}
752
753static void vxlan_fdb_dst_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f,
754 struct vxlan_rdst *rd)
755{
756 list_del_rcu(&rd->list);
757 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
758 call_rcu(&rd->rcu, vxlan_dst_free);
759}
760
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300761static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800762 union vxlan_addr *ip, __be16 *port, __be32 *src_vni,
763 __be32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300764{
765 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800766 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300767
768 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800769 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
770 if (err)
771 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300772 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800773 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
774 if (remote->sa.sa_family == AF_INET) {
775 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
776 ip->sa.sa_family = AF_INET;
777#if IS_ENABLED(CONFIG_IPV6)
778 } else {
779 ip->sin6.sin6_addr = in6addr_any;
780 ip->sa.sa_family = AF_INET6;
781#endif
782 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300783 }
784
785 if (tb[NDA_PORT]) {
786 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
787 return -EINVAL;
788 *port = nla_get_be16(tb[NDA_PORT]);
789 } else {
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200790 *port = vxlan->cfg.dst_port;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300791 }
792
793 if (tb[NDA_VNI]) {
794 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
795 return -EINVAL;
Jiri Benc54bfd872016-02-16 21:58:58 +0100796 *vni = cpu_to_be32(nla_get_u32(tb[NDA_VNI]));
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300797 } else {
798 *vni = vxlan->default_dst.remote_vni;
799 }
800
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800801 if (tb[NDA_SRC_VNI]) {
802 if (nla_len(tb[NDA_SRC_VNI]) != sizeof(u32))
803 return -EINVAL;
804 *src_vni = cpu_to_be32(nla_get_u32(tb[NDA_SRC_VNI]));
805 } else {
806 *src_vni = vxlan->default_dst.remote_vni;
807 }
808
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300809 if (tb[NDA_IFINDEX]) {
810 struct net_device *tdev;
811
812 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
813 return -EINVAL;
814 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800815 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300816 if (!tdev)
817 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300818 } else {
819 *ifindex = 0;
820 }
821
822 return 0;
823}
824
stephen hemmingerd3428942012-10-01 12:32:35 +0000825/* Add static entry (via netlink) */
826static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
827 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100828 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000829{
830 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300831 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800832 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000833 __be16 port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800834 __be32 src_vni, vni;
Jiri Benc54bfd872016-02-16 21:58:58 +0100835 u32 ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000836 int err;
837
838 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
839 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
840 ndm->ndm_state);
841 return -EINVAL;
842 }
843
844 if (tb[NDA_DST] == NULL)
845 return -EINVAL;
846
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800847 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300848 if (err)
849 return err;
David Stevens66817122013-03-15 04:35:51 +0000850
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300851 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
852 return -EAFNOSUPPORT;
853
stephen hemmingerd3428942012-10-01 12:32:35 +0000854 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800855 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800856 port, src_vni, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000857 spin_unlock_bh(&vxlan->hash_lock);
858
859 return err;
860}
861
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800862static int __vxlan_fdb_delete(struct vxlan_dev *vxlan,
863 const unsigned char *addr, union vxlan_addr ip,
864 __be16 port, __be32 src_vni, u32 vni, u32 ifindex,
865 u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000866{
stephen hemmingerd3428942012-10-01 12:32:35 +0000867 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300868 struct vxlan_rdst *rd = NULL;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800869 int err = -ENOENT;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300870
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800871 f = vxlan_find_mac(vxlan, addr, src_vni);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300872 if (!f)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800873 return err;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300874
Cong Wange4c7ed42013-08-31 13:44:33 +0800875 if (!vxlan_addr_any(&ip)) {
876 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300877 if (!rd)
878 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000879 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300880
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300881 /* remove a destination if it's not the only one on the list,
882 * otherwise destroy the fdb entry
883 */
884 if (rd && !list_is_singular(&f->remotes)) {
Lance Richardson35cf2842017-05-29 13:25:57 -0400885 vxlan_fdb_dst_destroy(vxlan, f, rd);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300886 goto out;
887 }
888
889 vxlan_fdb_destroy(vxlan, f);
890
891out:
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800892 return 0;
893}
894
895/* Delete entry (via netlink) */
896static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
897 struct net_device *dev,
898 const unsigned char *addr, u16 vid)
899{
900 struct vxlan_dev *vxlan = netdev_priv(dev);
901 union vxlan_addr ip;
902 __be32 src_vni, vni;
903 __be16 port;
904 u32 ifindex;
905 int err;
906
907 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &src_vni, &vni, &ifindex);
908 if (err)
909 return err;
910
911 spin_lock_bh(&vxlan->hash_lock);
912 err = __vxlan_fdb_delete(vxlan, addr, ip, port, src_vni, vni, ifindex,
913 vid);
stephen hemmingerd3428942012-10-01 12:32:35 +0000914 spin_unlock_bh(&vxlan->hash_lock);
915
916 return err;
917}
918
919/* Dump forwarding table */
920static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400921 struct net_device *dev,
Roopa Prabhud2976532016-08-30 21:56:45 -0700922 struct net_device *filter_dev, int *idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000923{
924 struct vxlan_dev *vxlan = netdev_priv(dev);
925 unsigned int h;
Roopa Prabhud2976532016-08-30 21:56:45 -0700926 int err = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000927
928 for (h = 0; h < FDB_HASH_SIZE; ++h) {
929 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000930
Sasha Levinb67bfe02013-02-27 17:06:00 -0800931 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000932 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000933
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700934 list_for_each_entry_rcu(rd, &f->remotes, list) {
Roopa Prabhud2976532016-08-30 21:56:45 -0700935 if (*idx < cb->args[2])
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900936 goto skip;
937
David Stevens66817122013-03-15 04:35:51 +0000938 err = vxlan_fdb_info(skb, vxlan, f,
939 NETLINK_CB(cb->skb).portid,
940 cb->nlh->nlmsg_seq,
941 RTM_NEWNEIGH,
942 NLM_F_MULTI, rd);
Roopa Prabhud2976532016-08-30 21:56:45 -0700943 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700944 goto out;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700945skip:
Roopa Prabhud2976532016-08-30 21:56:45 -0700946 *idx += 1;
Atzm Watanabe07a51cd2015-08-10 23:39:09 +0900947 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000948 }
949 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700950out:
Roopa Prabhud2976532016-08-30 21:56:45 -0700951 return err;
stephen hemmingerd3428942012-10-01 12:32:35 +0000952}
953
954/* Watch incoming packets to learn mapping between Ethernet address
955 * and Tunnel endpoint.
Simon Hormanc4b49512015-04-02 11:17:58 +0900956 * Return true if packet is bogus and should be dropped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000957 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700958static bool vxlan_snoop(struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800959 union vxlan_addr *src_ip, const u8 *src_mac,
960 __be32 vni)
stephen hemmingerd3428942012-10-01 12:32:35 +0000961{
962 struct vxlan_dev *vxlan = netdev_priv(dev);
963 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000964
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800965 f = vxlan_find_mac(vxlan, src_mac, vni);
stephen hemmingerd3428942012-10-01 12:32:35 +0000966 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700967 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700968
Cong Wange4c7ed42013-08-31 13:44:33 +0800969 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700970 return false;
971
972 /* Don't migrate static entries, drop packets */
Roopa Prabhue0090a92017-06-11 16:32:50 -0700973 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700974 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000975
976 if (net_ratelimit())
977 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800978 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +0100979 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +0000980
Cong Wange4c7ed42013-08-31 13:44:33 +0800981 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000982 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200983 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000984 } else {
985 /* learned new entry */
986 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700987
988 /* close off race between vxlan_flush and incoming packets */
989 if (netif_running(dev))
990 vxlan_fdb_create(vxlan, src_mac, src_ip,
991 NUD_REACHABLE,
992 NLM_F_EXCL|NLM_F_CREATE,
Thomas Graf0dfbdf42015-07-21 10:44:02 +0200993 vxlan->cfg.dst_port,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -0800994 vni,
stephen hemminger3bf74b12013-06-17 12:09:57 -0700995 vxlan->default_dst.remote_vni,
996 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000997 spin_unlock(&vxlan->hash_lock);
998 }
stephen hemminger26a41ae62013-06-17 12:09:58 -0700999
1000 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001001}
1002
stephen hemmingerd3428942012-10-01 12:32:35 +00001003/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001004static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001005{
stephen hemminger553675f2013-05-16 11:35:20 +00001006 struct vxlan_dev *vxlan;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001007 struct vxlan_sock *sock4;
Arnd Bergmann4053ab12016-11-07 22:09:07 +01001008#if IS_ENABLED(CONFIG_IPV6)
1009 struct vxlan_sock *sock6;
1010#endif
Jiri Bencb1be00a2015-09-24 13:50:02 +02001011 unsigned short family = dev->default_dst.remote_ip.sa.sa_family;
stephen hemmingerd3428942012-10-01 12:32:35 +00001012
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001013 sock4 = rtnl_dereference(dev->vn4_sock);
1014
Gao feng95ab0992013-12-10 16:37:33 +08001015 /* The vxlan_sock is only used by dev, leaving group has
1016 * no effect on other vxlan devices.
1017 */
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001018 if (family == AF_INET && sock4 && atomic_read(&sock4->refcnt) == 1)
Gao feng95ab0992013-12-10 16:37:33 +08001019 return false;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001020#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001021 sock6 = rtnl_dereference(dev->vn6_sock);
1022 if (family == AF_INET6 && sock6 && atomic_read(&sock6->refcnt) == 1)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001023 return false;
1024#endif
Gao feng95ab0992013-12-10 16:37:33 +08001025
stephen hemminger553675f2013-05-16 11:35:20 +00001026 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001027 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001028 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001029
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001030 if (family == AF_INET &&
1031 rtnl_dereference(vxlan->vn4_sock) != sock4)
Gao feng95ab0992013-12-10 16:37:33 +08001032 continue;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001033#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001034 if (family == AF_INET6 &&
1035 rtnl_dereference(vxlan->vn6_sock) != sock6)
Jiri Bencb1be00a2015-09-24 13:50:02 +02001036 continue;
1037#endif
Gao feng95ab0992013-12-10 16:37:33 +08001038
1039 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1040 &dev->default_dst.remote_ip))
1041 continue;
1042
1043 if (vxlan->default_dst.remote_ifindex !=
1044 dev->default_dst.remote_ifindex)
1045 continue;
1046
1047 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001048 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001049
1050 return false;
1051}
1052
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001053static bool __vxlan_sock_release_prep(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001054{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001055 struct vxlan_net *vn;
Pravin B Shelar012a5722013-08-19 11:23:07 -07001056
Jiri Bencb1be00a2015-09-24 13:50:02 +02001057 if (!vs)
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001058 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001059 if (!atomic_dec_and_test(&vs->refcnt))
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001060 return false;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001061
Jiri Bencb1be00a2015-09-24 13:50:02 +02001062 vn = net_generic(sock_net(vs->sock->sk), vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001063 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001064 hlist_del_rcu(&vs->hlist);
Alexander Duycke7b3db52016-06-16 12:20:52 -07001065 udp_tunnel_notify_del_rx_port(vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07001066 (vs->flags & VXLAN_F_GPE) ?
1067 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07001068 UDP_TUNNEL_TYPE_VXLAN);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001069 spin_unlock(&vn->sock_lock);
1070
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001071 return true;
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001072}
1073
Jiri Bencb1be00a2015-09-24 13:50:02 +02001074static void vxlan_sock_release(struct vxlan_dev *vxlan)
1075{
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001076 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001077#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001078 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1079
Mark Bloch57d88182017-06-07 14:36:58 +03001080 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001081#endif
1082
Mark Bloch57d88182017-06-07 14:36:58 +03001083 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001084 synchronize_net();
1085
Mark Blocha53cb292017-06-02 03:24:08 +03001086 vxlan_vs_del_dev(vxlan);
1087
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001088 if (__vxlan_sock_release_prep(sock4)) {
1089 udp_tunnel_sock_release(sock4->sock);
1090 kfree(sock4);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001091 }
1092
1093#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001094 if (__vxlan_sock_release_prep(sock6)) {
1095 udp_tunnel_sock_release(sock6->sock);
1096 kfree(sock6);
Hannes Frederic Sowa544a7732016-04-09 12:46:23 +02001097 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02001098#endif
1099}
1100
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001101/* Update multicast group membership when first VNI on
Simon Hormanc4b49512015-04-02 11:17:58 +09001102 * multicast address is brought up
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001103 */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001104static int vxlan_igmp_join(struct vxlan_dev *vxlan)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001105{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001106 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001107 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1108 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001109 int ret = -EINVAL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001110
Cong Wange4c7ed42013-08-31 13:44:33 +08001111 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001112 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001113 struct ip_mreqn mreq = {
1114 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1115 .imr_ifindex = ifindex,
1116 };
1117
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001118 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001119 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001120 ret = ip_mc_join_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001121 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001122#if IS_ENABLED(CONFIG_IPV6)
1123 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001124 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1125
1126 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001127 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001128 ret = ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1129 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001130 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001131#endif
1132 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001133
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001134 return ret;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001135}
1136
1137/* Inverse of vxlan_igmp_join when last VNI is brought down */
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001138static int vxlan_igmp_leave(struct vxlan_dev *vxlan)
stephen hemminger3fc2de22013-07-18 08:40:15 -07001139{
Jiri Bencb1be00a2015-09-24 13:50:02 +02001140 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001141 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1142 int ifindex = vxlan->default_dst.remote_ifindex;
Marcelo Ricardo Leitner149d7542015-03-20 10:26:21 -03001143 int ret = -EINVAL;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001144
Cong Wange4c7ed42013-08-31 13:44:33 +08001145 if (ip->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001146 struct vxlan_sock *sock4 = rtnl_dereference(vxlan->vn4_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08001147 struct ip_mreqn mreq = {
1148 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1149 .imr_ifindex = ifindex,
1150 };
1151
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001152 sk = sock4->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001153 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001154 ret = ip_mc_leave_group(sk, &mreq);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001155 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001156#if IS_ENABLED(CONFIG_IPV6)
1157 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001158 struct vxlan_sock *sock6 = rtnl_dereference(vxlan->vn6_sock);
1159
1160 sk = sock6->sock->sk;
Jiri Bencb1be00a2015-09-24 13:50:02 +02001161 lock_sock(sk);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001162 ret = ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1163 &ip->sin6.sin6_addr);
Jiri Bencb1be00a2015-09-24 13:50:02 +02001164 release_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001165#endif
1166 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001167
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03001168 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00001169}
1170
Jiri Bencf14eceb2016-02-16 21:59:01 +01001171static bool vxlan_remcsum(struct vxlanhdr *unparsed,
1172 struct sk_buff *skb, u32 vxflags)
Tom Herbertdfd86452015-01-12 17:00:38 -08001173{
Jiri Benc7d34fa72016-03-21 17:50:05 +01001174 size_t start, offset;
Tom Herbertdfd86452015-01-12 17:00:38 -08001175
Jiri Bencf14eceb2016-02-16 21:59:01 +01001176 if (!(unparsed->vx_flags & VXLAN_HF_RCO) || skb->remcsum_offload)
1177 goto out;
Tom Herbertb7fe10e2015-08-19 17:07:32 -07001178
Jiri Bencf14eceb2016-02-16 21:59:01 +01001179 start = vxlan_rco_start(unparsed->vx_vni);
1180 offset = start + vxlan_rco_offset(unparsed->vx_vni);
Tom Herbertdfd86452015-01-12 17:00:38 -08001181
Jiri Benc7d34fa72016-03-21 17:50:05 +01001182 if (!pskb_may_pull(skb, offset + sizeof(u16)))
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001183 return false;
Tom Herbertdfd86452015-01-12 17:00:38 -08001184
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001185 skb_remcsum_process(skb, (void *)(vxlan_hdr(skb) + 1), start, offset,
1186 !!(vxflags & VXLAN_F_REMCSUM_NOPARTIAL));
Jiri Bencf14eceb2016-02-16 21:59:01 +01001187out:
1188 unparsed->vx_flags &= ~VXLAN_HF_RCO;
1189 unparsed->vx_vni &= VXLAN_VNI_MASK;
Jiri Bencbe5cfea2016-02-16 21:58:59 +01001190 return true;
Tom Herbertdfd86452015-01-12 17:00:38 -08001191}
1192
Jiri Bencf14eceb2016-02-16 21:59:01 +01001193static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed,
Jiri Benc64f87d32016-02-23 18:02:55 +01001194 struct sk_buff *skb, u32 vxflags,
Jiri Benc10a5af22016-02-23 18:02:59 +01001195 struct vxlan_metadata *md)
Jiri Benc3288af02016-02-16 21:59:00 +01001196{
Jiri Bencf14eceb2016-02-16 21:59:01 +01001197 struct vxlanhdr_gbp *gbp = (struct vxlanhdr_gbp *)unparsed;
Jiri Benc10a5af22016-02-23 18:02:59 +01001198 struct metadata_dst *tun_dst;
Jiri Benc3288af02016-02-16 21:59:00 +01001199
Jiri Bencf14eceb2016-02-16 21:59:01 +01001200 if (!(unparsed->vx_flags & VXLAN_HF_GBP))
1201 goto out;
1202
Jiri Benc3288af02016-02-16 21:59:00 +01001203 md->gbp = ntohs(gbp->policy_id);
1204
Jiri Benc10a5af22016-02-23 18:02:59 +01001205 tun_dst = (struct metadata_dst *)skb_dst(skb);
David S. Miller810813c2016-03-08 12:34:12 -05001206 if (tun_dst) {
Jiri Benc3288af02016-02-16 21:59:00 +01001207 tun_dst->u.tun_info.key.tun_flags |= TUNNEL_VXLAN_OPT;
David S. Miller810813c2016-03-08 12:34:12 -05001208 tun_dst->u.tun_info.options_len = sizeof(*md);
1209 }
Jiri Benc3288af02016-02-16 21:59:00 +01001210 if (gbp->dont_learn)
1211 md->gbp |= VXLAN_GBP_DONT_LEARN;
1212
1213 if (gbp->policy_applied)
1214 md->gbp |= VXLAN_GBP_POLICY_APPLIED;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001215
Jiri Benc64f87d32016-02-23 18:02:55 +01001216 /* In flow-based mode, GBP is carried in dst_metadata */
1217 if (!(vxflags & VXLAN_F_COLLECT_METADATA))
1218 skb->mark = md->gbp;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001219out:
1220 unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS;
Jiri Benc3288af02016-02-16 21:59:00 +01001221}
1222
Jiri Bence1e53142016-04-05 14:47:13 +02001223static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed,
Jiri Benc61618ee2016-04-11 17:06:08 +02001224 __be16 *protocol,
Jiri Bence1e53142016-04-05 14:47:13 +02001225 struct sk_buff *skb, u32 vxflags)
1226{
1227 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed;
1228
1229 /* Need to have Next Protocol set for interfaces in GPE mode. */
1230 if (!gpe->np_applied)
1231 return false;
1232 /* "The initial version is 0. If a receiver does not support the
1233 * version indicated it MUST drop the packet.
1234 */
1235 if (gpe->version != 0)
1236 return false;
1237 /* "When the O bit is set to 1, the packet is an OAM packet and OAM
1238 * processing MUST occur." However, we don't implement OAM
1239 * processing, thus drop the packet.
1240 */
1241 if (gpe->oam_flag)
1242 return false;
1243
1244 switch (gpe->next_protocol) {
1245 case VXLAN_GPE_NP_IPV4:
1246 *protocol = htons(ETH_P_IP);
1247 break;
1248 case VXLAN_GPE_NP_IPV6:
1249 *protocol = htons(ETH_P_IPV6);
1250 break;
1251 case VXLAN_GPE_NP_ETHERNET:
1252 *protocol = htons(ETH_P_TEB);
1253 break;
1254 default:
1255 return false;
1256 }
1257
1258 unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS;
1259 return true;
1260}
1261
Jiri Benc1ab016e2016-02-23 18:02:56 +01001262static bool vxlan_set_mac(struct vxlan_dev *vxlan,
1263 struct vxlan_sock *vs,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001264 struct sk_buff *skb, __be32 vni)
Thomas Graf614732e2015-07-21 10:44:06 +02001265{
Thomas Graf614732e2015-07-21 10:44:06 +02001266 union vxlan_addr saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001267
Thomas Graf614732e2015-07-21 10:44:06 +02001268 skb_reset_mac_header(skb);
Thomas Graf614732e2015-07-21 10:44:06 +02001269 skb->protocol = eth_type_trans(skb, vxlan->dev);
1270 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
1271
1272 /* Ignore packet loops (and multicast echo) */
1273 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001274 return false;
Thomas Graf614732e2015-07-21 10:44:06 +02001275
Jiri Benc760c6802016-02-23 18:02:57 +01001276 /* Get address from the outer IP header */
Jiri Bencce212d02015-12-07 16:29:08 +01001277 if (vxlan_get_sk_family(vs) == AF_INET) {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001278 saddr.sin.sin_addr.s_addr = ip_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001279 saddr.sa.sa_family = AF_INET;
1280#if IS_ENABLED(CONFIG_IPV6)
1281 } else {
Jiri Benc1ab016e2016-02-23 18:02:56 +01001282 saddr.sin6.sin6_addr = ipv6_hdr(skb)->saddr;
Thomas Graf614732e2015-07-21 10:44:06 +02001283 saddr.sa.sa_family = AF_INET6;
1284#endif
1285 }
1286
Jiri Benc1ab016e2016-02-23 18:02:56 +01001287 if ((vxlan->flags & VXLAN_F_LEARN) &&
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001288 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source, vni))
Jiri Benc1ab016e2016-02-23 18:02:56 +01001289 return false;
1290
1291 return true;
1292}
1293
Jiri Benc760c6802016-02-23 18:02:57 +01001294static bool vxlan_ecn_decapsulate(struct vxlan_sock *vs, void *oiph,
1295 struct sk_buff *skb)
1296{
1297 int err = 0;
1298
1299 if (vxlan_get_sk_family(vs) == AF_INET)
1300 err = IP_ECN_decapsulate(oiph, skb);
1301#if IS_ENABLED(CONFIG_IPV6)
1302 else
1303 err = IP6_ECN_decapsulate(oiph, skb);
1304#endif
1305
1306 if (unlikely(err) && log_ecn_error) {
1307 if (vxlan_get_sk_family(vs) == AF_INET)
1308 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1309 &((struct iphdr *)oiph)->saddr,
1310 ((struct iphdr *)oiph)->tos);
1311 else
1312 net_info_ratelimited("non-ECT from %pI6\n",
1313 &((struct ipv6hdr *)oiph)->saddr);
1314 }
1315 return err <= 1;
1316}
1317
stephen hemmingerd3428942012-10-01 12:32:35 +00001318/* Callback from net/ipv4/udp.c to receive packets */
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001319static int vxlan_rcv(struct sock *sk, struct sk_buff *skb)
stephen hemmingerd3428942012-10-01 12:32:35 +00001320{
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001321 struct pcpu_sw_netstats *stats;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001322 struct vxlan_dev *vxlan;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001323 struct vxlan_sock *vs;
Jiri Bencf14eceb2016-02-16 21:59:01 +01001324 struct vxlanhdr unparsed;
Thomas Grafee122c72015-07-21 10:43:58 +02001325 struct vxlan_metadata _md;
1326 struct vxlan_metadata *md = &_md;
Jiri Benc61618ee2016-04-11 17:06:08 +02001327 __be16 protocol = htons(ETH_P_TEB);
Jiri Bence1e53142016-04-05 14:47:13 +02001328 bool raw_proto = false;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001329 void *oiph;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001330 __be32 vni = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001331
Jiri Bence1e53142016-04-05 14:47:13 +02001332 /* Need UDP and VXLAN header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001333 if (!pskb_may_pull(skb, VXLAN_HLEN))
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001334 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001335
Jiri Bencf14eceb2016-02-16 21:59:01 +01001336 unparsed = *vxlan_hdr(skb);
Jiri Benc288b01c2016-02-16 21:59:02 +01001337 /* VNI flag always required to be set */
1338 if (!(unparsed.vx_flags & VXLAN_HF_VNI)) {
1339 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1340 ntohl(vxlan_hdr(skb)->vx_flags),
1341 ntohl(vxlan_hdr(skb)->vx_vni));
1342 /* Return non vxlan pkt */
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +02001343 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001344 }
Jiri Benc288b01c2016-02-16 21:59:02 +01001345 unparsed.vx_flags &= ~VXLAN_HF_VNI;
1346 unparsed.vx_vni &= ~VXLAN_VNI_MASK;
stephen hemmingerd3428942012-10-01 12:32:35 +00001347
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001348 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001349 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001350 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001351
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001352 vni = vxlan_vni(vxlan_hdr(skb)->vx_vni);
1353
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001354 vxlan = vxlan_vs_find_vni(vs, vni);
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001355 if (!vxlan)
1356 goto drop;
1357
Jiri Bence1e53142016-04-05 14:47:13 +02001358 /* For backwards compatibility, only allow reserved fields to be
1359 * used by VXLAN extensions if explicitly requested.
1360 */
1361 if (vs->flags & VXLAN_F_GPE) {
1362 if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags))
1363 goto drop;
1364 raw_proto = true;
1365 }
1366
1367 if (__iptunnel_pull_header(skb, VXLAN_HLEN, protocol, raw_proto,
1368 !net_eq(vxlan->net, dev_net(vxlan->dev))))
1369 goto drop;
Jiri Bencc9e78ef2016-02-18 11:22:51 +01001370
Thomas Grafee122c72015-07-21 10:43:58 +02001371 if (vxlan_collect_metadata(vs)) {
Jiri Benc10a5af22016-02-23 18:02:59 +01001372 struct metadata_dst *tun_dst;
Jiri Benc07dabf22016-02-18 19:19:29 +01001373
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001374 tun_dst = udp_tun_rx_dst(skb, vxlan_get_sk_family(vs), TUNNEL_KEY,
Amir Vadaid817f432016-09-08 16:23:45 +03001375 key32_to_tunnel_id(vni), sizeof(*md));
Pravin B Shelarc29a70d2015-08-26 23:46:50 -07001376
Thomas Grafee122c72015-07-21 10:43:58 +02001377 if (!tun_dst)
1378 goto drop;
1379
Geert Uytterhoeven0f1b7352015-09-04 12:49:32 +02001380 md = ip_tunnel_info_opts(&tun_dst->u.tun_info);
Jiri Benc10a5af22016-02-23 18:02:59 +01001381
1382 skb_dst_set(skb, (struct dst_entry *)tun_dst);
Thomas Grafee122c72015-07-21 10:43:58 +02001383 } else {
1384 memset(md, 0, sizeof(*md));
1385 }
1386
Jiri Bencf14eceb2016-02-16 21:59:01 +01001387 if (vs->flags & VXLAN_F_REMCSUM_RX)
1388 if (!vxlan_remcsum(&unparsed, skb, vs->flags))
1389 goto drop;
1390 if (vs->flags & VXLAN_F_GBP)
Jiri Benc10a5af22016-02-23 18:02:59 +01001391 vxlan_parse_gbp_hdr(&unparsed, skb, vs->flags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001392 /* Note that GBP and GPE can never be active together. This is
1393 * ensured in vxlan_dev_configure.
1394 */
Thomas Graf35114942015-01-15 03:53:55 +01001395
Jiri Bencf14eceb2016-02-16 21:59:01 +01001396 if (unparsed.vx_flags || unparsed.vx_vni) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001397 /* If there are any unprocessed flags remaining treat
1398 * this as a malformed packet. This behavior diverges from
1399 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1400 * in reserved fields are to be ignored. The approach here
Simon Hormanc4b49512015-04-02 11:17:58 +09001401 * maintains compatibility with previous stack code, and also
Tom Herbert3bf39472015-01-08 12:31:18 -08001402 * is more robust and provides a little more security in
1403 * adding extensions to VXLAN.
1404 */
Jiri Benc288b01c2016-02-16 21:59:02 +01001405 goto drop;
Tom Herbert3bf39472015-01-08 12:31:18 -08001406 }
1407
Jiri Bence1e53142016-04-05 14:47:13 +02001408 if (!raw_proto) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001409 if (!vxlan_set_mac(vxlan, vs, skb, vni))
Jiri Bence1e53142016-04-05 14:47:13 +02001410 goto drop;
1411 } else {
Jiri Benc8be0cfa2016-05-13 10:48:42 +02001412 skb_reset_mac_header(skb);
Jiri Bence1e53142016-04-05 14:47:13 +02001413 skb->dev = vxlan->dev;
1414 skb->pkt_type = PACKET_HOST;
1415 }
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001416
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01001417 oiph = skb_network_header(skb);
1418 skb_reset_network_header(skb);
1419
1420 if (!vxlan_ecn_decapsulate(vs, oiph, skb)) {
1421 ++vxlan->dev->stats.rx_frame_errors;
1422 ++vxlan->dev->stats.rx_errors;
1423 goto drop;
1424 }
1425
1426 stats = this_cpu_ptr(vxlan->dev->tstats);
1427 u64_stats_update_begin(&stats->syncp);
1428 stats->rx_packets++;
1429 stats->rx_bytes += skb->len;
1430 u64_stats_update_end(&stats->syncp);
1431
1432 gro_cells_receive(&vxlan->gro_cells, skb);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001433 return 0;
1434
1435drop:
Jiri Benc288b01c2016-02-16 21:59:02 +01001436 /* Consume bad packet */
1437 kfree_skb(skb);
1438 return 0;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001439}
1440
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001441static int arp_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
David Stevense4f67ad2012-11-20 02:50:14 +00001442{
1443 struct vxlan_dev *vxlan = netdev_priv(dev);
1444 struct arphdr *parp;
1445 u8 *arpptr, *sha;
1446 __be32 sip, tip;
1447 struct neighbour *n;
1448
1449 if (dev->flags & IFF_NOARP)
1450 goto out;
1451
1452 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1453 dev->stats.tx_dropped++;
1454 goto out;
1455 }
1456 parp = arp_hdr(skb);
1457
1458 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1459 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1460 parp->ar_pro != htons(ETH_P_IP) ||
1461 parp->ar_op != htons(ARPOP_REQUEST) ||
1462 parp->ar_hln != dev->addr_len ||
1463 parp->ar_pln != 4)
1464 goto out;
1465 arpptr = (u8 *)parp + sizeof(struct arphdr);
1466 sha = arpptr;
1467 arpptr += dev->addr_len; /* sha */
1468 memcpy(&sip, arpptr, sizeof(sip));
1469 arpptr += sizeof(sip);
1470 arpptr += dev->addr_len; /* tha */
1471 memcpy(&tip, arpptr, sizeof(tip));
1472
1473 if (ipv4_is_loopback(tip) ||
1474 ipv4_is_multicast(tip))
1475 goto out;
1476
1477 n = neigh_lookup(&arp_tbl, &tip, dev);
1478
1479 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001480 struct vxlan_fdb *f;
1481 struct sk_buff *reply;
1482
1483 if (!(n->nud_state & NUD_CONNECTED)) {
1484 neigh_release(n);
1485 goto out;
1486 }
1487
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001488 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wange4c7ed42013-08-31 13:44:33 +08001489 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001490 /* bridge-local neighbor */
1491 neigh_release(n);
1492 goto out;
1493 }
1494
1495 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1496 n->ha, sha);
1497
1498 neigh_release(n);
1499
David Stevens73461352014-03-18 12:32:29 -04001500 if (reply == NULL)
1501 goto out;
1502
David Stevense4f67ad2012-11-20 02:50:14 +00001503 skb_reset_mac_header(reply);
1504 __skb_pull(reply, skb_network_offset(reply));
1505 reply->ip_summed = CHECKSUM_UNNECESSARY;
1506 reply->pkt_type = PACKET_HOST;
1507
1508 if (netif_rx_ni(reply) == NET_RX_DROP)
1509 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001510 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1511 union vxlan_addr ipa = {
1512 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001513 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001514 };
1515
1516 vxlan_ip_miss(dev, &ipa);
1517 }
David Stevense4f67ad2012-11-20 02:50:14 +00001518out:
1519 consume_skb(skb);
1520 return NETDEV_TX_OK;
1521}
1522
Cong Wangf564f452013-08-31 13:44:36 +08001523#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001524static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1525 struct neighbour *n, bool isrouter)
1526{
1527 struct net_device *dev = request->dev;
1528 struct sk_buff *reply;
1529 struct nd_msg *ns, *na;
1530 struct ipv6hdr *pip6;
1531 u8 *daddr;
1532 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1533 int ns_olen;
1534 int i, len;
1535
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001536 if (dev == NULL || !pskb_may_pull(request, request->len))
David Stevens4b29dba2014-03-24 10:39:58 -04001537 return NULL;
1538
1539 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1540 sizeof(*na) + na_olen + dev->needed_tailroom;
1541 reply = alloc_skb(len, GFP_ATOMIC);
1542 if (reply == NULL)
1543 return NULL;
1544
1545 reply->protocol = htons(ETH_P_IPV6);
1546 reply->dev = dev;
1547 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1548 skb_push(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001549 skb_reset_mac_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001550
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001551 ns = (struct nd_msg *)(ipv6_hdr(request) + 1);
David Stevens4b29dba2014-03-24 10:39:58 -04001552
1553 daddr = eth_hdr(request)->h_source;
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001554 ns_olen = request->len - skb_network_offset(request) -
1555 sizeof(struct ipv6hdr) - sizeof(*ns);
David Stevens4b29dba2014-03-24 10:39:58 -04001556 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1557 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1558 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1559 break;
1560 }
1561 }
1562
1563 /* Ethernet header */
1564 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1565 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1566 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1567 reply->protocol = htons(ETH_P_IPV6);
1568
1569 skb_pull(reply, sizeof(struct ethhdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001570 skb_reset_network_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001571 skb_put(reply, sizeof(struct ipv6hdr));
1572
1573 /* IPv6 header */
1574
1575 pip6 = ipv6_hdr(reply);
1576 memset(pip6, 0, sizeof(struct ipv6hdr));
1577 pip6->version = 6;
1578 pip6->priority = ipv6_hdr(request)->priority;
1579 pip6->nexthdr = IPPROTO_ICMPV6;
1580 pip6->hop_limit = 255;
1581 pip6->daddr = ipv6_hdr(request)->saddr;
1582 pip6->saddr = *(struct in6_addr *)n->primary_key;
1583
1584 skb_pull(reply, sizeof(struct ipv6hdr));
Zhang Shengju6297b912016-03-03 01:16:54 +00001585 skb_reset_transport_header(reply);
David Stevens4b29dba2014-03-24 10:39:58 -04001586
David Stevens4b29dba2014-03-24 10:39:58 -04001587 /* Neighbor Advertisement */
Johannes Bergb080db52017-06-16 14:29:19 +02001588 na = skb_put_zero(reply, sizeof(*na) + na_olen);
David Stevens4b29dba2014-03-24 10:39:58 -04001589 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1590 na->icmph.icmp6_router = isrouter;
1591 na->icmph.icmp6_override = 1;
1592 na->icmph.icmp6_solicited = 1;
1593 na->target = ns->target;
1594 ether_addr_copy(&na->opt[2], n->ha);
1595 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1596 na->opt[1] = na_olen >> 3;
1597
1598 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1599 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1600 csum_partial(na, sizeof(*na)+na_olen, 0));
1601
1602 pip6->payload_len = htons(sizeof(*na)+na_olen);
1603
1604 skb_push(reply, sizeof(struct ipv6hdr));
1605
1606 reply->ip_summed = CHECKSUM_UNNECESSARY;
1607
1608 return reply;
1609}
1610
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001611static int neigh_reduce(struct net_device *dev, struct sk_buff *skb, __be32 vni)
Cong Wangf564f452013-08-31 13:44:36 +08001612{
1613 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001614 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001615 const struct ipv6hdr *iphdr;
Roopa Prabhu8dcd81a2017-02-20 08:41:16 -08001616 const struct in6_addr *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001617 struct neighbour *n;
1618 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001619
1620 in6_dev = __in6_dev_get(dev);
1621 if (!in6_dev)
1622 goto out;
1623
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001624 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + sizeof(struct nd_msg)))
1625 goto out;
1626
Cong Wangf564f452013-08-31 13:44:36 +08001627 iphdr = ipv6_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001628 daddr = &iphdr->daddr;
1629
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02001630 msg = (struct nd_msg *)(iphdr + 1);
Cong Wangf564f452013-08-31 13:44:36 +08001631 if (msg->icmph.icmp6_code != 0 ||
1632 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1633 goto out;
1634
David Stevens4b29dba2014-03-24 10:39:58 -04001635 if (ipv6_addr_loopback(daddr) ||
1636 ipv6_addr_is_multicast(&msg->target))
1637 goto out;
1638
1639 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001640
1641 if (n) {
1642 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001643 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001644
1645 if (!(n->nud_state & NUD_CONNECTED)) {
1646 neigh_release(n);
1647 goto out;
1648 }
1649
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001650 f = vxlan_find_mac(vxlan, n->ha, vni);
Cong Wangf564f452013-08-31 13:44:36 +08001651 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1652 /* bridge-local neighbor */
1653 neigh_release(n);
1654 goto out;
1655 }
1656
David Stevens4b29dba2014-03-24 10:39:58 -04001657 reply = vxlan_na_create(skb, n,
1658 !!(f ? f->flags & NTF_ROUTER : 0));
1659
Cong Wangf564f452013-08-31 13:44:36 +08001660 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001661
1662 if (reply == NULL)
1663 goto out;
1664
1665 if (netif_rx_ni(reply) == NET_RX_DROP)
1666 dev->stats.rx_dropped++;
1667
Cong Wangf564f452013-08-31 13:44:36 +08001668 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001669 union vxlan_addr ipa = {
1670 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001671 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001672 };
1673
Cong Wangf564f452013-08-31 13:44:36 +08001674 vxlan_ip_miss(dev, &ipa);
1675 }
1676
1677out:
1678 consume_skb(skb);
1679 return NETDEV_TX_OK;
1680}
1681#endif
1682
David Stevense4f67ad2012-11-20 02:50:14 +00001683static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1684{
1685 struct vxlan_dev *vxlan = netdev_priv(dev);
1686 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001687
1688 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1689 return false;
1690
1691 n = NULL;
1692 switch (ntohs(eth_hdr(skb)->h_proto)) {
1693 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001694 {
1695 struct iphdr *pip;
1696
David Stevense4f67ad2012-11-20 02:50:14 +00001697 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1698 return false;
1699 pip = ip_hdr(skb);
1700 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001701 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1702 union vxlan_addr ipa = {
1703 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001704 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001705 };
1706
1707 vxlan_ip_miss(dev, &ipa);
1708 return false;
1709 }
1710
David Stevense4f67ad2012-11-20 02:50:14 +00001711 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001712 }
1713#if IS_ENABLED(CONFIG_IPV6)
1714 case ETH_P_IPV6:
1715 {
1716 struct ipv6hdr *pip6;
1717
1718 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1719 return false;
1720 pip6 = ipv6_hdr(skb);
1721 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1722 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1723 union vxlan_addr ipa = {
1724 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001725 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001726 };
1727
1728 vxlan_ip_miss(dev, &ipa);
1729 return false;
1730 }
1731
1732 break;
1733 }
1734#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001735 default:
1736 return false;
1737 }
1738
1739 if (n) {
1740 bool diff;
1741
Joe Perches7367d0b2013-09-01 11:51:23 -07001742 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001743 if (diff) {
1744 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1745 dev->addr_len);
1746 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1747 }
1748 neigh_release(n);
1749 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001750 }
1751
David Stevense4f67ad2012-11-20 02:50:14 +00001752 return false;
1753}
1754
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001755static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01001756 struct vxlan_metadata *md)
1757{
1758 struct vxlanhdr_gbp *gbp;
1759
Thomas Grafdb79a622015-02-04 17:00:04 +01001760 if (!md->gbp)
1761 return;
1762
Thomas Graf35114942015-01-15 03:53:55 +01001763 gbp = (struct vxlanhdr_gbp *)vxh;
Jiri Benc54bfd872016-02-16 21:58:58 +01001764 vxh->vx_flags |= VXLAN_HF_GBP;
Thomas Graf35114942015-01-15 03:53:55 +01001765
1766 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1767 gbp->dont_learn = 1;
1768
1769 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1770 gbp->policy_applied = 1;
1771
1772 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1773}
1774
Jiri Bence1e53142016-04-05 14:47:13 +02001775static int vxlan_build_gpe_hdr(struct vxlanhdr *vxh, u32 vxflags,
1776 __be16 protocol)
1777{
1778 struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)vxh;
1779
1780 gpe->np_applied = 1;
1781
1782 switch (protocol) {
1783 case htons(ETH_P_IP):
1784 gpe->next_protocol = VXLAN_GPE_NP_IPV4;
1785 return 0;
1786 case htons(ETH_P_IPV6):
1787 gpe->next_protocol = VXLAN_GPE_NP_IPV6;
1788 return 0;
1789 case htons(ETH_P_TEB):
1790 gpe->next_protocol = VXLAN_GPE_NP_ETHERNET;
1791 return 0;
1792 }
1793 return -EPFNOSUPPORT;
1794}
1795
Jiri Bencf491e562016-02-02 18:09:16 +01001796static int vxlan_build_skb(struct sk_buff *skb, struct dst_entry *dst,
1797 int iphdr_len, __be32 vni,
1798 struct vxlan_metadata *md, u32 vxflags,
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01001799 bool udp_sum)
Cong Wange4c7ed42013-08-31 13:44:33 +08001800{
Cong Wange4c7ed42013-08-31 13:44:33 +08001801 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001802 int min_headroom;
1803 int err;
Tom Herbertdfd86452015-01-12 17:00:38 -08001804 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
Jiri Bence1e53142016-04-05 14:47:13 +02001805 __be16 inner_protocol = htons(ETH_P_TEB);
Cong Wange4c7ed42013-08-31 13:44:33 +08001806
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001807 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001808 skb->ip_summed == CHECKSUM_PARTIAL) {
1809 int csum_start = skb_checksum_start_offset(skb);
1810
1811 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1812 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1813 (skb->csum_offset == offsetof(struct udphdr, check) ||
Edward Creeb5708502016-02-11 20:57:17 +00001814 skb->csum_offset == offsetof(struct tcphdr, check)))
Tom Herbertdfd86452015-01-12 17:00:38 -08001815 type |= SKB_GSO_TUNNEL_REMCSUM;
Tom Herbertdfd86452015-01-12 17:00:38 -08001816 }
1817
Cong Wange4c7ed42013-08-31 13:44:33 +08001818 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
pravin shelar4a4f86c2016-11-13 20:43:52 -08001819 + VXLAN_HLEN + iphdr_len;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001820
1821 /* Need space for new headers (invalidates iph ptr) */
1822 err = skb_cow_head(skb, min_headroom);
Jiri Bence1e53142016-04-05 14:47:13 +02001823 if (unlikely(err))
pravin shelarc46b7892016-11-13 20:43:54 -08001824 return err;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001825
Alexander Duyckaed069d2016-04-14 15:33:37 -04001826 err = iptunnel_handle_offloads(skb, type);
1827 if (err)
pravin shelarc46b7892016-11-13 20:43:54 -08001828 return err;
Jesse Grossb736a622015-04-09 11:19:14 -07001829
Johannes Bergd58ff352017-06-16 14:29:23 +02001830 vxh = __skb_push(skb, sizeof(*vxh));
Jiri Benc54bfd872016-02-16 21:58:58 +01001831 vxh->vx_flags = VXLAN_HF_VNI;
1832 vxh->vx_vni = vxlan_vni_field(vni);
Pravin B Shelar49560532013-08-19 11:23:17 -07001833
Tom Herbertdfd86452015-01-12 17:00:38 -08001834 if (type & SKB_GSO_TUNNEL_REMCSUM) {
Jiri Benc54bfd872016-02-16 21:58:58 +01001835 unsigned int start;
Tom Herbertdfd86452015-01-12 17:00:38 -08001836
Jiri Benc54bfd872016-02-16 21:58:58 +01001837 start = skb_checksum_start_offset(skb) - sizeof(struct vxlanhdr);
1838 vxh->vx_vni |= vxlan_compute_rco(start, skb->csum_offset);
1839 vxh->vx_flags |= VXLAN_HF_RCO;
Tom Herbertdfd86452015-01-12 17:00:38 -08001840
1841 if (!skb_is_gso(skb)) {
1842 skb->ip_summed = CHECKSUM_NONE;
1843 skb->encapsulation = 0;
1844 }
1845 }
1846
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001847 if (vxflags & VXLAN_F_GBP)
1848 vxlan_build_gbp_hdr(vxh, vxflags, md);
Jiri Bence1e53142016-04-05 14:47:13 +02001849 if (vxflags & VXLAN_F_GPE) {
1850 err = vxlan_build_gpe_hdr(vxh, vxflags, skb->protocol);
1851 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08001852 return err;
Jiri Bence1e53142016-04-05 14:47:13 +02001853 inner_protocol = skb->protocol;
1854 }
Thomas Graf35114942015-01-15 03:53:55 +01001855
Jiri Bence1e53142016-04-05 14:47:13 +02001856 skb_set_inner_protocol(skb, inner_protocol);
Pravin B Shelar039f5062015-12-24 14:34:54 -08001857 return 0;
Pravin B Shelar49560532013-08-19 11:23:17 -07001858}
Pravin B Shelar49560532013-08-19 11:23:17 -07001859
pravin shelar655c3de2016-11-13 20:43:55 -08001860static struct rtable *vxlan_get_route(struct vxlan_dev *vxlan, struct net_device *dev,
1861 struct vxlan_sock *sock4,
Jiri Benc1a8496b2016-02-02 18:09:14 +01001862 struct sk_buff *skb, int oif, u8 tos,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001863 __be32 daddr, __be32 *saddr, __be16 dport, __be16 sport,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001864 struct dst_cache *dst_cache,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001865 const struct ip_tunnel_info *info)
Jiri Benc1a8496b2016-02-02 18:09:14 +01001866{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001867 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01001868 struct rtable *rt = NULL;
1869 struct flowi4 fl4;
1870
pravin shelar655c3de2016-11-13 20:43:55 -08001871 if (!sock4)
1872 return ERR_PTR(-EIO);
1873
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001874 if (tos && !info)
1875 use_cache = false;
1876 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001877 rt = dst_cache_get_ip4(dst_cache, saddr);
1878 if (rt)
1879 return rt;
1880 }
1881
Jiri Benc1a8496b2016-02-02 18:09:14 +01001882 memset(&fl4, 0, sizeof(fl4));
1883 fl4.flowi4_oif = oif;
1884 fl4.flowi4_tos = RT_TOS(tos);
1885 fl4.flowi4_mark = skb->mark;
1886 fl4.flowi4_proto = IPPROTO_UDP;
1887 fl4.daddr = daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07001888 fl4.saddr = *saddr;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001889 fl4.fl4_dport = dport;
1890 fl4.fl4_sport = sport;
Jiri Benc1a8496b2016-02-02 18:09:14 +01001891
1892 rt = ip_route_output_key(vxlan->net, &fl4);
pravin shelar655c3de2016-11-13 20:43:55 -08001893 if (likely(!IS_ERR(rt))) {
1894 if (rt->dst.dev == dev) {
1895 netdev_dbg(dev, "circular route to %pI4\n", &daddr);
1896 ip_rt_put(rt);
1897 return ERR_PTR(-ELOOP);
1898 }
1899
Jiri Benc1a8496b2016-02-02 18:09:14 +01001900 *saddr = fl4.saddr;
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001901 if (use_cache)
1902 dst_cache_set_ip4(dst_cache, &rt->dst, fl4.saddr);
pravin shelar655c3de2016-11-13 20:43:55 -08001903 } else {
1904 netdev_dbg(dev, "no route to %pI4\n", &daddr);
1905 return ERR_PTR(-ENETUNREACH);
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001906 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01001907 return rt;
1908}
1909
Jiri Bence5d4b292015-12-07 13:04:30 +01001910#if IS_ENABLED(CONFIG_IPV6)
1911static struct dst_entry *vxlan6_get_route(struct vxlan_dev *vxlan,
pravin shelar655c3de2016-11-13 20:43:55 -08001912 struct net_device *dev,
pravin shelar03dc52a2016-11-13 20:43:53 -08001913 struct vxlan_sock *sock6,
Daniel Borkmann14006152016-03-04 15:15:08 +01001914 struct sk_buff *skb, int oif, u8 tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01001915 __be32 label,
Jiri Bence5d4b292015-12-07 13:04:30 +01001916 const struct in6_addr *daddr,
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001917 struct in6_addr *saddr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001918 __be16 dport, __be16 sport,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001919 struct dst_cache *dst_cache,
1920 const struct ip_tunnel_info *info)
Jiri Bence5d4b292015-12-07 13:04:30 +01001921{
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001922 bool use_cache = ip_tunnel_dst_cache_usable(skb, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01001923 struct dst_entry *ndst;
1924 struct flowi6 fl6;
1925 int err;
1926
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001927 if (!sock6)
1928 return ERR_PTR(-EIO);
1929
Daniel Borkmann14006152016-03-04 15:15:08 +01001930 if (tos && !info)
1931 use_cache = false;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001932 if (use_cache) {
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001933 ndst = dst_cache_get_ip6(dst_cache, saddr);
1934 if (ndst)
1935 return ndst;
1936 }
1937
Jiri Bence5d4b292015-12-07 13:04:30 +01001938 memset(&fl6, 0, sizeof(fl6));
1939 fl6.flowi6_oif = oif;
1940 fl6.daddr = *daddr;
pravin shelar272d96a2016-08-05 17:45:36 -07001941 fl6.saddr = *saddr;
Daniel Borkmanneaa93bf2016-03-18 18:37:57 +01001942 fl6.flowlabel = ip6_make_flowinfo(RT_TOS(tos), label);
Jiri Bence5d4b292015-12-07 13:04:30 +01001943 fl6.flowi6_mark = skb->mark;
1944 fl6.flowi6_proto = IPPROTO_UDP;
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00001945 fl6.fl6_dport = dport;
1946 fl6.fl6_sport = sport;
Jiri Bence5d4b292015-12-07 13:04:30 +01001947
1948 err = ipv6_stub->ipv6_dst_lookup(vxlan->net,
pravin shelarc6fcc4f2016-10-28 09:59:15 -07001949 sock6->sock->sk,
Jiri Bence5d4b292015-12-07 13:04:30 +01001950 &ndst, &fl6);
pravin shelar655c3de2016-11-13 20:43:55 -08001951 if (unlikely(err < 0)) {
1952 netdev_dbg(dev, "no route to %pI6\n", daddr);
1953 return ERR_PTR(-ENETUNREACH);
1954 }
1955
1956 if (unlikely(ndst->dev == dev)) {
1957 netdev_dbg(dev, "circular route to %pI6\n", daddr);
1958 dst_release(ndst);
1959 return ERR_PTR(-ELOOP);
1960 }
Jiri Bence5d4b292015-12-07 13:04:30 +01001961
1962 *saddr = fl6.saddr;
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01001963 if (use_cache)
Paolo Abeni0c1d70a2016-02-12 15:43:56 +01001964 dst_cache_set_ip6(dst_cache, ndst, saddr);
Jiri Bence5d4b292015-12-07 13:04:30 +01001965 return ndst;
1966}
1967#endif
1968
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001969/* Bypass encapsulation if the destination is local */
1970static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001971 struct vxlan_dev *dst_vxlan, __be32 vni)
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001972{
Li RongQing8f849852014-01-04 13:57:59 +08001973 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001974 union vxlan_addr loopback;
1975 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001976 struct net_device *dev = skb->dev;
1977 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001978
Li RongQing8f849852014-01-04 13:57:59 +08001979 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1980 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001981 skb->pkt_type = PACKET_HOST;
1982 skb->encapsulation = 0;
1983 skb->dev = dst_vxlan->dev;
1984 __skb_pull(skb, skb_network_offset(skb));
1985
Cong Wange4c7ed42013-08-31 13:44:33 +08001986 if (remote_ip->sa.sa_family == AF_INET) {
1987 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1988 loopback.sa.sa_family = AF_INET;
1989#if IS_ENABLED(CONFIG_IPV6)
1990 } else {
1991 loopback.sin6.sin6_addr = in6addr_loopback;
1992 loopback.sa.sa_family = AF_INET6;
1993#endif
1994 }
1995
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001996 if (dst_vxlan->flags & VXLAN_F_LEARN)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08001997 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source, vni);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001998
1999 u64_stats_update_begin(&tx_stats->syncp);
2000 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002001 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002002 u64_stats_update_end(&tx_stats->syncp);
2003
2004 if (netif_rx(skb) == NET_RX_SUCCESS) {
2005 u64_stats_update_begin(&rx_stats->syncp);
2006 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08002007 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002008 u64_stats_update_end(&rx_stats->syncp);
2009 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08002010 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002011 }
2012}
2013
pravin shelarfee1fad2016-11-13 20:43:56 -08002014static int encap_bypass_if_local(struct sk_buff *skb, struct net_device *dev,
2015 struct vxlan_dev *vxlan, union vxlan_addr *daddr,
Lance Richardson1f6cc072017-01-18 15:24:57 -05002016 __be16 dst_port, __be32 vni, struct dst_entry *dst,
pravin shelarfee1fad2016-11-13 20:43:56 -08002017 u32 rt_flags)
2018{
2019#if IS_ENABLED(CONFIG_IPV6)
2020 /* IPv6 rt-flags are checked against RTF_LOCAL, but the value of
2021 * RTF_LOCAL is equal to RTCF_LOCAL. So to keep code simple
2022 * we can use RTCF_LOCAL which works for ipv4 and ipv6 route entry.
2023 */
2024 BUILD_BUG_ON(RTCF_LOCAL != RTF_LOCAL);
2025#endif
2026 /* Bypass encapsulation if the destination is local */
2027 if (rt_flags & RTCF_LOCAL &&
2028 !(rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2029 struct vxlan_dev *dst_vxlan;
2030
2031 dst_release(dst);
2032 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
2033 daddr->sa.sa_family, dst_port,
2034 vxlan->flags);
2035 if (!dst_vxlan) {
2036 dev->stats.tx_errors++;
2037 kfree_skb(skb);
2038
2039 return -ENOENT;
2040 }
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002041 vxlan_encap_bypass(skb, vxlan, dst_vxlan, vni);
pravin shelarfee1fad2016-11-13 20:43:56 -08002042 return 1;
2043 }
2044
2045 return 0;
2046}
2047
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002048static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002049 __be32 default_vni, struct vxlan_rdst *rdst,
2050 bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00002051{
Paolo Abenid71785f2016-02-12 15:43:57 +01002052 struct dst_cache *dst_cache;
Thomas Graf3093fbe2015-07-21 10:44:00 +02002053 struct ip_tunnel_info *info;
stephen hemmingerd3428942012-10-01 12:32:35 +00002054 struct vxlan_dev *vxlan = netdev_priv(dev);
pravin shelar0770b532016-11-13 20:43:57 -08002055 const struct iphdr *old_iph = ip_hdr(skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002056 union vxlan_addr *dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002057 union vxlan_addr remote_ip, local_ip;
Thomas Grafee122c72015-07-21 10:43:58 +02002058 struct vxlan_metadata _md;
2059 struct vxlan_metadata *md = &_md;
Cong Wange4c7ed42013-08-31 13:44:33 +08002060 __be16 src_port = 0, dst_port;
pravin shelar655c3de2016-11-13 20:43:55 -08002061 struct dst_entry *ndst = NULL;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002062 __be32 vni, label;
stephen hemmingerd3428942012-10-01 12:32:35 +00002063 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07002064 int err;
Thomas Grafee122c72015-07-21 10:43:58 +02002065 u32 flags = vxlan->flags;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002066 bool udp_sum = false;
Jiri Bencf491e562016-02-02 18:09:16 +01002067 bool xnet = !net_eq(vxlan->net, dev_net(vxlan->dev));
stephen hemmingerd3428942012-10-01 12:32:35 +00002068
Jiri Benc61adedf2015-08-20 13:56:25 +02002069 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002070
Thomas Grafee122c72015-07-21 10:43:58 +02002071 if (rdst) {
pravin shelar0770b532016-11-13 20:43:57 -08002072 dst = &rdst->remote_ip;
2073 if (vxlan_addr_any(dst)) {
2074 if (did_rsc) {
2075 /* short-circuited back to local bridge */
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002076 vxlan_encap_bypass(skb, vxlan, vxlan, default_vni);
pravin shelar0770b532016-11-13 20:43:57 -08002077 return;
2078 }
2079 goto drop;
2080 }
2081
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002082 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->cfg.dst_port;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002083 vni = (rdst->remote_vni) ? : default_vni;
Brian Russell11586322017-02-24 17:47:11 +00002084 local_ip = vxlan->cfg.saddr;
Paolo Abenid71785f2016-02-12 15:43:57 +01002085 dst_cache = &rdst->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002086 md->gbp = skb->mark;
2087 ttl = vxlan->cfg.ttl;
2088 if (!ttl && vxlan_addr_multicast(dst))
2089 ttl = 1;
2090
2091 tos = vxlan->cfg.tos;
2092 if (tos == 1)
2093 tos = ip_tunnel_get_dsfield(old_iph, skb);
2094
2095 if (dst->sa.sa_family == AF_INET)
2096 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM_TX);
2097 else
2098 udp_sum = !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
2099 label = vxlan->cfg.label;
Thomas Grafee122c72015-07-21 10:43:58 +02002100 } else {
2101 if (!info) {
2102 WARN_ONCE(1, "%s: Missing encapsulation instructions\n",
2103 dev->name);
2104 goto drop;
2105 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002106 remote_ip.sa.sa_family = ip_tunnel_info_af(info);
pravin shelar272d96a2016-08-05 17:45:36 -07002107 if (remote_ip.sa.sa_family == AF_INET) {
Jiri Benca725e512015-08-20 13:56:30 +02002108 remote_ip.sin.sin_addr.s_addr = info->key.u.ipv4.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002109 local_ip.sin.sin_addr.s_addr = info->key.u.ipv4.src;
2110 } else {
Jiri Benca725e512015-08-20 13:56:30 +02002111 remote_ip.sin6.sin6_addr = info->key.u.ipv6.dst;
pravin shelar272d96a2016-08-05 17:45:36 -07002112 local_ip.sin6.sin6_addr = info->key.u.ipv6.src;
2113 }
Thomas Grafee122c72015-07-21 10:43:58 +02002114 dst = &remote_ip;
pravin shelar0770b532016-11-13 20:43:57 -08002115 dst_port = info->key.tp_dst ? : vxlan->cfg.dst_port;
2116 vni = tunnel_id_to_key32(info->key.tun_id);
Paolo Abenid71785f2016-02-12 15:43:57 +01002117 dst_cache = &info->dst_cache;
pravin shelar0770b532016-11-13 20:43:57 -08002118 if (info->options_len)
2119 md = ip_tunnel_info_opts(info);
Jiri Benca725e512015-08-20 13:56:30 +02002120 ttl = info->key.ttl;
2121 tos = info->key.tos;
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002122 label = info->key.label;
Jiri Bencb4ed5ca2016-02-02 18:09:15 +01002123 udp_sum = !!(info->key.tun_flags & TUNNEL_CSUM);
Jiri Benca725e512015-08-20 13:56:30 +02002124 }
pravin shelar0770b532016-11-13 20:43:57 -08002125 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2126 vxlan->cfg.port_max, true);
Jiri Benca725e512015-08-20 13:56:30 +02002127
Jakub Kicinski56de8592017-02-24 11:43:36 -08002128 rcu_read_lock();
Cong Wange4c7ed42013-08-31 13:44:33 +08002129 if (dst->sa.sa_family == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002130 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
pravin shelarc46b7892016-11-13 20:43:54 -08002131 struct rtable *rt;
pravin shelar0770b532016-11-13 20:43:57 -08002132 __be16 df = 0;
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002133
pravin shelar655c3de2016-11-13 20:43:55 -08002134 rt = vxlan_get_route(vxlan, dev, sock4, skb,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002135 rdst ? rdst->remote_ifindex : 0, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002136 dst->sin.sin_addr.s_addr,
Brian Russell11586322017-02-24 17:47:11 +00002137 &local_ip.sin.sin_addr.s_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002138 dst_port, src_port,
Paolo Abenid71785f2016-02-12 15:43:57 +01002139 dst_cache, info);
David S. Miller8ebd1152016-11-15 16:32:11 -05002140 if (IS_ERR(rt)) {
2141 err = PTR_ERR(rt);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002142 goto tx_error;
David S. Miller8ebd1152016-11-15 16:32:11 -05002143 }
pravin shelarfee1fad2016-11-13 20:43:56 -08002144
Cong Wange4c7ed42013-08-31 13:44:33 +08002145 /* Bypass encapsulation if the destination is local */
pravin shelarfee1fad2016-11-13 20:43:56 -08002146 if (!info) {
2147 err = encap_bypass_if_local(skb, dev, vxlan, dst,
2148 dst_port, vni, &rt->dst,
2149 rt->rt_flags);
2150 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002151 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002152 } else if (info->key.tun_flags & TUNNEL_DONT_FRAGMENT) {
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002153 df = htons(IP_DF);
pravin shelarfee1fad2016-11-13 20:43:56 -08002154 }
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08002155
pravin shelarc46b7892016-11-13 20:43:54 -08002156 ndst = &rt->dst;
Cong Wange4c7ed42013-08-31 13:44:33 +08002157 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
2158 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
pravin shelarc46b7892016-11-13 20:43:54 -08002159 err = vxlan_build_skb(skb, ndst, sizeof(struct iphdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002160 vni, md, flags, udp_sum);
Jiri Bencf491e562016-02-02 18:09:16 +01002161 if (err < 0)
pravin shelarc46b7892016-11-13 20:43:54 -08002162 goto tx_error;
Jiri Bencf491e562016-02-02 18:09:16 +01002163
Brian Russell11586322017-02-24 17:47:11 +00002164 udp_tunnel_xmit_skb(rt, sock4->sock->sk, skb, local_ip.sin.sin_addr.s_addr,
Jiri Bencf491e562016-02-02 18:09:16 +01002165 dst->sin.sin_addr.s_addr, tos, ttl, df,
2166 src_port, dst_port, xnet, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002167#if IS_ENABLED(CONFIG_IPV6)
2168 } else {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002169 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Cong Wange4c7ed42013-08-31 13:44:33 +08002170
pravin shelar655c3de2016-11-13 20:43:55 -08002171 ndst = vxlan6_get_route(vxlan, dev, sock6, skb,
Daniel Borkmann14006152016-03-04 15:15:08 +01002172 rdst ? rdst->remote_ifindex : 0, tos,
pravin shelar272d96a2016-08-05 17:45:36 -07002173 label, &dst->sin6.sin6_addr,
Brian Russell11586322017-02-24 17:47:11 +00002174 &local_ip.sin6.sin6_addr,
Martynas Pumputis4ecb1d82017-01-11 15:18:53 +00002175 dst_port, src_port,
Daniel Borkmanndb3c6132016-03-04 15:15:07 +01002176 dst_cache, info);
Jiri Bence5d4b292015-12-07 13:04:30 +01002177 if (IS_ERR(ndst)) {
David S. Miller8ebd1152016-11-15 16:32:11 -05002178 err = PTR_ERR(ndst);
pravin shelarc46b7892016-11-13 20:43:54 -08002179 ndst = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08002180 goto tx_error;
2181 }
pravin shelar655c3de2016-11-13 20:43:55 -08002182
pravin shelarfee1fad2016-11-13 20:43:56 -08002183 if (!info) {
2184 u32 rt6i_flags = ((struct rt6_info *)ndst)->rt6i_flags;
Cong Wange4c7ed42013-08-31 13:44:33 +08002185
pravin shelarfee1fad2016-11-13 20:43:56 -08002186 err = encap_bypass_if_local(skb, dev, vxlan, dst,
2187 dst_port, vni, ndst,
2188 rt6i_flags);
2189 if (err)
Jakub Kicinski56de8592017-02-24 11:43:36 -08002190 goto out_unlock;
pravin shelarfee1fad2016-11-13 20:43:56 -08002191 }
Jesse Gross35e2d112016-01-20 16:22:47 -08002192
Daniel Borkmann14006152016-03-04 15:15:08 +01002193 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
Cong Wange4c7ed42013-08-31 13:44:33 +08002194 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Jiri Bencf491e562016-02-02 18:09:16 +01002195 skb_scrub_packet(skb, xnet);
2196 err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
Jiri Benc54bfd872016-02-16 21:58:58 +01002197 vni, md, flags, udp_sum);
pravin shelarc46b7892016-11-13 20:43:54 -08002198 if (err < 0)
2199 goto tx_error;
2200
pravin shelar0770b532016-11-13 20:43:57 -08002201 udp_tunnel6_xmit_skb(ndst, sock6->sock->sk, skb, dev,
Brian Russell11586322017-02-24 17:47:11 +00002202 &local_ip.sin6.sin6_addr,
pravin shelar272d96a2016-08-05 17:45:36 -07002203 &dst->sin6.sin6_addr, tos, ttl,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002204 label, src_port, dst_port, !udp_sum);
Cong Wange4c7ed42013-08-31 13:44:33 +08002205#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002206 }
Jakub Kicinski56de8592017-02-24 11:43:36 -08002207out_unlock:
2208 rcu_read_unlock();
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002209 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002210
2211drop:
2212 dev->stats.tx_dropped++;
stephen hemmingerd3428942012-10-01 12:32:35 +00002213 dev_kfree_skb(skb);
pravin shelarc46b7892016-11-13 20:43:54 -08002214 return;
2215
2216tx_error:
Jakub Kicinski56de8592017-02-24 11:43:36 -08002217 rcu_read_unlock();
pravin shelar655c3de2016-11-13 20:43:55 -08002218 if (err == -ELOOP)
2219 dev->stats.collisions++;
2220 else if (err == -ENETUNREACH)
2221 dev->stats.tx_carrier_errors++;
pravin shelarc46b7892016-11-13 20:43:54 -08002222 dst_release(ndst);
2223 dev->stats.tx_errors++;
2224 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002225}
2226
David Stevens66817122013-03-15 04:35:51 +00002227/* Transmit local packets over Vxlan
2228 *
2229 * Outer IP header inherits ECN and DF from inner header.
2230 * Outer UDP destination is the VXLAN assigned port.
2231 * source port is based on hash of flow
2232 */
2233static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2234{
2235 struct vxlan_dev *vxlan = netdev_priv(dev);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002236 const struct ip_tunnel_info *info;
David Stevens66817122013-03-15 04:35:51 +00002237 struct ethhdr *eth;
2238 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002239 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002240 struct vxlan_fdb *f;
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002241 __be32 vni = 0;
David Stevens66817122013-03-15 04:35:51 +00002242
Jiri Benc61adedf2015-08-20 13:56:25 +02002243 info = skb_tunnel_info(skb);
Thomas Graf3093fbe2015-07-21 10:44:00 +02002244
David Stevens66817122013-03-15 04:35:51 +00002245 skb_reset_mac_header(skb);
David Stevens66817122013-03-15 04:35:51 +00002246
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002247 if (vxlan->flags & VXLAN_F_COLLECT_METADATA) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002248 if (info && info->mode & IP_TUNNEL_INFO_BRIDGE &&
2249 info->mode & IP_TUNNEL_INFO_TX) {
2250 vni = tunnel_id_to_key32(info->key.tun_id);
2251 } else {
2252 if (info && info->mode & IP_TUNNEL_INFO_TX)
2253 vxlan_xmit_one(skb, dev, vni, NULL, false);
2254 else
2255 kfree_skb(skb);
2256 return NETDEV_TX_OK;
2257 }
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002258 }
2259
2260 if (vxlan->flags & VXLAN_F_PROXY) {
2261 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002262 if (ntohs(eth->h_proto) == ETH_P_ARP)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002263 return arp_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002264#if IS_ENABLED(CONFIG_IPV6)
Vincent Bernatf1fb08f2017-04-02 11:00:06 +02002265 else if (ntohs(eth->h_proto) == ETH_P_IPV6) {
2266 struct ipv6hdr *hdr, _hdr;
2267 if ((hdr = skb_header_pointer(skb,
2268 skb_network_offset(skb),
2269 sizeof(_hdr), &_hdr)) &&
2270 hdr->nexthdr == IPPROTO_ICMPV6)
2271 return neigh_reduce(dev, skb, vni);
Cong Wangf564f452013-08-31 13:44:36 +08002272 }
2273#endif
2274 }
David Stevens66817122013-03-15 04:35:51 +00002275
Jiri Benc47e5d1b2016-04-05 14:47:11 +02002276 eth = eth_hdr(skb);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002277 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002278 did_rsc = false;
2279
2280 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002281 (ntohs(eth->h_proto) == ETH_P_IP ||
2282 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002283 did_rsc = route_shortcircuit(dev, skb);
2284 if (did_rsc)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002285 f = vxlan_find_mac(vxlan, eth->h_dest, vni);
David Stevensae884082013-04-19 00:36:26 +00002286 }
2287
David Stevens66817122013-03-15 04:35:51 +00002288 if (f == NULL) {
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002289 f = vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002290 if (f == NULL) {
2291 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2292 !is_multicast_ether_addr(eth->h_dest))
2293 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002294
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002295 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002296 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002297 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002298 }
David Stevens66817122013-03-15 04:35:51 +00002299 }
2300
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002301 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2302 struct sk_buff *skb1;
2303
Eric Dumazet8f646c92014-01-06 09:54:31 -08002304 if (!fdst) {
2305 fdst = rdst;
2306 continue;
2307 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002308 skb1 = skb_clone(skb, GFP_ATOMIC);
2309 if (skb1)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002310 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002311 }
2312
Eric Dumazet8f646c92014-01-06 09:54:31 -08002313 if (fdst)
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002314 vxlan_xmit_one(skb, dev, vni, fdst, did_rsc);
Eric Dumazet8f646c92014-01-06 09:54:31 -08002315 else
2316 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002317 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002318}
2319
stephen hemmingerd3428942012-10-01 12:32:35 +00002320/* Walk the forwarding table and purge stale entries */
2321static void vxlan_cleanup(unsigned long arg)
2322{
2323 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2324 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2325 unsigned int h;
2326
2327 if (!netif_running(vxlan->dev))
2328 return;
2329
stephen hemmingerd3428942012-10-01 12:32:35 +00002330 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2331 struct hlist_node *p, *n;
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002332
2333 spin_lock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002334 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2335 struct vxlan_fdb *f
2336 = container_of(p, struct vxlan_fdb, hlist);
2337 unsigned long timeout;
2338
Balakrishnan Ramanefb5f682017-01-23 20:44:33 -08002339 if (f->state & (NUD_PERMANENT | NUD_NOARP))
stephen hemmingerd3428942012-10-01 12:32:35 +00002340 continue;
2341
Roopa Prabhudef499c2017-03-27 15:46:41 -07002342 if (f->flags & NTF_EXT_LEARNED)
2343 continue;
2344
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002345 timeout = f->used + vxlan->cfg.age_interval * HZ;
stephen hemmingerd3428942012-10-01 12:32:35 +00002346 if (time_before_eq(timeout, jiffies)) {
2347 netdev_dbg(vxlan->dev,
2348 "garbage collect %pM\n",
2349 f->eth_addr);
2350 f->state = NUD_STALE;
2351 vxlan_fdb_destroy(vxlan, f);
2352 } else if (time_before(timeout, next_timer))
2353 next_timer = timeout;
2354 }
Sorin Dumitru14e1d0f2015-05-26 10:42:04 +03002355 spin_unlock_bh(&vxlan->hash_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002356 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002357
2358 mod_timer(&vxlan->age_timer, next_timer);
2359}
2360
Mark Blocha53cb292017-06-02 03:24:08 +03002361static void vxlan_vs_del_dev(struct vxlan_dev *vxlan)
2362{
2363 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2364
2365 spin_lock(&vn->sock_lock);
2366 hlist_del_init_rcu(&vxlan->hlist);
2367 spin_unlock(&vn->sock_lock);
2368}
2369
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002370static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2371{
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002372 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Jiri Benc54bfd872016-02-16 21:58:58 +01002373 __be32 vni = vxlan->default_dst.remote_vni;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002374
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002375 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002376 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002377 spin_unlock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002378}
2379
stephen hemmingerd3428942012-10-01 12:32:35 +00002380/* Setup stats when device is created */
2381static int vxlan_init(struct net_device *dev)
2382{
WANG Cong1c213bd2014-02-13 11:46:28 -08002383 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002384 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002385 return -ENOMEM;
2386
2387 return 0;
2388}
2389
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002390static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan, __be32 vni)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002391{
2392 struct vxlan_fdb *f;
2393
2394 spin_lock_bh(&vxlan->hash_lock);
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002395 f = __vxlan_find_mac(vxlan, all_zeros_mac, vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002396 if (f)
2397 vxlan_fdb_destroy(vxlan, f);
2398 spin_unlock_bh(&vxlan->hash_lock);
2399}
2400
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002401static void vxlan_uninit(struct net_device *dev)
2402{
2403 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002404
Roopa Prabhu3ad7a4b2017-01-31 22:59:52 -08002405 vxlan_fdb_delete_default(vxlan, vxlan->cfg.vni);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002406
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002407 free_percpu(dev->tstats);
2408}
2409
stephen hemmingerd3428942012-10-01 12:32:35 +00002410/* Start ageing timer and join group when device is brought up */
2411static int vxlan_open(struct net_device *dev)
2412{
2413 struct vxlan_dev *vxlan = netdev_priv(dev);
Jiri Benc205f3562015-09-24 13:50:01 +02002414 int ret;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002415
Jiri Benc205f3562015-09-24 13:50:01 +02002416 ret = vxlan_sock_add(vxlan);
2417 if (ret < 0)
2418 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002419
Gao feng79d4a942013-12-10 16:37:32 +08002420 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002421 ret = vxlan_igmp_join(vxlan);
Marcelo Ricardo Leitnerbef00572015-08-25 20:22:35 -03002422 if (ret == -EADDRINUSE)
2423 ret = 0;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002424 if (ret) {
Jiri Benc205f3562015-09-24 13:50:01 +02002425 vxlan_sock_release(vxlan);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002426 return ret;
2427 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002428 }
2429
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002430 if (vxlan->cfg.age_interval)
stephen hemmingerd3428942012-10-01 12:32:35 +00002431 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2432
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002433 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002434}
2435
2436/* Purge the forwarding table */
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002437static void vxlan_flush(struct vxlan_dev *vxlan, bool do_all)
stephen hemmingerd3428942012-10-01 12:32:35 +00002438{
Cong Wang31fec5a2013-05-27 22:35:52 +00002439 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002440
2441 spin_lock_bh(&vxlan->hash_lock);
2442 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2443 struct hlist_node *p, *n;
2444 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2445 struct vxlan_fdb *f
2446 = container_of(p, struct vxlan_fdb, hlist);
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002447 if (!do_all && (f->state & (NUD_PERMANENT | NUD_NOARP)))
2448 continue;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002449 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2450 if (!is_zero_ether_addr(f->eth_addr))
2451 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002452 }
2453 }
2454 spin_unlock_bh(&vxlan->hash_lock);
2455}
2456
2457/* Cleanup timer and forwarding table on shutdown */
2458static int vxlan_stop(struct net_device *dev)
2459{
2460 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002461 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002462 int ret = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002463
Marcelo Ricardo Leitner24c0e682015-03-23 16:23:12 -03002464 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
WANG Congf13b1682015-04-08 14:48:30 -07002465 !vxlan_group_used(vn, vxlan))
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002466 ret = vxlan_igmp_leave(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002467
2468 del_timer_sync(&vxlan->age_timer);
2469
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08002470 vxlan_flush(vxlan, false);
Jiri Benc205f3562015-09-24 13:50:01 +02002471 vxlan_sock_release(vxlan);
stephen hemmingerd3428942012-10-01 12:32:35 +00002472
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002473 return ret;
stephen hemmingerd3428942012-10-01 12:32:35 +00002474}
2475
stephen hemmingerd3428942012-10-01 12:32:35 +00002476/* Stub, nothing needs to be done. */
2477static void vxlan_set_multicast_list(struct net_device *dev)
2478{
2479}
2480
Daniel Borkmann345010b2013-12-18 00:21:08 +01002481static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2482{
2483 struct vxlan_dev *vxlan = netdev_priv(dev);
2484 struct vxlan_rdst *dst = &vxlan->default_dst;
David Wragg72564b52016-02-10 00:05:55 +00002485 struct net_device *lowerdev = __dev_get_by_index(vxlan->net,
2486 dst->remote_ifindex);
Jarod Wilson91572082016-10-20 13:55:20 -04002487 bool use_ipv6 = false;
2488
2489 if (dst->remote_ip.sa.sa_family == AF_INET6)
2490 use_ipv6 = true;
2491
2492 /* This check is different than dev->max_mtu, because it looks at
2493 * the lowerdev->mtu, rather than the static dev->max_mtu
2494 */
2495 if (lowerdev) {
2496 int max_mtu = lowerdev->mtu -
2497 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2498 if (new_mtu > max_mtu)
2499 return -EINVAL;
2500 }
2501
2502 dev->mtu = new_mtu;
2503 return 0;
Daniel Borkmann345010b2013-12-18 00:21:08 +01002504}
2505
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002506static int vxlan_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
2507{
2508 struct vxlan_dev *vxlan = netdev_priv(dev);
2509 struct ip_tunnel_info *info = skb_tunnel_info(skb);
2510 __be16 sport, dport;
2511
2512 sport = udp_flow_src_port(dev_net(dev), skb, vxlan->cfg.port_min,
2513 vxlan->cfg.port_max, true);
2514 dport = info->key.tp_dst ? : vxlan->cfg.dst_port;
2515
Jiri Benc239e9442015-12-07 13:04:31 +01002516 if (ip_tunnel_info_af(info) == AF_INET) {
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002517 struct vxlan_sock *sock4 = rcu_dereference(vxlan->vn4_sock);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002518 struct rtable *rt;
2519
pravin shelar655c3de2016-11-13 20:43:55 -08002520 rt = vxlan_get_route(vxlan, dev, sock4, skb, 0, info->key.tos,
Jiri Benc1a8496b2016-02-02 18:09:14 +01002521 info->key.u.ipv4.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002522 &info->key.u.ipv4.src, dport, sport,
2523 &info->dst_cache, info);
Jiri Benc1a8496b2016-02-02 18:09:14 +01002524 if (IS_ERR(rt))
2525 return PTR_ERR(rt);
2526 ip_rt_put(rt);
Jiri Benc239e9442015-12-07 13:04:31 +01002527 } else {
2528#if IS_ENABLED(CONFIG_IPV6)
pravin shelar03dc52a2016-11-13 20:43:53 -08002529 struct vxlan_sock *sock6 = rcu_dereference(vxlan->vn6_sock);
Jiri Benc239e9442015-12-07 13:04:31 +01002530 struct dst_entry *ndst;
2531
pravin shelar655c3de2016-11-13 20:43:55 -08002532 ndst = vxlan6_get_route(vxlan, dev, sock6, skb, 0, info->key.tos,
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002533 info->key.label, &info->key.u.ipv6.dst,
Paolo Abeni22f07082017-02-17 19:14:27 +01002534 &info->key.u.ipv6.src, dport, sport,
2535 &info->dst_cache, info);
Jiri Benc239e9442015-12-07 13:04:31 +01002536 if (IS_ERR(ndst))
2537 return PTR_ERR(ndst);
2538 dst_release(ndst);
Jiri Benc239e9442015-12-07 13:04:31 +01002539#else /* !CONFIG_IPV6 */
2540 return -EPFNOSUPPORT;
2541#endif
2542 }
Jiri Benc1a8496b2016-02-02 18:09:14 +01002543 info->key.tp_src = sport;
2544 info->key.tp_dst = dport;
Jiri Benc239e9442015-12-07 13:04:31 +01002545 return 0;
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002546}
2547
Jiri Benc0c867c92016-04-05 14:47:10 +02002548static const struct net_device_ops vxlan_netdev_ether_ops = {
stephen hemmingerd3428942012-10-01 12:32:35 +00002549 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002550 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002551 .ndo_open = vxlan_open,
2552 .ndo_stop = vxlan_stop,
2553 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002554 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002555 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002556 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002557 .ndo_validate_addr = eth_validate_addr,
2558 .ndo_set_mac_address = eth_mac_addr,
2559 .ndo_fdb_add = vxlan_fdb_add,
2560 .ndo_fdb_del = vxlan_fdb_delete,
2561 .ndo_fdb_dump = vxlan_fdb_dump,
Pravin B Shelarfc4099f2015-10-22 18:17:16 -07002562 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
stephen hemmingerd3428942012-10-01 12:32:35 +00002563};
2564
Jiri Bence1e53142016-04-05 14:47:13 +02002565static const struct net_device_ops vxlan_netdev_raw_ops = {
2566 .ndo_init = vxlan_init,
2567 .ndo_uninit = vxlan_uninit,
2568 .ndo_open = vxlan_open,
2569 .ndo_stop = vxlan_stop,
2570 .ndo_start_xmit = vxlan_xmit,
2571 .ndo_get_stats64 = ip_tunnel_get_stats64,
2572 .ndo_change_mtu = vxlan_change_mtu,
2573 .ndo_fill_metadata_dst = vxlan_fill_metadata_dst,
2574};
2575
stephen hemmingerd3428942012-10-01 12:32:35 +00002576/* Info for udev, that this is a virtual tunnel endpoint */
2577static struct device_type vxlan_type = {
2578 .name = "vxlan",
2579};
2580
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002581/* Calls the ndo_udp_tunnel_add of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002582 * supply the listening VXLAN udp ports. Callers are expected
Sabrina Dubrocae5de25d2016-07-11 13:12:28 +02002583 * to implement the ndo_udp_tunnel_add.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002584 */
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02002585static void vxlan_push_rx_ports(struct net_device *dev)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002586{
2587 struct vxlan_sock *vs;
2588 struct net *net = dev_net(dev);
2589 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002590 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002591
2592 spin_lock(&vn->sock_lock);
2593 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Alexander Duycke7b3db52016-06-16 12:20:52 -07002594 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist)
2595 udp_tunnel_push_rx_port(dev, vs->sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07002596 (vs->flags & VXLAN_F_GPE) ?
2597 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07002598 UDP_TUNNEL_TYPE_VXLAN);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002599 }
2600 spin_unlock(&vn->sock_lock);
2601}
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002602
stephen hemmingerd3428942012-10-01 12:32:35 +00002603/* Initialize the device structure. */
2604static void vxlan_setup(struct net_device *dev)
2605{
2606 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002607 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002608
Jiri Benc65226ef2016-04-28 16:36:30 +02002609 eth_hw_addr_random(dev);
2610 ether_setup(dev);
2611
David S. Millercf124db2017-05-08 12:52:56 -04002612 dev->needs_free_netdev = true;
stephen hemmingerd3428942012-10-01 12:32:35 +00002613 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2614
stephen hemmingerd3428942012-10-01 12:32:35 +00002615 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002616 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002617 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002618 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002619
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002620 dev->vlan_features = dev->features;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002621 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002622 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Eric Dumazet02875872014-10-05 18:38:35 -07002623 netif_keep_dst(dev);
Jiri Benc0c867c92016-04-05 14:47:10 +02002624 dev->priv_flags |= IFF_NO_QUEUE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002625
stephen hemminger553675f2013-05-16 11:35:20 +00002626 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002627 spin_lock_init(&vxlan->hash_lock);
2628
2629 init_timer_deferrable(&vxlan->age_timer);
2630 vxlan->age_timer.function = vxlan_cleanup;
2631 vxlan->age_timer.data = (unsigned long) vxlan;
2632
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002633 vxlan->cfg.dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002634
stephen hemmingerd3428942012-10-01 12:32:35 +00002635 vxlan->dev = dev;
2636
Tom Herbert58ce31c2015-08-19 17:07:33 -07002637 gro_cells_init(&vxlan->gro_cells, dev);
2638
stephen hemmingerd3428942012-10-01 12:32:35 +00002639 for (h = 0; h < FDB_HASH_SIZE; ++h)
2640 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2641}
2642
Jiri Benc0c867c92016-04-05 14:47:10 +02002643static void vxlan_ether_setup(struct net_device *dev)
2644{
Jiri Benc0c867c92016-04-05 14:47:10 +02002645 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
2646 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2647 dev->netdev_ops = &vxlan_netdev_ether_ops;
2648}
2649
Jiri Bence1e53142016-04-05 14:47:13 +02002650static void vxlan_raw_setup(struct net_device *dev)
2651{
Jiri Benc65226ef2016-04-28 16:36:30 +02002652 dev->header_ops = NULL;
Jiri Bence1e53142016-04-05 14:47:13 +02002653 dev->type = ARPHRD_NONE;
2654 dev->hard_header_len = 0;
2655 dev->addr_len = 0;
Jiri Bence1e53142016-04-05 14:47:13 +02002656 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
2657 dev->netdev_ops = &vxlan_netdev_raw_ops;
2658}
2659
stephen hemmingerd3428942012-10-01 12:32:35 +00002660static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2661 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002662 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002663 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002664 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2665 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002666 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002667 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2668 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002669 [IFLA_VXLAN_LABEL] = { .type = NLA_U32 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002670 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2671 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2672 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002673 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002674 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2675 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2676 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2677 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
Alexei Starovoitovf8a9b1b2015-07-30 20:10:22 -07002678 [IFLA_VXLAN_COLLECT_METADATA] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002679 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002680 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2681 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2682 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002683 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2684 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002685 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Jiri Bence1e53142016-04-05 14:47:13 +02002686 [IFLA_VXLAN_GPE] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002687 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
stephen hemmingerd3428942012-10-01 12:32:35 +00002688};
2689
2690static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2691{
2692 if (tb[IFLA_ADDRESS]) {
2693 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2694 pr_debug("invalid link address (not ethernet)\n");
2695 return -EINVAL;
2696 }
2697
2698 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2699 pr_debug("invalid all zero ethernet address\n");
2700 return -EADDRNOTAVAIL;
2701 }
2702 }
2703
2704 if (!data)
2705 return -EINVAL;
2706
2707 if (data[IFLA_VXLAN_ID]) {
2708 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
Matthias Schiffer4e37d692017-02-23 17:19:41 +01002709 if (id >= VXLAN_N_VID)
stephen hemmingerd3428942012-10-01 12:32:35 +00002710 return -ERANGE;
2711 }
2712
stephen hemminger05f47d62012-10-09 20:35:50 +00002713 if (data[IFLA_VXLAN_PORT_RANGE]) {
2714 const struct ifla_vxlan_port_range *p
2715 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2716
2717 if (ntohs(p->high) < ntohs(p->low)) {
2718 pr_debug("port range %u .. %u not valid\n",
2719 ntohs(p->low), ntohs(p->high));
2720 return -EINVAL;
2721 }
2722 }
2723
stephen hemmingerd3428942012-10-01 12:32:35 +00002724 return 0;
2725}
2726
Yan Burman1b13c972013-01-29 23:43:07 +00002727static void vxlan_get_drvinfo(struct net_device *netdev,
2728 struct ethtool_drvinfo *drvinfo)
2729{
2730 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2731 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2732}
2733
2734static const struct ethtool_ops vxlan_ethtool_ops = {
2735 .get_drvinfo = vxlan_get_drvinfo,
2736 .get_link = ethtool_op_get_link,
2737};
2738
Tom Herbert3ee64f32014-07-13 19:49:42 -07002739static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2740 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002741{
Cong Wange4c7ed42013-08-31 13:44:33 +08002742 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002743 struct udp_port_cfg udp_conf;
2744 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002745
Tom Herbert3ee64f32014-07-13 19:49:42 -07002746 memset(&udp_conf, 0, sizeof(udp_conf));
2747
2748 if (ipv6) {
2749 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002750 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002751 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Jiri Benca43a9ef2015-08-28 20:48:22 +02002752 udp_conf.ipv6_v6only = 1;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002753 } else {
2754 udp_conf.family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002755 }
2756
Tom Herbert3ee64f32014-07-13 19:49:42 -07002757 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002758
Tom Herbert3ee64f32014-07-13 19:49:42 -07002759 /* Open UDP socket */
2760 err = udp_sock_create(net, &udp_conf, &sock);
2761 if (err < 0)
2762 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002763
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002764 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002765}
2766
2767/* Create new listen socket if needed */
Jiri Bencb1be00a2015-09-24 13:50:02 +02002768static struct vxlan_sock *vxlan_socket_create(struct net *net, bool ipv6,
2769 __be16 port, u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002770{
2771 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2772 struct vxlan_sock *vs;
2773 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002774 unsigned int h;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002775 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002776
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002777 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002778 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002779 return ERR_PTR(-ENOMEM);
2780
2781 for (h = 0; h < VNI_HASH_SIZE; ++h)
2782 INIT_HLIST_HEAD(&vs->vni_list[h]);
2783
Tom Herbert3ee64f32014-07-13 19:49:42 -07002784 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002785 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002786 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002787 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002788 }
2789
Cong Wange4c7ed42013-08-31 13:44:33 +08002790 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002791 atomic_set(&vs->refcnt, 1);
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002792 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00002793
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002794 spin_lock(&vn->sock_lock);
2795 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Alexander Duycke7b3db52016-06-16 12:20:52 -07002796 udp_tunnel_notify_add_rx_port(sock,
Alexander Duyckb9adcd692016-06-16 12:23:19 -07002797 (vs->flags & VXLAN_F_GPE) ?
2798 UDP_TUNNEL_TYPE_VXLAN_GPE :
Alexander Duycke7b3db52016-06-16 12:20:52 -07002799 UDP_TUNNEL_TYPE_VXLAN);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002800 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002801
2802 /* Mark socket as an encapsulation socket. */
Tom Herbert5602c482016-04-05 08:22:53 -07002803 memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
Andy Zhouacbf74a2014-09-16 17:31:18 -07002804 tunnel_cfg.sk_user_data = vs;
2805 tunnel_cfg.encap_type = 1;
Jiri Bencf2d1968ec2016-02-23 18:02:58 +01002806 tunnel_cfg.encap_rcv = vxlan_rcv;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002807 tunnel_cfg.encap_destroy = NULL;
Tom Herbert5602c482016-04-05 08:22:53 -07002808 tunnel_cfg.gro_receive = vxlan_gro_receive;
2809 tunnel_cfg.gro_complete = vxlan_gro_complete;
Andy Zhouacbf74a2014-09-16 17:31:18 -07002810
2811 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002812
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002813 return vs;
2814}
stephen hemminger553675f2013-05-16 11:35:20 +00002815
Jiri Bencb1be00a2015-09-24 13:50:02 +02002816static int __vxlan_sock_add(struct vxlan_dev *vxlan, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002817{
Jiri Benc205f3562015-09-24 13:50:01 +02002818 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
2819 struct vxlan_sock *vs = NULL;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002820
Jiri Benc205f3562015-09-24 13:50:01 +02002821 if (!vxlan->cfg.no_share) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002822 spin_lock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002823 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
2824 vxlan->cfg.dst_port, vxlan->flags);
2825 if (vs && !atomic_add_unless(&vs->refcnt, 1, 0)) {
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002826 spin_unlock(&vn->sock_lock);
Jiri Benc205f3562015-09-24 13:50:01 +02002827 return -EBUSY;
Marcelo Ricardo Leitner56ef9c92015-03-18 14:50:44 -03002828 }
2829 spin_unlock(&vn->sock_lock);
2830 }
Jiri Benc205f3562015-09-24 13:50:01 +02002831 if (!vs)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002832 vs = vxlan_socket_create(vxlan->net, ipv6,
2833 vxlan->cfg.dst_port, vxlan->flags);
Jiri Benc205f3562015-09-24 13:50:01 +02002834 if (IS_ERR(vs))
2835 return PTR_ERR(vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002836#if IS_ENABLED(CONFIG_IPV6)
2837 if (ipv6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002838 rcu_assign_pointer(vxlan->vn6_sock, vs);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002839 else
2840#endif
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002841 rcu_assign_pointer(vxlan->vn4_sock, vs);
Jiri Benc205f3562015-09-24 13:50:01 +02002842 vxlan_vs_add_dev(vs, vxlan);
2843 return 0;
stephen hemminger553675f2013-05-16 11:35:20 +00002844}
2845
Jiri Bencb1be00a2015-09-24 13:50:02 +02002846static int vxlan_sock_add(struct vxlan_dev *vxlan)
2847{
Jiri Bencb1be00a2015-09-24 13:50:02 +02002848 bool metadata = vxlan->flags & VXLAN_F_COLLECT_METADATA;
Jiri Bencd074bf92017-04-27 21:24:35 +02002849 bool ipv6 = vxlan->flags & VXLAN_F_IPV6 || metadata;
2850 bool ipv4 = !ipv6 || metadata;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002851 int ret = 0;
2852
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002853 RCU_INIT_POINTER(vxlan->vn4_sock, NULL);
Jiri Bencb1be00a2015-09-24 13:50:02 +02002854#if IS_ENABLED(CONFIG_IPV6)
pravin shelarc6fcc4f2016-10-28 09:59:15 -07002855 RCU_INIT_POINTER(vxlan->vn6_sock, NULL);
Jiri Bencd074bf92017-04-27 21:24:35 +02002856 if (ipv6) {
Jiri Bencb1be00a2015-09-24 13:50:02 +02002857 ret = __vxlan_sock_add(vxlan, true);
Jiri Bencd074bf92017-04-27 21:24:35 +02002858 if (ret < 0 && ret != -EAFNOSUPPORT)
2859 ipv4 = false;
2860 }
Jiri Bencb1be00a2015-09-24 13:50:02 +02002861#endif
Jiri Bencd074bf92017-04-27 21:24:35 +02002862 if (ipv4)
Jiri Bencb1be00a2015-09-24 13:50:02 +02002863 ret = __vxlan_sock_add(vxlan, false);
2864 if (ret < 0)
2865 vxlan_sock_release(vxlan);
2866 return ret;
2867}
2868
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002869static int vxlan_dev_configure(struct net *src_net, struct net_device *dev,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002870 struct vxlan_config *conf,
2871 bool changelink)
stephen hemmingerd3428942012-10-01 12:32:35 +00002872{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002873 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01002874 struct vxlan_dev *vxlan = netdev_priv(dev), *tmp;
Atzm Watanabec7995c42013-04-16 02:50:52 +00002875 struct vxlan_rdst *dst = &vxlan->default_dst;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002876 unsigned short needed_headroom = ETH_HLEN;
Cong Wange4c7ed42013-08-31 13:44:33 +08002877 bool use_ipv6 = false;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002878 __be16 default_port = vxlan->cfg.dst_port;
David Wragg7e059152016-02-10 00:05:58 +00002879 struct net_device *lowerdev = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00002880
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002881 if (!changelink) {
2882 if (conf->flags & VXLAN_F_GPE) {
2883 /* For now, allow GPE only together with
2884 * COLLECT_METADATA. This can be relaxed later; in such
2885 * case, the other side of the PtP link will have to be
2886 * provided.
2887 */
2888 if ((conf->flags & ~VXLAN_F_ALLOWED_GPE) ||
2889 !(conf->flags & VXLAN_F_COLLECT_METADATA)) {
2890 pr_info("unsupported combination of extensions\n");
2891 return -EINVAL;
2892 }
2893 vxlan_raw_setup(dev);
2894 } else {
2895 vxlan_ether_setup(dev);
Jiri Benc35556212016-09-02 13:37:12 +02002896 }
Jiri Bence1e53142016-04-05 14:47:13 +02002897
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002898 /* MTU range: 68 - 65535 */
2899 dev->min_mtu = ETH_MIN_MTU;
2900 dev->max_mtu = ETH_MAX_MTU;
2901 vxlan->net = src_net;
Jiri Bence1e53142016-04-05 14:47:13 +02002902 }
Jiri Benc0c867c92016-04-05 14:47:10 +02002903
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002904 dst->remote_vni = conf->vni;
2905
2906 memcpy(&dst->remote_ip, &conf->remote_ip, sizeof(conf->remote_ip));
stephen hemmingerd3428942012-10-01 12:32:35 +00002907
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002908 /* Unless IPv6 is explicitly requested, assume IPv4 */
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002909 if (!dst->remote_ip.sa.sa_family)
2910 dst->remote_ip.sa.sa_family = AF_INET;
stephen hemmingerd3428942012-10-01 12:32:35 +00002911
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002912 if (dst->remote_ip.sa.sa_family == AF_INET6 ||
Jiri Benc057ba292015-09-17 16:11:11 +02002913 vxlan->cfg.saddr.sa.sa_family == AF_INET6) {
2914 if (!IS_ENABLED(CONFIG_IPV6))
2915 return -EPFNOSUPPORT;
Cong Wange4c7ed42013-08-31 13:44:33 +08002916 use_ipv6 = true;
Jiri Bencb1be00a2015-09-24 13:50:02 +02002917 vxlan->flags |= VXLAN_F_IPV6;
Jiri Benc057ba292015-09-17 16:11:11 +02002918 }
Cong Wange4c7ed42013-08-31 13:44:33 +08002919
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01002920 if (conf->label && !use_ipv6) {
2921 pr_info("label only supported in use with IPv6\n");
2922 return -EINVAL;
2923 }
2924
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002925 if (conf->remote_ifindex &&
2926 conf->remote_ifindex != vxlan->cfg.remote_ifindex) {
David Wragg7e059152016-02-10 00:05:58 +00002927 lowerdev = __dev_get_by_index(src_net, conf->remote_ifindex);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002928 dst->remote_ifindex = conf->remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00002929
stephen hemminger34e02aa2012-10-09 20:35:53 +00002930 if (!lowerdev) {
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002931 pr_info("ifindex %d does not exist\n",
2932 dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002933 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002934 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002935
Cong Wange4c7ed42013-08-31 13:44:33 +08002936#if IS_ENABLED(CONFIG_IPV6)
2937 if (use_ipv6) {
2938 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2939 if (idev && idev->cnf.disable_ipv6) {
2940 pr_info("IPv6 is disabled via sysctl\n");
2941 return -EPERM;
2942 }
Cong Wange4c7ed42013-08-31 13:44:33 +08002943 }
2944#endif
2945
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002946 if (!conf->mtu)
Jarod Wilson91572082016-10-20 13:55:20 -04002947 dev->mtu = lowerdev->mtu -
2948 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002949
Jiri Bencb1be00a2015-09-24 13:50:02 +02002950 needed_headroom = lowerdev->hard_header_len;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002951 } else if (!conf->remote_ifindex &&
2952 vxlan_addr_multicast(&dst->remote_ip)) {
Jiri Benc9b4cdd52016-09-02 13:37:11 +02002953 pr_info("multicast destination requires interface to be specified\n");
2954 return -EINVAL;
Jiri Benc9dc2ad12015-09-17 16:11:10 +02002955 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002956
Felix Manlunasd6acfeb2017-03-29 17:56:43 -07002957 if (lowerdev) {
2958 dev->gso_max_size = lowerdev->gso_max_size;
2959 dev->gso_max_segs = lowerdev->gso_max_segs;
2960 }
2961
David Wragg7e059152016-02-10 00:05:58 +00002962 if (conf->mtu) {
Jarod Wilson91572082016-10-20 13:55:20 -04002963 int max_mtu = ETH_MAX_MTU;
2964
2965 if (lowerdev)
2966 max_mtu = lowerdev->mtu;
2967
2968 max_mtu -= (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
2969
2970 if (conf->mtu < dev->min_mtu || conf->mtu > dev->max_mtu)
2971 return -EINVAL;
2972
2973 dev->mtu = conf->mtu;
2974
2975 if (conf->mtu > max_mtu)
2976 dev->mtu = max_mtu;
David Wragg7e059152016-02-10 00:05:58 +00002977 }
2978
Jiri Bencb1be00a2015-09-24 13:50:02 +02002979 if (use_ipv6 || conf->flags & VXLAN_F_COLLECT_METADATA)
2980 needed_headroom += VXLAN6_HEADROOM;
2981 else
2982 needed_headroom += VXLAN_HEADROOM;
2983 dev->needed_headroom = needed_headroom;
2984
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002985 memcpy(&vxlan->cfg, conf, sizeof(*conf));
Jiri Bence1e53142016-04-05 14:47:13 +02002986 if (!vxlan->cfg.dst_port) {
2987 if (conf->flags & VXLAN_F_GPE)
Lance Richardsond5ff72d2017-01-16 18:37:58 -05002988 vxlan->cfg.dst_port = htons(4790); /* IANA VXLAN-GPE port */
Jiri Bence1e53142016-04-05 14:47:13 +02002989 else
2990 vxlan->cfg.dst_port = default_port;
2991 }
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002992 vxlan->flags |= conf->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00002993
Thomas Graf0dfbdf42015-07-21 10:44:02 +02002994 if (!vxlan->cfg.age_interval)
2995 vxlan->cfg.age_interval = FDB_AGE_DEFAULT;
Vincent Bernatafb97182012-10-30 10:27:16 +00002996
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08002997 if (changelink)
2998 return 0;
2999
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01003000 list_for_each_entry(tmp, &vn->vxlan_list, next) {
3001 if (tmp->cfg.vni == conf->vni &&
3002 (tmp->default_dst.remote_ip.sa.sa_family == AF_INET6 ||
3003 tmp->cfg.saddr.sa.sa_family == AF_INET6) == use_ipv6 &&
3004 tmp->cfg.dst_port == vxlan->cfg.dst_port &&
3005 (tmp->flags & VXLAN_F_RCV_FLAGS) ==
Jiri Benc35556212016-09-02 13:37:12 +02003006 (vxlan->flags & VXLAN_F_RCV_FLAGS)) {
3007 pr_info("duplicate VNI %u\n", be32_to_cpu(conf->vni));
3008 return -EEXIST;
3009 }
Nicolas Dichtel07b9b372016-01-07 11:26:53 +01003010 }
stephen hemminger553675f2013-05-16 11:35:20 +00003011
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003012 return 0;
3013}
3014
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003015static int __vxlan_dev_create(struct net *net, struct net_device *dev,
3016 struct vxlan_config *conf)
3017{
3018 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3019 struct vxlan_dev *vxlan = netdev_priv(dev);
3020 int err;
3021
3022 err = vxlan_dev_configure(net, dev, conf, false);
3023 if (err)
3024 return err;
3025
3026 dev->ethtool_ops = &vxlan_ethtool_ops;
3027
3028 /* create an fdb entry for a valid default destination */
3029 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
3030 err = vxlan_fdb_create(vxlan, all_zeros_mac,
3031 &vxlan->default_dst.remote_ip,
3032 NUD_REACHABLE | NUD_PERMANENT,
3033 NLM_F_EXCL | NLM_F_CREATE,
3034 vxlan->cfg.dst_port,
3035 vxlan->default_dst.remote_vni,
3036 vxlan->default_dst.remote_vni,
3037 vxlan->default_dst.remote_ifindex,
3038 NTF_SELF);
3039 if (err)
3040 return err;
3041 }
3042
3043 err = register_netdevice(dev);
3044 if (err) {
3045 vxlan_fdb_delete_default(vxlan, vxlan->default_dst.remote_vni);
3046 return err;
3047 }
3048
3049 list_add(&vxlan->next, &vn->vxlan_list);
3050 return 0;
3051}
3052
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003053static int vxlan_nl2conf(struct nlattr *tb[], struct nlattr *data[],
3054 struct net_device *dev, struct vxlan_config *conf,
3055 bool changelink)
3056{
3057 struct vxlan_dev *vxlan = netdev_priv(dev);
3058
3059 memset(conf, 0, sizeof(*conf));
3060
3061 /* if changelink operation, start with old existing cfg */
3062 if (changelink)
3063 memcpy(conf, &vxlan->cfg, sizeof(*conf));
3064
3065 if (data[IFLA_VXLAN_ID]) {
3066 __be32 vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3067
3068 if (changelink && (vni != conf->vni))
3069 return -EOPNOTSUPP;
3070 conf->vni = cpu_to_be32(nla_get_u32(data[IFLA_VXLAN_ID]));
3071 }
3072
3073 if (data[IFLA_VXLAN_GROUP]) {
3074 conf->remote_ip.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_GROUP]);
3075 } else if (data[IFLA_VXLAN_GROUP6]) {
3076 if (!IS_ENABLED(CONFIG_IPV6))
3077 return -EPFNOSUPPORT;
3078
3079 conf->remote_ip.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_GROUP6]);
3080 conf->remote_ip.sa.sa_family = AF_INET6;
3081 }
3082
3083 if (data[IFLA_VXLAN_LOCAL]) {
3084 conf->saddr.sin.sin_addr.s_addr = nla_get_in_addr(data[IFLA_VXLAN_LOCAL]);
3085 conf->saddr.sa.sa_family = AF_INET;
3086 } else if (data[IFLA_VXLAN_LOCAL6]) {
3087 if (!IS_ENABLED(CONFIG_IPV6))
3088 return -EPFNOSUPPORT;
3089
3090 /* TODO: respect scope id */
3091 conf->saddr.sin6.sin6_addr = nla_get_in6_addr(data[IFLA_VXLAN_LOCAL6]);
3092 conf->saddr.sa.sa_family = AF_INET6;
3093 }
3094
3095 if (data[IFLA_VXLAN_LINK])
3096 conf->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]);
3097
3098 if (data[IFLA_VXLAN_TOS])
3099 conf->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
3100
3101 if (data[IFLA_VXLAN_TTL])
3102 conf->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
3103
3104 if (data[IFLA_VXLAN_LABEL])
3105 conf->label = nla_get_be32(data[IFLA_VXLAN_LABEL]) &
3106 IPV6_FLOWLABEL_MASK;
3107
3108 if (data[IFLA_VXLAN_LEARNING]) {
3109 if (nla_get_u8(data[IFLA_VXLAN_LEARNING])) {
3110 conf->flags |= VXLAN_F_LEARN;
3111 } else {
3112 conf->flags &= ~VXLAN_F_LEARN;
3113 vxlan->flags &= ~VXLAN_F_LEARN;
3114 }
3115 } else if (!changelink) {
3116 /* default to learn on a new device */
3117 conf->flags |= VXLAN_F_LEARN;
3118 }
3119
3120 if (data[IFLA_VXLAN_AGEING]) {
3121 if (changelink)
3122 return -EOPNOTSUPP;
3123 conf->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
3124 }
3125
3126 if (data[IFLA_VXLAN_PROXY]) {
3127 if (changelink)
3128 return -EOPNOTSUPP;
3129 if (nla_get_u8(data[IFLA_VXLAN_PROXY]))
3130 conf->flags |= VXLAN_F_PROXY;
3131 }
3132
3133 if (data[IFLA_VXLAN_RSC]) {
3134 if (changelink)
3135 return -EOPNOTSUPP;
3136 if (nla_get_u8(data[IFLA_VXLAN_RSC]))
3137 conf->flags |= VXLAN_F_RSC;
3138 }
3139
3140 if (data[IFLA_VXLAN_L2MISS]) {
3141 if (changelink)
3142 return -EOPNOTSUPP;
3143 if (nla_get_u8(data[IFLA_VXLAN_L2MISS]))
3144 conf->flags |= VXLAN_F_L2MISS;
3145 }
3146
3147 if (data[IFLA_VXLAN_L3MISS]) {
3148 if (changelink)
3149 return -EOPNOTSUPP;
3150 if (nla_get_u8(data[IFLA_VXLAN_L3MISS]))
3151 conf->flags |= VXLAN_F_L3MISS;
3152 }
3153
3154 if (data[IFLA_VXLAN_LIMIT]) {
3155 if (changelink)
3156 return -EOPNOTSUPP;
3157 conf->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
3158 }
3159
3160 if (data[IFLA_VXLAN_COLLECT_METADATA]) {
3161 if (changelink)
3162 return -EOPNOTSUPP;
3163 if (nla_get_u8(data[IFLA_VXLAN_COLLECT_METADATA]))
3164 conf->flags |= VXLAN_F_COLLECT_METADATA;
3165 }
3166
3167 if (data[IFLA_VXLAN_PORT_RANGE]) {
3168 if (!changelink) {
3169 const struct ifla_vxlan_port_range *p
3170 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
3171 conf->port_min = ntohs(p->low);
3172 conf->port_max = ntohs(p->high);
3173 } else {
3174 return -EOPNOTSUPP;
3175 }
3176 }
3177
3178 if (data[IFLA_VXLAN_PORT]) {
3179 if (changelink)
3180 return -EOPNOTSUPP;
3181 conf->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
3182 }
3183
3184 if (data[IFLA_VXLAN_UDP_CSUM]) {
3185 if (changelink)
3186 return -EOPNOTSUPP;
3187 if (!nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
3188 conf->flags |= VXLAN_F_UDP_ZERO_CSUM_TX;
3189 }
3190
3191 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]) {
3192 if (changelink)
3193 return -EOPNOTSUPP;
3194 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
3195 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
3196 }
3197
3198 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]) {
3199 if (changelink)
3200 return -EOPNOTSUPP;
3201 if (nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
3202 conf->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
3203 }
3204
3205 if (data[IFLA_VXLAN_REMCSUM_TX]) {
3206 if (changelink)
3207 return -EOPNOTSUPP;
3208 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
3209 conf->flags |= VXLAN_F_REMCSUM_TX;
3210 }
3211
3212 if (data[IFLA_VXLAN_REMCSUM_RX]) {
3213 if (changelink)
3214 return -EOPNOTSUPP;
3215 if (nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
3216 conf->flags |= VXLAN_F_REMCSUM_RX;
3217 }
3218
3219 if (data[IFLA_VXLAN_GBP]) {
3220 if (changelink)
3221 return -EOPNOTSUPP;
3222 conf->flags |= VXLAN_F_GBP;
3223 }
3224
3225 if (data[IFLA_VXLAN_GPE]) {
3226 if (changelink)
3227 return -EOPNOTSUPP;
3228 conf->flags |= VXLAN_F_GPE;
3229 }
3230
3231 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL]) {
3232 if (changelink)
3233 return -EOPNOTSUPP;
3234 conf->flags |= VXLAN_F_REMCSUM_NOPARTIAL;
3235 }
3236
3237 if (tb[IFLA_MTU]) {
3238 if (changelink)
3239 return -EOPNOTSUPP;
3240 conf->mtu = nla_get_u32(tb[IFLA_MTU]);
3241 }
3242
3243 return 0;
3244}
3245
3246static int vxlan_newlink(struct net *src_net, struct net_device *dev,
3247 struct nlattr *tb[], struct nlattr *data[])
3248{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003249 struct vxlan_config conf;
3250 int err;
3251
3252 err = vxlan_nl2conf(tb, data, dev, &conf, false);
3253 if (err)
3254 return err;
3255
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003256 return __vxlan_dev_create(src_net, dev, &conf);
stephen hemmingerd3428942012-10-01 12:32:35 +00003257}
3258
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003259static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
3260 struct nlattr *data[])
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003261{
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003262 struct vxlan_dev *vxlan = netdev_priv(dev);
3263 struct vxlan_rdst *dst = &vxlan->default_dst;
3264 struct vxlan_rdst old_dst;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003265 struct vxlan_config conf;
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003266 int err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003267
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003268 err = vxlan_nl2conf(tb, data,
3269 dev, &conf, true);
3270 if (err)
3271 return err;
Jesse Grosse277de52015-10-16 16:36:00 -07003272
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003273 memcpy(&old_dst, dst, sizeof(struct vxlan_rdst));
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003274
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003275 err = vxlan_dev_configure(vxlan->net, dev, &conf, true);
3276 if (err)
3277 return err;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003278
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003279 /* handle default dst entry */
3280 if (!vxlan_addr_equal(&dst->remote_ip, &old_dst.remote_ip)) {
3281 spin_lock_bh(&vxlan->hash_lock);
3282 if (!vxlan_addr_any(&old_dst.remote_ip))
3283 __vxlan_fdb_delete(vxlan, all_zeros_mac,
3284 old_dst.remote_ip,
3285 vxlan->cfg.dst_port,
3286 old_dst.remote_vni,
3287 old_dst.remote_vni,
3288 old_dst.remote_ifindex, 0);
3289
3290 if (!vxlan_addr_any(&dst->remote_ip)) {
3291 err = vxlan_fdb_create(vxlan, all_zeros_mac,
3292 &dst->remote_ip,
3293 NUD_REACHABLE | NUD_PERMANENT,
3294 NLM_F_CREATE | NLM_F_APPEND,
3295 vxlan->cfg.dst_port,
3296 dst->remote_vni,
3297 dst->remote_vni,
3298 dst->remote_ifindex,
3299 NTF_SELF);
3300 if (err) {
3301 spin_unlock_bh(&vxlan->hash_lock);
3302 return err;
3303 }
3304 }
3305 spin_unlock_bh(&vxlan->hash_lock);
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003306 }
3307
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003308 return 0;
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003309}
3310
stephen hemmingerd3428942012-10-01 12:32:35 +00003311static void vxlan_dellink(struct net_device *dev, struct list_head *head)
3312{
3313 struct vxlan_dev *vxlan = netdev_priv(dev);
3314
Roopa Prabhu8b3f9332017-01-23 20:44:32 -08003315 vxlan_flush(vxlan, true);
3316
Tom Herbert58ce31c2015-08-19 17:07:33 -07003317 gro_cells_destroy(&vxlan->gro_cells);
stephen hemminger553675f2013-05-16 11:35:20 +00003318 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00003319 unregister_netdevice_queue(dev, head);
3320}
3321
3322static size_t vxlan_get_size(const struct net_device *dev)
3323{
3324
3325 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08003326 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003327 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08003328 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00003329 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
3330 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003331 nla_total_size(sizeof(__be32)) + /* IFLA_VXLAN_LABEL */
stephen hemmingerd3428942012-10-01 12:32:35 +00003332 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00003333 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
3334 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
3335 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
3336 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003337 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_COLLECT_METADATA */
stephen hemmingerd3428942012-10-01 12:32:35 +00003338 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
3339 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00003340 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07003341 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
3342 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
3343 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
3344 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08003345 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
3346 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00003347 0;
3348}
3349
3350static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
3351{
3352 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00003353 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00003354 struct ifla_vxlan_port_range ports = {
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003355 .low = htons(vxlan->cfg.port_min),
3356 .high = htons(vxlan->cfg.port_max),
stephen hemminger05f47d62012-10-09 20:35:50 +00003357 };
stephen hemmingerd3428942012-10-01 12:32:35 +00003358
Jiri Benc54bfd872016-02-16 21:58:58 +01003359 if (nla_put_u32(skb, IFLA_VXLAN_ID, be32_to_cpu(dst->remote_vni)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003360 goto nla_put_failure;
3361
Cong Wange4c7ed42013-08-31 13:44:33 +08003362 if (!vxlan_addr_any(&dst->remote_ip)) {
3363 if (dst->remote_ip.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003364 if (nla_put_in_addr(skb, IFLA_VXLAN_GROUP,
3365 dst->remote_ip.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003366 goto nla_put_failure;
3367#if IS_ENABLED(CONFIG_IPV6)
3368 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003369 if (nla_put_in6_addr(skb, IFLA_VXLAN_GROUP6,
3370 &dst->remote_ip.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003371 goto nla_put_failure;
3372#endif
3373 }
3374 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003375
Atzm Watanabec7995c42013-04-16 02:50:52 +00003376 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00003377 goto nla_put_failure;
3378
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003379 if (!vxlan_addr_any(&vxlan->cfg.saddr)) {
3380 if (vxlan->cfg.saddr.sa.sa_family == AF_INET) {
Jiri Benc930345e2015-03-29 16:59:25 +02003381 if (nla_put_in_addr(skb, IFLA_VXLAN_LOCAL,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003382 vxlan->cfg.saddr.sin.sin_addr.s_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003383 goto nla_put_failure;
3384#if IS_ENABLED(CONFIG_IPV6)
3385 } else {
Jiri Benc930345e2015-03-29 16:59:25 +02003386 if (nla_put_in6_addr(skb, IFLA_VXLAN_LOCAL6,
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003387 &vxlan->cfg.saddr.sin6.sin6_addr))
Cong Wange4c7ed42013-08-31 13:44:33 +08003388 goto nla_put_failure;
3389#endif
3390 }
3391 }
stephen hemmingerd3428942012-10-01 12:32:35 +00003392
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003393 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->cfg.ttl) ||
3394 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->cfg.tos) ||
Daniel Borkmanne7f70af2016-03-09 03:00:03 +01003395 nla_put_be32(skb, IFLA_VXLAN_LABEL, vxlan->cfg.label) ||
David Stevense4f67ad2012-11-20 02:50:14 +00003396 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
3397 !!(vxlan->flags & VXLAN_F_LEARN)) ||
3398 nla_put_u8(skb, IFLA_VXLAN_PROXY,
3399 !!(vxlan->flags & VXLAN_F_PROXY)) ||
3400 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
3401 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
3402 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
3403 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
3404 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
Alexei Starovoitovda8b43c2015-08-04 22:51:07 -07003405 nla_put_u8(skb, IFLA_VXLAN_COLLECT_METADATA,
3406 !!(vxlan->flags & VXLAN_F_COLLECT_METADATA)) ||
Thomas Graf0dfbdf42015-07-21 10:44:02 +02003407 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->cfg.age_interval) ||
3408 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->cfg.addrmax) ||
3409 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->cfg.dst_port) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003410 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
Alexander Duyck6ceb31c2016-02-19 11:26:31 -08003411 !(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM_TX)) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07003412 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
3413 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
3414 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Tom Herbertdfd86452015-01-12 17:00:38 -08003415 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
3416 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
3417 !!(vxlan->flags & VXLAN_F_REMCSUM_TX)) ||
3418 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
3419 !!(vxlan->flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00003420 goto nla_put_failure;
3421
stephen hemminger05f47d62012-10-09 20:35:50 +00003422 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
3423 goto nla_put_failure;
3424
Thomas Graf35114942015-01-15 03:53:55 +01003425 if (vxlan->flags & VXLAN_F_GBP &&
3426 nla_put_flag(skb, IFLA_VXLAN_GBP))
3427 goto nla_put_failure;
3428
Jiri Bence1e53142016-04-05 14:47:13 +02003429 if (vxlan->flags & VXLAN_F_GPE &&
3430 nla_put_flag(skb, IFLA_VXLAN_GPE))
3431 goto nla_put_failure;
3432
Tom Herbert0ace2ca2015-02-10 16:30:32 -08003433 if (vxlan->flags & VXLAN_F_REMCSUM_NOPARTIAL &&
3434 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
3435 goto nla_put_failure;
3436
stephen hemmingerd3428942012-10-01 12:32:35 +00003437 return 0;
3438
3439nla_put_failure:
3440 return -EMSGSIZE;
3441}
3442
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003443static struct net *vxlan_get_link_net(const struct net_device *dev)
3444{
3445 struct vxlan_dev *vxlan = netdev_priv(dev);
3446
3447 return vxlan->net;
3448}
3449
stephen hemmingerd3428942012-10-01 12:32:35 +00003450static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
3451 .kind = "vxlan",
3452 .maxtype = IFLA_VXLAN_MAX,
3453 .policy = vxlan_policy,
3454 .priv_size = sizeof(struct vxlan_dev),
3455 .setup = vxlan_setup,
3456 .validate = vxlan_validate,
3457 .newlink = vxlan_newlink,
Roopa Prabhu8bcdc4f2017-02-20 08:29:19 -08003458 .changelink = vxlan_changelink,
stephen hemmingerd3428942012-10-01 12:32:35 +00003459 .dellink = vxlan_dellink,
3460 .get_size = vxlan_get_size,
3461 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01003462 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003463};
3464
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003465struct net_device *vxlan_dev_create(struct net *net, const char *name,
3466 u8 name_assign_type,
3467 struct vxlan_config *conf)
3468{
3469 struct nlattr *tb[IFLA_MAX + 1];
3470 struct net_device *dev;
3471 int err;
3472
3473 memset(&tb, 0, sizeof(tb));
3474
3475 dev = rtnl_create_link(net, name, name_assign_type,
3476 &vxlan_link_ops, tb);
3477 if (IS_ERR(dev))
3478 return dev;
3479
Nicolas Dichtelc80498e2017-03-13 16:24:03 +01003480 err = __vxlan_dev_create(net, dev, conf);
Nicolas Dichtelcf5da332016-06-13 10:31:05 +02003481 if (err < 0) {
3482 free_netdev(dev);
3483 return ERR_PTR(err);
3484 }
3485
3486 err = rtnl_configure_link(dev, NULL);
3487 if (err < 0) {
3488 LIST_HEAD(list_kill);
3489
3490 vxlan_dellink(dev, &list_kill);
3491 unregister_netdevice_many(&list_kill);
3492 return ERR_PTR(err);
3493 }
3494
3495 return dev;
3496}
3497EXPORT_SYMBOL_GPL(vxlan_dev_create);
3498
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003499static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
3500 struct net_device *dev)
3501{
3502 struct vxlan_dev *vxlan, *next;
3503 LIST_HEAD(list_kill);
3504
3505 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3506 struct vxlan_rdst *dst = &vxlan->default_dst;
3507
3508 /* In case we created vxlan device with carrier
3509 * and we loose the carrier due to module unload
3510 * we also need to remove vxlan device. In other
3511 * cases, it's not necessary and remote_ifindex
3512 * is 0 here, so no matches.
3513 */
3514 if (dst->remote_ifindex == dev->ifindex)
3515 vxlan_dellink(vxlan->dev, &list_kill);
3516 }
3517
3518 unregister_netdevice_many(&list_kill);
3519}
3520
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003521static int vxlan_netdevice_event(struct notifier_block *unused,
3522 unsigned long event, void *ptr)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003523{
3524 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003525 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003526
Daniel Borkmann783c1462014-01-22 21:07:53 +01003527 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003528 vxlan_handle_lowerdev_unregister(vn, dev);
Alexander Duyck7c46a642016-06-16 12:21:00 -07003529 else if (event == NETDEV_UDP_TUNNEL_PUSH_INFO)
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003530 vxlan_push_rx_ports(dev);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003531
3532 return NOTIFY_DONE;
3533}
3534
3535static struct notifier_block vxlan_notifier_block __read_mostly = {
Hannes Frederic Sowab7aade12016-04-18 21:19:47 +02003536 .notifier_call = vxlan_netdevice_event,
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003537};
3538
stephen hemmingerd3428942012-10-01 12:32:35 +00003539static __net_init int vxlan_init_net(struct net *net)
3540{
3541 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00003542 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00003543
stephen hemminger553675f2013-05-16 11:35:20 +00003544 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07003545 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00003546
stephen hemminger553675f2013-05-16 11:35:20 +00003547 for (h = 0; h < PORT_HASH_SIZE; ++h)
3548 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00003549
3550 return 0;
3551}
3552
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003553static void __net_exit vxlan_exit_net(struct net *net)
3554{
3555 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3556 struct vxlan_dev *vxlan, *next;
3557 struct net_device *dev, *aux;
3558 LIST_HEAD(list);
3559
3560 rtnl_lock();
3561 for_each_netdev_safe(net, dev, aux)
3562 if (dev->rtnl_link_ops == &vxlan_link_ops)
3563 unregister_netdevice_queue(dev, &list);
3564
3565 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3566 /* If vxlan->dev is in the same netns, it has already been added
3567 * to the list by the previous loop.
3568 */
Tom Herbert58ce31c2015-08-19 17:07:33 -07003569 if (!net_eq(dev_net(vxlan->dev), net)) {
3570 gro_cells_destroy(&vxlan->gro_cells);
John W. Linville13c3ed62015-05-18 13:51:24 -04003571 unregister_netdevice_queue(vxlan->dev, &list);
Tom Herbert58ce31c2015-08-19 17:07:33 -07003572 }
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003573 }
3574
3575 unregister_netdevice_many(&list);
3576 rtnl_unlock();
3577}
3578
stephen hemmingerd3428942012-10-01 12:32:35 +00003579static struct pernet_operations vxlan_net_ops = {
3580 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003581 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003582 .id = &vxlan_net_id,
3583 .size = sizeof(struct vxlan_net),
3584};
3585
3586static int __init vxlan_init_module(void)
3587{
3588 int rc;
3589
3590 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3591
Daniel Borkmann783c1462014-01-22 21:07:53 +01003592 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003593 if (rc)
3594 goto out1;
3595
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003596 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003597 if (rc)
3598 goto out2;
3599
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003600 rc = rtnl_link_register(&vxlan_link_ops);
3601 if (rc)
3602 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003603
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003604 return 0;
3605out3:
3606 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003607out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003608 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003609out1:
3610 return rc;
3611}
Cong Wang7332a132013-05-27 22:35:53 +00003612late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003613
3614static void __exit vxlan_cleanup_module(void)
3615{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003616 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003617 unregister_netdevice_notifier(&vxlan_notifier_block);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003618 unregister_pernet_subsys(&vxlan_net_ops);
3619 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003620}
3621module_exit(vxlan_cleanup_module);
3622
3623MODULE_LICENSE("GPL");
3624MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003625MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003626MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003627MODULE_ALIAS_RTNL_LINK("vxlan");