blob: 6dbf8e0419221a986e1d929acd8fe684a9289444 [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
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200266/* Find VXLAN socket based on network namespace, address family and UDP port */
267static struct vxlan_sock *vxlan_find_sock(struct net *net,
268 sa_family_t family, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +0000269{
270 struct vxlan_sock *vs;
271
272 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200273 if (inet_sk(vs->sock->sk)->inet_sport == port &&
274 inet_sk(vs->sock->sk)->sk.sk_family == family)
stephen hemminger553675f2013-05-16 11:35:20 +0000275 return vs;
276 }
277 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000278}
279
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700280static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000281{
282 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000283
stephen hemminger553675f2013-05-16 11:35:20 +0000284 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000285 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000286 return vxlan;
287 }
288
289 return NULL;
290}
291
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700292/* Look up VNI in a per net namespace table */
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200293static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id,
294 sa_family_t family, __be16 port)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700295{
296 struct vxlan_sock *vs;
297
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200298 vs = vxlan_find_sock(net, family, port);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700299 if (!vs)
300 return NULL;
301
302 return vxlan_vs_find_vni(vs, id);
303}
304
stephen hemmingerd3428942012-10-01 12:32:35 +0000305/* Fill in neighbour message in skbuff. */
306static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700307 const struct vxlan_fdb *fdb,
308 u32 portid, u32 seq, int type, unsigned int flags,
309 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000310{
311 unsigned long now = jiffies;
312 struct nda_cacheinfo ci;
313 struct nlmsghdr *nlh;
314 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000315 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000316
317 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
318 if (nlh == NULL)
319 return -EMSGSIZE;
320
321 ndm = nlmsg_data(nlh);
322 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000323
324 send_eth = send_ip = true;
325
326 if (type == RTM_GETNEIGH) {
327 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800328 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000329 send_eth = !is_zero_ether_addr(fdb->eth_addr);
330 } else
331 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000332 ndm->ndm_state = fdb->state;
333 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000334 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800335 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000336
David Stevense4f67ad2012-11-20 02:50:14 +0000337 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000338 goto nla_put_failure;
339
Cong Wange4c7ed42013-08-31 13:44:33 +0800340 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000341 goto nla_put_failure;
342
stephen hemminger823aa872013-04-27 11:31:57 +0000343 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000344 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
345 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000346 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700347 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000348 goto nla_put_failure;
349 if (rdst->remote_ifindex &&
350 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000351 goto nla_put_failure;
352
353 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
354 ci.ndm_confirmed = 0;
355 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
356 ci.ndm_refcnt = 0;
357
358 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
359 goto nla_put_failure;
360
361 return nlmsg_end(skb, nlh);
362
363nla_put_failure:
364 nlmsg_cancel(skb, nlh);
365 return -EMSGSIZE;
366}
367
368static inline size_t vxlan_nlmsg_size(void)
369{
370 return NLMSG_ALIGN(sizeof(struct ndmsg))
371 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800372 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000373 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000374 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
375 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000376 + nla_total_size(sizeof(struct nda_cacheinfo));
377}
378
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200379static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
380 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000381{
382 struct net *net = dev_net(vxlan->dev);
383 struct sk_buff *skb;
384 int err = -ENOBUFS;
385
386 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
387 if (skb == NULL)
388 goto errout;
389
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200390 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000391 if (err < 0) {
392 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
393 WARN_ON(err == -EMSGSIZE);
394 kfree_skb(skb);
395 goto errout;
396 }
397
398 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
399 return;
400errout:
401 if (err < 0)
402 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
403}
404
Cong Wange4c7ed42013-08-31 13:44:33 +0800405static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000406{
407 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700408 struct vxlan_fdb f = {
409 .state = NUD_STALE,
410 };
411 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800412 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700413 .remote_vni = VXLAN_N_VID,
414 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700415
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200416 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000417}
418
419static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
420{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700421 struct vxlan_fdb f = {
422 .state = NUD_STALE,
423 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200424 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000425
David Stevense4f67ad2012-11-20 02:50:14 +0000426 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
427
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
stephen hemmingerd3428942012-10-01 12:32:35 +0000431/* Hash Ethernet address */
432static u32 eth_hash(const unsigned char *addr)
433{
434 u64 value = get_unaligned((u64 *)addr);
435
436 /* only want 6 bytes */
437#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000438 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000439#else
440 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000441#endif
442 return hash_64(value, FDB_HASH_BITS);
443}
444
445/* Hash chain to use given mac address */
446static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
447 const u8 *mac)
448{
449 return &vxlan->fdb_head[eth_hash(mac)];
450}
451
452/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000453static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000454 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000455{
456 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
457 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000458
Sasha Levinb67bfe02013-02-27 17:06:00 -0800459 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700460 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000461 return f;
462 }
463
464 return NULL;
465}
466
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000467static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
468 const u8 *mac)
469{
470 struct vxlan_fdb *f;
471
472 f = __vxlan_find_mac(vxlan, mac);
473 if (f)
474 f->used = jiffies;
475
476 return f;
477}
478
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300479/* caller should hold vxlan->hash_lock */
480static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800481 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300482 __u32 vni, __u32 ifindex)
483{
484 struct vxlan_rdst *rd;
485
486 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800487 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300488 rd->remote_port == port &&
489 rd->remote_vni == vni &&
490 rd->remote_ifindex == ifindex)
491 return rd;
492 }
493
494 return NULL;
495}
496
Thomas Richter906dc182013-07-19 17:20:07 +0200497/* Replace destination of unicast mac */
498static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800499 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200500{
501 struct vxlan_rdst *rd;
502
503 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
504 if (rd)
505 return 0;
506
507 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
508 if (!rd)
509 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800510 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200511 rd->remote_port = port;
512 rd->remote_vni = vni;
513 rd->remote_ifindex = ifindex;
514 return 1;
515}
516
David Stevens66817122013-03-15 04:35:51 +0000517/* Add/update destinations for multicast */
518static int vxlan_fdb_append(struct vxlan_fdb *f,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200519 union vxlan_addr *ip, __be16 port, __u32 vni,
520 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000521{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700522 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000523
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300524 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
525 if (rd)
526 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700527
David Stevens66817122013-03-15 04:35:51 +0000528 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
529 if (rd == NULL)
530 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800531 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000532 rd->remote_port = port;
533 rd->remote_vni = vni;
534 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700535
536 list_add_tail_rcu(&rd->list, &f->remotes);
537
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200538 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000539 return 1;
540}
541
Tom Herbertdfd86452015-01-12 17:00:38 -0800542static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb,
543 unsigned int off,
544 struct vxlanhdr *vh, size_t hdrlen,
545 u32 data)
546{
547 size_t start, offset, plen;
548 __wsum delta;
549
550 if (skb->remcsum_offload)
551 return vh;
552
553 if (!NAPI_GRO_CB(skb)->csum_valid)
554 return NULL;
555
556 start = (data & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
557 offset = start + ((data & VXLAN_RCO_UDP) ?
558 offsetof(struct udphdr, check) :
559 offsetof(struct tcphdr, check));
560
561 plen = hdrlen + offset + sizeof(u16);
562
563 /* Pull checksum that will be written */
564 if (skb_gro_header_hard(skb, off + plen)) {
565 vh = skb_gro_header_slow(skb, off + plen, off);
566 if (!vh)
567 return NULL;
568 }
569
570 delta = remcsum_adjust((void *)vh + hdrlen,
571 NAPI_GRO_CB(skb)->csum, start, offset);
572
573 /* Adjust skb->csum since we changed the packet */
574 skb->csum = csum_add(skb->csum, delta);
575 NAPI_GRO_CB(skb)->csum = csum_add(NAPI_GRO_CB(skb)->csum, delta);
576
577 skb->remcsum_offload = 1;
578
579 return vh;
580}
581
Tom Herberta2b12f32015-01-12 17:00:37 -0800582static struct sk_buff **vxlan_gro_receive(struct sk_buff **head,
583 struct sk_buff *skb,
584 struct udp_offload *uoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200585{
586 struct sk_buff *p, **pp = NULL;
587 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800588 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200589 int flush = 1;
Tom Herbertdfd86452015-01-12 17:00:38 -0800590 struct vxlan_sock *vs = container_of(uoff, struct vxlan_sock,
591 udp_offloads);
592 u32 flags;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200593
594 off_vx = skb_gro_offset(skb);
595 hlen = off_vx + sizeof(*vh);
596 vh = skb_gro_header_fast(skb, off_vx);
597 if (skb_gro_header_hard(skb, hlen)) {
598 vh = skb_gro_header_slow(skb, hlen, off_vx);
599 if (unlikely(!vh))
600 goto out;
601 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200602
Tom Herbertdfd86452015-01-12 17:00:38 -0800603 skb_gro_pull(skb, sizeof(struct vxlanhdr)); /* pull vxlan header */
604 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
605
606 flags = ntohl(vh->vx_flags);
607
608 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
609 vh = vxlan_gro_remcsum(skb, off_vx, vh, sizeof(struct vxlanhdr),
610 ntohl(vh->vx_vni));
611
612 if (!vh)
613 goto out;
614 }
615
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200616 flush = 0;
617
618 for (p = *head; p; p = p->next) {
619 if (!NAPI_GRO_CB(p)->same_flow)
620 continue;
621
622 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Thomas Graf35114942015-01-15 03:53:55 +0100623 if (vh->vx_flags != vh2->vx_flags ||
624 vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200625 NAPI_GRO_CB(p)->same_flow = 0;
626 continue;
627 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200628 }
629
Jesse Gross9b174d82014-12-30 19:10:15 -0800630 pp = eth_gro_receive(head, skb);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200631
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200632out:
633 NAPI_GRO_CB(skb)->flush |= flush;
634
635 return pp;
636}
637
Tom Herberta2b12f32015-01-12 17:00:37 -0800638static int vxlan_gro_complete(struct sk_buff *skb, int nhoff,
639 struct udp_offload *uoff)
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200640{
Jesse Grosscfdf1e12014-11-10 11:45:13 -0800641 udp_tunnel_gro_complete(skb, nhoff);
642
Jesse Gross9b174d82014-12-30 19:10:15 -0800643 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200644}
645
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700646/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200647static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700648{
649 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200650 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700651 struct net *net = sock_net(sk);
652 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700653 __be16 port = inet_sk(sk)->inet_sport;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200654 int err;
655
656 if (sa_family == AF_INET) {
657 err = udp_add_offload(&vs->udp_offloads);
658 if (err)
659 pr_warn("vxlan: udp_add_offload failed with status %d\n", err);
660 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700661
662 rcu_read_lock();
663 for_each_netdev_rcu(net, dev) {
664 if (dev->netdev_ops->ndo_add_vxlan_port)
665 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
666 port);
667 }
668 rcu_read_unlock();
669}
670
671/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200672static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700673{
674 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200675 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700676 struct net *net = sock_net(sk);
677 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700678 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700679
680 rcu_read_lock();
681 for_each_netdev_rcu(net, dev) {
682 if (dev->netdev_ops->ndo_del_vxlan_port)
683 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
684 port);
685 }
686 rcu_read_unlock();
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200687
688 if (sa_family == AF_INET)
689 udp_del_offload(&vs->udp_offloads);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700690}
691
stephen hemmingerd3428942012-10-01 12:32:35 +0000692/* Add new entry to forwarding table -- assumes lock held */
693static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800694 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000695 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000696 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000697 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000698{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200699 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000700 struct vxlan_fdb *f;
701 int notify = 0;
702
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000703 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000704 if (f) {
705 if (flags & NLM_F_EXCL) {
706 netdev_dbg(vxlan->dev,
707 "lost race to create %pM\n", mac);
708 return -EEXIST;
709 }
710 if (f->state != state) {
711 f->state = state;
712 f->updated = jiffies;
713 notify = 1;
714 }
David Stevensae884082013-04-19 00:36:26 +0000715 if (f->flags != ndm_flags) {
716 f->flags = ndm_flags;
717 f->updated = jiffies;
718 notify = 1;
719 }
Thomas Richter906dc182013-07-19 17:20:07 +0200720 if ((flags & NLM_F_REPLACE)) {
721 /* Only change unicasts */
722 if (!(is_multicast_ether_addr(f->eth_addr) ||
723 is_zero_ether_addr(f->eth_addr))) {
724 int rc = vxlan_fdb_replace(f, ip, port, vni,
725 ifindex);
726
727 if (rc < 0)
728 return rc;
729 notify |= rc;
730 } else
731 return -EOPNOTSUPP;
732 }
David Stevens66817122013-03-15 04:35:51 +0000733 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300734 (is_multicast_ether_addr(f->eth_addr) ||
735 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200736 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
737 &rd);
David Stevens66817122013-03-15 04:35:51 +0000738
739 if (rc < 0)
740 return rc;
741 notify |= rc;
742 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000743 } else {
744 if (!(flags & NLM_F_CREATE))
745 return -ENOENT;
746
747 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
748 return -ENOSPC;
749
Thomas Richter906dc182013-07-19 17:20:07 +0200750 /* Disallow replace to add a multicast entry */
751 if ((flags & NLM_F_REPLACE) &&
752 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
753 return -EOPNOTSUPP;
754
Cong Wange4c7ed42013-08-31 13:44:33 +0800755 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000756 f = kmalloc(sizeof(*f), GFP_ATOMIC);
757 if (!f)
758 return -ENOMEM;
759
760 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000761 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000762 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000763 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700764 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000765 memcpy(f->eth_addr, mac, ETH_ALEN);
766
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200767 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700768
stephen hemmingerd3428942012-10-01 12:32:35 +0000769 ++vxlan->addrcnt;
770 hlist_add_head_rcu(&f->hlist,
771 vxlan_fdb_head(vxlan, mac));
772 }
773
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200774 if (notify) {
775 if (rd == NULL)
776 rd = first_remote_rtnl(f);
777 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
778 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000779
780 return 0;
781}
782
Wei Yongjun6706c822013-04-11 19:00:35 +0000783static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000784{
785 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700786 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000787
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700788 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000789 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000790 kfree(f);
791}
792
stephen hemmingerd3428942012-10-01 12:32:35 +0000793static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
794{
795 netdev_dbg(vxlan->dev,
796 "delete %pM\n", f->eth_addr);
797
798 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200799 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000800
801 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000802 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000803}
804
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300805static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800806 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300807{
808 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800809 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300810
811 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800812 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
813 if (err)
814 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300815 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800816 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
817 if (remote->sa.sa_family == AF_INET) {
818 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
819 ip->sa.sa_family = AF_INET;
820#if IS_ENABLED(CONFIG_IPV6)
821 } else {
822 ip->sin6.sin6_addr = in6addr_any;
823 ip->sa.sa_family = AF_INET6;
824#endif
825 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300826 }
827
828 if (tb[NDA_PORT]) {
829 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
830 return -EINVAL;
831 *port = nla_get_be16(tb[NDA_PORT]);
832 } else {
833 *port = vxlan->dst_port;
834 }
835
836 if (tb[NDA_VNI]) {
837 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
838 return -EINVAL;
839 *vni = nla_get_u32(tb[NDA_VNI]);
840 } else {
841 *vni = vxlan->default_dst.remote_vni;
842 }
843
844 if (tb[NDA_IFINDEX]) {
845 struct net_device *tdev;
846
847 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
848 return -EINVAL;
849 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800850 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300851 if (!tdev)
852 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300853 } else {
854 *ifindex = 0;
855 }
856
857 return 0;
858}
859
stephen hemmingerd3428942012-10-01 12:32:35 +0000860/* Add static entry (via netlink) */
861static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
862 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100863 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000864{
865 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300866 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800867 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000868 __be16 port;
869 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000870 int err;
871
872 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
873 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
874 ndm->ndm_state);
875 return -EINVAL;
876 }
877
878 if (tb[NDA_DST] == NULL)
879 return -EINVAL;
880
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300881 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
882 if (err)
883 return err;
David Stevens66817122013-03-15 04:35:51 +0000884
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300885 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
886 return -EAFNOSUPPORT;
887
stephen hemmingerd3428942012-10-01 12:32:35 +0000888 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800889 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000890 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000891 spin_unlock_bh(&vxlan->hash_lock);
892
893 return err;
894}
895
896/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000897static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
898 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100899 const unsigned char *addr, u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000900{
901 struct vxlan_dev *vxlan = netdev_priv(dev);
902 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300903 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800904 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300905 __be16 port;
906 u32 vni, ifindex;
907 int err;
908
909 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
910 if (err)
911 return err;
912
913 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000914
915 spin_lock_bh(&vxlan->hash_lock);
916 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300917 if (!f)
918 goto out;
919
Cong Wange4c7ed42013-08-31 13:44:33 +0800920 if (!vxlan_addr_any(&ip)) {
921 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300922 if (!rd)
923 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000924 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300925
926 err = 0;
927
928 /* remove a destination if it's not the only one on the list,
929 * otherwise destroy the fdb entry
930 */
931 if (rd && !list_is_singular(&f->remotes)) {
932 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200933 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800934 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300935 goto out;
936 }
937
938 vxlan_fdb_destroy(vxlan, f);
939
940out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000941 spin_unlock_bh(&vxlan->hash_lock);
942
943 return err;
944}
945
946/* Dump forwarding table */
947static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400948 struct net_device *dev,
949 struct net_device *filter_dev, int idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000950{
951 struct vxlan_dev *vxlan = netdev_priv(dev);
952 unsigned int h;
953
954 for (h = 0; h < FDB_HASH_SIZE; ++h) {
955 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000956 int err;
957
Sasha Levinb67bfe02013-02-27 17:06:00 -0800958 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000959 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000960
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700961 if (idx < cb->args[0])
962 goto skip;
963
964 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000965 err = vxlan_fdb_info(skb, vxlan, f,
966 NETLINK_CB(cb->skb).portid,
967 cb->nlh->nlmsg_seq,
968 RTM_NEWNEIGH,
969 NLM_F_MULTI, rd);
970 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700971 goto out;
David Stevens66817122013-03-15 04:35:51 +0000972 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700973skip:
974 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000975 }
976 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700977out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000978 return idx;
979}
980
981/* Watch incoming packets to learn mapping between Ethernet address
982 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700983 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000984 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700985static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800986 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000987{
988 struct vxlan_dev *vxlan = netdev_priv(dev);
989 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000990
991 f = vxlan_find_mac(vxlan, src_mac);
992 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700993 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700994
Cong Wange4c7ed42013-08-31 13:44:33 +0800995 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700996 return false;
997
998 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700999 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -07001000 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +00001001
1002 if (net_ratelimit())
1003 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +08001004 "%pM migrated from %pIS to %pIS\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001005 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +00001006
Cong Wange4c7ed42013-08-31 13:44:33 +08001007 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +00001008 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +02001009 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +00001010 } else {
1011 /* learned new entry */
1012 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -07001013
1014 /* close off race between vxlan_flush and incoming packets */
1015 if (netif_running(dev))
1016 vxlan_fdb_create(vxlan, src_mac, src_ip,
1017 NUD_REACHABLE,
1018 NLM_F_EXCL|NLM_F_CREATE,
1019 vxlan->dst_port,
1020 vxlan->default_dst.remote_vni,
1021 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +00001022 spin_unlock(&vxlan->hash_lock);
1023 }
stephen hemminger26a41ae62013-06-17 12:09:58 -07001024
1025 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +00001026}
1027
stephen hemmingerd3428942012-10-01 12:32:35 +00001028/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +08001029static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +00001030{
stephen hemminger553675f2013-05-16 11:35:20 +00001031 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +00001032
Gao feng95ab0992013-12-10 16:37:33 +08001033 /* The vxlan_sock is only used by dev, leaving group has
1034 * no effect on other vxlan devices.
1035 */
1036 if (atomic_read(&dev->vn_sock->refcnt) == 1)
1037 return false;
1038
stephen hemminger553675f2013-05-16 11:35:20 +00001039 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +08001040 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +00001041 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +00001042
Gao feng95ab0992013-12-10 16:37:33 +08001043 if (vxlan->vn_sock != dev->vn_sock)
1044 continue;
1045
1046 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
1047 &dev->default_dst.remote_ip))
1048 continue;
1049
1050 if (vxlan->default_dst.remote_ifindex !=
1051 dev->default_dst.remote_ifindex)
1052 continue;
1053
1054 return true;
stephen hemminger553675f2013-05-16 11:35:20 +00001055 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001056
1057 return false;
1058}
1059
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001060static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001061{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001062 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001063}
1064
Pravin B Shelar012a5722013-08-19 11:23:07 -07001065void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001066{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07001067 struct sock *sk = vs->sock->sk;
1068 struct net *net = sock_net(sk);
1069 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -07001070
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001071 if (!atomic_dec_and_test(&vs->refcnt))
1072 return;
1073
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001074 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001075 hlist_del_rcu(&vs->hlist);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001076 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001077 spin_unlock(&vn->sock_lock);
1078
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001079 queue_work(vxlan_wq, &vs->del_work);
1080}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001081EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001082
stephen hemminger3fc2de22013-07-18 08:40:15 -07001083/* Callback to update multicast group membership when first VNI on
1084 * multicast asddress is brought up
1085 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001086 */
stephen hemminger3fc2de22013-07-18 08:40:15 -07001087static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001088{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001089 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001090 struct vxlan_sock *vs = vxlan->vn_sock;
1091 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001092 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1093 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001094
stephen hemmingerd3428942012-10-01 12:32:35 +00001095 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001096 if (ip->sa.sa_family == AF_INET) {
1097 struct ip_mreqn mreq = {
1098 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1099 .imr_ifindex = ifindex,
1100 };
1101
1102 ip_mc_join_group(sk, &mreq);
1103#if IS_ENABLED(CONFIG_IPV6)
1104 } else {
1105 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1106 &ip->sin6.sin6_addr);
1107#endif
1108 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001109 release_sock(sk);
1110
Pravin B Shelar012a5722013-08-19 11:23:07 -07001111 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001112 dev_put(vxlan->dev);
1113}
1114
1115/* Inverse of vxlan_igmp_join when last VNI is brought down */
1116static void vxlan_igmp_leave(struct work_struct *work)
1117{
1118 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001119 struct vxlan_sock *vs = vxlan->vn_sock;
1120 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001121 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1122 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001123
1124 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001125 if (ip->sa.sa_family == AF_INET) {
1126 struct ip_mreqn mreq = {
1127 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1128 .imr_ifindex = ifindex,
1129 };
1130
1131 ip_mc_leave_group(sk, &mreq);
1132#if IS_ENABLED(CONFIG_IPV6)
1133 } else {
1134 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1135 &ip->sin6.sin6_addr);
1136#endif
1137 }
1138
stephen hemmingerd3428942012-10-01 12:32:35 +00001139 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001140
Pravin B Shelar012a5722013-08-19 11:23:07 -07001141 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001142 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001143}
1144
Tom Herbertdfd86452015-01-12 17:00:38 -08001145static struct vxlanhdr *vxlan_remcsum(struct sk_buff *skb, struct vxlanhdr *vh,
1146 size_t hdrlen, u32 data)
1147{
1148 size_t start, offset, plen;
1149 __wsum delta;
1150
1151 if (skb->remcsum_offload) {
1152 /* Already processed in GRO path */
1153 skb->remcsum_offload = 0;
1154 return vh;
1155 }
1156
1157 start = (data & VXLAN_RCO_MASK) << VXLAN_RCO_SHIFT;
1158 offset = start + ((data & VXLAN_RCO_UDP) ?
1159 offsetof(struct udphdr, check) :
1160 offsetof(struct tcphdr, check));
1161
1162 plen = hdrlen + offset + sizeof(u16);
1163
1164 if (!pskb_may_pull(skb, plen))
1165 return NULL;
1166
1167 vh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
1168
1169 if (unlikely(skb->ip_summed != CHECKSUM_COMPLETE))
1170 __skb_checksum_complete(skb);
1171
1172 delta = remcsum_adjust((void *)vh + hdrlen,
1173 skb->csum, start, offset);
1174
1175 /* Adjust skb->csum since we changed the packet */
1176 skb->csum = csum_add(skb->csum, delta);
1177
1178 return vh;
1179}
1180
stephen hemmingerd3428942012-10-01 12:32:35 +00001181/* Callback from net/ipv4/udp.c to receive packets */
1182static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1183{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001184 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001185 struct vxlanhdr *vxh;
Tom Herbert3bf39472015-01-08 12:31:18 -08001186 u32 flags, vni;
Thomas Graf35114942015-01-15 03:53:55 +01001187 struct vxlan_metadata md = {0};
stephen hemmingerd3428942012-10-01 12:32:35 +00001188
stephen hemmingerd3428942012-10-01 12:32:35 +00001189 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001190 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001191 goto error;
1192
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001193 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
Tom Herbert3bf39472015-01-08 12:31:18 -08001194 flags = ntohl(vxh->vx_flags);
1195 vni = ntohl(vxh->vx_vni);
1196
1197 if (flags & VXLAN_HF_VNI) {
1198 flags &= ~VXLAN_HF_VNI;
1199 } else {
1200 /* VNI flag always required to be set */
1201 goto bad_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00001202 }
1203
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001204 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001205 goto drop;
Tom Herbertdfd86452015-01-12 17:00:38 -08001206 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +00001207
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001208 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001209 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001210 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001211
Tom Herbertdfd86452015-01-12 17:00:38 -08001212 if ((flags & VXLAN_HF_RCO) && (vs->flags & VXLAN_F_REMCSUM_RX)) {
1213 vxh = vxlan_remcsum(skb, vxh, sizeof(struct vxlanhdr), vni);
1214 if (!vxh)
1215 goto drop;
1216
1217 flags &= ~VXLAN_HF_RCO;
1218 vni &= VXLAN_VID_MASK;
1219 }
1220
Thomas Graf35114942015-01-15 03:53:55 +01001221 /* For backwards compatibility, only allow reserved fields to be
1222 * used by VXLAN extensions if explicitly requested.
1223 */
1224 if ((flags & VXLAN_HF_GBP) && (vs->flags & VXLAN_F_GBP)) {
1225 struct vxlanhdr_gbp *gbp;
1226
1227 gbp = (struct vxlanhdr_gbp *)vxh;
1228 md.gbp = ntohs(gbp->policy_id);
1229
1230 if (gbp->dont_learn)
1231 md.gbp |= VXLAN_GBP_DONT_LEARN;
1232
1233 if (gbp->policy_applied)
1234 md.gbp |= VXLAN_GBP_POLICY_APPLIED;
1235
1236 flags &= ~VXLAN_GBP_USED_BITS;
1237 }
1238
Tom Herbertdfd86452015-01-12 17:00:38 -08001239 if (flags || (vni & ~VXLAN_VID_MASK)) {
Tom Herbert3bf39472015-01-08 12:31:18 -08001240 /* If there are any unprocessed flags remaining treat
1241 * this as a malformed packet. This behavior diverges from
1242 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1243 * in reserved fields are to be ignored. The approach here
1244 * maintains compatbility with previous stack code, and also
1245 * is more robust and provides a little more security in
1246 * adding extensions to VXLAN.
1247 */
1248
1249 goto bad_flags;
1250 }
1251
Thomas Graf35114942015-01-15 03:53:55 +01001252 md.vni = vxh->vx_vni;
1253 vs->rcv(vs, skb, &md);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001254 return 0;
1255
1256drop:
1257 /* Consume bad packet */
1258 kfree_skb(skb);
1259 return 0;
1260
Tom Herbert3bf39472015-01-08 12:31:18 -08001261bad_flags:
1262 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1263 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1264
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001265error:
1266 /* Return non vxlan pkt */
1267 return 1;
1268}
1269
Thomas Graf35114942015-01-15 03:53:55 +01001270static void vxlan_rcv(struct vxlan_sock *vs, struct sk_buff *skb,
1271 struct vxlan_metadata *md)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001272{
Cong Wange4c7ed42013-08-31 13:44:33 +08001273 struct iphdr *oip = NULL;
1274 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001275 struct vxlan_dev *vxlan;
Li RongQing8f849852014-01-04 13:57:59 +08001276 struct pcpu_sw_netstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001277 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001278 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001279 int err = 0;
1280 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001281
Thomas Graf35114942015-01-15 03:53:55 +01001282 vni = ntohl(md->vni) >> 8;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001283 /* Is this VNI defined? */
1284 vxlan = vxlan_vs_find_vni(vs, vni);
1285 if (!vxlan)
1286 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001287
Cong Wange4c7ed42013-08-31 13:44:33 +08001288 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001289 skb_reset_mac_header(skb);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001290 skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev)));
stephen hemmingerd3428942012-10-01 12:32:35 +00001291 skb->protocol = eth_type_trans(skb, vxlan->dev);
Tom Herbertf79b0642014-06-14 23:24:36 -07001292 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
stephen hemmingerd3428942012-10-01 12:32:35 +00001293
1294 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001295 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001296 goto drop;
1297
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001298 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001299 if (remote_ip->sa.sa_family == AF_INET) {
1300 oip = ip_hdr(skb);
1301 saddr.sin.sin_addr.s_addr = oip->saddr;
1302 saddr.sa.sa_family = AF_INET;
1303#if IS_ENABLED(CONFIG_IPV6)
1304 } else {
1305 oip6 = ipv6_hdr(skb);
1306 saddr.sin6.sin6_addr = oip6->saddr;
1307 saddr.sa.sa_family = AF_INET6;
1308#endif
1309 }
1310
stephen hemminger26a41ae62013-06-17 12:09:58 -07001311 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001312 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001313 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001314
stephen hemmingerd3428942012-10-01 12:32:35 +00001315 skb_reset_network_header(skb);
Thomas Graf35114942015-01-15 03:53:55 +01001316 skb->mark = md->gbp;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001317
Cong Wange4c7ed42013-08-31 13:44:33 +08001318 if (oip6)
1319 err = IP6_ECN_decapsulate(oip6, skb);
1320 if (oip)
1321 err = IP_ECN_decapsulate(oip, skb);
1322
stephen hemmingerd3428942012-10-01 12:32:35 +00001323 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001324 if (log_ecn_error) {
1325 if (oip6)
1326 net_info_ratelimited("non-ECT from %pI6\n",
1327 &oip6->saddr);
1328 if (oip)
1329 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1330 &oip->saddr, oip->tos);
1331 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001332 if (err > 1) {
1333 ++vxlan->dev->stats.rx_frame_errors;
1334 ++vxlan->dev->stats.rx_errors;
1335 goto drop;
1336 }
1337 }
1338
Pravin B Shelare8171042013-03-25 14:49:46 +00001339 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001340 u64_stats_update_begin(&stats->syncp);
1341 stats->rx_packets++;
1342 stats->rx_bytes += skb->len;
1343 u64_stats_update_end(&stats->syncp);
1344
1345 netif_rx(skb);
1346
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001347 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001348drop:
1349 /* Consume bad packet */
1350 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001351}
1352
David Stevense4f67ad2012-11-20 02:50:14 +00001353static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1354{
1355 struct vxlan_dev *vxlan = netdev_priv(dev);
1356 struct arphdr *parp;
1357 u8 *arpptr, *sha;
1358 __be32 sip, tip;
1359 struct neighbour *n;
1360
1361 if (dev->flags & IFF_NOARP)
1362 goto out;
1363
1364 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1365 dev->stats.tx_dropped++;
1366 goto out;
1367 }
1368 parp = arp_hdr(skb);
1369
1370 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1371 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1372 parp->ar_pro != htons(ETH_P_IP) ||
1373 parp->ar_op != htons(ARPOP_REQUEST) ||
1374 parp->ar_hln != dev->addr_len ||
1375 parp->ar_pln != 4)
1376 goto out;
1377 arpptr = (u8 *)parp + sizeof(struct arphdr);
1378 sha = arpptr;
1379 arpptr += dev->addr_len; /* sha */
1380 memcpy(&sip, arpptr, sizeof(sip));
1381 arpptr += sizeof(sip);
1382 arpptr += dev->addr_len; /* tha */
1383 memcpy(&tip, arpptr, sizeof(tip));
1384
1385 if (ipv4_is_loopback(tip) ||
1386 ipv4_is_multicast(tip))
1387 goto out;
1388
1389 n = neigh_lookup(&arp_tbl, &tip, dev);
1390
1391 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001392 struct vxlan_fdb *f;
1393 struct sk_buff *reply;
1394
1395 if (!(n->nud_state & NUD_CONNECTED)) {
1396 neigh_release(n);
1397 goto out;
1398 }
1399
1400 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001401 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001402 /* bridge-local neighbor */
1403 neigh_release(n);
1404 goto out;
1405 }
1406
1407 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1408 n->ha, sha);
1409
1410 neigh_release(n);
1411
David Stevens73461352014-03-18 12:32:29 -04001412 if (reply == NULL)
1413 goto out;
1414
David Stevense4f67ad2012-11-20 02:50:14 +00001415 skb_reset_mac_header(reply);
1416 __skb_pull(reply, skb_network_offset(reply));
1417 reply->ip_summed = CHECKSUM_UNNECESSARY;
1418 reply->pkt_type = PACKET_HOST;
1419
1420 if (netif_rx_ni(reply) == NET_RX_DROP)
1421 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001422 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1423 union vxlan_addr ipa = {
1424 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001425 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001426 };
1427
1428 vxlan_ip_miss(dev, &ipa);
1429 }
David Stevense4f67ad2012-11-20 02:50:14 +00001430out:
1431 consume_skb(skb);
1432 return NETDEV_TX_OK;
1433}
1434
Cong Wangf564f452013-08-31 13:44:36 +08001435#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001436static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1437 struct neighbour *n, bool isrouter)
1438{
1439 struct net_device *dev = request->dev;
1440 struct sk_buff *reply;
1441 struct nd_msg *ns, *na;
1442 struct ipv6hdr *pip6;
1443 u8 *daddr;
1444 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1445 int ns_olen;
1446 int i, len;
1447
1448 if (dev == NULL)
1449 return NULL;
1450
1451 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1452 sizeof(*na) + na_olen + dev->needed_tailroom;
1453 reply = alloc_skb(len, GFP_ATOMIC);
1454 if (reply == NULL)
1455 return NULL;
1456
1457 reply->protocol = htons(ETH_P_IPV6);
1458 reply->dev = dev;
1459 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1460 skb_push(reply, sizeof(struct ethhdr));
1461 skb_set_mac_header(reply, 0);
1462
1463 ns = (struct nd_msg *)skb_transport_header(request);
1464
1465 daddr = eth_hdr(request)->h_source;
1466 ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns);
1467 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1468 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1469 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1470 break;
1471 }
1472 }
1473
1474 /* Ethernet header */
1475 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1476 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1477 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1478 reply->protocol = htons(ETH_P_IPV6);
1479
1480 skb_pull(reply, sizeof(struct ethhdr));
1481 skb_set_network_header(reply, 0);
1482 skb_put(reply, sizeof(struct ipv6hdr));
1483
1484 /* IPv6 header */
1485
1486 pip6 = ipv6_hdr(reply);
1487 memset(pip6, 0, sizeof(struct ipv6hdr));
1488 pip6->version = 6;
1489 pip6->priority = ipv6_hdr(request)->priority;
1490 pip6->nexthdr = IPPROTO_ICMPV6;
1491 pip6->hop_limit = 255;
1492 pip6->daddr = ipv6_hdr(request)->saddr;
1493 pip6->saddr = *(struct in6_addr *)n->primary_key;
1494
1495 skb_pull(reply, sizeof(struct ipv6hdr));
1496 skb_set_transport_header(reply, 0);
1497
1498 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1499
1500 /* Neighbor Advertisement */
1501 memset(na, 0, sizeof(*na)+na_olen);
1502 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1503 na->icmph.icmp6_router = isrouter;
1504 na->icmph.icmp6_override = 1;
1505 na->icmph.icmp6_solicited = 1;
1506 na->target = ns->target;
1507 ether_addr_copy(&na->opt[2], n->ha);
1508 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1509 na->opt[1] = na_olen >> 3;
1510
1511 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1512 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1513 csum_partial(na, sizeof(*na)+na_olen, 0));
1514
1515 pip6->payload_len = htons(sizeof(*na)+na_olen);
1516
1517 skb_push(reply, sizeof(struct ipv6hdr));
1518
1519 reply->ip_summed = CHECKSUM_UNNECESSARY;
1520
1521 return reply;
1522}
1523
Cong Wangf564f452013-08-31 13:44:36 +08001524static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1525{
1526 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001527 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001528 const struct ipv6hdr *iphdr;
1529 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001530 struct neighbour *n;
1531 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001532
1533 in6_dev = __in6_dev_get(dev);
1534 if (!in6_dev)
1535 goto out;
1536
Cong Wangf564f452013-08-31 13:44:36 +08001537 iphdr = ipv6_hdr(skb);
1538 saddr = &iphdr->saddr;
1539 daddr = &iphdr->daddr;
1540
Cong Wangf564f452013-08-31 13:44:36 +08001541 msg = (struct nd_msg *)skb_transport_header(skb);
1542 if (msg->icmph.icmp6_code != 0 ||
1543 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1544 goto out;
1545
David Stevens4b29dba2014-03-24 10:39:58 -04001546 if (ipv6_addr_loopback(daddr) ||
1547 ipv6_addr_is_multicast(&msg->target))
1548 goto out;
1549
1550 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001551
1552 if (n) {
1553 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001554 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001555
1556 if (!(n->nud_state & NUD_CONNECTED)) {
1557 neigh_release(n);
1558 goto out;
1559 }
1560
1561 f = vxlan_find_mac(vxlan, n->ha);
1562 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1563 /* bridge-local neighbor */
1564 neigh_release(n);
1565 goto out;
1566 }
1567
David Stevens4b29dba2014-03-24 10:39:58 -04001568 reply = vxlan_na_create(skb, n,
1569 !!(f ? f->flags & NTF_ROUTER : 0));
1570
Cong Wangf564f452013-08-31 13:44:36 +08001571 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001572
1573 if (reply == NULL)
1574 goto out;
1575
1576 if (netif_rx_ni(reply) == NET_RX_DROP)
1577 dev->stats.rx_dropped++;
1578
Cong Wangf564f452013-08-31 13:44:36 +08001579 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001580 union vxlan_addr ipa = {
1581 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001582 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001583 };
1584
Cong Wangf564f452013-08-31 13:44:36 +08001585 vxlan_ip_miss(dev, &ipa);
1586 }
1587
1588out:
1589 consume_skb(skb);
1590 return NETDEV_TX_OK;
1591}
1592#endif
1593
David Stevense4f67ad2012-11-20 02:50:14 +00001594static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1595{
1596 struct vxlan_dev *vxlan = netdev_priv(dev);
1597 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001598
1599 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1600 return false;
1601
1602 n = NULL;
1603 switch (ntohs(eth_hdr(skb)->h_proto)) {
1604 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001605 {
1606 struct iphdr *pip;
1607
David Stevense4f67ad2012-11-20 02:50:14 +00001608 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1609 return false;
1610 pip = ip_hdr(skb);
1611 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001612 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1613 union vxlan_addr ipa = {
1614 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001615 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001616 };
1617
1618 vxlan_ip_miss(dev, &ipa);
1619 return false;
1620 }
1621
David Stevense4f67ad2012-11-20 02:50:14 +00001622 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001623 }
1624#if IS_ENABLED(CONFIG_IPV6)
1625 case ETH_P_IPV6:
1626 {
1627 struct ipv6hdr *pip6;
1628
1629 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1630 return false;
1631 pip6 = ipv6_hdr(skb);
1632 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1633 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1634 union vxlan_addr ipa = {
1635 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001636 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001637 };
1638
1639 vxlan_ip_miss(dev, &ipa);
1640 return false;
1641 }
1642
1643 break;
1644 }
1645#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001646 default:
1647 return false;
1648 }
1649
1650 if (n) {
1651 bool diff;
1652
Joe Perches7367d0b2013-09-01 11:51:23 -07001653 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001654 if (diff) {
1655 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1656 dev->addr_len);
1657 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1658 }
1659 neigh_release(n);
1660 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001661 }
1662
David Stevense4f67ad2012-11-20 02:50:14 +00001663 return false;
1664}
1665
Thomas Graf35114942015-01-15 03:53:55 +01001666static void vxlan_build_gbp_hdr(struct vxlanhdr *vxh, struct vxlan_sock *vs,
1667 struct vxlan_metadata *md)
1668{
1669 struct vxlanhdr_gbp *gbp;
1670
1671 gbp = (struct vxlanhdr_gbp *)vxh;
1672 vxh->vx_flags |= htonl(VXLAN_HF_GBP);
1673
1674 if (md->gbp & VXLAN_GBP_DONT_LEARN)
1675 gbp->dont_learn = 1;
1676
1677 if (md->gbp & VXLAN_GBP_POLICY_APPLIED)
1678 gbp->policy_applied = 1;
1679
1680 gbp->policy_id = htons(md->gbp & VXLAN_GBP_ID_MASK);
1681}
1682
Cong Wange4c7ed42013-08-31 13:44:33 +08001683#if IS_ENABLED(CONFIG_IPV6)
Nicolas Dichtel11796182013-09-02 15:34:55 +02001684static int vxlan6_xmit_skb(struct vxlan_sock *vs,
Cong Wange4c7ed42013-08-31 13:44:33 +08001685 struct dst_entry *dst, struct sk_buff *skb,
1686 struct net_device *dev, struct in6_addr *saddr,
1687 struct in6_addr *daddr, __u8 prio, __u8 ttl,
Thomas Graf35114942015-01-15 03:53:55 +01001688 __be16 src_port, __be16 dst_port,
1689 struct vxlan_metadata *md, bool xnet)
Cong Wange4c7ed42013-08-31 13:44:33 +08001690{
Cong Wange4c7ed42013-08-31 13:44:33 +08001691 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001692 int min_headroom;
1693 int err;
Andy Zhouacbf74a2014-09-16 17:31:18 -07001694 bool udp_sum = !udp_get_no_check6_tx(vs->sock->sk);
Tom Herbertdfd86452015-01-12 17:00:38 -08001695 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1696 u16 hdrlen = sizeof(struct vxlanhdr);
Cong Wange4c7ed42013-08-31 13:44:33 +08001697
Tom Herbertdfd86452015-01-12 17:00:38 -08001698 if ((vs->flags & VXLAN_F_REMCSUM_TX) &&
1699 skb->ip_summed == CHECKSUM_PARTIAL) {
1700 int csum_start = skb_checksum_start_offset(skb);
1701
1702 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1703 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1704 (skb->csum_offset == offsetof(struct udphdr, check) ||
1705 skb->csum_offset == offsetof(struct tcphdr, check))) {
1706 udp_sum = false;
1707 type |= SKB_GSO_TUNNEL_REMCSUM;
1708 }
1709 }
1710
1711 skb = iptunnel_handle_offloads(skb, udp_sum, type);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001712 if (IS_ERR(skb)) {
1713 err = -EINVAL;
1714 goto err;
1715 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001716
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001717 skb_scrub_packet(skb, xnet);
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001718
Cong Wange4c7ed42013-08-31 13:44:33 +08001719 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1720 + VXLAN_HLEN + sizeof(struct ipv6hdr)
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001721 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Cong Wange4c7ed42013-08-31 13:44:33 +08001722
1723 /* Need space for new headers (invalidates iph ptr) */
1724 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001725 if (unlikely(err)) {
1726 kfree_skb(skb);
1727 goto err;
1728 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001729
Jiri Pirko59682502014-11-19 14:04:59 +01001730 skb = vlan_hwaccel_push_inside(skb);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001731 if (WARN_ON(!skb)) {
1732 err = -ENOMEM;
1733 goto err;
1734 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001735
1736 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001737 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Thomas Graf35114942015-01-15 03:53:55 +01001738 vxh->vx_vni = md->vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001739
Tom Herbertdfd86452015-01-12 17:00:38 -08001740 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1741 u32 data = (skb_checksum_start_offset(skb) - hdrlen) >>
1742 VXLAN_RCO_SHIFT;
1743
1744 if (skb->csum_offset == offsetof(struct udphdr, check))
1745 data |= VXLAN_RCO_UDP;
1746
1747 vxh->vx_vni |= htonl(data);
1748 vxh->vx_flags |= htonl(VXLAN_HF_RCO);
1749
1750 if (!skb_is_gso(skb)) {
1751 skb->ip_summed = CHECKSUM_NONE;
1752 skb->encapsulation = 0;
1753 }
1754 }
1755
Thomas Graf35114942015-01-15 03:53:55 +01001756 if (vs->flags & VXLAN_F_GBP)
1757 vxlan_build_gbp_hdr(vxh, vs, md);
1758
Tom Herbert996c9fd2014-09-29 20:22:33 -07001759 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1760
Andy Zhouacbf74a2014-09-16 17:31:18 -07001761 udp_tunnel6_xmit_skb(vs->sock, dst, skb, dev, saddr, daddr, prio,
1762 ttl, src_port, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001763 return 0;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001764err:
1765 dst_release(dst);
1766 return err;
Cong Wange4c7ed42013-08-31 13:44:33 +08001767}
1768#endif
1769
Nicolas Dichtel11796182013-09-02 15:34:55 +02001770int vxlan_xmit_skb(struct vxlan_sock *vs,
Pravin B Shelar49560532013-08-19 11:23:17 -07001771 struct rtable *rt, struct sk_buff *skb,
1772 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
Thomas Graf35114942015-01-15 03:53:55 +01001773 __be16 src_port, __be16 dst_port,
1774 struct vxlan_metadata *md, bool xnet)
Pravin B Shelar49560532013-08-19 11:23:17 -07001775{
1776 struct vxlanhdr *vxh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001777 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001778 int err;
Andy Zhouacbf74a2014-09-16 17:31:18 -07001779 bool udp_sum = !vs->sock->sk->sk_no_check_tx;
Tom Herbertdfd86452015-01-12 17:00:38 -08001780 int type = udp_sum ? SKB_GSO_UDP_TUNNEL_CSUM : SKB_GSO_UDP_TUNNEL;
1781 u16 hdrlen = sizeof(struct vxlanhdr);
Pravin B Shelar49560532013-08-19 11:23:17 -07001782
Tom Herbertdfd86452015-01-12 17:00:38 -08001783 if ((vs->flags & VXLAN_F_REMCSUM_TX) &&
1784 skb->ip_summed == CHECKSUM_PARTIAL) {
1785 int csum_start = skb_checksum_start_offset(skb);
1786
1787 if (csum_start <= VXLAN_MAX_REMCSUM_START &&
1788 !(csum_start & VXLAN_RCO_SHIFT_MASK) &&
1789 (skb->csum_offset == offsetof(struct udphdr, check) ||
1790 skb->csum_offset == offsetof(struct tcphdr, check))) {
1791 udp_sum = false;
1792 type |= SKB_GSO_TUNNEL_REMCSUM;
1793 }
1794 }
1795
1796 skb = iptunnel_handle_offloads(skb, udp_sum, type);
Tom Herbert359a0ea2014-06-04 17:20:29 -07001797 if (IS_ERR(skb))
Pravin B Shelar74f47272014-12-23 16:20:36 -08001798 return PTR_ERR(skb);
Pravin B Shelar49560532013-08-19 11:23:17 -07001799
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001800 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001801 + VXLAN_HLEN + sizeof(struct iphdr)
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001802 + (skb_vlan_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001803
1804 /* Need space for new headers (invalidates iph ptr) */
1805 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001806 if (unlikely(err)) {
1807 kfree_skb(skb);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001808 return err;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001809 }
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001810
Jiri Pirko59682502014-11-19 14:04:59 +01001811 skb = vlan_hwaccel_push_inside(skb);
1812 if (WARN_ON(!skb))
1813 return -ENOMEM;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001814
Pravin B Shelar49560532013-08-19 11:23:17 -07001815 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001816 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Thomas Graf35114942015-01-15 03:53:55 +01001817 vxh->vx_vni = md->vni;
Pravin B Shelar49560532013-08-19 11:23:17 -07001818
Tom Herbertdfd86452015-01-12 17:00:38 -08001819 if (type & SKB_GSO_TUNNEL_REMCSUM) {
1820 u32 data = (skb_checksum_start_offset(skb) - hdrlen) >>
1821 VXLAN_RCO_SHIFT;
1822
1823 if (skb->csum_offset == offsetof(struct udphdr, check))
1824 data |= VXLAN_RCO_UDP;
1825
1826 vxh->vx_vni |= htonl(data);
1827 vxh->vx_flags |= htonl(VXLAN_HF_RCO);
1828
1829 if (!skb_is_gso(skb)) {
1830 skb->ip_summed = CHECKSUM_NONE;
1831 skb->encapsulation = 0;
1832 }
1833 }
1834
Thomas Graf35114942015-01-15 03:53:55 +01001835 if (vs->flags & VXLAN_F_GBP)
1836 vxlan_build_gbp_hdr(vxh, vs, md);
1837
Tom Herbert996c9fd2014-09-29 20:22:33 -07001838 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1839
Andy Zhouacbf74a2014-09-16 17:31:18 -07001840 return udp_tunnel_xmit_skb(vs->sock, rt, skb, src, dst, tos,
1841 ttl, df, src_port, dst_port, xnet);
Pravin B Shelar49560532013-08-19 11:23:17 -07001842}
1843EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1844
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001845/* Bypass encapsulation if the destination is local */
1846static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1847 struct vxlan_dev *dst_vxlan)
1848{
Li RongQing8f849852014-01-04 13:57:59 +08001849 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001850 union vxlan_addr loopback;
1851 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001852 struct net_device *dev = skb->dev;
1853 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001854
Li RongQing8f849852014-01-04 13:57:59 +08001855 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1856 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001857 skb->pkt_type = PACKET_HOST;
1858 skb->encapsulation = 0;
1859 skb->dev = dst_vxlan->dev;
1860 __skb_pull(skb, skb_network_offset(skb));
1861
Cong Wange4c7ed42013-08-31 13:44:33 +08001862 if (remote_ip->sa.sa_family == AF_INET) {
1863 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1864 loopback.sa.sa_family = AF_INET;
1865#if IS_ENABLED(CONFIG_IPV6)
1866 } else {
1867 loopback.sin6.sin6_addr = in6addr_loopback;
1868 loopback.sa.sa_family = AF_INET6;
1869#endif
1870 }
1871
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001872 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001873 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001874
1875 u64_stats_update_begin(&tx_stats->syncp);
1876 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001877 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001878 u64_stats_update_end(&tx_stats->syncp);
1879
1880 if (netif_rx(skb) == NET_RX_SUCCESS) {
1881 u64_stats_update_begin(&rx_stats->syncp);
1882 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001883 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001884 u64_stats_update_end(&rx_stats->syncp);
1885 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08001886 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001887 }
1888}
1889
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001890static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1891 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001892{
1893 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001894 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001895 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001896 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001897 union vxlan_addr *dst;
Thomas Graf35114942015-01-15 03:53:55 +01001898 struct vxlan_metadata md;
Cong Wange4c7ed42013-08-31 13:44:33 +08001899 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001900 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001901 __be16 df = 0;
1902 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001903 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001904
stephen hemminger823aa872013-04-27 11:31:57 +00001905 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001906 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001907 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001908
Cong Wange4c7ed42013-08-31 13:44:33 +08001909 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001910 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001911 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001912 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001913 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001914 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001915 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001916 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001917
stephen hemmingerd3428942012-10-01 12:32:35 +00001918 old_iph = ip_hdr(skb);
1919
stephen hemmingerd3428942012-10-01 12:32:35 +00001920 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001921 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001922 ttl = 1;
1923
1924 tos = vxlan->tos;
1925 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001926 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001927
Tom Herbert535fb8d2014-07-01 21:32:49 -07001928 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->port_min,
1929 vxlan->port_max, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00001930
Cong Wange4c7ed42013-08-31 13:44:33 +08001931 if (dst->sa.sa_family == AF_INET) {
1932 memset(&fl4, 0, sizeof(fl4));
1933 fl4.flowi4_oif = rdst->remote_ifindex;
1934 fl4.flowi4_tos = RT_TOS(tos);
1935 fl4.daddr = dst->sin.sin_addr.s_addr;
1936 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001937
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001938 rt = ip_route_output_key(vxlan->net, &fl4);
Cong Wange4c7ed42013-08-31 13:44:33 +08001939 if (IS_ERR(rt)) {
1940 netdev_dbg(dev, "no route to %pI4\n",
1941 &dst->sin.sin_addr.s_addr);
1942 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001943 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001944 }
1945
1946 if (rt->dst.dev == dev) {
1947 netdev_dbg(dev, "circular route to %pI4\n",
1948 &dst->sin.sin_addr.s_addr);
1949 dev->stats.collisions++;
Fan Dufffc15a2013-12-09 10:33:53 +08001950 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001951 }
1952
1953 /* Bypass encapsulation if the destination is local */
1954 if (rt->rt_flags & RTCF_LOCAL &&
1955 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1956 struct vxlan_dev *dst_vxlan;
1957
1958 ip_rt_put(rt);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001959 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
1960 dst->sa.sa_family, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001961 if (!dst_vxlan)
1962 goto tx_error;
1963 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1964 return;
1965 }
1966
1967 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1968 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
Thomas Graf35114942015-01-15 03:53:55 +01001969 md.vni = htonl(vni << 8);
1970 md.gbp = skb->mark;
Cong Wange4c7ed42013-08-31 13:44:33 +08001971
Andy Zhou3c4d1da2014-09-23 01:44:51 -07001972 err = vxlan_xmit_skb(vxlan->vn_sock, rt, skb,
1973 fl4.saddr, dst->sin.sin_addr.s_addr,
Thomas Graf35114942015-01-15 03:53:55 +01001974 tos, ttl, df, src_port, dst_port, &md,
Andy Zhou3c4d1da2014-09-23 01:44:51 -07001975 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Pravin B Shelar74f47272014-12-23 16:20:36 -08001976 if (err < 0) {
1977 /* skb is already freed. */
1978 skb = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08001979 goto rt_tx_error;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001980 }
1981
Cong Wange4c7ed42013-08-31 13:44:33 +08001982 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1983#if IS_ENABLED(CONFIG_IPV6)
1984 } else {
1985 struct sock *sk = vxlan->vn_sock->sock->sk;
1986 struct dst_entry *ndst;
1987 struct flowi6 fl6;
1988 u32 flags;
1989
1990 memset(&fl6, 0, sizeof(fl6));
1991 fl6.flowi6_oif = rdst->remote_ifindex;
1992 fl6.daddr = dst->sin6.sin6_addr;
1993 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08001994 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08001995
1996 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
1997 netdev_dbg(dev, "no route to %pI6\n",
1998 &dst->sin6.sin6_addr);
1999 dev->stats.tx_carrier_errors++;
2000 goto tx_error;
2001 }
2002
2003 if (ndst->dev == dev) {
2004 netdev_dbg(dev, "circular route to %pI6\n",
2005 &dst->sin6.sin6_addr);
2006 dst_release(ndst);
2007 dev->stats.collisions++;
2008 goto tx_error;
2009 }
2010
2011 /* Bypass encapsulation if the destination is local */
2012 flags = ((struct rt6_info *)ndst)->rt6i_flags;
2013 if (flags & RTF_LOCAL &&
2014 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
2015 struct vxlan_dev *dst_vxlan;
2016
2017 dst_release(ndst);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002018 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
2019 dst->sa.sa_family, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08002020 if (!dst_vxlan)
2021 goto tx_error;
2022 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
2023 return;
2024 }
2025
2026 ttl = ttl ? : ip6_dst_hoplimit(ndst);
Thomas Graf35114942015-01-15 03:53:55 +01002027 md.vni = htonl(vni << 8);
2028 md.gbp = skb->mark;
Cong Wange4c7ed42013-08-31 13:44:33 +08002029
Nicolas Dichtel11796182013-09-02 15:34:55 +02002030 err = vxlan6_xmit_skb(vxlan->vn_sock, ndst, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08002031 dev, &fl6.saddr, &fl6.daddr, 0, ttl,
Thomas Graf35114942015-01-15 03:53:55 +01002032 src_port, dst_port, &md,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002033 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Cong Wange4c7ed42013-08-31 13:44:33 +08002034#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00002035 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002036
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002037 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00002038
2039drop:
2040 dev->stats.tx_dropped++;
2041 goto tx_free;
2042
Pravin B Shelar49560532013-08-19 11:23:17 -07002043rt_tx_error:
2044 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00002045tx_error:
2046 dev->stats.tx_errors++;
2047tx_free:
2048 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00002049}
2050
David Stevens66817122013-03-15 04:35:51 +00002051/* Transmit local packets over Vxlan
2052 *
2053 * Outer IP header inherits ECN and DF from inner header.
2054 * Outer UDP destination is the VXLAN assigned port.
2055 * source port is based on hash of flow
2056 */
2057static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
2058{
2059 struct vxlan_dev *vxlan = netdev_priv(dev);
2060 struct ethhdr *eth;
2061 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002062 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00002063 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00002064
2065 skb_reset_mac_header(skb);
2066 eth = eth_hdr(skb);
2067
Cong Wangf564f452013-08-31 13:44:36 +08002068 if ((vxlan->flags & VXLAN_F_PROXY)) {
2069 if (ntohs(eth->h_proto) == ETH_P_ARP)
2070 return arp_reduce(dev, skb);
2071#if IS_ENABLED(CONFIG_IPV6)
2072 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
Li RongQing91269e32014-10-16 09:17:18 +08002073 pskb_may_pull(skb, sizeof(struct ipv6hdr)
2074 + sizeof(struct nd_msg)) &&
Cong Wangf564f452013-08-31 13:44:36 +08002075 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
2076 struct nd_msg *msg;
2077
2078 msg = (struct nd_msg *)skb_transport_header(skb);
2079 if (msg->icmph.icmp6_code == 0 &&
2080 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
2081 return neigh_reduce(dev, skb);
2082 }
Li RongQing7a9f5262014-10-17 14:06:16 +08002083 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08002084#endif
2085 }
David Stevens66817122013-03-15 04:35:51 +00002086
2087 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00002088 did_rsc = false;
2089
2090 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08002091 (ntohs(eth->h_proto) == ETH_P_IP ||
2092 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00002093 did_rsc = route_shortcircuit(dev, skb);
2094 if (did_rsc)
2095 f = vxlan_find_mac(vxlan, eth->h_dest);
2096 }
2097
David Stevens66817122013-03-15 04:35:51 +00002098 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002099 f = vxlan_find_mac(vxlan, all_zeros_mac);
2100 if (f == NULL) {
2101 if ((vxlan->flags & VXLAN_F_L2MISS) &&
2102 !is_multicast_ether_addr(eth->h_dest))
2103 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00002104
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002105 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08002106 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002107 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07002108 }
David Stevens66817122013-03-15 04:35:51 +00002109 }
2110
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002111 list_for_each_entry_rcu(rdst, &f->remotes, list) {
2112 struct sk_buff *skb1;
2113
Eric Dumazet8f646c92014-01-06 09:54:31 -08002114 if (!fdst) {
2115 fdst = rdst;
2116 continue;
2117 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002118 skb1 = skb_clone(skb, GFP_ATOMIC);
2119 if (skb1)
2120 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
2121 }
2122
Eric Dumazet8f646c92014-01-06 09:54:31 -08002123 if (fdst)
2124 vxlan_xmit_one(skb, dev, fdst, did_rsc);
2125 else
2126 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07002127 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00002128}
2129
stephen hemmingerd3428942012-10-01 12:32:35 +00002130/* Walk the forwarding table and purge stale entries */
2131static void vxlan_cleanup(unsigned long arg)
2132{
2133 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
2134 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
2135 unsigned int h;
2136
2137 if (!netif_running(vxlan->dev))
2138 return;
2139
2140 spin_lock_bh(&vxlan->hash_lock);
2141 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2142 struct hlist_node *p, *n;
2143 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2144 struct vxlan_fdb *f
2145 = container_of(p, struct vxlan_fdb, hlist);
2146 unsigned long timeout;
2147
stephen hemminger3c172862012-10-26 06:24:34 +00002148 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00002149 continue;
2150
2151 timeout = f->used + vxlan->age_interval * HZ;
2152 if (time_before_eq(timeout, jiffies)) {
2153 netdev_dbg(vxlan->dev,
2154 "garbage collect %pM\n",
2155 f->eth_addr);
2156 f->state = NUD_STALE;
2157 vxlan_fdb_destroy(vxlan, f);
2158 } else if (time_before(timeout, next_timer))
2159 next_timer = timeout;
2160 }
2161 }
2162 spin_unlock_bh(&vxlan->hash_lock);
2163
2164 mod_timer(&vxlan->age_timer, next_timer);
2165}
2166
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002167static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
2168{
2169 __u32 vni = vxlan->default_dst.remote_vni;
2170
2171 vxlan->vn_sock = vs;
2172 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
2173}
2174
stephen hemmingerd3428942012-10-01 12:32:35 +00002175/* Setup stats when device is created */
2176static int vxlan_init(struct net_device *dev)
2177{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002178 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002179 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002180 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002181 bool ipv6 = vxlan->flags & VXLAN_F_IPV6;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002182
WANG Cong1c213bd2014-02-13 11:46:28 -08002183 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00002184 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00002185 return -ENOMEM;
2186
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002187 spin_lock(&vn->sock_lock);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002188 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
2189 vxlan->dst_port);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002190 if (vs && atomic_add_unless(&vs->refcnt, 1, 0)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002191 /* If we have a socket with same port already, reuse it */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002192 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002193 } else {
2194 /* otherwise make new socket outside of RTNL */
2195 dev_hold(dev);
2196 queue_work(vxlan_wq, &vxlan->sock_work);
2197 }
2198 spin_unlock(&vn->sock_lock);
2199
stephen hemmingerd3428942012-10-01 12:32:35 +00002200 return 0;
2201}
2202
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002203static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002204{
2205 struct vxlan_fdb *f;
2206
2207 spin_lock_bh(&vxlan->hash_lock);
2208 f = __vxlan_find_mac(vxlan, all_zeros_mac);
2209 if (f)
2210 vxlan_fdb_destroy(vxlan, f);
2211 spin_unlock_bh(&vxlan->hash_lock);
2212}
2213
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002214static void vxlan_uninit(struct net_device *dev)
2215{
2216 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002217 struct vxlan_sock *vs = vxlan->vn_sock;
2218
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002219 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002220
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002221 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07002222 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002223 free_percpu(dev->tstats);
2224}
2225
stephen hemmingerd3428942012-10-01 12:32:35 +00002226/* Start ageing timer and join group when device is brought up */
2227static int vxlan_open(struct net_device *dev)
2228{
2229 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002230 struct vxlan_sock *vs = vxlan->vn_sock;
2231
2232 /* socket hasn't been created */
2233 if (!vs)
2234 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002235
Gao feng79d4a942013-12-10 16:37:32 +08002236 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002237 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002238 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002239 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00002240 }
2241
2242 if (vxlan->age_interval)
2243 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2244
2245 return 0;
2246}
2247
2248/* Purge the forwarding table */
2249static void vxlan_flush(struct vxlan_dev *vxlan)
2250{
Cong Wang31fec5a2013-05-27 22:35:52 +00002251 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002252
2253 spin_lock_bh(&vxlan->hash_lock);
2254 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2255 struct hlist_node *p, *n;
2256 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2257 struct vxlan_fdb *f
2258 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002259 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2260 if (!is_zero_ether_addr(f->eth_addr))
2261 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002262 }
2263 }
2264 spin_unlock_bh(&vxlan->hash_lock);
2265}
2266
2267/* Cleanup timer and forwarding table on shutdown */
2268static int vxlan_stop(struct net_device *dev)
2269{
2270 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002271 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002272 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00002273
Cong Wange4c7ed42013-08-31 13:44:33 +08002274 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
Gao feng95ab0992013-12-10 16:37:33 +08002275 !vxlan_group_used(vn, vxlan)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002276 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002277 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002278 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002279 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002280
2281 del_timer_sync(&vxlan->age_timer);
2282
2283 vxlan_flush(vxlan);
2284
2285 return 0;
2286}
2287
stephen hemmingerd3428942012-10-01 12:32:35 +00002288/* Stub, nothing needs to be done. */
2289static void vxlan_set_multicast_list(struct net_device *dev)
2290{
2291}
2292
Daniel Borkmann345010b2013-12-18 00:21:08 +01002293static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2294{
2295 struct vxlan_dev *vxlan = netdev_priv(dev);
2296 struct vxlan_rdst *dst = &vxlan->default_dst;
2297 struct net_device *lowerdev;
2298 int max_mtu;
2299
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002300 lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002301 if (lowerdev == NULL)
2302 return eth_change_mtu(dev, new_mtu);
2303
2304 if (dst->remote_ip.sa.sa_family == AF_INET6)
2305 max_mtu = lowerdev->mtu - VXLAN6_HEADROOM;
2306 else
2307 max_mtu = lowerdev->mtu - VXLAN_HEADROOM;
2308
2309 if (new_mtu < 68 || new_mtu > max_mtu)
2310 return -EINVAL;
2311
2312 dev->mtu = new_mtu;
2313 return 0;
2314}
2315
stephen hemmingerd3428942012-10-01 12:32:35 +00002316static const struct net_device_ops vxlan_netdev_ops = {
2317 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002318 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002319 .ndo_open = vxlan_open,
2320 .ndo_stop = vxlan_stop,
2321 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002322 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002323 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002324 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002325 .ndo_validate_addr = eth_validate_addr,
2326 .ndo_set_mac_address = eth_mac_addr,
2327 .ndo_fdb_add = vxlan_fdb_add,
2328 .ndo_fdb_del = vxlan_fdb_delete,
2329 .ndo_fdb_dump = vxlan_fdb_dump,
2330};
2331
2332/* Info for udev, that this is a virtual tunnel endpoint */
2333static struct device_type vxlan_type = {
2334 .name = "vxlan",
2335};
2336
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002337/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002338 * supply the listening VXLAN udp ports. Callers are expected
2339 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002340 */
2341void vxlan_get_rx_port(struct net_device *dev)
2342{
2343 struct vxlan_sock *vs;
2344 struct net *net = dev_net(dev);
2345 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2346 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002347 __be16 port;
2348 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002349
2350 spin_lock(&vn->sock_lock);
2351 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002352 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2353 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002354 sa_family = vs->sock->sk->sk_family;
2355 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2356 port);
2357 }
2358 }
2359 spin_unlock(&vn->sock_lock);
2360}
2361EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2362
stephen hemmingerd3428942012-10-01 12:32:35 +00002363/* Initialize the device structure. */
2364static void vxlan_setup(struct net_device *dev)
2365{
2366 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002367 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002368
2369 eth_hw_addr_random(dev);
2370 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002371 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
Cong Wang2853af62014-06-12 11:53:10 -07002372 dev->needed_headroom = ETH_HLEN + VXLAN6_HEADROOM;
Cong Wange4c7ed42013-08-31 13:44:33 +08002373 else
Cong Wang2853af62014-06-12 11:53:10 -07002374 dev->needed_headroom = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002375
2376 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002377 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002378 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2379
2380 dev->tx_queue_len = 0;
2381 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002382 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002383 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002384 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002385
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002386 dev->vlan_features = dev->features;
2387 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002388 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002389 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002390 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Eric Dumazet02875872014-10-05 18:38:35 -07002391 netif_keep_dst(dev);
stephen hemminger6602d002012-12-31 12:00:21 +00002392 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002393
stephen hemminger553675f2013-05-16 11:35:20 +00002394 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002395 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002396 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2397 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002398 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002399
2400 init_timer_deferrable(&vxlan->age_timer);
2401 vxlan->age_timer.function = vxlan_cleanup;
2402 vxlan->age_timer.data = (unsigned long) vxlan;
2403
stephen hemminger823aa872013-04-27 11:31:57 +00002404 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002405
stephen hemmingerd3428942012-10-01 12:32:35 +00002406 vxlan->dev = dev;
2407
2408 for (h = 0; h < FDB_HASH_SIZE; ++h)
2409 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2410}
2411
2412static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2413 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002414 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002415 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002416 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2417 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002418 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002419 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2420 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2421 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2422 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2423 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002424 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002425 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2426 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2427 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2428 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002429 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002430 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2431 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2432 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
Tom Herbertdfd86452015-01-12 17:00:38 -08002433 [IFLA_VXLAN_REMCSUM_TX] = { .type = NLA_U8 },
2434 [IFLA_VXLAN_REMCSUM_RX] = { .type = NLA_U8 },
Thomas Graf35114942015-01-15 03:53:55 +01002435 [IFLA_VXLAN_GBP] = { .type = NLA_FLAG, },
stephen hemmingerd3428942012-10-01 12:32:35 +00002436};
2437
2438static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2439{
2440 if (tb[IFLA_ADDRESS]) {
2441 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2442 pr_debug("invalid link address (not ethernet)\n");
2443 return -EINVAL;
2444 }
2445
2446 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2447 pr_debug("invalid all zero ethernet address\n");
2448 return -EADDRNOTAVAIL;
2449 }
2450 }
2451
2452 if (!data)
2453 return -EINVAL;
2454
2455 if (data[IFLA_VXLAN_ID]) {
2456 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2457 if (id >= VXLAN_VID_MASK)
2458 return -ERANGE;
2459 }
2460
stephen hemminger05f47d62012-10-09 20:35:50 +00002461 if (data[IFLA_VXLAN_PORT_RANGE]) {
2462 const struct ifla_vxlan_port_range *p
2463 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2464
2465 if (ntohs(p->high) < ntohs(p->low)) {
2466 pr_debug("port range %u .. %u not valid\n",
2467 ntohs(p->low), ntohs(p->high));
2468 return -EINVAL;
2469 }
2470 }
2471
stephen hemmingerd3428942012-10-01 12:32:35 +00002472 return 0;
2473}
2474
Yan Burman1b13c972013-01-29 23:43:07 +00002475static void vxlan_get_drvinfo(struct net_device *netdev,
2476 struct ethtool_drvinfo *drvinfo)
2477{
2478 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2479 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2480}
2481
2482static const struct ethtool_ops vxlan_ethtool_ops = {
2483 .get_drvinfo = vxlan_get_drvinfo,
2484 .get_link = ethtool_op_get_link,
2485};
2486
stephen hemminger553675f2013-05-16 11:35:20 +00002487static void vxlan_del_work(struct work_struct *work)
2488{
2489 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002490 udp_tunnel_sock_release(vs->sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002491 kfree_rcu(vs, rcu);
2492}
2493
Tom Herbert3ee64f32014-07-13 19:49:42 -07002494static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2495 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002496{
Cong Wange4c7ed42013-08-31 13:44:33 +08002497 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002498 struct udp_port_cfg udp_conf;
2499 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002500
Tom Herbert3ee64f32014-07-13 19:49:42 -07002501 memset(&udp_conf, 0, sizeof(udp_conf));
2502
2503 if (ipv6) {
2504 udp_conf.family = AF_INET6;
2505 udp_conf.use_udp6_tx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002506 !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
Tom Herbert3ee64f32014-07-13 19:49:42 -07002507 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002508 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Tom Herbert3ee64f32014-07-13 19:49:42 -07002509 } else {
2510 udp_conf.family = AF_INET;
2511 udp_conf.local_ip.s_addr = INADDR_ANY;
2512 udp_conf.use_udp_checksums =
2513 !!(flags & VXLAN_F_UDP_CSUM);
Cong Wange4c7ed42013-08-31 13:44:33 +08002514 }
2515
Tom Herbert3ee64f32014-07-13 19:49:42 -07002516 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002517
Tom Herbert3ee64f32014-07-13 19:49:42 -07002518 /* Open UDP socket */
2519 err = udp_sock_create(net, &udp_conf, &sock);
2520 if (err < 0)
2521 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002522
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002523 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002524}
2525
2526/* Create new listen socket if needed */
2527static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002528 vxlan_rcv_t *rcv, void *data,
2529 u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002530{
2531 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2532 struct vxlan_sock *vs;
2533 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002534 unsigned int h;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002535 bool ipv6 = !!(flags & VXLAN_F_IPV6);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002536 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002537
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002538 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002539 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002540 return ERR_PTR(-ENOMEM);
2541
2542 for (h = 0; h < VNI_HASH_SIZE; ++h)
2543 INIT_HLIST_HEAD(&vs->vni_list[h]);
2544
2545 INIT_WORK(&vs->del_work, vxlan_del_work);
2546
Tom Herbert3ee64f32014-07-13 19:49:42 -07002547 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002548 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002549 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002550 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002551 }
2552
Cong Wange4c7ed42013-08-31 13:44:33 +08002553 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002554 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002555 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002556 vs->data = data;
Tom Herbertdfd86452015-01-12 17:00:38 -08002557 vs->flags = flags;
stephen hemminger553675f2013-05-16 11:35:20 +00002558
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002559 /* Initialize the vxlan udp offloads structure */
2560 vs->udp_offloads.port = port;
2561 vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive;
2562 vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete;
2563
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002564 spin_lock(&vn->sock_lock);
2565 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002566 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002567 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002568
2569 /* Mark socket as an encapsulation socket. */
Andy Zhouacbf74a2014-09-16 17:31:18 -07002570 tunnel_cfg.sk_user_data = vs;
2571 tunnel_cfg.encap_type = 1;
2572 tunnel_cfg.encap_rcv = vxlan_udp_encap_recv;
2573 tunnel_cfg.encap_destroy = NULL;
2574
2575 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002576
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002577 return vs;
2578}
stephen hemminger553675f2013-05-16 11:35:20 +00002579
Pravin B Shelar012a5722013-08-19 11:23:07 -07002580struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2581 vxlan_rcv_t *rcv, void *data,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002582 bool no_share, u32 flags)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002583{
2584 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2585 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002586 bool ipv6 = flags & VXLAN_F_IPV6;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002587
Tom Herbert359a0ea2014-06-04 17:20:29 -07002588 vs = vxlan_socket_create(net, port, rcv, data, flags);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002589 if (!IS_ERR(vs))
2590 return vs;
2591
Pravin B Shelar012a5722013-08-19 11:23:07 -07002592 if (no_share) /* Return error if sharing is not allowed. */
2593 return vs;
2594
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002595 spin_lock(&vn->sock_lock);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002596 vs = vxlan_find_sock(net, ipv6 ? AF_INET6 : AF_INET, port);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002597 if (vs && ((vs->rcv != rcv) ||
2598 !atomic_add_unless(&vs->refcnt, 1, 0)))
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002599 vs = ERR_PTR(-EBUSY);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002600 spin_unlock(&vn->sock_lock);
2601
2602 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002603 vs = ERR_PTR(-EINVAL);
2604
stephen hemminger553675f2013-05-16 11:35:20 +00002605 return vs;
2606}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002607EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002608
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002609/* Scheduled at device creation to bind to a socket */
2610static void vxlan_sock_work(struct work_struct *work)
2611{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002612 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002613 struct net *net = vxlan->net;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002614 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002615 __be16 port = vxlan->dst_port;
2616 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002617
Tom Herbert359a0ea2014-06-04 17:20:29 -07002618 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002619 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002620 if (!IS_ERR(nvs))
2621 vxlan_vs_add_dev(nvs, vxlan);
2622 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002623
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002624 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002625}
2626
stephen hemmingerd3428942012-10-01 12:32:35 +00002627static int vxlan_newlink(struct net *net, struct net_device *dev,
2628 struct nlattr *tb[], struct nlattr *data[])
2629{
stephen hemminger553675f2013-05-16 11:35:20 +00002630 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002631 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002632 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002633 __u32 vni;
2634 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002635 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002636
2637 if (!data[IFLA_VXLAN_ID])
2638 return -EINVAL;
2639
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002640 vxlan->net = dev_net(dev);
2641
stephen hemmingerd3428942012-10-01 12:32:35 +00002642 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002643 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002644
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002645 /* Unless IPv6 is explicitly requested, assume IPv4 */
2646 dst->remote_ip.sa.sa_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002647 if (data[IFLA_VXLAN_GROUP]) {
2648 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
Cong Wange4c7ed42013-08-31 13:44:33 +08002649 } else if (data[IFLA_VXLAN_GROUP6]) {
2650 if (!IS_ENABLED(CONFIG_IPV6))
2651 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002652
Cong Wange4c7ed42013-08-31 13:44:33 +08002653 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2654 sizeof(struct in6_addr));
2655 dst->remote_ip.sa.sa_family = AF_INET6;
2656 use_ipv6 = true;
2657 }
2658
2659 if (data[IFLA_VXLAN_LOCAL]) {
2660 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2661 vxlan->saddr.sa.sa_family = AF_INET;
2662 } else if (data[IFLA_VXLAN_LOCAL6]) {
2663 if (!IS_ENABLED(CONFIG_IPV6))
2664 return -EPFNOSUPPORT;
2665
2666 /* TODO: respect scope id */
2667 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2668 sizeof(struct in6_addr));
2669 vxlan->saddr.sa.sa_family = AF_INET6;
2670 use_ipv6 = true;
2671 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002672
stephen hemminger34e02aa2012-10-09 20:35:53 +00002673 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002674 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002675 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00002676 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002677
stephen hemminger34e02aa2012-10-09 20:35:53 +00002678 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002679 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002680 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002681 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002682
Cong Wange4c7ed42013-08-31 13:44:33 +08002683#if IS_ENABLED(CONFIG_IPV6)
2684 if (use_ipv6) {
2685 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2686 if (idev && idev->cnf.disable_ipv6) {
2687 pr_info("IPv6 is disabled via sysctl\n");
2688 return -EPERM;
2689 }
2690 vxlan->flags |= VXLAN_F_IPV6;
2691 }
2692#endif
2693
stephen hemminger34e02aa2012-10-09 20:35:53 +00002694 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002695 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002696
Cong Wang2853af62014-06-12 11:53:10 -07002697 dev->needed_headroom = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002698 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
fan.du7bda7012014-01-03 10:18:58 +08002699 } else if (use_ipv6)
2700 vxlan->flags |= VXLAN_F_IPV6;
stephen hemmingerd3428942012-10-01 12:32:35 +00002701
2702 if (data[IFLA_VXLAN_TOS])
2703 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2704
Vincent Bernatafb97182012-10-30 10:27:16 +00002705 if (data[IFLA_VXLAN_TTL])
2706 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2707
stephen hemmingerd3428942012-10-01 12:32:35 +00002708 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002709 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002710
2711 if (data[IFLA_VXLAN_AGEING])
2712 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2713 else
2714 vxlan->age_interval = FDB_AGE_DEFAULT;
2715
David Stevense4f67ad2012-11-20 02:50:14 +00002716 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2717 vxlan->flags |= VXLAN_F_PROXY;
2718
2719 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2720 vxlan->flags |= VXLAN_F_RSC;
2721
2722 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2723 vxlan->flags |= VXLAN_F_L2MISS;
2724
2725 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2726 vxlan->flags |= VXLAN_F_L3MISS;
2727
stephen hemmingerd3428942012-10-01 12:32:35 +00002728 if (data[IFLA_VXLAN_LIMIT])
2729 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2730
stephen hemminger05f47d62012-10-09 20:35:50 +00002731 if (data[IFLA_VXLAN_PORT_RANGE]) {
2732 const struct ifla_vxlan_port_range *p
2733 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2734 vxlan->port_min = ntohs(p->low);
2735 vxlan->port_max = ntohs(p->high);
2736 }
2737
stephen hemminger823aa872013-04-27 11:31:57 +00002738 if (data[IFLA_VXLAN_PORT])
2739 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2740
Tom Herbert359a0ea2014-06-04 17:20:29 -07002741 if (data[IFLA_VXLAN_UDP_CSUM] && nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
2742 vxlan->flags |= VXLAN_F_UDP_CSUM;
2743
2744 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX] &&
2745 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
2746 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
2747
2748 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX] &&
2749 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
2750 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
2751
Tom Herbertdfd86452015-01-12 17:00:38 -08002752 if (data[IFLA_VXLAN_REMCSUM_TX] &&
2753 nla_get_u8(data[IFLA_VXLAN_REMCSUM_TX]))
2754 vxlan->flags |= VXLAN_F_REMCSUM_TX;
2755
2756 if (data[IFLA_VXLAN_REMCSUM_RX] &&
2757 nla_get_u8(data[IFLA_VXLAN_REMCSUM_RX]))
2758 vxlan->flags |= VXLAN_F_REMCSUM_RX;
2759
Thomas Graf35114942015-01-15 03:53:55 +01002760 if (data[IFLA_VXLAN_GBP])
2761 vxlan->flags |= VXLAN_F_GBP;
2762
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002763 if (vxlan_find_vni(net, vni, use_ipv6 ? AF_INET6 : AF_INET,
2764 vxlan->dst_port)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002765 pr_info("duplicate VNI %u\n", vni);
2766 return -EEXIST;
2767 }
2768
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002769 dev->ethtool_ops = &vxlan_ethtool_ops;
Yan Burman1b13c972013-01-29 23:43:07 +00002770
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002771 /* create an fdb entry for a valid default destination */
2772 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2773 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2774 &vxlan->default_dst.remote_ip,
2775 NUD_REACHABLE|NUD_PERMANENT,
2776 NLM_F_EXCL|NLM_F_CREATE,
2777 vxlan->dst_port,
2778 vxlan->default_dst.remote_vni,
2779 vxlan->default_dst.remote_ifindex,
2780 NTF_SELF);
2781 if (err)
2782 return err;
2783 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002784
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002785 err = register_netdevice(dev);
2786 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002787 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002788 return err;
2789 }
2790
stephen hemminger553675f2013-05-16 11:35:20 +00002791 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002792
2793 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002794}
2795
2796static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2797{
2798 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002799 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002800
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002801 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002802 if (!hlist_unhashed(&vxlan->hlist))
2803 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002804 spin_unlock(&vn->sock_lock);
2805
stephen hemminger553675f2013-05-16 11:35:20 +00002806 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002807 unregister_netdevice_queue(dev, head);
2808}
2809
2810static size_t vxlan_get_size(const struct net_device *dev)
2811{
2812
2813 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002814 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002815 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002816 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002817 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2818 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2819 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002820 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2821 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2822 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2823 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002824 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2825 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002826 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07002827 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
2828 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
2829 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
2830 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
Tom Herbertdfd86452015-01-12 17:00:38 -08002831 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */
2832 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00002833 0;
2834}
2835
2836static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2837{
2838 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002839 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002840 struct ifla_vxlan_port_range ports = {
2841 .low = htons(vxlan->port_min),
2842 .high = htons(vxlan->port_max),
2843 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002844
Atzm Watanabec7995c42013-04-16 02:50:52 +00002845 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002846 goto nla_put_failure;
2847
Cong Wange4c7ed42013-08-31 13:44:33 +08002848 if (!vxlan_addr_any(&dst->remote_ip)) {
2849 if (dst->remote_ip.sa.sa_family == AF_INET) {
2850 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2851 dst->remote_ip.sin.sin_addr.s_addr))
2852 goto nla_put_failure;
2853#if IS_ENABLED(CONFIG_IPV6)
2854 } else {
2855 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2856 &dst->remote_ip.sin6.sin6_addr))
2857 goto nla_put_failure;
2858#endif
2859 }
2860 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002861
Atzm Watanabec7995c42013-04-16 02:50:52 +00002862 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002863 goto nla_put_failure;
2864
Cong Wange4c7ed42013-08-31 13:44:33 +08002865 if (!vxlan_addr_any(&vxlan->saddr)) {
2866 if (vxlan->saddr.sa.sa_family == AF_INET) {
2867 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2868 vxlan->saddr.sin.sin_addr.s_addr))
2869 goto nla_put_failure;
2870#if IS_ENABLED(CONFIG_IPV6)
2871 } else {
2872 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2873 &vxlan->saddr.sin6.sin6_addr))
2874 goto nla_put_failure;
2875#endif
2876 }
2877 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002878
2879 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2880 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002881 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2882 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2883 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2884 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2885 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2886 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2887 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2888 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2889 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002890 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002891 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07002892 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port) ||
2893 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
2894 !!(vxlan->flags & VXLAN_F_UDP_CSUM)) ||
2895 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
2896 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
2897 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
Tom Herbertdfd86452015-01-12 17:00:38 -08002898 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)) ||
2899 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_TX,
2900 !!(vxlan->flags & VXLAN_F_REMCSUM_TX)) ||
2901 nla_put_u8(skb, IFLA_VXLAN_REMCSUM_RX,
2902 !!(vxlan->flags & VXLAN_F_REMCSUM_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00002903 goto nla_put_failure;
2904
stephen hemminger05f47d62012-10-09 20:35:50 +00002905 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2906 goto nla_put_failure;
2907
Thomas Graf35114942015-01-15 03:53:55 +01002908 if (vxlan->flags & VXLAN_F_GBP &&
2909 nla_put_flag(skb, IFLA_VXLAN_GBP))
2910 goto nla_put_failure;
2911
stephen hemmingerd3428942012-10-01 12:32:35 +00002912 return 0;
2913
2914nla_put_failure:
2915 return -EMSGSIZE;
2916}
2917
2918static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2919 .kind = "vxlan",
2920 .maxtype = IFLA_VXLAN_MAX,
2921 .policy = vxlan_policy,
2922 .priv_size = sizeof(struct vxlan_dev),
2923 .setup = vxlan_setup,
2924 .validate = vxlan_validate,
2925 .newlink = vxlan_newlink,
2926 .dellink = vxlan_dellink,
2927 .get_size = vxlan_get_size,
2928 .fill_info = vxlan_fill_info,
2929};
2930
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002931static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
2932 struct net_device *dev)
2933{
2934 struct vxlan_dev *vxlan, *next;
2935 LIST_HEAD(list_kill);
2936
2937 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2938 struct vxlan_rdst *dst = &vxlan->default_dst;
2939
2940 /* In case we created vxlan device with carrier
2941 * and we loose the carrier due to module unload
2942 * we also need to remove vxlan device. In other
2943 * cases, it's not necessary and remote_ifindex
2944 * is 0 here, so no matches.
2945 */
2946 if (dst->remote_ifindex == dev->ifindex)
2947 vxlan_dellink(vxlan->dev, &list_kill);
2948 }
2949
2950 unregister_netdevice_many(&list_kill);
2951}
2952
2953static int vxlan_lowerdev_event(struct notifier_block *unused,
2954 unsigned long event, void *ptr)
2955{
2956 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002957 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002958
Daniel Borkmann783c1462014-01-22 21:07:53 +01002959 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002960 vxlan_handle_lowerdev_unregister(vn, dev);
2961
2962 return NOTIFY_DONE;
2963}
2964
2965static struct notifier_block vxlan_notifier_block __read_mostly = {
2966 .notifier_call = vxlan_lowerdev_event,
2967};
2968
stephen hemmingerd3428942012-10-01 12:32:35 +00002969static __net_init int vxlan_init_net(struct net *net)
2970{
2971 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002972 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002973
stephen hemminger553675f2013-05-16 11:35:20 +00002974 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002975 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002976
stephen hemminger553675f2013-05-16 11:35:20 +00002977 for (h = 0; h < PORT_HASH_SIZE; ++h)
2978 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002979
2980 return 0;
2981}
2982
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002983static void __net_exit vxlan_exit_net(struct net *net)
2984{
2985 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2986 struct vxlan_dev *vxlan, *next;
2987 struct net_device *dev, *aux;
2988 LIST_HEAD(list);
2989
2990 rtnl_lock();
2991 for_each_netdev_safe(net, dev, aux)
2992 if (dev->rtnl_link_ops == &vxlan_link_ops)
2993 unregister_netdevice_queue(dev, &list);
2994
2995 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2996 /* If vxlan->dev is in the same netns, it has already been added
2997 * to the list by the previous loop.
2998 */
2999 if (!net_eq(dev_net(vxlan->dev), net))
3000 unregister_netdevice_queue(dev, &list);
3001 }
3002
3003 unregister_netdevice_many(&list);
3004 rtnl_unlock();
3005}
3006
stephen hemmingerd3428942012-10-01 12:32:35 +00003007static struct pernet_operations vxlan_net_ops = {
3008 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02003009 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00003010 .id = &vxlan_net_id,
3011 .size = sizeof(struct vxlan_net),
3012};
3013
3014static int __init vxlan_init_module(void)
3015{
3016 int rc;
3017
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003018 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
3019 if (!vxlan_wq)
3020 return -ENOMEM;
3021
stephen hemmingerd3428942012-10-01 12:32:35 +00003022 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
3023
Daniel Borkmann783c1462014-01-22 21:07:53 +01003024 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003025 if (rc)
3026 goto out1;
3027
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003028 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003029 if (rc)
3030 goto out2;
3031
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003032 rc = rtnl_link_register(&vxlan_link_ops);
3033 if (rc)
3034 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00003035
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003036 return 0;
3037out3:
3038 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00003039out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01003040 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00003041out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003042 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00003043 return rc;
3044}
Cong Wang7332a132013-05-27 22:35:53 +00003045late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00003046
3047static void __exit vxlan_cleanup_module(void)
3048{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07003049 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01003050 unregister_netdevice_notifier(&vxlan_notifier_block);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07003051 destroy_workqueue(vxlan_wq);
Daniel Borkmann783c1462014-01-22 21:07:53 +01003052 unregister_pernet_subsys(&vxlan_net_ops);
3053 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00003054}
3055module_exit(vxlan_cleanup_module);
3056
3057MODULE_LICENSE("GPL");
3058MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00003059MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08003060MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00003061MODULE_ALIAS_RTNL_LINK("vxlan");