blob: d82280b3667d349ef220d0e47637792cc74967b2 [file] [log] [blame]
Kyle Swenson8d8f6542021-03-15 11:02:55 -06001/*
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>
27#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
53#define HASH_SIZE_SHIFT 5
54#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
55
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
60 return hash_32(hash, HASH_SIZE_SHIFT);
61}
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 */
72 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
73 struct ip6_tnl __rcu *tnls_wc[1];
74 struct ip6_tnl __rcu **tnls[2];
75};
76
77#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);
98 struct in6_addr any;
99
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 }
106
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
122 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
192 err = register_netdevice(dev);
193 if (err < 0)
194 goto out;
195
196 strcpy(t->parms.name, dev->name);
197 dev->rtnl_link_ops = &vti6_link_ops;
198
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
215 if (p->name[0])
216 strlcpy(name, p->name, IFNAMSIZ);
217 else
218 sprintf(name, "ip6_vti%%d");
219
220 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN, vti6_dev_setup);
221 if (!dev)
222 goto failed;
223
224 dev_net_set(dev, net);
225
226 t = netdev_priv(dev);
227 t->parms = *p;
228 t->net = dev_net(dev);
229
230 err = vti6_tnl_create2(dev);
231 if (err < 0)
232 goto failed_free;
233
234 return t;
235
236failed_free:
237 vti6_dev_free(dev);
238failed:
239 return NULL;
240}
241
242/**
243 * vti6_locate - find or create tunnel matching given parameters
244 * @net: network namespace
245 * @p: tunnel parameters
246 * @create: != 0 if allowed to create new tunnel if no match found
247 *
248 * Description:
249 * vti6_locate() first tries to locate an existing tunnel
250 * based on @parms. If this is unsuccessful, but @create is set a new
251 * tunnel device is created and registered for use.
252 *
253 * Return:
254 * matching tunnel or NULL
255 **/
256static struct ip6_tnl *vti6_locate(struct net *net, struct __ip6_tnl_parm *p,
257 int create)
258{
259 const struct in6_addr *remote = &p->raddr;
260 const struct in6_addr *local = &p->laddr;
261 struct ip6_tnl __rcu **tp;
262 struct ip6_tnl *t;
263 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
264
265 for (tp = vti6_tnl_bucket(ip6n, p);
266 (t = rtnl_dereference(*tp)) != NULL;
267 tp = &t->next) {
268 if (ipv6_addr_equal(local, &t->parms.laddr) &&
269 ipv6_addr_equal(remote, &t->parms.raddr)) {
270 if (create)
271 return NULL;
272
273 return t;
274 }
275 }
276 if (!create)
277 return NULL;
278 return vti6_tnl_create(net, p);
279}
280
281/**
282 * vti6_dev_uninit - tunnel device uninitializer
283 * @dev: the device to be destroyed
284 *
285 * Description:
286 * vti6_dev_uninit() removes tunnel from its list
287 **/
288static void vti6_dev_uninit(struct net_device *dev)
289{
290 struct ip6_tnl *t = netdev_priv(dev);
291 struct vti6_net *ip6n = net_generic(t->net, vti6_net_id);
292
293 if (dev == ip6n->fb_tnl_dev)
294 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
295 else
296 vti6_tnl_unlink(ip6n, t);
297 dev_put(dev);
298}
299
300static int vti6_rcv(struct sk_buff *skb)
301{
302 struct ip6_tnl *t;
303 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
304
305 rcu_read_lock();
306 t = vti6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, &ipv6h->daddr);
307 if (t) {
308 if (t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) {
309 rcu_read_unlock();
310 goto discard;
311 }
312
313 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
314 rcu_read_unlock();
315 return 0;
316 }
317
318 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
319 t->dev->stats.rx_dropped++;
320 rcu_read_unlock();
321 goto discard;
322 }
323
324 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6 = t;
325
326 rcu_read_unlock();
327
328 return xfrm6_rcv(skb);
329 }
330 rcu_read_unlock();
331 return -EINVAL;
332discard:
333 kfree_skb(skb);
334 return 0;
335}
336
337static int vti6_rcv_cb(struct sk_buff *skb, int err)
338{
339 unsigned short family;
340 struct net_device *dev;
341 struct pcpu_sw_netstats *tstats;
342 struct xfrm_state *x;
Kyle Swensone01461f2021-03-15 11:14:57 -0600343 struct xfrm_mode *inner_mode;
Kyle Swenson8d8f6542021-03-15 11:02:55 -0600344 struct ip6_tnl *t = XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6;
345 u32 orig_mark = skb->mark;
346 int ret;
347
348 if (!t)
349 return 1;
350
351 dev = t->dev;
352
353 if (err) {
354 dev->stats.rx_errors++;
355 dev->stats.rx_dropped++;
356
357 return 0;
358 }
359
360 x = xfrm_input_state(skb);
Kyle Swensone01461f2021-03-15 11:14:57 -0600361
362 inner_mode = x->inner_mode;
363
364 if (x->sel.family == AF_UNSPEC) {
365 inner_mode = xfrm_ip2inner_mode(x, XFRM_MODE_SKB_CB(skb)->protocol);
366 if (inner_mode == NULL) {
367 XFRM_INC_STATS(dev_net(skb->dev),
368 LINUX_MIB_XFRMINSTATEMODEERROR);
369 return -EINVAL;
370 }
371 }
372
373 family = inner_mode->afinfo->family;
Kyle Swenson8d8f6542021-03-15 11:02:55 -0600374
375 skb->mark = be32_to_cpu(t->parms.i_key);
376 ret = xfrm_policy_check(NULL, XFRM_POLICY_IN, skb, family);
377 skb->mark = orig_mark;
378
379 if (!ret)
380 return -EPERM;
381
382 skb_scrub_packet(skb, !net_eq(t->net, dev_net(skb->dev)));
383 skb->dev = dev;
384
385 tstats = this_cpu_ptr(dev->tstats);
386 u64_stats_update_begin(&tstats->syncp);
387 tstats->rx_packets++;
388 tstats->rx_bytes += skb->len;
389 u64_stats_update_end(&tstats->syncp);
390
391 return 0;
392}
393
394/**
395 * vti6_addr_conflict - compare packet addresses to tunnel's own
396 * @t: the outgoing tunnel device
397 * @hdr: IPv6 header from the incoming packet
398 *
399 * Description:
400 * Avoid trivial tunneling loop by checking that tunnel exit-point
401 * doesn't match source of incoming packet.
402 *
403 * Return:
404 * 1 if conflict,
405 * 0 else
406 **/
407static inline bool
408vti6_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
409{
410 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
411}
412
413static bool vti6_state_check(const struct xfrm_state *x,
414 const struct in6_addr *dst,
415 const struct in6_addr *src)
416{
417 xfrm_address_t *daddr = (xfrm_address_t *)dst;
418 xfrm_address_t *saddr = (xfrm_address_t *)src;
419
420 /* if there is no transform then this tunnel is not functional.
421 * Or if the xfrm is not mode tunnel.
422 */
423 if (!x || x->props.mode != XFRM_MODE_TUNNEL ||
424 x->props.family != AF_INET6)
425 return false;
426
427 if (ipv6_addr_any(dst))
428 return xfrm_addr_equal(saddr, &x->props.saddr, AF_INET6);
429
430 if (!xfrm_state_addr_check(x, daddr, saddr, AF_INET6))
431 return false;
432
433 return true;
434}
435
436/**
437 * vti6_xmit - send a packet
438 * @skb: the outgoing socket buffer
439 * @dev: the outgoing tunnel device
440 * @fl: the flow informations for the xfrm_lookup
441 **/
442static int
443vti6_xmit(struct sk_buff *skb, struct net_device *dev, struct flowi *fl)
444{
445 struct ip6_tnl *t = netdev_priv(dev);
446 struct net_device_stats *stats = &t->dev->stats;
447 struct dst_entry *dst = skb_dst(skb);
448 struct net_device *tdev;
449 struct xfrm_state *x;
450 int pkt_len = skb->len;
451 int err = -1;
452 int mtu;
453
454 if (!dst)
455 goto tx_err_link_failure;
456
457 dst_hold(dst);
458 dst = xfrm_lookup(t->net, dst, fl, NULL, 0);
459 if (IS_ERR(dst)) {
460 err = PTR_ERR(dst);
461 dst = NULL;
462 goto tx_err_link_failure;
463 }
464
465 x = dst->xfrm;
466 if (!vti6_state_check(x, &t->parms.raddr, &t->parms.laddr))
467 goto tx_err_link_failure;
468
469 if (!ip6_tnl_xmit_ctl(t, (const struct in6_addr *)&x->props.saddr,
470 (const struct in6_addr *)&x->id.daddr))
471 goto tx_err_link_failure;
472
473 tdev = dst->dev;
474
475 if (tdev == dev) {
476 stats->collisions++;
477 net_warn_ratelimited("%s: Local routing loop detected!\n",
478 t->parms.name);
479 goto tx_err_dst_release;
480 }
481
482 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
483 skb_dst_set(skb, dst);
484 skb->dev = skb_dst(skb)->dev;
485
486 mtu = dst_mtu(dst);
487 if (!skb->ignore_df && skb->len > mtu) {
488 skb_dst(skb)->ops->update_pmtu(dst, NULL, skb, mtu);
489
490 if (skb->protocol == htons(ETH_P_IPV6))
491 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
492 else
493 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
494 htonl(mtu));
495
496 return -EMSGSIZE;
497 }
498
499 err = dst_output(t->net, skb->sk, skb);
500 if (net_xmit_eval(err) == 0) {
501 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
502
503 u64_stats_update_begin(&tstats->syncp);
504 tstats->tx_bytes += pkt_len;
505 tstats->tx_packets++;
506 u64_stats_update_end(&tstats->syncp);
507 } else {
508 stats->tx_errors++;
509 stats->tx_aborted_errors++;
510 }
511
512 return 0;
513tx_err_link_failure:
514 stats->tx_carrier_errors++;
515 dst_link_failure(skb);
516tx_err_dst_release:
517 dst_release(dst);
518 return err;
519}
520
521static netdev_tx_t
522vti6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
523{
524 struct ip6_tnl *t = netdev_priv(dev);
525 struct net_device_stats *stats = &t->dev->stats;
526 struct ipv6hdr *ipv6h;
527 struct flowi fl;
528 int ret;
529
530 memset(&fl, 0, sizeof(fl));
531
532 switch (skb->protocol) {
533 case htons(ETH_P_IPV6):
534 ipv6h = ipv6_hdr(skb);
535
536 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
537 vti6_addr_conflict(t, ipv6h))
538 goto tx_err;
539
540 xfrm_decode_session(skb, &fl, AF_INET6);
541 memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
542 break;
543 case htons(ETH_P_IP):
544 xfrm_decode_session(skb, &fl, AF_INET);
545 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
546 break;
547 default:
548 goto tx_err;
549 }
550
551 /* override mark with tunnel output key */
552 fl.flowi_mark = be32_to_cpu(t->parms.o_key);
553
554 ret = vti6_xmit(skb, dev, &fl);
555 if (ret < 0)
556 goto tx_err;
557
558 return NETDEV_TX_OK;
559
560tx_err:
561 stats->tx_errors++;
562 stats->tx_dropped++;
563 kfree_skb(skb);
564 return NETDEV_TX_OK;
565}
566
567static int vti6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
568 u8 type, u8 code, int offset, __be32 info)
569{
570 __be32 spi;
571 __u32 mark;
572 struct xfrm_state *x;
573 struct ip6_tnl *t;
574 struct ip_esp_hdr *esph;
575 struct ip_auth_hdr *ah;
576 struct ip_comp_hdr *ipch;
577 struct net *net = dev_net(skb->dev);
578 const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
579 int protocol = iph->nexthdr;
580
581 t = vti6_tnl_lookup(dev_net(skb->dev), &iph->daddr, &iph->saddr);
582 if (!t)
583 return -1;
584
585 mark = be32_to_cpu(t->parms.o_key);
586
587 switch (protocol) {
588 case IPPROTO_ESP:
589 esph = (struct ip_esp_hdr *)(skb->data + offset);
590 spi = esph->spi;
591 break;
592 case IPPROTO_AH:
593 ah = (struct ip_auth_hdr *)(skb->data + offset);
594 spi = ah->spi;
595 break;
596 case IPPROTO_COMP:
597 ipch = (struct ip_comp_hdr *)(skb->data + offset);
598 spi = htonl(ntohs(ipch->cpi));
599 break;
600 default:
601 return 0;
602 }
603
604 if (type != ICMPV6_PKT_TOOBIG &&
605 type != NDISC_REDIRECT)
606 return 0;
607
608 x = xfrm_state_lookup(net, mark, (const xfrm_address_t *)&iph->daddr,
609 spi, protocol, AF_INET6);
610 if (!x)
611 return 0;
612
613 if (type == NDISC_REDIRECT)
614 ip6_redirect(skb, net, skb->dev->ifindex, 0);
615 else
616 ip6_update_pmtu(skb, net, info, 0, 0);
617 xfrm_state_put(x);
618
619 return 0;
620}
621
622static void vti6_link_config(struct ip6_tnl *t)
623{
624 struct net_device *dev = t->dev;
625 struct __ip6_tnl_parm *p = &t->parms;
626
627 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
628 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
629
630 p->flags &= ~(IP6_TNL_F_CAP_XMIT | IP6_TNL_F_CAP_RCV |
631 IP6_TNL_F_CAP_PER_PACKET);
632 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
633
634 if (p->flags & IP6_TNL_F_CAP_XMIT && p->flags & IP6_TNL_F_CAP_RCV)
635 dev->flags |= IFF_POINTOPOINT;
636 else
637 dev->flags &= ~IFF_POINTOPOINT;
638}
639
640/**
641 * vti6_tnl_change - update the tunnel parameters
642 * @t: tunnel to be changed
643 * @p: tunnel configuration parameters
644 *
645 * Description:
646 * vti6_tnl_change() updates the tunnel parameters
647 **/
648static int
649vti6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
650{
651 t->parms.laddr = p->laddr;
652 t->parms.raddr = p->raddr;
653 t->parms.link = p->link;
654 t->parms.i_key = p->i_key;
655 t->parms.o_key = p->o_key;
656 t->parms.proto = p->proto;
657 ip6_tnl_dst_reset(t);
658 vti6_link_config(t);
659 return 0;
660}
661
662static int vti6_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
663{
664 struct net *net = dev_net(t->dev);
665 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
666 int err;
667
668 vti6_tnl_unlink(ip6n, t);
669 synchronize_net();
670 err = vti6_tnl_change(t, p);
671 vti6_tnl_link(ip6n, t);
672 netdev_state_change(t->dev);
673 return err;
674}
675
676static void
677vti6_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm2 *u)
678{
679 p->laddr = u->laddr;
680 p->raddr = u->raddr;
681 p->link = u->link;
682 p->i_key = u->i_key;
683 p->o_key = u->o_key;
684 p->proto = u->proto;
685
686 memcpy(p->name, u->name, sizeof(u->name));
687}
688
689static void
690vti6_parm_to_user(struct ip6_tnl_parm2 *u, const struct __ip6_tnl_parm *p)
691{
692 u->laddr = p->laddr;
693 u->raddr = p->raddr;
694 u->link = p->link;
695 u->i_key = p->i_key;
696 u->o_key = p->o_key;
697 if (u->i_key)
698 u->i_flags |= GRE_KEY;
699 if (u->o_key)
700 u->o_flags |= GRE_KEY;
701 u->proto = p->proto;
702
703 memcpy(u->name, p->name, sizeof(u->name));
704}
705
706/**
707 * vti6_tnl_ioctl - configure vti6 tunnels from userspace
708 * @dev: virtual device associated with tunnel
709 * @ifr: parameters passed from userspace
710 * @cmd: command to be performed
711 *
712 * Description:
713 * vti6_ioctl() is used for managing vti6 tunnels
714 * from userspace.
715 *
716 * The possible commands are the following:
717 * %SIOCGETTUNNEL: get tunnel parameters for device
718 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
719 * %SIOCCHGTUNNEL: change tunnel parameters to those given
720 * %SIOCDELTUNNEL: delete tunnel
721 *
722 * The fallback device "ip6_vti0", created during module
723 * initialization, can be used for creating other tunnel devices.
724 *
725 * Return:
726 * 0 on success,
727 * %-EFAULT if unable to copy data to or from userspace,
728 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
729 * %-EINVAL if passed tunnel parameters are invalid,
730 * %-EEXIST if changing a tunnel's parameters would cause a conflict
731 * %-ENODEV if attempting to change or delete a nonexisting device
732 **/
733static int
734vti6_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
735{
736 int err = 0;
737 struct ip6_tnl_parm2 p;
738 struct __ip6_tnl_parm p1;
739 struct ip6_tnl *t = NULL;
740 struct net *net = dev_net(dev);
741 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
742
743 switch (cmd) {
744 case SIOCGETTUNNEL:
745 if (dev == ip6n->fb_tnl_dev) {
746 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
747 err = -EFAULT;
748 break;
749 }
750 vti6_parm_from_user(&p1, &p);
751 t = vti6_locate(net, &p1, 0);
752 } else {
753 memset(&p, 0, sizeof(p));
754 }
755 if (!t)
756 t = netdev_priv(dev);
757 vti6_parm_to_user(&p, &t->parms);
758 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
759 err = -EFAULT;
760 break;
761 case SIOCADDTUNNEL:
762 case SIOCCHGTUNNEL:
763 err = -EPERM;
764 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
765 break;
766 err = -EFAULT;
767 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
768 break;
769 err = -EINVAL;
770 if (p.proto != IPPROTO_IPV6 && p.proto != 0)
771 break;
772 vti6_parm_from_user(&p1, &p);
773 t = vti6_locate(net, &p1, cmd == SIOCADDTUNNEL);
774 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
775 if (t) {
776 if (t->dev != dev) {
777 err = -EEXIST;
778 break;
779 }
780 } else
781 t = netdev_priv(dev);
782
783 err = vti6_update(t, &p1);
784 }
785 if (t) {
786 err = 0;
787 vti6_parm_to_user(&p, &t->parms);
788 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
789 err = -EFAULT;
790
791 } else
792 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
793 break;
794 case SIOCDELTUNNEL:
795 err = -EPERM;
796 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
797 break;
798
799 if (dev == ip6n->fb_tnl_dev) {
800 err = -EFAULT;
801 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
802 break;
803 err = -ENOENT;
804 vti6_parm_from_user(&p1, &p);
805 t = vti6_locate(net, &p1, 0);
806 if (!t)
807 break;
808 err = -EPERM;
809 if (t->dev == ip6n->fb_tnl_dev)
810 break;
811 dev = t->dev;
812 }
813 err = 0;
814 unregister_netdevice(dev);
815 break;
816 default:
817 err = -EINVAL;
818 }
819 return err;
820}
821
822/**
823 * vti6_tnl_change_mtu - change mtu manually for tunnel device
824 * @dev: virtual device associated with tunnel
825 * @new_mtu: the new mtu
826 *
827 * Return:
828 * 0 on success,
829 * %-EINVAL if mtu too small
830 **/
831static int vti6_change_mtu(struct net_device *dev, int new_mtu)
832{
833 if (new_mtu < IPV6_MIN_MTU)
834 return -EINVAL;
835
836 dev->mtu = new_mtu;
837 return 0;
838}
839
840static const struct net_device_ops vti6_netdev_ops = {
841 .ndo_init = vti6_dev_init,
842 .ndo_uninit = vti6_dev_uninit,
843 .ndo_start_xmit = vti6_tnl_xmit,
844 .ndo_do_ioctl = vti6_ioctl,
845 .ndo_change_mtu = vti6_change_mtu,
846 .ndo_get_stats64 = ip_tunnel_get_stats64,
847 .ndo_get_iflink = ip6_tnl_get_iflink,
848};
849
850/**
851 * vti6_dev_setup - setup virtual tunnel device
852 * @dev: virtual device associated with tunnel
853 *
854 * Description:
855 * Initialize function pointers and device parameters
856 **/
857static void vti6_dev_setup(struct net_device *dev)
858{
859 dev->netdev_ops = &vti6_netdev_ops;
860 dev->destructor = vti6_dev_free;
861
862 dev->type = ARPHRD_TUNNEL6;
863 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr);
864 dev->mtu = ETH_DATA_LEN;
865 dev->flags |= IFF_NOARP;
866 dev->addr_len = sizeof(struct in6_addr);
867 netif_keep_dst(dev);
868}
869
870/**
871 * vti6_dev_init_gen - general initializer for all tunnel devices
872 * @dev: virtual device associated with tunnel
873 **/
874static inline int vti6_dev_init_gen(struct net_device *dev)
875{
876 struct ip6_tnl *t = netdev_priv(dev);
877
878 t->dev = dev;
879 t->net = dev_net(dev);
880 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
881 if (!dev->tstats)
882 return -ENOMEM;
883 return 0;
884}
885
886/**
887 * vti6_dev_init - initializer for all non fallback tunnel devices
888 * @dev: virtual device associated with tunnel
889 **/
890static int vti6_dev_init(struct net_device *dev)
891{
892 struct ip6_tnl *t = netdev_priv(dev);
893 int err = vti6_dev_init_gen(dev);
894
895 if (err)
896 return err;
897 vti6_link_config(t);
898 return 0;
899}
900
901/**
902 * vti6_fb_tnl_dev_init - initializer for fallback tunnel device
903 * @dev: fallback device
904 *
905 * Return: 0
906 **/
907static int __net_init vti6_fb_tnl_dev_init(struct net_device *dev)
908{
909 struct ip6_tnl *t = netdev_priv(dev);
910 struct net *net = dev_net(dev);
911 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
912
913 t->parms.proto = IPPROTO_IPV6;
914 dev_hold(dev);
915
916 rcu_assign_pointer(ip6n->tnls_wc[0], t);
917 return 0;
918}
919
920static int vti6_validate(struct nlattr *tb[], struct nlattr *data[])
921{
922 return 0;
923}
924
925static void vti6_netlink_parms(struct nlattr *data[],
926 struct __ip6_tnl_parm *parms)
927{
928 memset(parms, 0, sizeof(*parms));
929
930 if (!data)
931 return;
932
933 if (data[IFLA_VTI_LINK])
934 parms->link = nla_get_u32(data[IFLA_VTI_LINK]);
935
936 if (data[IFLA_VTI_LOCAL])
937 parms->laddr = nla_get_in6_addr(data[IFLA_VTI_LOCAL]);
938
939 if (data[IFLA_VTI_REMOTE])
940 parms->raddr = nla_get_in6_addr(data[IFLA_VTI_REMOTE]);
941
942 if (data[IFLA_VTI_IKEY])
943 parms->i_key = nla_get_be32(data[IFLA_VTI_IKEY]);
944
945 if (data[IFLA_VTI_OKEY])
946 parms->o_key = nla_get_be32(data[IFLA_VTI_OKEY]);
947}
948
949static int vti6_newlink(struct net *src_net, struct net_device *dev,
950 struct nlattr *tb[], struct nlattr *data[])
951{
952 struct net *net = dev_net(dev);
953 struct ip6_tnl *nt;
954
955 nt = netdev_priv(dev);
956 vti6_netlink_parms(data, &nt->parms);
957
958 nt->parms.proto = IPPROTO_IPV6;
959
960 if (vti6_locate(net, &nt->parms, 0))
961 return -EEXIST;
962
963 return vti6_tnl_create2(dev);
964}
965
966static void vti6_dellink(struct net_device *dev, struct list_head *head)
967{
968 struct net *net = dev_net(dev);
969 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
970
971 if (dev != ip6n->fb_tnl_dev)
972 unregister_netdevice_queue(dev, head);
973}
974
975static int vti6_changelink(struct net_device *dev, struct nlattr *tb[],
976 struct nlattr *data[])
977{
978 struct ip6_tnl *t;
979 struct __ip6_tnl_parm p;
980 struct net *net = dev_net(dev);
981 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
982
983 if (dev == ip6n->fb_tnl_dev)
984 return -EINVAL;
985
986 vti6_netlink_parms(data, &p);
987
988 t = vti6_locate(net, &p, 0);
989
990 if (t) {
991 if (t->dev != dev)
992 return -EEXIST;
993 } else
994 t = netdev_priv(dev);
995
996 return vti6_update(t, &p);
997}
998
999static size_t vti6_get_size(const struct net_device *dev)
1000{
1001 return
1002 /* IFLA_VTI_LINK */
1003 nla_total_size(4) +
1004 /* IFLA_VTI_LOCAL */
1005 nla_total_size(sizeof(struct in6_addr)) +
1006 /* IFLA_VTI_REMOTE */
1007 nla_total_size(sizeof(struct in6_addr)) +
1008 /* IFLA_VTI_IKEY */
1009 nla_total_size(4) +
1010 /* IFLA_VTI_OKEY */
1011 nla_total_size(4) +
1012 0;
1013}
1014
1015static int vti6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1016{
1017 struct ip6_tnl *tunnel = netdev_priv(dev);
1018 struct __ip6_tnl_parm *parm = &tunnel->parms;
1019
1020 if (nla_put_u32(skb, IFLA_VTI_LINK, parm->link) ||
1021 nla_put_in6_addr(skb, IFLA_VTI_LOCAL, &parm->laddr) ||
1022 nla_put_in6_addr(skb, IFLA_VTI_REMOTE, &parm->raddr) ||
1023 nla_put_be32(skb, IFLA_VTI_IKEY, parm->i_key) ||
1024 nla_put_be32(skb, IFLA_VTI_OKEY, parm->o_key))
1025 goto nla_put_failure;
1026 return 0;
1027
1028nla_put_failure:
1029 return -EMSGSIZE;
1030}
1031
1032static const struct nla_policy vti6_policy[IFLA_VTI_MAX + 1] = {
1033 [IFLA_VTI_LINK] = { .type = NLA_U32 },
1034 [IFLA_VTI_LOCAL] = { .len = sizeof(struct in6_addr) },
1035 [IFLA_VTI_REMOTE] = { .len = sizeof(struct in6_addr) },
1036 [IFLA_VTI_IKEY] = { .type = NLA_U32 },
1037 [IFLA_VTI_OKEY] = { .type = NLA_U32 },
1038};
1039
1040static struct rtnl_link_ops vti6_link_ops __read_mostly = {
1041 .kind = "vti6",
1042 .maxtype = IFLA_VTI_MAX,
1043 .policy = vti6_policy,
1044 .priv_size = sizeof(struct ip6_tnl),
1045 .setup = vti6_dev_setup,
1046 .validate = vti6_validate,
1047 .newlink = vti6_newlink,
1048 .dellink = vti6_dellink,
1049 .changelink = vti6_changelink,
1050 .get_size = vti6_get_size,
1051 .fill_info = vti6_fill_info,
1052 .get_link_net = ip6_tnl_get_link_net,
1053};
1054
1055static void __net_exit vti6_destroy_tunnels(struct vti6_net *ip6n)
1056{
1057 int h;
1058 struct ip6_tnl *t;
1059 LIST_HEAD(list);
1060
1061 for (h = 0; h < HASH_SIZE; h++) {
1062 t = rtnl_dereference(ip6n->tnls_r_l[h]);
1063 while (t) {
1064 unregister_netdevice_queue(t->dev, &list);
1065 t = rtnl_dereference(t->next);
1066 }
1067 }
1068
1069 t = rtnl_dereference(ip6n->tnls_wc[0]);
1070 unregister_netdevice_queue(t->dev, &list);
1071 unregister_netdevice_many(&list);
1072}
1073
1074static int __net_init vti6_init_net(struct net *net)
1075{
1076 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1077 struct ip6_tnl *t = NULL;
1078 int err;
1079
1080 ip6n->tnls[0] = ip6n->tnls_wc;
1081 ip6n->tnls[1] = ip6n->tnls_r_l;
1082
1083 err = -ENOMEM;
1084 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6_vti0",
1085 NET_NAME_UNKNOWN, vti6_dev_setup);
1086
1087 if (!ip6n->fb_tnl_dev)
1088 goto err_alloc_dev;
1089 dev_net_set(ip6n->fb_tnl_dev, net);
1090 ip6n->fb_tnl_dev->rtnl_link_ops = &vti6_link_ops;
1091
1092 err = vti6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1093 if (err < 0)
1094 goto err_register;
1095
1096 err = register_netdev(ip6n->fb_tnl_dev);
1097 if (err < 0)
1098 goto err_register;
1099
1100 t = netdev_priv(ip6n->fb_tnl_dev);
1101
1102 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
1103 return 0;
1104
1105err_register:
1106 vti6_dev_free(ip6n->fb_tnl_dev);
1107err_alloc_dev:
1108 return err;
1109}
1110
1111static void __net_exit vti6_exit_net(struct net *net)
1112{
1113 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1114
1115 rtnl_lock();
1116 vti6_destroy_tunnels(ip6n);
1117 rtnl_unlock();
1118}
1119
1120static struct pernet_operations vti6_net_ops = {
1121 .init = vti6_init_net,
1122 .exit = vti6_exit_net,
1123 .id = &vti6_net_id,
1124 .size = sizeof(struct vti6_net),
1125};
1126
1127static struct xfrm6_protocol vti_esp6_protocol __read_mostly = {
1128 .handler = vti6_rcv,
1129 .cb_handler = vti6_rcv_cb,
1130 .err_handler = vti6_err,
1131 .priority = 100,
1132};
1133
1134static struct xfrm6_protocol vti_ah6_protocol __read_mostly = {
1135 .handler = vti6_rcv,
1136 .cb_handler = vti6_rcv_cb,
1137 .err_handler = vti6_err,
1138 .priority = 100,
1139};
1140
1141static struct xfrm6_protocol vti_ipcomp6_protocol __read_mostly = {
1142 .handler = vti6_rcv,
1143 .cb_handler = vti6_rcv_cb,
1144 .err_handler = vti6_err,
1145 .priority = 100,
1146};
1147
1148/**
1149 * vti6_tunnel_init - register protocol and reserve needed resources
1150 *
1151 * Return: 0 on success
1152 **/
1153static int __init vti6_tunnel_init(void)
1154{
1155 const char *msg;
1156 int err;
1157
1158 msg = "tunnel device";
1159 err = register_pernet_device(&vti6_net_ops);
1160 if (err < 0)
1161 goto pernet_dev_failed;
1162
1163 msg = "tunnel protocols";
1164 err = xfrm6_protocol_register(&vti_esp6_protocol, IPPROTO_ESP);
1165 if (err < 0)
1166 goto xfrm_proto_esp_failed;
1167 err = xfrm6_protocol_register(&vti_ah6_protocol, IPPROTO_AH);
1168 if (err < 0)
1169 goto xfrm_proto_ah_failed;
1170 err = xfrm6_protocol_register(&vti_ipcomp6_protocol, IPPROTO_COMP);
1171 if (err < 0)
1172 goto xfrm_proto_comp_failed;
1173
1174 msg = "netlink interface";
1175 err = rtnl_link_register(&vti6_link_ops);
1176 if (err < 0)
1177 goto rtnl_link_failed;
1178
1179 return 0;
1180
1181rtnl_link_failed:
1182 xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
1183xfrm_proto_comp_failed:
1184 xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
1185xfrm_proto_ah_failed:
1186 xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
1187xfrm_proto_esp_failed:
1188 unregister_pernet_device(&vti6_net_ops);
1189pernet_dev_failed:
1190 pr_err("vti6 init: failed to register %s\n", msg);
1191 return err;
1192}
1193
1194/**
1195 * vti6_tunnel_cleanup - free resources and unregister protocol
1196 **/
1197static void __exit vti6_tunnel_cleanup(void)
1198{
1199 rtnl_link_unregister(&vti6_link_ops);
1200 xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
1201 xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
1202 xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
1203 unregister_pernet_device(&vti6_net_ops);
1204}
1205
1206module_init(vti6_tunnel_init);
1207module_exit(vti6_tunnel_cleanup);
1208MODULE_LICENSE("GPL");
1209MODULE_ALIAS_RTNL_LINK("vti6");
1210MODULE_ALIAS_NETDEV("ip6_vti0");
1211MODULE_AUTHOR("Steffen Klassert");
1212MODULE_DESCRIPTION("IPv6 virtual tunnel interface");