blob: 3944ea24c38cc4129b307556a7a5b9f1d690548b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 over IPv6 tunnel device
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Ville Nuorvala <vnuorval@tcs.hut.fi>
7 *
8 * $Id$
9 *
10 * Based on:
11 * linux/net/ipv6/sit.c
12 *
13 * RFC 2473
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080023#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/sockios.h>
27#include <linux/if.h>
28#include <linux/in.h>
29#include <linux/ip.h>
30#include <linux/if_tunnel.h>
31#include <linux/net.h>
32#include <linux/in6.h>
33#include <linux/netdevice.h>
34#include <linux/if_arp.h>
35#include <linux/icmpv6.h>
36#include <linux/init.h>
37#include <linux/route.h>
38#include <linux/rtnetlink.h>
39#include <linux/netfilter_ipv6.h>
40
41#include <asm/uaccess.h>
42#include <asm/atomic.h>
43
44#include <net/ip.h>
45#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <net/ip6_route.h>
47#include <net/addrconf.h>
48#include <net/ip6_tunnel.h>
49#include <net/xfrm.h>
50#include <net/dsfield.h>
51#include <net/inet_ecn.h>
52
53MODULE_AUTHOR("Ville Nuorvala");
54MODULE_DESCRIPTION("IPv6-in-IPv6 tunnel");
55MODULE_LICENSE("GPL");
56
57#define IPV6_TLV_TEL_DST_SIZE 8
58
59#ifdef IP6_TNL_DEBUG
60#define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __FUNCTION__)
61#else
62#define IP6_TNL_TRACE(x...) do {;} while(0)
63#endif
64
65#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
66
67#define HASH_SIZE 32
68
Al Viroe69a4adc2006-11-14 20:56:00 -080069#define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
71 (HASH_SIZE - 1))
72
73static int ip6ip6_fb_tnl_dev_init(struct net_device *dev);
74static int ip6ip6_tnl_dev_init(struct net_device *dev);
75static void ip6ip6_tnl_dev_setup(struct net_device *dev);
76
77/* the IPv6 tunnel fallback device */
78static struct net_device *ip6ip6_fb_tnl_dev;
79
80
81/* lists for storing tunnels in use */
82static struct ip6_tnl *tnls_r_l[HASH_SIZE];
83static struct ip6_tnl *tnls_wc[1];
84static struct ip6_tnl **tnls[2] = { tnls_wc, tnls_r_l };
85
86/* lock for the tunnel lists */
87static DEFINE_RWLOCK(ip6ip6_lock);
88
89static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
90{
91 struct dst_entry *dst = t->dst_cache;
92
93 if (dst && dst->obsolete &&
94 dst->ops->check(dst, t->dst_cookie) == NULL) {
95 t->dst_cache = NULL;
96 dst_release(dst);
97 return NULL;
98 }
99
100 return dst;
101}
102
103static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
104{
105 dst_release(t->dst_cache);
106 t->dst_cache = NULL;
107}
108
109static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
110{
111 struct rt6_info *rt = (struct rt6_info *) dst;
112 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
113 dst_release(t->dst_cache);
114 t->dst_cache = dst;
115}
116
117/**
118 * ip6ip6_tnl_lookup - fetch tunnel matching the end-point addresses
119 * @remote: the address of the tunnel exit-point
120 * @local: the address of the tunnel entry-point
121 *
122 * Return:
123 * tunnel matching given end-points if found,
124 * else fallback tunnel if its device is up,
125 * else %NULL
126 **/
127
128static struct ip6_tnl *
129ip6ip6_tnl_lookup(struct in6_addr *remote, struct in6_addr *local)
130{
131 unsigned h0 = HASH(remote);
132 unsigned h1 = HASH(local);
133 struct ip6_tnl *t;
134
135 for (t = tnls_r_l[h0 ^ h1]; t; t = t->next) {
136 if (ipv6_addr_equal(local, &t->parms.laddr) &&
137 ipv6_addr_equal(remote, &t->parms.raddr) &&
138 (t->dev->flags & IFF_UP))
139 return t;
140 }
141 if ((t = tnls_wc[0]) != NULL && (t->dev->flags & IFF_UP))
142 return t;
143
144 return NULL;
145}
146
147/**
148 * ip6ip6_bucket - get head of list matching given tunnel parameters
149 * @p: parameters containing tunnel end-points
150 *
151 * Description:
152 * ip6ip6_bucket() returns the head of the list matching the
153 * &struct in6_addr entries laddr and raddr in @p.
154 *
155 * Return: head of IPv6 tunnel list
156 **/
157
158static struct ip6_tnl **
159ip6ip6_bucket(struct ip6_tnl_parm *p)
160{
161 struct in6_addr *remote = &p->raddr;
162 struct in6_addr *local = &p->laddr;
163 unsigned h = 0;
164 int prio = 0;
165
166 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
167 prio = 1;
168 h = HASH(remote) ^ HASH(local);
169 }
170 return &tnls[prio][h];
171}
172
173/**
174 * ip6ip6_tnl_link - add tunnel to hash table
175 * @t: tunnel to be added
176 **/
177
178static void
179ip6ip6_tnl_link(struct ip6_tnl *t)
180{
181 struct ip6_tnl **tp = ip6ip6_bucket(&t->parms);
182
183 t->next = *tp;
184 write_lock_bh(&ip6ip6_lock);
185 *tp = t;
186 write_unlock_bh(&ip6ip6_lock);
187}
188
189/**
190 * ip6ip6_tnl_unlink - remove tunnel from hash table
191 * @t: tunnel to be removed
192 **/
193
194static void
195ip6ip6_tnl_unlink(struct ip6_tnl *t)
196{
197 struct ip6_tnl **tp;
198
199 for (tp = ip6ip6_bucket(&t->parms); *tp; tp = &(*tp)->next) {
200 if (t == *tp) {
201 write_lock_bh(&ip6ip6_lock);
202 *tp = t->next;
203 write_unlock_bh(&ip6ip6_lock);
204 break;
205 }
206 }
207}
208
209/**
210 * ip6_tnl_create() - create a new tunnel
211 * @p: tunnel parameters
212 * @pt: pointer to new tunnel
213 *
214 * Description:
215 * Create tunnel matching given parameters.
216 *
217 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800218 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 **/
220
Ville Nuorvala567131a2006-11-24 17:05:41 -0800221static struct ip6_tnl *ip6_tnl_create(struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct net_device *dev;
224 struct ip6_tnl *t;
225 char name[IFNAMSIZ];
226 int err;
227
228 if (p->name[0]) {
229 strlcpy(name, p->name, IFNAMSIZ);
230 } else {
231 int i;
232 for (i = 1; i < IP6_TNL_MAX; i++) {
233 sprintf(name, "ip6tnl%d", i);
234 if (__dev_get_by_name(name) == NULL)
235 break;
236 }
237 if (i == IP6_TNL_MAX)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800238 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 dev = alloc_netdev(sizeof (*t), name, ip6ip6_tnl_dev_setup);
241 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800242 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Patrick McHardy2941a482006-01-08 22:05:26 -0800244 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 dev->init = ip6ip6_tnl_dev_init;
246 t->parms = *p;
247
248 if ((err = register_netdevice(dev)) < 0) {
249 free_netdev(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800250 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 ip6ip6_tnl_link(t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800254 return t;
255failed:
256 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259/**
260 * ip6ip6_tnl_locate - find or create tunnel matching given parameters
261 * @p: tunnel parameters
262 * @create: != 0 if allowed to create new tunnel if no match found
263 *
264 * Description:
265 * ip6ip6_tnl_locate() first tries to locate an existing tunnel
266 * based on @parms. If this is unsuccessful, but @create is set a new
267 * tunnel device is created and registered for use.
268 *
269 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800270 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 **/
272
Ville Nuorvala567131a2006-11-24 17:05:41 -0800273static struct ip6_tnl *ip6ip6_tnl_locate(struct ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 struct in6_addr *remote = &p->raddr;
276 struct in6_addr *local = &p->laddr;
277 struct ip6_tnl *t;
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 for (t = *ip6ip6_bucket(p); t; t = t->next) {
280 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800281 ipv6_addr_equal(remote, &t->parms.raddr))
282 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800285 return NULL;
286 return ip6_tnl_create(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/**
290 * ip6ip6_tnl_dev_uninit - tunnel device uninitializer
291 * @dev: the device to be destroyed
292 *
293 * Description:
294 * ip6ip6_tnl_dev_uninit() removes tunnel from its list
295 **/
296
297static void
298ip6ip6_tnl_dev_uninit(struct net_device *dev)
299{
Patrick McHardy2941a482006-01-08 22:05:26 -0800300 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (dev == ip6ip6_fb_tnl_dev) {
303 write_lock_bh(&ip6ip6_lock);
304 tnls_wc[0] = NULL;
305 write_unlock_bh(&ip6ip6_lock);
306 } else {
307 ip6ip6_tnl_unlink(t);
308 }
309 ip6_tnl_dst_reset(t);
310 dev_put(dev);
311}
312
313/**
314 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
315 * @skb: received socket buffer
316 *
317 * Return:
318 * 0 if none was found,
319 * else index to encapsulation limit
320 **/
321
322static __u16
323parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
324{
325 struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
326 __u8 nexthdr = ipv6h->nexthdr;
327 __u16 off = sizeof (*ipv6h);
328
329 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
330 __u16 optlen = 0;
331 struct ipv6_opt_hdr *hdr;
332 if (raw + off + sizeof (*hdr) > skb->data &&
333 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
334 break;
335
336 hdr = (struct ipv6_opt_hdr *) (raw + off);
337 if (nexthdr == NEXTHDR_FRAGMENT) {
338 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
339 if (frag_hdr->frag_off)
340 break;
341 optlen = 8;
342 } else if (nexthdr == NEXTHDR_AUTH) {
343 optlen = (hdr->hdrlen + 2) << 2;
344 } else {
345 optlen = ipv6_optlen(hdr);
346 }
347 if (nexthdr == NEXTHDR_DEST) {
348 __u16 i = off + 2;
349 while (1) {
350 struct ipv6_tlv_tnl_enc_lim *tel;
351
352 /* No more room for encapsulation limit */
353 if (i + sizeof (*tel) > off + optlen)
354 break;
355
356 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
357 /* return index of option if found and valid */
358 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
359 tel->length == 1)
360 return i;
361 /* else jump to next option */
362 if (tel->type)
363 i += tel->length + 2;
364 else
365 i++;
366 }
367 }
368 nexthdr = hdr->nexthdr;
369 off += optlen;
370 }
371 return 0;
372}
373
374/**
375 * ip6ip6_err - tunnel error handler
376 *
377 * Description:
378 * ip6ip6_err() should handle errors in the tunnel according
379 * to the specifications in RFC 2473.
380 **/
381
Herbert Xud2acc342006-03-28 01:12:13 -0800382static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro04ce6902006-11-08 00:21:01 -0800384 int type, int code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
387 struct ip6_tnl *t;
388 int rel_msg = 0;
389 int rel_type = ICMPV6_DEST_UNREACH;
390 int rel_code = ICMPV6_ADDR_UNREACH;
391 __u32 rel_info = 0;
392 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800393 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* If the packet doesn't contain the original IPv6 header we are
396 in trouble since we might need the source address for further
397 processing of the error. */
398
399 read_lock(&ip6ip6_lock);
400 if ((t = ip6ip6_tnl_lookup(&ipv6h->daddr, &ipv6h->saddr)) == NULL)
401 goto out;
402
Herbert Xud2acc342006-03-28 01:12:13 -0800403 err = 0;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 switch (type) {
406 __u32 teli;
407 struct ipv6_tlv_tnl_enc_lim *tel;
408 __u32 mtu;
409 case ICMPV6_DEST_UNREACH:
410 if (net_ratelimit())
411 printk(KERN_WARNING
412 "%s: Path to destination invalid "
413 "or inactive!\n", t->parms.name);
414 rel_msg = 1;
415 break;
416 case ICMPV6_TIME_EXCEED:
417 if (code == ICMPV6_EXC_HOPLIMIT) {
418 if (net_ratelimit())
419 printk(KERN_WARNING
420 "%s: Too small hop limit or "
421 "routing loop in tunnel!\n",
422 t->parms.name);
423 rel_msg = 1;
424 }
425 break;
426 case ICMPV6_PARAMPROB:
427 /* ignore if parameter problem not caused by a tunnel
428 encapsulation limit sub-option */
429 if (code != ICMPV6_HDR_FIELD) {
430 break;
431 }
432 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
433
434 if (teli && teli == ntohl(info) - 2) {
435 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
436 if (tel->encap_limit == 0) {
437 if (net_ratelimit())
438 printk(KERN_WARNING
439 "%s: Too small encapsulation "
440 "limit or routing loop in "
441 "tunnel!\n", t->parms.name);
442 rel_msg = 1;
443 }
444 }
445 break;
446 case ICMPV6_PKT_TOOBIG:
447 mtu = ntohl(info) - offset;
448 if (mtu < IPV6_MIN_MTU)
449 mtu = IPV6_MIN_MTU;
450 t->dev->mtu = mtu;
451
Al Virocc6cdac2006-02-18 16:02:18 -0500452 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 rel_type = ICMPV6_PKT_TOOBIG;
454 rel_code = 0;
455 rel_info = mtu;
456 rel_msg = 1;
457 }
458 break;
459 }
460 if (rel_msg && pskb_may_pull(skb, offset + sizeof (*ipv6h))) {
461 struct rt6_info *rt;
462 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (!skb2)
465 goto out;
466
467 dst_release(skb2->dst);
468 skb2->dst = NULL;
469 skb_pull(skb2, offset);
470 skb2->nh.raw = skb2->data;
471
472 /* Try to guess incoming interface */
473 rt = rt6_lookup(&skb2->nh.ipv6h->saddr, NULL, 0, 0);
474
475 if (rt && rt->rt6i_dev)
476 skb2->dev = rt->rt6i_dev;
477
478 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
479
480 if (rt)
481 dst_release(&rt->u.dst);
482
483 kfree_skb(skb2);
484 }
485out:
486 read_unlock(&ip6ip6_lock);
Herbert Xud2acc342006-03-28 01:12:13 -0800487 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490static inline void ip6ip6_ecn_decapsulate(struct ipv6hdr *outer_iph,
491 struct sk_buff *skb)
492{
493 struct ipv6hdr *inner_iph = skb->nh.ipv6h;
494
495 if (INET_ECN_is_ce(ipv6_get_dsfield(outer_iph)))
496 IP6_ECN_set_ce(inner_iph);
497}
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800498static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
499{
500 struct ip6_tnl_parm *p = &t->parms;
501 int ret = 0;
502
503 if (p->flags & IP6_TNL_F_CAP_RCV) {
504 struct net_device *ldev = NULL;
505
506 if (p->link)
507 ldev = dev_get_by_index(p->link);
508
509 if ((ipv6_addr_is_multicast(&p->laddr) ||
510 likely(ipv6_chk_addr(&p->laddr, ldev, 0))) &&
511 likely(!ipv6_chk_addr(&p->raddr, NULL, 0)))
512 ret = 1;
513
514 if (ldev)
515 dev_put(ldev);
516 }
517 return ret;
518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520/**
521 * ip6ip6_rcv - decapsulate IPv6 packet and retransmit it locally
522 * @skb: received socket buffer
523 *
524 * Return: 0
525 **/
526
527static int
Herbert Xud2acc342006-03-28 01:12:13 -0800528ip6ip6_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 struct ipv6hdr *ipv6h;
531 struct ip6_tnl *t;
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 ipv6h = skb->nh.ipv6h;
534
535 read_lock(&ip6ip6_lock);
536
537 if ((t = ip6ip6_tnl_lookup(&ipv6h->saddr, &ipv6h->daddr)) != NULL) {
538 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Ken-ichirou MATSUZAWA9f0ede52005-11-09 13:08:29 -0800539 read_unlock(&ip6ip6_lock);
Herbert Xu50fba2a2006-04-04 13:50:45 -0700540 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800543 if (!ip6_tnl_rcv_ctl(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 t->stat.rx_dropped++;
545 read_unlock(&ip6ip6_lock);
546 goto discard;
547 }
548 secpath_reset(skb);
549 skb->mac.raw = skb->nh.raw;
550 skb->nh.raw = skb->data;
551 skb->protocol = htons(ETH_P_IPV6);
552 skb->pkt_type = PACKET_HOST;
553 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
554 skb->dev = t->dev;
555 dst_release(skb->dst);
556 skb->dst = NULL;
Yasuyuki Kozakai53ab61c2006-11-06 10:06:23 -0800557 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
559 ipv6_copy_dscp(ipv6h, skb->nh.ipv6h);
560 ip6ip6_ecn_decapsulate(ipv6h, skb);
561 t->stat.rx_packets++;
562 t->stat.rx_bytes += skb->len;
563 netif_rx(skb);
564 read_unlock(&ip6ip6_lock);
565 return 0;
566 }
567 read_unlock(&ip6ip6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700569
570discard:
571 kfree_skb(skb);
572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575static inline struct ipv6_txoptions *create_tel(__u8 encap_limit)
576{
577 struct ipv6_tlv_tnl_enc_lim *tel;
578 struct ipv6_txoptions *opt;
579 __u8 *raw;
580
581 int opt_len = sizeof(*opt) + 8;
582
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700583 if (!(opt = kzalloc(opt_len, GFP_ATOMIC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return NULL;
585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 opt->tot_len = opt_len;
587 opt->dst0opt = (struct ipv6_opt_hdr *) (opt + 1);
588 opt->opt_nflen = 8;
589
590 tel = (struct ipv6_tlv_tnl_enc_lim *) (opt->dst0opt + 1);
591 tel->type = IPV6_TLV_TNL_ENCAP_LIMIT;
592 tel->length = 1;
593 tel->encap_limit = encap_limit;
594
595 raw = (__u8 *) opt->dst0opt;
596 raw[5] = IPV6_TLV_PADN;
597 raw[6] = 1;
598
599 return opt;
600}
601
602/**
603 * ip6ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
604 * @t: the outgoing tunnel device
605 * @hdr: IPv6 header from the incoming packet
606 *
607 * Description:
608 * Avoid trivial tunneling loop by checking that tunnel exit-point
609 * doesn't match source of incoming packet.
610 *
611 * Return:
612 * 1 if conflict,
613 * 0 else
614 **/
615
616static inline int
617ip6ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
618{
619 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
620}
621
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800622static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
623{
624 struct ip6_tnl_parm *p = &t->parms;
625 int ret = 0;
626
627 if (p->flags & IP6_TNL_F_CAP_XMIT) {
628 struct net_device *ldev = NULL;
629
630 if (p->link)
631 ldev = dev_get_by_index(p->link);
632
633 if (unlikely(!ipv6_chk_addr(&p->laddr, ldev, 0)))
634 printk(KERN_WARNING
635 "%s xmit: Local address not yet configured!\n",
636 p->name);
637 else if (!ipv6_addr_is_multicast(&p->raddr) &&
638 unlikely(ipv6_chk_addr(&p->raddr, NULL, 0)))
639 printk(KERN_WARNING
640 "%s xmit: Routing loop! "
641 "Remote address found on this node!\n",
642 p->name);
643 else
644 ret = 1;
645 if (ldev)
646 dev_put(ldev);
647 }
648 return ret;
649}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650/**
651 * ip6ip6_tnl_xmit - encapsulate packet and send
652 * @skb: the outgoing socket buffer
653 * @dev: the outgoing tunnel device
654 *
655 * Description:
656 * Build new header and do some sanity checks on the packet before sending
657 * it.
658 *
659 * Return:
660 * 0
661 **/
662
663static int
664ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
665{
Patrick McHardy2941a482006-01-08 22:05:26 -0800666 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 struct net_device_stats *stats = &t->stat;
668 struct ipv6hdr *ipv6h = skb->nh.ipv6h;
669 struct ipv6_txoptions *opt = NULL;
670 int encap_limit = -1;
671 __u16 offset;
672 struct flowi fl;
673 struct dst_entry *dst;
674 struct net_device *tdev;
675 int mtu;
676 int max_headroom = sizeof(struct ipv6hdr);
677 u8 proto;
678 int err;
679 int pkt_len;
680 int dsfield;
681
682 if (t->recursion++) {
683 stats->collisions++;
684 goto tx_err;
685 }
686 if (skb->protocol != htons(ETH_P_IPV6) ||
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800687 !ip6_tnl_xmit_ctl(t) || ip6ip6_tnl_addr_conflict(t, ipv6h))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 goto tx_err;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if ((offset = parse_tlv_tnl_enc_lim(skb, skb->nh.raw)) > 0) {
691 struct ipv6_tlv_tnl_enc_lim *tel;
692 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->nh.raw[offset];
693 if (tel->encap_limit == 0) {
694 icmpv6_send(skb, ICMPV6_PARAMPROB,
695 ICMPV6_HDR_FIELD, offset + 2, skb->dev);
696 goto tx_err;
697 }
698 encap_limit = tel->encap_limit - 1;
699 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT)) {
700 encap_limit = t->parms.encap_limit;
701 }
702 memcpy(&fl, &t->fl, sizeof (fl));
703 proto = fl.proto;
704
705 dsfield = ipv6_get_dsfield(ipv6h);
706 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
Al Viro90bcaf72006-11-08 00:25:17 -0800707 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
Al Viro90bcaf72006-11-08 00:25:17 -0800709 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (encap_limit >= 0 && (opt = create_tel(encap_limit)) == NULL)
712 goto tx_err;
713
714 if ((dst = ip6_tnl_dst_check(t)) != NULL)
715 dst_hold(dst);
Patrick McHardya57ebc92005-09-08 14:27:47 -0700716 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 dst = ip6_route_output(NULL, &fl);
718
Patrick McHardya57ebc92005-09-08 14:27:47 -0700719 if (dst->error || xfrm_lookup(&dst, &fl, NULL, 0) < 0)
720 goto tx_err_link_failure;
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 tdev = dst->dev;
724
725 if (tdev == dev) {
726 stats->collisions++;
727 if (net_ratelimit())
728 printk(KERN_WARNING
729 "%s: Local routing loop detected!\n",
730 t->parms.name);
731 goto tx_err_dst_release;
732 }
733 mtu = dst_mtu(dst) - sizeof (*ipv6h);
734 if (opt) {
735 max_headroom += 8;
736 mtu -= 8;
737 }
738 if (mtu < IPV6_MIN_MTU)
739 mtu = IPV6_MIN_MTU;
740 if (skb->dst && mtu < dst_mtu(skb->dst)) {
741 struct rt6_info *rt = (struct rt6_info *) skb->dst;
742 rt->rt6i_flags |= RTF_MODIFIED;
743 rt->u.dst.metrics[RTAX_MTU-1] = mtu;
744 }
745 if (skb->len > mtu) {
746 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
747 goto tx_err_dst_release;
748 }
749
750 /*
751 * Okay, now see if we can stuff it in the buffer as-is.
752 */
753 max_headroom += LL_RESERVED_SPACE(tdev);
754
755 if (skb_headroom(skb) < max_headroom ||
756 skb_cloned(skb) || skb_shared(skb)) {
757 struct sk_buff *new_skb;
758
759 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
760 goto tx_err_dst_release;
761
762 if (skb->sk)
763 skb_set_owner_w(new_skb, skb->sk);
764 kfree_skb(skb);
765 skb = new_skb;
766 }
767 dst_release(skb->dst);
768 skb->dst = dst_clone(dst);
769
770 skb->h.raw = skb->nh.raw;
771
772 if (opt)
773 ipv6_push_nfrag_opts(skb, opt, &proto, NULL);
774
775 skb->nh.raw = skb_push(skb, sizeof(struct ipv6hdr));
776 ipv6h = skb->nh.ipv6h;
Al Viro90bcaf72006-11-08 00:25:17 -0800777 *(__be32*)ipv6h = fl.fl6_flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 dsfield = INET_ECN_encapsulate(0, dsfield);
779 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
780 ipv6h->payload_len = htons(skb->len - sizeof(struct ipv6hdr));
781 ipv6h->hop_limit = t->parms.hop_limit;
782 ipv6h->nexthdr = proto;
783 ipv6_addr_copy(&ipv6h->saddr, &fl.fl6_src);
784 ipv6_addr_copy(&ipv6h->daddr, &fl.fl6_dst);
785 nf_reset(skb);
786 pkt_len = skb->len;
787 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL,
788 skb->dst->dev, dst_output);
789
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200790 if (net_xmit_eval(err) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 stats->tx_bytes += pkt_len;
792 stats->tx_packets++;
793 } else {
794 stats->tx_errors++;
795 stats->tx_aborted_errors++;
796 }
797 ip6_tnl_dst_store(t, dst);
798
Jesper Juhla51482b2005-11-08 09:41:34 -0800799 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 t->recursion--;
802 return 0;
803tx_err_link_failure:
804 stats->tx_carrier_errors++;
805 dst_link_failure(skb);
806tx_err_dst_release:
807 dst_release(dst);
Jesper Juhla51482b2005-11-08 09:41:34 -0800808 kfree(opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809tx_err:
810 stats->tx_errors++;
811 stats->tx_dropped++;
812 kfree_skb(skb);
813 t->recursion--;
814 return 0;
815}
816
817static void ip6_tnl_set_cap(struct ip6_tnl *t)
818{
819 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800820 int ltype = ipv6_addr_type(&p->laddr);
821 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
824
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800825 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
826 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
827 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800828 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800829 if (ltype&IPV6_ADDR_UNICAST)
830 p->flags |= IP6_TNL_F_CAP_XMIT;
831 if (rtype&IPV6_ADDR_UNICAST)
832 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834}
835
836static void ip6ip6_tnl_link_config(struct ip6_tnl *t)
837{
838 struct net_device *dev = t->dev;
839 struct ip6_tnl_parm *p = &t->parms;
840 struct flowi *fl = &t->fl;
841
842 memcpy(&dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
843 memcpy(&dev->broadcast, &p->raddr, sizeof(struct in6_addr));
844
845 /* Set up flowi template */
846 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
847 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
848 fl->oif = p->link;
849 fl->fl6_flowlabel = 0;
850
851 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
852 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
853 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
854 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
855
856 ip6_tnl_set_cap(t);
857
858 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
859 dev->flags |= IFF_POINTOPOINT;
860 else
861 dev->flags &= ~IFF_POINTOPOINT;
862
863 dev->iflink = p->link;
864
865 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800866 int strict = (ipv6_addr_type(&p->raddr) &
867 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 struct rt6_info *rt = rt6_lookup(&p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800870 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (rt == NULL)
873 return;
874
875 if (rt->rt6i_dev) {
876 dev->hard_header_len = rt->rt6i_dev->hard_header_len +
877 sizeof (struct ipv6hdr);
878
879 dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
880
881 if (dev->mtu < IPV6_MIN_MTU)
882 dev->mtu = IPV6_MIN_MTU;
883 }
884 dst_release(&rt->u.dst);
885 }
886}
887
888/**
889 * ip6ip6_tnl_change - update the tunnel parameters
890 * @t: tunnel to be changed
891 * @p: tunnel configuration parameters
892 * @active: != 0 if tunnel is ready for use
893 *
894 * Description:
895 * ip6ip6_tnl_change() updates the tunnel parameters
896 **/
897
898static int
899ip6ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
900{
901 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
902 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
903 t->parms.flags = p->flags;
904 t->parms.hop_limit = p->hop_limit;
905 t->parms.encap_limit = p->encap_limit;
906 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -0700907 t->parms.link = p->link;
Hugo Santos0c088892006-02-24 13:16:25 -0800908 ip6_tnl_dst_reset(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 ip6ip6_tnl_link_config(t);
910 return 0;
911}
912
913/**
914 * ip6ip6_tnl_ioctl - configure ipv6 tunnels from userspace
915 * @dev: virtual device associated with tunnel
916 * @ifr: parameters passed from userspace
917 * @cmd: command to be performed
918 *
919 * Description:
920 * ip6ip6_tnl_ioctl() is used for managing IPv6 tunnels
921 * from userspace.
922 *
923 * The possible commands are the following:
924 * %SIOCGETTUNNEL: get tunnel parameters for device
925 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
926 * %SIOCCHGTUNNEL: change tunnel parameters to those given
927 * %SIOCDELTUNNEL: delete tunnel
928 *
929 * The fallback device "ip6tnl0", created during module
930 * initialization, can be used for creating other tunnel devices.
931 *
932 * Return:
933 * 0 on success,
934 * %-EFAULT if unable to copy data to or from userspace,
935 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
936 * %-EINVAL if passed tunnel parameters are invalid,
937 * %-EEXIST if changing a tunnel's parameters would cause a conflict
938 * %-ENODEV if attempting to change or delete a nonexisting device
939 **/
940
941static int
942ip6ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
943{
944 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 struct ip6_tnl_parm p;
946 struct ip6_tnl *t = NULL;
947
948 switch (cmd) {
949 case SIOCGETTUNNEL:
950 if (dev == ip6ip6_fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -0800951 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 err = -EFAULT;
953 break;
954 }
Ville Nuorvala567131a2006-11-24 17:05:41 -0800955 t = ip6ip6_tnl_locate(&p, 0);
956 }
957 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -0800958 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 memcpy(&p, &t->parms, sizeof (p));
960 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
961 err = -EFAULT;
962 }
963 break;
964 case SIOCADDTUNNEL:
965 case SIOCCHGTUNNEL:
966 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (!capable(CAP_NET_ADMIN))
968 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -0800969 err = -EFAULT;
970 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -0800972 err = -EINVAL;
973 if (p.proto != IPPROTO_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -0800975 t = ip6ip6_tnl_locate(&p, cmd == SIOCADDTUNNEL);
976 if (dev != ip6ip6_fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
977 if (t != NULL) {
978 if (t->dev != dev) {
979 err = -EEXIST;
980 break;
981 }
982 } else
983 t = netdev_priv(dev);
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 ip6ip6_tnl_unlink(t);
986 err = ip6ip6_tnl_change(t, &p);
987 ip6ip6_tnl_link(t);
988 netdev_state_change(dev);
989 }
Ville Nuorvala567131a2006-11-24 17:05:41 -0800990 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -0800992 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
993 err = -EFAULT;
994
995 } else
996 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 break;
998 case SIOCDELTUNNEL:
999 err = -EPERM;
1000 if (!capable(CAP_NET_ADMIN))
1001 break;
1002
1003 if (dev == ip6ip6_fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001004 err = -EFAULT;
1005 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001007 err = -ENOENT;
1008 if ((t = ip6ip6_tnl_locate(&p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001010 err = -EPERM;
1011 if (t->dev == ip6ip6_fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001013 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001015 err = unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 break;
1017 default:
1018 err = -EINVAL;
1019 }
1020 return err;
1021}
1022
1023/**
1024 * ip6ip6_tnl_get_stats - return the stats for tunnel device
1025 * @dev: virtual device associated with tunnel
1026 *
1027 * Return: stats for device
1028 **/
1029
1030static struct net_device_stats *
1031ip6ip6_tnl_get_stats(struct net_device *dev)
1032{
Patrick McHardy2941a482006-01-08 22:05:26 -08001033 return &(((struct ip6_tnl *)netdev_priv(dev))->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
1036/**
1037 * ip6ip6_tnl_change_mtu - change mtu manually for tunnel device
1038 * @dev: virtual device associated with tunnel
1039 * @new_mtu: the new mtu
1040 *
1041 * Return:
1042 * 0 on success,
1043 * %-EINVAL if mtu too small
1044 **/
1045
1046static int
1047ip6ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
1048{
1049 if (new_mtu < IPV6_MIN_MTU) {
1050 return -EINVAL;
1051 }
1052 dev->mtu = new_mtu;
1053 return 0;
1054}
1055
1056/**
1057 * ip6ip6_tnl_dev_setup - setup virtual tunnel device
1058 * @dev: virtual device associated with tunnel
1059 *
1060 * Description:
1061 * Initialize function pointers and device parameters
1062 **/
1063
1064static void ip6ip6_tnl_dev_setup(struct net_device *dev)
1065{
1066 SET_MODULE_OWNER(dev);
1067 dev->uninit = ip6ip6_tnl_dev_uninit;
1068 dev->destructor = free_netdev;
1069 dev->hard_start_xmit = ip6ip6_tnl_xmit;
1070 dev->get_stats = ip6ip6_tnl_get_stats;
1071 dev->do_ioctl = ip6ip6_tnl_ioctl;
1072 dev->change_mtu = ip6ip6_tnl_change_mtu;
1073
1074 dev->type = ARPHRD_TUNNEL6;
1075 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1076 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1077 dev->flags |= IFF_NOARP;
1078 dev->addr_len = sizeof(struct in6_addr);
1079}
1080
1081
1082/**
1083 * ip6ip6_tnl_dev_init_gen - general initializer for all tunnel devices
1084 * @dev: virtual device associated with tunnel
1085 **/
1086
1087static inline void
1088ip6ip6_tnl_dev_init_gen(struct net_device *dev)
1089{
Patrick McHardy2941a482006-01-08 22:05:26 -08001090 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 t->fl.proto = IPPROTO_IPV6;
1092 t->dev = dev;
1093 strcpy(t->parms.name, dev->name);
1094}
1095
1096/**
1097 * ip6ip6_tnl_dev_init - initializer for all non fallback tunnel devices
1098 * @dev: virtual device associated with tunnel
1099 **/
1100
1101static int
1102ip6ip6_tnl_dev_init(struct net_device *dev)
1103{
Patrick McHardy2941a482006-01-08 22:05:26 -08001104 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 ip6ip6_tnl_dev_init_gen(dev);
1106 ip6ip6_tnl_link_config(t);
1107 return 0;
1108}
1109
1110/**
1111 * ip6ip6_fb_tnl_dev_init - initializer for fallback tunnel device
1112 * @dev: fallback device
1113 *
1114 * Return: 0
1115 **/
1116
1117static int
1118ip6ip6_fb_tnl_dev_init(struct net_device *dev)
1119{
Patrick McHardy2941a482006-01-08 22:05:26 -08001120 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 ip6ip6_tnl_dev_init_gen(dev);
1122 dev_hold(dev);
1123 tnls_wc[0] = t;
1124 return 0;
1125}
1126
1127static struct xfrm6_tunnel ip6ip6_handler = {
Patrick McHardy03037702005-07-19 14:03:34 -07001128 .handler = ip6ip6_rcv,
1129 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001130 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131};
1132
1133/**
1134 * ip6_tunnel_init - register protocol and reserve needed resources
1135 *
1136 * Return: 0 on success
1137 **/
1138
1139static int __init ip6_tunnel_init(void)
1140{
1141 int err;
1142
Herbert Xud2acc342006-03-28 01:12:13 -08001143 if (xfrm6_tunnel_register(&ip6ip6_handler)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 printk(KERN_ERR "ip6ip6 init: can't register tunnel\n");
1145 return -EAGAIN;
1146 }
1147 ip6ip6_fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1148 ip6ip6_tnl_dev_setup);
1149
1150 if (!ip6ip6_fb_tnl_dev) {
1151 err = -ENOMEM;
1152 goto fail;
1153 }
1154 ip6ip6_fb_tnl_dev->init = ip6ip6_fb_tnl_dev_init;
1155
1156 if ((err = register_netdev(ip6ip6_fb_tnl_dev))) {
1157 free_netdev(ip6ip6_fb_tnl_dev);
1158 goto fail;
1159 }
1160 return 0;
1161fail:
Herbert Xud2acc342006-03-28 01:12:13 -08001162 xfrm6_tunnel_deregister(&ip6ip6_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return err;
1164}
1165
Yasuyuki Kozakaib3fdd9f2006-11-06 10:06:22 -08001166static void __exit ip6ip6_destroy_tunnels(void)
1167{
1168 int h;
1169 struct ip6_tnl *t;
1170
1171 for (h = 0; h < HASH_SIZE; h++) {
1172 while ((t = tnls_r_l[h]) != NULL)
1173 unregister_netdevice(t->dev);
1174 }
1175
1176 t = tnls_wc[0];
1177 unregister_netdevice(t->dev);
1178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180/**
1181 * ip6_tunnel_cleanup - free resources and unregister protocol
1182 **/
1183
1184static void __exit ip6_tunnel_cleanup(void)
1185{
Herbert Xud2acc342006-03-28 01:12:13 -08001186 if (xfrm6_tunnel_deregister(&ip6ip6_handler))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 printk(KERN_INFO "ip6ip6 close: can't deregister tunnel\n");
1188
Yasuyuki Kozakaib3fdd9f2006-11-06 10:06:22 -08001189 rtnl_lock();
1190 ip6ip6_destroy_tunnels();
1191 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194module_init(ip6_tunnel_init);
1195module_exit(ip6_tunnel_cleanup);