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