blob: b9f5155a77ef443370bbfe6afa9f4fd23a3e1011 [file] [log] [blame]
Steffen Klasserted1efb22013-08-19 08:07:34 +02001/*
2 * IPv6 virtual tunneling interface
3 *
4 * Copyright (C) 2013 secunet Security Networks AG
5 *
6 * Author:
7 * Steffen Klassert <steffen.klassert@secunet.com>
8 *
9 * Based on:
10 * net/ipv6/ip6_tunnel.c
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
18#include <linux/module.h>
19#include <linux/capability.h>
20#include <linux/errno.h>
21#include <linux/types.h>
22#include <linux/sockios.h>
23#include <linux/icmp.h>
24#include <linux/if.h>
25#include <linux/in.h>
26#include <linux/ip.h>
Steffen Klasserted1efb22013-08-19 08:07:34 +020027#include <linux/net.h>
28#include <linux/in6.h>
29#include <linux/netdevice.h>
30#include <linux/if_arp.h>
31#include <linux/icmpv6.h>
32#include <linux/init.h>
33#include <linux/route.h>
34#include <linux/rtnetlink.h>
35#include <linux/netfilter_ipv6.h>
36#include <linux/slab.h>
37#include <linux/hash.h>
38
39#include <linux/uaccess.h>
40#include <linux/atomic.h>
41
42#include <net/icmp.h>
43#include <net/ip.h>
44#include <net/ip_tunnels.h>
45#include <net/ipv6.h>
46#include <net/ip6_route.h>
47#include <net/addrconf.h>
48#include <net/ip6_tunnel.h>
49#include <net/xfrm.h>
50#include <net/net_namespace.h>
51#include <net/netns/generic.h>
52
Jiri Kosinae87a8f22016-08-10 11:03:35 +020053#define IP6_VTI_HASH_SIZE_SHIFT 5
54#define IP6_VTI_HASH_SIZE (1 << IP6_VTI_HASH_SIZE_SHIFT)
Steffen Klasserted1efb22013-08-19 08:07:34 +020055
56static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
57{
58 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
59
Jiri Kosinae87a8f22016-08-10 11:03:35 +020060 return hash_32(hash, IP6_VTI_HASH_SIZE_SHIFT);
Steffen Klasserted1efb22013-08-19 08:07:34 +020061}
62
63static int vti6_dev_init(struct net_device *dev);
64static void vti6_dev_setup(struct net_device *dev);
65static struct rtnl_link_ops vti6_link_ops __read_mostly;
66
67static int vti6_net_id __read_mostly;
68struct vti6_net {
69 /* the vti6 tunnel fallback device */
70 struct net_device *fb_tnl_dev;
71 /* lists for storing tunnels in use */
Jiri Kosinae87a8f22016-08-10 11:03:35 +020072 struct ip6_tnl __rcu *tnls_r_l[IP6_VTI_HASH_SIZE];
Steffen Klasserted1efb22013-08-19 08:07:34 +020073 struct ip6_tnl __rcu *tnls_wc[1];
74 struct ip6_tnl __rcu **tnls[2];
75};
76
Steffen Klasserted1efb22013-08-19 08:07:34 +020077#define for_each_vti6_tunnel_rcu(start) \
78 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
79
80/**
81 * vti6_tnl_lookup - fetch tunnel matching the end-point addresses
82 * @net: network namespace
83 * @remote: the address of the tunnel exit-point
84 * @local: the address of the tunnel entry-point
85 *
86 * Return:
87 * tunnel matching given end-points if found,
88 * else fallback tunnel if its device is up,
89 * else %NULL
90 **/
91static struct ip6_tnl *
92vti6_tnl_lookup(struct net *net, const struct in6_addr *remote,
93 const struct in6_addr *local)
94{
95 unsigned int hash = HASH(remote, local);
96 struct ip6_tnl *t;
97 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
Steffen Klassertfbe68ee2014-11-20 10:01:49 +010098 struct in6_addr any;
Steffen Klasserted1efb22013-08-19 08:07:34 +020099
100 for_each_vti6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
101 if (ipv6_addr_equal(local, &t->parms.laddr) &&
102 ipv6_addr_equal(remote, &t->parms.raddr) &&
103 (t->dev->flags & IFF_UP))
104 return t;
105 }
Steffen Klassertfbe68ee2014-11-20 10:01:49 +0100106
107 memset(&any, 0, sizeof(any));
108 hash = HASH(&any, local);
109 for_each_vti6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
110 if (ipv6_addr_equal(local, &t->parms.laddr) &&
111 (t->dev->flags & IFF_UP))
112 return t;
113 }
114
115 hash = HASH(remote, &any);
116 for_each_vti6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
117 if (ipv6_addr_equal(remote, &t->parms.raddr) &&
118 (t->dev->flags & IFF_UP))
119 return t;
120 }
121
Steffen Klasserted1efb22013-08-19 08:07:34 +0200122 t = rcu_dereference(ip6n->tnls_wc[0]);
123 if (t && (t->dev->flags & IFF_UP))
124 return t;
125
126 return NULL;
127}
128
129/**
130 * vti6_tnl_bucket - get head of list matching given tunnel parameters
131 * @p: parameters containing tunnel end-points
132 *
133 * Description:
134 * vti6_tnl_bucket() returns the head of the list matching the
135 * &struct in6_addr entries laddr and raddr in @p.
136 *
137 * Return: head of IPv6 tunnel list
138 **/
139static struct ip6_tnl __rcu **
140vti6_tnl_bucket(struct vti6_net *ip6n, const struct __ip6_tnl_parm *p)
141{
142 const struct in6_addr *remote = &p->raddr;
143 const struct in6_addr *local = &p->laddr;
144 unsigned int h = 0;
145 int prio = 0;
146
147 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
148 prio = 1;
149 h = HASH(remote, local);
150 }
151 return &ip6n->tnls[prio][h];
152}
153
154static void
155vti6_tnl_link(struct vti6_net *ip6n, struct ip6_tnl *t)
156{
157 struct ip6_tnl __rcu **tp = vti6_tnl_bucket(ip6n, &t->parms);
158
159 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
160 rcu_assign_pointer(*tp, t);
161}
162
163static void
164vti6_tnl_unlink(struct vti6_net *ip6n, struct ip6_tnl *t)
165{
166 struct ip6_tnl __rcu **tp;
167 struct ip6_tnl *iter;
168
169 for (tp = vti6_tnl_bucket(ip6n, &t->parms);
170 (iter = rtnl_dereference(*tp)) != NULL;
171 tp = &iter->next) {
172 if (t == iter) {
173 rcu_assign_pointer(*tp, t->next);
174 break;
175 }
176 }
177}
178
179static void vti6_dev_free(struct net_device *dev)
180{
181 free_percpu(dev->tstats);
182 free_netdev(dev);
183}
184
185static int vti6_tnl_create2(struct net_device *dev)
186{
187 struct ip6_tnl *t = netdev_priv(dev);
188 struct net *net = dev_net(dev);
189 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
190 int err;
191
David Forster105b4032017-01-06 10:27:59 +0000192 dev->rtnl_link_ops = &vti6_link_ops;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200193 err = register_netdevice(dev);
194 if (err < 0)
195 goto out;
196
197 strcpy(t->parms.name, dev->name);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200198
199 dev_hold(dev);
200 vti6_tnl_link(ip6n, t);
201
202 return 0;
203
204out:
205 return err;
206}
207
208static struct ip6_tnl *vti6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
209{
210 struct net_device *dev;
211 struct ip6_tnl *t;
212 char name[IFNAMSIZ];
213 int err;
214
Eric Dumazetdbb6ed62018-04-05 06:39:31 -0700215 if (p->name[0]) {
216 if (!dev_valid_name(p->name))
217 goto failed;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200218 strlcpy(name, p->name, IFNAMSIZ);
Eric Dumazetdbb6ed62018-04-05 06:39:31 -0700219 } else {
Steffen Klasserted1efb22013-08-19 08:07:34 +0200220 sprintf(name, "ip6_vti%%d");
Eric Dumazetdbb6ed62018-04-05 06:39:31 -0700221 }
Steffen Klasserted1efb22013-08-19 08:07:34 +0200222
Tom Gundersenc835a672014-07-14 16:37:24 +0200223 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN, vti6_dev_setup);
Ian Morris63159f22015-03-29 14:00:04 +0100224 if (!dev)
Steffen Klasserted1efb22013-08-19 08:07:34 +0200225 goto failed;
226
227 dev_net_set(dev, net);
228
229 t = netdev_priv(dev);
230 t->parms = *p;
231 t->net = dev_net(dev);
232
233 err = vti6_tnl_create2(dev);
234 if (err < 0)
235 goto failed_free;
236
237 return t;
238
239failed_free:
240 vti6_dev_free(dev);
241failed:
242 return NULL;
243}
244
245/**
246 * vti6_locate - find or create tunnel matching given parameters
247 * @net: network namespace
248 * @p: tunnel parameters
249 * @create: != 0 if allowed to create new tunnel if no match found
250 *
251 * Description:
252 * vti6_locate() first tries to locate an existing tunnel
253 * based on @parms. If this is unsuccessful, but @create is set a new
254 * tunnel device is created and registered for use.
255 *
256 * Return:
257 * matching tunnel or NULL
258 **/
259static struct ip6_tnl *vti6_locate(struct net *net, struct __ip6_tnl_parm *p,
260 int create)
261{
262 const struct in6_addr *remote = &p->raddr;
263 const struct in6_addr *local = &p->laddr;
264 struct ip6_tnl __rcu **tp;
265 struct ip6_tnl *t;
266 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
267
268 for (tp = vti6_tnl_bucket(ip6n, p);
269 (t = rtnl_dereference(*tp)) != NULL;
270 tp = &t->next) {
271 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Steffen Klassertd814b842014-09-22 10:07:25 +0200272 ipv6_addr_equal(remote, &t->parms.raddr)) {
273 if (create)
274 return NULL;
275
Steffen Klasserted1efb22013-08-19 08:07:34 +0200276 return t;
Steffen Klassertd814b842014-09-22 10:07:25 +0200277 }
Steffen Klasserted1efb22013-08-19 08:07:34 +0200278 }
279 if (!create)
280 return NULL;
281 return vti6_tnl_create(net, p);
282}
283
284/**
285 * vti6_dev_uninit - tunnel device uninitializer
286 * @dev: the device to be destroyed
287 *
288 * Description:
289 * vti6_dev_uninit() removes tunnel from its list
290 **/
291static void vti6_dev_uninit(struct net_device *dev)
292{
293 struct ip6_tnl *t = netdev_priv(dev);
Yao Xiwei092a29a2015-04-02 17:31:17 +0200294 struct vti6_net *ip6n = net_generic(t->net, vti6_net_id);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200295
296 if (dev == ip6n->fb_tnl_dev)
297 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
298 else
299 vti6_tnl_unlink(ip6n, t);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200300 dev_put(dev);
301}
302
303static int vti6_rcv(struct sk_buff *skb)
304{
305 struct ip6_tnl *t;
306 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
307
308 rcu_read_lock();
Ian Morrise5d08d72014-11-23 21:28:43 +0000309 t = vti6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, &ipv6h->daddr);
Ian Morris53b24b82015-03-29 14:00:05 +0100310 if (t) {
Steffen Klasserted1efb22013-08-19 08:07:34 +0200311 if (t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) {
312 rcu_read_unlock();
313 goto discard;
314 }
315
316 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
317 rcu_read_unlock();
Torsten Hilbrich75815652020-03-11 11:19:06 +0100318 goto discard;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200319 }
320
Eric Dumazet818b3f72018-12-21 07:47:51 -0800321 ipv6h = ipv6_hdr(skb);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200322 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
323 t->dev->stats.rx_dropped++;
324 rcu_read_unlock();
325 goto discard;
326 }
327
Steffen Klasserted1efb22013-08-19 08:07:34 +0200328 rcu_read_unlock();
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100329
Nicolas Dichtel63c43782016-09-19 16:17:57 +0200330 return xfrm6_rcv_tnl(skb, t);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200331 }
332 rcu_read_unlock();
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100333 return -EINVAL;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200334discard:
335 kfree_skb(skb);
336 return 0;
337}
338
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100339static int vti6_rcv_cb(struct sk_buff *skb, int err)
340{
341 unsigned short family;
342 struct net_device *dev;
343 struct pcpu_sw_netstats *tstats;
344 struct xfrm_state *x;
thomas.zeitlhofer+lkml@ze-it.at1fb81e02016-09-07 20:40:38 +0200345 struct xfrm_mode *inner_mode;
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100346 struct ip6_tnl *t = XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6;
Alexander Duyckd55c6702015-05-27 07:16:54 -0700347 u32 orig_mark = skb->mark;
348 int ret;
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100349
350 if (!t)
351 return 1;
352
353 dev = t->dev;
354
355 if (err) {
356 dev->stats.rx_errors++;
357 dev->stats.rx_dropped++;
358
359 return 0;
360 }
361
362 x = xfrm_input_state(skb);
thomas.zeitlhofer+lkml@ze-it.at1fb81e02016-09-07 20:40:38 +0200363
364 inner_mode = x->inner_mode;
365
366 if (x->sel.family == AF_UNSPEC) {
367 inner_mode = xfrm_ip2inner_mode(x, XFRM_MODE_SKB_CB(skb)->protocol);
368 if (inner_mode == NULL) {
369 XFRM_INC_STATS(dev_net(skb->dev),
370 LINUX_MIB_XFRMINSTATEMODEERROR);
371 return -EINVAL;
372 }
373 }
374
375 family = inner_mode->afinfo->family;
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100376
Alexander Duyckd55c6702015-05-27 07:16:54 -0700377 skb->mark = be32_to_cpu(t->parms.i_key);
378 ret = xfrm_policy_check(NULL, XFRM_POLICY_IN, skb, family);
379 skb->mark = orig_mark;
380
381 if (!ret)
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100382 return -EPERM;
383
384 skb_scrub_packet(skb, !net_eq(t->net, dev_net(skb->dev)));
385 skb->dev = dev;
386
387 tstats = this_cpu_ptr(dev->tstats);
388 u64_stats_update_begin(&tstats->syncp);
389 tstats->rx_packets++;
390 tstats->rx_bytes += skb->len;
391 u64_stats_update_end(&tstats->syncp);
392
393 return 0;
394}
395
Steffen Klasserted1efb22013-08-19 08:07:34 +0200396/**
397 * vti6_addr_conflict - compare packet addresses to tunnel's own
398 * @t: the outgoing tunnel device
399 * @hdr: IPv6 header from the incoming packet
400 *
401 * Description:
402 * Avoid trivial tunneling loop by checking that tunnel exit-point
403 * doesn't match source of incoming packet.
404 *
405 * Return:
406 * 1 if conflict,
407 * 0 else
408 **/
409static inline bool
410vti6_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
411{
412 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
413}
414
Steffen Klassert26be8e22014-03-14 07:28:09 +0100415static bool vti6_state_check(const struct xfrm_state *x,
416 const struct in6_addr *dst,
417 const struct in6_addr *src)
418{
419 xfrm_address_t *daddr = (xfrm_address_t *)dst;
420 xfrm_address_t *saddr = (xfrm_address_t *)src;
421
422 /* if there is no transform then this tunnel is not functional.
423 * Or if the xfrm is not mode tunnel.
424 */
425 if (!x || x->props.mode != XFRM_MODE_TUNNEL ||
426 x->props.family != AF_INET6)
427 return false;
428
429 if (ipv6_addr_any(dst))
430 return xfrm_addr_equal(saddr, &x->props.saddr, AF_INET6);
431
432 if (!xfrm_state_addr_check(x, daddr, saddr, AF_INET6))
433 return false;
434
435 return true;
436}
437
Steffen Klasserted1efb22013-08-19 08:07:34 +0200438/**
439 * vti6_xmit - send a packet
440 * @skb: the outgoing socket buffer
441 * @dev: the outgoing tunnel device
Steffen Klassert22e1b232014-03-14 07:28:08 +0100442 * @fl: the flow informations for the xfrm_lookup
Steffen Klasserted1efb22013-08-19 08:07:34 +0200443 **/
Steffen Klassert22e1b232014-03-14 07:28:08 +0100444static int
445vti6_xmit(struct sk_buff *skb, struct net_device *dev, struct flowi *fl)
Steffen Klasserted1efb22013-08-19 08:07:34 +0200446{
Steffen Klasserted1efb22013-08-19 08:07:34 +0200447 struct ip6_tnl *t = netdev_priv(dev);
448 struct net_device_stats *stats = &t->dev->stats;
Steffen Klassert7c852582014-03-14 07:28:08 +0100449 struct dst_entry *dst = skb_dst(skb);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200450 struct net_device *tdev;
Steffen Klassertd5005142014-11-05 08:02:48 +0100451 struct xfrm_state *x;
Alexey Kodanev6689f832017-09-26 15:14:29 +0300452 int pkt_len = skb->len;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200453 int err = -1;
Steffen Klassertccd740c2015-05-29 11:28:26 -0700454 int mtu;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200455
Nicolas Dichtelbe914e02020-01-13 09:32:46 +0100456 if (!dst) {
Nicolas Dichtel0807f592020-02-04 17:00:27 +0100457 switch (skb->protocol) {
458 case htons(ETH_P_IP): {
459 struct rtable *rt;
460
461 fl->u.ip4.flowi4_oif = dev->ifindex;
462 fl->u.ip4.flowi4_flags |= FLOWI_FLAG_ANYSRC;
463 rt = __ip_route_output_key(dev_net(dev), &fl->u.ip4);
464 if (IS_ERR(rt))
465 goto tx_err_link_failure;
466 dst = &rt->dst;
467 skb_dst_set(skb, dst);
468 break;
469 }
470 case htons(ETH_P_IPV6):
471 fl->u.ip6.flowi6_oif = dev->ifindex;
472 fl->u.ip6.flowi6_flags |= FLOWI_FLAG_ANYSRC;
473 dst = ip6_route_output(dev_net(dev), NULL, &fl->u.ip6);
474 if (dst->error) {
475 dst_release(dst);
476 dst = NULL;
477 goto tx_err_link_failure;
478 }
479 skb_dst_set(skb, dst);
480 break;
481 default:
Nicolas Dichtelbe914e02020-01-13 09:32:46 +0100482 goto tx_err_link_failure;
483 }
Nicolas Dichtelbe914e02020-01-13 09:32:46 +0100484 }
Steffen Klasserted1efb22013-08-19 08:07:34 +0200485
Steffen Klassert7c852582014-03-14 07:28:08 +0100486 dst_hold(dst);
Steffen Klassert22e1b232014-03-14 07:28:08 +0100487 dst = xfrm_lookup(t->net, dst, fl, NULL, 0);
Steffen Klassert7c852582014-03-14 07:28:08 +0100488 if (IS_ERR(dst)) {
489 err = PTR_ERR(dst);
490 dst = NULL;
491 goto tx_err_link_failure;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200492 }
493
Steffen Klassertd5005142014-11-05 08:02:48 +0100494 x = dst->xfrm;
495 if (!vti6_state_check(x, &t->parms.raddr, &t->parms.laddr))
496 goto tx_err_link_failure;
497
498 if (!ip6_tnl_xmit_ctl(t, (const struct in6_addr *)&x->props.saddr,
499 (const struct in6_addr *)&x->id.daddr))
Steffen Klasserted1efb22013-08-19 08:07:34 +0200500 goto tx_err_link_failure;
501
502 tdev = dst->dev;
503
504 if (tdev == dev) {
505 stats->collisions++;
506 net_warn_ratelimited("%s: Local routing loop detected!\n",
507 t->parms.name);
508 goto tx_err_dst_release;
509 }
510
Steffen Klassertccd740c2015-05-29 11:28:26 -0700511 mtu = dst_mtu(dst);
Alexey Kodanevd669bd62018-08-23 19:49:54 +0300512 if (skb->len > mtu) {
Steffen Klassertccd740c2015-05-29 11:28:26 -0700513 skb_dst(skb)->ops->update_pmtu(dst, NULL, skb, mtu);
514
Steffen Klassertf14f6fa2017-02-15 11:38:58 +0100515 if (skb->protocol == htons(ETH_P_IPV6)) {
516 if (mtu < IPV6_MIN_MTU)
517 mtu = IPV6_MIN_MTU;
518
Steffen Klassertccd740c2015-05-29 11:28:26 -0700519 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Steffen Klassertf14f6fa2017-02-15 11:38:58 +0100520 } else {
Steffen Klassertccd740c2015-05-29 11:28:26 -0700521 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
522 htonl(mtu));
Steffen Klassertf14f6fa2017-02-15 11:38:58 +0100523 }
Steffen Klassertccd740c2015-05-29 11:28:26 -0700524
Eyal Birgerce723f82018-06-07 10:11:02 +0300525 err = -EMSGSIZE;
526 goto tx_err_dst_release;
Steffen Klassertccd740c2015-05-29 11:28:26 -0700527 }
528
Eyal Birgerce723f82018-06-07 10:11:02 +0300529 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
530 skb_dst_set(skb, dst);
531 skb->dev = skb_dst(skb)->dev;
532
Eric W. Biederman13206b62015-10-07 16:48:35 -0500533 err = dst_output(t->net, skb->sk, skb);
Steffen Klassert22e1b232014-03-14 07:28:08 +0100534 if (net_xmit_eval(err) == 0) {
535 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
536
537 u64_stats_update_begin(&tstats->syncp);
Alexey Kodanev6689f832017-09-26 15:14:29 +0300538 tstats->tx_bytes += pkt_len;
Steffen Klassert22e1b232014-03-14 07:28:08 +0100539 tstats->tx_packets++;
540 u64_stats_update_end(&tstats->syncp);
541 } else {
542 stats->tx_errors++;
543 stats->tx_aborted_errors++;
544 }
Steffen Klasserted1efb22013-08-19 08:07:34 +0200545
546 return 0;
547tx_err_link_failure:
548 stats->tx_carrier_errors++;
549 dst_link_failure(skb);
550tx_err_dst_release:
Steffen Klassert7c852582014-03-14 07:28:08 +0100551 dst_release(dst);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200552 return err;
553}
554
555static netdev_tx_t
556vti6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
557{
558 struct ip6_tnl *t = netdev_priv(dev);
559 struct net_device_stats *stats = &t->dev->stats;
Steffen Klassert22e1b232014-03-14 07:28:08 +0100560 struct ipv6hdr *ipv6h;
561 struct flowi fl;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200562 int ret;
563
Steffen Klassert22e1b232014-03-14 07:28:08 +0100564 memset(&fl, 0, sizeof(fl));
Steffen Klassert22e1b232014-03-14 07:28:08 +0100565
Steffen Klasserted1efb22013-08-19 08:07:34 +0200566 switch (skb->protocol) {
567 case htons(ETH_P_IPV6):
Steffen Klassert22e1b232014-03-14 07:28:08 +0100568 ipv6h = ipv6_hdr(skb);
569
570 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
Steffen Klassertd5005142014-11-05 08:02:48 +0100571 vti6_addr_conflict(t, ipv6h))
Steffen Klassert22e1b232014-03-14 07:28:08 +0100572 goto tx_err;
573
574 xfrm_decode_session(skb, &fl, AF_INET6);
575 memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
576 break;
577 case htons(ETH_P_IP):
578 xfrm_decode_session(skb, &fl, AF_INET);
579 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
Steffen Klasserted1efb22013-08-19 08:07:34 +0200580 break;
581 default:
582 goto tx_err;
583 }
584
Alexander Duyckcd5279c2015-05-27 07:16:43 -0700585 /* override mark with tunnel output key */
586 fl.flowi_mark = be32_to_cpu(t->parms.o_key);
587
Steffen Klassert22e1b232014-03-14 07:28:08 +0100588 ret = vti6_xmit(skb, dev, &fl);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200589 if (ret < 0)
590 goto tx_err;
591
592 return NETDEV_TX_OK;
593
594tx_err:
595 stats->tx_errors++;
596 stats->tx_dropped++;
597 kfree_skb(skb);
598 return NETDEV_TX_OK;
599}
600
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100601static int vti6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
602 u8 type, u8 code, int offset, __be32 info)
603{
604 __be32 spi;
Steffen Klassert6d004d62014-05-12 09:09:26 +0200605 __u32 mark;
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100606 struct xfrm_state *x;
607 struct ip6_tnl *t;
608 struct ip_esp_hdr *esph;
609 struct ip_auth_hdr *ah;
610 struct ip_comp_hdr *ipch;
611 struct net *net = dev_net(skb->dev);
612 const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
613 int protocol = iph->nexthdr;
614
615 t = vti6_tnl_lookup(dev_net(skb->dev), &iph->daddr, &iph->saddr);
616 if (!t)
617 return -1;
618
Steffen Klassert6d004d62014-05-12 09:09:26 +0200619 mark = be32_to_cpu(t->parms.o_key);
620
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100621 switch (protocol) {
622 case IPPROTO_ESP:
623 esph = (struct ip_esp_hdr *)(skb->data + offset);
624 spi = esph->spi;
625 break;
626 case IPPROTO_AH:
627 ah = (struct ip_auth_hdr *)(skb->data + offset);
628 spi = ah->spi;
629 break;
630 case IPPROTO_COMP:
631 ipch = (struct ip_comp_hdr *)(skb->data + offset);
632 spi = htonl(ntohs(ipch->cpi));
633 break;
634 default:
635 return 0;
636 }
637
638 if (type != ICMPV6_PKT_TOOBIG &&
639 type != NDISC_REDIRECT)
640 return 0;
641
Steffen Klassert6d004d62014-05-12 09:09:26 +0200642 x = xfrm_state_lookup(net, mark, (const xfrm_address_t *)&iph->daddr,
Steffen Klassertfa9ad962014-03-14 07:28:08 +0100643 spi, protocol, AF_INET6);
644 if (!x)
645 return 0;
646
647 if (type == NDISC_REDIRECT)
648 ip6_redirect(skb, net, skb->dev->ifindex, 0);
649 else
650 ip6_update_pmtu(skb, net, info, 0, 0);
651 xfrm_state_put(x);
652
653 return 0;
654}
655
Steffen Klasserted1efb22013-08-19 08:07:34 +0200656static void vti6_link_config(struct ip6_tnl *t)
657{
Steffen Klasserted1efb22013-08-19 08:07:34 +0200658 struct net_device *dev = t->dev;
659 struct __ip6_tnl_parm *p = &t->parms;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200660
661 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
662 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
663
Steffen Klasserted1efb22013-08-19 08:07:34 +0200664 p->flags &= ~(IP6_TNL_F_CAP_XMIT | IP6_TNL_F_CAP_RCV |
665 IP6_TNL_F_CAP_PER_PACKET);
666 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
667
668 if (p->flags & IP6_TNL_F_CAP_XMIT && p->flags & IP6_TNL_F_CAP_RCV)
669 dev->flags |= IFF_POINTOPOINT;
670 else
671 dev->flags &= ~IFF_POINTOPOINT;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200672}
673
674/**
675 * vti6_tnl_change - update the tunnel parameters
676 * @t: tunnel to be changed
677 * @p: tunnel configuration parameters
678 *
679 * Description:
680 * vti6_tnl_change() updates the tunnel parameters
681 **/
682static int
683vti6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
684{
685 t->parms.laddr = p->laddr;
686 t->parms.raddr = p->raddr;
687 t->parms.link = p->link;
688 t->parms.i_key = p->i_key;
689 t->parms.o_key = p->o_key;
690 t->parms.proto = p->proto;
Paolo Abeni607f7252016-02-12 15:43:54 +0100691 dst_cache_reset(&t->dst_cache);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200692 vti6_link_config(t);
693 return 0;
694}
695
696static int vti6_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
697{
698 struct net *net = dev_net(t->dev);
699 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
700 int err;
701
702 vti6_tnl_unlink(ip6n, t);
703 synchronize_net();
704 err = vti6_tnl_change(t, p);
705 vti6_tnl_link(ip6n, t);
706 netdev_state_change(t->dev);
707 return err;
708}
709
710static void
711vti6_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm2 *u)
712{
713 p->laddr = u->laddr;
714 p->raddr = u->raddr;
715 p->link = u->link;
716 p->i_key = u->i_key;
717 p->o_key = u->o_key;
718 p->proto = u->proto;
719
720 memcpy(p->name, u->name, sizeof(u->name));
721}
722
723static void
724vti6_parm_to_user(struct ip6_tnl_parm2 *u, const struct __ip6_tnl_parm *p)
725{
726 u->laddr = p->laddr;
727 u->raddr = p->raddr;
728 u->link = p->link;
729 u->i_key = p->i_key;
730 u->o_key = p->o_key;
David Forsterf7081052017-02-24 14:20:32 +0000731 if (u->i_key)
732 u->i_flags |= GRE_KEY;
733 if (u->o_key)
734 u->o_flags |= GRE_KEY;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200735 u->proto = p->proto;
736
737 memcpy(u->name, p->name, sizeof(u->name));
738}
739
740/**
741 * vti6_tnl_ioctl - configure vti6 tunnels from userspace
742 * @dev: virtual device associated with tunnel
743 * @ifr: parameters passed from userspace
744 * @cmd: command to be performed
745 *
746 * Description:
747 * vti6_ioctl() is used for managing vti6 tunnels
748 * from userspace.
749 *
750 * The possible commands are the following:
751 * %SIOCGETTUNNEL: get tunnel parameters for device
752 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
753 * %SIOCCHGTUNNEL: change tunnel parameters to those given
754 * %SIOCDELTUNNEL: delete tunnel
755 *
756 * The fallback device "ip6_vti0", created during module
757 * initialization, can be used for creating other tunnel devices.
758 *
759 * Return:
760 * 0 on success,
761 * %-EFAULT if unable to copy data to or from userspace,
762 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
763 * %-EINVAL if passed tunnel parameters are invalid,
764 * %-EEXIST if changing a tunnel's parameters would cause a conflict
765 * %-ENODEV if attempting to change or delete a nonexisting device
766 **/
767static int
768vti6_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
769{
770 int err = 0;
771 struct ip6_tnl_parm2 p;
772 struct __ip6_tnl_parm p1;
773 struct ip6_tnl *t = NULL;
774 struct net *net = dev_net(dev);
775 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
776
777 switch (cmd) {
778 case SIOCGETTUNNEL:
779 if (dev == ip6n->fb_tnl_dev) {
780 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
781 err = -EFAULT;
782 break;
783 }
784 vti6_parm_from_user(&p1, &p);
785 t = vti6_locate(net, &p1, 0);
786 } else {
787 memset(&p, 0, sizeof(p));
788 }
Ian Morris63159f22015-03-29 14:00:04 +0100789 if (!t)
Steffen Klasserted1efb22013-08-19 08:07:34 +0200790 t = netdev_priv(dev);
791 vti6_parm_to_user(&p, &t->parms);
792 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
793 err = -EFAULT;
794 break;
795 case SIOCADDTUNNEL:
796 case SIOCCHGTUNNEL:
797 err = -EPERM;
798 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
799 break;
800 err = -EFAULT;
801 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
802 break;
803 err = -EINVAL;
804 if (p.proto != IPPROTO_IPV6 && p.proto != 0)
805 break;
806 vti6_parm_from_user(&p1, &p);
807 t = vti6_locate(net, &p1, cmd == SIOCADDTUNNEL);
808 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ian Morris53b24b82015-03-29 14:00:05 +0100809 if (t) {
Steffen Klasserted1efb22013-08-19 08:07:34 +0200810 if (t->dev != dev) {
811 err = -EEXIST;
812 break;
813 }
814 } else
815 t = netdev_priv(dev);
816
817 err = vti6_update(t, &p1);
818 }
819 if (t) {
820 err = 0;
821 vti6_parm_to_user(&p, &t->parms);
822 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
823 err = -EFAULT;
824
825 } else
826 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
827 break;
828 case SIOCDELTUNNEL:
829 err = -EPERM;
830 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
831 break;
832
833 if (dev == ip6n->fb_tnl_dev) {
834 err = -EFAULT;
835 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
836 break;
837 err = -ENOENT;
838 vti6_parm_from_user(&p1, &p);
839 t = vti6_locate(net, &p1, 0);
Ian Morris63159f22015-03-29 14:00:04 +0100840 if (!t)
Steffen Klasserted1efb22013-08-19 08:07:34 +0200841 break;
842 err = -EPERM;
843 if (t->dev == ip6n->fb_tnl_dev)
844 break;
845 dev = t->dev;
846 }
847 err = 0;
848 unregister_netdevice(dev);
849 break;
850 default:
851 err = -EINVAL;
852 }
853 return err;
854}
855
856/**
857 * vti6_tnl_change_mtu - change mtu manually for tunnel device
858 * @dev: virtual device associated with tunnel
859 * @new_mtu: the new mtu
860 *
861 * Return:
862 * 0 on success,
863 * %-EINVAL if mtu too small
864 **/
865static int vti6_change_mtu(struct net_device *dev, int new_mtu)
866{
867 if (new_mtu < IPV6_MIN_MTU)
868 return -EINVAL;
869
870 dev->mtu = new_mtu;
871 return 0;
872}
873
874static const struct net_device_ops vti6_netdev_ops = {
Steffen Klassert16a02312014-11-03 09:19:28 +0100875 .ndo_init = vti6_dev_init,
Steffen Klasserted1efb22013-08-19 08:07:34 +0200876 .ndo_uninit = vti6_dev_uninit,
877 .ndo_start_xmit = vti6_tnl_xmit,
878 .ndo_do_ioctl = vti6_ioctl,
879 .ndo_change_mtu = vti6_change_mtu,
Li RongQing469bdce2014-01-02 14:24:36 +0800880 .ndo_get_stats64 = ip_tunnel_get_stats64,
Nicolas Dichtelecf2c062015-04-02 17:07:01 +0200881 .ndo_get_iflink = ip6_tnl_get_iflink,
Steffen Klasserted1efb22013-08-19 08:07:34 +0200882};
883
884/**
885 * vti6_dev_setup - setup virtual tunnel device
886 * @dev: virtual device associated with tunnel
887 *
888 * Description:
889 * Initialize function pointers and device parameters
890 **/
891static void vti6_dev_setup(struct net_device *dev)
892{
Steffen Klasserted1efb22013-08-19 08:07:34 +0200893 dev->netdev_ops = &vti6_netdev_ops;
894 dev->destructor = vti6_dev_free;
895
896 dev->type = ARPHRD_TUNNEL6;
897 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr);
898 dev->mtu = ETH_DATA_LEN;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200899 dev->flags |= IFF_NOARP;
900 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -0700901 netif_keep_dst(dev);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200902}
903
904/**
905 * vti6_dev_init_gen - general initializer for all tunnel devices
906 * @dev: virtual device associated with tunnel
907 **/
908static inline int vti6_dev_init_gen(struct net_device *dev)
909{
910 struct ip6_tnl *t = netdev_priv(dev);
911
912 t->dev = dev;
913 t->net = dev_net(dev);
WANG Cong1c213bd2014-02-13 11:46:28 -0800914 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200915 if (!dev->tstats)
916 return -ENOMEM;
Steffen Klasserted1efb22013-08-19 08:07:34 +0200917 return 0;
918}
919
920/**
921 * vti6_dev_init - initializer for all non fallback tunnel devices
922 * @dev: virtual device associated with tunnel
923 **/
924static int vti6_dev_init(struct net_device *dev)
925{
926 struct ip6_tnl *t = netdev_priv(dev);
927 int err = vti6_dev_init_gen(dev);
928
929 if (err)
930 return err;
931 vti6_link_config(t);
932 return 0;
933}
934
935/**
936 * vti6_fb_tnl_dev_init - initializer for fallback tunnel device
937 * @dev: fallback device
938 *
939 * Return: 0
940 **/
941static int __net_init vti6_fb_tnl_dev_init(struct net_device *dev)
942{
943 struct ip6_tnl *t = netdev_priv(dev);
944 struct net *net = dev_net(dev);
945 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200946
947 t->parms.proto = IPPROTO_IPV6;
948 dev_hold(dev);
949
Steffen Klasserted1efb22013-08-19 08:07:34 +0200950 rcu_assign_pointer(ip6n->tnls_wc[0], t);
951 return 0;
952}
953
954static int vti6_validate(struct nlattr *tb[], struct nlattr *data[])
955{
956 return 0;
957}
958
959static void vti6_netlink_parms(struct nlattr *data[],
960 struct __ip6_tnl_parm *parms)
961{
962 memset(parms, 0, sizeof(*parms));
963
964 if (!data)
965 return;
966
967 if (data[IFLA_VTI_LINK])
968 parms->link = nla_get_u32(data[IFLA_VTI_LINK]);
969
970 if (data[IFLA_VTI_LOCAL])
Jiri Benc67b61f62015-03-29 16:59:26 +0200971 parms->laddr = nla_get_in6_addr(data[IFLA_VTI_LOCAL]);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200972
973 if (data[IFLA_VTI_REMOTE])
Jiri Benc67b61f62015-03-29 16:59:26 +0200974 parms->raddr = nla_get_in6_addr(data[IFLA_VTI_REMOTE]);
Steffen Klasserted1efb22013-08-19 08:07:34 +0200975
976 if (data[IFLA_VTI_IKEY])
977 parms->i_key = nla_get_be32(data[IFLA_VTI_IKEY]);
978
979 if (data[IFLA_VTI_OKEY])
980 parms->o_key = nla_get_be32(data[IFLA_VTI_OKEY]);
981}
982
983static int vti6_newlink(struct net *src_net, struct net_device *dev,
984 struct nlattr *tb[], struct nlattr *data[])
985{
986 struct net *net = dev_net(dev);
987 struct ip6_tnl *nt;
988
989 nt = netdev_priv(dev);
990 vti6_netlink_parms(data, &nt->parms);
991
992 nt->parms.proto = IPPROTO_IPV6;
993
994 if (vti6_locate(net, &nt->parms, 0))
995 return -EEXIST;
996
997 return vti6_tnl_create2(dev);
998}
999
lucien20ea60c2014-11-23 15:04:11 +08001000static void vti6_dellink(struct net_device *dev, struct list_head *head)
1001{
1002 struct net *net = dev_net(dev);
1003 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1004
1005 if (dev != ip6n->fb_tnl_dev)
1006 unregister_netdevice_queue(dev, head);
1007}
1008
Steffen Klasserted1efb22013-08-19 08:07:34 +02001009static int vti6_changelink(struct net_device *dev, struct nlattr *tb[],
1010 struct nlattr *data[])
1011{
1012 struct ip6_tnl *t;
1013 struct __ip6_tnl_parm p;
1014 struct net *net = dev_net(dev);
1015 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1016
1017 if (dev == ip6n->fb_tnl_dev)
1018 return -EINVAL;
1019
1020 vti6_netlink_parms(data, &p);
1021
1022 t = vti6_locate(net, &p, 0);
1023
1024 if (t) {
1025 if (t->dev != dev)
1026 return -EEXIST;
1027 } else
1028 t = netdev_priv(dev);
1029
1030 return vti6_update(t, &p);
1031}
1032
1033static size_t vti6_get_size(const struct net_device *dev)
1034{
1035 return
1036 /* IFLA_VTI_LINK */
1037 nla_total_size(4) +
1038 /* IFLA_VTI_LOCAL */
1039 nla_total_size(sizeof(struct in6_addr)) +
1040 /* IFLA_VTI_REMOTE */
1041 nla_total_size(sizeof(struct in6_addr)) +
1042 /* IFLA_VTI_IKEY */
1043 nla_total_size(4) +
1044 /* IFLA_VTI_OKEY */
1045 nla_total_size(4) +
1046 0;
1047}
1048
1049static int vti6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1050{
1051 struct ip6_tnl *tunnel = netdev_priv(dev);
1052 struct __ip6_tnl_parm *parm = &tunnel->parms;
1053
1054 if (nla_put_u32(skb, IFLA_VTI_LINK, parm->link) ||
Jiri Benc930345e2015-03-29 16:59:25 +02001055 nla_put_in6_addr(skb, IFLA_VTI_LOCAL, &parm->laddr) ||
1056 nla_put_in6_addr(skb, IFLA_VTI_REMOTE, &parm->raddr) ||
Steffen Klasserted1efb22013-08-19 08:07:34 +02001057 nla_put_be32(skb, IFLA_VTI_IKEY, parm->i_key) ||
1058 nla_put_be32(skb, IFLA_VTI_OKEY, parm->o_key))
1059 goto nla_put_failure;
1060 return 0;
1061
1062nla_put_failure:
1063 return -EMSGSIZE;
1064}
1065
1066static const struct nla_policy vti6_policy[IFLA_VTI_MAX + 1] = {
1067 [IFLA_VTI_LINK] = { .type = NLA_U32 },
1068 [IFLA_VTI_LOCAL] = { .len = sizeof(struct in6_addr) },
1069 [IFLA_VTI_REMOTE] = { .len = sizeof(struct in6_addr) },
1070 [IFLA_VTI_IKEY] = { .type = NLA_U32 },
1071 [IFLA_VTI_OKEY] = { .type = NLA_U32 },
1072};
1073
1074static struct rtnl_link_ops vti6_link_ops __read_mostly = {
1075 .kind = "vti6",
1076 .maxtype = IFLA_VTI_MAX,
1077 .policy = vti6_policy,
1078 .priv_size = sizeof(struct ip6_tnl),
1079 .setup = vti6_dev_setup,
1080 .validate = vti6_validate,
1081 .newlink = vti6_newlink,
lucien20ea60c2014-11-23 15:04:11 +08001082 .dellink = vti6_dellink,
Steffen Klasserted1efb22013-08-19 08:07:34 +02001083 .changelink = vti6_changelink,
1084 .get_size = vti6_get_size,
1085 .fill_info = vti6_fill_info,
Nicolas Dichtel1728d4f2015-01-15 15:11:17 +01001086 .get_link_net = ip6_tnl_get_link_net,
Steffen Klasserted1efb22013-08-19 08:07:34 +02001087};
1088
Steffen Klasserted1efb22013-08-19 08:07:34 +02001089static void __net_exit vti6_destroy_tunnels(struct vti6_net *ip6n)
1090{
1091 int h;
1092 struct ip6_tnl *t;
1093 LIST_HEAD(list);
1094
Jiri Kosinae87a8f22016-08-10 11:03:35 +02001095 for (h = 0; h < IP6_VTI_HASH_SIZE; h++) {
Steffen Klasserted1efb22013-08-19 08:07:34 +02001096 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Ian Morris53b24b82015-03-29 14:00:05 +01001097 while (t) {
Steffen Klasserted1efb22013-08-19 08:07:34 +02001098 unregister_netdevice_queue(t->dev, &list);
1099 t = rtnl_dereference(t->next);
1100 }
1101 }
1102
1103 t = rtnl_dereference(ip6n->tnls_wc[0]);
1104 unregister_netdevice_queue(t->dev, &list);
1105 unregister_netdevice_many(&list);
1106}
1107
1108static int __net_init vti6_init_net(struct net *net)
1109{
1110 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1111 struct ip6_tnl *t = NULL;
1112 int err;
1113
1114 ip6n->tnls[0] = ip6n->tnls_wc;
1115 ip6n->tnls[1] = ip6n->tnls_r_l;
1116
1117 err = -ENOMEM;
1118 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6_vti0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001119 NET_NAME_UNKNOWN, vti6_dev_setup);
Steffen Klasserted1efb22013-08-19 08:07:34 +02001120
1121 if (!ip6n->fb_tnl_dev)
1122 goto err_alloc_dev;
1123 dev_net_set(ip6n->fb_tnl_dev, net);
lucien20ea60c2014-11-23 15:04:11 +08001124 ip6n->fb_tnl_dev->rtnl_link_ops = &vti6_link_ops;
Steffen Klasserted1efb22013-08-19 08:07:34 +02001125
1126 err = vti6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1127 if (err < 0)
1128 goto err_register;
1129
1130 err = register_netdev(ip6n->fb_tnl_dev);
1131 if (err < 0)
1132 goto err_register;
1133
1134 t = netdev_priv(ip6n->fb_tnl_dev);
1135
1136 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
1137 return 0;
1138
1139err_register:
1140 vti6_dev_free(ip6n->fb_tnl_dev);
1141err_alloc_dev:
1142 return err;
1143}
1144
1145static void __net_exit vti6_exit_net(struct net *net)
1146{
1147 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1148
1149 rtnl_lock();
1150 vti6_destroy_tunnels(ip6n);
1151 rtnl_unlock();
1152}
1153
1154static struct pernet_operations vti6_net_ops = {
1155 .init = vti6_init_net,
1156 .exit = vti6_exit_net,
1157 .id = &vti6_net_id,
1158 .size = sizeof(struct vti6_net),
1159};
1160
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001161static struct xfrm6_protocol vti_esp6_protocol __read_mostly = {
1162 .handler = vti6_rcv,
1163 .cb_handler = vti6_rcv_cb,
1164 .err_handler = vti6_err,
1165 .priority = 100,
1166};
1167
1168static struct xfrm6_protocol vti_ah6_protocol __read_mostly = {
1169 .handler = vti6_rcv,
1170 .cb_handler = vti6_rcv_cb,
1171 .err_handler = vti6_err,
1172 .priority = 100,
1173};
1174
1175static struct xfrm6_protocol vti_ipcomp6_protocol __read_mostly = {
1176 .handler = vti6_rcv,
1177 .cb_handler = vti6_rcv_cb,
1178 .err_handler = vti6_err,
1179 .priority = 100,
1180};
1181
Nicolas Dichtel7f920832016-09-30 11:11:07 +02001182static bool is_vti6_tunnel(const struct net_device *dev)
1183{
1184 return dev->netdev_ops == &vti6_netdev_ops;
1185}
1186
1187static int vti6_device_event(struct notifier_block *unused,
1188 unsigned long event, void *ptr)
1189{
1190 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1191 struct ip6_tnl *t = netdev_priv(dev);
1192
1193 if (!is_vti6_tunnel(dev))
1194 return NOTIFY_DONE;
1195
1196 switch (event) {
1197 case NETDEV_DOWN:
1198 if (!net_eq(t->net, dev_net(dev)))
1199 xfrm_garbage_collect(t->net);
1200 break;
1201 }
1202 return NOTIFY_DONE;
1203}
1204
1205static struct notifier_block vti6_notifier_block __read_mostly = {
1206 .notifier_call = vti6_device_event,
1207};
1208
Steffen Klasserted1efb22013-08-19 08:07:34 +02001209/**
1210 * vti6_tunnel_init - register protocol and reserve needed resources
1211 *
1212 * Return: 0 on success
1213 **/
1214static int __init vti6_tunnel_init(void)
1215{
Mathias Krausee59d82f2014-05-09 23:43:41 +02001216 const char *msg;
1217 int err;
Steffen Klasserted1efb22013-08-19 08:07:34 +02001218
Nicolas Dichtel7f920832016-09-30 11:11:07 +02001219 register_netdevice_notifier(&vti6_notifier_block);
1220
Mathias Krausee59d82f2014-05-09 23:43:41 +02001221 msg = "tunnel device";
Steffen Klasserted1efb22013-08-19 08:07:34 +02001222 err = register_pernet_device(&vti6_net_ops);
1223 if (err < 0)
Mathias Krausee59d82f2014-05-09 23:43:41 +02001224 goto pernet_dev_failed;
Steffen Klasserted1efb22013-08-19 08:07:34 +02001225
Mathias Krausee59d82f2014-05-09 23:43:41 +02001226 msg = "tunnel protocols";
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001227 err = xfrm6_protocol_register(&vti_esp6_protocol, IPPROTO_ESP);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001228 if (err < 0)
1229 goto xfrm_proto_esp_failed;
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001230 err = xfrm6_protocol_register(&vti_ah6_protocol, IPPROTO_AH);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001231 if (err < 0)
1232 goto xfrm_proto_ah_failed;
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001233 err = xfrm6_protocol_register(&vti_ipcomp6_protocol, IPPROTO_COMP);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001234 if (err < 0)
1235 goto xfrm_proto_comp_failed;
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001236
Mathias Krausee59d82f2014-05-09 23:43:41 +02001237 msg = "netlink interface";
Steffen Klasserted1efb22013-08-19 08:07:34 +02001238 err = rtnl_link_register(&vti6_link_ops);
1239 if (err < 0)
1240 goto rtnl_link_failed;
1241
1242 return 0;
1243
1244rtnl_link_failed:
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001245 xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001246xfrm_proto_comp_failed:
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001247 xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001248xfrm_proto_ah_failed:
Steffen Klassertfa9ad962014-03-14 07:28:08 +01001249 xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001250xfrm_proto_esp_failed:
Steffen Klasserted1efb22013-08-19 08:07:34 +02001251 unregister_pernet_device(&vti6_net_ops);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001252pernet_dev_failed:
Nicolas Dichtel7f920832016-09-30 11:11:07 +02001253 unregister_netdevice_notifier(&vti6_notifier_block);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001254 pr_err("vti6 init: failed to register %s\n", msg);
Steffen Klasserted1efb22013-08-19 08:07:34 +02001255 return err;
1256}
1257
1258/**
1259 * vti6_tunnel_cleanup - free resources and unregister protocol
1260 **/
1261static void __exit vti6_tunnel_cleanup(void)
1262{
1263 rtnl_link_unregister(&vti6_link_ops);
Mathias Krausee59d82f2014-05-09 23:43:41 +02001264 xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
1265 xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
1266 xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
Steffen Klasserted1efb22013-08-19 08:07:34 +02001267 unregister_pernet_device(&vti6_net_ops);
Nicolas Dichtel7f920832016-09-30 11:11:07 +02001268 unregister_netdevice_notifier(&vti6_notifier_block);
Steffen Klasserted1efb22013-08-19 08:07:34 +02001269}
1270
1271module_init(vti6_tunnel_init);
1272module_exit(vti6_tunnel_cleanup);
1273MODULE_LICENSE("GPL");
1274MODULE_ALIAS_RTNL_LINK("vti6");
1275MODULE_ALIAS_NETDEV("ip6_vti0");
1276MODULE_AUTHOR("Steffen Klassert");
1277MODULE_DESCRIPTION("IPv6 virtual tunnel interface");