blob: 87736e65cd158d239f64c917cf102ba9d8dcba0b [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) &&
344 nla_put_s32(skb, NDA_NDM_IFINDEX_NETNSID,
345 peernet2id(vxlan->net, dev_net(vxlan->dev))))
346 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 */
stephen hemmingerd3428942012-10-01 12:32:35 +0000388 + nla_total_size(sizeof(struct nda_cacheinfo));
389}
390
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200391static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
392 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000393{
394 struct net *net = dev_net(vxlan->dev);
395 struct sk_buff *skb;
396 int err = -ENOBUFS;
397
398 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
399 if (skb == NULL)
400 goto errout;
401
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200402 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000403 if (err < 0) {
404 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
405 WARN_ON(err == -EMSGSIZE);
406 kfree_skb(skb);
407 goto errout;
408 }
409
410 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
411 return;
412errout:
413 if (err < 0)
414 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
415}
416
Cong Wange4c7ed42013-08-31 13:44:33 +0800417static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000418{
419 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700420 struct vxlan_fdb f = {
421 .state = NUD_STALE,
422 };
423 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800424 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700425 .remote_vni = VXLAN_N_VID,
426 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700427
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200428 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000429}
430
431static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
432{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700433 struct vxlan_fdb f = {
434 .state = NUD_STALE,
435 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200436 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000437
David Stevense4f67ad2012-11-20 02:50:14 +0000438 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
439
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200440 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000441}
442
stephen hemmingerd3428942012-10-01 12:32:35 +0000443/* Hash Ethernet address */
444static u32 eth_hash(const unsigned char *addr)
445{
446 u64 value = get_unaligned((u64 *)addr);
447
448 /* only want 6 bytes */
449#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000450 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000451#else
452 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000453#endif
454 return hash_64(value, FDB_HASH_BITS);
455}
456
457/* Hash chain to use given mac address */
458static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
459 const u8 *mac)
460{
461 return &vxlan->fdb_head[eth_hash(mac)];
462}
463
464/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000465static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000466 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000467{
468 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
469 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000470
Sasha Levinb67bfe02013-02-27 17:06:00 -0800471 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700472 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000473 return f;
474 }
475
476 return NULL;
477}
478
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000479static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
480 const u8 *mac)
481{
482 struct vxlan_fdb *f;
483
484 f = __vxlan_find_mac(vxlan, mac);
485 if (f)
486 f->used = jiffies;
487
488 return f;
489}
490
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300491/* caller should hold vxlan->hash_lock */
492static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800493 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300494 __u32 vni, __u32 ifindex)
495{
496 struct vxlan_rdst *rd;
497
498 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800499 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300500 rd->remote_port == port &&
501 rd->remote_vni == vni &&
502 rd->remote_ifindex == ifindex)
503 return rd;
504 }
505
506 return NULL;
507}
508
Thomas Richter906dc182013-07-19 17:20:07 +0200509/* Replace destination of unicast mac */
510static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800511 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200512{
513 struct vxlan_rdst *rd;
514
515 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
516 if (rd)
517 return 0;
518
519 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
520 if (!rd)
521 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800522 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200523 rd->remote_port = port;
524 rd->remote_vni = vni;
525 rd->remote_ifindex = ifindex;
526 return 1;
527}
528
David Stevens66817122013-03-15 04:35:51 +0000529/* Add/update destinations for multicast */
530static int vxlan_fdb_append(struct vxlan_fdb *f,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200531 union vxlan_addr *ip, __be16 port, __u32 vni,
532 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000533{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700534 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000535
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300536 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
537 if (rd)
538 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700539
David Stevens66817122013-03-15 04:35:51 +0000540 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
541 if (rd == NULL)
542 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800543 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000544 rd->remote_port = port;
545 rd->remote_vni = vni;
546 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700547
548 list_add_tail_rcu(&rd->list, &f->remotes);
549
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200550 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000551 return 1;
552}
553
Tom Herbertdfd86452015-01-12 17:00:38 -0800554static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
555 unsigned int off,
556 struct vxlanhdr *vh, size_t hdrlen,
557 u32 data)
558{
559 size_t start, offset, plen;
560 __wsum delta;
561
562 if (skb->remcsum_offload)
563 return vh;
564
565 if (!NAPI_GRO_CB(skb)->csum_valid)
566 return NULL;
567
568 start = (data & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
569 offset = start + ((data & VXLAN_RCO_UDP) ?
570 offsetof(struct udphdr, check) :
571 offsetof(struct tcphdr, check));
572
573 plen = hdrlen + offset + sizeof(u16);
574
575 /* Pull checksum that will be written */
576 if (skb_gro_header_hard(skb, off + plen)) {
577 vh = skb_gro_header_slow(skb, off + plen, off);
578 if (!vh)
579 return NULL;
580 }
581
582 delta = remcsum_adjust((void *)vh + hdrlen,
583 NAPI_GRO_CB(skb)->csum, start, offset);
584
585 /* Adjust skb->csum since we changed the packet */
586 skb->csum = csum_add(skb->csum, delta);
587 NAPI_GRO_CB(skb)->csum = csum_add(NAPI_GRO_CB(skb)->csum, delta);
588
589 skb->remcsum_offload = 1;
590
591 return vh;
592}
593
Tom Herberta2b12f32015-01-12 17:00:37 -0800594static struct sk_buff **vxlan_gro_receive(struct sk_buff **head,
595 struct sk_buff *skb,
596 struct udp_offload *uoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200597{
598 struct sk_buff *p, **pp = NULL;
599 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800600 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200601 int flush = 1;
Tom Herbertdfd86452015-01-12 17:00:38 -0800602 struct vxlan_sock *vs = container_of(uoff, struct vxlan_sock,
603 udp_offloads);
604 u32 flags;
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),
622 ntohl(vh->vx_vni));
623
624 if (!vh)
625 goto out;
626 }
627
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200628 flush = 0;
629
630 for (p = *head; p; p = p->next) {
631 if (!NAPI_GRO_CB(p)->same_flow)
632 continue;
633
634 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100635 if (vh->vx_flags != vh2->vx_flags ||
636 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200637 NAPI_GRO_CB(p)->same_flow = 0;
638 continue;
639 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200640 }
641
Jesse Gross9b174d82014-12-30 19:10:15 -0800642 pp = eth_gro_receive(head, skb);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200643
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200644out:
645 NAPI_GRO_CB(skb)->flush |= flush;
646
647 return pp;
648}
649
Tom Herberta2b12f32015-01-12 17:00:37 -0800650static int vxlan_gro_complete(struct sk_buff *skb, int nhoff,
651 struct udp_offload *uoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200652{
Jesse Grosscfdf1e12014-11-10 11:45:13 -0800653 udp_tunnel_gro_complete(skb, nhoff);
654
Jesse Gross9b174d82014-12-30 19:10:15 -0800655 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200656}
657
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700658/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200659static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700660{
661 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200662 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700663 struct net *net = sock_net(sk);
664 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700665 __be16 port = inet_sk(sk)->inet_sport;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200666 int err;
667
668 if (sa_family == AF_INET) {
669 err = udp_add_offload(&vs->udp_offloads);
670 if (err)
671 pr_warn("vxlan: udp_add_offload failed with status %d\n", err);
672 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700673
674 rcu_read_lock();
675 for_each_netdev_rcu(net, dev) {
676 if (dev->netdev_ops->ndo_add_vxlan_port)
677 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
678 port);
679 }
680 rcu_read_unlock();
681}
682
683/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200684static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700685{
686 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200687 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700688 struct net *net = sock_net(sk);
689 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700690 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700691
692 rcu_read_lock();
693 for_each_netdev_rcu(net, dev) {
694 if (dev->netdev_ops->ndo_del_vxlan_port)
695 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
696 port);
697 }
698 rcu_read_unlock();
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200699
700 if (sa_family == AF_INET)
701 udp_del_offload(&vs->udp_offloads);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700702}
703
stephen hemmingerd3428942012-10-01 12:32:35 +0000704/* Add new entry to forwarding table -- assumes lock held */
705static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800706 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000707 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000708 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000709 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000710{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200711 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000712 struct vxlan_fdb *f;
713 int notify = 0;
714
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000715 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000716 if (f) {
717 if (flags & NLM_F_EXCL) {
718 netdev_dbg(vxlan->dev,
719 "lost race to create %pM\n", mac);
720 return -EEXIST;
721 }
722 if (f->state != state) {
723 f->state = state;
724 f->updated = jiffies;
725 notify = 1;
726 }
David Stevensae884082013-04-19 00:36:26 +0000727 if (f->flags != ndm_flags) {
728 f->flags = ndm_flags;
729 f->updated = jiffies;
730 notify = 1;
731 }
Thomas Richter906dc182013-07-19 17:20:07 +0200732 if ((flags & NLM_F_REPLACE)) {
733 /* Only change unicasts */
734 if (!(is_multicast_ether_addr(f->eth_addr) ||
735 is_zero_ether_addr(f->eth_addr))) {
736 int rc = vxlan_fdb_replace(f, ip, port, vni,
737 ifindex);
738
739 if (rc < 0)
740 return rc;
741 notify |= rc;
742 } else
743 return -EOPNOTSUPP;
744 }
David Stevens66817122013-03-15 04:35:51 +0000745 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300746 (is_multicast_ether_addr(f->eth_addr) ||
747 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200748 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
749 &rd);
David Stevens66817122013-03-15 04:35:51 +0000750
751 if (rc < 0)
752 return rc;
753 notify |= rc;
754 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000755 } else {
756 if (!(flags & NLM_F_CREATE))
757 return -ENOENT;
758
759 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
760 return -ENOSPC;
761
Thomas Richter906dc182013-07-19 17:20:07 +0200762 /* Disallow replace to add a multicast entry */
763 if ((flags & NLM_F_REPLACE) &&
764 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
765 return -EOPNOTSUPP;
766
Cong Wange4c7ed42013-08-31 13:44:33 +0800767 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000768 f = kmalloc(sizeof(*f), GFP_ATOMIC);
769 if (!f)
770 return -ENOMEM;
771
772 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000773 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000774 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000775 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700776 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000777 memcpy(f->eth_addr, mac, ETH_ALEN);
778
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200779 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700780
stephen hemmingerd3428942012-10-01 12:32:35 +0000781 ++vxlan->addrcnt;
782 hlist_add_head_rcu(&f->hlist,
783 vxlan_fdb_head(vxlan, mac));
784 }
785
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200786 if (notify) {
787 if (rd == NULL)
788 rd = first_remote_rtnl(f);
789 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
790 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000791
792 return 0;
793}
794
Wei Yongjun6706c822013-04-11 19:00:35 +0000795static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000796{
797 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700798 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000799
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700800 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000801 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000802 kfree(f);
803}
804
stephen hemmingerd3428942012-10-01 12:32:35 +0000805static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
806{
807 netdev_dbg(vxlan->dev,
808 "delete %pM\n", f->eth_addr);
809
810 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200811 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000812
813 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000814 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000815}
816
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300817static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800818 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300819{
820 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800821 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300822
823 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800824 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
825 if (err)
826 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300827 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800828 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
829 if (remote->sa.sa_family == AF_INET) {
830 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
831 ip->sa.sa_family = AF_INET;
832#if IS_ENABLED(CONFIG_IPV6)
833 } else {
834 ip->sin6.sin6_addr = in6addr_any;
835 ip->sa.sa_family = AF_INET6;
836#endif
837 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300838 }
839
840 if (tb[NDA_PORT]) {
841 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
842 return -EINVAL;
843 *port = nla_get_be16(tb[NDA_PORT]);
844 } else {
845 *port = vxlan->dst_port;
846 }
847
848 if (tb[NDA_VNI]) {
849 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
850 return -EINVAL;
851 *vni = nla_get_u32(tb[NDA_VNI]);
852 } else {
853 *vni = vxlan->default_dst.remote_vni;
854 }
855
856 if (tb[NDA_IFINDEX]) {
857 struct net_device *tdev;
858
859 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
860 return -EINVAL;
861 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800862 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300863 if (!tdev)
864 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300865 } else {
866 *ifindex = 0;
867 }
868
869 return 0;
870}
871
stephen hemmingerd3428942012-10-01 12:32:35 +0000872/* Add static entry (via netlink) */
873static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
874 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100875 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000876{
877 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300878 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800879 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000880 __be16 port;
881 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000882 int err;
883
884 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
885 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
886 ndm->ndm_state);
887 return -EINVAL;
888 }
889
890 if (tb[NDA_DST] == NULL)
891 return -EINVAL;
892
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300893 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
894 if (err)
895 return err;
David Stevens66817122013-03-15 04:35:51 +0000896
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300897 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
898 return -EAFNOSUPPORT;
899
stephen hemmingerd3428942012-10-01 12:32:35 +0000900 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800901 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000902 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000903 spin_unlock_bh(&vxlan->hash_lock);
904
905 return err;
906}
907
908/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000909static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
910 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100911 const unsigned char *addr, u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000912{
913 struct vxlan_dev *vxlan = netdev_priv(dev);
914 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300915 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800916 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300917 __be16 port;
918 u32 vni, ifindex;
919 int err;
920
921 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
922 if (err)
923 return err;
924
925 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000926
927 spin_lock_bh(&vxlan->hash_lock);
928 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300929 if (!f)
930 goto out;
931
Cong Wange4c7ed42013-08-31 13:44:33 +0800932 if (!vxlan_addr_any(&ip)) {
933 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300934 if (!rd)
935 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000936 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300937
938 err = 0;
939
940 /* remove a destination if it's not the only one on the list,
941 * otherwise destroy the fdb entry
942 */
943 if (rd && !list_is_singular(&f->remotes)) {
944 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200945 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800946 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300947 goto out;
948 }
949
950 vxlan_fdb_destroy(vxlan, f);
951
952out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000953 spin_unlock_bh(&vxlan->hash_lock);
954
955 return err;
956}
957
958/* Dump forwarding table */
959static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400960 struct net_device *dev,
961 struct net_device *filter_dev, int idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000962{
963 struct vxlan_dev *vxlan = netdev_priv(dev);
964 unsigned int h;
965
966 for (h = 0; h < FDB_HASH_SIZE; ++h) {
967 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000968 int err;
969
Sasha Levinb67bfe02013-02-27 17:06:00 -0800970 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000971 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000972
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700973 if (idx < cb->args[0])
974 goto skip;
975
976 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000977 err = vxlan_fdb_info(skb, vxlan, f,
978 NETLINK_CB(cb->skb).portid,
979 cb->nlh->nlmsg_seq,
980 RTM_NEWNEIGH,
981 NLM_F_MULTI, rd);
982 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700983 goto out;
David Stevens66817122013-03-15 04:35:51 +0000984 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700985skip:
986 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000987 }
988 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700989out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000990 return idx;
991}
992
993/* Watch incoming packets to learn mapping between Ethernet address
994 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700995 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000996 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700997static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800998 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000999{
1000 struct vxlan_dev *vxlan = netdev_priv(dev);
1001 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +00001002
1003 f = vxlan_find_mac(vxlan, src_mac);
1004 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -07001005 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001006
Cong Wange4c7ed42013-08-31 13:44:33 +08001007 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001008 return false;
1009
1010 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -07001011 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -07001012 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +00001013
1014 if (net_ratelimit())
1015 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +08001016 "%pM migrated from %pIS to %pIS\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001017 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +00001018
Cong Wange4c7ed42013-08-31 13:44:33 +08001019 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001020 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +02001021 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +00001022 } else {
1023 /* learned new entry */
1024 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001025
1026 /* close off race between vxlan_flush and incoming packets */
1027 if (netif_running(dev))
1028 vxlan_fdb_create(vxlan, src_mac, src_ip,
1029 NUD_REACHABLE,
1030 NLM_F_EXCL|NLM_F_CREATE,
1031 vxlan->dst_port,
1032 vxlan->default_dst.remote_vni,
1033 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +00001034 spin_unlock(&vxlan->hash_lock);
1035 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001036
1037 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001038}
1039
stephen hemmingerd3428942012-10-01 12:32:35 +00001040/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001041static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001042{
stephen hemminger553675f2013-05-16 11:35:20 +00001043 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +00001044
Gao feng95ab0992013-12-10 16:37:33 +08001045 /* The vxlan_sock is only used by dev, leaving group has
1046 * no effect on other vxlan devices.
1047 */
1048 if (atomic_read(&dev->vn_sock->refcnt) == 1)
1049 return false;
1050
stephen hemminger553675f2013-05-16 11:35:20 +00001051 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001052 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001053 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001054
Gao feng95ab0992013-12-10 16:37:33 +08001055 if (vxlan->vn_sock != dev->vn_sock)
1056 continue;
1057
1058 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1059 &dev->default_dst.remote_ip))
1060 continue;
1061
1062 if (vxlan->default_dst.remote_ifindex !=
1063 dev->default_dst.remote_ifindex)
1064 continue;
1065
1066 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001067 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001068
1069 return false;
1070}
1071
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001072static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001073{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001074 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001075}
1076
Pravin B Shelar012a5722013-08-19 11:23:07 -07001077void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001078{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07001079 struct sock *sk = vs->sock->sk;
1080 struct net *net = sock_net(sk);
1081 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -07001082
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001083 if (!atomic_dec_and_test(&vs->refcnt))
1084 return;
1085
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001086 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001087 hlist_del_rcu(&vs->hlist);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001088 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001089 spin_unlock(&vn->sock_lock);
1090
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001091 queue_work(vxlan_wq, &vs->del_work);
1092}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001093EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001094
stephen hemminger3fc2de22013-07-18 08:40:15 -07001095/* Callback to update multicast group membership when first VNI on
1096 * multicast asddress is brought up
1097 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001098 */
stephen hemminger3fc2de22013-07-18 08:40:15 -07001099static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001100{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001101 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001102 struct vxlan_sock *vs = vxlan->vn_sock;
1103 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001104 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1105 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001106
stephen hemmingerd3428942012-10-01 12:32:35 +00001107 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001108 if (ip->sa.sa_family == AF_INET) {
1109 struct ip_mreqn mreq = {
1110 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1111 .imr_ifindex = ifindex,
1112 };
1113
1114 ip_mc_join_group(sk, &mreq);
1115#if IS_ENABLED(CONFIG_IPV6)
1116 } else {
1117 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1118 &ip->sin6.sin6_addr);
1119#endif
1120 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001121 release_sock(sk);
1122
Pravin B Shelar012a5722013-08-19 11:23:07 -07001123 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001124 dev_put(vxlan->dev);
1125}
1126
1127/* Inverse of vxlan_igmp_join when last VNI is brought down */
1128static void vxlan_igmp_leave(struct work_struct *work)
1129{
1130 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001131 struct vxlan_sock *vs = vxlan->vn_sock;
1132 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001133 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1134 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001135
1136 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001137 if (ip->sa.sa_family == AF_INET) {
1138 struct ip_mreqn mreq = {
1139 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1140 .imr_ifindex = ifindex,
1141 };
1142
1143 ip_mc_leave_group(sk, &mreq);
1144#if IS_ENABLED(CONFIG_IPV6)
1145 } else {
1146 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1147 &ip->sin6.sin6_addr);
1148#endif
1149 }
1150
stephen hemmingerd3428942012-10-01 12:32:35 +00001151 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001152
Pravin B Shelar012a5722013-08-19 11:23:07 -07001153 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001154 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001155}
1156
Tom Herbertdfd86452015-01-12 17:00:38 -08001157static struct vxlanhdr *vxlan_remcsum(struct sk_buff *skb, struct vxlanhdr *vh,
1158 size_t hdrlen, u32 data)
1159{
1160 size_t start, offset, plen;
1161 __wsum delta;
1162
1163 if (skb->remcsum_offload) {
1164 /* Already processed in GRO path */
1165 skb->remcsum_offload = 0;
1166 return vh;
1167 }
1168
1169 start = (data & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
1170 offset = start + ((data & VXLAN_RCO_UDP) ?
1171 offsetof(struct udphdr, check) :
1172 offsetof(struct tcphdr, check));
1173
1174 plen = hdrlen + offset + sizeof(u16);
1175
1176 if (!pskb_may_pull(skb, plen))
1177 return NULL;
1178
1179 vh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
1180
1181 if (unlikely(skb->ip_summed != CHECKSUM_COMPLETE))
1182 __skb_checksum_complete(skb);
1183
1184 delta = remcsum_adjust((void *)vh + hdrlen,
1185 skb->csum, start, offset);
1186
1187 /* Adjust skb->csum since we changed the packet */
1188 skb->csum = csum_add(skb->csum, delta);
1189
1190 return vh;
1191}
1192
stephen hemmingerd3428942012-10-01 12:32:35 +00001193/* Callback from net/ipv4/udp.c to receive packets */
1194static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1195{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001196 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001197 struct vxlanhdr *vxh;
Tom Herbert3bf39472015-01-08 12:31:18 -08001198 u32 flags, vni;
Thomas Graf35114942015-01-15 03:53:55 +01001199 struct vxlan_metadata md = {0};
stephen hemmingerd3428942012-10-01 12:32:35 +00001200
stephen hemmingerd3428942012-10-01 12:32:35 +00001201 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001202 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001203 goto error;
1204
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001205 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
Tom Herbert3bf39472015-01-08 12:31:18 -08001206 flags = ntohl(vxh->vx_flags);
1207 vni = ntohl(vxh->vx_vni);
1208
1209 if (flags & VXLAN_HF_VNI) {
1210 flags &= ~VXLAN_HF_VNI;
1211 } else {
1212 /* VNI flag always required to be set */
1213 goto bad_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00001214 }
1215
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001216 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001217 goto drop;
Tom Herbertdfd86452015-01-12 17:00:38 -08001218 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +00001219
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001220 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001221 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001222 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001223
Tom Herbertdfd86452015-01-12 17:00:38 -08001224 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
1225 vxh = vxlan_remcsum(skb, vxh, sizeof(struct vxlanhdr), vni);
1226 if (!vxh)
1227 goto drop;
1228
1229 flags &= ~VXLAN_HF_RCO;
1230 vni &= VXLAN_VID_MASK;
1231 }
1232
Thomas Graf35114942015-01-15 03:53:55 +01001233 /* For backwards compatibility, only allow reserved fields to be
1234 * used by VXLAN extensions if explicitly requested.
1235 */
1236 if ((flags & VXLAN_HF_GBP) && (vs->flags & VXLAN_F_GBP)) {
1237 struct vxlanhdr_gbp *gbp;
1238
1239 gbp = (struct vxlanhdr_gbp *)vxh;
1240 md.gbp = ntohs(gbp->policy_id);
1241
1242 if (gbp->dont_learn)
1243 md.gbp |= VXLAN_GBP_DONT_LEARN;
1244
1245 if (gbp->policy_applied)
1246 md.gbp |= VXLAN_GBP_POLICY_APPLIED;
1247
1248 flags &= ~VXLAN_GBP_USED_BITS;
1249 }
1250
Tom Herbertdfd86452015-01-12 17:00:38 -08001251 if (flags || (vni & ~VXLAN_VID_MASK)) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001252 /* If there are any unprocessed flags remaining treat
1253 * this as a malformed packet. This behavior diverges from
1254 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1255 * in reserved fields are to be ignored. The approach here
1256 * maintains compatbility with previous stack code, and also
1257 * is more robust and provides a little more security in
1258 * adding extensions to VXLAN.
1259 */
1260
1261 goto bad_flags;
1262 }
1263
Thomas Graf35114942015-01-15 03:53:55 +01001264 md.vni = vxh->vx_vni;
1265 vs->rcv(vs, skb, &md);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001266 return 0;
1267
1268drop:
1269 /* Consume bad packet */
1270 kfree_skb(skb);
1271 return 0;
1272
Tom Herbert3bf39472015-01-08 12:31:18 -08001273bad_flags:
1274 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1275 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1276
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001277error:
1278 /* Return non vxlan pkt */
1279 return 1;
1280}
1281
Thomas Graf35114942015-01-15 03:53:55 +01001282static void vxlan_rcv(struct vxlan_sock *vs, struct sk_buff *skb,
1283 struct vxlan_metadata *md)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001284{
Cong Wange4c7ed42013-08-31 13:44:33 +08001285 struct iphdr *oip = NULL;
1286 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001287 struct vxlan_dev *vxlan;
Li RongQing8f849852014-01-04 13:57:59 +08001288 struct pcpu_sw_netstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001289 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001290 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001291 int err = 0;
1292 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001293
Thomas Graf35114942015-01-15 03:53:55 +01001294 vni = ntohl(md->vni) >> 8;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001295 /* Is this VNI defined? */
1296 vxlan = vxlan_vs_find_vni(vs, vni);
1297 if (!vxlan)
1298 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001299
Cong Wange4c7ed42013-08-31 13:44:33 +08001300 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001301 skb_reset_mac_header(skb);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001302 skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev)));
stephen hemmingerd3428942012-10-01 12:32:35 +00001303 skb->protocol = eth_type_trans(skb, vxlan->dev);
Tom Herbertf79b0642014-06-14 23:24:36 -07001304 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
stephen hemmingerd3428942012-10-01 12:32:35 +00001305
1306 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001307 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001308 goto drop;
1309
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001310 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001311 if (remote_ip->sa.sa_family == AF_INET) {
1312 oip = ip_hdr(skb);
1313 saddr.sin.sin_addr.s_addr = oip->saddr;
1314 saddr.sa.sa_family = AF_INET;
1315#if IS_ENABLED(CONFIG_IPV6)
1316 } else {
1317 oip6 = ipv6_hdr(skb);
1318 saddr.sin6.sin6_addr = oip6->saddr;
1319 saddr.sa.sa_family = AF_INET6;
1320#endif
1321 }
1322
stephen hemminger26a41ae62013-06-17 12:09:58 -07001323 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001324 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001325 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001326
stephen hemmingerd3428942012-10-01 12:32:35 +00001327 skb_reset_network_header(skb);
Thomas Graf35114942015-01-15 03:53:55 +01001328 skb->mark = md->gbp;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001329
Cong Wange4c7ed42013-08-31 13:44:33 +08001330 if (oip6)
1331 err = IP6_ECN_decapsulate(oip6, skb);
1332 if (oip)
1333 err = IP_ECN_decapsulate(oip, skb);
1334
stephen hemmingerd3428942012-10-01 12:32:35 +00001335 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001336 if (log_ecn_error) {
1337 if (oip6)
1338 net_info_ratelimited("non-ECT from %pI6\n",
1339 &oip6->saddr);
1340 if (oip)
1341 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1342 &oip->saddr, oip->tos);
1343 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001344 if (err > 1) {
1345 ++vxlan->dev->stats.rx_frame_errors;
1346 ++vxlan->dev->stats.rx_errors;
1347 goto drop;
1348 }
1349 }
1350
Pravin B Shelare8171042013-03-25 14:49:46 +00001351 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001352 u64_stats_update_begin(&stats->syncp);
1353 stats->rx_packets++;
1354 stats->rx_bytes += skb->len;
1355 u64_stats_update_end(&stats->syncp);
1356
1357 netif_rx(skb);
1358
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001359 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001360drop:
1361 /* Consume bad packet */
1362 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001363}
1364
David Stevense4f67ad2012-11-20 02:50:14 +00001365static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1366{
1367 struct vxlan_dev *vxlan = netdev_priv(dev);
1368 struct arphdr *parp;
1369 u8 *arpptr, *sha;
1370 __be32 sip, tip;
1371 struct neighbour *n;
1372
1373 if (dev->flags & IFF_NOARP)
1374 goto out;
1375
1376 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1377 dev->stats.tx_dropped++;
1378 goto out;
1379 }
1380 parp = arp_hdr(skb);
1381
1382 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1383 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1384 parp->ar_pro != htons(ETH_P_IP) ||
1385 parp->ar_op != htons(ARPOP_REQUEST) ||
1386 parp->ar_hln != dev->addr_len ||
1387 parp->ar_pln != 4)
1388 goto out;
1389 arpptr = (u8 *)parp + sizeof(struct arphdr);
1390 sha = arpptr;
1391 arpptr += dev->addr_len; /* sha */
1392 memcpy(&sip, arpptr, sizeof(sip));
1393 arpptr += sizeof(sip);
1394 arpptr += dev->addr_len; /* tha */
1395 memcpy(&tip, arpptr, sizeof(tip));
1396
1397 if (ipv4_is_loopback(tip) ||
1398 ipv4_is_multicast(tip))
1399 goto out;
1400
1401 n = neigh_lookup(&arp_tbl, &tip, dev);
1402
1403 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001404 struct vxlan_fdb *f;
1405 struct sk_buff *reply;
1406
1407 if (!(n->nud_state & NUD_CONNECTED)) {
1408 neigh_release(n);
1409 goto out;
1410 }
1411
1412 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001413 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001414 /* bridge-local neighbor */
1415 neigh_release(n);
1416 goto out;
1417 }
1418
1419 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1420 n->ha, sha);
1421
1422 neigh_release(n);
1423
David Stevens73461352014-03-18 12:32:29 -04001424 if (reply == NULL)
1425 goto out;
1426
David Stevense4f67ad2012-11-20 02:50:14 +00001427 skb_reset_mac_header(reply);
1428 __skb_pull(reply, skb_network_offset(reply));
1429 reply->ip_summed = CHECKSUM_UNNECESSARY;
1430 reply->pkt_type = PACKET_HOST;
1431
1432 if (netif_rx_ni(reply) == NET_RX_DROP)
1433 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001434 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1435 union vxlan_addr ipa = {
1436 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001437 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001438 };
1439
1440 vxlan_ip_miss(dev, &ipa);
1441 }
David Stevense4f67ad2012-11-20 02:50:14 +00001442out:
1443 consume_skb(skb);
1444 return NETDEV_TX_OK;
1445}
1446
Cong Wangf564f452013-08-31 13:44:36 +08001447#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001448static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1449 struct neighbour *n, bool isrouter)
1450{
1451 struct net_device *dev = request->dev;
1452 struct sk_buff *reply;
1453 struct nd_msg *ns, *na;
1454 struct ipv6hdr *pip6;
1455 u8 *daddr;
1456 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1457 int ns_olen;
1458 int i, len;
1459
1460 if (dev == NULL)
1461 return NULL;
1462
1463 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1464 sizeof(*na) + na_olen + dev->needed_tailroom;
1465 reply = alloc_skb(len, GFP_ATOMIC);
1466 if (reply == NULL)
1467 return NULL;
1468
1469 reply->protocol = htons(ETH_P_IPV6);
1470 reply->dev = dev;
1471 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1472 skb_push(reply, sizeof(struct ethhdr));
1473 skb_set_mac_header(reply, 0);
1474
1475 ns = (struct nd_msg *)skb_transport_header(request);
1476
1477 daddr = eth_hdr(request)->h_source;
1478 ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns);
1479 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1480 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1481 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1482 break;
1483 }
1484 }
1485
1486 /* Ethernet header */
1487 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1488 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1489 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1490 reply->protocol = htons(ETH_P_IPV6);
1491
1492 skb_pull(reply, sizeof(struct ethhdr));
1493 skb_set_network_header(reply, 0);
1494 skb_put(reply, sizeof(struct ipv6hdr));
1495
1496 /* IPv6 header */
1497
1498 pip6 = ipv6_hdr(reply);
1499 memset(pip6, 0, sizeof(struct ipv6hdr));
1500 pip6->version = 6;
1501 pip6->priority = ipv6_hdr(request)->priority;
1502 pip6->nexthdr = IPPROTO_ICMPV6;
1503 pip6->hop_limit = 255;
1504 pip6->daddr = ipv6_hdr(request)->saddr;
1505 pip6->saddr = *(struct in6_addr *)n->primary_key;
1506
1507 skb_pull(reply, sizeof(struct ipv6hdr));
1508 skb_set_transport_header(reply, 0);
1509
1510 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1511
1512 /* Neighbor Advertisement */
1513 memset(na, 0, sizeof(*na)+na_olen);
1514 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1515 na->icmph.icmp6_router = isrouter;
1516 na->icmph.icmp6_override = 1;
1517 na->icmph.icmp6_solicited = 1;
1518 na->target = ns->target;
1519 ether_addr_copy(&na->opt[2], n->ha);
1520 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1521 na->opt[1] = na_olen >> 3;
1522
1523 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1524 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1525 csum_partial(na, sizeof(*na)+na_olen, 0));
1526
1527 pip6->payload_len = htons(sizeof(*na)+na_olen);
1528
1529 skb_push(reply, sizeof(struct ipv6hdr));
1530
1531 reply->ip_summed = CHECKSUM_UNNECESSARY;
1532
1533 return reply;
1534}
1535
Cong Wangf564f452013-08-31 13:44:36 +08001536static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1537{
1538 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001539 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001540 const struct ipv6hdr *iphdr;
1541 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001542 struct neighbour *n;
1543 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001544
1545 in6_dev = __in6_dev_get(dev);
1546 if (!in6_dev)
1547 goto out;
1548
Cong Wangf564f452013-08-31 13:44:36 +08001549 iphdr = ipv6_hdr(skb);
1550 saddr = &iphdr->saddr;
1551 daddr = &iphdr->daddr;
1552
Cong Wangf564f452013-08-31 13:44:36 +08001553 msg = (struct nd_msg *)skb_transport_header(skb);
1554 if (msg->icmph.icmp6_code != 0 ||
1555 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1556 goto out;
1557
David Stevens4b29dba2014-03-24 10:39:58 -04001558 if (ipv6_addr_loopback(daddr) ||
1559 ipv6_addr_is_multicast(&msg->target))
1560 goto out;
1561
1562 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001563
1564 if (n) {
1565 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001566 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001567
1568 if (!(n->nud_state & NUD_CONNECTED)) {
1569 neigh_release(n);
1570 goto out;
1571 }
1572
1573 f = vxlan_find_mac(vxlan, n->ha);
1574 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1575 /* bridge-local neighbor */
1576 neigh_release(n);
1577 goto out;
1578 }
1579
David Stevens4b29dba2014-03-24 10:39:58 -04001580 reply = vxlan_na_create(skb, n,
1581 !!(f ? f->flags & NTF_ROUTER : 0));
1582
Cong Wangf564f452013-08-31 13:44:36 +08001583 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001584
1585 if (reply == NULL)
1586 goto out;
1587
1588 if (netif_rx_ni(reply) == NET_RX_DROP)
1589 dev->stats.rx_dropped++;
1590
Cong Wangf564f452013-08-31 13:44:36 +08001591 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001592 union vxlan_addr ipa = {
1593 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001594 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001595 };
1596
Cong Wangf564f452013-08-31 13:44:36 +08001597 vxlan_ip_miss(dev, &ipa);
1598 }
1599
1600out:
1601 consume_skb(skb);
1602 return NETDEV_TX_OK;
1603}
1604#endif
1605
David Stevense4f67ad2012-11-20 02:50:14 +00001606static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1607{
1608 struct vxlan_dev *vxlan = netdev_priv(dev);
1609 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001610
1611 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1612 return false;
1613
1614 n = NULL;
1615 switch (ntohs(eth_hdr(skb)->h_proto)) {
1616 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001617 {
1618 struct iphdr *pip;
1619
David Stevense4f67ad2012-11-20 02:50:14 +00001620 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1621 return false;
1622 pip = ip_hdr(skb);
1623 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001624 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1625 union vxlan_addr ipa = {
1626 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001627 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001628 };
1629
1630 vxlan_ip_miss(dev, &ipa);
1631 return false;
1632 }
1633
David Stevense4f67ad2012-11-20 02:50:14 +00001634 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001635 }
1636#if IS_ENABLED(CONFIG_IPV6)
1637 case ETH_P_IPV6:
1638 {
1639 struct ipv6hdr *pip6;
1640
1641 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1642 return false;
1643 pip6 = ipv6_hdr(skb);
1644 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1645 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1646 union vxlan_addr ipa = {
1647 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001648 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001649 };
1650
1651 vxlan_ip_miss(dev, &ipa);
1652 return false;
1653 }
1654
1655 break;
1656 }
1657#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001658 default:
1659 return false;
1660 }
1661
1662 if (n) {
1663 bool diff;
1664
Joe Perches7367d0b2013-09-01 11:51:23 -07001665 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001666 if (diff) {
1667 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1668 dev->addr_len);
1669 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1670 }
1671 neigh_release(n);
1672 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001673 }
1674
David Stevense4f67ad2012-11-20 02:50:14 +00001675 return false;
1676}
1677
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001678static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, u32 vxflags,
Thomas Graf35114942015-01-15 03:53:55 +01001679 struct vxlan_metadata *md)
1680{
1681 struct vxlanhdr_gbp *gbp;
1682
1683 gbp = (struct vxlanhdr_gbp *)vxh;
1684 vxh->vx_flags |= htonl(VXLAN_HF_GBP);
1685
1686 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1687 gbp->dont_learn = 1;
1688
1689 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1690 gbp->policy_applied = 1;
1691
1692 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1693}
1694
Cong Wange4c7ed42013-08-31 13:44:33 +08001695#if IS_ENABLED(CONFIG_IPV6)
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001696static int vxlan6_xmit_skb(struct dst_entry *dst, struct sk_buff *skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001697 struct net_device *dev, struct in6_addr *saddr,
1698 struct in6_addr *daddr, __u8 prio, __u8 ttl,
Thomas Graf35114942015-01-15 03:53:55 +01001699 __be16 src_port, __be16 dst_port,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001700 struct vxlan_metadata *md, bool xnet, u32 vxflags)
Cong Wange4c7ed42013-08-31 13:44:33 +08001701{
Cong Wange4c7ed42013-08-31 13:44:33 +08001702 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001703 int min_headroom;
1704 int err;
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001705 bool udp_sum = !(vxflags & VXLAN_F_UDP_ZERO_CSUM6_TX);
Tom Herbertdfd86452015-01-12 17:00:38 -08001706 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1707 u16 hdrlen = sizeof(struct vxlanhdr);
Cong Wange4c7ed42013-08-31 13:44:33 +08001708
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001709 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001710 skb->ip_summed == CHECKSUM_PARTIAL) {
1711 int csum_start = skb_checksum_start_offset(skb);
1712
1713 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1714 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1715 (skb->csum_offset == offsetof(struct udphdr, check) ||
1716 skb->csum_offset == offsetof(struct tcphdr, check))) {
1717 udp_sum = false;
1718 type |= SKB_GSO_TUNNEL_REMCSUM;
1719 }
1720 }
1721
1722 skb = iptunnel_handle_offloads(skb, udp_sum, type);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001723 if (IS_ERR(skb)) {
1724 err = -EINVAL;
1725 goto err;
1726 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001727
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001728 skb_scrub_packet(skb, xnet);
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001729
Cong Wange4c7ed42013-08-31 13:44:33 +08001730 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1731 + VXLAN_HLEN + sizeof(struct ipv6hdr)
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001732 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Cong Wange4c7ed42013-08-31 13:44:33 +08001733
1734 /* Need space for new headers (invalidates iph ptr) */
1735 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001736 if (unlikely(err)) {
1737 kfree_skb(skb);
1738 goto err;
1739 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001740
Jiri Pirko59682502014-11-19 14:04:59 +01001741 skb = vlan_hwaccel_push_inside(skb);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001742 if (WARN_ON(!skb)) {
1743 err = -ENOMEM;
1744 goto err;
1745 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001746
1747 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001748 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Thomas Graf35114942015-01-15 03:53:55 +01001749 vxh->vx_vni = md->vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001750
Tom Herbertdfd86452015-01-12 17:00:38 -08001751 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1752 u32 data = (skb_checksum_start_offset(skb) - hdrlen) >>
1753 VXLAN_RCO_SHIFT;
1754
1755 if (skb->csum_offset == offsetof(struct udphdr, check))
1756 data |= VXLAN_RCO_UDP;
1757
1758 vxh->vx_vni |= htonl(data);
1759 vxh->vx_flags |= htonl(VXLAN_HF_RCO);
1760
1761 if (!skb_is_gso(skb)) {
1762 skb->ip_summed = CHECKSUM_NONE;
1763 skb->encapsulation = 0;
1764 }
1765 }
1766
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001767 if (vxflags & VXLAN_F_GBP)
1768 vxlan_build_gbp_hdr(vxh, vxflags, md);
Thomas Graf35114942015-01-15 03:53:55 +01001769
Tom Herbert996c9fd2014-09-29 20:22:33 -07001770 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1771
Tom Herbertd998f8e2015-01-20 11:23:04 -08001772 udp_tunnel6_xmit_skb(dst, skb, dev, saddr, daddr, prio,
1773 ttl, src_port, dst_port,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001774 !!(vxflags & VXLAN_F_UDP_ZERO_CSUM6_TX));
Cong Wange4c7ed42013-08-31 13:44:33 +08001775 return 0;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001776err:
1777 dst_release(dst);
1778 return err;
Cong Wange4c7ed42013-08-31 13:44:33 +08001779}
1780#endif
1781
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001782int vxlan_xmit_skb(struct rtable *rt, struct sk_buff *skb,
Pravin B Shelar49560532013-08-19 11:23:17 -07001783 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
Thomas Graf35114942015-01-15 03:53:55 +01001784 __be16 src_port, __be16 dst_port,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001785 struct vxlan_metadata *md, bool xnet, u32 vxflags)
Pravin B Shelar49560532013-08-19 11:23:17 -07001786{
1787 struct vxlanhdr *vxh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001788 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001789 int err;
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001790 bool udp_sum = !!(vxflags & VXLAN_F_UDP_CSUM);
Tom Herbertdfd86452015-01-12 17:00:38 -08001791 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1792 u16 hdrlen = sizeof(struct vxlanhdr);
Pravin B Shelar49560532013-08-19 11:23:17 -07001793
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001794 if ((vxflags & VXLAN_F_REMCSUM_TX) &&
Tom Herbertdfd86452015-01-12 17:00:38 -08001795 skb->ip_summed == CHECKSUM_PARTIAL) {
1796 int csum_start = skb_checksum_start_offset(skb);
1797
1798 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1799 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1800 (skb->csum_offset == offsetof(struct udphdr, check) ||
1801 skb->csum_offset == offsetof(struct tcphdr, check))) {
1802 udp_sum = false;
1803 type |= SKB_GSO_TUNNEL_REMCSUM;
1804 }
1805 }
1806
1807 skb = iptunnel_handle_offloads(skb, udp_sum, type);
Tom Herbert359a0ea2014-06-04 17:20:29 -07001808 if (IS_ERR(skb))
Pravin B Shelar74f47272014-12-23 16:20:36 -08001809 return PTR_ERR(skb);
Pravin B Shelar49560532013-08-19 11:23:17 -07001810
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001811 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001812 + VXLAN_HLEN + sizeof(struct iphdr)
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001813 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001814
1815 /* Need space for new headers (invalidates iph ptr) */
1816 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001817 if (unlikely(err)) {
1818 kfree_skb(skb);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001819 return err;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001820 }
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001821
Jiri Pirko59682502014-11-19 14:04:59 +01001822 skb = vlan_hwaccel_push_inside(skb);
1823 if (WARN_ON(!skb))
1824 return -ENOMEM;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001825
Pravin B Shelar49560532013-08-19 11:23:17 -07001826 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001827 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Thomas Graf35114942015-01-15 03:53:55 +01001828 vxh->vx_vni = md->vni;
Pravin B Shelar49560532013-08-19 11:23:17 -07001829
Tom Herbertdfd86452015-01-12 17:00:38 -08001830 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1831 u32 data = (skb_checksum_start_offset(skb) - hdrlen) >>
1832 VXLAN_RCO_SHIFT;
1833
1834 if (skb->csum_offset == offsetof(struct udphdr, check))
1835 data |= VXLAN_RCO_UDP;
1836
1837 vxh->vx_vni |= htonl(data);
1838 vxh->vx_flags |= htonl(VXLAN_HF_RCO);
1839
1840 if (!skb_is_gso(skb)) {
1841 skb->ip_summed = CHECKSUM_NONE;
1842 skb->encapsulation = 0;
1843 }
1844 }
1845
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001846 if (vxflags & VXLAN_F_GBP)
1847 vxlan_build_gbp_hdr(vxh, vxflags, md);
Thomas Graf35114942015-01-15 03:53:55 +01001848
Tom Herbert996c9fd2014-09-29 20:22:33 -07001849 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1850
Tom Herbertd998f8e2015-01-20 11:23:04 -08001851 return udp_tunnel_xmit_skb(rt, skb, src, dst, tos,
1852 ttl, df, src_port, dst_port, xnet,
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001853 !(vxflags & VXLAN_F_UDP_CSUM));
Pravin B Shelar49560532013-08-19 11:23:17 -07001854}
1855EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1856
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001857/* Bypass encapsulation if the destination is local */
1858static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1859 struct vxlan_dev *dst_vxlan)
1860{
Li RongQing8f849852014-01-04 13:57:59 +08001861 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001862 union vxlan_addr loopback;
1863 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001864 struct net_device *dev = skb->dev;
1865 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001866
Li RongQing8f849852014-01-04 13:57:59 +08001867 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1868 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001869 skb->pkt_type = PACKET_HOST;
1870 skb->encapsulation = 0;
1871 skb->dev = dst_vxlan->dev;
1872 __skb_pull(skb, skb_network_offset(skb));
1873
Cong Wange4c7ed42013-08-31 13:44:33 +08001874 if (remote_ip->sa.sa_family == AF_INET) {
1875 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1876 loopback.sa.sa_family = AF_INET;
1877#if IS_ENABLED(CONFIG_IPV6)
1878 } else {
1879 loopback.sin6.sin6_addr = in6addr_loopback;
1880 loopback.sa.sa_family = AF_INET6;
1881#endif
1882 }
1883
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001884 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001885 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001886
1887 u64_stats_update_begin(&tx_stats->syncp);
1888 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001889 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001890 u64_stats_update_end(&tx_stats->syncp);
1891
1892 if (netif_rx(skb) == NET_RX_SUCCESS) {
1893 u64_stats_update_begin(&rx_stats->syncp);
1894 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001895 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001896 u64_stats_update_end(&rx_stats->syncp);
1897 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08001898 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001899 }
1900}
1901
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001902static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1903 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001904{
1905 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001906 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001907 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001908 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001909 union vxlan_addr *dst;
Thomas Graf35114942015-01-15 03:53:55 +01001910 struct vxlan_metadata md;
Cong Wange4c7ed42013-08-31 13:44:33 +08001911 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001912 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001913 __be16 df = 0;
1914 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001915 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001916
stephen hemminger823aa872013-04-27 11:31:57 +00001917 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001918 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001919 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001920
Cong Wange4c7ed42013-08-31 13:44:33 +08001921 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001922 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001923 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001924 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001925 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001926 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001927 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001928 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001929
stephen hemmingerd3428942012-10-01 12:32:35 +00001930 old_iph = ip_hdr(skb);
1931
stephen hemmingerd3428942012-10-01 12:32:35 +00001932 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001933 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001934 ttl = 1;
1935
1936 tos = vxlan->tos;
1937 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001938 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001939
Tom Herbert535fb8d2014-07-01 21:32:49 -07001940 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->port_min,
1941 vxlan->port_max, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00001942
Cong Wange4c7ed42013-08-31 13:44:33 +08001943 if (dst->sa.sa_family == AF_INET) {
1944 memset(&fl4, 0, sizeof(fl4));
1945 fl4.flowi4_oif = rdst->remote_ifindex;
1946 fl4.flowi4_tos = RT_TOS(tos);
1947 fl4.daddr = dst->sin.sin_addr.s_addr;
1948 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001949
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001950 rt = ip_route_output_key(vxlan->net, &fl4);
Cong Wange4c7ed42013-08-31 13:44:33 +08001951 if (IS_ERR(rt)) {
1952 netdev_dbg(dev, "no route to %pI4\n",
1953 &dst->sin.sin_addr.s_addr);
1954 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001955 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001956 }
1957
1958 if (rt->dst.dev == dev) {
1959 netdev_dbg(dev, "circular route to %pI4\n",
1960 &dst->sin.sin_addr.s_addr);
1961 dev->stats.collisions++;
Fan Dufffc15a2013-12-09 10:33:53 +08001962 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001963 }
1964
1965 /* Bypass encapsulation if the destination is local */
1966 if (rt->rt_flags & RTCF_LOCAL &&
1967 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1968 struct vxlan_dev *dst_vxlan;
1969
1970 ip_rt_put(rt);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001971 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
Thomas Grafac5132d2015-01-15 03:53:56 +01001972 dst->sa.sa_family, dst_port,
1973 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08001974 if (!dst_vxlan)
1975 goto tx_error;
1976 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1977 return;
1978 }
1979
1980 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1981 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Thomas Graf35114942015-01-15 03:53:55 +01001982 md.vni = htonl(vni << 8);
1983 md.gbp = skb->mark;
Cong Wange4c7ed42013-08-31 13:44:33 +08001984
Tom Herbertaf33c1a2015-01-20 11:23:05 -08001985 err = vxlan_xmit_skb(rt, skb, fl4.saddr,
1986 dst->sin.sin_addr.s_addr, tos, ttl, df,
1987 src_port, dst_port, &md,
1988 !net_eq(vxlan->net, dev_net(vxlan->dev)),
1989 vxlan->flags);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001990 if (err < 0) {
1991 /* skb is already freed. */
1992 skb = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08001993 goto rt_tx_error;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001994 }
1995
Cong Wange4c7ed42013-08-31 13:44:33 +08001996 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1997#if IS_ENABLED(CONFIG_IPV6)
1998 } else {
1999 struct sock *sk = vxlan->vn_sock->sock->sk;
2000 struct dst_entry *ndst;
2001 struct flowi6 fl6;
2002 u32 flags;
2003
2004 memset(&fl6, 0, sizeof(fl6));
2005 fl6.flowi6_oif = rdst->remote_ifindex;
2006 fl6.daddr = dst->sin6.sin6_addr;
2007 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08002008 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08002009
2010 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
2011 netdev_dbg(dev, "no route to %pI6\n",
2012 &dst->sin6.sin6_addr);
2013 dev->stats.tx_carrier_errors++;
2014 goto tx_error;
2015 }
2016
2017 if (ndst->dev == dev) {
2018 netdev_dbg(dev, "circular route to %pI6\n",
2019 &dst->sin6.sin6_addr);
2020 dst_release(ndst);
2021 dev->stats.collisions++;
2022 goto tx_error;
2023 }
2024
2025 /* Bypass encapsulation if the destination is local */
2026 flags = ((struct rt6_info *)ndst)->rt6i_flags;
2027 if (flags & RTF_LOCAL &&
2028 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2029 struct vxlan_dev *dst_vxlan;
2030
2031 dst_release(ndst);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002032 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
Thomas Grafac5132d2015-01-15 03:53:56 +01002033 dst->sa.sa_family, dst_port,
2034 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002035 if (!dst_vxlan)
2036 goto tx_error;
2037 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
2038 return;
2039 }
2040
2041 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Thomas Graf35114942015-01-15 03:53:55 +01002042 md.vni = htonl(vni << 8);
2043 md.gbp = skb->mark;
Cong Wange4c7ed42013-08-31 13:44:33 +08002044
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002045 err = vxlan6_xmit_skb(ndst, skb, dev, &fl6.saddr, &fl6.daddr,
2046 0, ttl, src_port, dst_port, &md,
2047 !net_eq(vxlan->net, dev_net(vxlan->dev)),
2048 vxlan->flags);
Cong Wange4c7ed42013-08-31 13:44:33 +08002049#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002050 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002051
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002052 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002053
2054drop:
2055 dev->stats.tx_dropped++;
2056 goto tx_free;
2057
Pravin B Shelar49560532013-08-19 11:23:17 -07002058rt_tx_error:
2059 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00002060tx_error:
2061 dev->stats.tx_errors++;
2062tx_free:
2063 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002064}
2065
David Stevens66817122013-03-15 04:35:51 +00002066/* Transmit local packets over Vxlan
2067 *
2068 * Outer IP header inherits ECN and DF from inner header.
2069 * Outer UDP destination is the VXLAN assigned port.
2070 * source port is based on hash of flow
2071 */
2072static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2073{
2074 struct vxlan_dev *vxlan = netdev_priv(dev);
2075 struct ethhdr *eth;
2076 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002077 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002078 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00002079
2080 skb_reset_mac_header(skb);
2081 eth = eth_hdr(skb);
2082
Cong Wangf564f452013-08-31 13:44:36 +08002083 if ((vxlan->flags & VXLAN_F_PROXY)) {
2084 if (ntohs(eth->h_proto) == ETH_P_ARP)
2085 return arp_reduce(dev, skb);
2086#if IS_ENABLED(CONFIG_IPV6)
2087 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
Li RongQing91269e32014-10-16 09:17:18 +08002088 pskb_may_pull(skb, sizeof(struct ipv6hdr)
2089 + sizeof(struct nd_msg)) &&
Cong Wangf564f452013-08-31 13:44:36 +08002090 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2091 struct nd_msg *msg;
2092
2093 msg = (struct nd_msg *)skb_transport_header(skb);
2094 if (msg->icmph.icmp6_code == 0 &&
2095 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
2096 return neigh_reduce(dev, skb);
2097 }
Li RongQing7a9f5262014-10-17 14:06:16 +08002098 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002099#endif
2100 }
David Stevens66817122013-03-15 04:35:51 +00002101
2102 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00002103 did_rsc = false;
2104
2105 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002106 (ntohs(eth->h_proto) == ETH_P_IP ||
2107 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002108 did_rsc = route_shortcircuit(dev, skb);
2109 if (did_rsc)
2110 f = vxlan_find_mac(vxlan, eth->h_dest);
2111 }
2112
David Stevens66817122013-03-15 04:35:51 +00002113 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002114 f = vxlan_find_mac(vxlan, all_zeros_mac);
2115 if (f == NULL) {
2116 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2117 !is_multicast_ether_addr(eth->h_dest))
2118 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002119
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002120 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002121 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002122 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002123 }
David Stevens66817122013-03-15 04:35:51 +00002124 }
2125
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002126 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2127 struct sk_buff *skb1;
2128
Eric Dumazet8f646c92014-01-06 09:54:31 -08002129 if (!fdst) {
2130 fdst = rdst;
2131 continue;
2132 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002133 skb1 = skb_clone(skb, GFP_ATOMIC);
2134 if (skb1)
2135 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
2136 }
2137
Eric Dumazet8f646c92014-01-06 09:54:31 -08002138 if (fdst)
2139 vxlan_xmit_one(skb, dev, fdst, did_rsc);
2140 else
2141 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002142 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002143}
2144
stephen hemmingerd3428942012-10-01 12:32:35 +00002145/* Walk the forwarding table and purge stale entries */
2146static void vxlan_cleanup(unsigned long arg)
2147{
2148 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2149 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2150 unsigned int h;
2151
2152 if (!netif_running(vxlan->dev))
2153 return;
2154
2155 spin_lock_bh(&vxlan->hash_lock);
2156 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2157 struct hlist_node *p, *n;
2158 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2159 struct vxlan_fdb *f
2160 = container_of(p, struct vxlan_fdb, hlist);
2161 unsigned long timeout;
2162
stephen hemminger3c172862012-10-26 06:24:34 +00002163 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00002164 continue;
2165
2166 timeout = f->used + vxlan->age_interval * HZ;
2167 if (time_before_eq(timeout, jiffies)) {
2168 netdev_dbg(vxlan->dev,
2169 "garbage collect %pM\n",
2170 f->eth_addr);
2171 f->state = NUD_STALE;
2172 vxlan_fdb_destroy(vxlan, f);
2173 } else if (time_before(timeout, next_timer))
2174 next_timer = timeout;
2175 }
2176 }
2177 spin_unlock_bh(&vxlan->hash_lock);
2178
2179 mod_timer(&vxlan->age_timer, next_timer);
2180}
2181
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002182static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2183{
2184 __u32 vni = vxlan->default_dst.remote_vni;
2185
2186 vxlan->vn_sock = vs;
2187 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
2188}
2189
stephen hemmingerd3428942012-10-01 12:32:35 +00002190/* Setup stats when device is created */
2191static int vxlan_init(struct net_device *dev)
2192{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002193 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002194 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002195 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002196 bool ipv6 = vxlan->flags & VXLAN_F_IPV6;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002197
WANG Cong1c213bd2014-02-13 11:46:28 -08002198 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002199 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002200 return -ENOMEM;
2201
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002202 spin_lock(&vn->sock_lock);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002203 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
Thomas Grafac5132d2015-01-15 03:53:56 +01002204 vxlan->dst_port, vxlan->flags);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002205 if (vs && atomic_add_unless(&vs->refcnt, 1, 0)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002206 /* If we have a socket with same port already, reuse it */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002207 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002208 } else {
2209 /* otherwise make new socket outside of RTNL */
2210 dev_hold(dev);
2211 queue_work(vxlan_wq, &vxlan->sock_work);
2212 }
2213 spin_unlock(&vn->sock_lock);
2214
stephen hemmingerd3428942012-10-01 12:32:35 +00002215 return 0;
2216}
2217
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002218static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002219{
2220 struct vxlan_fdb *f;
2221
2222 spin_lock_bh(&vxlan->hash_lock);
2223 f = __vxlan_find_mac(vxlan, all_zeros_mac);
2224 if (f)
2225 vxlan_fdb_destroy(vxlan, f);
2226 spin_unlock_bh(&vxlan->hash_lock);
2227}
2228
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002229static void vxlan_uninit(struct net_device *dev)
2230{
2231 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002232 struct vxlan_sock *vs = vxlan->vn_sock;
2233
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002234 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002235
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002236 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07002237 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002238 free_percpu(dev->tstats);
2239}
2240
stephen hemmingerd3428942012-10-01 12:32:35 +00002241/* Start ageing timer and join group when device is brought up */
2242static int vxlan_open(struct net_device *dev)
2243{
2244 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002245 struct vxlan_sock *vs = vxlan->vn_sock;
2246
2247 /* socket hasn't been created */
2248 if (!vs)
2249 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002250
Gao feng79d4a942013-12-10 16:37:32 +08002251 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002252 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002253 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002254 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00002255 }
2256
2257 if (vxlan->age_interval)
2258 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2259
2260 return 0;
2261}
2262
2263/* Purge the forwarding table */
2264static void vxlan_flush(struct vxlan_dev *vxlan)
2265{
Cong Wang31fec5a2013-05-27 22:35:52 +00002266 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002267
2268 spin_lock_bh(&vxlan->hash_lock);
2269 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2270 struct hlist_node *p, *n;
2271 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2272 struct vxlan_fdb *f
2273 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002274 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2275 if (!is_zero_ether_addr(f->eth_addr))
2276 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002277 }
2278 }
2279 spin_unlock_bh(&vxlan->hash_lock);
2280}
2281
2282/* Cleanup timer and forwarding table on shutdown */
2283static int vxlan_stop(struct net_device *dev)
2284{
2285 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002286 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002287 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00002288
Cong Wange4c7ed42013-08-31 13:44:33 +08002289 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
Gao feng95ab0992013-12-10 16:37:33 +08002290 !vxlan_group_used(vn, vxlan)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002291 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002292 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002293 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002294 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002295
2296 del_timer_sync(&vxlan->age_timer);
2297
2298 vxlan_flush(vxlan);
2299
2300 return 0;
2301}
2302
stephen hemmingerd3428942012-10-01 12:32:35 +00002303/* Stub, nothing needs to be done. */
2304static void vxlan_set_multicast_list(struct net_device *dev)
2305{
2306}
2307
Daniel Borkmann345010b2013-12-18 00:21:08 +01002308static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2309{
2310 struct vxlan_dev *vxlan = netdev_priv(dev);
2311 struct vxlan_rdst *dst = &vxlan->default_dst;
2312 struct net_device *lowerdev;
2313 int max_mtu;
2314
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002315 lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002316 if (lowerdev == NULL)
2317 return eth_change_mtu(dev, new_mtu);
2318
2319 if (dst->remote_ip.sa.sa_family == AF_INET6)
2320 max_mtu = lowerdev->mtu - VXLAN6_HEADROOM;
2321 else
2322 max_mtu = lowerdev->mtu - VXLAN_HEADROOM;
2323
2324 if (new_mtu < 68 || new_mtu > max_mtu)
2325 return -EINVAL;
2326
2327 dev->mtu = new_mtu;
2328 return 0;
2329}
2330
stephen hemmingerd3428942012-10-01 12:32:35 +00002331static const struct net_device_ops vxlan_netdev_ops = {
2332 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002333 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002334 .ndo_open = vxlan_open,
2335 .ndo_stop = vxlan_stop,
2336 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002337 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002338 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002339 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002340 .ndo_validate_addr = eth_validate_addr,
2341 .ndo_set_mac_address = eth_mac_addr,
2342 .ndo_fdb_add = vxlan_fdb_add,
2343 .ndo_fdb_del = vxlan_fdb_delete,
2344 .ndo_fdb_dump = vxlan_fdb_dump,
2345};
2346
2347/* Info for udev, that this is a virtual tunnel endpoint */
2348static struct device_type vxlan_type = {
2349 .name = "vxlan",
2350};
2351
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002352/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002353 * supply the listening VXLAN udp ports. Callers are expected
2354 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002355 */
2356void vxlan_get_rx_port(struct net_device *dev)
2357{
2358 struct vxlan_sock *vs;
2359 struct net *net = dev_net(dev);
2360 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2361 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002362 __be16 port;
2363 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002364
2365 spin_lock(&vn->sock_lock);
2366 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002367 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2368 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002369 sa_family = vs->sock->sk->sk_family;
2370 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2371 port);
2372 }
2373 }
2374 spin_unlock(&vn->sock_lock);
2375}
2376EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2377
stephen hemmingerd3428942012-10-01 12:32:35 +00002378/* Initialize the device structure. */
2379static void vxlan_setup(struct net_device *dev)
2380{
2381 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002382 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002383
2384 eth_hw_addr_random(dev);
2385 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002386 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
Cong Wang2853af62014-06-12 11:53:10 -07002387 dev->needed_headroom = ETH_HLEN + VXLAN6_HEADROOM;
Cong Wange4c7ed42013-08-31 13:44:33 +08002388 else
Cong Wang2853af62014-06-12 11:53:10 -07002389 dev->needed_headroom = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002390
2391 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002392 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002393 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2394
2395 dev->tx_queue_len = 0;
2396 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002397 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002398 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002399 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002400
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002401 dev->vlan_features = dev->features;
2402 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002403 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002404 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002405 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Eric Dumazet02875872014-10-05 18:38:35 -07002406 netif_keep_dst(dev);
stephen hemminger6602d002012-12-31 12:00:21 +00002407 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002408
stephen hemminger553675f2013-05-16 11:35:20 +00002409 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002410 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002411 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2412 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002413 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002414
2415 init_timer_deferrable(&vxlan->age_timer);
2416 vxlan->age_timer.function = vxlan_cleanup;
2417 vxlan->age_timer.data = (unsigned long) vxlan;
2418
stephen hemminger823aa872013-04-27 11:31:57 +00002419 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002420
stephen hemmingerd3428942012-10-01 12:32:35 +00002421 vxlan->dev = dev;
2422
2423 for (h = 0; h < FDB_HASH_SIZE; ++h)
2424 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2425}
2426
2427static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2428 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002429 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002430 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002431 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2432 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002433 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002434 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2435 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2436 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2437 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2438 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002439 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002440 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2441 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2442 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2443 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002444 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002445 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2446 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2447 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002448 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2449 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002450 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
stephen hemmingerd3428942012-10-01 12:32:35 +00002451};
2452
2453static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2454{
2455 if (tb[IFLA_ADDRESS]) {
2456 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2457 pr_debug("invalid link address (not ethernet)\n");
2458 return -EINVAL;
2459 }
2460
2461 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2462 pr_debug("invalid all zero ethernet address\n");
2463 return -EADDRNOTAVAIL;
2464 }
2465 }
2466
2467 if (!data)
2468 return -EINVAL;
2469
2470 if (data[IFLA_VXLAN_ID]) {
2471 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2472 if (id >= VXLAN_VID_MASK)
2473 return -ERANGE;
2474 }
2475
stephen hemminger05f47d62012-10-09 20:35:50 +00002476 if (data[IFLA_VXLAN_PORT_RANGE]) {
2477 const struct ifla_vxlan_port_range *p
2478 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2479
2480 if (ntohs(p->high) < ntohs(p->low)) {
2481 pr_debug("port range %u .. %u not valid\n",
2482 ntohs(p->low), ntohs(p->high));
2483 return -EINVAL;
2484 }
2485 }
2486
stephen hemmingerd3428942012-10-01 12:32:35 +00002487 return 0;
2488}
2489
Yan Burman1b13c972013-01-29 23:43:07 +00002490static void vxlan_get_drvinfo(struct net_device *netdev,
2491 struct ethtool_drvinfo *drvinfo)
2492{
2493 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2494 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2495}
2496
2497static const struct ethtool_ops vxlan_ethtool_ops = {
2498 .get_drvinfo = vxlan_get_drvinfo,
2499 .get_link = ethtool_op_get_link,
2500};
2501
stephen hemminger553675f2013-05-16 11:35:20 +00002502static void vxlan_del_work(struct work_struct *work)
2503{
2504 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002505 udp_tunnel_sock_release(vs->sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002506 kfree_rcu(vs, rcu);
2507}
2508
Tom Herbert3ee64f32014-07-13 19:49:42 -07002509static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2510 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002511{
Cong Wange4c7ed42013-08-31 13:44:33 +08002512 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002513 struct udp_port_cfg udp_conf;
2514 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002515
Tom Herbert3ee64f32014-07-13 19:49:42 -07002516 memset(&udp_conf, 0, sizeof(udp_conf));
2517
2518 if (ipv6) {
2519 udp_conf.family = AF_INET6;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002520 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002521 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Tom Herbert3ee64f32014-07-13 19:49:42 -07002522 } else {
2523 udp_conf.family = AF_INET;
2524 udp_conf.local_ip.s_addr = INADDR_ANY;
Cong Wange4c7ed42013-08-31 13:44:33 +08002525 }
2526
Tom Herbert3ee64f32014-07-13 19:49:42 -07002527 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002528
Tom Herbert3ee64f32014-07-13 19:49:42 -07002529 /* Open UDP socket */
2530 err = udp_sock_create(net, &udp_conf, &sock);
2531 if (err < 0)
2532 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002533
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002534 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002535}
2536
2537/* Create new listen socket if needed */
2538static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002539 vxlan_rcv_t *rcv, void *data,
2540 u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002541{
2542 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2543 struct vxlan_sock *vs;
2544 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002545 unsigned int h;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002546 bool ipv6 = !!(flags & VXLAN_F_IPV6);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002547 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002548
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002549 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002550 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002551 return ERR_PTR(-ENOMEM);
2552
2553 for (h = 0; h < VNI_HASH_SIZE; ++h)
2554 INIT_HLIST_HEAD(&vs->vni_list[h]);
2555
2556 INIT_WORK(&vs->del_work, vxlan_del_work);
2557
Tom Herbert3ee64f32014-07-13 19:49:42 -07002558 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002559 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002560 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002561 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002562 }
2563
Cong Wange4c7ed42013-08-31 13:44:33 +08002564 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002565 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002566 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002567 vs->data = data;
Tom Herbertaf33c1a2015-01-20 11:23:05 -08002568 vs->flags = (flags & VXLAN_F_RCV_FLAGS);
stephen hemminger553675f2013-05-16 11:35:20 +00002569
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002570 /* Initialize the vxlan udp offloads structure */
2571 vs->udp_offloads.port = port;
2572 vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive;
2573 vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete;
2574
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002575 spin_lock(&vn->sock_lock);
2576 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002577 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002578 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002579
2580 /* Mark socket as an encapsulation socket. */
Andy Zhouacbf74a2014-09-16 17:31:18 -07002581 tunnel_cfg.sk_user_data = vs;
2582 tunnel_cfg.encap_type = 1;
2583 tunnel_cfg.encap_rcv = vxlan_udp_encap_recv;
2584 tunnel_cfg.encap_destroy = NULL;
2585
2586 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002587
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002588 return vs;
2589}
stephen hemminger553675f2013-05-16 11:35:20 +00002590
Pravin B Shelar012a5722013-08-19 11:23:07 -07002591struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2592 vxlan_rcv_t *rcv, void *data,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002593 bool no_share, u32 flags)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002594{
2595 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2596 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002597 bool ipv6 = flags & VXLAN_F_IPV6;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002598
Tom Herbert359a0ea2014-06-04 17:20:29 -07002599 vs = vxlan_socket_create(net, port, rcv, data, flags);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002600 if (!IS_ERR(vs))
2601 return vs;
2602
Pravin B Shelar012a5722013-08-19 11:23:07 -07002603 if (no_share) /* Return error if sharing is not allowed. */
2604 return vs;
2605
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002606 spin_lock(&vn->sock_lock);
Thomas Grafac5132d2015-01-15 03:53:56 +01002607 vs = vxlan_find_sock(net, ipv6 ? AF_INET6 : AF_INET, port, flags);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002608 if (vs && ((vs->rcv != rcv) ||
2609 !atomic_add_unless(&vs->refcnt, 1, 0)))
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002610 vs = ERR_PTR(-EBUSY);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002611 spin_unlock(&vn->sock_lock);
2612
2613 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002614 vs = ERR_PTR(-EINVAL);
2615
stephen hemminger553675f2013-05-16 11:35:20 +00002616 return vs;
2617}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002618EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002619
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002620/* Scheduled at device creation to bind to a socket */
2621static void vxlan_sock_work(struct work_struct *work)
2622{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002623 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002624 struct net *net = vxlan->net;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002625 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002626 __be16 port = vxlan->dst_port;
2627 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002628
Tom Herbert359a0ea2014-06-04 17:20:29 -07002629 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002630 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002631 if (!IS_ERR(nvs))
2632 vxlan_vs_add_dev(nvs, vxlan);
2633 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002634
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002635 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002636}
2637
stephen hemmingerd3428942012-10-01 12:32:35 +00002638static int vxlan_newlink(struct net *net, struct net_device *dev,
2639 struct nlattr *tb[], struct nlattr *data[])
2640{
stephen hemminger553675f2013-05-16 11:35:20 +00002641 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002642 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002643 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002644 __u32 vni;
2645 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002646 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002647
2648 if (!data[IFLA_VXLAN_ID])
2649 return -EINVAL;
2650
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002651 vxlan->net = dev_net(dev);
2652
stephen hemmingerd3428942012-10-01 12:32:35 +00002653 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002654 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002655
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002656 /* Unless IPv6 is explicitly requested, assume IPv4 */
2657 dst->remote_ip.sa.sa_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002658 if (data[IFLA_VXLAN_GROUP]) {
2659 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
Cong Wange4c7ed42013-08-31 13:44:33 +08002660 } else if (data[IFLA_VXLAN_GROUP6]) {
2661 if (!IS_ENABLED(CONFIG_IPV6))
2662 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002663
Cong Wange4c7ed42013-08-31 13:44:33 +08002664 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2665 sizeof(struct in6_addr));
2666 dst->remote_ip.sa.sa_family = AF_INET6;
2667 use_ipv6 = true;
2668 }
2669
2670 if (data[IFLA_VXLAN_LOCAL]) {
2671 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2672 vxlan->saddr.sa.sa_family = AF_INET;
2673 } else if (data[IFLA_VXLAN_LOCAL6]) {
2674 if (!IS_ENABLED(CONFIG_IPV6))
2675 return -EPFNOSUPPORT;
2676
2677 /* TODO: respect scope id */
2678 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2679 sizeof(struct in6_addr));
2680 vxlan->saddr.sa.sa_family = AF_INET6;
2681 use_ipv6 = true;
2682 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002683
stephen hemminger34e02aa2012-10-09 20:35:53 +00002684 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002685 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002686 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00002687 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002688
stephen hemminger34e02aa2012-10-09 20:35:53 +00002689 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002690 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002691 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002692 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002693
Cong Wange4c7ed42013-08-31 13:44:33 +08002694#if IS_ENABLED(CONFIG_IPV6)
2695 if (use_ipv6) {
2696 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2697 if (idev && idev->cnf.disable_ipv6) {
2698 pr_info("IPv6 is disabled via sysctl\n");
2699 return -EPERM;
2700 }
2701 vxlan->flags |= VXLAN_F_IPV6;
2702 }
2703#endif
2704
stephen hemminger34e02aa2012-10-09 20:35:53 +00002705 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002706 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002707
Cong Wang2853af62014-06-12 11:53:10 -07002708 dev->needed_headroom = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002709 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
fan.du7bda7012014-01-03 10:18:58 +08002710 } else if (use_ipv6)
2711 vxlan->flags |= VXLAN_F_IPV6;
stephen hemmingerd3428942012-10-01 12:32:35 +00002712
2713 if (data[IFLA_VXLAN_TOS])
2714 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2715
Vincent Bernatafb97182012-10-30 10:27:16 +00002716 if (data[IFLA_VXLAN_TTL])
2717 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2718
stephen hemmingerd3428942012-10-01 12:32:35 +00002719 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002720 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002721
2722 if (data[IFLA_VXLAN_AGEING])
2723 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2724 else
2725 vxlan->age_interval = FDB_AGE_DEFAULT;
2726
David Stevense4f67ad2012-11-20 02:50:14 +00002727 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2728 vxlan->flags |= VXLAN_F_PROXY;
2729
2730 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2731 vxlan->flags |= VXLAN_F_RSC;
2732
2733 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2734 vxlan->flags |= VXLAN_F_L2MISS;
2735
2736 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2737 vxlan->flags |= VXLAN_F_L3MISS;
2738
stephen hemmingerd3428942012-10-01 12:32:35 +00002739 if (data[IFLA_VXLAN_LIMIT])
2740 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2741
stephen hemminger05f47d62012-10-09 20:35:50 +00002742 if (data[IFLA_VXLAN_PORT_RANGE]) {
2743 const struct ifla_vxlan_port_range *p
2744 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2745 vxlan->port_min = ntohs(p->low);
2746 vxlan->port_max = ntohs(p->high);
2747 }
2748
stephen hemminger823aa872013-04-27 11:31:57 +00002749 if (data[IFLA_VXLAN_PORT])
2750 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2751
Tom Herbert359a0ea2014-06-04 17:20:29 -07002752 if (data[IFLA_VXLAN_UDP_CSUM] && nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
2753 vxlan->flags |= VXLAN_F_UDP_CSUM;
2754
2755 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX] &&
2756 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
2757 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
2758
2759 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX] &&
2760 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
2761 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
2762
Tom Herbertdfd86452015-01-12 17:00:38 -08002763 if (data[IFLA_VXLAN_REMCSUM_TX] &&
2764 nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
2765 vxlan->flags |= VXLAN_F_REMCSUM_TX;
2766
2767 if (data[IFLA_VXLAN_REMCSUM_RX] &&
2768 nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
2769 vxlan->flags |= VXLAN_F_REMCSUM_RX;
2770
Thomas Graf35114942015-01-15 03:53:55 +01002771 if (data[IFLA_VXLAN_GBP])
2772 vxlan->flags |= VXLAN_F_GBP;
2773
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002774 if (vxlan_find_vni(net, vni, use_ipv6 ? AF_INET6 : AF_INET,
Thomas Grafac5132d2015-01-15 03:53:56 +01002775 vxlan->dst_port, vxlan->flags)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002776 pr_info("duplicate VNI %u\n", vni);
2777 return -EEXIST;
2778 }
2779
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002780 dev->ethtool_ops = &vxlan_ethtool_ops;
Yan Burman1b13c972013-01-29 23:43:07 +00002781
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002782 /* create an fdb entry for a valid default destination */
2783 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2784 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2785 &vxlan->default_dst.remote_ip,
2786 NUD_REACHABLE|NUD_PERMANENT,
2787 NLM_F_EXCL|NLM_F_CREATE,
2788 vxlan->dst_port,
2789 vxlan->default_dst.remote_vni,
2790 vxlan->default_dst.remote_ifindex,
2791 NTF_SELF);
2792 if (err)
2793 return err;
2794 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002795
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002796 err = register_netdevice(dev);
2797 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002798 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002799 return err;
2800 }
2801
stephen hemminger553675f2013-05-16 11:35:20 +00002802 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002803
2804 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002805}
2806
2807static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2808{
2809 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002810 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002811
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002812 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002813 if (!hlist_unhashed(&vxlan->hlist))
2814 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002815 spin_unlock(&vn->sock_lock);
2816
stephen hemminger553675f2013-05-16 11:35:20 +00002817 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002818 unregister_netdevice_queue(dev, head);
2819}
2820
2821static size_t vxlan_get_size(const struct net_device *dev)
2822{
2823
2824 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002825 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002826 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002827 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002828 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2829 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2830 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002831 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2832 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2833 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2834 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002835 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2836 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002837 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07002838 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
2839 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
2840 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
2841 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08002842 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
2843 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00002844 0;
2845}
2846
2847static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2848{
2849 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002850 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002851 struct ifla_vxlan_port_range ports = {
2852 .low = htons(vxlan->port_min),
2853 .high = htons(vxlan->port_max),
2854 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002855
Atzm Watanabec7995c42013-04-16 02:50:52 +00002856 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002857 goto nla_put_failure;
2858
Cong Wange4c7ed42013-08-31 13:44:33 +08002859 if (!vxlan_addr_any(&dst->remote_ip)) {
2860 if (dst->remote_ip.sa.sa_family == AF_INET) {
2861 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2862 dst->remote_ip.sin.sin_addr.s_addr))
2863 goto nla_put_failure;
2864#if IS_ENABLED(CONFIG_IPV6)
2865 } else {
2866 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2867 &dst->remote_ip.sin6.sin6_addr))
2868 goto nla_put_failure;
2869#endif
2870 }
2871 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002872
Atzm Watanabec7995c42013-04-16 02:50:52 +00002873 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002874 goto nla_put_failure;
2875
Cong Wange4c7ed42013-08-31 13:44:33 +08002876 if (!vxlan_addr_any(&vxlan->saddr)) {
2877 if (vxlan->saddr.sa.sa_family == AF_INET) {
2878 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2879 vxlan->saddr.sin.sin_addr.s_addr))
2880 goto nla_put_failure;
2881#if IS_ENABLED(CONFIG_IPV6)
2882 } else {
2883 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2884 &vxlan->saddr.sin6.sin6_addr))
2885 goto nla_put_failure;
2886#endif
2887 }
2888 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002889
2890 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2891 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002892 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2893 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2894 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2895 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2896 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2897 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2898 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2899 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2900 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002901 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002902 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07002903 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port) ||
2904 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
2905 !!(vxlan->flags & VXLAN_F_UDP_CSUM)) ||
2906 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
2907 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
2908 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Tom Herbertdfd86452015-01-12 17:00:38 -08002909 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
2910 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
2911 !!(vxlan->flags & VXLAN_F_REMCSUM_TX)) ||
2912 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
2913 !!(vxlan->flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00002914 goto nla_put_failure;
2915
stephen hemminger05f47d62012-10-09 20:35:50 +00002916 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2917 goto nla_put_failure;
2918
Thomas Graf35114942015-01-15 03:53:55 +01002919 if (vxlan->flags & VXLAN_F_GBP &&
2920 nla_put_flag(skb, IFLA_VXLAN_GBP))
2921 goto nla_put_failure;
2922
stephen hemmingerd3428942012-10-01 12:32:35 +00002923 return 0;
2924
2925nla_put_failure:
2926 return -EMSGSIZE;
2927}
2928
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002929static struct net *vxlan_get_link_net(const struct net_device *dev)
2930{
2931 struct vxlan_dev *vxlan = netdev_priv(dev);
2932
2933 return vxlan->net;
2934}
2935
stephen hemmingerd3428942012-10-01 12:32:35 +00002936static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2937 .kind = "vxlan",
2938 .maxtype = IFLA_VXLAN_MAX,
2939 .policy = vxlan_policy,
2940 .priv_size = sizeof(struct vxlan_dev),
2941 .setup = vxlan_setup,
2942 .validate = vxlan_validate,
2943 .newlink = vxlan_newlink,
2944 .dellink = vxlan_dellink,
2945 .get_size = vxlan_get_size,
2946 .fill_info = vxlan_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01002947 .get_link_net = vxlan_get_link_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00002948};
2949
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002950static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
2951 struct net_device *dev)
2952{
2953 struct vxlan_dev *vxlan, *next;
2954 LIST_HEAD(list_kill);
2955
2956 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2957 struct vxlan_rdst *dst = &vxlan->default_dst;
2958
2959 /* In case we created vxlan device with carrier
2960 * and we loose the carrier due to module unload
2961 * we also need to remove vxlan device. In other
2962 * cases, it's not necessary and remote_ifindex
2963 * is 0 here, so no matches.
2964 */
2965 if (dst->remote_ifindex == dev->ifindex)
2966 vxlan_dellink(vxlan->dev, &list_kill);
2967 }
2968
2969 unregister_netdevice_many(&list_kill);
2970}
2971
2972static int vxlan_lowerdev_event(struct notifier_block *unused,
2973 unsigned long event, void *ptr)
2974{
2975 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002976 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002977
Daniel Borkmann783c1462014-01-22 21:07:53 +01002978 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002979 vxlan_handle_lowerdev_unregister(vn, dev);
2980
2981 return NOTIFY_DONE;
2982}
2983
2984static struct notifier_block vxlan_notifier_block __read_mostly = {
2985 .notifier_call = vxlan_lowerdev_event,
2986};
2987
stephen hemmingerd3428942012-10-01 12:32:35 +00002988static __net_init int vxlan_init_net(struct net *net)
2989{
2990 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002991 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002992
stephen hemminger553675f2013-05-16 11:35:20 +00002993 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002994 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002995
stephen hemminger553675f2013-05-16 11:35:20 +00002996 for (h = 0; h < PORT_HASH_SIZE; ++h)
2997 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002998
2999 return 0;
3000}
3001
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003002static void __net_exit vxlan_exit_net(struct net *net)
3003{
3004 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
3005 struct vxlan_dev *vxlan, *next;
3006 struct net_device *dev, *aux;
3007 LIST_HEAD(list);
3008
3009 rtnl_lock();
3010 for_each_netdev_safe(net, dev, aux)
3011 if (dev->rtnl_link_ops == &vxlan_link_ops)
3012 unregister_netdevice_queue(dev, &list);
3013
3014 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
3015 /* If vxlan->dev is in the same netns, it has already been added
3016 * to the list by the previous loop.
3017 */
3018 if (!net_eq(dev_net(vxlan->dev), net))
3019 unregister_netdevice_queue(dev, &list);
3020 }
3021
3022 unregister_netdevice_many(&list);
3023 rtnl_unlock();
3024}
3025
stephen hemmingerd3428942012-10-01 12:32:35 +00003026static struct pernet_operations vxlan_net_ops = {
3027 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003028 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003029 .id = &vxlan_net_id,
3030 .size = sizeof(struct vxlan_net),
3031};
3032
3033static int __init vxlan_init_module(void)
3034{
3035 int rc;
3036
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003037 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
3038 if (!vxlan_wq)
3039 return -ENOMEM;
3040
stephen hemmingerd3428942012-10-01 12:32:35 +00003041 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3042
Daniel Borkmann783c1462014-01-22 21:07:53 +01003043 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003044 if (rc)
3045 goto out1;
3046
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003047 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003048 if (rc)
3049 goto out2;
3050
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003051 rc = rtnl_link_register(&vxlan_link_ops);
3052 if (rc)
3053 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003054
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003055 return 0;
3056out3:
3057 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003058out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003059 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003060out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003061 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00003062 return rc;
3063}
Cong Wang7332a132013-05-27 22:35:53 +00003064late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003065
3066static void __exit vxlan_cleanup_module(void)
3067{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003068 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003069 unregister_netdevice_notifier(&vxlan_notifier_block);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003070 destroy_workqueue(vxlan_wq);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003071 unregister_pernet_subsys(&vxlan_net_ops);
3072 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003073}
3074module_exit(vxlan_cleanup_module);
3075
3076MODULE_LICENSE("GPL");
3077MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003078MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003079MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003080MODULE_ALIAS_RTNL_LINK("vxlan");