blob: 1e0a775ea882995d88127e4d3c2a8f3f0afb8d60 [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>
14#include <linux/types.h>
15#include <linux/module.h>
16#include <linux/errno.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/rculist.h>
20#include <linux/netdevice.h>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/udp.h>
24#include <linux/igmp.h>
25#include <linux/etherdevice.h>
26#include <linux/if_ether.h>
Pravin B Shelar1eaa8172013-08-19 11:23:29 -070027#include <linux/if_vlan.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000028#include <linux/hash.h>
Yan Burman1b13c972013-01-29 23:43:07 +000029#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000030#include <net/arp.h>
31#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000032#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000033#include <net/ip_tunnels.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000034#include <net/icmp.h>
35#include <net/udp.h>
Tom Herbert3ee64f32014-07-13 19:49:42 -070036#include <net/udp_tunnel.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000037#include <net/rtnetlink.h>
38#include <net/route.h>
39#include <net/dsfield.h>
40#include <net/inet_ecn.h>
41#include <net/net_namespace.h>
42#include <net/netns/generic.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070043#include <net/vxlan.h>
Or Gerlitzdc01e7d2014-01-20 13:59:21 +020044#include <net/protocol.h>
Andy Zhouacbf74a2014-09-16 17:31:18 -070045#include <net/udp_tunnel.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080046#if IS_ENABLED(CONFIG_IPV6)
47#include <net/ipv6.h>
48#include <net/addrconf.h>
49#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080050#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080051#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000052
53#define VXLAN_VERSION "0.1"
54
stephen hemminger553675f2013-05-16 11:35:20 +000055#define PORT_HASH_BITS 8
56#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000057#define VNI_HASH_BITS 10
58#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
59#define FDB_HASH_BITS 8
60#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
61#define FDB_AGE_DEFAULT 300 /* 5 min */
62#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
63
stephen hemminger23c578b2013-04-27 11:31:53 +000064/* UDP port for VXLAN traffic.
65 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070066 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000067 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070068static unsigned short vxlan_port __read_mostly = 8472;
69module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000070MODULE_PARM_DESC(udp_port, "Destination UDP port");
71
72static bool log_ecn_error = true;
73module_param(log_ecn_error, bool, 0644);
74MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
75
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -070076static int vxlan_net_id;
stephen hemminger553675f2013-05-16 11:35:20 +000077
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030078static const u8 all_zeros_mac[ETH_ALEN];
79
stephen hemminger553675f2013-05-16 11:35:20 +000080/* per-network namespace private data for this module */
81struct vxlan_net {
82 struct list_head vxlan_list;
83 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070084 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000085};
86
Cong Wange4c7ed42013-08-31 13:44:33 +080087union vxlan_addr {
88 struct sockaddr_in sin;
89 struct sockaddr_in6 sin6;
90 struct sockaddr sa;
91};
92
David Stevens66817122013-03-15 04:35:51 +000093struct vxlan_rdst {
Cong Wange4c7ed42013-08-31 13:44:33 +080094 union vxlan_addr remote_ip;
David Stevens66817122013-03-15 04:35:51 +000095 __be16 remote_port;
96 u32 remote_vni;
97 u32 remote_ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070098 struct list_head list;
Mike Rapoportbc7892b2013-06-25 16:01:54 +030099 struct rcu_head rcu;
David Stevens66817122013-03-15 04:35:51 +0000100};
101
stephen hemmingerd3428942012-10-01 12:32:35 +0000102/* Forwarding table entry */
103struct vxlan_fdb {
104 struct hlist_node hlist; /* linked list of entries */
105 struct rcu_head rcu;
106 unsigned long updated; /* jiffies */
107 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700108 struct list_head remotes;
stephen hemmingerd3428942012-10-01 12:32:35 +0000109 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +0000110 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +0000111 u8 eth_addr[ETH_ALEN];
112};
113
stephen hemmingerd3428942012-10-01 12:32:35 +0000114/* Pseudo network device */
115struct vxlan_dev {
stephen hemminger553675f2013-05-16 11:35:20 +0000116 struct hlist_node hlist; /* vni hash table */
117 struct list_head next; /* vxlan's per namespace list */
118 struct vxlan_sock *vn_sock; /* listening socket */
stephen hemmingerd3428942012-10-01 12:32:35 +0000119 struct net_device *dev;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +0200120 struct net *net; /* netns for packet i/o */
Atzm Watanabec7995c42013-04-16 02:50:52 +0000121 struct vxlan_rdst default_dst; /* default destination */
Cong Wange4c7ed42013-08-31 13:44:33 +0800122 union vxlan_addr saddr; /* source address */
stephen hemminger823aa872013-04-27 11:31:57 +0000123 __be16 dst_port;
stephen hemminger05f47d62012-10-09 20:35:50 +0000124 __u16 port_min; /* source port range */
125 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000126 __u8 tos; /* TOS override */
127 __u8 ttl;
Tom Herbert359a0ea2014-06-04 17:20:29 -0700128 u32 flags; /* VXLAN_F_* in vxlan.h */
stephen hemmingerd3428942012-10-01 12:32:35 +0000129
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700130 struct work_struct sock_work;
stephen hemminger3fc2de22013-07-18 08:40:15 -0700131 struct work_struct igmp_join;
132 struct work_struct igmp_leave;
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700133
stephen hemmingerd3428942012-10-01 12:32:35 +0000134 unsigned long age_interval;
135 struct timer_list age_timer;
136 spinlock_t hash_lock;
137 unsigned int addrcnt;
138 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000139
140 struct hlist_head fdb_head[FDB_HASH_SIZE];
141};
142
143/* salt for hash table */
144static u32 vxlan_salt __read_mostly;
Stephen Hemminger758c57d2013-06-17 14:16:09 -0700145static struct workqueue_struct *vxlan_wq;
stephen hemmingerd3428942012-10-01 12:32:35 +0000146
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700147static void vxlan_sock_work(struct work_struct *work);
148
Cong Wange4c7ed42013-08-31 13:44:33 +0800149#if IS_ENABLED(CONFIG_IPV6)
150static inline
151bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
152{
153 if (a->sa.sa_family != b->sa.sa_family)
154 return false;
155 if (a->sa.sa_family == AF_INET6)
156 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
157 else
158 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
159}
160
161static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
162{
163 if (ipa->sa.sa_family == AF_INET6)
164 return ipv6_addr_any(&ipa->sin6.sin6_addr);
165 else
166 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
167}
168
169static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
170{
171 if (ipa->sa.sa_family == AF_INET6)
172 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
173 else
174 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
175}
176
177static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
178{
179 if (nla_len(nla) >= sizeof(struct in6_addr)) {
180 nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr));
181 ip->sa.sa_family = AF_INET6;
182 return 0;
183 } else if (nla_len(nla) >= sizeof(__be32)) {
184 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
185 ip->sa.sa_family = AF_INET;
186 return 0;
187 } else {
188 return -EAFNOSUPPORT;
189 }
190}
191
192static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
193 const union vxlan_addr *ip)
194{
195 if (ip->sa.sa_family == AF_INET6)
196 return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr);
197 else
198 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
199}
200
201#else /* !CONFIG_IPV6 */
202
203static inline
204bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
205{
206 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
207}
208
209static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
210{
211 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
212}
213
214static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
215{
216 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
217}
218
219static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
220{
221 if (nla_len(nla) >= sizeof(struct in6_addr)) {
222 return -EAFNOSUPPORT;
223 } else if (nla_len(nla) >= sizeof(__be32)) {
224 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
225 ip->sa.sa_family = AF_INET;
226 return 0;
227 } else {
228 return -EAFNOSUPPORT;
229 }
230}
231
232static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
233 const union vxlan_addr *ip)
234{
235 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
236}
237#endif
238
stephen hemminger553675f2013-05-16 11:35:20 +0000239/* Virtual Network hash table head */
240static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
241{
242 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
243}
244
245/* Socket hash table head */
246static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000247{
248 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
249
stephen hemminger553675f2013-05-16 11:35:20 +0000250 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
251}
252
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700253/* First remote destination for a forwarding entry.
254 * Guaranteed to be non-NULL because remotes are never deleted.
255 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700256static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700257{
stephen hemminger5ca54612013-08-04 17:17:39 -0700258 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
259}
260
261static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
262{
263 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700264}
265
Thomas Grafac5132d2015-01-15 03:53:56 +0100266/* Find VXLAN socket based on network namespace, address family and UDP port
267 * and enabled unshareable flags.
268 */
269static struct vxlan_sock *vxlan_find_sock(struct net *net, sa_family_t family,
270 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000271{
272 struct vxlan_sock *vs;
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800273
274 flags &= VXLAN_F_RCV_FLAGS;
stephen hemminger553675f2013-05-16 11:35:20 +0000275
276 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200277 if (inet_sk(vs->sock->sk)->inet_sport == port &&
Thomas Grafac5132d2015-01-15 03:53:56 +0100278 inet_sk(vs->sock->sk)->sk.sk_family == family &&
Tom Herbertaf33c1a2015-01-20 11:23:05 -0800279 vs->flags == flags)
stephen hemminger553675f2013-05-16 11:35:20 +0000280 return vs;
281 }
282 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000283}
284
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700285static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000286{
287 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000288
stephen hemminger553675f2013-05-16 11:35:20 +0000289 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000290 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000291 return vxlan;
292 }
293
294 return NULL;
295}
296
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700297/* Look up VNI in a per net namespace table */
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200298static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id,
Thomas Grafac5132d2015-01-15 03:53:56 +0100299 sa_family_t family, __be16 port,
300 u32 flags)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700301{
302 struct vxlan_sock *vs;
303
Thomas Grafac5132d2015-01-15 03:53:56 +0100304 vs = vxlan_find_sock(net, family, port, flags);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700305 if (!vs)
306 return NULL;
307
308 return vxlan_vs_find_vni(vs, id);
309}
310
stephen hemmingerd3428942012-10-01 12:32:35 +0000311/* Fill in neighbour message in skbuff. */
312static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700313 const struct vxlan_fdb *fdb,
314 u32 portid, u32 seq, int type, unsigned int flags,
315 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000316{
317 unsigned long now = jiffies;
318 struct nda_cacheinfo ci;
319 struct nlmsghdr *nlh;
320 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000321 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000322
323 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
324 if (nlh == NULL)
325 return -EMSGSIZE;
326
327 ndm = nlmsg_data(nlh);
328 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000329
330 send_eth = send_ip = true;
331
332 if (type == RTM_GETNEIGH) {
333 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800334 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000335 send_eth = !is_zero_ether_addr(fdb->eth_addr);
336 } else
337 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000338 ndm->ndm_state = fdb->state;
339 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000340 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800341 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000342
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100343 if (!net_eq(dev_net(vxlan->dev), vxlan->net) &&
Nicolas Dichtel49670822015-01-26 14:10:53 +0100344 nla_put_s32(skb, NDA_LINK_NETNSID,
345 peernet2id(dev_net(vxlan->dev), vxlan->net)))
Nicolas Dichtel193523b2015-01-20 15:15:47 +0100346 goto nla_put_failure;
347
David Stevense4f67ad2012-11-20 02:50:14 +0000348 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000349 goto nla_put_failure;
350
Cong Wange4c7ed42013-08-31 13:44:33 +0800351 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000352 goto nla_put_failure;
353
stephen hemminger823aa872013-04-27 11:31:57 +0000354 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000355 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
356 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000357 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700358 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000359 goto nla_put_failure;
360 if (rdst->remote_ifindex &&
361 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000362 goto nla_put_failure;
363
364 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
365 ci.ndm_confirmed = 0;
366 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
367 ci.ndm_refcnt = 0;
368
369 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
370 goto nla_put_failure;
371
Johannes Berg053c0952015-01-16 22:09:00 +0100372 nlmsg_end(skb, nlh);
373 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +0000374
375nla_put_failure:
376 nlmsg_cancel(skb, nlh);
377 return -EMSGSIZE;
378}
379
380static inline size_t vxlan_nlmsg_size(void)
381{
382 return NLMSG_ALIGN(sizeof(struct ndmsg))
383 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800384 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000385 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000386 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
387 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
Nicolas Dichtel49670822015-01-26 14:10:53 +0100388 + nla_total_size(sizeof(__s32)) /* NDA_LINK_NETNSID */
stephen hemmingerd3428942012-10-01 12:32:35 +0000389 + nla_total_size(sizeof(struct nda_cacheinfo));
390}
391
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200392static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
393 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000394{
395 struct net *net = dev_net(vxlan->dev);
396 struct sk_buff *skb;
397 int err = -ENOBUFS;
398
399 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
400 if (skb == NULL)
401 goto errout;
402
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200403 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000404 if (err < 0) {
405 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
406 WARN_ON(err == -EMSGSIZE);
407 kfree_skb(skb);
408 goto errout;
409 }
410
411 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
412 return;
413errout:
414 if (err < 0)
415 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
416}
417
Cong Wange4c7ed42013-08-31 13:44:33 +0800418static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000419{
420 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700421 struct vxlan_fdb f = {
422 .state = NUD_STALE,
423 };
424 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800425 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700426 .remote_vni = VXLAN_N_VID,
427 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700428
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200429 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000430}
431
432static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
433{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700434 struct vxlan_fdb f = {
435 .state = NUD_STALE,
436 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200437 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000438
David Stevense4f67ad2012-11-20 02:50:14 +0000439 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
440
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200441 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000442}
443
stephen hemmingerd3428942012-10-01 12:32:35 +0000444/* Hash Ethernet address */
445static u32 eth_hash(const unsigned char *addr)
446{
447 u64 value = get_unaligned((u64 *)addr);
448
449 /* only want 6 bytes */
450#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000451 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000452#else
453 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000454#endif
455 return hash_64(value, FDB_HASH_BITS);
456}
457
458/* Hash chain to use given mac address */
459static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
460 const u8 *mac)
461{
462 return &vxlan->fdb_head[eth_hash(mac)];
463}
464
465/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000466static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000467 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000468{
469 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
470 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000471
Sasha Levinb67bfe02013-02-27 17:06:00 -0800472 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700473 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000474 return f;
475 }
476
477 return NULL;
478}
479
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000480static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
481 const u8 *mac)
482{
483 struct vxlan_fdb *f;
484
485 f = __vxlan_find_mac(vxlan, mac);
486 if (f)
487 f->used = jiffies;
488
489 return f;
490}
491
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300492/* caller should hold vxlan->hash_lock */
493static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800494 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300495 __u32 vni, __u32 ifindex)
496{
497 struct vxlan_rdst *rd;
498
499 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800500 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300501 rd->remote_port == port &&
502 rd->remote_vni == vni &&
503 rd->remote_ifindex == ifindex)
504 return rd;
505 }
506
507 return NULL;
508}
509
Thomas Richter906dc182013-07-19 17:20:07 +0200510/* Replace destination of unicast mac */
511static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800512 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200513{
514 struct vxlan_rdst *rd;
515
516 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
517 if (rd)
518 return 0;
519
520 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
521 if (!rd)
522 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800523 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200524 rd->remote_port = port;
525 rd->remote_vni = vni;
526 rd->remote_ifindex = ifindex;
527 return 1;
528}
529
David Stevens66817122013-03-15 04:35:51 +0000530/* Add/update destinations for multicast */
531static int vxlan_fdb_append(struct vxlan_fdb *f,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200532 union vxlan_addr *ip, __be16 port, __u32 vni,
533 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000534{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700535 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000536
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300537 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
538 if (rd)
539 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700540
David Stevens66817122013-03-15 04:35:51 +0000541 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
542 if (rd == NULL)
543 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800544 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000545 rd->remote_port = port;
546 rd->remote_vni = vni;
547 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700548
549 list_add_tail_rcu(&rd->list, &f->remotes);
550
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200551 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000552 return 1;
553}
554
Tom Herbertdfd86452015-01-12 17:00:38 -0800555static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
556 unsigned int off,
557 struct vxlanhdr *vh, size_t hdrlen,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800558 u32 data, struct gro_remcsum *grc,
559 bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -0800560{
561 size_t start, offset, plen;
Tom Herbertdfd86452015-01-12 17:00:38 -0800562
563 if (skb->remcsum_offload)
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800564 return NULL;
Tom Herbertdfd86452015-01-12 17:00:38 -0800565
566 if (!NAPI_GRO_CB(skb)->csum_valid)
567 return NULL;
568
569 start = (data & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
570 offset = start + ((data & VXLAN_RCO_UDP) ?
571 offsetof(struct udphdr, check) :
572 offsetof(struct tcphdr, check));
573
574 plen = hdrlen + offset + sizeof(u16);
575
576 /* Pull checksum that will be written */
577 if (skb_gro_header_hard(skb, off + plen)) {
578 vh = skb_gro_header_slow(skb, off + plen, off);
579 if (!vh)
580 return NULL;
581 }
582
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800583 skb_gro_remcsum_process(skb, (void *)vh + hdrlen,
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800584 start, offset, grc, nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -0800585
586 skb->remcsum_offload = 1;
587
588 return vh;
589}
590
Tom Herberta2b12f32015-01-12 17:00:37 -0800591static struct sk_buff **vxlan_gro_receive(struct sk_buff **head,
592 struct sk_buff *skb,
593 struct udp_offload *uoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200594{
595 struct sk_buff *p, **pp = NULL;
596 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800597 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200598 int flush = 1;
Tom Herbertdfd86452015-01-12 17:00:38 -0800599 struct vxlan_sock *vs = container_of(uoff, struct vxlan_sock,
600 udp_offloads);
601 u32 flags;
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800602 struct gro_remcsum grc;
603
604 skb_gro_remcsum_init(&grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200605
606 off_vx = skb_gro_offset(skb);
607 hlen = off_vx + sizeof(*vh);
608 vh = skb_gro_header_fast(skb, off_vx);
609 if (skb_gro_header_hard(skb, hlen)) {
610 vh = skb_gro_header_slow(skb, hlen, off_vx);
611 if (unlikely(!vh))
612 goto out;
613 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200614
Tom Herbertdfd86452015-01-12 17:00:38 -0800615 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
616 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
617
618 flags = ntohl(vh->vx_flags);
619
620 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
621 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
Tom Herbert0ace2ca2015-02-10 16:30:32 -0800622 ntohl(vh->vx_vni), &grc,
623 !!(vs->flags &
624 VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -0800625
626 if (!vh)
627 goto out;
628 }
629
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200630 flush = 0;
631
632 for (p = *head; p; p = p->next) {
633 if (!NAPI_GRO_CB(p)->same_flow)
634 continue;
635
636 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100637 if (vh->vx_flags != vh2->vx_flags ||
638 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200639 NAPI_GRO_CB(p)->same_flow = 0;
640 continue;
641 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200642 }
643
Jesse Gross9b174d82014-12-30 19:10:15 -0800644 pp = eth_gro_receive(head, skb);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200645
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200646out:
Tom Herbert26c4f7d2015-02-10 16:30:27 -0800647 skb_gro_remcsum_cleanup(skb, &grc);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200648 NAPI_GRO_CB(skb)->flush |= flush;
649
650 return pp;
651}
652
Tom Herberta2b12f32015-01-12 17:00:37 -0800653static int vxlan_gro_complete(struct sk_buff *skb, int nhoff,
654 struct udp_offload *uoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200655{
Jesse Grosscfdf1e12014-11-10 11:45:13 -0800656 udp_tunnel_gro_complete(skb, nhoff);
657
Jesse Gross9b174d82014-12-30 19:10:15 -0800658 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200659}
660
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700661/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200662static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700663{
664 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200665 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700666 struct net *net = sock_net(sk);
667 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700668 __be16 port = inet_sk(sk)->inet_sport;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200669 int err;
670
671 if (sa_family == AF_INET) {
672 err = udp_add_offload(&vs->udp_offloads);
673 if (err)
674 pr_warn("vxlan: udp_add_offload failed with status %d\n", err);
675 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700676
677 rcu_read_lock();
678 for_each_netdev_rcu(net, dev) {
679 if (dev->netdev_ops->ndo_add_vxlan_port)
680 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
681 port);
682 }
683 rcu_read_unlock();
684}
685
686/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200687static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700688{
689 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200690 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700691 struct net *net = sock_net(sk);
692 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700693 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700694
695 rcu_read_lock();
696 for_each_netdev_rcu(net, dev) {
697 if (dev->netdev_ops->ndo_del_vxlan_port)
698 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
699 port);
700 }
701 rcu_read_unlock();
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200702
703 if (sa_family == AF_INET)
704 udp_del_offload(&vs->udp_offloads);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700705}
706
stephen hemmingerd3428942012-10-01 12:32:35 +0000707/* Add new entry to forwarding table -- assumes lock held */
708static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800709 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000710 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000711 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000712 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000713{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200714 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000715 struct vxlan_fdb *f;
716 int notify = 0;
717
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000718 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000719 if (f) {
720 if (flags & NLM_F_EXCL) {
721 netdev_dbg(vxlan->dev,
722 "lost race to create %pM\n", mac);
723 return -EEXIST;
724 }
725 if (f->state != state) {
726 f->state = state;
727 f->updated = jiffies;
728 notify = 1;
729 }
David Stevensae884082013-04-19 00:36:26 +0000730 if (f->flags != ndm_flags) {
731 f->flags = ndm_flags;
732 f->updated = jiffies;
733 notify = 1;
734 }
Thomas Richter906dc182013-07-19 17:20:07 +0200735 if ((flags & NLM_F_REPLACE)) {
736 /* Only change unicasts */
737 if (!(is_multicast_ether_addr(f->eth_addr) ||
738 is_zero_ether_addr(f->eth_addr))) {
739 int rc = vxlan_fdb_replace(f, ip, port, vni,
740 ifindex);
741
742 if (rc < 0)
743 return rc;
744 notify |= rc;
745 } else
746 return -EOPNOTSUPP;
747 }
David Stevens66817122013-03-15 04:35:51 +0000748 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300749 (is_multicast_ether_addr(f->eth_addr) ||
750 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200751 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
752 &rd);
David Stevens66817122013-03-15 04:35:51 +0000753
754 if (rc < 0)
755 return rc;
756 notify |= rc;
757 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000758 } else {
759 if (!(flags & NLM_F_CREATE))
760 return -ENOENT;
761
762 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
763 return -ENOSPC;
764
Thomas Richter906dc182013-07-19 17:20:07 +0200765 /* Disallow replace to add a multicast entry */
766 if ((flags & NLM_F_REPLACE) &&
767 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
768 return -EOPNOTSUPP;
769
Cong Wange4c7ed42013-08-31 13:44:33 +0800770 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000771 f = kmalloc(sizeof(*f), GFP_ATOMIC);
772 if (!f)
773 return -ENOMEM;
774
775 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000776 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000777 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000778 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700779 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000780 memcpy(f->eth_addr, mac, ETH_ALEN);
781
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200782 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700783
stephen hemmingerd3428942012-10-01 12:32:35 +0000784 ++vxlan->addrcnt;
785 hlist_add_head_rcu(&f->hlist,
786 vxlan_fdb_head(vxlan, mac));
787 }
788
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200789 if (notify) {
790 if (rd == NULL)
791 rd = first_remote_rtnl(f);
792 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
793 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000794
795 return 0;
796}
797
Wei Yongjun6706c822013-04-11 19:00:35 +0000798static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000799{
800 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700801 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000802
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700803 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000804 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000805 kfree(f);
806}
807
stephen hemmingerd3428942012-10-01 12:32:35 +0000808static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
809{
810 netdev_dbg(vxlan->dev,
811 "delete %pM\n", f->eth_addr);
812
813 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200814 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000815
816 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000817 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000818}
819
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300820static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800821 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300822{
823 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800824 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300825
826 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800827 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
828 if (err)
829 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300830 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800831 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
832 if (remote->sa.sa_family == AF_INET) {
833 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
834 ip->sa.sa_family = AF_INET;
835#if IS_ENABLED(CONFIG_IPV6)
836 } else {
837 ip->sin6.sin6_addr = in6addr_any;
838 ip->sa.sa_family = AF_INET6;
839#endif
840 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300841 }
842
843 if (tb[NDA_PORT]) {
844 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
845 return -EINVAL;
846 *port = nla_get_be16(tb[NDA_PORT]);
847 } else {
848 *port = vxlan->dst_port;
849 }
850
851 if (tb[NDA_VNI]) {
852 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
853 return -EINVAL;
854 *vni = nla_get_u32(tb[NDA_VNI]);
855 } else {
856 *vni = vxlan->default_dst.remote_vni;
857 }
858
859 if (tb[NDA_IFINDEX]) {
860 struct net_device *tdev;
861
862 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
863 return -EINVAL;
864 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800865 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300866 if (!tdev)
867 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300868 } else {
869 *ifindex = 0;
870 }
871
872 return 0;
873}
874
stephen hemmingerd3428942012-10-01 12:32:35 +0000875/* Add static entry (via netlink) */
876static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
877 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100878 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000879{
880 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300881 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800882 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000883 __be16 port;
884 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000885 int err;
886
887 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
888 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
889 ndm->ndm_state);
890 return -EINVAL;
891 }
892
893 if (tb[NDA_DST] == NULL)
894 return -EINVAL;
895
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300896 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
897 if (err)
898 return err;
David Stevens66817122013-03-15 04:35:51 +0000899
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300900 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
901 return -EAFNOSUPPORT;
902
stephen hemmingerd3428942012-10-01 12:32:35 +0000903 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800904 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000905 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000906 spin_unlock_bh(&vxlan->hash_lock);
907
908 return err;
909}
910
911/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000912static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
913 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100914 const unsigned char *addr, u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000915{
916 struct vxlan_dev *vxlan = netdev_priv(dev);
917 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300918 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800919 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300920 __be16 port;
921 u32 vni, ifindex;
922 int err;
923
924 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
925 if (err)
926 return err;
927
928 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000929
930 spin_lock_bh(&vxlan->hash_lock);
931 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300932 if (!f)
933 goto out;
934
Cong Wange4c7ed42013-08-31 13:44:33 +0800935 if (!vxlan_addr_any(&ip)) {
936 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300937 if (!rd)
938 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000939 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300940
941 err = 0;
942
943 /* remove a destination if it's not the only one on the list,
944 * otherwise destroy the fdb entry
945 */
946 if (rd && !list_is_singular(&f->remotes)) {
947 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200948 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800949 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300950 goto out;
951 }
952
953 vxlan_fdb_destroy(vxlan, f);
954
955out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000956 spin_unlock_bh(&vxlan->hash_lock);
957
958 return err;
959}
960
961/* Dump forwarding table */
962static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400963 struct net_device *dev,
964 struct net_device *filter_dev, int idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000965{
966 struct vxlan_dev *vxlan = netdev_priv(dev);
967 unsigned int h;
968
969 for (h = 0; h < FDB_HASH_SIZE; ++h) {
970 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000971 int err;
972
Sasha Levinb67bfe02013-02-27 17:06:00 -0800973 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000974 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000975
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700976 if (idx < cb->args[0])
977 goto skip;
978
979 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000980 err = vxlan_fdb_info(skb, vxlan, f,
981 NETLINK_CB(cb->skb).portid,
982 cb->nlh->nlmsg_seq,
983 RTM_NEWNEIGH,
984 NLM_F_MULTI, rd);
985 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700986 goto out;
David Stevens66817122013-03-15 04:35:51 +0000987 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700988skip:
989 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000990 }
991 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700992out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000993 return idx;
994}
995
996/* Watch incoming packets to learn mapping between Ethernet address
997 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700998 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000999 */
stephen hemminger26a41ae62013-06-17 12:09:58 -07001000static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +08001001 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +00001002{
1003 struct vxlan_dev *vxlan = netdev_priv(dev);
1004 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +00001005
1006 f = vxlan_find_mac(vxlan, src_mac);
1007 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -07001008 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001009
Cong Wange4c7ed42013-08-31 13:44:33 +08001010 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001011 return false;
1012
1013 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -07001014 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -07001015 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +00001016
1017 if (net_ratelimit())
1018 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +08001019 "%pM migrated from %pIS to %pIS\n",
Rasmus Villemoesa4870f72015-02-07 03:17:31 +01001020 src_mac, &rdst->remote_ip.sa, &src_ip->sa);
stephen hemmingerd3428942012-10-01 12:32:35 +00001021
Cong Wange4c7ed42013-08-31 13:44:33 +08001022 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001023 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +02001024 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +00001025 } else {
1026 /* learned new entry */
1027 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001028
1029 /* close off race between vxlan_flush and incoming packets */
1030 if (netif_running(dev))
1031 vxlan_fdb_create(vxlan, src_mac, src_ip,
1032 NUD_REACHABLE,
1033 NLM_F_EXCL|NLM_F_CREATE,
1034 vxlan->dst_port,
1035 vxlan->default_dst.remote_vni,
1036 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +00001037 spin_unlock(&vxlan->hash_lock);
1038 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001039
1040 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001041}
1042
stephen hemmingerd3428942012-10-01 12:32:35 +00001043/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001044static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001045{
stephen hemminger553675f2013-05-16 11:35:20 +00001046 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +00001047
Gao feng95ab0992013-12-10 16:37:33 +08001048 /* The vxlan_sock is only used by dev, leaving group has
1049 * no effect on other vxlan devices.
1050 */
1051 if (atomic_read(&dev->vn_sock->refcnt) == 1)
1052 return false;
1053
stephen hemminger553675f2013-05-16 11:35:20 +00001054 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001055 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001056 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001057
Gao feng95ab0992013-12-10 16:37:33 +08001058 if (vxlan->vn_sock != dev->vn_sock)
1059 continue;
1060
1061 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1062 &dev->default_dst.remote_ip))
1063 continue;
1064
1065 if (vxlan->default_dst.remote_ifindex !=
1066 dev->default_dst.remote_ifindex)
1067 continue;
1068
1069 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001070 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001071
1072 return false;
1073}
1074
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001075static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001076{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001077 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001078}
1079
Pravin B Shelar012a5722013-08-19 11:23:07 -07001080void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001081{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07001082 struct sock *sk = vs->sock->sk;
1083 struct net *net = sock_net(sk);
1084 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -07001085
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001086 if (!atomic_dec_and_test(&vs->refcnt))
1087 return;
1088
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001089 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001090 hlist_del_rcu(&vs->hlist);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001091 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001092 spin_unlock(&vn->sock_lock);
1093
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001094 queue_work(vxlan_wq, &vs->del_work);
1095}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001096EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001097
stephen hemminger3fc2de22013-07-18 08:40:15 -07001098/* Callback to update multicast group membership when first VNI on
1099 * multicast asddress is brought up
1100 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001101 */
stephen hemminger3fc2de22013-07-18 08:40:15 -07001102static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001103{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001104 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001105 struct vxlan_sock *vs = vxlan->vn_sock;
1106 struct sock *sk = vs->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;
stephen hemmingerd3428942012-10-01 12:32:35 +00001109
stephen hemmingerd3428942012-10-01 12:32:35 +00001110 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001111 if (ip->sa.sa_family == AF_INET) {
1112 struct ip_mreqn mreq = {
1113 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1114 .imr_ifindex = ifindex,
1115 };
1116
1117 ip_mc_join_group(sk, &mreq);
1118#if IS_ENABLED(CONFIG_IPV6)
1119 } else {
1120 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1121 &ip->sin6.sin6_addr);
1122#endif
1123 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001124 release_sock(sk);
1125
Pravin B Shelar012a5722013-08-19 11:23:07 -07001126 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001127 dev_put(vxlan->dev);
1128}
1129
1130/* Inverse of vxlan_igmp_join when last VNI is brought down */
1131static void vxlan_igmp_leave(struct work_struct *work)
1132{
1133 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001134 struct vxlan_sock *vs = vxlan->vn_sock;
1135 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001136 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1137 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001138
1139 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001140 if (ip->sa.sa_family == AF_INET) {
1141 struct ip_mreqn mreq = {
1142 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1143 .imr_ifindex = ifindex,
1144 };
1145
1146 ip_mc_leave_group(sk, &mreq);
1147#if IS_ENABLED(CONFIG_IPV6)
1148 } else {
1149 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1150 &ip->sin6.sin6_addr);
1151#endif
1152 }
1153
stephen hemmingerd3428942012-10-01 12:32:35 +00001154 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001155
Pravin B Shelar012a5722013-08-19 11:23:07 -07001156 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001157 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001158}
1159
Tom Herbertdfd86452015-01-12 17:00:38 -08001160static struct vxlanhdr *vxlan_remcsum(struct sk_buff *skb, struct vxlanhdr *vh,
Tom Herbert0ace2ca2015-02-10 16:30:32 -08001161 size_t hdrlen, u32 data, bool nopartial)
Tom Herbertdfd86452015-01-12 17:00:38 -08001162{
1163 size_t start, offset, plen;
Tom Herbertdfd86452015-01-12 17:00:38 -08001164
Tom Herbertdfd86452015-01-12 17:00:38 -08001165 start = (data & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
1166 offset = start + ((data & VXLAN_RCO_UDP) ?
1167 offsetof(struct udphdr, check) :
1168 offsetof(struct tcphdr, check));
1169
1170 plen = hdrlen + offset + sizeof(u16);
1171
1172 if (!pskb_may_pull(skb, plen))
1173 return NULL;
1174
1175 vh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
1176
Tom Herbert0ace2ca2015-02-10 16:30:32 -08001177 skb_remcsum_process(skb, (void *)vh + hdrlen, start, offset,
1178 nopartial);
Tom Herbertdfd86452015-01-12 17:00:38 -08001179
1180 return vh;
1181}
1182
stephen hemmingerd3428942012-10-01 12:32:35 +00001183/* Callback from net/ipv4/udp.c to receive packets */
1184static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1185{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001186 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001187 struct vxlanhdr *vxh;
Tom Herbert3bf39472015-01-08 12:31:18 -08001188 u32 flags, vni;
Thomas Graf35114942015-01-15 03:53:55 +01001189 struct vxlan_metadata md = {0};
stephen hemmingerd3428942012-10-01 12:32:35 +00001190
stephen hemmingerd3428942012-10-01 12:32:35 +00001191 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001192 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001193 goto error;
1194
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001195 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
Tom Herbert3bf39472015-01-08 12:31:18 -08001196 flags = ntohl(vxh->vx_flags);
1197 vni = ntohl(vxh->vx_vni);
1198
1199 if (flags & VXLAN_HF_VNI) {
1200 flags &= ~VXLAN_HF_VNI;
1201 } else {
1202 /* VNI flag always required to be set */
1203 goto bad_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00001204 }
1205
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001206 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001207 goto drop;
Tom Herbertdfd86452015-01-12 17:00:38 -08001208 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +00001209
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001210 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001211 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001212 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001213
Tom Herbertdfd86452015-01-12 17:00:38 -08001214 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
Tom Herbert0ace2ca2015-02-10 16:30:32 -08001215 vxh = vxlan_remcsum(skb, vxh, sizeof(struct vxlanhdr), vni,
1216 !!(vs->flags & VXLAN_F_REMCSUM_NOPARTIAL));
Tom Herbertdfd86452015-01-12 17:00:38 -08001217 if (!vxh)
1218 goto drop;
1219
1220 flags &= ~VXLAN_HF_RCO;
1221 vni &= VXLAN_VID_MASK;
1222 }
1223
Thomas Graf35114942015-01-15 03:53:55 +01001224 /* For backwards compatibility, only allow reserved fields to be
1225 * used by VXLAN extensions if explicitly requested.
1226 */
1227 if ((flags & VXLAN_HF_GBP) && (vs->flags & VXLAN_F_GBP)) {
1228 struct vxlanhdr_gbp *gbp;
1229
1230 gbp = (struct vxlanhdr_gbp *)vxh;
1231 md.gbp = ntohs(gbp->policy_id);
1232
1233 if (gbp->dont_learn)
1234 md.gbp |= VXLAN_GBP_DONT_LEARN;
1235
1236 if (gbp->policy_applied)
1237 md.gbp |= VXLAN_GBP_POLICY_APPLIED;
1238
1239 flags &= ~VXLAN_GBP_USED_BITS;
1240 }
1241
Tom Herbertdfd86452015-01-12 17:00:38 -08001242 if (flags || (vni & ~VXLAN_VID_MASK)) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001243 /* If there are any unprocessed flags remaining treat
1244 * this as a malformed packet. This behavior diverges from
1245 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1246 * in reserved fields are to be ignored. The approach here
1247 * maintains compatbility with previous stack code, and also
1248 * is more robust and provides a little more security in
1249 * adding extensions to VXLAN.
1250 */
1251
1252 goto bad_flags;
1253 }
1254
Thomas Graf35114942015-01-15 03:53:55 +01001255 md.vni = vxh->vx_vni;
1256 vs->rcv(vs, skb, &md);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001257 return 0;
1258
1259drop:
1260 /* Consume bad packet */
1261 kfree_skb(skb);
1262 return 0;
1263
Tom Herbert3bf39472015-01-08 12:31:18 -08001264bad_flags:
1265 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1266 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1267
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001268error:
1269 /* Return non vxlan pkt */
1270 return 1;
1271}
1272
Thomas Graf35114942015-01-15 03:53:55 +01001273static void vxlan_rcv(struct vxlan_sock *vs, struct sk_buff *skb,
1274 struct vxlan_metadata *md)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001275{
Cong Wange4c7ed42013-08-31 13:44:33 +08001276 struct iphdr *oip = NULL;
1277 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001278 struct vxlan_dev *vxlan;
Li RongQing8f849852014-01-04 13:57:59 +08001279 struct pcpu_sw_netstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001280 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001281 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001282 int err = 0;
1283 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001284
Thomas Graf35114942015-01-15 03:53:55 +01001285 vni = ntohl(md->vni) >> 8;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001286 /* Is this VNI defined? */
1287 vxlan = vxlan_vs_find_vni(vs, vni);
1288 if (!vxlan)
1289 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001290
Cong Wange4c7ed42013-08-31 13:44:33 +08001291 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001292 skb_reset_mac_header(skb);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001293 skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev)));
stephen hemmingerd3428942012-10-01 12:32:35 +00001294 skb->protocol = eth_type_trans(skb, vxlan->dev);
Tom Herbertf79b0642014-06-14 23:24:36 -07001295 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
stephen hemmingerd3428942012-10-01 12:32:35 +00001296
1297 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001298 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001299 goto drop;
1300
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001301 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001302 if (remote_ip->sa.sa_family == AF_INET) {
1303 oip = ip_hdr(skb);
1304 saddr.sin.sin_addr.s_addr = oip->saddr;
1305 saddr.sa.sa_family = AF_INET;
1306#if IS_ENABLED(CONFIG_IPV6)
1307 } else {
1308 oip6 = ipv6_hdr(skb);
1309 saddr.sin6.sin6_addr = oip6->saddr;
1310 saddr.sa.sa_family = AF_INET6;
1311#endif
1312 }
1313
stephen hemminger26a41ae62013-06-17 12:09:58 -07001314 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001315 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001316 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001317
stephen hemmingerd3428942012-10-01 12:32:35 +00001318 skb_reset_network_header(skb);
Thomas Graf35114942015-01-15 03:53:55 +01001319 skb->mark = md->gbp;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001320
Cong Wange4c7ed42013-08-31 13:44:33 +08001321 if (oip6)
1322 err = IP6_ECN_decapsulate(oip6, skb);
1323 if (oip)
1324 err = IP_ECN_decapsulate(oip, skb);
1325
stephen hemmingerd3428942012-10-01 12:32:35 +00001326 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001327 if (log_ecn_error) {
1328 if (oip6)
1329 net_info_ratelimited("non-ECT from %pI6\n",
1330 &oip6->saddr);
1331 if (oip)
1332 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1333 &oip->saddr, oip->tos);
1334 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001335 if (err > 1) {
1336 ++vxlan->dev->stats.rx_frame_errors;
1337 ++vxlan->dev->stats.rx_errors;
1338 goto drop;
1339 }
1340 }
1341
Pravin B Shelare8171042013-03-25 14:49:46 +00001342 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001343 u64_stats_update_begin(&stats->syncp);
1344 stats->rx_packets++;
1345 stats->rx_bytes += skb->len;
1346 u64_stats_update_end(&stats->syncp);
1347
1348 netif_rx(skb);
1349
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001350 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001351drop:
1352 /* Consume bad packet */
1353 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001354}
1355
David Stevense4f67ad2012-11-20 02:50:14 +00001356static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1357{
1358 struct vxlan_dev *vxlan = netdev_priv(dev);
1359 struct arphdr *parp;
1360 u8 *arpptr, *sha;
1361 __be32 sip, tip;
1362 struct neighbour *n;
1363
1364 if (dev->flags & IFF_NOARP)
1365 goto out;
1366
1367 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1368 dev->stats.tx_dropped++;
1369 goto out;
1370 }
1371 parp = arp_hdr(skb);
1372
1373 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1374 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1375 parp->ar_pro != htons(ETH_P_IP) ||
1376 parp->ar_op != htons(ARPOP_REQUEST) ||
1377 parp->ar_hln != dev->addr_len ||
1378 parp->ar_pln != 4)
1379 goto out;
1380 arpptr = (u8 *)parp + sizeof(struct arphdr);
1381 sha = arpptr;
1382 arpptr += dev->addr_len; /* sha */
1383 memcpy(&sip, arpptr, sizeof(sip));
1384 arpptr += sizeof(sip);
1385 arpptr += dev->addr_len; /* tha */
1386 memcpy(&tip, arpptr, sizeof(tip));
1387
1388 if (ipv4_is_loopback(tip) ||
1389 ipv4_is_multicast(tip))
1390 goto out;
1391
1392 n = neigh_lookup(&arp_tbl, &tip, dev);
1393
1394 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001395 struct vxlan_fdb *f;
1396 struct sk_buff *reply;
1397
1398 if (!(n->nud_state & NUD_CONNECTED)) {
1399 neigh_release(n);
1400 goto out;
1401 }
1402
1403 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001404 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001405 /* bridge-local neighbor */
1406 neigh_release(n);
1407 goto out;
1408 }
1409
1410 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1411 n->ha, sha);
1412
1413 neigh_release(n);
1414
David Stevens73461352014-03-18 12:32:29 -04001415 if (reply == NULL)
1416 goto out;
1417
David Stevense4f67ad2012-11-20 02:50:14 +00001418 skb_reset_mac_header(reply);
1419 __skb_pull(reply, skb_network_offset(reply));
1420 reply->ip_summed = CHECKSUM_UNNECESSARY;
1421 reply->pkt_type = PACKET_HOST;
1422
1423 if (netif_rx_ni(reply) == NET_RX_DROP)
1424 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001425 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1426 union vxlan_addr ipa = {
1427 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001428 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001429 };
1430
1431 vxlan_ip_miss(dev, &ipa);
1432 }
David Stevense4f67ad2012-11-20 02:50:14 +00001433out:
1434 consume_skb(skb);
1435 return NETDEV_TX_OK;
1436}
1437
Cong Wangf564f452013-08-31 13:44:36 +08001438#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001439static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1440 struct neighbour *n, bool isrouter)
1441{
1442 struct net_device *dev = request->dev;
1443 struct sk_buff *reply;
1444 struct nd_msg *ns, *na;
1445 struct ipv6hdr *pip6;
1446 u8 *daddr;
1447 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1448 int ns_olen;
1449 int i, len;
1450
1451 if (dev == NULL)
1452 return NULL;
1453
1454 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1455 sizeof(*na) + na_olen + dev->needed_tailroom;
1456 reply = alloc_skb(len, GFP_ATOMIC);
1457 if (reply == NULL)
1458 return NULL;
1459
1460 reply->protocol = htons(ETH_P_IPV6);
1461 reply->dev = dev;
1462 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1463 skb_push(reply, sizeof(struct ethhdr));
1464 skb_set_mac_header(reply, 0);
1465
1466 ns = (struct nd_msg *)skb_transport_header(request);
1467
1468 daddr = eth_hdr(request)->h_source;
1469 ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns);
1470 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1471 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1472 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1473 break;
1474 }
1475 }
1476
1477 /* Ethernet header */
1478 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1479 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1480 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1481 reply->protocol = htons(ETH_P_IPV6);
1482
1483 skb_pull(reply, sizeof(struct ethhdr));
1484 skb_set_network_header(reply, 0);
1485 skb_put(reply, sizeof(struct ipv6hdr));
1486
1487 /* IPv6 header */
1488
1489 pip6 = ipv6_hdr(reply);
1490 memset(pip6, 0, sizeof(struct ipv6hdr));
1491 pip6->version = 6;
1492 pip6->priority = ipv6_hdr(request)->priority;
1493 pip6->nexthdr = IPPROTO_ICMPV6;
1494 pip6->hop_limit = 255;
1495 pip6->daddr = ipv6_hdr(request)->saddr;
1496 pip6->saddr = *(struct in6_addr *)n->primary_key;
1497
1498 skb_pull(reply, sizeof(struct ipv6hdr));
1499 skb_set_transport_header(reply, 0);
1500
1501 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1502
1503 /* Neighbor Advertisement */
1504 memset(na, 0, sizeof(*na)+na_olen);
1505 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1506 na->icmph.icmp6_router = isrouter;
1507 na->icmph.icmp6_override = 1;
1508 na->icmph.icmp6_solicited = 1;
1509 na->target = ns->target;
1510 ether_addr_copy(&na->opt[2], n->ha);
1511 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1512 na->opt[1] = na_olen >> 3;
1513
1514 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1515 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1516 csum_partial(na, sizeof(*na)+na_olen, 0));
1517
1518 pip6->payload_len = htons(sizeof(*na)+na_olen);
1519
1520 skb_push(reply, sizeof(struct ipv6hdr));
1521
1522 reply->ip_summed = CHECKSUM_UNNECESSARY;
1523
1524 return reply;
1525}
1526
Cong Wangf564f452013-08-31 13:44:36 +08001527static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1528{
1529 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001530 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001531 const struct ipv6hdr *iphdr;
1532 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001533 struct neighbour *n;
1534 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001535
1536 in6_dev = __in6_dev_get(dev);
1537 if (!in6_dev)
1538 goto out;
1539
Cong Wangf564f452013-08-31 13:44:36 +08001540 iphdr = ipv6_hdr(skb);
1541 saddr = &iphdr->saddr;
1542 daddr = &iphdr->daddr;
1543
Cong Wangf564f452013-08-31 13:44:36 +08001544 msg = (struct nd_msg *)skb_transport_header(skb);
1545 if (msg->icmph.icmp6_code != 0 ||
1546 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1547 goto out;
1548
David Stevens4b29dba2014-03-24 10:39:58 -04001549 if (ipv6_addr_loopback(daddr) ||
1550 ipv6_addr_is_multicast(&msg->target))
1551 goto out;
1552
1553 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001554
1555 if (n) {
1556 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001557 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001558
1559 if (!(n->nud_state & NUD_CONNECTED)) {
1560 neigh_release(n);
1561 goto out;
1562 }
1563
1564 f = vxlan_find_mac(vxlan, n->ha);
1565 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1566 /* bridge-local neighbor */
1567 neigh_release(n);
1568 goto out;
1569 }
1570
David Stevens4b29dba2014-03-24 10:39:58 -04001571 reply = vxlan_na_create(skb, n,
1572 !!(f ? f->flags & NTF_ROUTER : 0));
1573
Cong Wangf564f452013-08-31 13:44:36 +08001574 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001575
1576 if (reply == NULL)
1577 goto out;
1578
1579 if (netif_rx_ni(reply) == NET_RX_DROP)
1580 dev->stats.rx_dropped++;
1581
Cong Wangf564f452013-08-31 13:44:36 +08001582 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001583 union vxlan_addr ipa = {
1584 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001585 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001586 };
1587
Cong Wangf564f452013-08-31 13:44:36 +08001588 vxlan_ip_miss(dev, &ipa);
1589 }
1590
1591out:
1592 consume_skb(skb);
1593 return NETDEV_TX_OK;
1594}
1595#endif
1596
David Stevense4f67ad2012-11-20 02:50:14 +00001597static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1598{
1599 struct vxlan_dev *vxlan = netdev_priv(dev);
1600 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001601
1602 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1603 return false;
1604
1605 n = NULL;
1606 switch (ntohs(eth_hdr(skb)->h_proto)) {
1607 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001608 {
1609 struct iphdr *pip;
1610
David Stevense4f67ad2012-11-20 02:50:14 +00001611 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1612 return false;
1613 pip = ip_hdr(skb);
1614 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001615 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1616 union vxlan_addr ipa = {
1617 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001618 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001619 };
1620
1621 vxlan_ip_miss(dev, &ipa);
1622 return false;
1623 }
1624
David Stevense4f67ad2012-11-20 02:50:14 +00001625 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001626 }
1627#if IS_ENABLED(CONFIG_IPV6)
1628 case ETH_P_IPV6:
1629 {
1630 struct ipv6hdr *pip6;
1631
1632 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1633 return false;
1634 pip6 = ipv6_hdr(skb);
1635 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1636 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1637 union vxlan_addr ipa = {
1638 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001639 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001640 };
1641
1642 vxlan_ip_miss(dev, &ipa);
1643 return false;
1644 }
1645
1646 break;
1647 }
1648#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001649 default:
1650 return false;
1651 }
1652
1653 if (n) {
1654 bool diff;
1655
Joe Perches7367d0b2013-09-01 11:51:23 -07001656 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001657 if (diff) {
1658 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1659 dev->addr_len);
1660 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1661 }
1662 neigh_release(n);
1663 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001664 }
1665
David Stevense4f67ad2012-11-20 02:50:14 +00001666 return false;
1667}
1668
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001669static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01001670 struct vxlan_metadata *md)
1671{
1672 struct vxlanhdr_gbp *gbp;
1673
Thomas Grafdb79a622015-02-04 17:00:04 +01001674 if (!md->gbp)
1675 return;
1676
Thomas Graf35114942015-01-15 03:53:55 +01001677 gbp = (struct vxlanhdr_gbp *)vxh;
1678 vxh->vx_flags |= htonl(VXLAN_HF_GBP);
1679
1680 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1681 gbp->dont_learn = 1;
1682
1683 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1684 gbp->policy_applied = 1;
1685
1686 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1687}
1688
Cong Wange4c7ed42013-08-31 13:44:33 +08001689#if IS_ENABLED(CONFIG_IPV6)
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001690static int vxlan6_xmit_skb(struct dst_entry *dst, struct sk_buff *skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001691 struct net_device *dev, struct in6_addr *saddr,
1692 struct in6_addr *daddr, __u8 prio, __u8 ttl,
Thomas Graf35114942015-01-15 03:53:55 +01001693 __be16 src_port, __be16 dst_port,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001694 struct vxlan_metadata *md, bool xnet, u32 vxflags)
Cong Wange4c7ed42013-08-31 13:44:33 +08001695{
Cong Wange4c7ed42013-08-31 13:44:33 +08001696 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001697 int min_headroom;
1698 int err;
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001699 bool udp_sum = !(vxflags & VXLAN_F_UDP_ZERO_CSUM6_TX);
Tom Herbertdfd86452015-01-12 17:00:38 -08001700 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1701 u16 hdrlen = sizeof(struct vxlanhdr);
Cong Wange4c7ed42013-08-31 13:44:33 +08001702
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001703 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001704 skb->ip_summed == CHECKSUM_PARTIAL) {
1705 int csum_start = skb_checksum_start_offset(skb);
1706
1707 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1708 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1709 (skb->csum_offset == offsetof(struct udphdr, check) ||
1710 skb->csum_offset == offsetof(struct tcphdr, check))) {
1711 udp_sum = false;
1712 type |= SKB_GSO_TUNNEL_REMCSUM;
1713 }
1714 }
1715
1716 skb = iptunnel_handle_offloads(skb, udp_sum, type);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001717 if (IS_ERR(skb)) {
1718 err = -EINVAL;
1719 goto err;
1720 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001721
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001722 skb_scrub_packet(skb, xnet);
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001723
Cong Wange4c7ed42013-08-31 13:44:33 +08001724 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1725 + VXLAN_HLEN + sizeof(struct ipv6hdr)
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001726 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Cong Wange4c7ed42013-08-31 13:44:33 +08001727
1728 /* Need space for new headers (invalidates iph ptr) */
1729 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001730 if (unlikely(err)) {
1731 kfree_skb(skb);
1732 goto err;
1733 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001734
Jiri Pirko59682502014-11-19 14:04:59 +01001735 skb = vlan_hwaccel_push_inside(skb);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001736 if (WARN_ON(!skb)) {
1737 err = -ENOMEM;
1738 goto err;
1739 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001740
1741 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001742 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Thomas Graf35114942015-01-15 03:53:55 +01001743 vxh->vx_vni = md->vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001744
Tom Herbertdfd86452015-01-12 17:00:38 -08001745 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1746 u32 data = (skb_checksum_start_offset(skb) - hdrlen) >>
1747 VXLAN_RCO_SHIFT;
1748
1749 if (skb->csum_offset == offsetof(struct udphdr, check))
1750 data |= VXLAN_RCO_UDP;
1751
1752 vxh->vx_vni |= htonl(data);
1753 vxh->vx_flags |= htonl(VXLAN_HF_RCO);
1754
1755 if (!skb_is_gso(skb)) {
1756 skb->ip_summed = CHECKSUM_NONE;
1757 skb->encapsulation = 0;
1758 }
1759 }
1760
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001761 if (vxflags & VXLAN_F_GBP)
1762 vxlan_build_gbp_hdr(vxh, vxflags, md);
Thomas Graf35114942015-01-15 03:53:55 +01001763
Tom Herbert996c9fd2014-09-29 20:22:33 -07001764 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1765
Tom Herbertd998f8e2015-01-20 11:23:04 -08001766 udp_tunnel6_xmit_skb(dst, skb, dev, saddr, daddr, prio,
1767 ttl, src_port, dst_port,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001768 !!(vxflags & VXLAN_F_UDP_ZERO_CSUM6_TX));
Cong Wange4c7ed42013-08-31 13:44:33 +08001769 return 0;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001770err:
1771 dst_release(dst);
1772 return err;
Cong Wange4c7ed42013-08-31 13:44:33 +08001773}
1774#endif
1775
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001776int vxlan_xmit_skb(struct rtable *rt, struct sk_buff *skb,
Pravin B Shelar49560532013-08-19 11:23:17 -07001777 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
Thomas Graf35114942015-01-15 03:53:55 +01001778 __be16 src_port, __be16 dst_port,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001779 struct vxlan_metadata *md, bool xnet, u32 vxflags)
Pravin B Shelar49560532013-08-19 11:23:17 -07001780{
1781 struct vxlanhdr *vxh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001782 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001783 int err;
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001784 bool udp_sum = !!(vxflags & VXLAN_F_UDP_CSUM);
Tom Herbertdfd86452015-01-12 17:00:38 -08001785 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1786 u16 hdrlen = sizeof(struct vxlanhdr);
Pravin B Shelar49560532013-08-19 11:23:17 -07001787
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001788 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001789 skb->ip_summed == CHECKSUM_PARTIAL) {
1790 int csum_start = skb_checksum_start_offset(skb);
1791
1792 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1793 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1794 (skb->csum_offset == offsetof(struct udphdr, check) ||
1795 skb->csum_offset == offsetof(struct tcphdr, check))) {
1796 udp_sum = false;
1797 type |= SKB_GSO_TUNNEL_REMCSUM;
1798 }
1799 }
1800
1801 skb = iptunnel_handle_offloads(skb, udp_sum, type);
Tom Herbert359a0ea2014-06-04 17:20:29 -07001802 if (IS_ERR(skb))
Pravin B Shelar74f47272014-12-23 16:20:36 -08001803 return PTR_ERR(skb);
Pravin B Shelar49560532013-08-19 11:23:17 -07001804
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001805 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001806 + VXLAN_HLEN + sizeof(struct iphdr)
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001807 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001808
1809 /* Need space for new headers (invalidates iph ptr) */
1810 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001811 if (unlikely(err)) {
1812 kfree_skb(skb);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001813 return err;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001814 }
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001815
Jiri Pirko59682502014-11-19 14:04:59 +01001816 skb = vlan_hwaccel_push_inside(skb);
1817 if (WARN_ON(!skb))
1818 return -ENOMEM;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001819
Pravin B Shelar49560532013-08-19 11:23:17 -07001820 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001821 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Thomas Graf35114942015-01-15 03:53:55 +01001822 vxh->vx_vni = md->vni;
Pravin B Shelar49560532013-08-19 11:23:17 -07001823
Tom Herbertdfd86452015-01-12 17:00:38 -08001824 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1825 u32 data = (skb_checksum_start_offset(skb) - hdrlen) >>
1826 VXLAN_RCO_SHIFT;
1827
1828 if (skb->csum_offset == offsetof(struct udphdr, check))
1829 data |= VXLAN_RCO_UDP;
1830
1831 vxh->vx_vni |= htonl(data);
1832 vxh->vx_flags |= htonl(VXLAN_HF_RCO);
1833
1834 if (!skb_is_gso(skb)) {
1835 skb->ip_summed = CHECKSUM_NONE;
1836 skb->encapsulation = 0;
1837 }
1838 }
1839
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001840 if (vxflags & VXLAN_F_GBP)
1841 vxlan_build_gbp_hdr(vxh, vxflags, md);
Thomas Graf35114942015-01-15 03:53:55 +01001842
Tom Herbert996c9fd2014-09-29 20:22:33 -07001843 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1844
Tom Herbertd998f8e2015-01-20 11:23:04 -08001845 return udp_tunnel_xmit_skb(rt, skb, src, dst, tos,
1846 ttl, df, src_port, dst_port, xnet,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001847 !(vxflags & VXLAN_F_UDP_CSUM));
Pravin B Shelar49560532013-08-19 11:23:17 -07001848}
1849EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1850
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001851/* Bypass encapsulation if the destination is local */
1852static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1853 struct vxlan_dev *dst_vxlan)
1854{
Li RongQing8f849852014-01-04 13:57:59 +08001855 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001856 union vxlan_addr loopback;
1857 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001858 struct net_device *dev = skb->dev;
1859 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001860
Li RongQing8f849852014-01-04 13:57:59 +08001861 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1862 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001863 skb->pkt_type = PACKET_HOST;
1864 skb->encapsulation = 0;
1865 skb->dev = dst_vxlan->dev;
1866 __skb_pull(skb, skb_network_offset(skb));
1867
Cong Wange4c7ed42013-08-31 13:44:33 +08001868 if (remote_ip->sa.sa_family == AF_INET) {
1869 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1870 loopback.sa.sa_family = AF_INET;
1871#if IS_ENABLED(CONFIG_IPV6)
1872 } else {
1873 loopback.sin6.sin6_addr = in6addr_loopback;
1874 loopback.sa.sa_family = AF_INET6;
1875#endif
1876 }
1877
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001878 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001879 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001880
1881 u64_stats_update_begin(&tx_stats->syncp);
1882 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001883 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001884 u64_stats_update_end(&tx_stats->syncp);
1885
1886 if (netif_rx(skb) == NET_RX_SUCCESS) {
1887 u64_stats_update_begin(&rx_stats->syncp);
1888 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001889 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001890 u64_stats_update_end(&rx_stats->syncp);
1891 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08001892 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001893 }
1894}
1895
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001896static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1897 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001898{
1899 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001900 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001901 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001902 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001903 union vxlan_addr *dst;
Thomas Graf35114942015-01-15 03:53:55 +01001904 struct vxlan_metadata md;
Cong Wange4c7ed42013-08-31 13:44:33 +08001905 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001906 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001907 __be16 df = 0;
1908 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001909 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001910
stephen hemminger823aa872013-04-27 11:31:57 +00001911 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001912 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001913 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001914
Cong Wange4c7ed42013-08-31 13:44:33 +08001915 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001916 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001917 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001918 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001919 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001920 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001921 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001922 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001923
stephen hemmingerd3428942012-10-01 12:32:35 +00001924 old_iph = ip_hdr(skb);
1925
stephen hemmingerd3428942012-10-01 12:32:35 +00001926 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001927 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001928 ttl = 1;
1929
1930 tos = vxlan->tos;
1931 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001932 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001933
Tom Herbert535fb8d2014-07-01 21:32:49 -07001934 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->port_min,
1935 vxlan->port_max, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00001936
Cong Wange4c7ed42013-08-31 13:44:33 +08001937 if (dst->sa.sa_family == AF_INET) {
1938 memset(&fl4, 0, sizeof(fl4));
1939 fl4.flowi4_oif = rdst->remote_ifindex;
1940 fl4.flowi4_tos = RT_TOS(tos);
1941 fl4.daddr = dst->sin.sin_addr.s_addr;
1942 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001943
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001944 rt = ip_route_output_key(vxlan->net, &fl4);
Cong Wange4c7ed42013-08-31 13:44:33 +08001945 if (IS_ERR(rt)) {
1946 netdev_dbg(dev, "no route to %pI4\n",
1947 &dst->sin.sin_addr.s_addr);
1948 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001949 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001950 }
1951
1952 if (rt->dst.dev == dev) {
1953 netdev_dbg(dev, "circular route to %pI4\n",
1954 &dst->sin.sin_addr.s_addr);
1955 dev->stats.collisions++;
Fan Dufffc15a2013-12-09 10:33:53 +08001956 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001957 }
1958
1959 /* Bypass encapsulation if the destination is local */
1960 if (rt->rt_flags & RTCF_LOCAL &&
1961 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1962 struct vxlan_dev *dst_vxlan;
1963
1964 ip_rt_put(rt);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001965 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
Thomas Grafac5132d2015-01-15 03:53:56 +01001966 dst->sa.sa_family, dst_port,
1967 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08001968 if (!dst_vxlan)
1969 goto tx_error;
1970 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1971 return;
1972 }
1973
1974 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1975 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Thomas Graf35114942015-01-15 03:53:55 +01001976 md.vni = htonl(vni << 8);
1977 md.gbp = skb->mark;
Cong Wange4c7ed42013-08-31 13:44:33 +08001978
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001979 err = vxlan_xmit_skb(rt, skb, fl4.saddr,
1980 dst->sin.sin_addr.s_addr, tos, ttl, df,
1981 src_port, dst_port, &md,
1982 !net_eq(vxlan->net, dev_net(vxlan->dev)),
1983 vxlan->flags);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001984 if (err < 0) {
1985 /* skb is already freed. */
1986 skb = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08001987 goto rt_tx_error;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001988 }
1989
Cong Wange4c7ed42013-08-31 13:44:33 +08001990 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1991#if IS_ENABLED(CONFIG_IPV6)
1992 } else {
1993 struct sock *sk = vxlan->vn_sock->sock->sk;
1994 struct dst_entry *ndst;
1995 struct flowi6 fl6;
1996 u32 flags;
1997
1998 memset(&fl6, 0, sizeof(fl6));
1999 fl6.flowi6_oif = rdst->remote_ifindex;
2000 fl6.daddr = dst->sin6.sin6_addr;
2001 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08002002 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08002003
2004 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
2005 netdev_dbg(dev, "no route to %pI6\n",
2006 &dst->sin6.sin6_addr);
2007 dev->stats.tx_carrier_errors++;
2008 goto tx_error;
2009 }
2010
2011 if (ndst->dev == dev) {
2012 netdev_dbg(dev, "circular route to %pI6\n",
2013 &dst->sin6.sin6_addr);
2014 dst_release(ndst);
2015 dev->stats.collisions++;
2016 goto tx_error;
2017 }
2018
2019 /* Bypass encapsulation if the destination is local */
2020 flags = ((struct rt6_info *)ndst)->rt6i_flags;
2021 if (flags & RTF_LOCAL &&
2022 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2023 struct vxlan_dev *dst_vxlan;
2024
2025 dst_release(ndst);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002026 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
Thomas Grafac5132d2015-01-15 03:53:56 +01002027 dst->sa.sa_family, dst_port,
2028 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002029 if (!dst_vxlan)
2030 goto tx_error;
2031 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
2032 return;
2033 }
2034
2035 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Thomas Graf35114942015-01-15 03:53:55 +01002036 md.vni = htonl(vni << 8);
2037 md.gbp = skb->mark;
Cong Wange4c7ed42013-08-31 13:44:33 +08002038
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002039 err = vxlan6_xmit_skb(ndst, skb, dev, &fl6.saddr, &fl6.daddr,
2040 0, ttl, src_port, dst_port, &md,
2041 !net_eq(vxlan->net, dev_net(vxlan->dev)),
2042 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002043#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002044 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002045
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002046 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002047
2048drop:
2049 dev->stats.tx_dropped++;
2050 goto tx_free;
2051
Pravin B Shelar49560532013-08-19 11:23:17 -07002052rt_tx_error:
2053 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00002054tx_error:
2055 dev->stats.tx_errors++;
2056tx_free:
2057 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002058}
2059
David Stevens66817122013-03-15 04:35:51 +00002060/* Transmit local packets over Vxlan
2061 *
2062 * Outer IP header inherits ECN and DF from inner header.
2063 * Outer UDP destination is the VXLAN assigned port.
2064 * source port is based on hash of flow
2065 */
2066static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2067{
2068 struct vxlan_dev *vxlan = netdev_priv(dev);
2069 struct ethhdr *eth;
2070 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002071 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002072 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00002073
2074 skb_reset_mac_header(skb);
2075 eth = eth_hdr(skb);
2076
Cong Wangf564f452013-08-31 13:44:36 +08002077 if ((vxlan->flags & VXLAN_F_PROXY)) {
2078 if (ntohs(eth->h_proto) == ETH_P_ARP)
2079 return arp_reduce(dev, skb);
2080#if IS_ENABLED(CONFIG_IPV6)
2081 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
Li RongQing91269e32014-10-16 09:17:18 +08002082 pskb_may_pull(skb, sizeof(struct ipv6hdr)
2083 + sizeof(struct nd_msg)) &&
Cong Wangf564f452013-08-31 13:44:36 +08002084 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2085 struct nd_msg *msg;
2086
2087 msg = (struct nd_msg *)skb_transport_header(skb);
2088 if (msg->icmph.icmp6_code == 0 &&
2089 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
2090 return neigh_reduce(dev, skb);
2091 }
Li RongQing7a9f5262014-10-17 14:06:16 +08002092 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002093#endif
2094 }
David Stevens66817122013-03-15 04:35:51 +00002095
2096 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00002097 did_rsc = false;
2098
2099 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002100 (ntohs(eth->h_proto) == ETH_P_IP ||
2101 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002102 did_rsc = route_shortcircuit(dev, skb);
2103 if (did_rsc)
2104 f = vxlan_find_mac(vxlan, eth->h_dest);
2105 }
2106
David Stevens66817122013-03-15 04:35:51 +00002107 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002108 f = vxlan_find_mac(vxlan, all_zeros_mac);
2109 if (f == NULL) {
2110 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2111 !is_multicast_ether_addr(eth->h_dest))
2112 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002113
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002114 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002115 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002116 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002117 }
David Stevens66817122013-03-15 04:35:51 +00002118 }
2119
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002120 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2121 struct sk_buff *skb1;
2122
Eric Dumazet8f646c92014-01-06 09:54:31 -08002123 if (!fdst) {
2124 fdst = rdst;
2125 continue;
2126 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002127 skb1 = skb_clone(skb, GFP_ATOMIC);
2128 if (skb1)
2129 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
2130 }
2131
Eric Dumazet8f646c92014-01-06 09:54:31 -08002132 if (fdst)
2133 vxlan_xmit_one(skb, dev, fdst, did_rsc);
2134 else
2135 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002136 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002137}
2138
stephen hemmingerd3428942012-10-01 12:32:35 +00002139/* Walk the forwarding table and purge stale entries */
2140static void vxlan_cleanup(unsigned long arg)
2141{
2142 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2143 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2144 unsigned int h;
2145
2146 if (!netif_running(vxlan->dev))
2147 return;
2148
2149 spin_lock_bh(&vxlan->hash_lock);
2150 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2151 struct hlist_node *p, *n;
2152 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2153 struct vxlan_fdb *f
2154 = container_of(p, struct vxlan_fdb, hlist);
2155 unsigned long timeout;
2156
stephen hemminger3c172862012-10-26 06:24:34 +00002157 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00002158 continue;
2159
2160 timeout = f->used + vxlan->age_interval * HZ;
2161 if (time_before_eq(timeout, jiffies)) {
2162 netdev_dbg(vxlan->dev,
2163 "garbage collect %pM\n",
2164 f->eth_addr);
2165 f->state = NUD_STALE;
2166 vxlan_fdb_destroy(vxlan, f);
2167 } else if (time_before(timeout, next_timer))
2168 next_timer = timeout;
2169 }
2170 }
2171 spin_unlock_bh(&vxlan->hash_lock);
2172
2173 mod_timer(&vxlan->age_timer, next_timer);
2174}
2175
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002176static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2177{
2178 __u32 vni = vxlan->default_dst.remote_vni;
2179
2180 vxlan->vn_sock = vs;
2181 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
2182}
2183
stephen hemmingerd3428942012-10-01 12:32:35 +00002184/* Setup stats when device is created */
2185static int vxlan_init(struct net_device *dev)
2186{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002187 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002188 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002189 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002190 bool ipv6 = vxlan->flags & VXLAN_F_IPV6;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002191
WANG Cong1c213bd2014-02-13 11:46:28 -08002192 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002193 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002194 return -ENOMEM;
2195
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002196 spin_lock(&vn->sock_lock);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002197 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Thomas Grafac5132d2015-01-15 03:53:56 +01002198 vxlan->dst_port, vxlan->flags);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002199 if (vs && atomic_add_unless(&vs->refcnt, 1, 0)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002200 /* If we have a socket with same port already, reuse it */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002201 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002202 } else {
2203 /* otherwise make new socket outside of RTNL */
2204 dev_hold(dev);
2205 queue_work(vxlan_wq, &vxlan->sock_work);
2206 }
2207 spin_unlock(&vn->sock_lock);
2208
stephen hemmingerd3428942012-10-01 12:32:35 +00002209 return 0;
2210}
2211
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002212static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002213{
2214 struct vxlan_fdb *f;
2215
2216 spin_lock_bh(&vxlan->hash_lock);
2217 f = __vxlan_find_mac(vxlan, all_zeros_mac);
2218 if (f)
2219 vxlan_fdb_destroy(vxlan, f);
2220 spin_unlock_bh(&vxlan->hash_lock);
2221}
2222
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002223static void vxlan_uninit(struct net_device *dev)
2224{
2225 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002226 struct vxlan_sock *vs = vxlan->vn_sock;
2227
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002228 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002229
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002230 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07002231 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002232 free_percpu(dev->tstats);
2233}
2234
stephen hemmingerd3428942012-10-01 12:32:35 +00002235/* Start ageing timer and join group when device is brought up */
2236static int vxlan_open(struct net_device *dev)
2237{
2238 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002239 struct vxlan_sock *vs = vxlan->vn_sock;
2240
2241 /* socket hasn't been created */
2242 if (!vs)
2243 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002244
Gao feng79d4a942013-12-10 16:37:32 +08002245 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002246 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002247 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002248 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00002249 }
2250
2251 if (vxlan->age_interval)
2252 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2253
2254 return 0;
2255}
2256
2257/* Purge the forwarding table */
2258static void vxlan_flush(struct vxlan_dev *vxlan)
2259{
Cong Wang31fec5a2013-05-27 22:35:52 +00002260 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002261
2262 spin_lock_bh(&vxlan->hash_lock);
2263 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2264 struct hlist_node *p, *n;
2265 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2266 struct vxlan_fdb *f
2267 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002268 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2269 if (!is_zero_ether_addr(f->eth_addr))
2270 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002271 }
2272 }
2273 spin_unlock_bh(&vxlan->hash_lock);
2274}
2275
2276/* Cleanup timer and forwarding table on shutdown */
2277static int vxlan_stop(struct net_device *dev)
2278{
2279 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002280 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002281 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00002282
Cong Wange4c7ed42013-08-31 13:44:33 +08002283 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
Gao feng95ab0992013-12-10 16:37:33 +08002284 !vxlan_group_used(vn, vxlan)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002285 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002286 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002287 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002288 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002289
2290 del_timer_sync(&vxlan->age_timer);
2291
2292 vxlan_flush(vxlan);
2293
2294 return 0;
2295}
2296
stephen hemmingerd3428942012-10-01 12:32:35 +00002297/* Stub, nothing needs to be done. */
2298static void vxlan_set_multicast_list(struct net_device *dev)
2299{
2300}
2301
Daniel Borkmann345010b2013-12-18 00:21:08 +01002302static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2303{
2304 struct vxlan_dev *vxlan = netdev_priv(dev);
2305 struct vxlan_rdst *dst = &vxlan->default_dst;
2306 struct net_device *lowerdev;
2307 int max_mtu;
2308
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002309 lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002310 if (lowerdev == NULL)
2311 return eth_change_mtu(dev, new_mtu);
2312
2313 if (dst->remote_ip.sa.sa_family == AF_INET6)
2314 max_mtu = lowerdev->mtu - VXLAN6_HEADROOM;
2315 else
2316 max_mtu = lowerdev->mtu - VXLAN_HEADROOM;
2317
2318 if (new_mtu < 68 || new_mtu > max_mtu)
2319 return -EINVAL;
2320
2321 dev->mtu = new_mtu;
2322 return 0;
2323}
2324
stephen hemmingerd3428942012-10-01 12:32:35 +00002325static const struct net_device_ops vxlan_netdev_ops = {
2326 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002327 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002328 .ndo_open = vxlan_open,
2329 .ndo_stop = vxlan_stop,
2330 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002331 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002332 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002333 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002334 .ndo_validate_addr = eth_validate_addr,
2335 .ndo_set_mac_address = eth_mac_addr,
2336 .ndo_fdb_add = vxlan_fdb_add,
2337 .ndo_fdb_del = vxlan_fdb_delete,
2338 .ndo_fdb_dump = vxlan_fdb_dump,
2339};
2340
2341/* Info for udev, that this is a virtual tunnel endpoint */
2342static struct device_type vxlan_type = {
2343 .name = "vxlan",
2344};
2345
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002346/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002347 * supply the listening VXLAN udp ports. Callers are expected
2348 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002349 */
2350void vxlan_get_rx_port(struct net_device *dev)
2351{
2352 struct vxlan_sock *vs;
2353 struct net *net = dev_net(dev);
2354 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2355 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002356 __be16 port;
2357 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002358
2359 spin_lock(&vn->sock_lock);
2360 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002361 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2362 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002363 sa_family = vs->sock->sk->sk_family;
2364 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2365 port);
2366 }
2367 }
2368 spin_unlock(&vn->sock_lock);
2369}
2370EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2371
stephen hemmingerd3428942012-10-01 12:32:35 +00002372/* Initialize the device structure. */
2373static void vxlan_setup(struct net_device *dev)
2374{
2375 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002376 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002377
2378 eth_hw_addr_random(dev);
2379 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002380 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
Cong Wang2853af62014-06-12 11:53:10 -07002381 dev->needed_headroom = ETH_HLEN + VXLAN6_HEADROOM;
Cong Wange4c7ed42013-08-31 13:44:33 +08002382 else
Cong Wang2853af62014-06-12 11:53:10 -07002383 dev->needed_headroom = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002384
2385 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002386 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002387 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2388
2389 dev->tx_queue_len = 0;
2390 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002391 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002392 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002393 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002394
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002395 dev->vlan_features = dev->features;
2396 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002397 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002398 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002399 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Eric Dumazet02875872014-10-05 18:38:35 -07002400 netif_keep_dst(dev);
stephen hemminger6602d002012-12-31 12:00:21 +00002401 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002402
stephen hemminger553675f2013-05-16 11:35:20 +00002403 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002404 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002405 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2406 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002407 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002408
2409 init_timer_deferrable(&vxlan->age_timer);
2410 vxlan->age_timer.function = vxlan_cleanup;
2411 vxlan->age_timer.data = (unsigned long) vxlan;
2412
stephen hemminger823aa872013-04-27 11:31:57 +00002413 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002414
stephen hemmingerd3428942012-10-01 12:32:35 +00002415 vxlan->dev = dev;
2416
2417 for (h = 0; h < FDB_HASH_SIZE; ++h)
2418 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2419}
2420
2421static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2422 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002423 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002424 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002425 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2426 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002427 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002428 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2429 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2430 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2431 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2432 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002433 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002434 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2435 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2436 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2437 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002438 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002439 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2440 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2441 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002442 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2443 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002444 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002445 [IFLA_VXLAN_REMCSUM_NOPARTIAL] = { .type = NLA_FLAG },
stephen hemmingerd3428942012-10-01 12:32:35 +00002446};
2447
2448static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2449{
2450 if (tb[IFLA_ADDRESS]) {
2451 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2452 pr_debug("invalid link address (not ethernet)\n");
2453 return -EINVAL;
2454 }
2455
2456 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2457 pr_debug("invalid all zero ethernet address\n");
2458 return -EADDRNOTAVAIL;
2459 }
2460 }
2461
2462 if (!data)
2463 return -EINVAL;
2464
2465 if (data[IFLA_VXLAN_ID]) {
2466 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2467 if (id >= VXLAN_VID_MASK)
2468 return -ERANGE;
2469 }
2470
stephen hemminger05f47d62012-10-09 20:35:50 +00002471 if (data[IFLA_VXLAN_PORT_RANGE]) {
2472 const struct ifla_vxlan_port_range *p
2473 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2474
2475 if (ntohs(p->high) < ntohs(p->low)) {
2476 pr_debug("port range %u .. %u not valid\n",
2477 ntohs(p->low), ntohs(p->high));
2478 return -EINVAL;
2479 }
2480 }
2481
stephen hemmingerd3428942012-10-01 12:32:35 +00002482 return 0;
2483}
2484
Yan Burman1b13c972013-01-29 23:43:07 +00002485static void vxlan_get_drvinfo(struct net_device *netdev,
2486 struct ethtool_drvinfo *drvinfo)
2487{
2488 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2489 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2490}
2491
2492static const struct ethtool_ops vxlan_ethtool_ops = {
2493 .get_drvinfo = vxlan_get_drvinfo,
2494 .get_link = ethtool_op_get_link,
2495};
2496
stephen hemminger553675f2013-05-16 11:35:20 +00002497static void vxlan_del_work(struct work_struct *work)
2498{
2499 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002500 udp_tunnel_sock_release(vs->sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002501 kfree_rcu(vs, rcu);
2502}
2503
Tom Herbert3ee64f32014-07-13 19:49:42 -07002504static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2505 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002506{
Cong Wange4c7ed42013-08-31 13:44:33 +08002507 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002508 struct udp_port_cfg udp_conf;
2509 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002510
Tom Herbert3ee64f32014-07-13 19:49:42 -07002511 memset(&udp_conf, 0, sizeof(udp_conf));
2512
2513 if (ipv6) {
2514 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002515 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002516 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Tom Herbert3ee64f32014-07-13 19:49:42 -07002517 } else {
2518 udp_conf.family = AF_INET;
2519 udp_conf.local_ip.s_addr = INADDR_ANY;
Cong Wange4c7ed42013-08-31 13:44:33 +08002520 }
2521
Tom Herbert3ee64f32014-07-13 19:49:42 -07002522 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002523
Tom Herbert3ee64f32014-07-13 19:49:42 -07002524 /* Open UDP socket */
2525 err = udp_sock_create(net, &udp_conf, &sock);
2526 if (err < 0)
2527 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002528
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002529 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002530}
2531
2532/* Create new listen socket if needed */
2533static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002534 vxlan_rcv_t *rcv, void *data,
2535 u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002536{
2537 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2538 struct vxlan_sock *vs;
2539 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002540 unsigned int h;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002541 bool ipv6 = !!(flags & VXLAN_F_IPV6);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002542 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002543
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002544 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002545 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002546 return ERR_PTR(-ENOMEM);
2547
2548 for (h = 0; h < VNI_HASH_SIZE; ++h)
2549 INIT_HLIST_HEAD(&vs->vni_list[h]);
2550
2551 INIT_WORK(&vs->del_work, vxlan_del_work);
2552
Tom Herbert3ee64f32014-07-13 19:49:42 -07002553 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002554 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002555 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002556 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002557 }
2558
Cong Wange4c7ed42013-08-31 13:44:33 +08002559 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002560 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002561 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002562 vs->data = data;
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002563 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00002564
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002565 /* Initialize the vxlan udp offloads structure */
2566 vs->udp_offloads.port = port;
2567 vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive;
2568 vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete;
2569
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002570 spin_lock(&vn->sock_lock);
2571 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002572 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002573 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002574
2575 /* Mark socket as an encapsulation socket. */
Andy Zhouacbf74a2014-09-16 17:31:18 -07002576 tunnel_cfg.sk_user_data = vs;
2577 tunnel_cfg.encap_type = 1;
2578 tunnel_cfg.encap_rcv = vxlan_udp_encap_recv;
2579 tunnel_cfg.encap_destroy = NULL;
2580
2581 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002582
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002583 return vs;
2584}
stephen hemminger553675f2013-05-16 11:35:20 +00002585
Pravin B Shelar012a5722013-08-19 11:23:07 -07002586struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2587 vxlan_rcv_t *rcv, void *data,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002588 bool no_share, u32 flags)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002589{
2590 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2591 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002592 bool ipv6 = flags & VXLAN_F_IPV6;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002593
Tom Herbert359a0ea2014-06-04 17:20:29 -07002594 vs = vxlan_socket_create(net, port, rcv, data, flags);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002595 if (!IS_ERR(vs))
2596 return vs;
2597
Pravin B Shelar012a5722013-08-19 11:23:07 -07002598 if (no_share) /* Return error if sharing is not allowed. */
2599 return vs;
2600
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002601 spin_lock(&vn->sock_lock);
Thomas Grafac5132d2015-01-15 03:53:56 +01002602 vs = vxlan_find_sock(net, ipv6 ? AF_INET6 : AF_INET, port, flags);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002603 if (vs && ((vs->rcv != rcv) ||
2604 !atomic_add_unless(&vs->refcnt, 1, 0)))
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002605 vs = ERR_PTR(-EBUSY);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002606 spin_unlock(&vn->sock_lock);
2607
2608 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002609 vs = ERR_PTR(-EINVAL);
2610
stephen hemminger553675f2013-05-16 11:35:20 +00002611 return vs;
2612}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002613EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002614
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002615/* Scheduled at device creation to bind to a socket */
2616static void vxlan_sock_work(struct work_struct *work)
2617{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002618 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002619 struct net *net = vxlan->net;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002620 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002621 __be16 port = vxlan->dst_port;
2622 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002623
Tom Herbert359a0ea2014-06-04 17:20:29 -07002624 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002625 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002626 if (!IS_ERR(nvs))
2627 vxlan_vs_add_dev(nvs, vxlan);
2628 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002629
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002630 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002631}
2632
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002633static int vxlan_newlink(struct net *src_net, struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +00002634 struct nlattr *tb[], struct nlattr *data[])
2635{
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002636 struct vxlan_net *vn = net_generic(src_net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002637 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002638 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002639 __u32 vni;
2640 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002641 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002642
2643 if (!data[IFLA_VXLAN_ID])
2644 return -EINVAL;
2645
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002646 vxlan->net = src_net;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002647
stephen hemmingerd3428942012-10-01 12:32:35 +00002648 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002649 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002650
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002651 /* Unless IPv6 is explicitly requested, assume IPv4 */
2652 dst->remote_ip.sa.sa_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002653 if (data[IFLA_VXLAN_GROUP]) {
2654 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
Cong Wange4c7ed42013-08-31 13:44:33 +08002655 } else if (data[IFLA_VXLAN_GROUP6]) {
2656 if (!IS_ENABLED(CONFIG_IPV6))
2657 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002658
Cong Wange4c7ed42013-08-31 13:44:33 +08002659 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2660 sizeof(struct in6_addr));
2661 dst->remote_ip.sa.sa_family = AF_INET6;
2662 use_ipv6 = true;
2663 }
2664
2665 if (data[IFLA_VXLAN_LOCAL]) {
2666 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2667 vxlan->saddr.sa.sa_family = AF_INET;
2668 } else if (data[IFLA_VXLAN_LOCAL6]) {
2669 if (!IS_ENABLED(CONFIG_IPV6))
2670 return -EPFNOSUPPORT;
2671
2672 /* TODO: respect scope id */
2673 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2674 sizeof(struct in6_addr));
2675 vxlan->saddr.sa.sa_family = AF_INET6;
2676 use_ipv6 = true;
2677 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002678
stephen hemminger34e02aa2012-10-09 20:35:53 +00002679 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002680 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002681 struct net_device *lowerdev
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002682 = __dev_get_by_index(src_net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002683
stephen hemminger34e02aa2012-10-09 20:35:53 +00002684 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002685 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002686 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002687 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002688
Cong Wange4c7ed42013-08-31 13:44:33 +08002689#if IS_ENABLED(CONFIG_IPV6)
2690 if (use_ipv6) {
2691 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2692 if (idev && idev->cnf.disable_ipv6) {
2693 pr_info("IPv6 is disabled via sysctl\n");
2694 return -EPERM;
2695 }
2696 vxlan->flags |= VXLAN_F_IPV6;
2697 }
2698#endif
2699
stephen hemminger34e02aa2012-10-09 20:35:53 +00002700 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002701 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002702
Cong Wang2853af62014-06-12 11:53:10 -07002703 dev->needed_headroom = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002704 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
fan.du7bda7012014-01-03 10:18:58 +08002705 } else if (use_ipv6)
2706 vxlan->flags |= VXLAN_F_IPV6;
stephen hemmingerd3428942012-10-01 12:32:35 +00002707
2708 if (data[IFLA_VXLAN_TOS])
2709 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2710
Vincent Bernatafb97182012-10-30 10:27:16 +00002711 if (data[IFLA_VXLAN_TTL])
2712 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2713
stephen hemmingerd3428942012-10-01 12:32:35 +00002714 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002715 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002716
2717 if (data[IFLA_VXLAN_AGEING])
2718 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2719 else
2720 vxlan->age_interval = FDB_AGE_DEFAULT;
2721
David Stevense4f67ad2012-11-20 02:50:14 +00002722 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2723 vxlan->flags |= VXLAN_F_PROXY;
2724
2725 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2726 vxlan->flags |= VXLAN_F_RSC;
2727
2728 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2729 vxlan->flags |= VXLAN_F_L2MISS;
2730
2731 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2732 vxlan->flags |= VXLAN_F_L3MISS;
2733
stephen hemmingerd3428942012-10-01 12:32:35 +00002734 if (data[IFLA_VXLAN_LIMIT])
2735 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2736
stephen hemminger05f47d62012-10-09 20:35:50 +00002737 if (data[IFLA_VXLAN_PORT_RANGE]) {
2738 const struct ifla_vxlan_port_range *p
2739 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2740 vxlan->port_min = ntohs(p->low);
2741 vxlan->port_max = ntohs(p->high);
2742 }
2743
stephen hemminger823aa872013-04-27 11:31:57 +00002744 if (data[IFLA_VXLAN_PORT])
2745 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2746
Tom Herbert359a0ea2014-06-04 17:20:29 -07002747 if (data[IFLA_VXLAN_UDP_CSUM] && nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
2748 vxlan->flags |= VXLAN_F_UDP_CSUM;
2749
2750 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX] &&
2751 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
2752 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
2753
2754 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX] &&
2755 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
2756 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
2757
Tom Herbertdfd86452015-01-12 17:00:38 -08002758 if (data[IFLA_VXLAN_REMCSUM_TX] &&
2759 nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
2760 vxlan->flags |= VXLAN_F_REMCSUM_TX;
2761
2762 if (data[IFLA_VXLAN_REMCSUM_RX] &&
2763 nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
2764 vxlan->flags |= VXLAN_F_REMCSUM_RX;
2765
Thomas Graf35114942015-01-15 03:53:55 +01002766 if (data[IFLA_VXLAN_GBP])
2767 vxlan->flags |= VXLAN_F_GBP;
2768
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002769 if (data[IFLA_VXLAN_REMCSUM_NOPARTIAL])
2770 vxlan->flags |= VXLAN_F_REMCSUM_NOPARTIAL;
2771
Nicolas Dichtel33564bb2015-01-26 22:28:14 +01002772 if (vxlan_find_vni(src_net, vni, use_ipv6 ? AF_INET6 : AF_INET,
Thomas Grafac5132d2015-01-15 03:53:56 +01002773 vxlan->dst_port, vxlan->flags)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002774 pr_info("duplicate VNI %u\n", vni);
2775 return -EEXIST;
2776 }
2777
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002778 dev->ethtool_ops = &vxlan_ethtool_ops;
Yan Burman1b13c972013-01-29 23:43:07 +00002779
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002780 /* create an fdb entry for a valid default destination */
2781 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2782 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2783 &vxlan->default_dst.remote_ip,
2784 NUD_REACHABLE|NUD_PERMANENT,
2785 NLM_F_EXCL|NLM_F_CREATE,
2786 vxlan->dst_port,
2787 vxlan->default_dst.remote_vni,
2788 vxlan->default_dst.remote_ifindex,
2789 NTF_SELF);
2790 if (err)
2791 return err;
2792 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002793
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002794 err = register_netdevice(dev);
2795 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002796 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002797 return err;
2798 }
2799
stephen hemminger553675f2013-05-16 11:35:20 +00002800 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002801
2802 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002803}
2804
2805static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2806{
2807 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002808 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002809
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002810 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002811 if (!hlist_unhashed(&vxlan->hlist))
2812 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002813 spin_unlock(&vn->sock_lock);
2814
stephen hemminger553675f2013-05-16 11:35:20 +00002815 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002816 unregister_netdevice_queue(dev, head);
2817}
2818
2819static size_t vxlan_get_size(const struct net_device *dev)
2820{
2821
2822 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002823 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002824 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002825 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002826 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2827 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2828 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002829 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2830 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2831 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2832 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002833 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2834 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002835 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07002836 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
2837 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
2838 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
2839 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08002840 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
2841 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00002842 0;
2843}
2844
2845static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2846{
2847 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002848 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002849 struct ifla_vxlan_port_range ports = {
2850 .low = htons(vxlan->port_min),
2851 .high = htons(vxlan->port_max),
2852 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002853
Atzm Watanabec7995c42013-04-16 02:50:52 +00002854 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002855 goto nla_put_failure;
2856
Cong Wange4c7ed42013-08-31 13:44:33 +08002857 if (!vxlan_addr_any(&dst->remote_ip)) {
2858 if (dst->remote_ip.sa.sa_family == AF_INET) {
2859 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2860 dst->remote_ip.sin.sin_addr.s_addr))
2861 goto nla_put_failure;
2862#if IS_ENABLED(CONFIG_IPV6)
2863 } else {
2864 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2865 &dst->remote_ip.sin6.sin6_addr))
2866 goto nla_put_failure;
2867#endif
2868 }
2869 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002870
Atzm Watanabec7995c42013-04-16 02:50:52 +00002871 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002872 goto nla_put_failure;
2873
Cong Wange4c7ed42013-08-31 13:44:33 +08002874 if (!vxlan_addr_any(&vxlan->saddr)) {
2875 if (vxlan->saddr.sa.sa_family == AF_INET) {
2876 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2877 vxlan->saddr.sin.sin_addr.s_addr))
2878 goto nla_put_failure;
2879#if IS_ENABLED(CONFIG_IPV6)
2880 } else {
2881 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2882 &vxlan->saddr.sin6.sin6_addr))
2883 goto nla_put_failure;
2884#endif
2885 }
2886 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002887
2888 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2889 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002890 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2891 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2892 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2893 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2894 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2895 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2896 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2897 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2898 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002899 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002900 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07002901 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port) ||
2902 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
2903 !!(vxlan->flags & VXLAN_F_UDP_CSUM)) ||
2904 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
2905 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
2906 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Tom Herbertdfd86452015-01-12 17:00:38 -08002907 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
2908 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
2909 !!(vxlan->flags & VXLAN_F_REMCSUM_TX)) ||
2910 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
2911 !!(vxlan->flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00002912 goto nla_put_failure;
2913
stephen hemminger05f47d62012-10-09 20:35:50 +00002914 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2915 goto nla_put_failure;
2916
Thomas Graf35114942015-01-15 03:53:55 +01002917 if (vxlan->flags & VXLAN_F_GBP &&
2918 nla_put_flag(skb, IFLA_VXLAN_GBP))
2919 goto nla_put_failure;
2920
Tom Herbert0ace2ca2015-02-10 16:30:32 -08002921 if (vxlan->flags & VXLAN_F_REMCSUM_NOPARTIAL &&
2922 nla_put_flag(skb, IFLA_VXLAN_REMCSUM_NOPARTIAL))
2923 goto nla_put_failure;
2924
stephen hemmingerd3428942012-10-01 12:32:35 +00002925 return 0;
2926
2927nla_put_failure:
2928 return -EMSGSIZE;
2929}
2930
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002931static struct net *vxlan_get_link_net(const struct net_device *dev)
2932{
2933 struct vxlan_dev *vxlan = netdev_priv(dev);
2934
2935 return vxlan->net;
2936}
2937
stephen hemmingerd3428942012-10-01 12:32:35 +00002938static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2939 .kind = "vxlan",
2940 .maxtype = IFLA_VXLAN_MAX,
2941 .policy = vxlan_policy,
2942 .priv_size = sizeof(struct vxlan_dev),
2943 .setup = vxlan_setup,
2944 .validate = vxlan_validate,
2945 .newlink = vxlan_newlink,
2946 .dellink = vxlan_dellink,
2947 .get_size = vxlan_get_size,
2948 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002949 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00002950};
2951
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002952static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
2953 struct net_device *dev)
2954{
2955 struct vxlan_dev *vxlan, *next;
2956 LIST_HEAD(list_kill);
2957
2958 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2959 struct vxlan_rdst *dst = &vxlan->default_dst;
2960
2961 /* In case we created vxlan device with carrier
2962 * and we loose the carrier due to module unload
2963 * we also need to remove vxlan device. In other
2964 * cases, it's not necessary and remote_ifindex
2965 * is 0 here, so no matches.
2966 */
2967 if (dst->remote_ifindex == dev->ifindex)
2968 vxlan_dellink(vxlan->dev, &list_kill);
2969 }
2970
2971 unregister_netdevice_many(&list_kill);
2972}
2973
2974static int vxlan_lowerdev_event(struct notifier_block *unused,
2975 unsigned long event, void *ptr)
2976{
2977 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002978 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002979
Daniel Borkmann783c1462014-01-22 21:07:53 +01002980 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002981 vxlan_handle_lowerdev_unregister(vn, dev);
2982
2983 return NOTIFY_DONE;
2984}
2985
2986static struct notifier_block vxlan_notifier_block __read_mostly = {
2987 .notifier_call = vxlan_lowerdev_event,
2988};
2989
stephen hemmingerd3428942012-10-01 12:32:35 +00002990static __net_init int vxlan_init_net(struct net *net)
2991{
2992 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002993 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002994
stephen hemminger553675f2013-05-16 11:35:20 +00002995 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002996 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002997
stephen hemminger553675f2013-05-16 11:35:20 +00002998 for (h = 0; h < PORT_HASH_SIZE; ++h)
2999 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00003000
3001 return 0;
3002}
3003
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003004static void __net_exit vxlan_exit_net(struct net *net)
3005{
3006 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3007 struct vxlan_dev *vxlan, *next;
3008 struct net_device *dev, *aux;
3009 LIST_HEAD(list);
3010
3011 rtnl_lock();
3012 for_each_netdev_safe(net, dev, aux)
3013 if (dev->rtnl_link_ops == &vxlan_link_ops)
3014 unregister_netdevice_queue(dev, &list);
3015
3016 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3017 /* If vxlan->dev is in the same netns, it has already been added
3018 * to the list by the previous loop.
3019 */
3020 if (!net_eq(dev_net(vxlan->dev), net))
3021 unregister_netdevice_queue(dev, &list);
3022 }
3023
3024 unregister_netdevice_many(&list);
3025 rtnl_unlock();
3026}
3027
stephen hemmingerd3428942012-10-01 12:32:35 +00003028static struct pernet_operations vxlan_net_ops = {
3029 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003030 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003031 .id = &vxlan_net_id,
3032 .size = sizeof(struct vxlan_net),
3033};
3034
3035static int __init vxlan_init_module(void)
3036{
3037 int rc;
3038
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003039 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
3040 if (!vxlan_wq)
3041 return -ENOMEM;
3042
stephen hemmingerd3428942012-10-01 12:32:35 +00003043 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3044
Daniel Borkmann783c1462014-01-22 21:07:53 +01003045 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003046 if (rc)
3047 goto out1;
3048
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003049 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003050 if (rc)
3051 goto out2;
3052
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003053 rc = rtnl_link_register(&vxlan_link_ops);
3054 if (rc)
3055 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003056
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003057 return 0;
3058out3:
3059 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003060out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003061 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003062out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003063 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00003064 return rc;
3065}
Cong Wang7332a132013-05-27 22:35:53 +00003066late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003067
3068static void __exit vxlan_cleanup_module(void)
3069{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003070 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003071 unregister_netdevice_notifier(&vxlan_notifier_block);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003072 destroy_workqueue(vxlan_wq);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003073 unregister_pernet_subsys(&vxlan_net_ops);
3074 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003075}
3076module_exit(vxlan_cleanup_module);
3077
3078MODULE_LICENSE("GPL");
3079MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003080MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003081MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003082MODULE_ALIAS_RTNL_LINK("vxlan");