blob: 01ab64d5f9a41668a5cc1c504bddd69972f70170 [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>
36#include <net/rtnetlink.h>
37#include <net/route.h>
38#include <net/dsfield.h>
39#include <net/inet_ecn.h>
40#include <net/net_namespace.h>
41#include <net/netns/generic.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070042#include <net/vxlan.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080043#if IS_ENABLED(CONFIG_IPV6)
44#include <net/ipv6.h>
45#include <net/addrconf.h>
46#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080047#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080048#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000049
50#define VXLAN_VERSION "0.1"
51
stephen hemminger553675f2013-05-16 11:35:20 +000052#define PORT_HASH_BITS 8
53#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000054#define VNI_HASH_BITS 10
55#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
56#define FDB_HASH_BITS 8
57#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
58#define FDB_AGE_DEFAULT 300 /* 5 min */
59#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
60
61#define VXLAN_N_VID (1u << 24)
62#define VXLAN_VID_MASK (VXLAN_N_VID - 1)
Alexander Duyck52b702f2012-11-09 13:35:24 +000063/* IP header + UDP + VXLAN + Ethernet header */
64#define VXLAN_HEADROOM (20 + 8 + 8 + 14)
Cong Wange4c7ed42013-08-31 13:44:33 +080065/* IPv6 header + UDP + VXLAN + Ethernet header */
66#define VXLAN6_HEADROOM (40 + 8 + 8 + 14)
Pravin B Shelar7ce04752013-08-19 11:22:54 -070067#define VXLAN_HLEN (sizeof(struct udphdr) + sizeof(struct vxlanhdr))
stephen hemmingerd3428942012-10-01 12:32:35 +000068
69#define VXLAN_FLAGS 0x08000000 /* struct vxlanhdr.vx_flags required value. */
70
71/* VXLAN protocol header */
72struct vxlanhdr {
73 __be32 vx_flags;
74 __be32 vx_vni;
75};
76
stephen hemminger23c578b2013-04-27 11:31:53 +000077/* UDP port for VXLAN traffic.
78 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070079 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000080 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070081static unsigned short vxlan_port __read_mostly = 8472;
82module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000083MODULE_PARM_DESC(udp_port, "Destination UDP port");
84
85static bool log_ecn_error = true;
86module_param(log_ecn_error, bool, 0644);
87MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
88
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -070089static int vxlan_net_id;
stephen hemminger553675f2013-05-16 11:35:20 +000090
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030091static const u8 all_zeros_mac[ETH_ALEN];
92
stephen hemminger553675f2013-05-16 11:35:20 +000093/* per-network namespace private data for this module */
94struct vxlan_net {
95 struct list_head vxlan_list;
96 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070097 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000098};
99
Cong Wange4c7ed42013-08-31 13:44:33 +0800100union vxlan_addr {
101 struct sockaddr_in sin;
102 struct sockaddr_in6 sin6;
103 struct sockaddr sa;
104};
105
David Stevens66817122013-03-15 04:35:51 +0000106struct vxlan_rdst {
Cong Wange4c7ed42013-08-31 13:44:33 +0800107 union vxlan_addr remote_ip;
David Stevens66817122013-03-15 04:35:51 +0000108 __be16 remote_port;
109 u32 remote_vni;
110 u32 remote_ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700111 struct list_head list;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300112 struct rcu_head rcu;
David Stevens66817122013-03-15 04:35:51 +0000113};
114
stephen hemmingerd3428942012-10-01 12:32:35 +0000115/* Forwarding table entry */
116struct vxlan_fdb {
117 struct hlist_node hlist; /* linked list of entries */
118 struct rcu_head rcu;
119 unsigned long updated; /* jiffies */
120 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700121 struct list_head remotes;
stephen hemmingerd3428942012-10-01 12:32:35 +0000122 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +0000123 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +0000124 u8 eth_addr[ETH_ALEN];
125};
126
stephen hemmingerd3428942012-10-01 12:32:35 +0000127/* Pseudo network device */
128struct vxlan_dev {
stephen hemminger553675f2013-05-16 11:35:20 +0000129 struct hlist_node hlist; /* vni hash table */
130 struct list_head next; /* vxlan's per namespace list */
131 struct vxlan_sock *vn_sock; /* listening socket */
stephen hemmingerd3428942012-10-01 12:32:35 +0000132 struct net_device *dev;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000133 struct vxlan_rdst default_dst; /* default destination */
Cong Wange4c7ed42013-08-31 13:44:33 +0800134 union vxlan_addr saddr; /* source address */
stephen hemminger823aa872013-04-27 11:31:57 +0000135 __be16 dst_port;
stephen hemminger05f47d62012-10-09 20:35:50 +0000136 __u16 port_min; /* source port range */
137 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000138 __u8 tos; /* TOS override */
139 __u8 ttl;
David Stevense4f67ad2012-11-20 02:50:14 +0000140 u32 flags; /* VXLAN_F_* below */
stephen hemmingerd3428942012-10-01 12:32:35 +0000141
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700142 struct work_struct sock_work;
stephen hemminger3fc2de22013-07-18 08:40:15 -0700143 struct work_struct igmp_join;
144 struct work_struct igmp_leave;
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700145
stephen hemmingerd3428942012-10-01 12:32:35 +0000146 unsigned long age_interval;
147 struct timer_list age_timer;
148 spinlock_t hash_lock;
149 unsigned int addrcnt;
150 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000151
152 struct hlist_head fdb_head[FDB_HASH_SIZE];
153};
154
David Stevense4f67ad2012-11-20 02:50:14 +0000155#define VXLAN_F_LEARN 0x01
156#define VXLAN_F_PROXY 0x02
157#define VXLAN_F_RSC 0x04
158#define VXLAN_F_L2MISS 0x08
159#define VXLAN_F_L3MISS 0x10
Cong Wange4c7ed42013-08-31 13:44:33 +0800160#define VXLAN_F_IPV6 0x20 /* internal flag */
David Stevense4f67ad2012-11-20 02:50:14 +0000161
stephen hemmingerd3428942012-10-01 12:32:35 +0000162/* salt for hash table */
163static u32 vxlan_salt __read_mostly;
Stephen Hemminger758c57d2013-06-17 14:16:09 -0700164static struct workqueue_struct *vxlan_wq;
stephen hemmingerd3428942012-10-01 12:32:35 +0000165
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700166static void vxlan_sock_work(struct work_struct *work);
167
Cong Wange4c7ed42013-08-31 13:44:33 +0800168#if IS_ENABLED(CONFIG_IPV6)
169static inline
170bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
171{
172 if (a->sa.sa_family != b->sa.sa_family)
173 return false;
174 if (a->sa.sa_family == AF_INET6)
175 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
176 else
177 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
178}
179
180static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
181{
182 if (ipa->sa.sa_family == AF_INET6)
183 return ipv6_addr_any(&ipa->sin6.sin6_addr);
184 else
185 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
186}
187
188static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
189{
190 if (ipa->sa.sa_family == AF_INET6)
191 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
192 else
193 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
194}
195
196static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
197{
198 if (nla_len(nla) >= sizeof(struct in6_addr)) {
199 nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr));
200 ip->sa.sa_family = AF_INET6;
201 return 0;
202 } else if (nla_len(nla) >= sizeof(__be32)) {
203 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
204 ip->sa.sa_family = AF_INET;
205 return 0;
206 } else {
207 return -EAFNOSUPPORT;
208 }
209}
210
211static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
212 const union vxlan_addr *ip)
213{
214 if (ip->sa.sa_family == AF_INET6)
215 return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr);
216 else
217 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
218}
219
220#else /* !CONFIG_IPV6 */
221
222static inline
223bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
224{
225 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
226}
227
228static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
229{
230 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
231}
232
233static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
234{
235 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
236}
237
238static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
239{
240 if (nla_len(nla) >= sizeof(struct in6_addr)) {
241 return -EAFNOSUPPORT;
242 } else if (nla_len(nla) >= sizeof(__be32)) {
243 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
244 ip->sa.sa_family = AF_INET;
245 return 0;
246 } else {
247 return -EAFNOSUPPORT;
248 }
249}
250
251static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
252 const union vxlan_addr *ip)
253{
254 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
255}
256#endif
257
stephen hemminger553675f2013-05-16 11:35:20 +0000258/* Virtual Network hash table head */
259static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
260{
261 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
262}
263
264/* Socket hash table head */
265static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000266{
267 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
268
stephen hemminger553675f2013-05-16 11:35:20 +0000269 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
270}
271
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700272/* First remote destination for a forwarding entry.
273 * Guaranteed to be non-NULL because remotes are never deleted.
274 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700275static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700276{
stephen hemminger5ca54612013-08-04 17:17:39 -0700277 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
278}
279
280static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
281{
282 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700283}
284
stephen hemminger553675f2013-05-16 11:35:20 +0000285/* Find VXLAN socket based on network namespace and UDP port */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -0700286static struct vxlan_sock *vxlan_find_sock(struct net *net, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +0000287{
288 struct vxlan_sock *vs;
289
290 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
291 if (inet_sk(vs->sock->sk)->inet_sport == port)
292 return vs;
293 }
294 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000295}
296
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700297static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000298{
299 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000300
stephen hemminger553675f2013-05-16 11:35:20 +0000301 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000302 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000303 return vxlan;
304 }
305
306 return NULL;
307}
308
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700309/* Look up VNI in a per net namespace table */
310static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id, __be16 port)
311{
312 struct vxlan_sock *vs;
313
314 vs = vxlan_find_sock(net, port);
315 if (!vs)
316 return NULL;
317
318 return vxlan_vs_find_vni(vs, id);
319}
320
stephen hemmingerd3428942012-10-01 12:32:35 +0000321/* Fill in neighbour message in skbuff. */
322static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700323 const struct vxlan_fdb *fdb,
324 u32 portid, u32 seq, int type, unsigned int flags,
325 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000326{
327 unsigned long now = jiffies;
328 struct nda_cacheinfo ci;
329 struct nlmsghdr *nlh;
330 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000331 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000332
333 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
334 if (nlh == NULL)
335 return -EMSGSIZE;
336
337 ndm = nlmsg_data(nlh);
338 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000339
340 send_eth = send_ip = true;
341
342 if (type == RTM_GETNEIGH) {
343 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800344 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000345 send_eth = !is_zero_ether_addr(fdb->eth_addr);
346 } else
347 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000348 ndm->ndm_state = fdb->state;
349 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000350 ndm->ndm_flags = fdb->flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000351 ndm->ndm_type = NDA_DST;
352
David Stevense4f67ad2012-11-20 02:50:14 +0000353 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000354 goto nla_put_failure;
355
Cong Wange4c7ed42013-08-31 13:44:33 +0800356 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000357 goto nla_put_failure;
358
stephen hemminger823aa872013-04-27 11:31:57 +0000359 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000360 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
361 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000362 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700363 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000364 goto nla_put_failure;
365 if (rdst->remote_ifindex &&
366 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000367 goto nla_put_failure;
368
369 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
370 ci.ndm_confirmed = 0;
371 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
372 ci.ndm_refcnt = 0;
373
374 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
375 goto nla_put_failure;
376
377 return nlmsg_end(skb, nlh);
378
379nla_put_failure:
380 nlmsg_cancel(skb, nlh);
381 return -EMSGSIZE;
382}
383
384static inline size_t vxlan_nlmsg_size(void)
385{
386 return NLMSG_ALIGN(sizeof(struct ndmsg))
387 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800388 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000389 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000390 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
391 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000392 + nla_total_size(sizeof(struct nda_cacheinfo));
393}
394
395static void vxlan_fdb_notify(struct vxlan_dev *vxlan,
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700396 struct vxlan_fdb *fdb, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000397{
398 struct net *net = dev_net(vxlan->dev);
399 struct sk_buff *skb;
400 int err = -ENOBUFS;
401
402 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
403 if (skb == NULL)
404 goto errout;
405
stephen hemminger5ca54612013-08-04 17:17:39 -0700406 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0,
407 first_remote_rtnl(fdb));
stephen hemmingerd3428942012-10-01 12:32:35 +0000408 if (err < 0) {
409 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
410 WARN_ON(err == -EMSGSIZE);
411 kfree_skb(skb);
412 goto errout;
413 }
414
415 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
416 return;
417errout:
418 if (err < 0)
419 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
420}
421
Cong Wange4c7ed42013-08-31 13:44:33 +0800422static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000423{
424 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700425 struct vxlan_fdb f = {
426 .state = NUD_STALE,
427 };
428 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800429 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700430 .remote_vni = VXLAN_N_VID,
431 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700432
433 INIT_LIST_HEAD(&f.remotes);
434 list_add_rcu(&remote.list, &f.remotes);
David Stevense4f67ad2012-11-20 02:50:14 +0000435
436 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
437}
438
439static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
440{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700441 struct vxlan_fdb f = {
442 .state = NUD_STALE,
443 };
David Stevense4f67ad2012-11-20 02:50:14 +0000444
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700445 INIT_LIST_HEAD(&f.remotes);
David Stevense4f67ad2012-11-20 02:50:14 +0000446 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
447
448 vxlan_fdb_notify(vxlan, &f, RTM_GETNEIGH);
449}
450
stephen hemmingerd3428942012-10-01 12:32:35 +0000451/* Hash Ethernet address */
452static u32 eth_hash(const unsigned char *addr)
453{
454 u64 value = get_unaligned((u64 *)addr);
455
456 /* only want 6 bytes */
457#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000458 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000459#else
460 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000461#endif
462 return hash_64(value, FDB_HASH_BITS);
463}
464
465/* Hash chain to use given mac address */
466static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
467 const u8 *mac)
468{
469 return &vxlan->fdb_head[eth_hash(mac)];
470}
471
472/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000473static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000474 const u8 *mac)
475
476{
477 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
478 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000479
Sasha Levinb67bfe02013-02-27 17:06:00 -0800480 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700481 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000482 return f;
483 }
484
485 return NULL;
486}
487
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000488static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
489 const u8 *mac)
490{
491 struct vxlan_fdb *f;
492
493 f = __vxlan_find_mac(vxlan, mac);
494 if (f)
495 f->used = jiffies;
496
497 return f;
498}
499
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300500/* caller should hold vxlan->hash_lock */
501static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800502 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300503 __u32 vni, __u32 ifindex)
504{
505 struct vxlan_rdst *rd;
506
507 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800508 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300509 rd->remote_port == port &&
510 rd->remote_vni == vni &&
511 rd->remote_ifindex == ifindex)
512 return rd;
513 }
514
515 return NULL;
516}
517
Thomas Richter906dc182013-07-19 17:20:07 +0200518/* Replace destination of unicast mac */
519static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800520 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200521{
522 struct vxlan_rdst *rd;
523
524 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
525 if (rd)
526 return 0;
527
528 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
529 if (!rd)
530 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800531 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200532 rd->remote_port = port;
533 rd->remote_vni = vni;
534 rd->remote_ifindex = ifindex;
535 return 1;
536}
537
David Stevens66817122013-03-15 04:35:51 +0000538/* Add/update destinations for multicast */
539static int vxlan_fdb_append(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800540 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
David Stevens66817122013-03-15 04:35:51 +0000541{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700542 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000543
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300544 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
545 if (rd)
546 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700547
David Stevens66817122013-03-15 04:35:51 +0000548 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
549 if (rd == NULL)
550 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800551 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000552 rd->remote_port = port;
553 rd->remote_vni = vni;
554 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700555
556 list_add_tail_rcu(&rd->list, &f->remotes);
557
David Stevens66817122013-03-15 04:35:51 +0000558 return 1;
559}
560
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700561/* Notify netdevs that UDP port started listening */
562static void vxlan_notify_add_rx_port(struct sock *sk)
563{
564 struct net_device *dev;
565 struct net *net = sock_net(sk);
566 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700567 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700568
569 rcu_read_lock();
570 for_each_netdev_rcu(net, dev) {
571 if (dev->netdev_ops->ndo_add_vxlan_port)
572 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
573 port);
574 }
575 rcu_read_unlock();
576}
577
578/* Notify netdevs that UDP port is no more listening */
579static void vxlan_notify_del_rx_port(struct sock *sk)
580{
581 struct net_device *dev;
582 struct net *net = sock_net(sk);
583 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700584 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700585
586 rcu_read_lock();
587 for_each_netdev_rcu(net, dev) {
588 if (dev->netdev_ops->ndo_del_vxlan_port)
589 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
590 port);
591 }
592 rcu_read_unlock();
593}
594
stephen hemmingerd3428942012-10-01 12:32:35 +0000595/* Add new entry to forwarding table -- assumes lock held */
596static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800597 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000598 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000599 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000600 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000601{
602 struct vxlan_fdb *f;
603 int notify = 0;
604
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000605 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000606 if (f) {
607 if (flags & NLM_F_EXCL) {
608 netdev_dbg(vxlan->dev,
609 "lost race to create %pM\n", mac);
610 return -EEXIST;
611 }
612 if (f->state != state) {
613 f->state = state;
614 f->updated = jiffies;
615 notify = 1;
616 }
David Stevensae884082013-04-19 00:36:26 +0000617 if (f->flags != ndm_flags) {
618 f->flags = ndm_flags;
619 f->updated = jiffies;
620 notify = 1;
621 }
Thomas Richter906dc182013-07-19 17:20:07 +0200622 if ((flags & NLM_F_REPLACE)) {
623 /* Only change unicasts */
624 if (!(is_multicast_ether_addr(f->eth_addr) ||
625 is_zero_ether_addr(f->eth_addr))) {
626 int rc = vxlan_fdb_replace(f, ip, port, vni,
627 ifindex);
628
629 if (rc < 0)
630 return rc;
631 notify |= rc;
632 } else
633 return -EOPNOTSUPP;
634 }
David Stevens66817122013-03-15 04:35:51 +0000635 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300636 (is_multicast_ether_addr(f->eth_addr) ||
637 is_zero_ether_addr(f->eth_addr))) {
David Stevens66817122013-03-15 04:35:51 +0000638 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex);
639
640 if (rc < 0)
641 return rc;
642 notify |= rc;
643 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000644 } else {
645 if (!(flags & NLM_F_CREATE))
646 return -ENOENT;
647
648 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
649 return -ENOSPC;
650
Thomas Richter906dc182013-07-19 17:20:07 +0200651 /* Disallow replace to add a multicast entry */
652 if ((flags & NLM_F_REPLACE) &&
653 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
654 return -EOPNOTSUPP;
655
Cong Wange4c7ed42013-08-31 13:44:33 +0800656 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000657 f = kmalloc(sizeof(*f), GFP_ATOMIC);
658 if (!f)
659 return -ENOMEM;
660
661 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000662 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000663 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000664 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700665 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000666 memcpy(f->eth_addr, mac, ETH_ALEN);
667
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700668 vxlan_fdb_append(f, ip, port, vni, ifindex);
669
stephen hemmingerd3428942012-10-01 12:32:35 +0000670 ++vxlan->addrcnt;
671 hlist_add_head_rcu(&f->hlist,
672 vxlan_fdb_head(vxlan, mac));
673 }
674
675 if (notify)
676 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
677
678 return 0;
679}
680
Wei Yongjun6706c822013-04-11 19:00:35 +0000681static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000682{
683 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700684 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000685
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700686 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000687 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000688 kfree(f);
689}
690
stephen hemmingerd3428942012-10-01 12:32:35 +0000691static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
692{
693 netdev_dbg(vxlan->dev,
694 "delete %pM\n", f->eth_addr);
695
696 --vxlan->addrcnt;
697 vxlan_fdb_notify(vxlan, f, RTM_DELNEIGH);
698
699 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000700 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000701}
702
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300703static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800704 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300705{
706 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800707 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300708
709 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800710 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
711 if (err)
712 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300713 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800714 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
715 if (remote->sa.sa_family == AF_INET) {
716 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
717 ip->sa.sa_family = AF_INET;
718#if IS_ENABLED(CONFIG_IPV6)
719 } else {
720 ip->sin6.sin6_addr = in6addr_any;
721 ip->sa.sa_family = AF_INET6;
722#endif
723 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300724 }
725
726 if (tb[NDA_PORT]) {
727 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
728 return -EINVAL;
729 *port = nla_get_be16(tb[NDA_PORT]);
730 } else {
731 *port = vxlan->dst_port;
732 }
733
734 if (tb[NDA_VNI]) {
735 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
736 return -EINVAL;
737 *vni = nla_get_u32(tb[NDA_VNI]);
738 } else {
739 *vni = vxlan->default_dst.remote_vni;
740 }
741
742 if (tb[NDA_IFINDEX]) {
743 struct net_device *tdev;
744
745 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
746 return -EINVAL;
747 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
748 tdev = dev_get_by_index(net, *ifindex);
749 if (!tdev)
750 return -EADDRNOTAVAIL;
751 dev_put(tdev);
752 } else {
753 *ifindex = 0;
754 }
755
756 return 0;
757}
758
stephen hemmingerd3428942012-10-01 12:32:35 +0000759/* Add static entry (via netlink) */
760static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
761 struct net_device *dev,
762 const unsigned char *addr, u16 flags)
763{
764 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300765 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800766 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000767 __be16 port;
768 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000769 int err;
770
771 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
772 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
773 ndm->ndm_state);
774 return -EINVAL;
775 }
776
777 if (tb[NDA_DST] == NULL)
778 return -EINVAL;
779
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300780 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
781 if (err)
782 return err;
David Stevens66817122013-03-15 04:35:51 +0000783
stephen hemmingerd3428942012-10-01 12:32:35 +0000784 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800785 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000786 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000787 spin_unlock_bh(&vxlan->hash_lock);
788
789 return err;
790}
791
792/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000793static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
794 struct net_device *dev,
stephen hemmingerd3428942012-10-01 12:32:35 +0000795 const unsigned char *addr)
796{
797 struct vxlan_dev *vxlan = netdev_priv(dev);
798 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300799 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800800 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300801 __be16 port;
802 u32 vni, ifindex;
803 int err;
804
805 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
806 if (err)
807 return err;
808
809 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000810
811 spin_lock_bh(&vxlan->hash_lock);
812 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300813 if (!f)
814 goto out;
815
Cong Wange4c7ed42013-08-31 13:44:33 +0800816 if (!vxlan_addr_any(&ip)) {
817 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300818 if (!rd)
819 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000820 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300821
822 err = 0;
823
824 /* remove a destination if it's not the only one on the list,
825 * otherwise destroy the fdb entry
826 */
827 if (rd && !list_is_singular(&f->remotes)) {
828 list_del_rcu(&rd->list);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800829 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300830 goto out;
831 }
832
833 vxlan_fdb_destroy(vxlan, f);
834
835out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000836 spin_unlock_bh(&vxlan->hash_lock);
837
838 return err;
839}
840
841/* Dump forwarding table */
842static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
843 struct net_device *dev, int idx)
844{
845 struct vxlan_dev *vxlan = netdev_priv(dev);
846 unsigned int h;
847
848 for (h = 0; h < FDB_HASH_SIZE; ++h) {
849 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000850 int err;
851
Sasha Levinb67bfe02013-02-27 17:06:00 -0800852 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000853 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000854
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700855 if (idx < cb->args[0])
856 goto skip;
857
858 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000859 err = vxlan_fdb_info(skb, vxlan, f,
860 NETLINK_CB(cb->skb).portid,
861 cb->nlh->nlmsg_seq,
862 RTM_NEWNEIGH,
863 NLM_F_MULTI, rd);
864 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700865 goto out;
David Stevens66817122013-03-15 04:35:51 +0000866 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700867skip:
868 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000869 }
870 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700871out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000872 return idx;
873}
874
875/* Watch incoming packets to learn mapping between Ethernet address
876 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700877 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000878 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700879static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800880 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000881{
882 struct vxlan_dev *vxlan = netdev_priv(dev);
883 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000884
885 f = vxlan_find_mac(vxlan, src_mac);
886 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700887 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700888
Cong Wange4c7ed42013-08-31 13:44:33 +0800889 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700890 return false;
891
892 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700893 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700894 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000895
896 if (net_ratelimit())
897 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800898 "%pM migrated from %pIS to %pIS\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700899 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000900
Cong Wange4c7ed42013-08-31 13:44:33 +0800901 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000902 f->updated = jiffies;
Stephen Hemminger8385f502013-06-17 14:16:10 -0700903 vxlan_fdb_notify(vxlan, f, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000904 } else {
905 /* learned new entry */
906 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700907
908 /* close off race between vxlan_flush and incoming packets */
909 if (netif_running(dev))
910 vxlan_fdb_create(vxlan, src_mac, src_ip,
911 NUD_REACHABLE,
912 NLM_F_EXCL|NLM_F_CREATE,
913 vxlan->dst_port,
914 vxlan->default_dst.remote_vni,
915 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000916 spin_unlock(&vxlan->hash_lock);
917 }
stephen hemminger26a41ae62013-06-17 12:09:58 -0700918
919 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +0000920}
921
stephen hemmingerd3428942012-10-01 12:32:35 +0000922/* See if multicast group is already in use by other ID */
Cong Wange4c7ed42013-08-31 13:44:33 +0800923static bool vxlan_group_used(struct vxlan_net *vn, union vxlan_addr *remote_ip)
stephen hemmingerd3428942012-10-01 12:32:35 +0000924{
stephen hemminger553675f2013-05-16 11:35:20 +0000925 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000926
stephen hemminger553675f2013-05-16 11:35:20 +0000927 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
stephen hemminger553675f2013-05-16 11:35:20 +0000928 if (!netif_running(vxlan->dev))
929 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +0000930
Cong Wange4c7ed42013-08-31 13:44:33 +0800931 if (vxlan_addr_equal(&vxlan->default_dst.remote_ip,
932 remote_ip))
stephen hemminger553675f2013-05-16 11:35:20 +0000933 return true;
934 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000935
936 return false;
937}
938
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700939static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +0000940{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700941 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +0000942}
943
Pravin B Shelar012a5722013-08-19 11:23:07 -0700944void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +0000945{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700946 struct sock *sk = vs->sock->sk;
947 struct net *net = sock_net(sk);
948 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -0700949
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700950 if (!atomic_dec_and_test(&vs->refcnt))
951 return;
952
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700953 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700954 hlist_del_rcu(&vs->hlist);
Pravin B Shelar559835ea2013-09-24 10:25:40 -0700955 rcu_assign_sk_user_data(vs->sock->sk, NULL);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700956 vxlan_notify_del_rx_port(sk);
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700957 spin_unlock(&vn->sock_lock);
958
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700959 queue_work(vxlan_wq, &vs->del_work);
960}
Pravin B Shelar012a5722013-08-19 11:23:07 -0700961EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700962
stephen hemminger3fc2de22013-07-18 08:40:15 -0700963/* Callback to update multicast group membership when first VNI on
964 * multicast asddress is brought up
965 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700966 */
stephen hemminger3fc2de22013-07-18 08:40:15 -0700967static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700968{
stephen hemminger3fc2de22013-07-18 08:40:15 -0700969 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -0700970 struct vxlan_sock *vs = vxlan->vn_sock;
971 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +0800972 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
973 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000974
stephen hemmingerd3428942012-10-01 12:32:35 +0000975 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +0800976 if (ip->sa.sa_family == AF_INET) {
977 struct ip_mreqn mreq = {
978 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
979 .imr_ifindex = ifindex,
980 };
981
982 ip_mc_join_group(sk, &mreq);
983#if IS_ENABLED(CONFIG_IPV6)
984 } else {
985 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
986 &ip->sin6.sin6_addr);
987#endif
988 }
stephen hemminger3fc2de22013-07-18 08:40:15 -0700989 release_sock(sk);
990
Pravin B Shelar012a5722013-08-19 11:23:07 -0700991 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -0700992 dev_put(vxlan->dev);
993}
994
995/* Inverse of vxlan_igmp_join when last VNI is brought down */
996static void vxlan_igmp_leave(struct work_struct *work)
997{
998 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -0700999 struct vxlan_sock *vs = vxlan->vn_sock;
1000 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001001 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1002 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001003
1004 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001005 if (ip->sa.sa_family == AF_INET) {
1006 struct ip_mreqn mreq = {
1007 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1008 .imr_ifindex = ifindex,
1009 };
1010
1011 ip_mc_leave_group(sk, &mreq);
1012#if IS_ENABLED(CONFIG_IPV6)
1013 } else {
1014 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1015 &ip->sin6.sin6_addr);
1016#endif
1017 }
1018
stephen hemmingerd3428942012-10-01 12:32:35 +00001019 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001020
Pravin B Shelar012a5722013-08-19 11:23:07 -07001021 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001022 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001023}
1024
1025/* Callback from net/ipv4/udp.c to receive packets */
1026static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1027{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001028 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001029 struct vxlanhdr *vxh;
stephen hemminger553675f2013-05-16 11:35:20 +00001030 __be16 port;
stephen hemmingerd3428942012-10-01 12:32:35 +00001031
stephen hemmingerd3428942012-10-01 12:32:35 +00001032 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001033 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001034 goto error;
1035
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001036 /* Return packets with reserved bits set */
1037 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
stephen hemmingerd3428942012-10-01 12:32:35 +00001038 if (vxh->vx_flags != htonl(VXLAN_FLAGS) ||
1039 (vxh->vx_vni & htonl(0xff))) {
1040 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1041 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1042 goto error;
1043 }
1044
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001045 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001046 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001047
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001048 port = inet_sk(sk)->inet_sport;
1049
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001050 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001051 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001052 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001053
1054 vs->rcv(vs, skb, vxh->vx_vni);
1055 return 0;
1056
1057drop:
1058 /* Consume bad packet */
1059 kfree_skb(skb);
1060 return 0;
1061
1062error:
1063 /* Return non vxlan pkt */
1064 return 1;
1065}
1066
1067static void vxlan_rcv(struct vxlan_sock *vs,
1068 struct sk_buff *skb, __be32 vx_vni)
1069{
Cong Wange4c7ed42013-08-31 13:44:33 +08001070 struct iphdr *oip = NULL;
1071 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001072 struct vxlan_dev *vxlan;
1073 struct pcpu_tstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001074 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001075 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001076 int err = 0;
1077 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001078
1079 vni = ntohl(vx_vni) >> 8;
1080 /* Is this VNI defined? */
1081 vxlan = vxlan_vs_find_vni(vs, vni);
1082 if (!vxlan)
1083 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001084
Cong Wange4c7ed42013-08-31 13:44:33 +08001085 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001086 skb_reset_mac_header(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001087 skb->protocol = eth_type_trans(skb, vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001088
1089 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001090 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001091 goto drop;
1092
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001093 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001094 if (remote_ip->sa.sa_family == AF_INET) {
1095 oip = ip_hdr(skb);
1096 saddr.sin.sin_addr.s_addr = oip->saddr;
1097 saddr.sa.sa_family = AF_INET;
1098#if IS_ENABLED(CONFIG_IPV6)
1099 } else {
1100 oip6 = ipv6_hdr(skb);
1101 saddr.sin6.sin6_addr = oip6->saddr;
1102 saddr.sa.sa_family = AF_INET6;
1103#endif
1104 }
1105
stephen hemminger26a41ae62013-06-17 12:09:58 -07001106 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001107 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001108 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001109
stephen hemmingerd3428942012-10-01 12:32:35 +00001110 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001111
1112 /* If the NIC driver gave us an encapsulated packet with
1113 * CHECKSUM_UNNECESSARY and Rx checksum feature is enabled,
1114 * leave the CHECKSUM_UNNECESSARY, the device checksummed it
1115 * for us. Otherwise force the upper layers to verify it.
1116 */
1117 if (skb->ip_summed != CHECKSUM_UNNECESSARY || !skb->encapsulation ||
1118 !(vxlan->dev->features & NETIF_F_RXCSUM))
1119 skb->ip_summed = CHECKSUM_NONE;
1120
1121 skb->encapsulation = 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00001122
Cong Wange4c7ed42013-08-31 13:44:33 +08001123 if (oip6)
1124 err = IP6_ECN_decapsulate(oip6, skb);
1125 if (oip)
1126 err = IP_ECN_decapsulate(oip, skb);
1127
stephen hemmingerd3428942012-10-01 12:32:35 +00001128 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001129 if (log_ecn_error) {
1130 if (oip6)
1131 net_info_ratelimited("non-ECT from %pI6\n",
1132 &oip6->saddr);
1133 if (oip)
1134 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1135 &oip->saddr, oip->tos);
1136 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001137 if (err > 1) {
1138 ++vxlan->dev->stats.rx_frame_errors;
1139 ++vxlan->dev->stats.rx_errors;
1140 goto drop;
1141 }
1142 }
1143
Pravin B Shelare8171042013-03-25 14:49:46 +00001144 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001145 u64_stats_update_begin(&stats->syncp);
1146 stats->rx_packets++;
1147 stats->rx_bytes += skb->len;
1148 u64_stats_update_end(&stats->syncp);
1149
1150 netif_rx(skb);
1151
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001152 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001153drop:
1154 /* Consume bad packet */
1155 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001156}
1157
David Stevense4f67ad2012-11-20 02:50:14 +00001158static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1159{
1160 struct vxlan_dev *vxlan = netdev_priv(dev);
1161 struct arphdr *parp;
1162 u8 *arpptr, *sha;
1163 __be32 sip, tip;
1164 struct neighbour *n;
1165
1166 if (dev->flags & IFF_NOARP)
1167 goto out;
1168
1169 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1170 dev->stats.tx_dropped++;
1171 goto out;
1172 }
1173 parp = arp_hdr(skb);
1174
1175 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1176 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1177 parp->ar_pro != htons(ETH_P_IP) ||
1178 parp->ar_op != htons(ARPOP_REQUEST) ||
1179 parp->ar_hln != dev->addr_len ||
1180 parp->ar_pln != 4)
1181 goto out;
1182 arpptr = (u8 *)parp + sizeof(struct arphdr);
1183 sha = arpptr;
1184 arpptr += dev->addr_len; /* sha */
1185 memcpy(&sip, arpptr, sizeof(sip));
1186 arpptr += sizeof(sip);
1187 arpptr += dev->addr_len; /* tha */
1188 memcpy(&tip, arpptr, sizeof(tip));
1189
1190 if (ipv4_is_loopback(tip) ||
1191 ipv4_is_multicast(tip))
1192 goto out;
1193
1194 n = neigh_lookup(&arp_tbl, &tip, dev);
1195
1196 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001197 struct vxlan_fdb *f;
1198 struct sk_buff *reply;
1199
1200 if (!(n->nud_state & NUD_CONNECTED)) {
1201 neigh_release(n);
1202 goto out;
1203 }
1204
1205 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001206 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001207 /* bridge-local neighbor */
1208 neigh_release(n);
1209 goto out;
1210 }
1211
1212 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1213 n->ha, sha);
1214
1215 neigh_release(n);
1216
1217 skb_reset_mac_header(reply);
1218 __skb_pull(reply, skb_network_offset(reply));
1219 reply->ip_summed = CHECKSUM_UNNECESSARY;
1220 reply->pkt_type = PACKET_HOST;
1221
1222 if (netif_rx_ni(reply) == NET_RX_DROP)
1223 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001224 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1225 union vxlan_addr ipa = {
1226 .sin.sin_addr.s_addr = tip,
1227 .sa.sa_family = AF_INET,
1228 };
1229
1230 vxlan_ip_miss(dev, &ipa);
1231 }
David Stevense4f67ad2012-11-20 02:50:14 +00001232out:
1233 consume_skb(skb);
1234 return NETDEV_TX_OK;
1235}
1236
Cong Wangf564f452013-08-31 13:44:36 +08001237#if IS_ENABLED(CONFIG_IPV6)
1238static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1239{
1240 struct vxlan_dev *vxlan = netdev_priv(dev);
1241 struct neighbour *n;
1242 union vxlan_addr ipa;
1243 const struct ipv6hdr *iphdr;
1244 const struct in6_addr *saddr, *daddr;
1245 struct nd_msg *msg;
1246 struct inet6_dev *in6_dev = NULL;
1247
1248 in6_dev = __in6_dev_get(dev);
1249 if (!in6_dev)
1250 goto out;
1251
1252 if (!pskb_may_pull(skb, skb->len))
1253 goto out;
1254
1255 iphdr = ipv6_hdr(skb);
1256 saddr = &iphdr->saddr;
1257 daddr = &iphdr->daddr;
1258
1259 if (ipv6_addr_loopback(daddr) ||
1260 ipv6_addr_is_multicast(daddr))
1261 goto out;
1262
1263 msg = (struct nd_msg *)skb_transport_header(skb);
1264 if (msg->icmph.icmp6_code != 0 ||
1265 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1266 goto out;
1267
1268 n = neigh_lookup(ipv6_stub->nd_tbl, daddr, dev);
1269
1270 if (n) {
1271 struct vxlan_fdb *f;
1272
1273 if (!(n->nud_state & NUD_CONNECTED)) {
1274 neigh_release(n);
1275 goto out;
1276 }
1277
1278 f = vxlan_find_mac(vxlan, n->ha);
1279 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1280 /* bridge-local neighbor */
1281 neigh_release(n);
1282 goto out;
1283 }
1284
1285 ipv6_stub->ndisc_send_na(dev, n, saddr, &msg->target,
1286 !!in6_dev->cnf.forwarding,
1287 true, false, false);
1288 neigh_release(n);
1289 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1290 ipa.sin6.sin6_addr = *daddr;
1291 ipa.sa.sa_family = AF_INET6;
1292 vxlan_ip_miss(dev, &ipa);
1293 }
1294
1295out:
1296 consume_skb(skb);
1297 return NETDEV_TX_OK;
1298}
1299#endif
1300
David Stevense4f67ad2012-11-20 02:50:14 +00001301static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1302{
1303 struct vxlan_dev *vxlan = netdev_priv(dev);
1304 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001305
1306 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1307 return false;
1308
1309 n = NULL;
1310 switch (ntohs(eth_hdr(skb)->h_proto)) {
1311 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001312 {
1313 struct iphdr *pip;
1314
David Stevense4f67ad2012-11-20 02:50:14 +00001315 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1316 return false;
1317 pip = ip_hdr(skb);
1318 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001319 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1320 union vxlan_addr ipa = {
1321 .sin.sin_addr.s_addr = pip->daddr,
1322 .sa.sa_family = AF_INET,
1323 };
1324
1325 vxlan_ip_miss(dev, &ipa);
1326 return false;
1327 }
1328
David Stevense4f67ad2012-11-20 02:50:14 +00001329 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001330 }
1331#if IS_ENABLED(CONFIG_IPV6)
1332 case ETH_P_IPV6:
1333 {
1334 struct ipv6hdr *pip6;
1335
1336 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1337 return false;
1338 pip6 = ipv6_hdr(skb);
1339 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1340 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1341 union vxlan_addr ipa = {
1342 .sin6.sin6_addr = pip6->daddr,
1343 .sa.sa_family = AF_INET6,
1344 };
1345
1346 vxlan_ip_miss(dev, &ipa);
1347 return false;
1348 }
1349
1350 break;
1351 }
1352#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001353 default:
1354 return false;
1355 }
1356
1357 if (n) {
1358 bool diff;
1359
Joe Perches7367d0b2013-09-01 11:51:23 -07001360 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001361 if (diff) {
1362 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1363 dev->addr_len);
1364 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1365 }
1366 neigh_release(n);
1367 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001368 }
1369
David Stevense4f67ad2012-11-20 02:50:14 +00001370 return false;
1371}
1372
stephen hemminger553675f2013-05-16 11:35:20 +00001373static void vxlan_sock_put(struct sk_buff *skb)
stephen hemminger1cad8712012-10-09 20:35:49 +00001374{
1375 sock_put(skb->sk);
1376}
1377
1378/* On transmit, associate with the tunnel socket */
Pravin B Shelar49560532013-08-19 11:23:17 -07001379static void vxlan_set_owner(struct sock *sk, struct sk_buff *skb)
stephen hemminger1cad8712012-10-09 20:35:49 +00001380{
stephen hemminger1cad8712012-10-09 20:35:49 +00001381 skb_orphan(skb);
1382 sock_hold(sk);
1383 skb->sk = sk;
stephen hemminger553675f2013-05-16 11:35:20 +00001384 skb->destructor = vxlan_sock_put;
stephen hemminger1cad8712012-10-09 20:35:49 +00001385}
1386
stephen hemminger05f47d62012-10-09 20:35:50 +00001387/* Compute source port for outgoing packet
1388 * first choice to use L4 flow hash since it will spread
1389 * better and maybe available from hardware
1390 * secondary choice is to use jhash on the Ethernet header
1391 */
Pravin B Shelar49560532013-08-19 11:23:17 -07001392__be16 vxlan_src_port(__u16 port_min, __u16 port_max, struct sk_buff *skb)
stephen hemminger05f47d62012-10-09 20:35:50 +00001393{
Pravin B Shelar49560532013-08-19 11:23:17 -07001394 unsigned int range = (port_max - port_min) + 1;
stephen hemminger05f47d62012-10-09 20:35:50 +00001395 u32 hash;
1396
1397 hash = skb_get_rxhash(skb);
1398 if (!hash)
1399 hash = jhash(skb->data, 2 * ETH_ALEN,
1400 (__force u32) skb->protocol);
1401
Pravin B Shelar49560532013-08-19 11:23:17 -07001402 return htons((((u64) hash * range) >> 32) + port_min);
stephen hemminger05f47d62012-10-09 20:35:50 +00001403}
Pravin B Shelar49560532013-08-19 11:23:17 -07001404EXPORT_SYMBOL_GPL(vxlan_src_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00001405
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001406static int handle_offloads(struct sk_buff *skb)
1407{
1408 if (skb_is_gso(skb)) {
1409 int err = skb_unclone(skb, GFP_ATOMIC);
1410 if (unlikely(err))
1411 return err;
1412
Dmitry Kravkovf6ace502013-04-28 08:16:01 +00001413 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00001414 } else if (skb->ip_summed != CHECKSUM_PARTIAL)
1415 skb->ip_summed = CHECKSUM_NONE;
1416
1417 return 0;
1418}
1419
Cong Wange4c7ed42013-08-31 13:44:33 +08001420#if IS_ENABLED(CONFIG_IPV6)
Nicolas Dichtel11796182013-09-02 15:34:55 +02001421static int vxlan6_xmit_skb(struct vxlan_sock *vs,
Cong Wange4c7ed42013-08-31 13:44:33 +08001422 struct dst_entry *dst, struct sk_buff *skb,
1423 struct net_device *dev, struct in6_addr *saddr,
1424 struct in6_addr *daddr, __u8 prio, __u8 ttl,
1425 __be16 src_port, __be16 dst_port, __be32 vni)
1426{
1427 struct ipv6hdr *ip6h;
1428 struct vxlanhdr *vxh;
1429 struct udphdr *uh;
1430 int min_headroom;
1431 int err;
1432
1433 if (!skb->encapsulation) {
1434 skb_reset_inner_headers(skb);
1435 skb->encapsulation = 1;
1436 }
1437
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001438 skb_scrub_packet(skb, false);
1439
Cong Wange4c7ed42013-08-31 13:44:33 +08001440 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1441 + VXLAN_HLEN + sizeof(struct ipv6hdr)
1442 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1443
1444 /* Need space for new headers (invalidates iph ptr) */
1445 err = skb_cow_head(skb, min_headroom);
1446 if (unlikely(err))
1447 return err;
1448
1449 if (vlan_tx_tag_present(skb)) {
1450 if (WARN_ON(!__vlan_put_tag(skb,
1451 skb->vlan_proto,
1452 vlan_tx_tag_get(skb))))
1453 return -ENOMEM;
1454
1455 skb->vlan_tci = 0;
1456 }
1457
1458 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1459 vxh->vx_flags = htonl(VXLAN_FLAGS);
1460 vxh->vx_vni = vni;
1461
1462 __skb_push(skb, sizeof(*uh));
1463 skb_reset_transport_header(skb);
1464 uh = udp_hdr(skb);
1465
1466 uh->dest = dst_port;
1467 uh->source = src_port;
1468
1469 uh->len = htons(skb->len);
1470 uh->check = 0;
1471
1472 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1473 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1474 IPSKB_REROUTED);
Cong Wange4c7ed42013-08-31 13:44:33 +08001475 skb_dst_set(skb, dst);
1476
1477 if (!skb_is_gso(skb) && !(dst->dev->features & NETIF_F_IPV6_CSUM)) {
1478 __wsum csum = skb_checksum(skb, 0, skb->len, 0);
1479 skb->ip_summed = CHECKSUM_UNNECESSARY;
1480 uh->check = csum_ipv6_magic(saddr, daddr, skb->len,
1481 IPPROTO_UDP, csum);
1482 if (uh->check == 0)
1483 uh->check = CSUM_MANGLED_0;
1484 } else {
1485 skb->ip_summed = CHECKSUM_PARTIAL;
1486 skb->csum_start = skb_transport_header(skb) - skb->head;
1487 skb->csum_offset = offsetof(struct udphdr, check);
1488 uh->check = ~csum_ipv6_magic(saddr, daddr,
1489 skb->len, IPPROTO_UDP, 0);
1490 }
1491
1492 __skb_push(skb, sizeof(*ip6h));
1493 skb_reset_network_header(skb);
1494 ip6h = ipv6_hdr(skb);
1495 ip6h->version = 6;
1496 ip6h->priority = prio;
1497 ip6h->flow_lbl[0] = 0;
1498 ip6h->flow_lbl[1] = 0;
1499 ip6h->flow_lbl[2] = 0;
1500 ip6h->payload_len = htons(skb->len);
1501 ip6h->nexthdr = IPPROTO_UDP;
1502 ip6h->hop_limit = ttl;
1503 ip6h->daddr = *daddr;
1504 ip6h->saddr = *saddr;
1505
1506 vxlan_set_owner(vs->sock->sk, skb);
1507
1508 err = handle_offloads(skb);
1509 if (err)
1510 return err;
1511
1512 ip6tunnel_xmit(skb, dev);
1513 return 0;
1514}
1515#endif
1516
Nicolas Dichtel11796182013-09-02 15:34:55 +02001517int vxlan_xmit_skb(struct vxlan_sock *vs,
Pravin B Shelar49560532013-08-19 11:23:17 -07001518 struct rtable *rt, struct sk_buff *skb,
1519 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
1520 __be16 src_port, __be16 dst_port, __be32 vni)
1521{
1522 struct vxlanhdr *vxh;
1523 struct udphdr *uh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001524 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001525 int err;
1526
1527 if (!skb->encapsulation) {
1528 skb_reset_inner_headers(skb);
1529 skb->encapsulation = 1;
1530 }
1531
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001532 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001533 + VXLAN_HLEN + sizeof(struct iphdr)
1534 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001535
1536 /* Need space for new headers (invalidates iph ptr) */
1537 err = skb_cow_head(skb, min_headroom);
1538 if (unlikely(err))
1539 return err;
1540
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001541 if (vlan_tx_tag_present(skb)) {
1542 if (WARN_ON(!__vlan_put_tag(skb,
1543 skb->vlan_proto,
1544 vlan_tx_tag_get(skb))))
1545 return -ENOMEM;
1546
1547 skb->vlan_tci = 0;
1548 }
1549
Pravin B Shelar49560532013-08-19 11:23:17 -07001550 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
1551 vxh->vx_flags = htonl(VXLAN_FLAGS);
1552 vxh->vx_vni = vni;
1553
1554 __skb_push(skb, sizeof(*uh));
1555 skb_reset_transport_header(skb);
1556 uh = udp_hdr(skb);
1557
1558 uh->dest = dst_port;
1559 uh->source = src_port;
1560
1561 uh->len = htons(skb->len);
1562 uh->check = 0;
1563
1564 vxlan_set_owner(vs->sock->sk, skb);
1565
1566 err = handle_offloads(skb);
1567 if (err)
1568 return err;
1569
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001570 return iptunnel_xmit(rt, skb, src, dst, IPPROTO_UDP, tos, ttl, df,
1571 false);
Pravin B Shelar49560532013-08-19 11:23:17 -07001572}
1573EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1574
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001575/* Bypass encapsulation if the destination is local */
1576static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1577 struct vxlan_dev *dst_vxlan)
1578{
1579 struct pcpu_tstats *tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1580 struct pcpu_tstats *rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Cong Wange4c7ed42013-08-31 13:44:33 +08001581 union vxlan_addr loopback;
1582 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001583
1584 skb->pkt_type = PACKET_HOST;
1585 skb->encapsulation = 0;
1586 skb->dev = dst_vxlan->dev;
1587 __skb_pull(skb, skb_network_offset(skb));
1588
Cong Wange4c7ed42013-08-31 13:44:33 +08001589 if (remote_ip->sa.sa_family == AF_INET) {
1590 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1591 loopback.sa.sa_family = AF_INET;
1592#if IS_ENABLED(CONFIG_IPV6)
1593 } else {
1594 loopback.sin6.sin6_addr = in6addr_loopback;
1595 loopback.sa.sa_family = AF_INET6;
1596#endif
1597 }
1598
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001599 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001600 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001601
1602 u64_stats_update_begin(&tx_stats->syncp);
1603 tx_stats->tx_packets++;
1604 tx_stats->tx_bytes += skb->len;
1605 u64_stats_update_end(&tx_stats->syncp);
1606
1607 if (netif_rx(skb) == NET_RX_SUCCESS) {
1608 u64_stats_update_begin(&rx_stats->syncp);
1609 rx_stats->rx_packets++;
1610 rx_stats->rx_bytes += skb->len;
1611 u64_stats_update_end(&rx_stats->syncp);
1612 } else {
1613 skb->dev->stats.rx_dropped++;
1614 }
1615}
1616
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001617static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1618 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001619{
1620 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001621 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001622 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001623 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001624 union vxlan_addr *dst;
1625 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001626 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001627 __be16 df = 0;
1628 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001629 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001630
stephen hemminger823aa872013-04-27 11:31:57 +00001631 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001632 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001633 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001634
Cong Wange4c7ed42013-08-31 13:44:33 +08001635 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001636 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001637 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001638 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001639 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001640 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001641 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001642 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001643
stephen hemmingerd3428942012-10-01 12:32:35 +00001644 old_iph = ip_hdr(skb);
1645
stephen hemmingerd3428942012-10-01 12:32:35 +00001646 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001647 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001648 ttl = 1;
1649
1650 tos = vxlan->tos;
1651 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001652 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001653
Pravin B Shelar49560532013-08-19 11:23:17 -07001654 src_port = vxlan_src_port(vxlan->port_min, vxlan->port_max, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001655
Cong Wange4c7ed42013-08-31 13:44:33 +08001656 if (dst->sa.sa_family == AF_INET) {
1657 memset(&fl4, 0, sizeof(fl4));
1658 fl4.flowi4_oif = rdst->remote_ifindex;
1659 fl4.flowi4_tos = RT_TOS(tos);
1660 fl4.daddr = dst->sin.sin_addr.s_addr;
1661 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001662
Cong Wange4c7ed42013-08-31 13:44:33 +08001663 rt = ip_route_output_key(dev_net(dev), &fl4);
1664 if (IS_ERR(rt)) {
1665 netdev_dbg(dev, "no route to %pI4\n",
1666 &dst->sin.sin_addr.s_addr);
1667 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001668 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001669 }
1670
1671 if (rt->dst.dev == dev) {
1672 netdev_dbg(dev, "circular route to %pI4\n",
1673 &dst->sin.sin_addr.s_addr);
1674 dev->stats.collisions++;
1675 goto tx_error;
1676 }
1677
1678 /* Bypass encapsulation if the destination is local */
1679 if (rt->rt_flags & RTCF_LOCAL &&
1680 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1681 struct vxlan_dev *dst_vxlan;
1682
1683 ip_rt_put(rt);
1684 dst_vxlan = vxlan_find_vni(dev_net(dev), vni, dst_port);
1685 if (!dst_vxlan)
1686 goto tx_error;
1687 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1688 return;
1689 }
1690
1691 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1692 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
1693
Nicolas Dichtel11796182013-09-02 15:34:55 +02001694 err = vxlan_xmit_skb(vxlan->vn_sock, rt, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001695 fl4.saddr, dst->sin.sin_addr.s_addr,
1696 tos, ttl, df, src_port, dst_port,
1697 htonl(vni << 8));
1698
1699 if (err < 0)
1700 goto rt_tx_error;
1701 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1702#if IS_ENABLED(CONFIG_IPV6)
1703 } else {
1704 struct sock *sk = vxlan->vn_sock->sock->sk;
1705 struct dst_entry *ndst;
1706 struct flowi6 fl6;
1707 u32 flags;
1708
1709 memset(&fl6, 0, sizeof(fl6));
1710 fl6.flowi6_oif = rdst->remote_ifindex;
1711 fl6.daddr = dst->sin6.sin6_addr;
1712 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08001713 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08001714
1715 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
1716 netdev_dbg(dev, "no route to %pI6\n",
1717 &dst->sin6.sin6_addr);
1718 dev->stats.tx_carrier_errors++;
1719 goto tx_error;
1720 }
1721
1722 if (ndst->dev == dev) {
1723 netdev_dbg(dev, "circular route to %pI6\n",
1724 &dst->sin6.sin6_addr);
1725 dst_release(ndst);
1726 dev->stats.collisions++;
1727 goto tx_error;
1728 }
1729
1730 /* Bypass encapsulation if the destination is local */
1731 flags = ((struct rt6_info *)ndst)->rt6i_flags;
1732 if (flags & RTF_LOCAL &&
1733 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1734 struct vxlan_dev *dst_vxlan;
1735
1736 dst_release(ndst);
1737 dst_vxlan = vxlan_find_vni(dev_net(dev), vni, dst_port);
1738 if (!dst_vxlan)
1739 goto tx_error;
1740 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1741 return;
1742 }
1743
1744 ttl = ttl ? : ip6_dst_hoplimit(ndst);
1745
Nicolas Dichtel11796182013-09-02 15:34:55 +02001746 err = vxlan6_xmit_skb(vxlan->vn_sock, ndst, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001747 dev, &fl6.saddr, &fl6.daddr, 0, ttl,
1748 src_port, dst_port, htonl(vni << 8));
1749#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001750 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001751
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001752 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001753
1754drop:
1755 dev->stats.tx_dropped++;
1756 goto tx_free;
1757
Pravin B Shelar49560532013-08-19 11:23:17 -07001758rt_tx_error:
1759 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001760tx_error:
1761 dev->stats.tx_errors++;
1762tx_free:
1763 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001764}
1765
David Stevens66817122013-03-15 04:35:51 +00001766/* Transmit local packets over Vxlan
1767 *
1768 * Outer IP header inherits ECN and DF from inner header.
1769 * Outer UDP destination is the VXLAN assigned port.
1770 * source port is based on hash of flow
1771 */
1772static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1773{
1774 struct vxlan_dev *vxlan = netdev_priv(dev);
1775 struct ethhdr *eth;
1776 bool did_rsc = false;
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001777 struct vxlan_rdst *rdst;
David Stevens66817122013-03-15 04:35:51 +00001778 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00001779
1780 skb_reset_mac_header(skb);
1781 eth = eth_hdr(skb);
1782
Cong Wangf564f452013-08-31 13:44:36 +08001783 if ((vxlan->flags & VXLAN_F_PROXY)) {
1784 if (ntohs(eth->h_proto) == ETH_P_ARP)
1785 return arp_reduce(dev, skb);
1786#if IS_ENABLED(CONFIG_IPV6)
1787 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
1788 skb->len >= sizeof(struct ipv6hdr) + sizeof(struct nd_msg) &&
1789 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
1790 struct nd_msg *msg;
1791
1792 msg = (struct nd_msg *)skb_transport_header(skb);
1793 if (msg->icmph.icmp6_code == 0 &&
1794 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
1795 return neigh_reduce(dev, skb);
1796 }
1797#endif
1798 }
David Stevens66817122013-03-15 04:35:51 +00001799
1800 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00001801 did_rsc = false;
1802
1803 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08001804 (ntohs(eth->h_proto) == ETH_P_IP ||
1805 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00001806 did_rsc = route_shortcircuit(dev, skb);
1807 if (did_rsc)
1808 f = vxlan_find_mac(vxlan, eth->h_dest);
1809 }
1810
David Stevens66817122013-03-15 04:35:51 +00001811 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001812 f = vxlan_find_mac(vxlan, all_zeros_mac);
1813 if (f == NULL) {
1814 if ((vxlan->flags & VXLAN_F_L2MISS) &&
1815 !is_multicast_ether_addr(eth->h_dest))
1816 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00001817
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001818 dev->stats.tx_dropped++;
1819 dev_kfree_skb(skb);
1820 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001821 }
David Stevens66817122013-03-15 04:35:51 +00001822 }
1823
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001824 list_for_each_entry_rcu(rdst, &f->remotes, list) {
1825 struct sk_buff *skb1;
1826
1827 skb1 = skb_clone(skb, GFP_ATOMIC);
1828 if (skb1)
1829 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1830 }
1831
1832 dev_kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001833 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00001834}
1835
stephen hemmingerd3428942012-10-01 12:32:35 +00001836/* Walk the forwarding table and purge stale entries */
1837static void vxlan_cleanup(unsigned long arg)
1838{
1839 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
1840 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
1841 unsigned int h;
1842
1843 if (!netif_running(vxlan->dev))
1844 return;
1845
1846 spin_lock_bh(&vxlan->hash_lock);
1847 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1848 struct hlist_node *p, *n;
1849 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1850 struct vxlan_fdb *f
1851 = container_of(p, struct vxlan_fdb, hlist);
1852 unsigned long timeout;
1853
stephen hemminger3c172862012-10-26 06:24:34 +00001854 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00001855 continue;
1856
1857 timeout = f->used + vxlan->age_interval * HZ;
1858 if (time_before_eq(timeout, jiffies)) {
1859 netdev_dbg(vxlan->dev,
1860 "garbage collect %pM\n",
1861 f->eth_addr);
1862 f->state = NUD_STALE;
1863 vxlan_fdb_destroy(vxlan, f);
1864 } else if (time_before(timeout, next_timer))
1865 next_timer = timeout;
1866 }
1867 }
1868 spin_unlock_bh(&vxlan->hash_lock);
1869
1870 mod_timer(&vxlan->age_timer, next_timer);
1871}
1872
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001873static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
1874{
1875 __u32 vni = vxlan->default_dst.remote_vni;
1876
1877 vxlan->vn_sock = vs;
1878 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
1879}
1880
stephen hemmingerd3428942012-10-01 12:32:35 +00001881/* Setup stats when device is created */
1882static int vxlan_init(struct net_device *dev)
1883{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001884 struct vxlan_dev *vxlan = netdev_priv(dev);
1885 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
1886 struct vxlan_sock *vs;
John Stultz827da442013-10-07 15:51:58 -07001887 int i;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001888
Pravin B Shelare8171042013-03-25 14:49:46 +00001889 dev->tstats = alloc_percpu(struct pcpu_tstats);
1890 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00001891 return -ENOMEM;
1892
John Stultz827da442013-10-07 15:51:58 -07001893 for_each_possible_cpu(i) {
1894 struct pcpu_tstats *vxlan_stats;
1895 vxlan_stats = per_cpu_ptr(dev->tstats, i);
1896 u64_stats_init(&vxlan_stats->syncp);
1897 }
1898
1899
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001900 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001901 vs = vxlan_find_sock(dev_net(dev), vxlan->dst_port);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001902 if (vs) {
1903 /* If we have a socket with same port already, reuse it */
1904 atomic_inc(&vs->refcnt);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001905 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001906 } else {
1907 /* otherwise make new socket outside of RTNL */
1908 dev_hold(dev);
1909 queue_work(vxlan_wq, &vxlan->sock_work);
1910 }
1911 spin_unlock(&vn->sock_lock);
1912
stephen hemmingerd3428942012-10-01 12:32:35 +00001913 return 0;
1914}
1915
Stephen Hemmingerba609e92013-06-25 17:06:01 -07001916static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001917{
1918 struct vxlan_fdb *f;
1919
1920 spin_lock_bh(&vxlan->hash_lock);
1921 f = __vxlan_find_mac(vxlan, all_zeros_mac);
1922 if (f)
1923 vxlan_fdb_destroy(vxlan, f);
1924 spin_unlock_bh(&vxlan->hash_lock);
1925}
1926
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001927static void vxlan_uninit(struct net_device *dev)
1928{
1929 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001930 struct vxlan_sock *vs = vxlan->vn_sock;
1931
Stephen Hemmingerba609e92013-06-25 17:06:01 -07001932 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001933
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001934 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07001935 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001936 free_percpu(dev->tstats);
1937}
1938
stephen hemmingerd3428942012-10-01 12:32:35 +00001939/* Start ageing timer and join group when device is brought up */
1940static int vxlan_open(struct net_device *dev)
1941{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001942 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00001943 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001944 struct vxlan_sock *vs = vxlan->vn_sock;
1945
1946 /* socket hasn't been created */
1947 if (!vs)
1948 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00001949
Cong Wange4c7ed42013-08-31 13:44:33 +08001950 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
1951 vxlan_group_used(vn, &vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001952 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001953 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001954 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00001955 }
1956
1957 if (vxlan->age_interval)
1958 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
1959
1960 return 0;
1961}
1962
1963/* Purge the forwarding table */
1964static void vxlan_flush(struct vxlan_dev *vxlan)
1965{
Cong Wang31fec5a2013-05-27 22:35:52 +00001966 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00001967
1968 spin_lock_bh(&vxlan->hash_lock);
1969 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1970 struct hlist_node *p, *n;
1971 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1972 struct vxlan_fdb *f
1973 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001974 /* the all_zeros_mac entry is deleted at vxlan_uninit */
1975 if (!is_zero_ether_addr(f->eth_addr))
1976 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00001977 }
1978 }
1979 spin_unlock_bh(&vxlan->hash_lock);
1980}
1981
1982/* Cleanup timer and forwarding table on shutdown */
1983static int vxlan_stop(struct net_device *dev)
1984{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001985 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00001986 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001987 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00001988
Cong Wange4c7ed42013-08-31 13:44:33 +08001989 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
1990 ! vxlan_group_used(vn, &vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001991 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001992 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001993 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001994 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001995
1996 del_timer_sync(&vxlan->age_timer);
1997
1998 vxlan_flush(vxlan);
1999
2000 return 0;
2001}
2002
stephen hemmingerd3428942012-10-01 12:32:35 +00002003/* Stub, nothing needs to be done. */
2004static void vxlan_set_multicast_list(struct net_device *dev)
2005{
2006}
2007
2008static const struct net_device_ops vxlan_netdev_ops = {
2009 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002010 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002011 .ndo_open = vxlan_open,
2012 .ndo_stop = vxlan_stop,
2013 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002014 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002015 .ndo_set_rx_mode = vxlan_set_multicast_list,
2016 .ndo_change_mtu = eth_change_mtu,
2017 .ndo_validate_addr = eth_validate_addr,
2018 .ndo_set_mac_address = eth_mac_addr,
2019 .ndo_fdb_add = vxlan_fdb_add,
2020 .ndo_fdb_del = vxlan_fdb_delete,
2021 .ndo_fdb_dump = vxlan_fdb_dump,
2022};
2023
2024/* Info for udev, that this is a virtual tunnel endpoint */
2025static struct device_type vxlan_type = {
2026 .name = "vxlan",
2027};
2028
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002029/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002030 * supply the listening VXLAN udp ports. Callers are expected
2031 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002032 */
2033void vxlan_get_rx_port(struct net_device *dev)
2034{
2035 struct vxlan_sock *vs;
2036 struct net *net = dev_net(dev);
2037 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2038 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002039 __be16 port;
2040 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002041
2042 spin_lock(&vn->sock_lock);
2043 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002044 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2045 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002046 sa_family = vs->sock->sk->sk_family;
2047 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2048 port);
2049 }
2050 }
2051 spin_unlock(&vn->sock_lock);
2052}
2053EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2054
stephen hemmingerd3428942012-10-01 12:32:35 +00002055/* Initialize the device structure. */
2056static void vxlan_setup(struct net_device *dev)
2057{
2058 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002059 unsigned int h;
stephen hemminger05f47d62012-10-09 20:35:50 +00002060 int low, high;
stephen hemmingerd3428942012-10-01 12:32:35 +00002061
2062 eth_hw_addr_random(dev);
2063 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002064 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
2065 dev->hard_header_len = ETH_HLEN + VXLAN6_HEADROOM;
2066 else
2067 dev->hard_header_len = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002068
2069 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002070 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002071 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2072
2073 dev->tx_queue_len = 0;
2074 dev->features |= NETIF_F_LLTX;
2075 dev->features |= NETIF_F_NETNS_LOCAL;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002076 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002077 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002078 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002079
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002080 dev->vlan_features = dev->features;
2081 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002082 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002083 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002084 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
stephen hemmingerd3428942012-10-01 12:32:35 +00002085 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
stephen hemminger6602d002012-12-31 12:00:21 +00002086 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002087
stephen hemminger553675f2013-05-16 11:35:20 +00002088 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002089 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002090 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2091 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002092 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002093
2094 init_timer_deferrable(&vxlan->age_timer);
2095 vxlan->age_timer.function = vxlan_cleanup;
2096 vxlan->age_timer.data = (unsigned long) vxlan;
2097
stephen hemminger05f47d62012-10-09 20:35:50 +00002098 inet_get_local_port_range(&low, &high);
2099 vxlan->port_min = low;
2100 vxlan->port_max = high;
stephen hemminger823aa872013-04-27 11:31:57 +00002101 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002102
stephen hemmingerd3428942012-10-01 12:32:35 +00002103 vxlan->dev = dev;
2104
2105 for (h = 0; h < FDB_HASH_SIZE; ++h)
2106 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2107}
2108
2109static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2110 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002111 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002112 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002113 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2114 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002115 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002116 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2117 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2118 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2119 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2120 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002121 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002122 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2123 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2124 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2125 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002126 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002127};
2128
2129static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2130{
2131 if (tb[IFLA_ADDRESS]) {
2132 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2133 pr_debug("invalid link address (not ethernet)\n");
2134 return -EINVAL;
2135 }
2136
2137 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2138 pr_debug("invalid all zero ethernet address\n");
2139 return -EADDRNOTAVAIL;
2140 }
2141 }
2142
2143 if (!data)
2144 return -EINVAL;
2145
2146 if (data[IFLA_VXLAN_ID]) {
2147 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2148 if (id >= VXLAN_VID_MASK)
2149 return -ERANGE;
2150 }
2151
stephen hemminger05f47d62012-10-09 20:35:50 +00002152 if (data[IFLA_VXLAN_PORT_RANGE]) {
2153 const struct ifla_vxlan_port_range *p
2154 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2155
2156 if (ntohs(p->high) < ntohs(p->low)) {
2157 pr_debug("port range %u .. %u not valid\n",
2158 ntohs(p->low), ntohs(p->high));
2159 return -EINVAL;
2160 }
2161 }
2162
stephen hemmingerd3428942012-10-01 12:32:35 +00002163 return 0;
2164}
2165
Yan Burman1b13c972013-01-29 23:43:07 +00002166static void vxlan_get_drvinfo(struct net_device *netdev,
2167 struct ethtool_drvinfo *drvinfo)
2168{
2169 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2170 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2171}
2172
2173static const struct ethtool_ops vxlan_ethtool_ops = {
2174 .get_drvinfo = vxlan_get_drvinfo,
2175 .get_link = ethtool_op_get_link,
2176};
2177
stephen hemminger553675f2013-05-16 11:35:20 +00002178static void vxlan_del_work(struct work_struct *work)
2179{
2180 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
2181
2182 sk_release_kernel(vs->sock->sk);
2183 kfree_rcu(vs, rcu);
2184}
2185
Cong Wange4c7ed42013-08-31 13:44:33 +08002186#if IS_ENABLED(CONFIG_IPV6)
2187/* Create UDP socket for encapsulation receive. AF_INET6 socket
2188 * could be used for both IPv4 and IPv6 communications, but
2189 * users may set bindv6only=1.
2190 */
2191static int create_v6_sock(struct net *net, __be16 port, struct socket **psock)
stephen hemminger553675f2013-05-16 11:35:20 +00002192{
stephen hemminger553675f2013-05-16 11:35:20 +00002193 struct sock *sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08002194 struct socket *sock;
2195 struct sockaddr_in6 vxlan_addr = {
2196 .sin6_family = AF_INET6,
2197 .sin6_port = port,
2198 };
2199 int rc, val = 1;
2200
2201 rc = sock_create_kern(AF_INET6, SOCK_DGRAM, IPPROTO_UDP, &sock);
2202 if (rc < 0) {
2203 pr_debug("UDPv6 socket create failed\n");
2204 return rc;
2205 }
2206
2207 /* Put in proper namespace */
2208 sk = sock->sk;
2209 sk_change_net(sk, net);
2210
2211 kernel_setsockopt(sock, SOL_IPV6, IPV6_V6ONLY,
2212 (char *)&val, sizeof(val));
2213 rc = kernel_bind(sock, (struct sockaddr *)&vxlan_addr,
2214 sizeof(struct sockaddr_in6));
2215 if (rc < 0) {
2216 pr_debug("bind for UDPv6 socket %pI6:%u (%d)\n",
2217 &vxlan_addr.sin6_addr, ntohs(vxlan_addr.sin6_port), rc);
2218 sk_release_kernel(sk);
2219 return rc;
2220 }
2221 /* At this point, IPv6 module should have been loaded in
2222 * sock_create_kern().
2223 */
2224 BUG_ON(!ipv6_stub);
2225
2226 *psock = sock;
2227 /* Disable multicast loopback */
2228 inet_sk(sk)->mc_loop = 0;
2229 return 0;
2230}
2231
2232#else
2233
2234static int create_v6_sock(struct net *net, __be16 port, struct socket **psock)
2235{
2236 return -EPFNOSUPPORT;
2237}
2238#endif
2239
2240static int create_v4_sock(struct net *net, __be16 port, struct socket **psock)
2241{
2242 struct sock *sk;
2243 struct socket *sock;
stephen hemminger553675f2013-05-16 11:35:20 +00002244 struct sockaddr_in vxlan_addr = {
2245 .sin_family = AF_INET,
2246 .sin_addr.s_addr = htonl(INADDR_ANY),
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -07002247 .sin_port = port,
stephen hemminger553675f2013-05-16 11:35:20 +00002248 };
2249 int rc;
Cong Wange4c7ed42013-08-31 13:44:33 +08002250
2251 /* Create UDP socket for encapsulation receive. */
2252 rc = sock_create_kern(AF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
2253 if (rc < 0) {
2254 pr_debug("UDP socket create failed\n");
2255 return rc;
2256 }
2257
2258 /* Put in proper namespace */
2259 sk = sock->sk;
2260 sk_change_net(sk, net);
2261
2262 rc = kernel_bind(sock, (struct sockaddr *) &vxlan_addr,
2263 sizeof(vxlan_addr));
2264 if (rc < 0) {
2265 pr_debug("bind for UDP socket %pI4:%u (%d)\n",
2266 &vxlan_addr.sin_addr, ntohs(vxlan_addr.sin_port), rc);
2267 sk_release_kernel(sk);
2268 return rc;
2269 }
2270
2271 *psock = sock;
2272 /* Disable multicast loopback */
2273 inet_sk(sk)->mc_loop = 0;
2274 return 0;
2275}
2276
2277/* Create new listen socket if needed */
2278static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
2279 vxlan_rcv_t *rcv, void *data, bool ipv6)
2280{
2281 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2282 struct vxlan_sock *vs;
2283 struct socket *sock;
2284 struct sock *sk;
2285 int rc = 0;
Cong Wang31fec5a2013-05-27 22:35:52 +00002286 unsigned int h;
stephen hemminger553675f2013-05-16 11:35:20 +00002287
2288 vs = kmalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002289 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002290 return ERR_PTR(-ENOMEM);
2291
2292 for (h = 0; h < VNI_HASH_SIZE; ++h)
2293 INIT_HLIST_HEAD(&vs->vni_list[h]);
2294
2295 INIT_WORK(&vs->del_work, vxlan_del_work);
2296
Cong Wange4c7ed42013-08-31 13:44:33 +08002297 if (ipv6)
2298 rc = create_v6_sock(net, port, &sock);
2299 else
2300 rc = create_v4_sock(net, port, &sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002301 if (rc < 0) {
stephen hemminger553675f2013-05-16 11:35:20 +00002302 kfree(vs);
2303 return ERR_PTR(rc);
2304 }
2305
Cong Wange4c7ed42013-08-31 13:44:33 +08002306 vs->sock = sock;
2307 sk = sock->sk;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002308 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002309 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002310 vs->data = data;
Pravin B Shelar559835ea2013-09-24 10:25:40 -07002311 rcu_assign_sk_user_data(vs->sock->sk, vs);
stephen hemminger553675f2013-05-16 11:35:20 +00002312
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002313 spin_lock(&vn->sock_lock);
2314 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002315 vxlan_notify_add_rx_port(sk);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002316 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002317
2318 /* Mark socket as an encapsulation socket. */
2319 udp_sk(sk)->encap_type = 1;
2320 udp_sk(sk)->encap_rcv = vxlan_udp_encap_recv;
Cong Wange4c7ed42013-08-31 13:44:33 +08002321#if IS_ENABLED(CONFIG_IPV6)
2322 if (ipv6)
2323 ipv6_stub->udpv6_encap_enable();
2324 else
2325#endif
2326 udp_encap_enable();
2327
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002328 return vs;
2329}
stephen hemminger553675f2013-05-16 11:35:20 +00002330
Pravin B Shelar012a5722013-08-19 11:23:07 -07002331struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2332 vxlan_rcv_t *rcv, void *data,
Cong Wange4c7ed42013-08-31 13:44:33 +08002333 bool no_share, bool ipv6)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002334{
2335 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2336 struct vxlan_sock *vs;
2337
Cong Wange4c7ed42013-08-31 13:44:33 +08002338 vs = vxlan_socket_create(net, port, rcv, data, ipv6);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002339 if (!IS_ERR(vs))
2340 return vs;
2341
Pravin B Shelar012a5722013-08-19 11:23:07 -07002342 if (no_share) /* Return error if sharing is not allowed. */
2343 return vs;
2344
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002345 spin_lock(&vn->sock_lock);
2346 vs = vxlan_find_sock(net, port);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002347 if (vs) {
2348 if (vs->rcv == rcv)
2349 atomic_inc(&vs->refcnt);
2350 else
2351 vs = ERR_PTR(-EBUSY);
2352 }
2353 spin_unlock(&vn->sock_lock);
2354
2355 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002356 vs = ERR_PTR(-EINVAL);
2357
stephen hemminger553675f2013-05-16 11:35:20 +00002358 return vs;
2359}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002360EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002361
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002362/* Scheduled at device creation to bind to a socket */
2363static void vxlan_sock_work(struct work_struct *work)
2364{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002365 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
2366 struct net *net = dev_net(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002367 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002368 __be16 port = vxlan->dst_port;
2369 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002370
Cong Wange4c7ed42013-08-31 13:44:33 +08002371 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags & VXLAN_F_IPV6);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002372 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002373 if (!IS_ERR(nvs))
2374 vxlan_vs_add_dev(nvs, vxlan);
2375 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002376
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002377 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002378}
2379
stephen hemmingerd3428942012-10-01 12:32:35 +00002380static int vxlan_newlink(struct net *net, struct net_device *dev,
2381 struct nlattr *tb[], struct nlattr *data[])
2382{
stephen hemminger553675f2013-05-16 11:35:20 +00002383 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002384 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002385 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002386 __u32 vni;
2387 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002388 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002389
2390 if (!data[IFLA_VXLAN_ID])
2391 return -EINVAL;
2392
2393 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002394 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002395
Cong Wange4c7ed42013-08-31 13:44:33 +08002396 if (data[IFLA_VXLAN_GROUP]) {
2397 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
2398 dst->remote_ip.sa.sa_family = AF_INET;
2399 } else if (data[IFLA_VXLAN_GROUP6]) {
2400 if (!IS_ENABLED(CONFIG_IPV6))
2401 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002402
Cong Wange4c7ed42013-08-31 13:44:33 +08002403 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2404 sizeof(struct in6_addr));
2405 dst->remote_ip.sa.sa_family = AF_INET6;
2406 use_ipv6 = true;
2407 }
2408
2409 if (data[IFLA_VXLAN_LOCAL]) {
2410 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2411 vxlan->saddr.sa.sa_family = AF_INET;
2412 } else if (data[IFLA_VXLAN_LOCAL6]) {
2413 if (!IS_ENABLED(CONFIG_IPV6))
2414 return -EPFNOSUPPORT;
2415
2416 /* TODO: respect scope id */
2417 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2418 sizeof(struct in6_addr));
2419 vxlan->saddr.sa.sa_family = AF_INET6;
2420 use_ipv6 = true;
2421 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002422
stephen hemminger34e02aa2012-10-09 20:35:53 +00002423 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002424 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002425 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00002426 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002427
stephen hemminger34e02aa2012-10-09 20:35:53 +00002428 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002429 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002430 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002431 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002432
Cong Wange4c7ed42013-08-31 13:44:33 +08002433#if IS_ENABLED(CONFIG_IPV6)
2434 if (use_ipv6) {
2435 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2436 if (idev && idev->cnf.disable_ipv6) {
2437 pr_info("IPv6 is disabled via sysctl\n");
2438 return -EPERM;
2439 }
2440 vxlan->flags |= VXLAN_F_IPV6;
2441 }
2442#endif
2443
stephen hemminger34e02aa2012-10-09 20:35:53 +00002444 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002445 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002446
2447 /* update header length based on lower device */
2448 dev->hard_header_len = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002449 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
stephen hemmingerd3428942012-10-01 12:32:35 +00002450 }
2451
2452 if (data[IFLA_VXLAN_TOS])
2453 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2454
Vincent Bernatafb97182012-10-30 10:27:16 +00002455 if (data[IFLA_VXLAN_TTL])
2456 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2457
stephen hemmingerd3428942012-10-01 12:32:35 +00002458 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002459 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002460
2461 if (data[IFLA_VXLAN_AGEING])
2462 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2463 else
2464 vxlan->age_interval = FDB_AGE_DEFAULT;
2465
David Stevense4f67ad2012-11-20 02:50:14 +00002466 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2467 vxlan->flags |= VXLAN_F_PROXY;
2468
2469 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2470 vxlan->flags |= VXLAN_F_RSC;
2471
2472 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2473 vxlan->flags |= VXLAN_F_L2MISS;
2474
2475 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2476 vxlan->flags |= VXLAN_F_L3MISS;
2477
stephen hemmingerd3428942012-10-01 12:32:35 +00002478 if (data[IFLA_VXLAN_LIMIT])
2479 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2480
stephen hemminger05f47d62012-10-09 20:35:50 +00002481 if (data[IFLA_VXLAN_PORT_RANGE]) {
2482 const struct ifla_vxlan_port_range *p
2483 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2484 vxlan->port_min = ntohs(p->low);
2485 vxlan->port_max = ntohs(p->high);
2486 }
2487
stephen hemminger823aa872013-04-27 11:31:57 +00002488 if (data[IFLA_VXLAN_PORT])
2489 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2490
stephen hemminger553675f2013-05-16 11:35:20 +00002491 if (vxlan_find_vni(net, vni, vxlan->dst_port)) {
2492 pr_info("duplicate VNI %u\n", vni);
2493 return -EEXIST;
2494 }
2495
Yan Burman1b13c972013-01-29 23:43:07 +00002496 SET_ETHTOOL_OPS(dev, &vxlan_ethtool_ops);
2497
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002498 /* create an fdb entry for a valid default destination */
2499 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2500 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2501 &vxlan->default_dst.remote_ip,
2502 NUD_REACHABLE|NUD_PERMANENT,
2503 NLM_F_EXCL|NLM_F_CREATE,
2504 vxlan->dst_port,
2505 vxlan->default_dst.remote_vni,
2506 vxlan->default_dst.remote_ifindex,
2507 NTF_SELF);
2508 if (err)
2509 return err;
2510 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002511
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002512 err = register_netdevice(dev);
2513 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002514 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002515 return err;
2516 }
2517
stephen hemminger553675f2013-05-16 11:35:20 +00002518 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002519
2520 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002521}
2522
2523static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2524{
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002525 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002526 struct vxlan_dev *vxlan = netdev_priv(dev);
2527
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002528 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002529 if (!hlist_unhashed(&vxlan->hlist))
2530 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002531 spin_unlock(&vn->sock_lock);
2532
stephen hemminger553675f2013-05-16 11:35:20 +00002533 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002534 unregister_netdevice_queue(dev, head);
2535}
2536
2537static size_t vxlan_get_size(const struct net_device *dev)
2538{
2539
2540 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002541 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002542 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002543 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002544 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2545 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2546 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002547 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2548 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2549 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2550 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002551 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2552 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002553 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
stephen hemminger823aa872013-04-27 11:31:57 +00002554 nla_total_size(sizeof(__be16))+ /* IFLA_VXLAN_PORT */
stephen hemmingerd3428942012-10-01 12:32:35 +00002555 0;
2556}
2557
2558static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2559{
2560 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002561 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002562 struct ifla_vxlan_port_range ports = {
2563 .low = htons(vxlan->port_min),
2564 .high = htons(vxlan->port_max),
2565 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002566
Atzm Watanabec7995c42013-04-16 02:50:52 +00002567 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002568 goto nla_put_failure;
2569
Cong Wange4c7ed42013-08-31 13:44:33 +08002570 if (!vxlan_addr_any(&dst->remote_ip)) {
2571 if (dst->remote_ip.sa.sa_family == AF_INET) {
2572 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2573 dst->remote_ip.sin.sin_addr.s_addr))
2574 goto nla_put_failure;
2575#if IS_ENABLED(CONFIG_IPV6)
2576 } else {
2577 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2578 &dst->remote_ip.sin6.sin6_addr))
2579 goto nla_put_failure;
2580#endif
2581 }
2582 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002583
Atzm Watanabec7995c42013-04-16 02:50:52 +00002584 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002585 goto nla_put_failure;
2586
Cong Wange4c7ed42013-08-31 13:44:33 +08002587 if (!vxlan_addr_any(&vxlan->saddr)) {
2588 if (vxlan->saddr.sa.sa_family == AF_INET) {
2589 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2590 vxlan->saddr.sin.sin_addr.s_addr))
2591 goto nla_put_failure;
2592#if IS_ENABLED(CONFIG_IPV6)
2593 } else {
2594 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2595 &vxlan->saddr.sin6.sin6_addr))
2596 goto nla_put_failure;
2597#endif
2598 }
2599 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002600
2601 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2602 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002603 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2604 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2605 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2606 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2607 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2608 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2609 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2610 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2611 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002612 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002613 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
2614 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port))
stephen hemmingerd3428942012-10-01 12:32:35 +00002615 goto nla_put_failure;
2616
stephen hemminger05f47d62012-10-09 20:35:50 +00002617 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2618 goto nla_put_failure;
2619
stephen hemmingerd3428942012-10-01 12:32:35 +00002620 return 0;
2621
2622nla_put_failure:
2623 return -EMSGSIZE;
2624}
2625
2626static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2627 .kind = "vxlan",
2628 .maxtype = IFLA_VXLAN_MAX,
2629 .policy = vxlan_policy,
2630 .priv_size = sizeof(struct vxlan_dev),
2631 .setup = vxlan_setup,
2632 .validate = vxlan_validate,
2633 .newlink = vxlan_newlink,
2634 .dellink = vxlan_dellink,
2635 .get_size = vxlan_get_size,
2636 .fill_info = vxlan_fill_info,
2637};
2638
2639static __net_init int vxlan_init_net(struct net *net)
2640{
2641 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002642 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002643
stephen hemminger553675f2013-05-16 11:35:20 +00002644 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002645 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002646
stephen hemminger553675f2013-05-16 11:35:20 +00002647 for (h = 0; h < PORT_HASH_SIZE; ++h)
2648 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002649
2650 return 0;
2651}
2652
2653static __net_exit void vxlan_exit_net(struct net *net)
2654{
2655 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00002656 struct vxlan_dev *vxlan;
stephen hemminger372675a2013-07-18 08:38:26 -07002657 LIST_HEAD(list);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00002658
2659 rtnl_lock();
stephen hemminger553675f2013-05-16 11:35:20 +00002660 list_for_each_entry(vxlan, &vn->vxlan_list, next)
stephen hemminger372675a2013-07-18 08:38:26 -07002661 unregister_netdevice_queue(vxlan->dev, &list);
2662 unregister_netdevice_many(&list);
Zang MingJie9cb6cb72013-03-06 04:37:37 +00002663 rtnl_unlock();
stephen hemmingerd3428942012-10-01 12:32:35 +00002664}
2665
2666static struct pernet_operations vxlan_net_ops = {
2667 .init = vxlan_init_net,
2668 .exit = vxlan_exit_net,
2669 .id = &vxlan_net_id,
2670 .size = sizeof(struct vxlan_net),
2671};
2672
2673static int __init vxlan_init_module(void)
2674{
2675 int rc;
2676
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002677 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
2678 if (!vxlan_wq)
2679 return -ENOMEM;
2680
stephen hemmingerd3428942012-10-01 12:32:35 +00002681 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
2682
2683 rc = register_pernet_device(&vxlan_net_ops);
2684 if (rc)
2685 goto out1;
2686
2687 rc = rtnl_link_register(&vxlan_link_ops);
2688 if (rc)
2689 goto out2;
2690
2691 return 0;
2692
2693out2:
2694 unregister_pernet_device(&vxlan_net_ops);
2695out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002696 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00002697 return rc;
2698}
Cong Wang7332a132013-05-27 22:35:53 +00002699late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00002700
2701static void __exit vxlan_cleanup_module(void)
2702{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07002703 rtnl_link_unregister(&vxlan_link_ops);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002704 destroy_workqueue(vxlan_wq);
Pravin B Shelarf89e57c2013-07-11 11:38:06 -07002705 unregister_pernet_device(&vxlan_net_ops);
David Stevens66817122013-03-15 04:35:51 +00002706 rcu_barrier();
stephen hemmingerd3428942012-10-01 12:32:35 +00002707}
2708module_exit(vxlan_cleanup_module);
2709
2710MODULE_LICENSE("GPL");
2711MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00002712MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
stephen hemmingerd3428942012-10-01 12:32:35 +00002713MODULE_ALIAS_RTNL_LINK("vxlan");