blob: 3a18d8ed89ca28cdb9c8af4f08a2ae733f3de211 [file] [log] [blame]
stephen hemmingerd3428942012-10-01 12:32:35 +00001/*
Rami Roseneb5ce432012-11-13 13:29:15 +00002 * VXLAN: Virtual eXtensible Local Area Network
stephen hemmingerd3428942012-10-01 12:32:35 +00003 *
stephen hemminger3b8df3c2013-04-27 11:31:52 +00004 * Copyright (c) 2012-2013 Vyatta Inc.
stephen hemmingerd3428942012-10-01 12:32:35 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
stephen hemmingerd3428942012-10-01 12:32:35 +00009 */
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/kernel.h>
14#include <linux/types.h>
15#include <linux/module.h>
16#include <linux/errno.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/rculist.h>
20#include <linux/netdevice.h>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/udp.h>
24#include <linux/igmp.h>
25#include <linux/etherdevice.h>
26#include <linux/if_ether.h>
Pravin B Shelar1eaa8172013-08-19 11:23:29 -070027#include <linux/if_vlan.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000028#include <linux/hash.h>
Yan Burman1b13c972013-01-29 23:43:07 +000029#include <linux/ethtool.h>
David Stevense4f67ad2012-11-20 02:50:14 +000030#include <net/arp.h>
31#include <net/ndisc.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000032#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000033#include <net/ip_tunnels.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000034#include <net/icmp.h>
35#include <net/udp.h>
Tom Herbert3ee64f32014-07-13 19:49:42 -070036#include <net/udp_tunnel.h>
stephen hemmingerd3428942012-10-01 12:32:35 +000037#include <net/rtnetlink.h>
38#include <net/route.h>
39#include <net/dsfield.h>
40#include <net/inet_ecn.h>
41#include <net/net_namespace.h>
42#include <net/netns/generic.h>
Pravin B Shelar012a5722013-08-19 11:23:07 -070043#include <net/vxlan.h>
Or Gerlitzdc01e7d2014-01-20 13:59:21 +020044#include <net/protocol.h>
Andy Zhouacbf74a2014-09-16 17:31:18 -070045#include <net/udp_tunnel.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080046#if IS_ENABLED(CONFIG_IPV6)
47#include <net/ipv6.h>
48#include <net/addrconf.h>
49#include <net/ip6_tunnel.h>
Cong Wang660d98c2013-09-02 10:06:52 +080050#include <net/ip6_checksum.h>
Cong Wange4c7ed42013-08-31 13:44:33 +080051#endif
stephen hemmingerd3428942012-10-01 12:32:35 +000052
53#define VXLAN_VERSION "0.1"
54
stephen hemminger553675f2013-05-16 11:35:20 +000055#define PORT_HASH_BITS 8
56#define PORT_HASH_SIZE (1<<PORT_HASH_BITS)
stephen hemmingerd3428942012-10-01 12:32:35 +000057#define VNI_HASH_BITS 10
58#define VNI_HASH_SIZE (1<<VNI_HASH_BITS)
59#define FDB_HASH_BITS 8
60#define FDB_HASH_SIZE (1<<FDB_HASH_BITS)
61#define FDB_AGE_DEFAULT 300 /* 5 min */
62#define FDB_AGE_INTERVAL (10 * HZ) /* rescan interval */
63
stephen hemminger23c578b2013-04-27 11:31:53 +000064/* UDP port for VXLAN traffic.
65 * The IANA assigned port is 4789, but the Linux default is 8472
Stephen Hemminger234f5b72013-06-17 14:16:41 -070066 * for compatibility with early adopters.
stephen hemminger23c578b2013-04-27 11:31:53 +000067 */
Stephen Hemminger9daaa392013-06-17 14:16:12 -070068static unsigned short vxlan_port __read_mostly = 8472;
69module_param_named(udp_port, vxlan_port, ushort, 0444);
stephen hemmingerd3428942012-10-01 12:32:35 +000070MODULE_PARM_DESC(udp_port, "Destination UDP port");
71
72static bool log_ecn_error = true;
73module_param(log_ecn_error, bool, 0644);
74MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
75
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -070076static int vxlan_net_id;
stephen hemminger553675f2013-05-16 11:35:20 +000077
Mike Rapoportafbd8ba2013-06-25 16:01:51 +030078static const u8 all_zeros_mac[ETH_ALEN];
79
stephen hemminger553675f2013-05-16 11:35:20 +000080/* per-network namespace private data for this module */
81struct vxlan_net {
82 struct list_head vxlan_list;
83 struct hlist_head sock_list[PORT_HASH_SIZE];
Stephen Hemminger1c51a912013-06-17 14:16:11 -070084 spinlock_t sock_lock;
stephen hemminger553675f2013-05-16 11:35:20 +000085};
86
Cong Wange4c7ed42013-08-31 13:44:33 +080087union vxlan_addr {
88 struct sockaddr_in sin;
89 struct sockaddr_in6 sin6;
90 struct sockaddr sa;
91};
92
David Stevens66817122013-03-15 04:35:51 +000093struct vxlan_rdst {
Cong Wange4c7ed42013-08-31 13:44:33 +080094 union vxlan_addr remote_ip;
David Stevens66817122013-03-15 04:35:51 +000095 __be16 remote_port;
96 u32 remote_vni;
97 u32 remote_ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -070098 struct list_head list;
Mike Rapoportbc7892b2013-06-25 16:01:54 +030099 struct rcu_head rcu;
David Stevens66817122013-03-15 04:35:51 +0000100};
101
stephen hemmingerd3428942012-10-01 12:32:35 +0000102/* Forwarding table entry */
103struct vxlan_fdb {
104 struct hlist_node hlist; /* linked list of entries */
105 struct rcu_head rcu;
106 unsigned long updated; /* jiffies */
107 unsigned long used;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700108 struct list_head remotes;
stephen hemmingerd3428942012-10-01 12:32:35 +0000109 u16 state; /* see ndm_state */
David Stevensae884082013-04-19 00:36:26 +0000110 u8 flags; /* see ndm_flags */
stephen hemmingerd3428942012-10-01 12:32:35 +0000111 u8 eth_addr[ETH_ALEN];
112};
113
stephen hemmingerd3428942012-10-01 12:32:35 +0000114/* Pseudo network device */
115struct vxlan_dev {
stephen hemminger553675f2013-05-16 11:35:20 +0000116 struct hlist_node hlist; /* vni hash table */
117 struct list_head next; /* vxlan's per namespace list */
118 struct vxlan_sock *vn_sock; /* listening socket */
stephen hemmingerd3428942012-10-01 12:32:35 +0000119 struct net_device *dev;
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +0200120 struct net *net; /* netns for packet i/o */
Atzm Watanabec7995c42013-04-16 02:50:52 +0000121 struct vxlan_rdst default_dst; /* default destination */
Cong Wange4c7ed42013-08-31 13:44:33 +0800122 union vxlan_addr saddr; /* source address */
stephen hemminger823aa872013-04-27 11:31:57 +0000123 __be16 dst_port;
stephen hemminger05f47d62012-10-09 20:35:50 +0000124 __u16 port_min; /* source port range */
125 __u16 port_max;
stephen hemmingerd3428942012-10-01 12:32:35 +0000126 __u8 tos; /* TOS override */
127 __u8 ttl;
Tom Herbert359a0ea2014-06-04 17:20:29 -0700128 u32 flags; /* VXLAN_F_* in vxlan.h */
stephen hemmingerd3428942012-10-01 12:32:35 +0000129
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700130 struct work_struct sock_work;
stephen hemminger3fc2de22013-07-18 08:40:15 -0700131 struct work_struct igmp_join;
132 struct work_struct igmp_leave;
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700133
stephen hemmingerd3428942012-10-01 12:32:35 +0000134 unsigned long age_interval;
135 struct timer_list age_timer;
136 spinlock_t hash_lock;
137 unsigned int addrcnt;
138 unsigned int addrmax;
stephen hemmingerd3428942012-10-01 12:32:35 +0000139
140 struct hlist_head fdb_head[FDB_HASH_SIZE];
141};
142
143/* salt for hash table */
144static u32 vxlan_salt __read_mostly;
Stephen Hemminger758c57d2013-06-17 14:16:09 -0700145static struct workqueue_struct *vxlan_wq;
stephen hemmingerd3428942012-10-01 12:32:35 +0000146
Stephen Hemminger1c51a912013-06-17 14:16:11 -0700147static void vxlan_sock_work(struct work_struct *work);
148
Cong Wange4c7ed42013-08-31 13:44:33 +0800149#if IS_ENABLED(CONFIG_IPV6)
150static inline
151bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
152{
153 if (a->sa.sa_family != b->sa.sa_family)
154 return false;
155 if (a->sa.sa_family == AF_INET6)
156 return ipv6_addr_equal(&a->sin6.sin6_addr, &b->sin6.sin6_addr);
157 else
158 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
159}
160
161static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
162{
163 if (ipa->sa.sa_family == AF_INET6)
164 return ipv6_addr_any(&ipa->sin6.sin6_addr);
165 else
166 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
167}
168
169static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
170{
171 if (ipa->sa.sa_family == AF_INET6)
172 return ipv6_addr_is_multicast(&ipa->sin6.sin6_addr);
173 else
174 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
175}
176
177static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
178{
179 if (nla_len(nla) >= sizeof(struct in6_addr)) {
180 nla_memcpy(&ip->sin6.sin6_addr, nla, sizeof(struct in6_addr));
181 ip->sa.sa_family = AF_INET6;
182 return 0;
183 } else if (nla_len(nla) >= sizeof(__be32)) {
184 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
185 ip->sa.sa_family = AF_INET;
186 return 0;
187 } else {
188 return -EAFNOSUPPORT;
189 }
190}
191
192static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
193 const union vxlan_addr *ip)
194{
195 if (ip->sa.sa_family == AF_INET6)
196 return nla_put(skb, attr, sizeof(struct in6_addr), &ip->sin6.sin6_addr);
197 else
198 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
199}
200
201#else /* !CONFIG_IPV6 */
202
203static inline
204bool vxlan_addr_equal(const union vxlan_addr *a, const union vxlan_addr *b)
205{
206 return a->sin.sin_addr.s_addr == b->sin.sin_addr.s_addr;
207}
208
209static inline bool vxlan_addr_any(const union vxlan_addr *ipa)
210{
211 return ipa->sin.sin_addr.s_addr == htonl(INADDR_ANY);
212}
213
214static inline bool vxlan_addr_multicast(const union vxlan_addr *ipa)
215{
216 return IN_MULTICAST(ntohl(ipa->sin.sin_addr.s_addr));
217}
218
219static int vxlan_nla_get_addr(union vxlan_addr *ip, struct nlattr *nla)
220{
221 if (nla_len(nla) >= sizeof(struct in6_addr)) {
222 return -EAFNOSUPPORT;
223 } else if (nla_len(nla) >= sizeof(__be32)) {
224 ip->sin.sin_addr.s_addr = nla_get_be32(nla);
225 ip->sa.sa_family = AF_INET;
226 return 0;
227 } else {
228 return -EAFNOSUPPORT;
229 }
230}
231
232static int vxlan_nla_put_addr(struct sk_buff *skb, int attr,
233 const union vxlan_addr *ip)
234{
235 return nla_put_be32(skb, attr, ip->sin.sin_addr.s_addr);
236}
237#endif
238
stephen hemminger553675f2013-05-16 11:35:20 +0000239/* Virtual Network hash table head */
240static inline struct hlist_head *vni_head(struct vxlan_sock *vs, u32 id)
241{
242 return &vs->vni_list[hash_32(id, VNI_HASH_BITS)];
243}
244
245/* Socket hash table head */
246static inline struct hlist_head *vs_head(struct net *net, __be16 port)
stephen hemmingerd3428942012-10-01 12:32:35 +0000247{
248 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
249
stephen hemminger553675f2013-05-16 11:35:20 +0000250 return &vn->sock_list[hash_32(ntohs(port), PORT_HASH_BITS)];
251}
252
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700253/* First remote destination for a forwarding entry.
254 * Guaranteed to be non-NULL because remotes are never deleted.
255 */
stephen hemminger5ca54612013-08-04 17:17:39 -0700256static inline struct vxlan_rdst *first_remote_rcu(struct vxlan_fdb *fdb)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700257{
stephen hemminger5ca54612013-08-04 17:17:39 -0700258 return list_entry_rcu(fdb->remotes.next, struct vxlan_rdst, list);
259}
260
261static inline struct vxlan_rdst *first_remote_rtnl(struct vxlan_fdb *fdb)
262{
263 return list_first_entry(&fdb->remotes, struct vxlan_rdst, list);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700264}
265
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200266/* Find VXLAN socket based on network namespace, address family and UDP port */
267static struct vxlan_sock *vxlan_find_sock(struct net *net,
268 sa_family_t family, __be16 port)
stephen hemminger553675f2013-05-16 11:35:20 +0000269{
270 struct vxlan_sock *vs;
271
272 hlist_for_each_entry_rcu(vs, vs_head(net, port), hlist) {
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200273 if (inet_sk(vs->sock->sk)->inet_sport == port &&
274 inet_sk(vs->sock->sk)->sk.sk_family == family)
stephen hemminger553675f2013-05-16 11:35:20 +0000275 return vs;
276 }
277 return NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000278}
279
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700280static struct vxlan_dev *vxlan_vs_find_vni(struct vxlan_sock *vs, u32 id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000281{
282 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000283
stephen hemminger553675f2013-05-16 11:35:20 +0000284 hlist_for_each_entry_rcu(vxlan, vni_head(vs, id), hlist) {
Atzm Watanabec7995c42013-04-16 02:50:52 +0000285 if (vxlan->default_dst.remote_vni == id)
stephen hemmingerd3428942012-10-01 12:32:35 +0000286 return vxlan;
287 }
288
289 return NULL;
290}
291
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700292/* Look up VNI in a per net namespace table */
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200293static struct vxlan_dev *vxlan_find_vni(struct net *net, u32 id,
294 sa_family_t family, __be16 port)
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700295{
296 struct vxlan_sock *vs;
297
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -0200298 vs = vxlan_find_sock(net, family, port);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -0700299 if (!vs)
300 return NULL;
301
302 return vxlan_vs_find_vni(vs, id);
303}
304
stephen hemmingerd3428942012-10-01 12:32:35 +0000305/* Fill in neighbour message in skbuff. */
306static int vxlan_fdb_info(struct sk_buff *skb, struct vxlan_dev *vxlan,
Stephen Hemminger234f5b72013-06-17 14:16:41 -0700307 const struct vxlan_fdb *fdb,
308 u32 portid, u32 seq, int type, unsigned int flags,
309 const struct vxlan_rdst *rdst)
stephen hemmingerd3428942012-10-01 12:32:35 +0000310{
311 unsigned long now = jiffies;
312 struct nda_cacheinfo ci;
313 struct nlmsghdr *nlh;
314 struct ndmsg *ndm;
David Stevense4f67ad2012-11-20 02:50:14 +0000315 bool send_ip, send_eth;
stephen hemmingerd3428942012-10-01 12:32:35 +0000316
317 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
318 if (nlh == NULL)
319 return -EMSGSIZE;
320
321 ndm = nlmsg_data(nlh);
322 memset(ndm, 0, sizeof(*ndm));
David Stevense4f67ad2012-11-20 02:50:14 +0000323
324 send_eth = send_ip = true;
325
326 if (type == RTM_GETNEIGH) {
327 ndm->ndm_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +0800328 send_ip = !vxlan_addr_any(&rdst->remote_ip);
David Stevense4f67ad2012-11-20 02:50:14 +0000329 send_eth = !is_zero_ether_addr(fdb->eth_addr);
330 } else
331 ndm->ndm_family = AF_BRIDGE;
stephen hemmingerd3428942012-10-01 12:32:35 +0000332 ndm->ndm_state = fdb->state;
333 ndm->ndm_ifindex = vxlan->dev->ifindex;
David Stevensae884082013-04-19 00:36:26 +0000334 ndm->ndm_flags = fdb->flags;
Jun Zhao545469f2014-07-26 00:38:59 +0800335 ndm->ndm_type = RTN_UNICAST;
stephen hemmingerd3428942012-10-01 12:32:35 +0000336
David Stevense4f67ad2012-11-20 02:50:14 +0000337 if (send_eth && nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000338 goto nla_put_failure;
339
Cong Wange4c7ed42013-08-31 13:44:33 +0800340 if (send_ip && vxlan_nla_put_addr(skb, NDA_DST, &rdst->remote_ip))
David Stevens66817122013-03-15 04:35:51 +0000341 goto nla_put_failure;
342
stephen hemminger823aa872013-04-27 11:31:57 +0000343 if (rdst->remote_port && rdst->remote_port != vxlan->dst_port &&
David Stevens66817122013-03-15 04:35:51 +0000344 nla_put_be16(skb, NDA_PORT, rdst->remote_port))
345 goto nla_put_failure;
Atzm Watanabec7995c42013-04-16 02:50:52 +0000346 if (rdst->remote_vni != vxlan->default_dst.remote_vni &&
Pravin B Shelar60d9d4c2013-06-20 00:26:31 -0700347 nla_put_u32(skb, NDA_VNI, rdst->remote_vni))
David Stevens66817122013-03-15 04:35:51 +0000348 goto nla_put_failure;
349 if (rdst->remote_ifindex &&
350 nla_put_u32(skb, NDA_IFINDEX, rdst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +0000351 goto nla_put_failure;
352
353 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
354 ci.ndm_confirmed = 0;
355 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
356 ci.ndm_refcnt = 0;
357
358 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
359 goto nla_put_failure;
360
361 return nlmsg_end(skb, nlh);
362
363nla_put_failure:
364 nlmsg_cancel(skb, nlh);
365 return -EMSGSIZE;
366}
367
368static inline size_t vxlan_nlmsg_size(void)
369{
370 return NLMSG_ALIGN(sizeof(struct ndmsg))
371 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Cong Wange4c7ed42013-08-31 13:44:33 +0800372 + nla_total_size(sizeof(struct in6_addr)) /* NDA_DST */
stephen hemminger73cf3312013-04-27 11:31:54 +0000373 + nla_total_size(sizeof(__be16)) /* NDA_PORT */
David Stevens66817122013-03-15 04:35:51 +0000374 + nla_total_size(sizeof(__be32)) /* NDA_VNI */
375 + nla_total_size(sizeof(__u32)) /* NDA_IFINDEX */
stephen hemmingerd3428942012-10-01 12:32:35 +0000376 + nla_total_size(sizeof(struct nda_cacheinfo));
377}
378
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200379static void vxlan_fdb_notify(struct vxlan_dev *vxlan, struct vxlan_fdb *fdb,
380 struct vxlan_rdst *rd, int type)
stephen hemmingerd3428942012-10-01 12:32:35 +0000381{
382 struct net *net = dev_net(vxlan->dev);
383 struct sk_buff *skb;
384 int err = -ENOBUFS;
385
386 skb = nlmsg_new(vxlan_nlmsg_size(), GFP_ATOMIC);
387 if (skb == NULL)
388 goto errout;
389
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200390 err = vxlan_fdb_info(skb, vxlan, fdb, 0, 0, type, 0, rd);
stephen hemmingerd3428942012-10-01 12:32:35 +0000391 if (err < 0) {
392 /* -EMSGSIZE implies BUG in vxlan_nlmsg_size() */
393 WARN_ON(err == -EMSGSIZE);
394 kfree_skb(skb);
395 goto errout;
396 }
397
398 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
399 return;
400errout:
401 if (err < 0)
402 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
403}
404
Cong Wange4c7ed42013-08-31 13:44:33 +0800405static void vxlan_ip_miss(struct net_device *dev, union vxlan_addr *ipa)
David Stevense4f67ad2012-11-20 02:50:14 +0000406{
407 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700408 struct vxlan_fdb f = {
409 .state = NUD_STALE,
410 };
411 struct vxlan_rdst remote = {
Cong Wange4c7ed42013-08-31 13:44:33 +0800412 .remote_ip = *ipa, /* goes to NDA_DST */
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700413 .remote_vni = VXLAN_N_VID,
414 };
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700415
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200416 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000417}
418
419static void vxlan_fdb_miss(struct vxlan_dev *vxlan, const u8 eth_addr[ETH_ALEN])
420{
Stephen Hemmingerbb3fd682013-06-17 14:16:40 -0700421 struct vxlan_fdb f = {
422 .state = NUD_STALE,
423 };
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200424 struct vxlan_rdst remote = { };
David Stevense4f67ad2012-11-20 02:50:14 +0000425
David Stevense4f67ad2012-11-20 02:50:14 +0000426 memcpy(f.eth_addr, eth_addr, ETH_ALEN);
427
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200428 vxlan_fdb_notify(vxlan, &f, &remote, RTM_GETNEIGH);
David Stevense4f67ad2012-11-20 02:50:14 +0000429}
430
stephen hemmingerd3428942012-10-01 12:32:35 +0000431/* Hash Ethernet address */
432static u32 eth_hash(const unsigned char *addr)
433{
434 u64 value = get_unaligned((u64 *)addr);
435
436 /* only want 6 bytes */
437#ifdef __BIG_ENDIAN
stephen hemmingerd3428942012-10-01 12:32:35 +0000438 value >>= 16;
stephen hemminger321fb992012-10-09 20:35:47 +0000439#else
440 value <<= 16;
stephen hemmingerd3428942012-10-01 12:32:35 +0000441#endif
442 return hash_64(value, FDB_HASH_BITS);
443}
444
445/* Hash chain to use given mac address */
446static inline struct hlist_head *vxlan_fdb_head(struct vxlan_dev *vxlan,
447 const u8 *mac)
448{
449 return &vxlan->fdb_head[eth_hash(mac)];
450}
451
452/* Look up Ethernet address in forwarding table */
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000453static struct vxlan_fdb *__vxlan_find_mac(struct vxlan_dev *vxlan,
stephen hemmingerd3428942012-10-01 12:32:35 +0000454 const u8 *mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000455{
456 struct hlist_head *head = vxlan_fdb_head(vxlan, mac);
457 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000458
Sasha Levinb67bfe02013-02-27 17:06:00 -0800459 hlist_for_each_entry_rcu(f, head, hlist) {
Joe Perches7367d0b2013-09-01 11:51:23 -0700460 if (ether_addr_equal(mac, f->eth_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +0000461 return f;
462 }
463
464 return NULL;
465}
466
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000467static struct vxlan_fdb *vxlan_find_mac(struct vxlan_dev *vxlan,
468 const u8 *mac)
469{
470 struct vxlan_fdb *f;
471
472 f = __vxlan_find_mac(vxlan, mac);
473 if (f)
474 f->used = jiffies;
475
476 return f;
477}
478
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300479/* caller should hold vxlan->hash_lock */
480static struct vxlan_rdst *vxlan_fdb_find_rdst(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800481 union vxlan_addr *ip, __be16 port,
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300482 __u32 vni, __u32 ifindex)
483{
484 struct vxlan_rdst *rd;
485
486 list_for_each_entry(rd, &f->remotes, list) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800487 if (vxlan_addr_equal(&rd->remote_ip, ip) &&
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300488 rd->remote_port == port &&
489 rd->remote_vni == vni &&
490 rd->remote_ifindex == ifindex)
491 return rd;
492 }
493
494 return NULL;
495}
496
Thomas Richter906dc182013-07-19 17:20:07 +0200497/* Replace destination of unicast mac */
498static int vxlan_fdb_replace(struct vxlan_fdb *f,
Cong Wange4c7ed42013-08-31 13:44:33 +0800499 union vxlan_addr *ip, __be16 port, __u32 vni, __u32 ifindex)
Thomas Richter906dc182013-07-19 17:20:07 +0200500{
501 struct vxlan_rdst *rd;
502
503 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
504 if (rd)
505 return 0;
506
507 rd = list_first_entry_or_null(&f->remotes, struct vxlan_rdst, list);
508 if (!rd)
509 return 0;
Cong Wange4c7ed42013-08-31 13:44:33 +0800510 rd->remote_ip = *ip;
Thomas Richter906dc182013-07-19 17:20:07 +0200511 rd->remote_port = port;
512 rd->remote_vni = vni;
513 rd->remote_ifindex = ifindex;
514 return 1;
515}
516
David Stevens66817122013-03-15 04:35:51 +0000517/* Add/update destinations for multicast */
518static int vxlan_fdb_append(struct vxlan_fdb *f,
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200519 union vxlan_addr *ip, __be16 port, __u32 vni,
520 __u32 ifindex, struct vxlan_rdst **rdp)
David Stevens66817122013-03-15 04:35:51 +0000521{
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700522 struct vxlan_rdst *rd;
David Stevens66817122013-03-15 04:35:51 +0000523
Mike Rapoporta5e7c102013-06-25 16:01:52 +0300524 rd = vxlan_fdb_find_rdst(f, ip, port, vni, ifindex);
525 if (rd)
526 return 0;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700527
David Stevens66817122013-03-15 04:35:51 +0000528 rd = kmalloc(sizeof(*rd), GFP_ATOMIC);
529 if (rd == NULL)
530 return -ENOBUFS;
Cong Wange4c7ed42013-08-31 13:44:33 +0800531 rd->remote_ip = *ip;
David Stevens66817122013-03-15 04:35:51 +0000532 rd->remote_port = port;
533 rd->remote_vni = vni;
534 rd->remote_ifindex = ifindex;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700535
536 list_add_tail_rcu(&rd->list, &f->remotes);
537
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200538 *rdp = rd;
David Stevens66817122013-03-15 04:35:51 +0000539 return 1;
540}
541
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200542static struct sk_buff **vxlan_gro_receive(struct sk_buff **head, struct sk_buff *skb)
543{
544 struct sk_buff *p, **pp = NULL;
545 struct vxlanhdr *vh, *vh2;
Jesse Gross9b174d82014-12-30 19:10:15 -0800546 unsigned int hlen, off_vx;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200547 int flush = 1;
548
549 off_vx = skb_gro_offset(skb);
550 hlen = off_vx + sizeof(*vh);
551 vh = skb_gro_header_fast(skb, off_vx);
552 if (skb_gro_header_hard(skb, hlen)) {
553 vh = skb_gro_header_slow(skb, hlen, off_vx);
554 if (unlikely(!vh))
555 goto out;
556 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200557
558 flush = 0;
559
560 for (p = *head; p; p = p->next) {
561 if (!NAPI_GRO_CB(p)->same_flow)
562 continue;
563
564 vh2 = (struct vxlanhdr *)(p->data + off_vx);
Jesse Gross9b174d82014-12-30 19:10:15 -0800565 if (vh->vx_vni != vh2->vx_vni) {
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200566 NAPI_GRO_CB(p)->same_flow = 0;
567 continue;
568 }
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200569 }
570
Jesse Gross9b174d82014-12-30 19:10:15 -0800571 skb_gro_pull(skb, sizeof(struct vxlanhdr));
572 skb_gro_postpull_rcsum(skb, vh, sizeof(struct vxlanhdr));
573 pp = eth_gro_receive(head, skb);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200574
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200575out:
576 NAPI_GRO_CB(skb)->flush |= flush;
577
578 return pp;
579}
580
581static int vxlan_gro_complete(struct sk_buff *skb, int nhoff)
582{
Jesse Grosscfdf1e12014-11-10 11:45:13 -0800583 udp_tunnel_gro_complete(skb, nhoff);
584
Jesse Gross9b174d82014-12-30 19:10:15 -0800585 return eth_gro_complete(skb, nhoff + sizeof(struct vxlanhdr));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200586}
587
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700588/* Notify netdevs that UDP port started listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200589static void vxlan_notify_add_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700590{
591 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200592 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700593 struct net *net = sock_net(sk);
594 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700595 __be16 port = inet_sk(sk)->inet_sport;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200596 int err;
597
598 if (sa_family == AF_INET) {
599 err = udp_add_offload(&vs->udp_offloads);
600 if (err)
601 pr_warn("vxlan: udp_add_offload failed with status %d\n", err);
602 }
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700603
604 rcu_read_lock();
605 for_each_netdev_rcu(net, dev) {
606 if (dev->netdev_ops->ndo_add_vxlan_port)
607 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
608 port);
609 }
610 rcu_read_unlock();
611}
612
613/* Notify netdevs that UDP port is no more listening */
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200614static void vxlan_notify_del_rx_port(struct vxlan_sock *vs)
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700615{
616 struct net_device *dev;
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200617 struct sock *sk = vs->sock->sk;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700618 struct net *net = sock_net(sk);
619 sa_family_t sa_family = sk->sk_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -0700620 __be16 port = inet_sk(sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700621
622 rcu_read_lock();
623 for_each_netdev_rcu(net, dev) {
624 if (dev->netdev_ops->ndo_del_vxlan_port)
625 dev->netdev_ops->ndo_del_vxlan_port(dev, sa_family,
626 port);
627 }
628 rcu_read_unlock();
Or Gerlitzdc01e7d2014-01-20 13:59:21 +0200629
630 if (sa_family == AF_INET)
631 udp_del_offload(&vs->udp_offloads);
Joseph Gasparakis53cf52752013-09-04 02:13:38 -0700632}
633
stephen hemmingerd3428942012-10-01 12:32:35 +0000634/* Add new entry to forwarding table -- assumes lock held */
635static int vxlan_fdb_create(struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800636 const u8 *mac, union vxlan_addr *ip,
David Stevens66817122013-03-15 04:35:51 +0000637 __u16 state, __u16 flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000638 __be16 port, __u32 vni, __u32 ifindex,
David Stevensae884082013-04-19 00:36:26 +0000639 __u8 ndm_flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000640{
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200641 struct vxlan_rdst *rd = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +0000642 struct vxlan_fdb *f;
643 int notify = 0;
644
Sridhar Samudrala014be2c2013-05-17 06:39:07 +0000645 f = __vxlan_find_mac(vxlan, mac);
stephen hemmingerd3428942012-10-01 12:32:35 +0000646 if (f) {
647 if (flags & NLM_F_EXCL) {
648 netdev_dbg(vxlan->dev,
649 "lost race to create %pM\n", mac);
650 return -EEXIST;
651 }
652 if (f->state != state) {
653 f->state = state;
654 f->updated = jiffies;
655 notify = 1;
656 }
David Stevensae884082013-04-19 00:36:26 +0000657 if (f->flags != ndm_flags) {
658 f->flags = ndm_flags;
659 f->updated = jiffies;
660 notify = 1;
661 }
Thomas Richter906dc182013-07-19 17:20:07 +0200662 if ((flags & NLM_F_REPLACE)) {
663 /* Only change unicasts */
664 if (!(is_multicast_ether_addr(f->eth_addr) ||
665 is_zero_ether_addr(f->eth_addr))) {
666 int rc = vxlan_fdb_replace(f, ip, port, vni,
667 ifindex);
668
669 if (rc < 0)
670 return rc;
671 notify |= rc;
672 } else
673 return -EOPNOTSUPP;
674 }
David Stevens66817122013-03-15 04:35:51 +0000675 if ((flags & NLM_F_APPEND) &&
Mike Rapoport58e4c762013-06-25 16:01:56 +0300676 (is_multicast_ether_addr(f->eth_addr) ||
677 is_zero_ether_addr(f->eth_addr))) {
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200678 int rc = vxlan_fdb_append(f, ip, port, vni, ifindex,
679 &rd);
David Stevens66817122013-03-15 04:35:51 +0000680
681 if (rc < 0)
682 return rc;
683 notify |= rc;
684 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000685 } else {
686 if (!(flags & NLM_F_CREATE))
687 return -ENOENT;
688
689 if (vxlan->addrmax && vxlan->addrcnt >= vxlan->addrmax)
690 return -ENOSPC;
691
Thomas Richter906dc182013-07-19 17:20:07 +0200692 /* Disallow replace to add a multicast entry */
693 if ((flags & NLM_F_REPLACE) &&
694 (is_multicast_ether_addr(mac) || is_zero_ether_addr(mac)))
695 return -EOPNOTSUPP;
696
Cong Wange4c7ed42013-08-31 13:44:33 +0800697 netdev_dbg(vxlan->dev, "add %pM -> %pIS\n", mac, ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000698 f = kmalloc(sizeof(*f), GFP_ATOMIC);
699 if (!f)
700 return -ENOMEM;
701
702 notify = 1;
stephen hemmingerd3428942012-10-01 12:32:35 +0000703 f->state = state;
David Stevensae884082013-04-19 00:36:26 +0000704 f->flags = ndm_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +0000705 f->updated = f->used = jiffies;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700706 INIT_LIST_HEAD(&f->remotes);
stephen hemmingerd3428942012-10-01 12:32:35 +0000707 memcpy(f->eth_addr, mac, ETH_ALEN);
708
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200709 vxlan_fdb_append(f, ip, port, vni, ifindex, &rd);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700710
stephen hemmingerd3428942012-10-01 12:32:35 +0000711 ++vxlan->addrcnt;
712 hlist_add_head_rcu(&f->hlist,
713 vxlan_fdb_head(vxlan, mac));
714 }
715
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200716 if (notify) {
717 if (rd == NULL)
718 rd = first_remote_rtnl(f);
719 vxlan_fdb_notify(vxlan, f, rd, RTM_NEWNEIGH);
720 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000721
722 return 0;
723}
724
Wei Yongjun6706c822013-04-11 19:00:35 +0000725static void vxlan_fdb_free(struct rcu_head *head)
David Stevens66817122013-03-15 04:35:51 +0000726{
727 struct vxlan_fdb *f = container_of(head, struct vxlan_fdb, rcu);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700728 struct vxlan_rdst *rd, *nd;
David Stevens66817122013-03-15 04:35:51 +0000729
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700730 list_for_each_entry_safe(rd, nd, &f->remotes, list)
David Stevens66817122013-03-15 04:35:51 +0000731 kfree(rd);
David Stevens66817122013-03-15 04:35:51 +0000732 kfree(f);
733}
734
stephen hemmingerd3428942012-10-01 12:32:35 +0000735static void vxlan_fdb_destroy(struct vxlan_dev *vxlan, struct vxlan_fdb *f)
736{
737 netdev_dbg(vxlan->dev,
738 "delete %pM\n", f->eth_addr);
739
740 --vxlan->addrcnt;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200741 vxlan_fdb_notify(vxlan, f, first_remote_rtnl(f), RTM_DELNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000742
743 hlist_del_rcu(&f->hlist);
David Stevens66817122013-03-15 04:35:51 +0000744 call_rcu(&f->rcu, vxlan_fdb_free);
stephen hemmingerd3428942012-10-01 12:32:35 +0000745}
746
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300747static int vxlan_fdb_parse(struct nlattr *tb[], struct vxlan_dev *vxlan,
Cong Wange4c7ed42013-08-31 13:44:33 +0800748 union vxlan_addr *ip, __be16 *port, u32 *vni, u32 *ifindex)
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300749{
750 struct net *net = dev_net(vxlan->dev);
Cong Wange4c7ed42013-08-31 13:44:33 +0800751 int err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300752
753 if (tb[NDA_DST]) {
Cong Wange4c7ed42013-08-31 13:44:33 +0800754 err = vxlan_nla_get_addr(ip, tb[NDA_DST]);
755 if (err)
756 return err;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300757 } else {
Cong Wange4c7ed42013-08-31 13:44:33 +0800758 union vxlan_addr *remote = &vxlan->default_dst.remote_ip;
759 if (remote->sa.sa_family == AF_INET) {
760 ip->sin.sin_addr.s_addr = htonl(INADDR_ANY);
761 ip->sa.sa_family = AF_INET;
762#if IS_ENABLED(CONFIG_IPV6)
763 } else {
764 ip->sin6.sin6_addr = in6addr_any;
765 ip->sa.sa_family = AF_INET6;
766#endif
767 }
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300768 }
769
770 if (tb[NDA_PORT]) {
771 if (nla_len(tb[NDA_PORT]) != sizeof(__be16))
772 return -EINVAL;
773 *port = nla_get_be16(tb[NDA_PORT]);
774 } else {
775 *port = vxlan->dst_port;
776 }
777
778 if (tb[NDA_VNI]) {
779 if (nla_len(tb[NDA_VNI]) != sizeof(u32))
780 return -EINVAL;
781 *vni = nla_get_u32(tb[NDA_VNI]);
782 } else {
783 *vni = vxlan->default_dst.remote_vni;
784 }
785
786 if (tb[NDA_IFINDEX]) {
787 struct net_device *tdev;
788
789 if (nla_len(tb[NDA_IFINDEX]) != sizeof(u32))
790 return -EINVAL;
791 *ifindex = nla_get_u32(tb[NDA_IFINDEX]);
Ying Xue73763942014-01-15 10:23:41 +0800792 tdev = __dev_get_by_index(net, *ifindex);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300793 if (!tdev)
794 return -EADDRNOTAVAIL;
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300795 } else {
796 *ifindex = 0;
797 }
798
799 return 0;
800}
801
stephen hemmingerd3428942012-10-01 12:32:35 +0000802/* Add static entry (via netlink) */
803static int vxlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
804 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100805 const unsigned char *addr, u16 vid, u16 flags)
stephen hemmingerd3428942012-10-01 12:32:35 +0000806{
807 struct vxlan_dev *vxlan = netdev_priv(dev);
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300808 /* struct net *net = dev_net(vxlan->dev); */
Cong Wange4c7ed42013-08-31 13:44:33 +0800809 union vxlan_addr ip;
stephen hemminger73cf3312013-04-27 11:31:54 +0000810 __be16 port;
811 u32 vni, ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +0000812 int err;
813
814 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_REACHABLE))) {
815 pr_info("RTM_NEWNEIGH with invalid state %#x\n",
816 ndm->ndm_state);
817 return -EINVAL;
818 }
819
820 if (tb[NDA_DST] == NULL)
821 return -EINVAL;
822
Mike Rapoportf0b074b2013-06-25 16:01:53 +0300823 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
824 if (err)
825 return err;
David Stevens66817122013-03-15 04:35:51 +0000826
Mike Rapoport5933a7b2014-04-01 09:23:01 +0300827 if (vxlan->default_dst.remote_ip.sa.sa_family != ip.sa.sa_family)
828 return -EAFNOSUPPORT;
829
stephen hemmingerd3428942012-10-01 12:32:35 +0000830 spin_lock_bh(&vxlan->hash_lock);
Cong Wange4c7ed42013-08-31 13:44:33 +0800831 err = vxlan_fdb_create(vxlan, addr, &ip, ndm->ndm_state, flags,
stephen hemminger73cf3312013-04-27 11:31:54 +0000832 port, vni, ifindex, ndm->ndm_flags);
stephen hemmingerd3428942012-10-01 12:32:35 +0000833 spin_unlock_bh(&vxlan->hash_lock);
834
835 return err;
836}
837
838/* Delete entry (via netlink) */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000839static int vxlan_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
840 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100841 const unsigned char *addr, u16 vid)
stephen hemmingerd3428942012-10-01 12:32:35 +0000842{
843 struct vxlan_dev *vxlan = netdev_priv(dev);
844 struct vxlan_fdb *f;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300845 struct vxlan_rdst *rd = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +0800846 union vxlan_addr ip;
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300847 __be16 port;
848 u32 vni, ifindex;
849 int err;
850
851 err = vxlan_fdb_parse(tb, vxlan, &ip, &port, &vni, &ifindex);
852 if (err)
853 return err;
854
855 err = -ENOENT;
stephen hemmingerd3428942012-10-01 12:32:35 +0000856
857 spin_lock_bh(&vxlan->hash_lock);
858 f = vxlan_find_mac(vxlan, addr);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300859 if (!f)
860 goto out;
861
Cong Wange4c7ed42013-08-31 13:44:33 +0800862 if (!vxlan_addr_any(&ip)) {
863 rd = vxlan_fdb_find_rdst(f, &ip, port, vni, ifindex);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300864 if (!rd)
865 goto out;
stephen hemmingerd3428942012-10-01 12:32:35 +0000866 }
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300867
868 err = 0;
869
870 /* remove a destination if it's not the only one on the list,
871 * otherwise destroy the fdb entry
872 */
873 if (rd && !list_is_singular(&f->remotes)) {
874 list_del_rcu(&rd->list);
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200875 vxlan_fdb_notify(vxlan, f, rd, RTM_DELNEIGH);
Wei Yongjundcdc7a52013-08-17 07:32:09 +0800876 kfree_rcu(rd, rcu);
Mike Rapoportbc7892b2013-06-25 16:01:54 +0300877 goto out;
878 }
879
880 vxlan_fdb_destroy(vxlan, f);
881
882out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000883 spin_unlock_bh(&vxlan->hash_lock);
884
885 return err;
886}
887
888/* Dump forwarding table */
889static int vxlan_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400890 struct net_device *dev,
891 struct net_device *filter_dev, int idx)
stephen hemmingerd3428942012-10-01 12:32:35 +0000892{
893 struct vxlan_dev *vxlan = netdev_priv(dev);
894 unsigned int h;
895
896 for (h = 0; h < FDB_HASH_SIZE; ++h) {
897 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000898 int err;
899
Sasha Levinb67bfe02013-02-27 17:06:00 -0800900 hlist_for_each_entry_rcu(f, &vxlan->fdb_head[h], hlist) {
David Stevens66817122013-03-15 04:35:51 +0000901 struct vxlan_rdst *rd;
stephen hemmingerd3428942012-10-01 12:32:35 +0000902
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700903 if (idx < cb->args[0])
904 goto skip;
905
906 list_for_each_entry_rcu(rd, &f->remotes, list) {
David Stevens66817122013-03-15 04:35:51 +0000907 err = vxlan_fdb_info(skb, vxlan, f,
908 NETLINK_CB(cb->skb).portid,
909 cb->nlh->nlmsg_seq,
910 RTM_NEWNEIGH,
911 NLM_F_MULTI, rd);
912 if (err < 0)
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700913 goto out;
David Stevens66817122013-03-15 04:35:51 +0000914 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700915skip:
916 ++idx;
stephen hemmingerd3428942012-10-01 12:32:35 +0000917 }
918 }
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700919out:
stephen hemmingerd3428942012-10-01 12:32:35 +0000920 return idx;
921}
922
923/* Watch incoming packets to learn mapping between Ethernet address
924 * and Tunnel endpoint.
stephen hemminger26a41ae62013-06-17 12:09:58 -0700925 * Return true if packet is bogus and should be droppped.
stephen hemmingerd3428942012-10-01 12:32:35 +0000926 */
stephen hemminger26a41ae62013-06-17 12:09:58 -0700927static bool vxlan_snoop(struct net_device *dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800928 union vxlan_addr *src_ip, const u8 *src_mac)
stephen hemmingerd3428942012-10-01 12:32:35 +0000929{
930 struct vxlan_dev *vxlan = netdev_priv(dev);
931 struct vxlan_fdb *f;
stephen hemmingerd3428942012-10-01 12:32:35 +0000932
933 f = vxlan_find_mac(vxlan, src_mac);
934 if (likely(f)) {
stephen hemminger5ca54612013-08-04 17:17:39 -0700935 struct vxlan_rdst *rdst = first_remote_rcu(f);
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700936
Cong Wange4c7ed42013-08-31 13:44:33 +0800937 if (likely(vxlan_addr_equal(&rdst->remote_ip, src_ip)))
stephen hemminger26a41ae62013-06-17 12:09:58 -0700938 return false;
939
940 /* Don't migrate static entries, drop packets */
stephen hemmingereb064c32013-06-18 14:27:01 -0700941 if (f->state & NUD_NOARP)
stephen hemminger26a41ae62013-06-17 12:09:58 -0700942 return true;
stephen hemmingerd3428942012-10-01 12:32:35 +0000943
944 if (net_ratelimit())
945 netdev_info(dev,
Cong Wange4c7ed42013-08-31 13:44:33 +0800946 "%pM migrated from %pIS to %pIS\n",
Stephen Hemminger3e61aa82013-06-17 14:16:12 -0700947 src_mac, &rdst->remote_ip, &src_ip);
stephen hemmingerd3428942012-10-01 12:32:35 +0000948
Cong Wange4c7ed42013-08-31 13:44:33 +0800949 rdst->remote_ip = *src_ip;
stephen hemmingerd3428942012-10-01 12:32:35 +0000950 f->updated = jiffies;
Nicolas Dichtel9e4b93f2014-04-22 15:01:30 +0200951 vxlan_fdb_notify(vxlan, f, rdst, RTM_NEWNEIGH);
stephen hemmingerd3428942012-10-01 12:32:35 +0000952 } else {
953 /* learned new entry */
954 spin_lock(&vxlan->hash_lock);
stephen hemminger3bf74b12013-06-17 12:09:57 -0700955
956 /* close off race between vxlan_flush and incoming packets */
957 if (netif_running(dev))
958 vxlan_fdb_create(vxlan, src_mac, src_ip,
959 NUD_REACHABLE,
960 NLM_F_EXCL|NLM_F_CREATE,
961 vxlan->dst_port,
962 vxlan->default_dst.remote_vni,
963 0, NTF_SELF);
stephen hemmingerd3428942012-10-01 12:32:35 +0000964 spin_unlock(&vxlan->hash_lock);
965 }
stephen hemminger26a41ae62013-06-17 12:09:58 -0700966
967 return false;
stephen hemmingerd3428942012-10-01 12:32:35 +0000968}
969
stephen hemmingerd3428942012-10-01 12:32:35 +0000970/* See if multicast group is already in use by other ID */
Gao feng95ab0992013-12-10 16:37:33 +0800971static bool vxlan_group_used(struct vxlan_net *vn, struct vxlan_dev *dev)
stephen hemmingerd3428942012-10-01 12:32:35 +0000972{
stephen hemminger553675f2013-05-16 11:35:20 +0000973 struct vxlan_dev *vxlan;
stephen hemmingerd3428942012-10-01 12:32:35 +0000974
Gao feng95ab0992013-12-10 16:37:33 +0800975 /* The vxlan_sock is only used by dev, leaving group has
976 * no effect on other vxlan devices.
977 */
978 if (atomic_read(&dev->vn_sock->refcnt) == 1)
979 return false;
980
stephen hemminger553675f2013-05-16 11:35:20 +0000981 list_for_each_entry(vxlan, &vn->vxlan_list, next) {
Gao feng95ab0992013-12-10 16:37:33 +0800982 if (!netif_running(vxlan->dev) || vxlan == dev)
stephen hemminger553675f2013-05-16 11:35:20 +0000983 continue;
stephen hemmingerd3428942012-10-01 12:32:35 +0000984
Gao feng95ab0992013-12-10 16:37:33 +0800985 if (vxlan->vn_sock != dev->vn_sock)
986 continue;
987
988 if (!vxlan_addr_equal(&vxlan->default_dst.remote_ip,
989 &dev->default_dst.remote_ip))
990 continue;
991
992 if (vxlan->default_dst.remote_ifindex !=
993 dev->default_dst.remote_ifindex)
994 continue;
995
996 return true;
stephen hemminger553675f2013-05-16 11:35:20 +0000997 }
stephen hemmingerd3428942012-10-01 12:32:35 +0000998
999 return false;
1000}
1001
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001002static void vxlan_sock_hold(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001003{
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001004 atomic_inc(&vs->refcnt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001005}
1006
Pravin B Shelar012a5722013-08-19 11:23:07 -07001007void vxlan_sock_release(struct vxlan_sock *vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001008{
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07001009 struct sock *sk = vs->sock->sk;
1010 struct net *net = sock_net(sk);
1011 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar012a5722013-08-19 11:23:07 -07001012
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001013 if (!atomic_dec_and_test(&vs->refcnt))
1014 return;
1015
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001016 spin_lock(&vn->sock_lock);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001017 hlist_del_rcu(&vs->hlist);
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02001018 vxlan_notify_del_rx_port(vs);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001019 spin_unlock(&vn->sock_lock);
1020
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001021 queue_work(vxlan_wq, &vs->del_work);
1022}
Pravin B Shelar012a5722013-08-19 11:23:07 -07001023EXPORT_SYMBOL_GPL(vxlan_sock_release);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001024
stephen hemminger3fc2de22013-07-18 08:40:15 -07001025/* Callback to update multicast group membership when first VNI on
1026 * multicast asddress is brought up
1027 * Done as workqueue because ip_mc_join_group acquires RTNL.
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001028 */
stephen hemminger3fc2de22013-07-18 08:40:15 -07001029static void vxlan_igmp_join(struct work_struct *work)
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001030{
stephen hemminger3fc2de22013-07-18 08:40:15 -07001031 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_join);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001032 struct vxlan_sock *vs = vxlan->vn_sock;
1033 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001034 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1035 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemmingerd3428942012-10-01 12:32:35 +00001036
stephen hemmingerd3428942012-10-01 12:32:35 +00001037 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001038 if (ip->sa.sa_family == AF_INET) {
1039 struct ip_mreqn mreq = {
1040 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1041 .imr_ifindex = ifindex,
1042 };
1043
1044 ip_mc_join_group(sk, &mreq);
1045#if IS_ENABLED(CONFIG_IPV6)
1046 } else {
1047 ipv6_stub->ipv6_sock_mc_join(sk, ifindex,
1048 &ip->sin6.sin6_addr);
1049#endif
1050 }
stephen hemminger3fc2de22013-07-18 08:40:15 -07001051 release_sock(sk);
1052
Pravin B Shelar012a5722013-08-19 11:23:07 -07001053 vxlan_sock_release(vs);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001054 dev_put(vxlan->dev);
1055}
1056
1057/* Inverse of vxlan_igmp_join when last VNI is brought down */
1058static void vxlan_igmp_leave(struct work_struct *work)
1059{
1060 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, igmp_leave);
stephen hemminger3fc2de22013-07-18 08:40:15 -07001061 struct vxlan_sock *vs = vxlan->vn_sock;
1062 struct sock *sk = vs->sock->sk;
Cong Wange4c7ed42013-08-31 13:44:33 +08001063 union vxlan_addr *ip = &vxlan->default_dst.remote_ip;
1064 int ifindex = vxlan->default_dst.remote_ifindex;
stephen hemminger3fc2de22013-07-18 08:40:15 -07001065
1066 lock_sock(sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001067 if (ip->sa.sa_family == AF_INET) {
1068 struct ip_mreqn mreq = {
1069 .imr_multiaddr.s_addr = ip->sin.sin_addr.s_addr,
1070 .imr_ifindex = ifindex,
1071 };
1072
1073 ip_mc_leave_group(sk, &mreq);
1074#if IS_ENABLED(CONFIG_IPV6)
1075 } else {
1076 ipv6_stub->ipv6_sock_mc_drop(sk, ifindex,
1077 &ip->sin6.sin6_addr);
1078#endif
1079 }
1080
stephen hemmingerd3428942012-10-01 12:32:35 +00001081 release_sock(sk);
stephen hemmingerd3428942012-10-01 12:32:35 +00001082
Pravin B Shelar012a5722013-08-19 11:23:07 -07001083 vxlan_sock_release(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07001084 dev_put(vxlan->dev);
stephen hemmingerd3428942012-10-01 12:32:35 +00001085}
1086
1087/* Callback from net/ipv4/udp.c to receive packets */
1088static int vxlan_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
1089{
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001090 struct vxlan_sock *vs;
stephen hemmingerd3428942012-10-01 12:32:35 +00001091 struct vxlanhdr *vxh;
Tom Herbert3bf39472015-01-08 12:31:18 -08001092 u32 flags, vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001093
stephen hemmingerd3428942012-10-01 12:32:35 +00001094 /* Need Vxlan and inner Ethernet header to be present */
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001095 if (!pskb_may_pull(skb, VXLAN_HLEN))
stephen hemmingerd3428942012-10-01 12:32:35 +00001096 goto error;
1097
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001098 vxh = (struct vxlanhdr *)(udp_hdr(skb) + 1);
Tom Herbert3bf39472015-01-08 12:31:18 -08001099 flags = ntohl(vxh->vx_flags);
1100 vni = ntohl(vxh->vx_vni);
1101
1102 if (flags & VXLAN_HF_VNI) {
1103 flags &= ~VXLAN_HF_VNI;
1104 } else {
1105 /* VNI flag always required to be set */
1106 goto bad_flags;
stephen hemmingerd3428942012-10-01 12:32:35 +00001107 }
1108
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001109 if (iptunnel_pull_header(skb, VXLAN_HLEN, htons(ETH_P_TEB)))
stephen hemmingerd3428942012-10-01 12:32:35 +00001110 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001111
Pravin B Shelar559835ea2013-09-24 10:25:40 -07001112 vs = rcu_dereference_sk_user_data(sk);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001113 if (!vs)
stephen hemmingerd3428942012-10-01 12:32:35 +00001114 goto drop;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001115
Tom Herbert3bf39472015-01-08 12:31:18 -08001116 if (flags || (vni & 0xff)) {
1117 /* If there are any unprocessed flags remaining treat
1118 * this as a malformed packet. This behavior diverges from
1119 * VXLAN RFC (RFC7348) which stipulates that bits in reserved
1120 * in reserved fields are to be ignored. The approach here
1121 * maintains compatbility with previous stack code, and also
1122 * is more robust and provides a little more security in
1123 * adding extensions to VXLAN.
1124 */
1125
1126 goto bad_flags;
1127 }
1128
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001129 vs->rcv(vs, skb, vxh->vx_vni);
1130 return 0;
1131
1132drop:
1133 /* Consume bad packet */
1134 kfree_skb(skb);
1135 return 0;
1136
Tom Herbert3bf39472015-01-08 12:31:18 -08001137bad_flags:
1138 netdev_dbg(skb->dev, "invalid vxlan flags=%#x vni=%#x\n",
1139 ntohl(vxh->vx_flags), ntohl(vxh->vx_vni));
1140
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001141error:
1142 /* Return non vxlan pkt */
1143 return 1;
1144}
1145
1146static void vxlan_rcv(struct vxlan_sock *vs,
1147 struct sk_buff *skb, __be32 vx_vni)
1148{
Cong Wange4c7ed42013-08-31 13:44:33 +08001149 struct iphdr *oip = NULL;
1150 struct ipv6hdr *oip6 = NULL;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001151 struct vxlan_dev *vxlan;
Li RongQing8f849852014-01-04 13:57:59 +08001152 struct pcpu_sw_netstats *stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001153 union vxlan_addr saddr;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001154 __u32 vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001155 int err = 0;
1156 union vxlan_addr *remote_ip;
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001157
1158 vni = ntohl(vx_vni) >> 8;
1159 /* Is this VNI defined? */
1160 vxlan = vxlan_vs_find_vni(vs, vni);
1161 if (!vxlan)
1162 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001163
Cong Wange4c7ed42013-08-31 13:44:33 +08001164 remote_ip = &vxlan->default_dst.remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001165 skb_reset_mac_header(skb);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001166 skb_scrub_packet(skb, !net_eq(vxlan->net, dev_net(vxlan->dev)));
stephen hemmingerd3428942012-10-01 12:32:35 +00001167 skb->protocol = eth_type_trans(skb, vxlan->dev);
Tom Herbertf79b0642014-06-14 23:24:36 -07001168 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
stephen hemmingerd3428942012-10-01 12:32:35 +00001169
1170 /* Ignore packet loops (and multicast echo) */
Joe Perches7367d0b2013-09-01 11:51:23 -07001171 if (ether_addr_equal(eth_hdr(skb)->h_source, vxlan->dev->dev_addr))
stephen hemmingerd3428942012-10-01 12:32:35 +00001172 goto drop;
1173
Pravin B Shelar7ce04752013-08-19 11:22:54 -07001174 /* Re-examine inner Ethernet packet */
Cong Wange4c7ed42013-08-31 13:44:33 +08001175 if (remote_ip->sa.sa_family == AF_INET) {
1176 oip = ip_hdr(skb);
1177 saddr.sin.sin_addr.s_addr = oip->saddr;
1178 saddr.sa.sa_family = AF_INET;
1179#if IS_ENABLED(CONFIG_IPV6)
1180 } else {
1181 oip6 = ipv6_hdr(skb);
1182 saddr.sin6.sin6_addr = oip6->saddr;
1183 saddr.sa.sa_family = AF_INET6;
1184#endif
1185 }
1186
stephen hemminger26a41ae62013-06-17 12:09:58 -07001187 if ((vxlan->flags & VXLAN_F_LEARN) &&
Cong Wange4c7ed42013-08-31 13:44:33 +08001188 vxlan_snoop(skb->dev, &saddr, eth_hdr(skb)->h_source))
stephen hemminger26a41ae62013-06-17 12:09:58 -07001189 goto drop;
stephen hemmingerd3428942012-10-01 12:32:35 +00001190
stephen hemmingerd3428942012-10-01 12:32:35 +00001191 skb_reset_network_header(skb);
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00001192
Cong Wange4c7ed42013-08-31 13:44:33 +08001193 if (oip6)
1194 err = IP6_ECN_decapsulate(oip6, skb);
1195 if (oip)
1196 err = IP_ECN_decapsulate(oip, skb);
1197
stephen hemmingerd3428942012-10-01 12:32:35 +00001198 if (unlikely(err)) {
Cong Wange4c7ed42013-08-31 13:44:33 +08001199 if (log_ecn_error) {
1200 if (oip6)
1201 net_info_ratelimited("non-ECT from %pI6\n",
1202 &oip6->saddr);
1203 if (oip)
1204 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
1205 &oip->saddr, oip->tos);
1206 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001207 if (err > 1) {
1208 ++vxlan->dev->stats.rx_frame_errors;
1209 ++vxlan->dev->stats.rx_errors;
1210 goto drop;
1211 }
1212 }
1213
Pravin B Shelare8171042013-03-25 14:49:46 +00001214 stats = this_cpu_ptr(vxlan->dev->tstats);
stephen hemmingerd3428942012-10-01 12:32:35 +00001215 u64_stats_update_begin(&stats->syncp);
1216 stats->rx_packets++;
1217 stats->rx_bytes += skb->len;
1218 u64_stats_update_end(&stats->syncp);
1219
1220 netif_rx(skb);
1221
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07001222 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001223drop:
1224 /* Consume bad packet */
1225 kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001226}
1227
David Stevense4f67ad2012-11-20 02:50:14 +00001228static int arp_reduce(struct net_device *dev, struct sk_buff *skb)
1229{
1230 struct vxlan_dev *vxlan = netdev_priv(dev);
1231 struct arphdr *parp;
1232 u8 *arpptr, *sha;
1233 __be32 sip, tip;
1234 struct neighbour *n;
1235
1236 if (dev->flags & IFF_NOARP)
1237 goto out;
1238
1239 if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
1240 dev->stats.tx_dropped++;
1241 goto out;
1242 }
1243 parp = arp_hdr(skb);
1244
1245 if ((parp->ar_hrd != htons(ARPHRD_ETHER) &&
1246 parp->ar_hrd != htons(ARPHRD_IEEE802)) ||
1247 parp->ar_pro != htons(ETH_P_IP) ||
1248 parp->ar_op != htons(ARPOP_REQUEST) ||
1249 parp->ar_hln != dev->addr_len ||
1250 parp->ar_pln != 4)
1251 goto out;
1252 arpptr = (u8 *)parp + sizeof(struct arphdr);
1253 sha = arpptr;
1254 arpptr += dev->addr_len; /* sha */
1255 memcpy(&sip, arpptr, sizeof(sip));
1256 arpptr += sizeof(sip);
1257 arpptr += dev->addr_len; /* tha */
1258 memcpy(&tip, arpptr, sizeof(tip));
1259
1260 if (ipv4_is_loopback(tip) ||
1261 ipv4_is_multicast(tip))
1262 goto out;
1263
1264 n = neigh_lookup(&arp_tbl, &tip, dev);
1265
1266 if (n) {
David Stevense4f67ad2012-11-20 02:50:14 +00001267 struct vxlan_fdb *f;
1268 struct sk_buff *reply;
1269
1270 if (!(n->nud_state & NUD_CONNECTED)) {
1271 neigh_release(n);
1272 goto out;
1273 }
1274
1275 f = vxlan_find_mac(vxlan, n->ha);
Cong Wange4c7ed42013-08-31 13:44:33 +08001276 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
David Stevense4f67ad2012-11-20 02:50:14 +00001277 /* bridge-local neighbor */
1278 neigh_release(n);
1279 goto out;
1280 }
1281
1282 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha,
1283 n->ha, sha);
1284
1285 neigh_release(n);
1286
David Stevens73461352014-03-18 12:32:29 -04001287 if (reply == NULL)
1288 goto out;
1289
David Stevense4f67ad2012-11-20 02:50:14 +00001290 skb_reset_mac_header(reply);
1291 __skb_pull(reply, skb_network_offset(reply));
1292 reply->ip_summed = CHECKSUM_UNNECESSARY;
1293 reply->pkt_type = PACKET_HOST;
1294
1295 if (netif_rx_ni(reply) == NET_RX_DROP)
1296 dev->stats.rx_dropped++;
Cong Wange4c7ed42013-08-31 13:44:33 +08001297 } else if (vxlan->flags & VXLAN_F_L3MISS) {
1298 union vxlan_addr ipa = {
1299 .sin.sin_addr.s_addr = tip,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001300 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001301 };
1302
1303 vxlan_ip_miss(dev, &ipa);
1304 }
David Stevense4f67ad2012-11-20 02:50:14 +00001305out:
1306 consume_skb(skb);
1307 return NETDEV_TX_OK;
1308}
1309
Cong Wangf564f452013-08-31 13:44:36 +08001310#if IS_ENABLED(CONFIG_IPV6)
David Stevens4b29dba2014-03-24 10:39:58 -04001311static struct sk_buff *vxlan_na_create(struct sk_buff *request,
1312 struct neighbour *n, bool isrouter)
1313{
1314 struct net_device *dev = request->dev;
1315 struct sk_buff *reply;
1316 struct nd_msg *ns, *na;
1317 struct ipv6hdr *pip6;
1318 u8 *daddr;
1319 int na_olen = 8; /* opt hdr + ETH_ALEN for target */
1320 int ns_olen;
1321 int i, len;
1322
1323 if (dev == NULL)
1324 return NULL;
1325
1326 len = LL_RESERVED_SPACE(dev) + sizeof(struct ipv6hdr) +
1327 sizeof(*na) + na_olen + dev->needed_tailroom;
1328 reply = alloc_skb(len, GFP_ATOMIC);
1329 if (reply == NULL)
1330 return NULL;
1331
1332 reply->protocol = htons(ETH_P_IPV6);
1333 reply->dev = dev;
1334 skb_reserve(reply, LL_RESERVED_SPACE(request->dev));
1335 skb_push(reply, sizeof(struct ethhdr));
1336 skb_set_mac_header(reply, 0);
1337
1338 ns = (struct nd_msg *)skb_transport_header(request);
1339
1340 daddr = eth_hdr(request)->h_source;
1341 ns_olen = request->len - skb_transport_offset(request) - sizeof(*ns);
1342 for (i = 0; i < ns_olen-1; i += (ns->opt[i+1]<<3)) {
1343 if (ns->opt[i] == ND_OPT_SOURCE_LL_ADDR) {
1344 daddr = ns->opt + i + sizeof(struct nd_opt_hdr);
1345 break;
1346 }
1347 }
1348
1349 /* Ethernet header */
1350 ether_addr_copy(eth_hdr(reply)->h_dest, daddr);
1351 ether_addr_copy(eth_hdr(reply)->h_source, n->ha);
1352 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6);
1353 reply->protocol = htons(ETH_P_IPV6);
1354
1355 skb_pull(reply, sizeof(struct ethhdr));
1356 skb_set_network_header(reply, 0);
1357 skb_put(reply, sizeof(struct ipv6hdr));
1358
1359 /* IPv6 header */
1360
1361 pip6 = ipv6_hdr(reply);
1362 memset(pip6, 0, sizeof(struct ipv6hdr));
1363 pip6->version = 6;
1364 pip6->priority = ipv6_hdr(request)->priority;
1365 pip6->nexthdr = IPPROTO_ICMPV6;
1366 pip6->hop_limit = 255;
1367 pip6->daddr = ipv6_hdr(request)->saddr;
1368 pip6->saddr = *(struct in6_addr *)n->primary_key;
1369
1370 skb_pull(reply, sizeof(struct ipv6hdr));
1371 skb_set_transport_header(reply, 0);
1372
1373 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen);
1374
1375 /* Neighbor Advertisement */
1376 memset(na, 0, sizeof(*na)+na_olen);
1377 na->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
1378 na->icmph.icmp6_router = isrouter;
1379 na->icmph.icmp6_override = 1;
1380 na->icmph.icmp6_solicited = 1;
1381 na->target = ns->target;
1382 ether_addr_copy(&na->opt[2], n->ha);
1383 na->opt[0] = ND_OPT_TARGET_LL_ADDR;
1384 na->opt[1] = na_olen >> 3;
1385
1386 na->icmph.icmp6_cksum = csum_ipv6_magic(&pip6->saddr,
1387 &pip6->daddr, sizeof(*na)+na_olen, IPPROTO_ICMPV6,
1388 csum_partial(na, sizeof(*na)+na_olen, 0));
1389
1390 pip6->payload_len = htons(sizeof(*na)+na_olen);
1391
1392 skb_push(reply, sizeof(struct ipv6hdr));
1393
1394 reply->ip_summed = CHECKSUM_UNNECESSARY;
1395
1396 return reply;
1397}
1398
Cong Wangf564f452013-08-31 13:44:36 +08001399static int neigh_reduce(struct net_device *dev, struct sk_buff *skb)
1400{
1401 struct vxlan_dev *vxlan = netdev_priv(dev);
David Stevens4b29dba2014-03-24 10:39:58 -04001402 struct nd_msg *msg;
Cong Wangf564f452013-08-31 13:44:36 +08001403 const struct ipv6hdr *iphdr;
1404 const struct in6_addr *saddr, *daddr;
David Stevens4b29dba2014-03-24 10:39:58 -04001405 struct neighbour *n;
1406 struct inet6_dev *in6_dev;
Cong Wangf564f452013-08-31 13:44:36 +08001407
1408 in6_dev = __in6_dev_get(dev);
1409 if (!in6_dev)
1410 goto out;
1411
Cong Wangf564f452013-08-31 13:44:36 +08001412 iphdr = ipv6_hdr(skb);
1413 saddr = &iphdr->saddr;
1414 daddr = &iphdr->daddr;
1415
Cong Wangf564f452013-08-31 13:44:36 +08001416 msg = (struct nd_msg *)skb_transport_header(skb);
1417 if (msg->icmph.icmp6_code != 0 ||
1418 msg->icmph.icmp6_type != NDISC_NEIGHBOUR_SOLICITATION)
1419 goto out;
1420
David Stevens4b29dba2014-03-24 10:39:58 -04001421 if (ipv6_addr_loopback(daddr) ||
1422 ipv6_addr_is_multicast(&msg->target))
1423 goto out;
1424
1425 n = neigh_lookup(ipv6_stub->nd_tbl, &msg->target, dev);
Cong Wangf564f452013-08-31 13:44:36 +08001426
1427 if (n) {
1428 struct vxlan_fdb *f;
David Stevens4b29dba2014-03-24 10:39:58 -04001429 struct sk_buff *reply;
Cong Wangf564f452013-08-31 13:44:36 +08001430
1431 if (!(n->nud_state & NUD_CONNECTED)) {
1432 neigh_release(n);
1433 goto out;
1434 }
1435
1436 f = vxlan_find_mac(vxlan, n->ha);
1437 if (f && vxlan_addr_any(&(first_remote_rcu(f)->remote_ip))) {
1438 /* bridge-local neighbor */
1439 neigh_release(n);
1440 goto out;
1441 }
1442
David Stevens4b29dba2014-03-24 10:39:58 -04001443 reply = vxlan_na_create(skb, n,
1444 !!(f ? f->flags & NTF_ROUTER : 0));
1445
Cong Wangf564f452013-08-31 13:44:36 +08001446 neigh_release(n);
David Stevens4b29dba2014-03-24 10:39:58 -04001447
1448 if (reply == NULL)
1449 goto out;
1450
1451 if (netif_rx_ni(reply) == NET_RX_DROP)
1452 dev->stats.rx_dropped++;
1453
Cong Wangf564f452013-08-31 13:44:36 +08001454 } else if (vxlan->flags & VXLAN_F_L3MISS) {
David Stevens4b29dba2014-03-24 10:39:58 -04001455 union vxlan_addr ipa = {
1456 .sin6.sin6_addr = msg->target,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001457 .sin6.sin6_family = AF_INET6,
David Stevens4b29dba2014-03-24 10:39:58 -04001458 };
1459
Cong Wangf564f452013-08-31 13:44:36 +08001460 vxlan_ip_miss(dev, &ipa);
1461 }
1462
1463out:
1464 consume_skb(skb);
1465 return NETDEV_TX_OK;
1466}
1467#endif
1468
David Stevense4f67ad2012-11-20 02:50:14 +00001469static bool route_shortcircuit(struct net_device *dev, struct sk_buff *skb)
1470{
1471 struct vxlan_dev *vxlan = netdev_priv(dev);
1472 struct neighbour *n;
David Stevense4f67ad2012-11-20 02:50:14 +00001473
1474 if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
1475 return false;
1476
1477 n = NULL;
1478 switch (ntohs(eth_hdr(skb)->h_proto)) {
1479 case ETH_P_IP:
Cong Wange15a00a2013-08-31 13:44:34 +08001480 {
1481 struct iphdr *pip;
1482
David Stevense4f67ad2012-11-20 02:50:14 +00001483 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
1484 return false;
1485 pip = ip_hdr(skb);
1486 n = neigh_lookup(&arp_tbl, &pip->daddr, dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001487 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1488 union vxlan_addr ipa = {
1489 .sin.sin_addr.s_addr = pip->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001490 .sin.sin_family = AF_INET,
Cong Wange4c7ed42013-08-31 13:44:33 +08001491 };
1492
1493 vxlan_ip_miss(dev, &ipa);
1494 return false;
1495 }
1496
David Stevense4f67ad2012-11-20 02:50:14 +00001497 break;
Cong Wange15a00a2013-08-31 13:44:34 +08001498 }
1499#if IS_ENABLED(CONFIG_IPV6)
1500 case ETH_P_IPV6:
1501 {
1502 struct ipv6hdr *pip6;
1503
1504 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
1505 return false;
1506 pip6 = ipv6_hdr(skb);
1507 n = neigh_lookup(ipv6_stub->nd_tbl, &pip6->daddr, dev);
1508 if (!n && (vxlan->flags & VXLAN_F_L3MISS)) {
1509 union vxlan_addr ipa = {
1510 .sin6.sin6_addr = pip6->daddr,
Gerhard Stenzela45e92a2014-08-22 21:34:16 +02001511 .sin6.sin6_family = AF_INET6,
Cong Wange15a00a2013-08-31 13:44:34 +08001512 };
1513
1514 vxlan_ip_miss(dev, &ipa);
1515 return false;
1516 }
1517
1518 break;
1519 }
1520#endif
David Stevense4f67ad2012-11-20 02:50:14 +00001521 default:
1522 return false;
1523 }
1524
1525 if (n) {
1526 bool diff;
1527
Joe Perches7367d0b2013-09-01 11:51:23 -07001528 diff = !ether_addr_equal(eth_hdr(skb)->h_dest, n->ha);
David Stevense4f67ad2012-11-20 02:50:14 +00001529 if (diff) {
1530 memcpy(eth_hdr(skb)->h_source, eth_hdr(skb)->h_dest,
1531 dev->addr_len);
1532 memcpy(eth_hdr(skb)->h_dest, n->ha, dev->addr_len);
1533 }
1534 neigh_release(n);
1535 return diff;
Cong Wange4c7ed42013-08-31 13:44:33 +08001536 }
1537
David Stevense4f67ad2012-11-20 02:50:14 +00001538 return false;
1539}
1540
Cong Wange4c7ed42013-08-31 13:44:33 +08001541#if IS_ENABLED(CONFIG_IPV6)
Nicolas Dichtel11796182013-09-02 15:34:55 +02001542static int vxlan6_xmit_skb(struct vxlan_sock *vs,
Cong Wange4c7ed42013-08-31 13:44:33 +08001543 struct dst_entry *dst, struct sk_buff *skb,
1544 struct net_device *dev, struct in6_addr *saddr,
1545 struct in6_addr *daddr, __u8 prio, __u8 ttl,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001546 __be16 src_port, __be16 dst_port, __be32 vni,
1547 bool xnet)
Cong Wange4c7ed42013-08-31 13:44:33 +08001548{
Cong Wange4c7ed42013-08-31 13:44:33 +08001549 struct vxlanhdr *vxh;
Cong Wange4c7ed42013-08-31 13:44:33 +08001550 int min_headroom;
1551 int err;
Andy Zhouacbf74a2014-09-16 17:31:18 -07001552 bool udp_sum = !udp_get_no_check6_tx(vs->sock->sk);
Cong Wange4c7ed42013-08-31 13:44:33 +08001553
Andy Zhouacbf74a2014-09-16 17:31:18 -07001554 skb = udp_tunnel_handle_offloads(skb, udp_sum);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001555 if (IS_ERR(skb)) {
1556 err = -EINVAL;
1557 goto err;
1558 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001559
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001560 skb_scrub_packet(skb, xnet);
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001561
Cong Wange4c7ed42013-08-31 13:44:33 +08001562 min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len
1563 + VXLAN_HLEN + sizeof(struct ipv6hdr)
1564 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
1565
1566 /* Need space for new headers (invalidates iph ptr) */
1567 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001568 if (unlikely(err)) {
1569 kfree_skb(skb);
1570 goto err;
1571 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001572
Jiri Pirko59682502014-11-19 14:04:59 +01001573 skb = vlan_hwaccel_push_inside(skb);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001574 if (WARN_ON(!skb)) {
1575 err = -ENOMEM;
1576 goto err;
1577 }
Cong Wange4c7ed42013-08-31 13:44:33 +08001578
1579 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001580 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Cong Wange4c7ed42013-08-31 13:44:33 +08001581 vxh->vx_vni = vni;
1582
Tom Herbert996c9fd2014-09-29 20:22:33 -07001583 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1584
Andy Zhouacbf74a2014-09-16 17:31:18 -07001585 udp_tunnel6_xmit_skb(vs->sock, dst, skb, dev, saddr, daddr, prio,
1586 ttl, src_port, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001587 return 0;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001588err:
1589 dst_release(dst);
1590 return err;
Cong Wange4c7ed42013-08-31 13:44:33 +08001591}
1592#endif
1593
Nicolas Dichtel11796182013-09-02 15:34:55 +02001594int vxlan_xmit_skb(struct vxlan_sock *vs,
Pravin B Shelar49560532013-08-19 11:23:17 -07001595 struct rtable *rt, struct sk_buff *skb,
1596 __be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001597 __be16 src_port, __be16 dst_port, __be32 vni, bool xnet)
Pravin B Shelar49560532013-08-19 11:23:17 -07001598{
1599 struct vxlanhdr *vxh;
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001600 int min_headroom;
Pravin B Shelar49560532013-08-19 11:23:17 -07001601 int err;
Andy Zhouacbf74a2014-09-16 17:31:18 -07001602 bool udp_sum = !vs->sock->sk->sk_no_check_tx;
Pravin B Shelar49560532013-08-19 11:23:17 -07001603
Andy Zhouacbf74a2014-09-16 17:31:18 -07001604 skb = udp_tunnel_handle_offloads(skb, udp_sum);
Tom Herbert359a0ea2014-06-04 17:20:29 -07001605 if (IS_ERR(skb))
Pravin B Shelar74f47272014-12-23 16:20:36 -08001606 return PTR_ERR(skb);
Pravin B Shelar49560532013-08-19 11:23:17 -07001607
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001608 min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001609 + VXLAN_HLEN + sizeof(struct iphdr)
1610 + (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001611
1612 /* Need space for new headers (invalidates iph ptr) */
1613 err = skb_cow_head(skb, min_headroom);
Pravin B Shelar74f47272014-12-23 16:20:36 -08001614 if (unlikely(err)) {
1615 kfree_skb(skb);
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001616 return err;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001617 }
Pravin B Shelar649c5b82013-08-19 11:23:22 -07001618
Jiri Pirko59682502014-11-19 14:04:59 +01001619 skb = vlan_hwaccel_push_inside(skb);
1620 if (WARN_ON(!skb))
1621 return -ENOMEM;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07001622
Pravin B Shelar49560532013-08-19 11:23:17 -07001623 vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
Tom Herbert3bf39472015-01-08 12:31:18 -08001624 vxh->vx_flags = htonl(VXLAN_HF_VNI);
Pravin B Shelar49560532013-08-19 11:23:17 -07001625 vxh->vx_vni = vni;
1626
Tom Herbert996c9fd2014-09-29 20:22:33 -07001627 skb_set_inner_protocol(skb, htons(ETH_P_TEB));
1628
Andy Zhouacbf74a2014-09-16 17:31:18 -07001629 return udp_tunnel_xmit_skb(vs->sock, rt, skb, src, dst, tos,
1630 ttl, df, src_port, dst_port, xnet);
Pravin B Shelar49560532013-08-19 11:23:17 -07001631}
1632EXPORT_SYMBOL_GPL(vxlan_xmit_skb);
1633
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001634/* Bypass encapsulation if the destination is local */
1635static void vxlan_encap_bypass(struct sk_buff *skb, struct vxlan_dev *src_vxlan,
1636 struct vxlan_dev *dst_vxlan)
1637{
Li RongQing8f849852014-01-04 13:57:59 +08001638 struct pcpu_sw_netstats *tx_stats, *rx_stats;
Cong Wange4c7ed42013-08-31 13:44:33 +08001639 union vxlan_addr loopback;
1640 union vxlan_addr *remote_ip = &dst_vxlan->default_dst.remote_ip;
Li RongQingce6502a2014-10-16 08:49:41 +08001641 struct net_device *dev = skb->dev;
1642 int len = skb->len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001643
Li RongQing8f849852014-01-04 13:57:59 +08001644 tx_stats = this_cpu_ptr(src_vxlan->dev->tstats);
1645 rx_stats = this_cpu_ptr(dst_vxlan->dev->tstats);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001646 skb->pkt_type = PACKET_HOST;
1647 skb->encapsulation = 0;
1648 skb->dev = dst_vxlan->dev;
1649 __skb_pull(skb, skb_network_offset(skb));
1650
Cong Wange4c7ed42013-08-31 13:44:33 +08001651 if (remote_ip->sa.sa_family == AF_INET) {
1652 loopback.sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
1653 loopback.sa.sa_family = AF_INET;
1654#if IS_ENABLED(CONFIG_IPV6)
1655 } else {
1656 loopback.sin6.sin6_addr = in6addr_loopback;
1657 loopback.sa.sa_family = AF_INET6;
1658#endif
1659 }
1660
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001661 if (dst_vxlan->flags & VXLAN_F_LEARN)
Cong Wange4c7ed42013-08-31 13:44:33 +08001662 vxlan_snoop(skb->dev, &loopback, eth_hdr(skb)->h_source);
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001663
1664 u64_stats_update_begin(&tx_stats->syncp);
1665 tx_stats->tx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001666 tx_stats->tx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001667 u64_stats_update_end(&tx_stats->syncp);
1668
1669 if (netif_rx(skb) == NET_RX_SUCCESS) {
1670 u64_stats_update_begin(&rx_stats->syncp);
1671 rx_stats->rx_packets++;
Li RongQingce6502a2014-10-16 08:49:41 +08001672 rx_stats->rx_bytes += len;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001673 u64_stats_update_end(&rx_stats->syncp);
1674 } else {
Li RongQingce6502a2014-10-16 08:49:41 +08001675 dev->stats.rx_dropped++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001676 }
1677}
1678
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001679static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
1680 struct vxlan_rdst *rdst, bool did_rsc)
stephen hemmingerd3428942012-10-01 12:32:35 +00001681{
1682 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08001683 struct rtable *rt = NULL;
stephen hemmingerd3428942012-10-01 12:32:35 +00001684 const struct iphdr *old_iph;
stephen hemmingerd3428942012-10-01 12:32:35 +00001685 struct flowi4 fl4;
Cong Wange4c7ed42013-08-31 13:44:33 +08001686 union vxlan_addr *dst;
1687 __be16 src_port = 0, dst_port;
Stephen Hemminger234f5b72013-06-17 14:16:41 -07001688 u32 vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00001689 __be16 df = 0;
1690 __u8 tos, ttl;
Pravin B Shelar0e6fbc52013-06-17 17:49:56 -07001691 int err;
stephen hemmingerd3428942012-10-01 12:32:35 +00001692
stephen hemminger823aa872013-04-27 11:31:57 +00001693 dst_port = rdst->remote_port ? rdst->remote_port : vxlan->dst_port;
David Stevens66817122013-03-15 04:35:51 +00001694 vni = rdst->remote_vni;
Cong Wange4c7ed42013-08-31 13:44:33 +08001695 dst = &rdst->remote_ip;
David Stevense4f67ad2012-11-20 02:50:14 +00001696
Cong Wange4c7ed42013-08-31 13:44:33 +08001697 if (vxlan_addr_any(dst)) {
David Stevense4f67ad2012-11-20 02:50:14 +00001698 if (did_rsc) {
David Stevense4f67ad2012-11-20 02:50:14 +00001699 /* short-circuited back to local bridge */
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001700 vxlan_encap_bypass(skb, vxlan, vxlan);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001701 return;
David Stevense4f67ad2012-11-20 02:50:14 +00001702 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001703 goto drop;
David Stevense4f67ad2012-11-20 02:50:14 +00001704 }
stephen hemmingeref59feb2012-10-09 20:35:46 +00001705
stephen hemmingerd3428942012-10-01 12:32:35 +00001706 old_iph = ip_hdr(skb);
1707
stephen hemmingerd3428942012-10-01 12:32:35 +00001708 ttl = vxlan->ttl;
Cong Wange4c7ed42013-08-31 13:44:33 +08001709 if (!ttl && vxlan_addr_multicast(dst))
stephen hemmingerd3428942012-10-01 12:32:35 +00001710 ttl = 1;
1711
1712 tos = vxlan->tos;
1713 if (tos == 1)
Pravin B Shelar206aaaf2013-03-25 14:49:53 +00001714 tos = ip_tunnel_get_dsfield(old_iph, skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001715
Tom Herbert535fb8d2014-07-01 21:32:49 -07001716 src_port = udp_flow_src_port(dev_net(dev), skb, vxlan->port_min,
1717 vxlan->port_max, true);
stephen hemmingerd3428942012-10-01 12:32:35 +00001718
Cong Wange4c7ed42013-08-31 13:44:33 +08001719 if (dst->sa.sa_family == AF_INET) {
1720 memset(&fl4, 0, sizeof(fl4));
1721 fl4.flowi4_oif = rdst->remote_ifindex;
1722 fl4.flowi4_tos = RT_TOS(tos);
1723 fl4.daddr = dst->sin.sin_addr.s_addr;
1724 fl4.saddr = vxlan->saddr.sin.sin_addr.s_addr;
stephen hemmingerca78f182012-10-09 20:35:48 +00001725
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001726 rt = ip_route_output_key(vxlan->net, &fl4);
Cong Wange4c7ed42013-08-31 13:44:33 +08001727 if (IS_ERR(rt)) {
1728 netdev_dbg(dev, "no route to %pI4\n",
1729 &dst->sin.sin_addr.s_addr);
1730 dev->stats.tx_carrier_errors++;
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001731 goto tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001732 }
1733
1734 if (rt->dst.dev == dev) {
1735 netdev_dbg(dev, "circular route to %pI4\n",
1736 &dst->sin.sin_addr.s_addr);
1737 dev->stats.collisions++;
Fan Dufffc15a2013-12-09 10:33:53 +08001738 goto rt_tx_error;
Cong Wange4c7ed42013-08-31 13:44:33 +08001739 }
1740
1741 /* Bypass encapsulation if the destination is local */
1742 if (rt->rt_flags & RTCF_LOCAL &&
1743 !(rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1744 struct vxlan_dev *dst_vxlan;
1745
1746 ip_rt_put(rt);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001747 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
1748 dst->sa.sa_family, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001749 if (!dst_vxlan)
1750 goto tx_error;
1751 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1752 return;
1753 }
1754
1755 tos = ip_tunnel_ecn_encap(tos, old_iph, skb);
1756 ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);
1757
Andy Zhou3c4d1da2014-09-23 01:44:51 -07001758 err = vxlan_xmit_skb(vxlan->vn_sock, rt, skb,
1759 fl4.saddr, dst->sin.sin_addr.s_addr,
1760 tos, ttl, df, src_port, dst_port,
1761 htonl(vni << 8),
1762 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Pravin B Shelar74f47272014-12-23 16:20:36 -08001763 if (err < 0) {
1764 /* skb is already freed. */
1765 skb = NULL;
Cong Wange4c7ed42013-08-31 13:44:33 +08001766 goto rt_tx_error;
Pravin B Shelar74f47272014-12-23 16:20:36 -08001767 }
1768
Cong Wange4c7ed42013-08-31 13:44:33 +08001769 iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
1770#if IS_ENABLED(CONFIG_IPV6)
1771 } else {
1772 struct sock *sk = vxlan->vn_sock->sock->sk;
1773 struct dst_entry *ndst;
1774 struct flowi6 fl6;
1775 u32 flags;
1776
1777 memset(&fl6, 0, sizeof(fl6));
1778 fl6.flowi6_oif = rdst->remote_ifindex;
1779 fl6.daddr = dst->sin6.sin6_addr;
1780 fl6.saddr = vxlan->saddr.sin6.sin6_addr;
Cong Wang8c1bb792013-09-02 10:06:51 +08001781 fl6.flowi6_proto = IPPROTO_UDP;
Cong Wange4c7ed42013-08-31 13:44:33 +08001782
1783 if (ipv6_stub->ipv6_dst_lookup(sk, &ndst, &fl6)) {
1784 netdev_dbg(dev, "no route to %pI6\n",
1785 &dst->sin6.sin6_addr);
1786 dev->stats.tx_carrier_errors++;
1787 goto tx_error;
1788 }
1789
1790 if (ndst->dev == dev) {
1791 netdev_dbg(dev, "circular route to %pI6\n",
1792 &dst->sin6.sin6_addr);
1793 dst_release(ndst);
1794 dev->stats.collisions++;
1795 goto tx_error;
1796 }
1797
1798 /* Bypass encapsulation if the destination is local */
1799 flags = ((struct rt6_info *)ndst)->rt6i_flags;
1800 if (flags & RTF_LOCAL &&
1801 !(flags & (RTCF_BROADCAST | RTCF_MULTICAST))) {
1802 struct vxlan_dev *dst_vxlan;
1803
1804 dst_release(ndst);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001805 dst_vxlan = vxlan_find_vni(vxlan->net, vni,
1806 dst->sa.sa_family, dst_port);
Cong Wange4c7ed42013-08-31 13:44:33 +08001807 if (!dst_vxlan)
1808 goto tx_error;
1809 vxlan_encap_bypass(skb, vxlan, dst_vxlan);
1810 return;
1811 }
1812
1813 ttl = ttl ? : ip6_dst_hoplimit(ndst);
1814
Nicolas Dichtel11796182013-09-02 15:34:55 +02001815 err = vxlan6_xmit_skb(vxlan->vn_sock, ndst, skb,
Cong Wange4c7ed42013-08-31 13:44:33 +08001816 dev, &fl6.saddr, &fl6.daddr, 0, ttl,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001817 src_port, dst_port, htonl(vni << 8),
1818 !net_eq(vxlan->net, dev_net(vxlan->dev)));
Cong Wange4c7ed42013-08-31 13:44:33 +08001819#endif
Sridhar Samudrala9dcc71e2013-04-02 12:31:52 +00001820 }
stephen hemmingerd3428942012-10-01 12:32:35 +00001821
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001822 return;
stephen hemmingerd3428942012-10-01 12:32:35 +00001823
1824drop:
1825 dev->stats.tx_dropped++;
1826 goto tx_free;
1827
Pravin B Shelar49560532013-08-19 11:23:17 -07001828rt_tx_error:
1829 ip_rt_put(rt);
stephen hemmingerd3428942012-10-01 12:32:35 +00001830tx_error:
1831 dev->stats.tx_errors++;
1832tx_free:
1833 dev_kfree_skb(skb);
stephen hemmingerd3428942012-10-01 12:32:35 +00001834}
1835
David Stevens66817122013-03-15 04:35:51 +00001836/* Transmit local packets over Vxlan
1837 *
1838 * Outer IP header inherits ECN and DF from inner header.
1839 * Outer UDP destination is the VXLAN assigned port.
1840 * source port is based on hash of flow
1841 */
1842static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)
1843{
1844 struct vxlan_dev *vxlan = netdev_priv(dev);
1845 struct ethhdr *eth;
1846 bool did_rsc = false;
Eric Dumazet8f646c92014-01-06 09:54:31 -08001847 struct vxlan_rdst *rdst, *fdst = NULL;
David Stevens66817122013-03-15 04:35:51 +00001848 struct vxlan_fdb *f;
David Stevens66817122013-03-15 04:35:51 +00001849
1850 skb_reset_mac_header(skb);
1851 eth = eth_hdr(skb);
1852
Cong Wangf564f452013-08-31 13:44:36 +08001853 if ((vxlan->flags & VXLAN_F_PROXY)) {
1854 if (ntohs(eth->h_proto) == ETH_P_ARP)
1855 return arp_reduce(dev, skb);
1856#if IS_ENABLED(CONFIG_IPV6)
1857 else if (ntohs(eth->h_proto) == ETH_P_IPV6 &&
Li RongQing91269e32014-10-16 09:17:18 +08001858 pskb_may_pull(skb, sizeof(struct ipv6hdr)
1859 + sizeof(struct nd_msg)) &&
Cong Wangf564f452013-08-31 13:44:36 +08001860 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
1861 struct nd_msg *msg;
1862
1863 msg = (struct nd_msg *)skb_transport_header(skb);
1864 if (msg->icmph.icmp6_code == 0 &&
1865 msg->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION)
1866 return neigh_reduce(dev, skb);
1867 }
Li RongQing7a9f5262014-10-17 14:06:16 +08001868 eth = eth_hdr(skb);
Cong Wangf564f452013-08-31 13:44:36 +08001869#endif
1870 }
David Stevens66817122013-03-15 04:35:51 +00001871
1872 f = vxlan_find_mac(vxlan, eth->h_dest);
David Stevensae884082013-04-19 00:36:26 +00001873 did_rsc = false;
1874
1875 if (f && (f->flags & NTF_ROUTER) && (vxlan->flags & VXLAN_F_RSC) &&
Cong Wange15a00a2013-08-31 13:44:34 +08001876 (ntohs(eth->h_proto) == ETH_P_IP ||
1877 ntohs(eth->h_proto) == ETH_P_IPV6)) {
David Stevensae884082013-04-19 00:36:26 +00001878 did_rsc = route_shortcircuit(dev, skb);
1879 if (did_rsc)
1880 f = vxlan_find_mac(vxlan, eth->h_dest);
1881 }
1882
David Stevens66817122013-03-15 04:35:51 +00001883 if (f == NULL) {
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001884 f = vxlan_find_mac(vxlan, all_zeros_mac);
1885 if (f == NULL) {
1886 if ((vxlan->flags & VXLAN_F_L2MISS) &&
1887 !is_multicast_ether_addr(eth->h_dest))
1888 vxlan_fdb_miss(vxlan, eth->h_dest);
David Stevens66817122013-03-15 04:35:51 +00001889
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001890 dev->stats.tx_dropped++;
Eric Dumazet8f646c92014-01-06 09:54:31 -08001891 kfree_skb(skb);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001892 return NETDEV_TX_OK;
Stephen Hemminger3e61aa82013-06-17 14:16:12 -07001893 }
David Stevens66817122013-03-15 04:35:51 +00001894 }
1895
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001896 list_for_each_entry_rcu(rdst, &f->remotes, list) {
1897 struct sk_buff *skb1;
1898
Eric Dumazet8f646c92014-01-06 09:54:31 -08001899 if (!fdst) {
1900 fdst = rdst;
1901 continue;
1902 }
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001903 skb1 = skb_clone(skb, GFP_ATOMIC);
1904 if (skb1)
1905 vxlan_xmit_one(skb1, dev, rdst, did_rsc);
1906 }
1907
Eric Dumazet8f646c92014-01-06 09:54:31 -08001908 if (fdst)
1909 vxlan_xmit_one(skb, dev, fdst, did_rsc);
1910 else
1911 kfree_skb(skb);
Stephen Hemminger4ad16932013-06-17 14:16:11 -07001912 return NETDEV_TX_OK;
David Stevens66817122013-03-15 04:35:51 +00001913}
1914
stephen hemmingerd3428942012-10-01 12:32:35 +00001915/* Walk the forwarding table and purge stale entries */
1916static void vxlan_cleanup(unsigned long arg)
1917{
1918 struct vxlan_dev *vxlan = (struct vxlan_dev *) arg;
1919 unsigned long next_timer = jiffies + FDB_AGE_INTERVAL;
1920 unsigned int h;
1921
1922 if (!netif_running(vxlan->dev))
1923 return;
1924
1925 spin_lock_bh(&vxlan->hash_lock);
1926 for (h = 0; h < FDB_HASH_SIZE; ++h) {
1927 struct hlist_node *p, *n;
1928 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
1929 struct vxlan_fdb *f
1930 = container_of(p, struct vxlan_fdb, hlist);
1931 unsigned long timeout;
1932
stephen hemminger3c172862012-10-26 06:24:34 +00001933 if (f->state & NUD_PERMANENT)
stephen hemmingerd3428942012-10-01 12:32:35 +00001934 continue;
1935
1936 timeout = f->used + vxlan->age_interval * HZ;
1937 if (time_before_eq(timeout, jiffies)) {
1938 netdev_dbg(vxlan->dev,
1939 "garbage collect %pM\n",
1940 f->eth_addr);
1941 f->state = NUD_STALE;
1942 vxlan_fdb_destroy(vxlan, f);
1943 } else if (time_before(timeout, next_timer))
1944 next_timer = timeout;
1945 }
1946 }
1947 spin_unlock_bh(&vxlan->hash_lock);
1948
1949 mod_timer(&vxlan->age_timer, next_timer);
1950}
1951
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001952static void vxlan_vs_add_dev(struct vxlan_sock *vs, struct vxlan_dev *vxlan)
1953{
1954 __u32 vni = vxlan->default_dst.remote_vni;
1955
1956 vxlan->vn_sock = vs;
1957 hlist_add_head_rcu(&vxlan->hlist, vni_head(vs, vni));
1958}
1959
stephen hemmingerd3428942012-10-01 12:32:35 +00001960/* Setup stats when device is created */
1961static int vxlan_init(struct net_device *dev)
1962{
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001963 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02001964 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001965 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001966 bool ipv6 = vxlan->flags & VXLAN_F_IPV6;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001967
WANG Cong1c213bd2014-02-13 11:46:28 -08001968 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Pravin B Shelare8171042013-03-25 14:49:46 +00001969 if (!dev->tstats)
stephen hemmingerd3428942012-10-01 12:32:35 +00001970 return -ENOMEM;
1971
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001972 spin_lock(&vn->sock_lock);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02001973 vs = vxlan_find_sock(vxlan->net, ipv6 ? AF_INET6 : AF_INET,
1974 vxlan->dst_port);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02001975 if (vs && atomic_add_unless(&vs->refcnt, 1, 0)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001976 /* If we have a socket with same port already, reuse it */
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07001977 vxlan_vs_add_dev(vs, vxlan);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07001978 } else {
1979 /* otherwise make new socket outside of RTNL */
1980 dev_hold(dev);
1981 queue_work(vxlan_wq, &vxlan->sock_work);
1982 }
1983 spin_unlock(&vn->sock_lock);
1984
stephen hemmingerd3428942012-10-01 12:32:35 +00001985 return 0;
1986}
1987
Stephen Hemmingerba609e92013-06-25 17:06:01 -07001988static void vxlan_fdb_delete_default(struct vxlan_dev *vxlan)
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03001989{
1990 struct vxlan_fdb *f;
1991
1992 spin_lock_bh(&vxlan->hash_lock);
1993 f = __vxlan_find_mac(vxlan, all_zeros_mac);
1994 if (f)
1995 vxlan_fdb_destroy(vxlan, f);
1996 spin_unlock_bh(&vxlan->hash_lock);
1997}
1998
Stephen Hemmingerebf40632013-06-17 14:16:11 -07001999static void vxlan_uninit(struct net_device *dev)
2000{
2001 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002002 struct vxlan_sock *vs = vxlan->vn_sock;
2003
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002004 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002005
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002006 if (vs)
Pravin B Shelar012a5722013-08-19 11:23:07 -07002007 vxlan_sock_release(vs);
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002008 free_percpu(dev->tstats);
2009}
2010
stephen hemmingerd3428942012-10-01 12:32:35 +00002011/* Start ageing timer and join group when device is brought up */
2012static int vxlan_open(struct net_device *dev)
2013{
2014 struct vxlan_dev *vxlan = netdev_priv(dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002015 struct vxlan_sock *vs = vxlan->vn_sock;
2016
2017 /* socket hasn't been created */
2018 if (!vs)
2019 return -ENOTCONN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002020
Gao feng79d4a942013-12-10 16:37:32 +08002021 if (vxlan_addr_multicast(&vxlan->default_dst.remote_ip)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002022 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002023 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002024 queue_work(vxlan_wq, &vxlan->igmp_join);
stephen hemmingerd3428942012-10-01 12:32:35 +00002025 }
2026
2027 if (vxlan->age_interval)
2028 mod_timer(&vxlan->age_timer, jiffies + FDB_AGE_INTERVAL);
2029
2030 return 0;
2031}
2032
2033/* Purge the forwarding table */
2034static void vxlan_flush(struct vxlan_dev *vxlan)
2035{
Cong Wang31fec5a2013-05-27 22:35:52 +00002036 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002037
2038 spin_lock_bh(&vxlan->hash_lock);
2039 for (h = 0; h < FDB_HASH_SIZE; ++h) {
2040 struct hlist_node *p, *n;
2041 hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
2042 struct vxlan_fdb *f
2043 = container_of(p, struct vxlan_fdb, hlist);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002044 /* the all_zeros_mac entry is deleted at vxlan_uninit */
2045 if (!is_zero_ether_addr(f->eth_addr))
2046 vxlan_fdb_destroy(vxlan, f);
stephen hemmingerd3428942012-10-01 12:32:35 +00002047 }
2048 }
2049 spin_unlock_bh(&vxlan->hash_lock);
2050}
2051
2052/* Cleanup timer and forwarding table on shutdown */
2053static int vxlan_stop(struct net_device *dev)
2054{
2055 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002056 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002057 struct vxlan_sock *vs = vxlan->vn_sock;
stephen hemmingerd3428942012-10-01 12:32:35 +00002058
Cong Wange4c7ed42013-08-31 13:44:33 +08002059 if (vs && vxlan_addr_multicast(&vxlan->default_dst.remote_ip) &&
Gao feng95ab0992013-12-10 16:37:33 +08002060 !vxlan_group_used(vn, vxlan)) {
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002061 vxlan_sock_hold(vs);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002062 dev_hold(dev);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002063 queue_work(vxlan_wq, &vxlan->igmp_leave);
Stephen Hemminger7c47ced2013-06-17 14:16:10 -07002064 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002065
2066 del_timer_sync(&vxlan->age_timer);
2067
2068 vxlan_flush(vxlan);
2069
2070 return 0;
2071}
2072
stephen hemmingerd3428942012-10-01 12:32:35 +00002073/* Stub, nothing needs to be done. */
2074static void vxlan_set_multicast_list(struct net_device *dev)
2075{
2076}
2077
Daniel Borkmann345010b2013-12-18 00:21:08 +01002078static int vxlan_change_mtu(struct net_device *dev, int new_mtu)
2079{
2080 struct vxlan_dev *vxlan = netdev_priv(dev);
2081 struct vxlan_rdst *dst = &vxlan->default_dst;
2082 struct net_device *lowerdev;
2083 int max_mtu;
2084
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002085 lowerdev = __dev_get_by_index(vxlan->net, dst->remote_ifindex);
Daniel Borkmann345010b2013-12-18 00:21:08 +01002086 if (lowerdev == NULL)
2087 return eth_change_mtu(dev, new_mtu);
2088
2089 if (dst->remote_ip.sa.sa_family == AF_INET6)
2090 max_mtu = lowerdev->mtu - VXLAN6_HEADROOM;
2091 else
2092 max_mtu = lowerdev->mtu - VXLAN_HEADROOM;
2093
2094 if (new_mtu < 68 || new_mtu > max_mtu)
2095 return -EINVAL;
2096
2097 dev->mtu = new_mtu;
2098 return 0;
2099}
2100
stephen hemmingerd3428942012-10-01 12:32:35 +00002101static const struct net_device_ops vxlan_netdev_ops = {
2102 .ndo_init = vxlan_init,
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002103 .ndo_uninit = vxlan_uninit,
stephen hemmingerd3428942012-10-01 12:32:35 +00002104 .ndo_open = vxlan_open,
2105 .ndo_stop = vxlan_stop,
2106 .ndo_start_xmit = vxlan_xmit,
Pravin B Shelare8171042013-03-25 14:49:46 +00002107 .ndo_get_stats64 = ip_tunnel_get_stats64,
stephen hemmingerd3428942012-10-01 12:32:35 +00002108 .ndo_set_rx_mode = vxlan_set_multicast_list,
Daniel Borkmann345010b2013-12-18 00:21:08 +01002109 .ndo_change_mtu = vxlan_change_mtu,
stephen hemmingerd3428942012-10-01 12:32:35 +00002110 .ndo_validate_addr = eth_validate_addr,
2111 .ndo_set_mac_address = eth_mac_addr,
2112 .ndo_fdb_add = vxlan_fdb_add,
2113 .ndo_fdb_del = vxlan_fdb_delete,
2114 .ndo_fdb_dump = vxlan_fdb_dump,
2115};
2116
2117/* Info for udev, that this is a virtual tunnel endpoint */
2118static struct device_type vxlan_type = {
2119 .name = "vxlan",
2120};
2121
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002122/* Calls the ndo_add_vxlan_port of the caller in order to
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002123 * supply the listening VXLAN udp ports. Callers are expected
2124 * to implement the ndo_add_vxlan_port.
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002125 */
2126void vxlan_get_rx_port(struct net_device *dev)
2127{
2128 struct vxlan_sock *vs;
2129 struct net *net = dev_net(dev);
2130 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2131 sa_family_t sa_family;
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002132 __be16 port;
2133 unsigned int i;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002134
2135 spin_lock(&vn->sock_lock);
2136 for (i = 0; i < PORT_HASH_SIZE; ++i) {
Joseph Gasparakis35e42372013-09-13 07:34:13 -07002137 hlist_for_each_entry_rcu(vs, &vn->sock_list[i], hlist) {
2138 port = inet_sk(vs->sock->sk)->inet_sport;
Joseph Gasparakis53cf52752013-09-04 02:13:38 -07002139 sa_family = vs->sock->sk->sk_family;
2140 dev->netdev_ops->ndo_add_vxlan_port(dev, sa_family,
2141 port);
2142 }
2143 }
2144 spin_unlock(&vn->sock_lock);
2145}
2146EXPORT_SYMBOL_GPL(vxlan_get_rx_port);
2147
stephen hemmingerd3428942012-10-01 12:32:35 +00002148/* Initialize the device structure. */
2149static void vxlan_setup(struct net_device *dev)
2150{
2151 struct vxlan_dev *vxlan = netdev_priv(dev);
Cong Wang31fec5a2013-05-27 22:35:52 +00002152 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002153
2154 eth_hw_addr_random(dev);
2155 ether_setup(dev);
Cong Wange4c7ed42013-08-31 13:44:33 +08002156 if (vxlan->default_dst.remote_ip.sa.sa_family == AF_INET6)
Cong Wang2853af62014-06-12 11:53:10 -07002157 dev->needed_headroom = ETH_HLEN + VXLAN6_HEADROOM;
Cong Wange4c7ed42013-08-31 13:44:33 +08002158 else
Cong Wang2853af62014-06-12 11:53:10 -07002159 dev->needed_headroom = ETH_HLEN + VXLAN_HEADROOM;
stephen hemmingerd3428942012-10-01 12:32:35 +00002160
2161 dev->netdev_ops = &vxlan_netdev_ops;
Stephen Hemmingerebf40632013-06-17 14:16:11 -07002162 dev->destructor = free_netdev;
stephen hemmingerd3428942012-10-01 12:32:35 +00002163 SET_NETDEV_DEVTYPE(dev, &vxlan_type);
2164
2165 dev->tx_queue_len = 0;
2166 dev->features |= NETIF_F_LLTX;
Joseph Gasparakisd6727fe2012-12-07 14:14:16 +00002167 dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002168 dev->features |= NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002169 dev->features |= NETIF_F_GSO_SOFTWARE;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002170
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002171 dev->vlan_features = dev->features;
2172 dev->features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Joseph Gasparakis0afb1662012-12-07 14:14:18 +00002173 dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_RXCSUM;
Pravin B Shelar05c0db02013-03-07 13:22:36 +00002174 dev->hw_features |= NETIF_F_GSO_SOFTWARE;
Pravin B Shelar1eaa8172013-08-19 11:23:29 -07002175 dev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_STAG_TX;
Eric Dumazet02875872014-10-05 18:38:35 -07002176 netif_keep_dst(dev);
stephen hemminger6602d002012-12-31 12:00:21 +00002177 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
stephen hemmingerd3428942012-10-01 12:32:35 +00002178
stephen hemminger553675f2013-05-16 11:35:20 +00002179 INIT_LIST_HEAD(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002180 spin_lock_init(&vxlan->hash_lock);
stephen hemminger3fc2de22013-07-18 08:40:15 -07002181 INIT_WORK(&vxlan->igmp_join, vxlan_igmp_join);
2182 INIT_WORK(&vxlan->igmp_leave, vxlan_igmp_leave);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002183 INIT_WORK(&vxlan->sock_work, vxlan_sock_work);
stephen hemmingerd3428942012-10-01 12:32:35 +00002184
2185 init_timer_deferrable(&vxlan->age_timer);
2186 vxlan->age_timer.function = vxlan_cleanup;
2187 vxlan->age_timer.data = (unsigned long) vxlan;
2188
stephen hemminger823aa872013-04-27 11:31:57 +00002189 vxlan->dst_port = htons(vxlan_port);
stephen hemminger05f47d62012-10-09 20:35:50 +00002190
stephen hemmingerd3428942012-10-01 12:32:35 +00002191 vxlan->dev = dev;
2192
2193 for (h = 0; h < FDB_HASH_SIZE; ++h)
2194 INIT_HLIST_HEAD(&vxlan->fdb_head[h]);
2195}
2196
2197static const struct nla_policy vxlan_policy[IFLA_VXLAN_MAX + 1] = {
2198 [IFLA_VXLAN_ID] = { .type = NLA_U32 },
stephen hemminger5d174dd2013-04-27 11:31:55 +00002199 [IFLA_VXLAN_GROUP] = { .len = FIELD_SIZEOF(struct iphdr, daddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002200 [IFLA_VXLAN_GROUP6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002201 [IFLA_VXLAN_LINK] = { .type = NLA_U32 },
2202 [IFLA_VXLAN_LOCAL] = { .len = FIELD_SIZEOF(struct iphdr, saddr) },
Cong Wange4c7ed42013-08-31 13:44:33 +08002203 [IFLA_VXLAN_LOCAL6] = { .len = sizeof(struct in6_addr) },
stephen hemmingerd3428942012-10-01 12:32:35 +00002204 [IFLA_VXLAN_TOS] = { .type = NLA_U8 },
2205 [IFLA_VXLAN_TTL] = { .type = NLA_U8 },
2206 [IFLA_VXLAN_LEARNING] = { .type = NLA_U8 },
2207 [IFLA_VXLAN_AGEING] = { .type = NLA_U32 },
2208 [IFLA_VXLAN_LIMIT] = { .type = NLA_U32 },
stephen hemminger05f47d62012-10-09 20:35:50 +00002209 [IFLA_VXLAN_PORT_RANGE] = { .len = sizeof(struct ifla_vxlan_port_range) },
David Stevense4f67ad2012-11-20 02:50:14 +00002210 [IFLA_VXLAN_PROXY] = { .type = NLA_U8 },
2211 [IFLA_VXLAN_RSC] = { .type = NLA_U8 },
2212 [IFLA_VXLAN_L2MISS] = { .type = NLA_U8 },
2213 [IFLA_VXLAN_L3MISS] = { .type = NLA_U8 },
stephen hemminger823aa872013-04-27 11:31:57 +00002214 [IFLA_VXLAN_PORT] = { .type = NLA_U16 },
Tom Herbert5c91ae02014-11-06 18:06:01 -08002215 [IFLA_VXLAN_UDP_CSUM] = { .type = NLA_U8 },
2216 [IFLA_VXLAN_UDP_ZERO_CSUM6_TX] = { .type = NLA_U8 },
2217 [IFLA_VXLAN_UDP_ZERO_CSUM6_RX] = { .type = NLA_U8 },
stephen hemmingerd3428942012-10-01 12:32:35 +00002218};
2219
2220static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
2221{
2222 if (tb[IFLA_ADDRESS]) {
2223 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
2224 pr_debug("invalid link address (not ethernet)\n");
2225 return -EINVAL;
2226 }
2227
2228 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
2229 pr_debug("invalid all zero ethernet address\n");
2230 return -EADDRNOTAVAIL;
2231 }
2232 }
2233
2234 if (!data)
2235 return -EINVAL;
2236
2237 if (data[IFLA_VXLAN_ID]) {
2238 __u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2239 if (id >= VXLAN_VID_MASK)
2240 return -ERANGE;
2241 }
2242
stephen hemminger05f47d62012-10-09 20:35:50 +00002243 if (data[IFLA_VXLAN_PORT_RANGE]) {
2244 const struct ifla_vxlan_port_range *p
2245 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2246
2247 if (ntohs(p->high) < ntohs(p->low)) {
2248 pr_debug("port range %u .. %u not valid\n",
2249 ntohs(p->low), ntohs(p->high));
2250 return -EINVAL;
2251 }
2252 }
2253
stephen hemmingerd3428942012-10-01 12:32:35 +00002254 return 0;
2255}
2256
Yan Burman1b13c972013-01-29 23:43:07 +00002257static void vxlan_get_drvinfo(struct net_device *netdev,
2258 struct ethtool_drvinfo *drvinfo)
2259{
2260 strlcpy(drvinfo->version, VXLAN_VERSION, sizeof(drvinfo->version));
2261 strlcpy(drvinfo->driver, "vxlan", sizeof(drvinfo->driver));
2262}
2263
2264static const struct ethtool_ops vxlan_ethtool_ops = {
2265 .get_drvinfo = vxlan_get_drvinfo,
2266 .get_link = ethtool_op_get_link,
2267};
2268
stephen hemminger553675f2013-05-16 11:35:20 +00002269static void vxlan_del_work(struct work_struct *work)
2270{
2271 struct vxlan_sock *vs = container_of(work, struct vxlan_sock, del_work);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002272 udp_tunnel_sock_release(vs->sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002273 kfree_rcu(vs, rcu);
2274}
2275
Tom Herbert3ee64f32014-07-13 19:49:42 -07002276static struct socket *vxlan_create_sock(struct net *net, bool ipv6,
2277 __be16 port, u32 flags)
stephen hemminger553675f2013-05-16 11:35:20 +00002278{
Cong Wange4c7ed42013-08-31 13:44:33 +08002279 struct socket *sock;
Tom Herbert3ee64f32014-07-13 19:49:42 -07002280 struct udp_port_cfg udp_conf;
2281 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002282
Tom Herbert3ee64f32014-07-13 19:49:42 -07002283 memset(&udp_conf, 0, sizeof(udp_conf));
2284
2285 if (ipv6) {
2286 udp_conf.family = AF_INET6;
2287 udp_conf.use_udp6_tx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002288 !(flags & VXLAN_F_UDP_ZERO_CSUM6_TX);
Tom Herbert3ee64f32014-07-13 19:49:42 -07002289 udp_conf.use_udp6_rx_checksums =
Alexander Duyck3dc2b6a2014-11-24 20:08:38 -08002290 !(flags & VXLAN_F_UDP_ZERO_CSUM6_RX);
Tom Herbert3ee64f32014-07-13 19:49:42 -07002291 } else {
2292 udp_conf.family = AF_INET;
2293 udp_conf.local_ip.s_addr = INADDR_ANY;
2294 udp_conf.use_udp_checksums =
2295 !!(flags & VXLAN_F_UDP_CSUM);
Cong Wange4c7ed42013-08-31 13:44:33 +08002296 }
2297
Tom Herbert3ee64f32014-07-13 19:49:42 -07002298 udp_conf.local_udp_port = port;
Cong Wange4c7ed42013-08-31 13:44:33 +08002299
Tom Herbert3ee64f32014-07-13 19:49:42 -07002300 /* Open UDP socket */
2301 err = udp_sock_create(net, &udp_conf, &sock);
2302 if (err < 0)
2303 return ERR_PTR(err);
Cong Wange4c7ed42013-08-31 13:44:33 +08002304
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002305 return sock;
Cong Wange4c7ed42013-08-31 13:44:33 +08002306}
2307
2308/* Create new listen socket if needed */
2309static struct vxlan_sock *vxlan_socket_create(struct net *net, __be16 port,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002310 vxlan_rcv_t *rcv, void *data,
2311 u32 flags)
Cong Wange4c7ed42013-08-31 13:44:33 +08002312{
2313 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2314 struct vxlan_sock *vs;
2315 struct socket *sock;
Cong Wang31fec5a2013-05-27 22:35:52 +00002316 unsigned int h;
Tom Herbert359a0ea2014-06-04 17:20:29 -07002317 bool ipv6 = !!(flags & VXLAN_F_IPV6);
Andy Zhouacbf74a2014-09-16 17:31:18 -07002318 struct udp_tunnel_sock_cfg tunnel_cfg;
stephen hemminger553675f2013-05-16 11:35:20 +00002319
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002320 vs = kzalloc(sizeof(*vs), GFP_KERNEL);
Cong Wange4c7ed42013-08-31 13:44:33 +08002321 if (!vs)
stephen hemminger553675f2013-05-16 11:35:20 +00002322 return ERR_PTR(-ENOMEM);
2323
2324 for (h = 0; h < VNI_HASH_SIZE; ++h)
2325 INIT_HLIST_HEAD(&vs->vni_list[h]);
2326
2327 INIT_WORK(&vs->del_work, vxlan_del_work);
2328
Tom Herbert3ee64f32014-07-13 19:49:42 -07002329 sock = vxlan_create_sock(net, ipv6, port, flags);
Zhi Yong Wu39deb2c2013-10-28 14:01:48 +08002330 if (IS_ERR(sock)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002331 kfree(vs);
Duan Jionge50fddc2013-11-01 13:09:43 +08002332 return ERR_CAST(sock);
stephen hemminger553675f2013-05-16 11:35:20 +00002333 }
2334
Cong Wange4c7ed42013-08-31 13:44:33 +08002335 vs->sock = sock;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002336 atomic_set(&vs->refcnt, 1);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002337 vs->rcv = rcv;
Pravin B Shelar012a5722013-08-19 11:23:07 -07002338 vs->data = data;
stephen hemminger553675f2013-05-16 11:35:20 +00002339
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002340 /* Initialize the vxlan udp offloads structure */
2341 vs->udp_offloads.port = port;
2342 vs->udp_offloads.callbacks.gro_receive = vxlan_gro_receive;
2343 vs->udp_offloads.callbacks.gro_complete = vxlan_gro_complete;
2344
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002345 spin_lock(&vn->sock_lock);
2346 hlist_add_head_rcu(&vs->hlist, vs_head(net, port));
Or Gerlitzdc01e7d2014-01-20 13:59:21 +02002347 vxlan_notify_add_rx_port(vs);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002348 spin_unlock(&vn->sock_lock);
stephen hemminger553675f2013-05-16 11:35:20 +00002349
2350 /* Mark socket as an encapsulation socket. */
Andy Zhouacbf74a2014-09-16 17:31:18 -07002351 tunnel_cfg.sk_user_data = vs;
2352 tunnel_cfg.encap_type = 1;
2353 tunnel_cfg.encap_rcv = vxlan_udp_encap_recv;
2354 tunnel_cfg.encap_destroy = NULL;
2355
2356 setup_udp_tunnel_sock(net, sock, &tunnel_cfg);
Cong Wange4c7ed42013-08-31 13:44:33 +08002357
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002358 return vs;
2359}
stephen hemminger553675f2013-05-16 11:35:20 +00002360
Pravin B Shelar012a5722013-08-19 11:23:07 -07002361struct vxlan_sock *vxlan_sock_add(struct net *net, __be16 port,
2362 vxlan_rcv_t *rcv, void *data,
Tom Herbert359a0ea2014-06-04 17:20:29 -07002363 bool no_share, u32 flags)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002364{
2365 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2366 struct vxlan_sock *vs;
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002367 bool ipv6 = flags & VXLAN_F_IPV6;
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002368
Tom Herbert359a0ea2014-06-04 17:20:29 -07002369 vs = vxlan_socket_create(net, port, rcv, data, flags);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002370 if (!IS_ERR(vs))
2371 return vs;
2372
Pravin B Shelar012a5722013-08-19 11:23:07 -07002373 if (no_share) /* Return error if sharing is not allowed. */
2374 return vs;
2375
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002376 spin_lock(&vn->sock_lock);
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002377 vs = vxlan_find_sock(net, ipv6 ? AF_INET6 : AF_INET, port);
Marcelo Leitner00c83b02014-12-11 10:02:22 -02002378 if (vs && ((vs->rcv != rcv) ||
2379 !atomic_add_unless(&vs->refcnt, 1, 0)))
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002380 vs = ERR_PTR(-EBUSY);
Pravin B Shelar5cfccc52013-08-19 11:23:02 -07002381 spin_unlock(&vn->sock_lock);
2382
2383 if (!vs)
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002384 vs = ERR_PTR(-EINVAL);
2385
stephen hemminger553675f2013-05-16 11:35:20 +00002386 return vs;
2387}
Pravin B Shelar012a5722013-08-19 11:23:07 -07002388EXPORT_SYMBOL_GPL(vxlan_sock_add);
stephen hemminger553675f2013-05-16 11:35:20 +00002389
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002390/* Scheduled at device creation to bind to a socket */
2391static void vxlan_sock_work(struct work_struct *work)
2392{
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002393 struct vxlan_dev *vxlan = container_of(work, struct vxlan_dev, sock_work);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002394 struct net *net = vxlan->net;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002395 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002396 __be16 port = vxlan->dst_port;
2397 struct vxlan_sock *nvs;
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002398
Tom Herbert359a0ea2014-06-04 17:20:29 -07002399 nvs = vxlan_sock_add(net, port, vxlan_rcv, NULL, false, vxlan->flags);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002400 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002401 if (!IS_ERR(nvs))
2402 vxlan_vs_add_dev(nvs, vxlan);
2403 spin_unlock(&vn->sock_lock);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002404
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002405 dev_put(vxlan->dev);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002406}
2407
stephen hemmingerd3428942012-10-01 12:32:35 +00002408static int vxlan_newlink(struct net *net, struct net_device *dev,
2409 struct nlattr *tb[], struct nlattr *data[])
2410{
stephen hemminger553675f2013-05-16 11:35:20 +00002411 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002412 struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002413 struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemmingerd3428942012-10-01 12:32:35 +00002414 __u32 vni;
2415 int err;
Cong Wange4c7ed42013-08-31 13:44:33 +08002416 bool use_ipv6 = false;
stephen hemmingerd3428942012-10-01 12:32:35 +00002417
2418 if (!data[IFLA_VXLAN_ID])
2419 return -EINVAL;
2420
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002421 vxlan->net = dev_net(dev);
2422
stephen hemmingerd3428942012-10-01 12:32:35 +00002423 vni = nla_get_u32(data[IFLA_VXLAN_ID]);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002424 dst->remote_vni = vni;
stephen hemmingerd3428942012-10-01 12:32:35 +00002425
Mike Rapoport5933a7b2014-04-01 09:23:01 +03002426 /* Unless IPv6 is explicitly requested, assume IPv4 */
2427 dst->remote_ip.sa.sa_family = AF_INET;
Cong Wange4c7ed42013-08-31 13:44:33 +08002428 if (data[IFLA_VXLAN_GROUP]) {
2429 dst->remote_ip.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_GROUP]);
Cong Wange4c7ed42013-08-31 13:44:33 +08002430 } else if (data[IFLA_VXLAN_GROUP6]) {
2431 if (!IS_ENABLED(CONFIG_IPV6))
2432 return -EPFNOSUPPORT;
stephen hemmingerd3428942012-10-01 12:32:35 +00002433
Cong Wange4c7ed42013-08-31 13:44:33 +08002434 nla_memcpy(&dst->remote_ip.sin6.sin6_addr, data[IFLA_VXLAN_GROUP6],
2435 sizeof(struct in6_addr));
2436 dst->remote_ip.sa.sa_family = AF_INET6;
2437 use_ipv6 = true;
2438 }
2439
2440 if (data[IFLA_VXLAN_LOCAL]) {
2441 vxlan->saddr.sin.sin_addr.s_addr = nla_get_be32(data[IFLA_VXLAN_LOCAL]);
2442 vxlan->saddr.sa.sa_family = AF_INET;
2443 } else if (data[IFLA_VXLAN_LOCAL6]) {
2444 if (!IS_ENABLED(CONFIG_IPV6))
2445 return -EPFNOSUPPORT;
2446
2447 /* TODO: respect scope id */
2448 nla_memcpy(&vxlan->saddr.sin6.sin6_addr, data[IFLA_VXLAN_LOCAL6],
2449 sizeof(struct in6_addr));
2450 vxlan->saddr.sa.sa_family = AF_INET6;
2451 use_ipv6 = true;
2452 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002453
stephen hemminger34e02aa2012-10-09 20:35:53 +00002454 if (data[IFLA_VXLAN_LINK] &&
Atzm Watanabec7995c42013-04-16 02:50:52 +00002455 (dst->remote_ifindex = nla_get_u32(data[IFLA_VXLAN_LINK]))) {
stephen hemminger34e02aa2012-10-09 20:35:53 +00002456 struct net_device *lowerdev
Atzm Watanabec7995c42013-04-16 02:50:52 +00002457 = __dev_get_by_index(net, dst->remote_ifindex);
stephen hemmingerd3428942012-10-01 12:32:35 +00002458
stephen hemminger34e02aa2012-10-09 20:35:53 +00002459 if (!lowerdev) {
Atzm Watanabec7995c42013-04-16 02:50:52 +00002460 pr_info("ifindex %d does not exist\n", dst->remote_ifindex);
stephen hemminger34e02aa2012-10-09 20:35:53 +00002461 return -ENODEV;
stephen hemmingerd3428942012-10-01 12:32:35 +00002462 }
stephen hemminger34e02aa2012-10-09 20:35:53 +00002463
Cong Wange4c7ed42013-08-31 13:44:33 +08002464#if IS_ENABLED(CONFIG_IPV6)
2465 if (use_ipv6) {
2466 struct inet6_dev *idev = __in6_dev_get(lowerdev);
2467 if (idev && idev->cnf.disable_ipv6) {
2468 pr_info("IPv6 is disabled via sysctl\n");
2469 return -EPERM;
2470 }
2471 vxlan->flags |= VXLAN_F_IPV6;
2472 }
2473#endif
2474
stephen hemminger34e02aa2012-10-09 20:35:53 +00002475 if (!tb[IFLA_MTU])
Cong Wange4c7ed42013-08-31 13:44:33 +08002476 dev->mtu = lowerdev->mtu - (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
Alexander Duyck1ba56fb2012-11-13 13:10:59 +00002477
Cong Wang2853af62014-06-12 11:53:10 -07002478 dev->needed_headroom = lowerdev->hard_header_len +
Cong Wange4c7ed42013-08-31 13:44:33 +08002479 (use_ipv6 ? VXLAN6_HEADROOM : VXLAN_HEADROOM);
fan.du7bda7012014-01-03 10:18:58 +08002480 } else if (use_ipv6)
2481 vxlan->flags |= VXLAN_F_IPV6;
stephen hemmingerd3428942012-10-01 12:32:35 +00002482
2483 if (data[IFLA_VXLAN_TOS])
2484 vxlan->tos = nla_get_u8(data[IFLA_VXLAN_TOS]);
2485
Vincent Bernatafb97182012-10-30 10:27:16 +00002486 if (data[IFLA_VXLAN_TTL])
2487 vxlan->ttl = nla_get_u8(data[IFLA_VXLAN_TTL]);
2488
stephen hemmingerd3428942012-10-01 12:32:35 +00002489 if (!data[IFLA_VXLAN_LEARNING] || nla_get_u8(data[IFLA_VXLAN_LEARNING]))
David Stevense4f67ad2012-11-20 02:50:14 +00002490 vxlan->flags |= VXLAN_F_LEARN;
stephen hemmingerd3428942012-10-01 12:32:35 +00002491
2492 if (data[IFLA_VXLAN_AGEING])
2493 vxlan->age_interval = nla_get_u32(data[IFLA_VXLAN_AGEING]);
2494 else
2495 vxlan->age_interval = FDB_AGE_DEFAULT;
2496
David Stevense4f67ad2012-11-20 02:50:14 +00002497 if (data[IFLA_VXLAN_PROXY] && nla_get_u8(data[IFLA_VXLAN_PROXY]))
2498 vxlan->flags |= VXLAN_F_PROXY;
2499
2500 if (data[IFLA_VXLAN_RSC] && nla_get_u8(data[IFLA_VXLAN_RSC]))
2501 vxlan->flags |= VXLAN_F_RSC;
2502
2503 if (data[IFLA_VXLAN_L2MISS] && nla_get_u8(data[IFLA_VXLAN_L2MISS]))
2504 vxlan->flags |= VXLAN_F_L2MISS;
2505
2506 if (data[IFLA_VXLAN_L3MISS] && nla_get_u8(data[IFLA_VXLAN_L3MISS]))
2507 vxlan->flags |= VXLAN_F_L3MISS;
2508
stephen hemmingerd3428942012-10-01 12:32:35 +00002509 if (data[IFLA_VXLAN_LIMIT])
2510 vxlan->addrmax = nla_get_u32(data[IFLA_VXLAN_LIMIT]);
2511
stephen hemminger05f47d62012-10-09 20:35:50 +00002512 if (data[IFLA_VXLAN_PORT_RANGE]) {
2513 const struct ifla_vxlan_port_range *p
2514 = nla_data(data[IFLA_VXLAN_PORT_RANGE]);
2515 vxlan->port_min = ntohs(p->low);
2516 vxlan->port_max = ntohs(p->high);
2517 }
2518
stephen hemminger823aa872013-04-27 11:31:57 +00002519 if (data[IFLA_VXLAN_PORT])
2520 vxlan->dst_port = nla_get_be16(data[IFLA_VXLAN_PORT]);
2521
Tom Herbert359a0ea2014-06-04 17:20:29 -07002522 if (data[IFLA_VXLAN_UDP_CSUM] && nla_get_u8(data[IFLA_VXLAN_UDP_CSUM]))
2523 vxlan->flags |= VXLAN_F_UDP_CSUM;
2524
2525 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX] &&
2526 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_TX]))
2527 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_TX;
2528
2529 if (data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX] &&
2530 nla_get_u8(data[IFLA_VXLAN_UDP_ZERO_CSUM6_RX]))
2531 vxlan->flags |= VXLAN_F_UDP_ZERO_CSUM6_RX;
2532
Marcelo Leitner19ca9fc2014-11-13 14:43:08 -02002533 if (vxlan_find_vni(net, vni, use_ipv6 ? AF_INET6 : AF_INET,
2534 vxlan->dst_port)) {
stephen hemminger553675f2013-05-16 11:35:20 +00002535 pr_info("duplicate VNI %u\n", vni);
2536 return -EEXIST;
2537 }
2538
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002539 dev->ethtool_ops = &vxlan_ethtool_ops;
Yan Burman1b13c972013-01-29 23:43:07 +00002540
Sridhar Samudrala2936b6a2013-09-17 12:12:40 -07002541 /* create an fdb entry for a valid default destination */
2542 if (!vxlan_addr_any(&vxlan->default_dst.remote_ip)) {
2543 err = vxlan_fdb_create(vxlan, all_zeros_mac,
2544 &vxlan->default_dst.remote_ip,
2545 NUD_REACHABLE|NUD_PERMANENT,
2546 NLM_F_EXCL|NLM_F_CREATE,
2547 vxlan->dst_port,
2548 vxlan->default_dst.remote_vni,
2549 vxlan->default_dst.remote_ifindex,
2550 NTF_SELF);
2551 if (err)
2552 return err;
2553 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002554
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002555 err = register_netdevice(dev);
2556 if (err) {
Stephen Hemmingerba609e92013-06-25 17:06:01 -07002557 vxlan_fdb_delete_default(vxlan);
Mike Rapoportafbd8ba2013-06-25 16:01:51 +03002558 return err;
2559 }
2560
stephen hemminger553675f2013-05-16 11:35:20 +00002561 list_add(&vxlan->next, &vn->vxlan_list);
stephen hemminger553675f2013-05-16 11:35:20 +00002562
2563 return 0;
stephen hemmingerd3428942012-10-01 12:32:35 +00002564}
2565
2566static void vxlan_dellink(struct net_device *dev, struct list_head *head)
2567{
2568 struct vxlan_dev *vxlan = netdev_priv(dev);
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002569 struct vxlan_net *vn = net_generic(vxlan->net, vxlan_net_id);
stephen hemmingerd3428942012-10-01 12:32:35 +00002570
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002571 spin_lock(&vn->sock_lock);
Pravin B Shelar9c2e24e2013-08-19 11:22:48 -07002572 if (!hlist_unhashed(&vxlan->hlist))
2573 hlist_del_rcu(&vxlan->hlist);
stephen hemmingerfe5c3562013-07-13 10:18:18 -07002574 spin_unlock(&vn->sock_lock);
2575
stephen hemminger553675f2013-05-16 11:35:20 +00002576 list_del(&vxlan->next);
stephen hemmingerd3428942012-10-01 12:32:35 +00002577 unregister_netdevice_queue(dev, head);
2578}
2579
2580static size_t vxlan_get_size(const struct net_device *dev)
2581{
2582
2583 return nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_ID */
Cong Wange4c7ed42013-08-31 13:44:33 +08002584 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_GROUP{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002585 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LINK */
Cong Wange4c7ed42013-08-31 13:44:33 +08002586 nla_total_size(sizeof(struct in6_addr)) + /* IFLA_VXLAN_LOCAL{6} */
stephen hemmingerd3428942012-10-01 12:32:35 +00002587 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TTL */
2588 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_TOS */
2589 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LEARNING */
David Stevense4f67ad2012-11-20 02:50:14 +00002590 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_PROXY */
2591 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_RSC */
2592 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L2MISS */
2593 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_L3MISS */
stephen hemmingerd3428942012-10-01 12:32:35 +00002594 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_AGEING */
2595 nla_total_size(sizeof(__u32)) + /* IFLA_VXLAN_LIMIT */
stephen hemminger05f47d62012-10-09 20:35:50 +00002596 nla_total_size(sizeof(struct ifla_vxlan_port_range)) +
Tom Herbert359a0ea2014-06-04 17:20:29 -07002597 nla_total_size(sizeof(__be16)) + /* IFLA_VXLAN_PORT */
2598 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_CSUM */
2599 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_TX */
2600 nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_UDP_ZERO_CSUM6_RX */
stephen hemmingerd3428942012-10-01 12:32:35 +00002601 0;
2602}
2603
2604static int vxlan_fill_info(struct sk_buff *skb, const struct net_device *dev)
2605{
2606 const struct vxlan_dev *vxlan = netdev_priv(dev);
Atzm Watanabec7995c42013-04-16 02:50:52 +00002607 const struct vxlan_rdst *dst = &vxlan->default_dst;
stephen hemminger05f47d62012-10-09 20:35:50 +00002608 struct ifla_vxlan_port_range ports = {
2609 .low = htons(vxlan->port_min),
2610 .high = htons(vxlan->port_max),
2611 };
stephen hemmingerd3428942012-10-01 12:32:35 +00002612
Atzm Watanabec7995c42013-04-16 02:50:52 +00002613 if (nla_put_u32(skb, IFLA_VXLAN_ID, dst->remote_vni))
stephen hemmingerd3428942012-10-01 12:32:35 +00002614 goto nla_put_failure;
2615
Cong Wange4c7ed42013-08-31 13:44:33 +08002616 if (!vxlan_addr_any(&dst->remote_ip)) {
2617 if (dst->remote_ip.sa.sa_family == AF_INET) {
2618 if (nla_put_be32(skb, IFLA_VXLAN_GROUP,
2619 dst->remote_ip.sin.sin_addr.s_addr))
2620 goto nla_put_failure;
2621#if IS_ENABLED(CONFIG_IPV6)
2622 } else {
2623 if (nla_put(skb, IFLA_VXLAN_GROUP6, sizeof(struct in6_addr),
2624 &dst->remote_ip.sin6.sin6_addr))
2625 goto nla_put_failure;
2626#endif
2627 }
2628 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002629
Atzm Watanabec7995c42013-04-16 02:50:52 +00002630 if (dst->remote_ifindex && nla_put_u32(skb, IFLA_VXLAN_LINK, dst->remote_ifindex))
stephen hemmingerd3428942012-10-01 12:32:35 +00002631 goto nla_put_failure;
2632
Cong Wange4c7ed42013-08-31 13:44:33 +08002633 if (!vxlan_addr_any(&vxlan->saddr)) {
2634 if (vxlan->saddr.sa.sa_family == AF_INET) {
2635 if (nla_put_be32(skb, IFLA_VXLAN_LOCAL,
2636 vxlan->saddr.sin.sin_addr.s_addr))
2637 goto nla_put_failure;
2638#if IS_ENABLED(CONFIG_IPV6)
2639 } else {
2640 if (nla_put(skb, IFLA_VXLAN_LOCAL6, sizeof(struct in6_addr),
2641 &vxlan->saddr.sin6.sin6_addr))
2642 goto nla_put_failure;
2643#endif
2644 }
2645 }
stephen hemmingerd3428942012-10-01 12:32:35 +00002646
2647 if (nla_put_u8(skb, IFLA_VXLAN_TTL, vxlan->ttl) ||
2648 nla_put_u8(skb, IFLA_VXLAN_TOS, vxlan->tos) ||
David Stevense4f67ad2012-11-20 02:50:14 +00002649 nla_put_u8(skb, IFLA_VXLAN_LEARNING,
2650 !!(vxlan->flags & VXLAN_F_LEARN)) ||
2651 nla_put_u8(skb, IFLA_VXLAN_PROXY,
2652 !!(vxlan->flags & VXLAN_F_PROXY)) ||
2653 nla_put_u8(skb, IFLA_VXLAN_RSC, !!(vxlan->flags & VXLAN_F_RSC)) ||
2654 nla_put_u8(skb, IFLA_VXLAN_L2MISS,
2655 !!(vxlan->flags & VXLAN_F_L2MISS)) ||
2656 nla_put_u8(skb, IFLA_VXLAN_L3MISS,
2657 !!(vxlan->flags & VXLAN_F_L3MISS)) ||
stephen hemmingerd3428942012-10-01 12:32:35 +00002658 nla_put_u32(skb, IFLA_VXLAN_AGEING, vxlan->age_interval) ||
stephen hemminger823aa872013-04-27 11:31:57 +00002659 nla_put_u32(skb, IFLA_VXLAN_LIMIT, vxlan->addrmax) ||
Tom Herbert359a0ea2014-06-04 17:20:29 -07002660 nla_put_be16(skb, IFLA_VXLAN_PORT, vxlan->dst_port) ||
2661 nla_put_u8(skb, IFLA_VXLAN_UDP_CSUM,
2662 !!(vxlan->flags & VXLAN_F_UDP_CSUM)) ||
2663 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
2664 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_TX)) ||
2665 nla_put_u8(skb, IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
2666 !!(vxlan->flags & VXLAN_F_UDP_ZERO_CSUM6_RX)))
stephen hemmingerd3428942012-10-01 12:32:35 +00002667 goto nla_put_failure;
2668
stephen hemminger05f47d62012-10-09 20:35:50 +00002669 if (nla_put(skb, IFLA_VXLAN_PORT_RANGE, sizeof(ports), &ports))
2670 goto nla_put_failure;
2671
stephen hemmingerd3428942012-10-01 12:32:35 +00002672 return 0;
2673
2674nla_put_failure:
2675 return -EMSGSIZE;
2676}
2677
2678static struct rtnl_link_ops vxlan_link_ops __read_mostly = {
2679 .kind = "vxlan",
2680 .maxtype = IFLA_VXLAN_MAX,
2681 .policy = vxlan_policy,
2682 .priv_size = sizeof(struct vxlan_dev),
2683 .setup = vxlan_setup,
2684 .validate = vxlan_validate,
2685 .newlink = vxlan_newlink,
2686 .dellink = vxlan_dellink,
2687 .get_size = vxlan_get_size,
2688 .fill_info = vxlan_fill_info,
2689};
2690
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002691static void vxlan_handle_lowerdev_unregister(struct vxlan_net *vn,
2692 struct net_device *dev)
2693{
2694 struct vxlan_dev *vxlan, *next;
2695 LIST_HEAD(list_kill);
2696
2697 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2698 struct vxlan_rdst *dst = &vxlan->default_dst;
2699
2700 /* In case we created vxlan device with carrier
2701 * and we loose the carrier due to module unload
2702 * we also need to remove vxlan device. In other
2703 * cases, it's not necessary and remote_ifindex
2704 * is 0 here, so no matches.
2705 */
2706 if (dst->remote_ifindex == dev->ifindex)
2707 vxlan_dellink(vxlan->dev, &list_kill);
2708 }
2709
2710 unregister_netdevice_many(&list_kill);
2711}
2712
2713static int vxlan_lowerdev_event(struct notifier_block *unused,
2714 unsigned long event, void *ptr)
2715{
2716 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002717 struct vxlan_net *vn = net_generic(dev_net(dev), vxlan_net_id);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002718
Daniel Borkmann783c1462014-01-22 21:07:53 +01002719 if (event == NETDEV_UNREGISTER)
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002720 vxlan_handle_lowerdev_unregister(vn, dev);
2721
2722 return NOTIFY_DONE;
2723}
2724
2725static struct notifier_block vxlan_notifier_block __read_mostly = {
2726 .notifier_call = vxlan_lowerdev_event,
2727};
2728
stephen hemmingerd3428942012-10-01 12:32:35 +00002729static __net_init int vxlan_init_net(struct net *net)
2730{
2731 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
Cong Wang31fec5a2013-05-27 22:35:52 +00002732 unsigned int h;
stephen hemmingerd3428942012-10-01 12:32:35 +00002733
stephen hemminger553675f2013-05-16 11:35:20 +00002734 INIT_LIST_HEAD(&vn->vxlan_list);
Stephen Hemminger1c51a912013-06-17 14:16:11 -07002735 spin_lock_init(&vn->sock_lock);
stephen hemmingerd3428942012-10-01 12:32:35 +00002736
stephen hemminger553675f2013-05-16 11:35:20 +00002737 for (h = 0; h < PORT_HASH_SIZE; ++h)
2738 INIT_HLIST_HEAD(&vn->sock_list[h]);
stephen hemmingerd3428942012-10-01 12:32:35 +00002739
2740 return 0;
2741}
2742
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002743static void __net_exit vxlan_exit_net(struct net *net)
2744{
2745 struct vxlan_net *vn = net_generic(net, vxlan_net_id);
2746 struct vxlan_dev *vxlan, *next;
2747 struct net_device *dev, *aux;
2748 LIST_HEAD(list);
2749
2750 rtnl_lock();
2751 for_each_netdev_safe(net, dev, aux)
2752 if (dev->rtnl_link_ops == &vxlan_link_ops)
2753 unregister_netdevice_queue(dev, &list);
2754
2755 list_for_each_entry_safe(vxlan, next, &vn->vxlan_list, next) {
2756 /* If vxlan->dev is in the same netns, it has already been added
2757 * to the list by the previous loop.
2758 */
2759 if (!net_eq(dev_net(vxlan->dev), net))
2760 unregister_netdevice_queue(dev, &list);
2761 }
2762
2763 unregister_netdevice_many(&list);
2764 rtnl_unlock();
2765}
2766
stephen hemmingerd3428942012-10-01 12:32:35 +00002767static struct pernet_operations vxlan_net_ops = {
2768 .init = vxlan_init_net,
Nicolas Dichtelf01ec1c2014-04-24 10:02:49 +02002769 .exit = vxlan_exit_net,
stephen hemmingerd3428942012-10-01 12:32:35 +00002770 .id = &vxlan_net_id,
2771 .size = sizeof(struct vxlan_net),
2772};
2773
2774static int __init vxlan_init_module(void)
2775{
2776 int rc;
2777
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002778 vxlan_wq = alloc_workqueue("vxlan", 0, 0);
2779 if (!vxlan_wq)
2780 return -ENOMEM;
2781
stephen hemmingerd3428942012-10-01 12:32:35 +00002782 get_random_bytes(&vxlan_salt, sizeof(vxlan_salt));
2783
Daniel Borkmann783c1462014-01-22 21:07:53 +01002784 rc = register_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00002785 if (rc)
2786 goto out1;
2787
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002788 rc = register_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00002789 if (rc)
2790 goto out2;
2791
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002792 rc = rtnl_link_register(&vxlan_link_ops);
2793 if (rc)
2794 goto out3;
stephen hemmingerd3428942012-10-01 12:32:35 +00002795
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002796 return 0;
2797out3:
2798 unregister_netdevice_notifier(&vxlan_notifier_block);
stephen hemmingerd3428942012-10-01 12:32:35 +00002799out2:
Daniel Borkmann783c1462014-01-22 21:07:53 +01002800 unregister_pernet_subsys(&vxlan_net_ops);
stephen hemmingerd3428942012-10-01 12:32:35 +00002801out1:
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002802 destroy_workqueue(vxlan_wq);
stephen hemmingerd3428942012-10-01 12:32:35 +00002803 return rc;
2804}
Cong Wang7332a132013-05-27 22:35:53 +00002805late_initcall(vxlan_init_module);
stephen hemmingerd3428942012-10-01 12:32:35 +00002806
2807static void __exit vxlan_cleanup_module(void)
2808{
Stephen Hemmingerb7153982013-06-17 14:16:09 -07002809 rtnl_link_unregister(&vxlan_link_ops);
Daniel Borkmannacaf4e7092014-01-13 18:41:19 +01002810 unregister_netdevice_notifier(&vxlan_notifier_block);
Stephen Hemminger758c57d2013-06-17 14:16:09 -07002811 destroy_workqueue(vxlan_wq);
Daniel Borkmann783c1462014-01-22 21:07:53 +01002812 unregister_pernet_subsys(&vxlan_net_ops);
2813 /* rcu_barrier() is called by netns */
stephen hemmingerd3428942012-10-01 12:32:35 +00002814}
2815module_exit(vxlan_cleanup_module);
2816
2817MODULE_LICENSE("GPL");
2818MODULE_VERSION(VXLAN_VERSION);
stephen hemminger3b8df3c2013-04-27 11:31:52 +00002819MODULE_AUTHOR("Stephen Hemminger <stephen@networkplumber.org>");
Jesse Brandeburgead51392014-01-17 11:00:33 -08002820MODULE_DESCRIPTION("Driver for VXLAN encapsulated traffic");
stephen hemmingerd3428942012-10-01 12:32:35 +00002821MODULE_ALIAS_RTNL_LINK("vxlan");