ALSA: usb-audio: Fix an out-of-bound read in create_composite_quirks
[linux/fpc-iii.git] / net / ipv6 / ip6_vti.c
blob51da5987952ce82af5d71c59426dcd4bb8cf7687
1 /*
2 * IPv6 virtual tunneling interface
4 * Copyright (C) 2013 secunet Security Networks AG
6 * Author:
7 * Steffen Klassert <steffen.klassert@secunet.com>
9 * Based on:
10 * net/ipv6/ip6_tunnel.c
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.
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>
39 #include <linux/uaccess.h>
40 #include <linux/atomic.h>
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>
53 #define HASH_SIZE_SHIFT 5
54 #define HASH_SIZE (1 << HASH_SIZE_SHIFT)
56 static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
58 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
60 return hash_32(hash, HASH_SIZE_SHIFT);
63 static int vti6_dev_init(struct net_device *dev);
64 static void vti6_dev_setup(struct net_device *dev);
65 static struct rtnl_link_ops vti6_link_ops __read_mostly;
67 static int vti6_net_id __read_mostly;
68 struct 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];
77 #define for_each_vti6_tunnel_rcu(start) \
78 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
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
86 * Return:
87 * tunnel matching given end-points if found,
88 * else fallback tunnel if its device is up,
89 * else %NULL
90 **/
91 static struct ip6_tnl *
92 vti6_tnl_lookup(struct net *net, const struct in6_addr *remote,
93 const struct in6_addr *local)
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;
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;
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;
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;
122 t = rcu_dereference(ip6n->tnls_wc[0]);
123 if (t && (t->dev->flags & IFF_UP))
124 return t;
126 return NULL;
130 * vti6_tnl_bucket - get head of list matching given tunnel parameters
131 * @p: parameters containing tunnel end-points
133 * Description:
134 * vti6_tnl_bucket() returns the head of the list matching the
135 * &struct in6_addr entries laddr and raddr in @p.
137 * Return: head of IPv6 tunnel list
139 static struct ip6_tnl __rcu **
140 vti6_tnl_bucket(struct vti6_net *ip6n, const struct __ip6_tnl_parm *p)
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;
147 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
148 prio = 1;
149 h = HASH(remote, local);
151 return &ip6n->tnls[prio][h];
154 static void
155 vti6_tnl_link(struct vti6_net *ip6n, struct ip6_tnl *t)
157 struct ip6_tnl __rcu **tp = vti6_tnl_bucket(ip6n, &t->parms);
159 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
160 rcu_assign_pointer(*tp, t);
163 static void
164 vti6_tnl_unlink(struct vti6_net *ip6n, struct ip6_tnl *t)
166 struct ip6_tnl __rcu **tp;
167 struct ip6_tnl *iter;
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;
179 static void vti6_dev_free(struct net_device *dev)
181 free_percpu(dev->tstats);
182 free_netdev(dev);
185 static int vti6_tnl_create2(struct net_device *dev)
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;
192 dev->rtnl_link_ops = &vti6_link_ops;
193 err = register_netdevice(dev);
194 if (err < 0)
195 goto out;
197 strcpy(t->parms.name, dev->name);
199 dev_hold(dev);
200 vti6_tnl_link(ip6n, t);
202 return 0;
204 out:
205 return err;
208 static struct ip6_tnl *vti6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
210 struct net_device *dev;
211 struct ip6_tnl *t;
212 char name[IFNAMSIZ];
213 int err;
215 if (p->name[0]) {
216 if (!dev_valid_name(p->name))
217 goto failed;
218 strlcpy(name, p->name, IFNAMSIZ);
219 } else {
220 sprintf(name, "ip6_vti%%d");
223 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN, vti6_dev_setup);
224 if (!dev)
225 goto failed;
227 dev_net_set(dev, net);
229 t = netdev_priv(dev);
230 t->parms = *p;
231 t->net = dev_net(dev);
233 err = vti6_tnl_create2(dev);
234 if (err < 0)
235 goto failed_free;
237 return t;
239 failed_free:
240 vti6_dev_free(dev);
241 failed:
242 return NULL;
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
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.
256 * Return:
257 * matching tunnel or NULL
259 static struct ip6_tnl *vti6_locate(struct net *net, struct __ip6_tnl_parm *p,
260 int create)
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);
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) &&
272 ipv6_addr_equal(remote, &t->parms.raddr)) {
273 if (create)
274 return NULL;
276 return t;
279 if (!create)
280 return NULL;
281 return vti6_tnl_create(net, p);
285 * vti6_dev_uninit - tunnel device uninitializer
286 * @dev: the device to be destroyed
288 * Description:
289 * vti6_dev_uninit() removes tunnel from its list
291 static void vti6_dev_uninit(struct net_device *dev)
293 struct ip6_tnl *t = netdev_priv(dev);
294 struct vti6_net *ip6n = net_generic(t->net, vti6_net_id);
296 if (dev == ip6n->fb_tnl_dev)
297 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
298 else
299 vti6_tnl_unlink(ip6n, t);
300 dev_put(dev);
303 static int vti6_rcv(struct sk_buff *skb)
305 struct ip6_tnl *t;
306 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
308 rcu_read_lock();
309 t = vti6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr, &ipv6h->daddr);
310 if (t) {
311 if (t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) {
312 rcu_read_unlock();
313 goto discard;
316 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
317 rcu_read_unlock();
318 return 0;
321 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
322 t->dev->stats.rx_dropped++;
323 rcu_read_unlock();
324 goto discard;
327 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6 = t;
329 rcu_read_unlock();
331 return xfrm6_rcv(skb);
333 rcu_read_unlock();
334 return -EINVAL;
335 discard:
336 kfree_skb(skb);
337 return 0;
340 static int vti6_rcv_cb(struct sk_buff *skb, int err)
342 unsigned short family;
343 struct net_device *dev;
344 struct pcpu_sw_netstats *tstats;
345 struct xfrm_state *x;
346 struct ip6_tnl *t = XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6;
347 u32 orig_mark = skb->mark;
348 int ret;
350 if (!t)
351 return 1;
353 dev = t->dev;
355 if (err) {
356 dev->stats.rx_errors++;
357 dev->stats.rx_dropped++;
359 return 0;
362 x = xfrm_input_state(skb);
363 family = x->inner_mode->afinfo->family;
365 skb->mark = be32_to_cpu(t->parms.i_key);
366 ret = xfrm_policy_check(NULL, XFRM_POLICY_IN, skb, family);
367 skb->mark = orig_mark;
369 if (!ret)
370 return -EPERM;
372 skb_scrub_packet(skb, !net_eq(t->net, dev_net(skb->dev)));
373 skb->dev = dev;
375 tstats = this_cpu_ptr(dev->tstats);
376 u64_stats_update_begin(&tstats->syncp);
377 tstats->rx_packets++;
378 tstats->rx_bytes += skb->len;
379 u64_stats_update_end(&tstats->syncp);
381 return 0;
385 * vti6_addr_conflict - compare packet addresses to tunnel's own
386 * @t: the outgoing tunnel device
387 * @hdr: IPv6 header from the incoming packet
389 * Description:
390 * Avoid trivial tunneling loop by checking that tunnel exit-point
391 * doesn't match source of incoming packet.
393 * Return:
394 * 1 if conflict,
395 * 0 else
397 static inline bool
398 vti6_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
400 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
403 static bool vti6_state_check(const struct xfrm_state *x,
404 const struct in6_addr *dst,
405 const struct in6_addr *src)
407 xfrm_address_t *daddr = (xfrm_address_t *)dst;
408 xfrm_address_t *saddr = (xfrm_address_t *)src;
410 /* if there is no transform then this tunnel is not functional.
411 * Or if the xfrm is not mode tunnel.
413 if (!x || x->props.mode != XFRM_MODE_TUNNEL ||
414 x->props.family != AF_INET6)
415 return false;
417 if (ipv6_addr_any(dst))
418 return xfrm_addr_equal(saddr, &x->props.saddr, AF_INET6);
420 if (!xfrm_state_addr_check(x, daddr, saddr, AF_INET6))
421 return false;
423 return true;
427 * vti6_xmit - send a packet
428 * @skb: the outgoing socket buffer
429 * @dev: the outgoing tunnel device
430 * @fl: the flow informations for the xfrm_lookup
432 static int
433 vti6_xmit(struct sk_buff *skb, struct net_device *dev, struct flowi *fl)
435 struct ip6_tnl *t = netdev_priv(dev);
436 struct net_device_stats *stats = &t->dev->stats;
437 struct dst_entry *dst = skb_dst(skb);
438 struct net_device *tdev;
439 struct xfrm_state *x;
440 int pkt_len = skb->len;
441 int err = -1;
442 int mtu;
444 if (!dst)
445 goto tx_err_link_failure;
447 dst_hold(dst);
448 dst = xfrm_lookup(t->net, dst, fl, NULL, 0);
449 if (IS_ERR(dst)) {
450 err = PTR_ERR(dst);
451 dst = NULL;
452 goto tx_err_link_failure;
455 x = dst->xfrm;
456 if (!vti6_state_check(x, &t->parms.raddr, &t->parms.laddr))
457 goto tx_err_link_failure;
459 if (!ip6_tnl_xmit_ctl(t, (const struct in6_addr *)&x->props.saddr,
460 (const struct in6_addr *)&x->id.daddr))
461 goto tx_err_link_failure;
463 tdev = dst->dev;
465 if (tdev == dev) {
466 stats->collisions++;
467 net_warn_ratelimited("%s: Local routing loop detected!\n",
468 t->parms.name);
469 goto tx_err_dst_release;
472 mtu = dst_mtu(dst);
473 if (skb->len > mtu) {
474 skb_dst(skb)->ops->update_pmtu(dst, NULL, skb, mtu);
476 if (skb->protocol == htons(ETH_P_IPV6)) {
477 if (mtu < IPV6_MIN_MTU)
478 mtu = IPV6_MIN_MTU;
480 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
481 } else {
482 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
483 htonl(mtu));
486 err = -EMSGSIZE;
487 goto tx_err_dst_release;
490 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
491 skb_dst_set(skb, dst);
492 skb->dev = skb_dst(skb)->dev;
494 err = dst_output(t->net, skb->sk, skb);
495 if (net_xmit_eval(err) == 0) {
496 struct pcpu_sw_netstats *tstats = this_cpu_ptr(dev->tstats);
498 u64_stats_update_begin(&tstats->syncp);
499 tstats->tx_bytes += pkt_len;
500 tstats->tx_packets++;
501 u64_stats_update_end(&tstats->syncp);
502 } else {
503 stats->tx_errors++;
504 stats->tx_aborted_errors++;
507 return 0;
508 tx_err_link_failure:
509 stats->tx_carrier_errors++;
510 dst_link_failure(skb);
511 tx_err_dst_release:
512 dst_release(dst);
513 return err;
516 static netdev_tx_t
517 vti6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
519 struct ip6_tnl *t = netdev_priv(dev);
520 struct net_device_stats *stats = &t->dev->stats;
521 struct ipv6hdr *ipv6h;
522 struct flowi fl;
523 int ret;
525 memset(&fl, 0, sizeof(fl));
527 switch (skb->protocol) {
528 case htons(ETH_P_IPV6):
529 ipv6h = ipv6_hdr(skb);
531 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
532 vti6_addr_conflict(t, ipv6h))
533 goto tx_err;
535 xfrm_decode_session(skb, &fl, AF_INET6);
536 memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
537 break;
538 case htons(ETH_P_IP):
539 xfrm_decode_session(skb, &fl, AF_INET);
540 memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
541 break;
542 default:
543 goto tx_err;
546 /* override mark with tunnel output key */
547 fl.flowi_mark = be32_to_cpu(t->parms.o_key);
549 ret = vti6_xmit(skb, dev, &fl);
550 if (ret < 0)
551 goto tx_err;
553 return NETDEV_TX_OK;
555 tx_err:
556 stats->tx_errors++;
557 stats->tx_dropped++;
558 kfree_skb(skb);
559 return NETDEV_TX_OK;
562 static int vti6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
563 u8 type, u8 code, int offset, __be32 info)
565 __be32 spi;
566 __u32 mark;
567 struct xfrm_state *x;
568 struct ip6_tnl *t;
569 struct ip_esp_hdr *esph;
570 struct ip_auth_hdr *ah;
571 struct ip_comp_hdr *ipch;
572 struct net *net = dev_net(skb->dev);
573 const struct ipv6hdr *iph = (const struct ipv6hdr *)skb->data;
574 int protocol = iph->nexthdr;
576 t = vti6_tnl_lookup(dev_net(skb->dev), &iph->daddr, &iph->saddr);
577 if (!t)
578 return -1;
580 mark = be32_to_cpu(t->parms.o_key);
582 switch (protocol) {
583 case IPPROTO_ESP:
584 esph = (struct ip_esp_hdr *)(skb->data + offset);
585 spi = esph->spi;
586 break;
587 case IPPROTO_AH:
588 ah = (struct ip_auth_hdr *)(skb->data + offset);
589 spi = ah->spi;
590 break;
591 case IPPROTO_COMP:
592 ipch = (struct ip_comp_hdr *)(skb->data + offset);
593 spi = htonl(ntohs(ipch->cpi));
594 break;
595 default:
596 return 0;
599 if (type != ICMPV6_PKT_TOOBIG &&
600 type != NDISC_REDIRECT)
601 return 0;
603 x = xfrm_state_lookup(net, mark, (const xfrm_address_t *)&iph->daddr,
604 spi, protocol, AF_INET6);
605 if (!x)
606 return 0;
608 if (type == NDISC_REDIRECT)
609 ip6_redirect(skb, net, skb->dev->ifindex, 0);
610 else
611 ip6_update_pmtu(skb, net, info, 0, 0);
612 xfrm_state_put(x);
614 return 0;
617 static void vti6_link_config(struct ip6_tnl *t)
619 struct net_device *dev = t->dev;
620 struct __ip6_tnl_parm *p = &t->parms;
622 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
623 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
625 p->flags &= ~(IP6_TNL_F_CAP_XMIT | IP6_TNL_F_CAP_RCV |
626 IP6_TNL_F_CAP_PER_PACKET);
627 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
629 if (p->flags & IP6_TNL_F_CAP_XMIT && p->flags & IP6_TNL_F_CAP_RCV)
630 dev->flags |= IFF_POINTOPOINT;
631 else
632 dev->flags &= ~IFF_POINTOPOINT;
636 * vti6_tnl_change - update the tunnel parameters
637 * @t: tunnel to be changed
638 * @p: tunnel configuration parameters
640 * Description:
641 * vti6_tnl_change() updates the tunnel parameters
643 static int
644 vti6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
646 t->parms.laddr = p->laddr;
647 t->parms.raddr = p->raddr;
648 t->parms.link = p->link;
649 t->parms.i_key = p->i_key;
650 t->parms.o_key = p->o_key;
651 t->parms.proto = p->proto;
652 dst_cache_reset(&t->dst_cache);
653 vti6_link_config(t);
654 return 0;
657 static int vti6_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
659 struct net *net = dev_net(t->dev);
660 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
661 int err;
663 vti6_tnl_unlink(ip6n, t);
664 synchronize_net();
665 err = vti6_tnl_change(t, p);
666 vti6_tnl_link(ip6n, t);
667 netdev_state_change(t->dev);
668 return err;
671 static void
672 vti6_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm2 *u)
674 p->laddr = u->laddr;
675 p->raddr = u->raddr;
676 p->link = u->link;
677 p->i_key = u->i_key;
678 p->o_key = u->o_key;
679 p->proto = u->proto;
681 memcpy(p->name, u->name, sizeof(u->name));
684 static void
685 vti6_parm_to_user(struct ip6_tnl_parm2 *u, const struct __ip6_tnl_parm *p)
687 u->laddr = p->laddr;
688 u->raddr = p->raddr;
689 u->link = p->link;
690 u->i_key = p->i_key;
691 u->o_key = p->o_key;
692 if (u->i_key)
693 u->i_flags |= GRE_KEY;
694 if (u->o_key)
695 u->o_flags |= GRE_KEY;
696 u->proto = p->proto;
698 memcpy(u->name, p->name, sizeof(u->name));
702 * vti6_tnl_ioctl - configure vti6 tunnels from userspace
703 * @dev: virtual device associated with tunnel
704 * @ifr: parameters passed from userspace
705 * @cmd: command to be performed
707 * Description:
708 * vti6_ioctl() is used for managing vti6 tunnels
709 * from userspace.
711 * The possible commands are the following:
712 * %SIOCGETTUNNEL: get tunnel parameters for device
713 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
714 * %SIOCCHGTUNNEL: change tunnel parameters to those given
715 * %SIOCDELTUNNEL: delete tunnel
717 * The fallback device "ip6_vti0", created during module
718 * initialization, can be used for creating other tunnel devices.
720 * Return:
721 * 0 on success,
722 * %-EFAULT if unable to copy data to or from userspace,
723 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
724 * %-EINVAL if passed tunnel parameters are invalid,
725 * %-EEXIST if changing a tunnel's parameters would cause a conflict
726 * %-ENODEV if attempting to change or delete a nonexisting device
728 static int
729 vti6_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
731 int err = 0;
732 struct ip6_tnl_parm2 p;
733 struct __ip6_tnl_parm p1;
734 struct ip6_tnl *t = NULL;
735 struct net *net = dev_net(dev);
736 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
738 switch (cmd) {
739 case SIOCGETTUNNEL:
740 if (dev == ip6n->fb_tnl_dev) {
741 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
742 err = -EFAULT;
743 break;
745 vti6_parm_from_user(&p1, &p);
746 t = vti6_locate(net, &p1, 0);
747 } else {
748 memset(&p, 0, sizeof(p));
750 if (!t)
751 t = netdev_priv(dev);
752 vti6_parm_to_user(&p, &t->parms);
753 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
754 err = -EFAULT;
755 break;
756 case SIOCADDTUNNEL:
757 case SIOCCHGTUNNEL:
758 err = -EPERM;
759 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
760 break;
761 err = -EFAULT;
762 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
763 break;
764 err = -EINVAL;
765 if (p.proto != IPPROTO_IPV6 && p.proto != 0)
766 break;
767 vti6_parm_from_user(&p1, &p);
768 t = vti6_locate(net, &p1, cmd == SIOCADDTUNNEL);
769 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
770 if (t) {
771 if (t->dev != dev) {
772 err = -EEXIST;
773 break;
775 } else
776 t = netdev_priv(dev);
778 err = vti6_update(t, &p1);
780 if (t) {
781 err = 0;
782 vti6_parm_to_user(&p, &t->parms);
783 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
784 err = -EFAULT;
786 } else
787 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
788 break;
789 case SIOCDELTUNNEL:
790 err = -EPERM;
791 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
792 break;
794 if (dev == ip6n->fb_tnl_dev) {
795 err = -EFAULT;
796 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
797 break;
798 err = -ENOENT;
799 vti6_parm_from_user(&p1, &p);
800 t = vti6_locate(net, &p1, 0);
801 if (!t)
802 break;
803 err = -EPERM;
804 if (t->dev == ip6n->fb_tnl_dev)
805 break;
806 dev = t->dev;
808 err = 0;
809 unregister_netdevice(dev);
810 break;
811 default:
812 err = -EINVAL;
814 return err;
818 * vti6_tnl_change_mtu - change mtu manually for tunnel device
819 * @dev: virtual device associated with tunnel
820 * @new_mtu: the new mtu
822 * Return:
823 * 0 on success,
824 * %-EINVAL if mtu too small
826 static int vti6_change_mtu(struct net_device *dev, int new_mtu)
828 if (new_mtu < IPV6_MIN_MTU)
829 return -EINVAL;
831 dev->mtu = new_mtu;
832 return 0;
835 static const struct net_device_ops vti6_netdev_ops = {
836 .ndo_init = vti6_dev_init,
837 .ndo_uninit = vti6_dev_uninit,
838 .ndo_start_xmit = vti6_tnl_xmit,
839 .ndo_do_ioctl = vti6_ioctl,
840 .ndo_change_mtu = vti6_change_mtu,
841 .ndo_get_stats64 = ip_tunnel_get_stats64,
842 .ndo_get_iflink = ip6_tnl_get_iflink,
846 * vti6_dev_setup - setup virtual tunnel device
847 * @dev: virtual device associated with tunnel
849 * Description:
850 * Initialize function pointers and device parameters
852 static void vti6_dev_setup(struct net_device *dev)
854 dev->netdev_ops = &vti6_netdev_ops;
855 dev->destructor = vti6_dev_free;
857 dev->type = ARPHRD_TUNNEL6;
858 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr);
859 dev->mtu = ETH_DATA_LEN;
860 dev->flags |= IFF_NOARP;
861 dev->addr_len = sizeof(struct in6_addr);
862 netif_keep_dst(dev);
866 * vti6_dev_init_gen - general initializer for all tunnel devices
867 * @dev: virtual device associated with tunnel
869 static inline int vti6_dev_init_gen(struct net_device *dev)
871 struct ip6_tnl *t = netdev_priv(dev);
873 t->dev = dev;
874 t->net = dev_net(dev);
875 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
876 if (!dev->tstats)
877 return -ENOMEM;
878 return 0;
882 * vti6_dev_init - initializer for all non fallback tunnel devices
883 * @dev: virtual device associated with tunnel
885 static int vti6_dev_init(struct net_device *dev)
887 struct ip6_tnl *t = netdev_priv(dev);
888 int err = vti6_dev_init_gen(dev);
890 if (err)
891 return err;
892 vti6_link_config(t);
893 return 0;
897 * vti6_fb_tnl_dev_init - initializer for fallback tunnel device
898 * @dev: fallback device
900 * Return: 0
902 static int __net_init vti6_fb_tnl_dev_init(struct net_device *dev)
904 struct ip6_tnl *t = netdev_priv(dev);
905 struct net *net = dev_net(dev);
906 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
908 t->parms.proto = IPPROTO_IPV6;
909 dev_hold(dev);
911 rcu_assign_pointer(ip6n->tnls_wc[0], t);
912 return 0;
915 static int vti6_validate(struct nlattr *tb[], struct nlattr *data[])
917 return 0;
920 static void vti6_netlink_parms(struct nlattr *data[],
921 struct __ip6_tnl_parm *parms)
923 memset(parms, 0, sizeof(*parms));
925 if (!data)
926 return;
928 if (data[IFLA_VTI_LINK])
929 parms->link = nla_get_u32(data[IFLA_VTI_LINK]);
931 if (data[IFLA_VTI_LOCAL])
932 parms->laddr = nla_get_in6_addr(data[IFLA_VTI_LOCAL]);
934 if (data[IFLA_VTI_REMOTE])
935 parms->raddr = nla_get_in6_addr(data[IFLA_VTI_REMOTE]);
937 if (data[IFLA_VTI_IKEY])
938 parms->i_key = nla_get_be32(data[IFLA_VTI_IKEY]);
940 if (data[IFLA_VTI_OKEY])
941 parms->o_key = nla_get_be32(data[IFLA_VTI_OKEY]);
944 static int vti6_newlink(struct net *src_net, struct net_device *dev,
945 struct nlattr *tb[], struct nlattr *data[])
947 struct net *net = dev_net(dev);
948 struct ip6_tnl *nt;
950 nt = netdev_priv(dev);
951 vti6_netlink_parms(data, &nt->parms);
953 nt->parms.proto = IPPROTO_IPV6;
955 if (vti6_locate(net, &nt->parms, 0))
956 return -EEXIST;
958 return vti6_tnl_create2(dev);
961 static void vti6_dellink(struct net_device *dev, struct list_head *head)
963 struct net *net = dev_net(dev);
964 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
966 if (dev != ip6n->fb_tnl_dev)
967 unregister_netdevice_queue(dev, head);
970 static int vti6_changelink(struct net_device *dev, struct nlattr *tb[],
971 struct nlattr *data[])
973 struct ip6_tnl *t;
974 struct __ip6_tnl_parm p;
975 struct net *net = dev_net(dev);
976 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
978 if (dev == ip6n->fb_tnl_dev)
979 return -EINVAL;
981 vti6_netlink_parms(data, &p);
983 t = vti6_locate(net, &p, 0);
985 if (t) {
986 if (t->dev != dev)
987 return -EEXIST;
988 } else
989 t = netdev_priv(dev);
991 return vti6_update(t, &p);
994 static size_t vti6_get_size(const struct net_device *dev)
996 return
997 /* IFLA_VTI_LINK */
998 nla_total_size(4) +
999 /* IFLA_VTI_LOCAL */
1000 nla_total_size(sizeof(struct in6_addr)) +
1001 /* IFLA_VTI_REMOTE */
1002 nla_total_size(sizeof(struct in6_addr)) +
1003 /* IFLA_VTI_IKEY */
1004 nla_total_size(4) +
1005 /* IFLA_VTI_OKEY */
1006 nla_total_size(4) +
1010 static int vti6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1012 struct ip6_tnl *tunnel = netdev_priv(dev);
1013 struct __ip6_tnl_parm *parm = &tunnel->parms;
1015 if (nla_put_u32(skb, IFLA_VTI_LINK, parm->link) ||
1016 nla_put_in6_addr(skb, IFLA_VTI_LOCAL, &parm->laddr) ||
1017 nla_put_in6_addr(skb, IFLA_VTI_REMOTE, &parm->raddr) ||
1018 nla_put_be32(skb, IFLA_VTI_IKEY, parm->i_key) ||
1019 nla_put_be32(skb, IFLA_VTI_OKEY, parm->o_key))
1020 goto nla_put_failure;
1021 return 0;
1023 nla_put_failure:
1024 return -EMSGSIZE;
1027 static const struct nla_policy vti6_policy[IFLA_VTI_MAX + 1] = {
1028 [IFLA_VTI_LINK] = { .type = NLA_U32 },
1029 [IFLA_VTI_LOCAL] = { .len = sizeof(struct in6_addr) },
1030 [IFLA_VTI_REMOTE] = { .len = sizeof(struct in6_addr) },
1031 [IFLA_VTI_IKEY] = { .type = NLA_U32 },
1032 [IFLA_VTI_OKEY] = { .type = NLA_U32 },
1035 static struct rtnl_link_ops vti6_link_ops __read_mostly = {
1036 .kind = "vti6",
1037 .maxtype = IFLA_VTI_MAX,
1038 .policy = vti6_policy,
1039 .priv_size = sizeof(struct ip6_tnl),
1040 .setup = vti6_dev_setup,
1041 .validate = vti6_validate,
1042 .newlink = vti6_newlink,
1043 .dellink = vti6_dellink,
1044 .changelink = vti6_changelink,
1045 .get_size = vti6_get_size,
1046 .fill_info = vti6_fill_info,
1047 .get_link_net = ip6_tnl_get_link_net,
1050 static void __net_exit vti6_destroy_tunnels(struct vti6_net *ip6n)
1052 int h;
1053 struct ip6_tnl *t;
1054 LIST_HEAD(list);
1056 for (h = 0; h < HASH_SIZE; h++) {
1057 t = rtnl_dereference(ip6n->tnls_r_l[h]);
1058 while (t) {
1059 unregister_netdevice_queue(t->dev, &list);
1060 t = rtnl_dereference(t->next);
1064 t = rtnl_dereference(ip6n->tnls_wc[0]);
1065 unregister_netdevice_queue(t->dev, &list);
1066 unregister_netdevice_many(&list);
1069 static int __net_init vti6_init_net(struct net *net)
1071 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1072 struct ip6_tnl *t = NULL;
1073 int err;
1075 ip6n->tnls[0] = ip6n->tnls_wc;
1076 ip6n->tnls[1] = ip6n->tnls_r_l;
1078 err = -ENOMEM;
1079 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6_vti0",
1080 NET_NAME_UNKNOWN, vti6_dev_setup);
1082 if (!ip6n->fb_tnl_dev)
1083 goto err_alloc_dev;
1084 dev_net_set(ip6n->fb_tnl_dev, net);
1085 ip6n->fb_tnl_dev->rtnl_link_ops = &vti6_link_ops;
1087 err = vti6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1088 if (err < 0)
1089 goto err_register;
1091 err = register_netdev(ip6n->fb_tnl_dev);
1092 if (err < 0)
1093 goto err_register;
1095 t = netdev_priv(ip6n->fb_tnl_dev);
1097 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
1098 return 0;
1100 err_register:
1101 vti6_dev_free(ip6n->fb_tnl_dev);
1102 err_alloc_dev:
1103 return err;
1106 static void __net_exit vti6_exit_net(struct net *net)
1108 struct vti6_net *ip6n = net_generic(net, vti6_net_id);
1110 rtnl_lock();
1111 vti6_destroy_tunnels(ip6n);
1112 rtnl_unlock();
1115 static struct pernet_operations vti6_net_ops = {
1116 .init = vti6_init_net,
1117 .exit = vti6_exit_net,
1118 .id = &vti6_net_id,
1119 .size = sizeof(struct vti6_net),
1122 static struct xfrm6_protocol vti_esp6_protocol __read_mostly = {
1123 .handler = vti6_rcv,
1124 .cb_handler = vti6_rcv_cb,
1125 .err_handler = vti6_err,
1126 .priority = 100,
1129 static struct xfrm6_protocol vti_ah6_protocol __read_mostly = {
1130 .handler = vti6_rcv,
1131 .cb_handler = vti6_rcv_cb,
1132 .err_handler = vti6_err,
1133 .priority = 100,
1136 static struct xfrm6_protocol vti_ipcomp6_protocol __read_mostly = {
1137 .handler = vti6_rcv,
1138 .cb_handler = vti6_rcv_cb,
1139 .err_handler = vti6_err,
1140 .priority = 100,
1143 static bool is_vti6_tunnel(const struct net_device *dev)
1145 return dev->netdev_ops == &vti6_netdev_ops;
1148 static int vti6_device_event(struct notifier_block *unused,
1149 unsigned long event, void *ptr)
1151 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1152 struct ip6_tnl *t = netdev_priv(dev);
1154 if (!is_vti6_tunnel(dev))
1155 return NOTIFY_DONE;
1157 switch (event) {
1158 case NETDEV_DOWN:
1159 if (!net_eq(t->net, dev_net(dev)))
1160 xfrm_garbage_collect(t->net);
1161 break;
1163 return NOTIFY_DONE;
1166 static struct notifier_block vti6_notifier_block __read_mostly = {
1167 .notifier_call = vti6_device_event,
1171 * vti6_tunnel_init - register protocol and reserve needed resources
1173 * Return: 0 on success
1175 static int __init vti6_tunnel_init(void)
1177 const char *msg;
1178 int err;
1180 register_netdevice_notifier(&vti6_notifier_block);
1182 msg = "tunnel device";
1183 err = register_pernet_device(&vti6_net_ops);
1184 if (err < 0)
1185 goto pernet_dev_failed;
1187 msg = "tunnel protocols";
1188 err = xfrm6_protocol_register(&vti_esp6_protocol, IPPROTO_ESP);
1189 if (err < 0)
1190 goto xfrm_proto_esp_failed;
1191 err = xfrm6_protocol_register(&vti_ah6_protocol, IPPROTO_AH);
1192 if (err < 0)
1193 goto xfrm_proto_ah_failed;
1194 err = xfrm6_protocol_register(&vti_ipcomp6_protocol, IPPROTO_COMP);
1195 if (err < 0)
1196 goto xfrm_proto_comp_failed;
1198 msg = "netlink interface";
1199 err = rtnl_link_register(&vti6_link_ops);
1200 if (err < 0)
1201 goto rtnl_link_failed;
1203 return 0;
1205 rtnl_link_failed:
1206 xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
1207 xfrm_proto_comp_failed:
1208 xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
1209 xfrm_proto_ah_failed:
1210 xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
1211 xfrm_proto_esp_failed:
1212 unregister_pernet_device(&vti6_net_ops);
1213 pernet_dev_failed:
1214 unregister_netdevice_notifier(&vti6_notifier_block);
1215 pr_err("vti6 init: failed to register %s\n", msg);
1216 return err;
1220 * vti6_tunnel_cleanup - free resources and unregister protocol
1222 static void __exit vti6_tunnel_cleanup(void)
1224 rtnl_link_unregister(&vti6_link_ops);
1225 xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
1226 xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
1227 xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
1228 unregister_pernet_device(&vti6_net_ops);
1229 unregister_netdevice_notifier(&vti6_notifier_block);
1232 module_init(vti6_tunnel_init);
1233 module_exit(vti6_tunnel_cleanup);
1234 MODULE_LICENSE("GPL");
1235 MODULE_ALIAS_RTNL_LINK("vti6");
1236 MODULE_ALIAS_NETDEV("ip6_vti0");
1237 MODULE_AUTHOR("Steffen Klassert");
1238 MODULE_DESCRIPTION("IPv6 virtual tunnel interface");