USB: serial: add IDs for WinChipHead USB->RS232 adapter
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / ipv6 / ip6_tunnel.c
blob81b78878d5e693aa7d33a7f31194e1edcbb5c389
1 /*
2 * IPv6 tunneling device
3 * Linux INET6 implementation
5 * Authors:
6 * Ville Nuorvala <vnuorval@tcs.hut.fi>
7 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
9 * Based on:
10 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
12 * RFC 2473
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
21 #include <linux/module.h>
22 #include <linux/capability.h>
23 #include <linux/errno.h>
24 #include <linux/types.h>
25 #include <linux/sockios.h>
26 #include <linux/icmp.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 #include <linux/slab.h>
42 #include <asm/uaccess.h>
43 #include <asm/atomic.h>
45 #include <net/icmp.h>
46 #include <net/ip.h>
47 #include <net/ipv6.h>
48 #include <net/ip6_route.h>
49 #include <net/addrconf.h>
50 #include <net/ip6_tunnel.h>
51 #include <net/xfrm.h>
52 #include <net/dsfield.h>
53 #include <net/inet_ecn.h>
54 #include <net/net_namespace.h>
55 #include <net/netns/generic.h>
57 MODULE_AUTHOR("Ville Nuorvala");
58 MODULE_DESCRIPTION("IPv6 tunneling device");
59 MODULE_LICENSE("GPL");
60 MODULE_ALIAS_NETDEV("ip6tnl0");
62 #define IPV6_TLV_TEL_DST_SIZE 8
64 #ifdef IP6_TNL_DEBUG
65 #define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __func__)
66 #else
67 #define IP6_TNL_TRACE(x...) do {;} while(0)
68 #endif
70 #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
71 #define IPV6_TCLASS_SHIFT 20
73 #define HASH_SIZE 32
75 #define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
76 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
77 (HASH_SIZE - 1))
79 static void ip6_tnl_dev_init(struct net_device *dev);
80 static void ip6_tnl_dev_setup(struct net_device *dev);
82 static int ip6_tnl_net_id __read_mostly;
83 struct ip6_tnl_net {
84 /* the IPv6 tunnel fallback device */
85 struct net_device *fb_tnl_dev;
86 /* lists for storing tunnels in use */
87 struct ip6_tnl *tnls_r_l[HASH_SIZE];
88 struct ip6_tnl *tnls_wc[1];
89 struct ip6_tnl **tnls[2];
93 * Locking : hash tables are protected by RCU and a spinlock
95 static DEFINE_SPINLOCK(ip6_tnl_lock);
97 static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
99 struct dst_entry *dst = t->dst_cache;
101 if (dst && dst->obsolete &&
102 dst->ops->check(dst, t->dst_cookie) == NULL) {
103 t->dst_cache = NULL;
104 dst_release(dst);
105 return NULL;
108 return dst;
111 static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
113 dst_release(t->dst_cache);
114 t->dst_cache = NULL;
117 static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
119 struct rt6_info *rt = (struct rt6_info *) dst;
120 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
121 dst_release(t->dst_cache);
122 t->dst_cache = dst;
126 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
127 * @remote: the address of the tunnel exit-point
128 * @local: the address of the tunnel entry-point
130 * Return:
131 * tunnel matching given end-points if found,
132 * else fallback tunnel if its device is up,
133 * else %NULL
136 #define for_each_ip6_tunnel_rcu(start) \
137 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
139 static struct ip6_tnl *
140 ip6_tnl_lookup(struct net *net, struct in6_addr *remote, struct in6_addr *local)
142 unsigned h0 = HASH(remote);
143 unsigned h1 = HASH(local);
144 struct ip6_tnl *t;
145 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
147 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[h0 ^ h1]) {
148 if (ipv6_addr_equal(local, &t->parms.laddr) &&
149 ipv6_addr_equal(remote, &t->parms.raddr) &&
150 (t->dev->flags & IFF_UP))
151 return t;
153 t = rcu_dereference(ip6n->tnls_wc[0]);
154 if (t && (t->dev->flags & IFF_UP))
155 return t;
157 return NULL;
161 * ip6_tnl_bucket - get head of list matching given tunnel parameters
162 * @p: parameters containing tunnel end-points
164 * Description:
165 * ip6_tnl_bucket() returns the head of the list matching the
166 * &struct in6_addr entries laddr and raddr in @p.
168 * Return: head of IPv6 tunnel list
171 static struct ip6_tnl **
172 ip6_tnl_bucket(struct ip6_tnl_net *ip6n, struct ip6_tnl_parm *p)
174 struct in6_addr *remote = &p->raddr;
175 struct in6_addr *local = &p->laddr;
176 unsigned h = 0;
177 int prio = 0;
179 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
180 prio = 1;
181 h = HASH(remote) ^ HASH(local);
183 return &ip6n->tnls[prio][h];
187 * ip6_tnl_link - add tunnel to hash table
188 * @t: tunnel to be added
191 static void
192 ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
194 struct ip6_tnl **tp = ip6_tnl_bucket(ip6n, &t->parms);
196 spin_lock_bh(&ip6_tnl_lock);
197 t->next = *tp;
198 rcu_assign_pointer(*tp, t);
199 spin_unlock_bh(&ip6_tnl_lock);
203 * ip6_tnl_unlink - remove tunnel from hash table
204 * @t: tunnel to be removed
207 static void
208 ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
210 struct ip6_tnl **tp;
212 for (tp = ip6_tnl_bucket(ip6n, &t->parms); *tp; tp = &(*tp)->next) {
213 if (t == *tp) {
214 spin_lock_bh(&ip6_tnl_lock);
215 *tp = t->next;
216 spin_unlock_bh(&ip6_tnl_lock);
217 break;
223 * ip6_tnl_create() - create a new tunnel
224 * @p: tunnel parameters
225 * @pt: pointer to new tunnel
227 * Description:
228 * Create tunnel matching given parameters.
230 * Return:
231 * created tunnel or NULL
234 static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p)
236 struct net_device *dev;
237 struct ip6_tnl *t;
238 char name[IFNAMSIZ];
239 int err;
240 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
242 if (p->name[0])
243 strlcpy(name, p->name, IFNAMSIZ);
244 else
245 sprintf(name, "ip6tnl%%d");
247 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
248 if (dev == NULL)
249 goto failed;
251 dev_net_set(dev, net);
253 if (strchr(name, '%')) {
254 if (dev_alloc_name(dev, name) < 0)
255 goto failed_free;
258 t = netdev_priv(dev);
259 t->parms = *p;
260 ip6_tnl_dev_init(dev);
262 if ((err = register_netdevice(dev)) < 0)
263 goto failed_free;
265 dev_hold(dev);
266 ip6_tnl_link(ip6n, t);
267 return t;
269 failed_free:
270 free_netdev(dev);
271 failed:
272 return NULL;
276 * ip6_tnl_locate - find or create tunnel matching given parameters
277 * @p: tunnel parameters
278 * @create: != 0 if allowed to create new tunnel if no match found
280 * Description:
281 * ip6_tnl_locate() first tries to locate an existing tunnel
282 * based on @parms. If this is unsuccessful, but @create is set a new
283 * tunnel device is created and registered for use.
285 * Return:
286 * matching tunnel or NULL
289 static struct ip6_tnl *ip6_tnl_locate(struct net *net,
290 struct ip6_tnl_parm *p, int create)
292 struct in6_addr *remote = &p->raddr;
293 struct in6_addr *local = &p->laddr;
294 struct ip6_tnl *t;
295 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
297 for (t = *ip6_tnl_bucket(ip6n, p); t; t = t->next) {
298 if (ipv6_addr_equal(local, &t->parms.laddr) &&
299 ipv6_addr_equal(remote, &t->parms.raddr))
300 return t;
302 if (!create)
303 return NULL;
304 return ip6_tnl_create(net, p);
308 * ip6_tnl_dev_uninit - tunnel device uninitializer
309 * @dev: the device to be destroyed
311 * Description:
312 * ip6_tnl_dev_uninit() removes tunnel from its list
315 static void
316 ip6_tnl_dev_uninit(struct net_device *dev)
318 struct ip6_tnl *t = netdev_priv(dev);
319 struct net *net = dev_net(dev);
320 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
322 if (dev == ip6n->fb_tnl_dev) {
323 spin_lock_bh(&ip6_tnl_lock);
324 ip6n->tnls_wc[0] = NULL;
325 spin_unlock_bh(&ip6_tnl_lock);
326 } else {
327 ip6_tnl_unlink(ip6n, t);
329 ip6_tnl_dst_reset(t);
330 dev_put(dev);
334 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
335 * @skb: received socket buffer
337 * Return:
338 * 0 if none was found,
339 * else index to encapsulation limit
342 static __u16
343 parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
345 struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
346 __u8 nexthdr = ipv6h->nexthdr;
347 __u16 off = sizeof (*ipv6h);
349 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
350 __u16 optlen = 0;
351 struct ipv6_opt_hdr *hdr;
352 if (raw + off + sizeof (*hdr) > skb->data &&
353 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
354 break;
356 hdr = (struct ipv6_opt_hdr *) (raw + off);
357 if (nexthdr == NEXTHDR_FRAGMENT) {
358 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
359 if (frag_hdr->frag_off)
360 break;
361 optlen = 8;
362 } else if (nexthdr == NEXTHDR_AUTH) {
363 optlen = (hdr->hdrlen + 2) << 2;
364 } else {
365 optlen = ipv6_optlen(hdr);
367 if (nexthdr == NEXTHDR_DEST) {
368 __u16 i = off + 2;
369 while (1) {
370 struct ipv6_tlv_tnl_enc_lim *tel;
372 /* No more room for encapsulation limit */
373 if (i + sizeof (*tel) > off + optlen)
374 break;
376 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
377 /* return index of option if found and valid */
378 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
379 tel->length == 1)
380 return i;
381 /* else jump to next option */
382 if (tel->type)
383 i += tel->length + 2;
384 else
385 i++;
388 nexthdr = hdr->nexthdr;
389 off += optlen;
391 return 0;
395 * ip6_tnl_err - tunnel error handler
397 * Description:
398 * ip6_tnl_err() should handle errors in the tunnel according
399 * to the specifications in RFC 2473.
402 static int
403 ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
404 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
406 struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
407 struct ip6_tnl *t;
408 int rel_msg = 0;
409 u8 rel_type = ICMPV6_DEST_UNREACH;
410 u8 rel_code = ICMPV6_ADDR_UNREACH;
411 __u32 rel_info = 0;
412 __u16 len;
413 int err = -ENOENT;
415 /* If the packet doesn't contain the original IPv6 header we are
416 in trouble since we might need the source address for further
417 processing of the error. */
419 rcu_read_lock();
420 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
421 &ipv6h->saddr)) == NULL)
422 goto out;
424 if (t->parms.proto != ipproto && t->parms.proto != 0)
425 goto out;
427 err = 0;
429 switch (*type) {
430 __u32 teli;
431 struct ipv6_tlv_tnl_enc_lim *tel;
432 __u32 mtu;
433 case ICMPV6_DEST_UNREACH:
434 if (net_ratelimit())
435 printk(KERN_WARNING
436 "%s: Path to destination invalid "
437 "or inactive!\n", t->parms.name);
438 rel_msg = 1;
439 break;
440 case ICMPV6_TIME_EXCEED:
441 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
442 if (net_ratelimit())
443 printk(KERN_WARNING
444 "%s: Too small hop limit or "
445 "routing loop in tunnel!\n",
446 t->parms.name);
447 rel_msg = 1;
449 break;
450 case ICMPV6_PARAMPROB:
451 teli = 0;
452 if ((*code) == ICMPV6_HDR_FIELD)
453 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
455 if (teli && teli == *info - 2) {
456 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
457 if (tel->encap_limit == 0) {
458 if (net_ratelimit())
459 printk(KERN_WARNING
460 "%s: Too small encapsulation "
461 "limit or routing loop in "
462 "tunnel!\n", t->parms.name);
463 rel_msg = 1;
465 } else if (net_ratelimit()) {
466 printk(KERN_WARNING
467 "%s: Recipient unable to parse tunneled "
468 "packet!\n ", t->parms.name);
470 break;
471 case ICMPV6_PKT_TOOBIG:
472 mtu = *info - offset;
473 if (mtu < IPV6_MIN_MTU)
474 mtu = IPV6_MIN_MTU;
475 t->dev->mtu = mtu;
477 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
478 rel_type = ICMPV6_PKT_TOOBIG;
479 rel_code = 0;
480 rel_info = mtu;
481 rel_msg = 1;
483 break;
486 *type = rel_type;
487 *code = rel_code;
488 *info = rel_info;
489 *msg = rel_msg;
491 out:
492 rcu_read_unlock();
493 return err;
496 static int
497 ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
498 u8 type, u8 code, int offset, __be32 info)
500 int rel_msg = 0;
501 u8 rel_type = type;
502 u8 rel_code = code;
503 __u32 rel_info = ntohl(info);
504 int err;
505 struct sk_buff *skb2;
506 struct iphdr *eiph;
507 struct flowi fl;
508 struct rtable *rt;
510 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
511 &rel_msg, &rel_info, offset);
512 if (err < 0)
513 return err;
515 if (rel_msg == 0)
516 return 0;
518 switch (rel_type) {
519 case ICMPV6_DEST_UNREACH:
520 if (rel_code != ICMPV6_ADDR_UNREACH)
521 return 0;
522 rel_type = ICMP_DEST_UNREACH;
523 rel_code = ICMP_HOST_UNREACH;
524 break;
525 case ICMPV6_PKT_TOOBIG:
526 if (rel_code != 0)
527 return 0;
528 rel_type = ICMP_DEST_UNREACH;
529 rel_code = ICMP_FRAG_NEEDED;
530 break;
531 default:
532 return 0;
535 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
536 return 0;
538 skb2 = skb_clone(skb, GFP_ATOMIC);
539 if (!skb2)
540 return 0;
542 skb_dst_drop(skb2);
544 skb_pull(skb2, offset);
545 skb_reset_network_header(skb2);
546 eiph = ip_hdr(skb2);
548 /* Try to guess incoming interface */
549 memset(&fl, 0, sizeof(fl));
550 fl.fl4_dst = eiph->saddr;
551 fl.fl4_tos = RT_TOS(eiph->tos);
552 fl.proto = IPPROTO_IPIP;
553 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl))
554 goto out;
556 skb2->dev = rt->u.dst.dev;
558 /* route "incoming" packet */
559 if (rt->rt_flags & RTCF_LOCAL) {
560 ip_rt_put(rt);
561 rt = NULL;
562 fl.fl4_dst = eiph->daddr;
563 fl.fl4_src = eiph->saddr;
564 fl.fl4_tos = eiph->tos;
565 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl) ||
566 rt->u.dst.dev->type != ARPHRD_TUNNEL) {
567 ip_rt_put(rt);
568 goto out;
570 skb_dst_set(skb2, (struct dst_entry *)rt);
571 } else {
572 ip_rt_put(rt);
573 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
574 skb2->dev) ||
575 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
576 goto out;
579 /* change mtu on this route */
580 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
581 if (rel_info > dst_mtu(skb_dst(skb2)))
582 goto out;
584 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), rel_info);
587 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
589 out:
590 kfree_skb(skb2);
591 return 0;
594 static int
595 ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
596 u8 type, u8 code, int offset, __be32 info)
598 int rel_msg = 0;
599 u8 rel_type = type;
600 u8 rel_code = code;
601 __u32 rel_info = ntohl(info);
602 int err;
604 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
605 &rel_msg, &rel_info, offset);
606 if (err < 0)
607 return err;
609 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
610 struct rt6_info *rt;
611 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
613 if (!skb2)
614 return 0;
616 skb_dst_drop(skb2);
617 skb_pull(skb2, offset);
618 skb_reset_network_header(skb2);
620 /* Try to guess incoming interface */
621 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
622 NULL, 0, 0);
624 if (rt && rt->rt6i_dev)
625 skb2->dev = rt->rt6i_dev;
627 icmpv6_send(skb2, rel_type, rel_code, rel_info);
629 if (rt)
630 dst_release(&rt->u.dst);
632 kfree_skb(skb2);
635 return 0;
638 static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
639 struct ipv6hdr *ipv6h,
640 struct sk_buff *skb)
642 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
644 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
645 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
647 if (INET_ECN_is_ce(dsfield))
648 IP_ECN_set_ce(ip_hdr(skb));
651 static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
652 struct ipv6hdr *ipv6h,
653 struct sk_buff *skb)
655 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
656 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
658 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
659 IP6_ECN_set_ce(ipv6_hdr(skb));
662 /* called with rcu_read_lock() */
663 static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
665 struct ip6_tnl_parm *p = &t->parms;
666 int ret = 0;
667 struct net *net = dev_net(t->dev);
669 if (p->flags & IP6_TNL_F_CAP_RCV) {
670 struct net_device *ldev = NULL;
672 if (p->link)
673 ldev = dev_get_by_index_rcu(net, p->link);
675 if ((ipv6_addr_is_multicast(&p->laddr) ||
676 likely(ipv6_chk_addr(net, &p->laddr, ldev, 0))) &&
677 likely(!ipv6_chk_addr(net, &p->raddr, NULL, 0)))
678 ret = 1;
681 return ret;
685 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
686 * @skb: received socket buffer
687 * @protocol: ethernet protocol ID
688 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
690 * Return: 0
693 static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
694 __u8 ipproto,
695 void (*dscp_ecn_decapsulate)(struct ip6_tnl *t,
696 struct ipv6hdr *ipv6h,
697 struct sk_buff *skb))
699 struct ip6_tnl *t;
700 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
702 rcu_read_lock();
704 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
705 &ipv6h->daddr)) != NULL) {
706 if (t->parms.proto != ipproto && t->parms.proto != 0) {
707 rcu_read_unlock();
708 goto discard;
711 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
712 rcu_read_unlock();
713 goto discard;
716 if (!ip6_tnl_rcv_ctl(t)) {
717 t->dev->stats.rx_dropped++;
718 rcu_read_unlock();
719 goto discard;
721 secpath_reset(skb);
722 skb->mac_header = skb->network_header;
723 skb_reset_network_header(skb);
724 skb->protocol = htons(protocol);
725 skb->pkt_type = PACKET_HOST;
726 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
728 skb_tunnel_rx(skb, t->dev);
730 dscp_ecn_decapsulate(t, ipv6h, skb);
731 netif_rx(skb);
732 rcu_read_unlock();
733 return 0;
735 rcu_read_unlock();
736 return 1;
738 discard:
739 kfree_skb(skb);
740 return 0;
743 static int ip4ip6_rcv(struct sk_buff *skb)
745 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
746 ip4ip6_dscp_ecn_decapsulate);
749 static int ip6ip6_rcv(struct sk_buff *skb)
751 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
752 ip6ip6_dscp_ecn_decapsulate);
755 struct ipv6_tel_txoption {
756 struct ipv6_txoptions ops;
757 __u8 dst_opt[8];
760 static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
762 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
764 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
765 opt->dst_opt[3] = 1;
766 opt->dst_opt[4] = encap_limit;
767 opt->dst_opt[5] = IPV6_TLV_PADN;
768 opt->dst_opt[6] = 1;
770 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
771 opt->ops.opt_nflen = 8;
775 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
776 * @t: the outgoing tunnel device
777 * @hdr: IPv6 header from the incoming packet
779 * Description:
780 * Avoid trivial tunneling loop by checking that tunnel exit-point
781 * doesn't match source of incoming packet.
783 * Return:
784 * 1 if conflict,
785 * 0 else
788 static inline int
789 ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
791 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
794 static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
796 struct ip6_tnl_parm *p = &t->parms;
797 int ret = 0;
798 struct net *net = dev_net(t->dev);
800 if (p->flags & IP6_TNL_F_CAP_XMIT) {
801 struct net_device *ldev = NULL;
803 rcu_read_lock();
804 if (p->link)
805 ldev = dev_get_by_index_rcu(net, p->link);
807 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
808 printk(KERN_WARNING
809 "%s xmit: Local address not yet configured!\n",
810 p->name);
811 else if (!ipv6_addr_is_multicast(&p->raddr) &&
812 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
813 printk(KERN_WARNING
814 "%s xmit: Routing loop! "
815 "Remote address found on this node!\n",
816 p->name);
817 else
818 ret = 1;
819 rcu_read_unlock();
821 return ret;
824 * ip6_tnl_xmit2 - encapsulate packet and send
825 * @skb: the outgoing socket buffer
826 * @dev: the outgoing tunnel device
827 * @dsfield: dscp code for outer header
828 * @fl: flow of tunneled packet
829 * @encap_limit: encapsulation limit
830 * @pmtu: Path MTU is stored if packet is too big
832 * Description:
833 * Build new header and do some sanity checks on the packet before sending
834 * it.
836 * Return:
837 * 0 on success
838 * -1 fail
839 * %-EMSGSIZE message too big. return mtu in this case.
842 static int ip6_tnl_xmit2(struct sk_buff *skb,
843 struct net_device *dev,
844 __u8 dsfield,
845 struct flowi *fl,
846 int encap_limit,
847 __u32 *pmtu)
849 struct net *net = dev_net(dev);
850 struct ip6_tnl *t = netdev_priv(dev);
851 struct net_device_stats *stats = &t->dev->stats;
852 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
853 struct ipv6_tel_txoption opt;
854 struct dst_entry *dst;
855 struct net_device *tdev;
856 int mtu;
857 unsigned int max_headroom = sizeof(struct ipv6hdr);
858 u8 proto;
859 int err = -1;
860 int pkt_len;
862 if ((dst = ip6_tnl_dst_check(t)) != NULL)
863 dst_hold(dst);
864 else {
865 dst = ip6_route_output(net, NULL, fl);
867 if (dst->error || xfrm_lookup(net, &dst, fl, NULL, 0) < 0)
868 goto tx_err_link_failure;
871 tdev = dst->dev;
873 if (tdev == dev) {
874 stats->collisions++;
875 if (net_ratelimit())
876 printk(KERN_WARNING
877 "%s: Local routing loop detected!\n",
878 t->parms.name);
879 goto tx_err_dst_release;
881 mtu = dst_mtu(dst) - sizeof (*ipv6h);
882 if (encap_limit >= 0) {
883 max_headroom += 8;
884 mtu -= 8;
886 if (mtu < IPV6_MIN_MTU)
887 mtu = IPV6_MIN_MTU;
888 if (skb_dst(skb))
889 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
890 if (skb->len > mtu) {
891 *pmtu = mtu;
892 err = -EMSGSIZE;
893 goto tx_err_dst_release;
897 * Okay, now see if we can stuff it in the buffer as-is.
899 max_headroom += LL_RESERVED_SPACE(tdev);
901 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
902 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
903 struct sk_buff *new_skb;
905 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
906 goto tx_err_dst_release;
908 if (skb->sk)
909 skb_set_owner_w(new_skb, skb->sk);
910 kfree_skb(skb);
911 skb = new_skb;
913 skb_dst_drop(skb);
914 skb_dst_set(skb, dst_clone(dst));
916 skb->transport_header = skb->network_header;
918 proto = fl->proto;
919 if (encap_limit >= 0) {
920 init_tel_txopt(&opt, encap_limit);
921 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
923 skb_push(skb, sizeof(struct ipv6hdr));
924 skb_reset_network_header(skb);
925 ipv6h = ipv6_hdr(skb);
926 *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
927 dsfield = INET_ECN_encapsulate(0, dsfield);
928 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
929 ipv6h->hop_limit = t->parms.hop_limit;
930 ipv6h->nexthdr = proto;
931 ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
932 ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
933 nf_reset(skb);
934 pkt_len = skb->len;
935 err = ip6_local_out(skb);
937 if (net_xmit_eval(err) == 0) {
938 stats->tx_bytes += pkt_len;
939 stats->tx_packets++;
940 } else {
941 stats->tx_errors++;
942 stats->tx_aborted_errors++;
944 ip6_tnl_dst_store(t, dst);
945 return 0;
946 tx_err_link_failure:
947 stats->tx_carrier_errors++;
948 dst_link_failure(skb);
949 tx_err_dst_release:
950 dst_release(dst);
951 return err;
954 static inline int
955 ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
957 struct ip6_tnl *t = netdev_priv(dev);
958 struct iphdr *iph = ip_hdr(skb);
959 int encap_limit = -1;
960 struct flowi fl;
961 __u8 dsfield;
962 __u32 mtu;
963 int err;
965 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
966 !ip6_tnl_xmit_ctl(t))
967 return -1;
969 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
970 encap_limit = t->parms.encap_limit;
972 memcpy(&fl, &t->fl, sizeof (fl));
973 fl.proto = IPPROTO_IPIP;
975 dsfield = ipv4_get_dsfield(iph);
977 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
978 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
979 & IPV6_TCLASS_MASK;
981 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
982 if (err != 0) {
983 /* XXX: send ICMP error even if DF is not set. */
984 if (err == -EMSGSIZE)
985 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
986 htonl(mtu));
987 return -1;
990 return 0;
993 static inline int
994 ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
996 struct ip6_tnl *t = netdev_priv(dev);
997 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
998 int encap_limit = -1;
999 __u16 offset;
1000 struct flowi fl;
1001 __u8 dsfield;
1002 __u32 mtu;
1003 int err;
1005 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1006 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
1007 return -1;
1009 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1010 if (offset > 0) {
1011 struct ipv6_tlv_tnl_enc_lim *tel;
1012 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
1013 if (tel->encap_limit == 0) {
1014 icmpv6_send(skb, ICMPV6_PARAMPROB,
1015 ICMPV6_HDR_FIELD, offset + 2);
1016 return -1;
1018 encap_limit = tel->encap_limit - 1;
1019 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1020 encap_limit = t->parms.encap_limit;
1022 memcpy(&fl, &t->fl, sizeof (fl));
1023 fl.proto = IPPROTO_IPV6;
1025 dsfield = ipv6_get_dsfield(ipv6h);
1026 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1027 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1028 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1029 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1031 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1032 if (err != 0) {
1033 if (err == -EMSGSIZE)
1034 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1035 return -1;
1038 return 0;
1041 static netdev_tx_t
1042 ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1044 struct ip6_tnl *t = netdev_priv(dev);
1045 struct net_device_stats *stats = &t->dev->stats;
1046 int ret;
1048 switch (skb->protocol) {
1049 case htons(ETH_P_IP):
1050 ret = ip4ip6_tnl_xmit(skb, dev);
1051 break;
1052 case htons(ETH_P_IPV6):
1053 ret = ip6ip6_tnl_xmit(skb, dev);
1054 break;
1055 default:
1056 goto tx_err;
1059 if (ret < 0)
1060 goto tx_err;
1062 return NETDEV_TX_OK;
1064 tx_err:
1065 stats->tx_errors++;
1066 stats->tx_dropped++;
1067 kfree_skb(skb);
1068 return NETDEV_TX_OK;
1071 static void ip6_tnl_set_cap(struct ip6_tnl *t)
1073 struct ip6_tnl_parm *p = &t->parms;
1074 int ltype = ipv6_addr_type(&p->laddr);
1075 int rtype = ipv6_addr_type(&p->raddr);
1077 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1079 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1080 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1081 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
1082 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
1083 if (ltype&IPV6_ADDR_UNICAST)
1084 p->flags |= IP6_TNL_F_CAP_XMIT;
1085 if (rtype&IPV6_ADDR_UNICAST)
1086 p->flags |= IP6_TNL_F_CAP_RCV;
1090 static void ip6_tnl_link_config(struct ip6_tnl *t)
1092 struct net_device *dev = t->dev;
1093 struct ip6_tnl_parm *p = &t->parms;
1094 struct flowi *fl = &t->fl;
1096 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1097 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1099 /* Set up flowi template */
1100 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1101 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1102 fl->oif = p->link;
1103 fl->fl6_flowlabel = 0;
1105 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1106 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1107 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1108 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1110 ip6_tnl_set_cap(t);
1112 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1113 dev->flags |= IFF_POINTOPOINT;
1114 else
1115 dev->flags &= ~IFF_POINTOPOINT;
1117 dev->iflink = p->link;
1119 if (p->flags & IP6_TNL_F_CAP_XMIT) {
1120 int strict = (ipv6_addr_type(&p->raddr) &
1121 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1123 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1124 &p->raddr, &p->laddr,
1125 p->link, strict);
1127 if (rt == NULL)
1128 return;
1130 if (rt->rt6i_dev) {
1131 dev->hard_header_len = rt->rt6i_dev->hard_header_len +
1132 sizeof (struct ipv6hdr);
1134 dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
1136 if (dev->mtu < IPV6_MIN_MTU)
1137 dev->mtu = IPV6_MIN_MTU;
1139 dst_release(&rt->u.dst);
1144 * ip6_tnl_change - update the tunnel parameters
1145 * @t: tunnel to be changed
1146 * @p: tunnel configuration parameters
1148 * Description:
1149 * ip6_tnl_change() updates the tunnel parameters
1152 static int
1153 ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
1155 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1156 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1157 t->parms.flags = p->flags;
1158 t->parms.hop_limit = p->hop_limit;
1159 t->parms.encap_limit = p->encap_limit;
1160 t->parms.flowinfo = p->flowinfo;
1161 t->parms.link = p->link;
1162 t->parms.proto = p->proto;
1163 ip6_tnl_dst_reset(t);
1164 ip6_tnl_link_config(t);
1165 return 0;
1169 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
1170 * @dev: virtual device associated with tunnel
1171 * @ifr: parameters passed from userspace
1172 * @cmd: command to be performed
1174 * Description:
1175 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
1176 * from userspace.
1178 * The possible commands are the following:
1179 * %SIOCGETTUNNEL: get tunnel parameters for device
1180 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1181 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1182 * %SIOCDELTUNNEL: delete tunnel
1184 * The fallback device "ip6tnl0", created during module
1185 * initialization, can be used for creating other tunnel devices.
1187 * Return:
1188 * 0 on success,
1189 * %-EFAULT if unable to copy data to or from userspace,
1190 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1191 * %-EINVAL if passed tunnel parameters are invalid,
1192 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1193 * %-ENODEV if attempting to change or delete a nonexisting device
1196 static int
1197 ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1199 int err = 0;
1200 struct ip6_tnl_parm p;
1201 struct ip6_tnl *t = NULL;
1202 struct net *net = dev_net(dev);
1203 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1205 switch (cmd) {
1206 case SIOCGETTUNNEL:
1207 if (dev == ip6n->fb_tnl_dev) {
1208 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
1209 err = -EFAULT;
1210 break;
1212 t = ip6_tnl_locate(net, &p, 0);
1214 if (t == NULL)
1215 t = netdev_priv(dev);
1216 memcpy(&p, &t->parms, sizeof (p));
1217 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1218 err = -EFAULT;
1220 break;
1221 case SIOCADDTUNNEL:
1222 case SIOCCHGTUNNEL:
1223 err = -EPERM;
1224 if (!capable(CAP_NET_ADMIN))
1225 break;
1226 err = -EFAULT;
1227 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
1228 break;
1229 err = -EINVAL;
1230 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1231 p.proto != 0)
1232 break;
1233 t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL);
1234 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
1235 if (t != NULL) {
1236 if (t->dev != dev) {
1237 err = -EEXIST;
1238 break;
1240 } else
1241 t = netdev_priv(dev);
1243 ip6_tnl_unlink(ip6n, t);
1244 err = ip6_tnl_change(t, &p);
1245 ip6_tnl_link(ip6n, t);
1246 netdev_state_change(dev);
1248 if (t) {
1249 err = 0;
1250 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1251 err = -EFAULT;
1253 } else
1254 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1255 break;
1256 case SIOCDELTUNNEL:
1257 err = -EPERM;
1258 if (!capable(CAP_NET_ADMIN))
1259 break;
1261 if (dev == ip6n->fb_tnl_dev) {
1262 err = -EFAULT;
1263 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
1264 break;
1265 err = -ENOENT;
1266 if ((t = ip6_tnl_locate(net, &p, 0)) == NULL)
1267 break;
1268 err = -EPERM;
1269 if (t->dev == ip6n->fb_tnl_dev)
1270 break;
1271 dev = t->dev;
1273 err = 0;
1274 unregister_netdevice(dev);
1275 break;
1276 default:
1277 err = -EINVAL;
1279 return err;
1283 * ip6_tnl_change_mtu - change mtu manually for tunnel device
1284 * @dev: virtual device associated with tunnel
1285 * @new_mtu: the new mtu
1287 * Return:
1288 * 0 on success,
1289 * %-EINVAL if mtu too small
1292 static int
1293 ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
1295 if (new_mtu < IPV6_MIN_MTU) {
1296 return -EINVAL;
1298 dev->mtu = new_mtu;
1299 return 0;
1303 static const struct net_device_ops ip6_tnl_netdev_ops = {
1304 .ndo_uninit = ip6_tnl_dev_uninit,
1305 .ndo_start_xmit = ip6_tnl_xmit,
1306 .ndo_do_ioctl = ip6_tnl_ioctl,
1307 .ndo_change_mtu = ip6_tnl_change_mtu,
1311 * ip6_tnl_dev_setup - setup virtual tunnel device
1312 * @dev: virtual device associated with tunnel
1314 * Description:
1315 * Initialize function pointers and device parameters
1318 static void ip6_tnl_dev_setup(struct net_device *dev)
1320 dev->netdev_ops = &ip6_tnl_netdev_ops;
1321 dev->destructor = free_netdev;
1323 dev->type = ARPHRD_TUNNEL6;
1324 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1325 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1326 dev->flags |= IFF_NOARP;
1327 dev->addr_len = sizeof(struct in6_addr);
1328 dev->features |= NETIF_F_NETNS_LOCAL;
1333 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
1334 * @dev: virtual device associated with tunnel
1337 static inline void
1338 ip6_tnl_dev_init_gen(struct net_device *dev)
1340 struct ip6_tnl *t = netdev_priv(dev);
1341 t->dev = dev;
1342 strcpy(t->parms.name, dev->name);
1346 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
1347 * @dev: virtual device associated with tunnel
1350 static void ip6_tnl_dev_init(struct net_device *dev)
1352 struct ip6_tnl *t = netdev_priv(dev);
1353 ip6_tnl_dev_init_gen(dev);
1354 ip6_tnl_link_config(t);
1358 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
1359 * @dev: fallback device
1361 * Return: 0
1364 static void __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
1366 struct ip6_tnl *t = netdev_priv(dev);
1367 struct net *net = dev_net(dev);
1368 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1370 ip6_tnl_dev_init_gen(dev);
1371 t->parms.proto = IPPROTO_IPV6;
1372 dev_hold(dev);
1373 ip6n->tnls_wc[0] = t;
1376 static struct xfrm6_tunnel ip4ip6_handler = {
1377 .handler = ip4ip6_rcv,
1378 .err_handler = ip4ip6_err,
1379 .priority = 1,
1382 static struct xfrm6_tunnel ip6ip6_handler = {
1383 .handler = ip6ip6_rcv,
1384 .err_handler = ip6ip6_err,
1385 .priority = 1,
1388 static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
1390 int h;
1391 struct ip6_tnl *t;
1392 LIST_HEAD(list);
1394 for (h = 0; h < HASH_SIZE; h++) {
1395 t = ip6n->tnls_r_l[h];
1396 while (t != NULL) {
1397 unregister_netdevice_queue(t->dev, &list);
1398 t = t->next;
1402 t = ip6n->tnls_wc[0];
1403 unregister_netdevice_queue(t->dev, &list);
1404 unregister_netdevice_many(&list);
1407 static int __net_init ip6_tnl_init_net(struct net *net)
1409 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1410 int err;
1412 ip6n->tnls[0] = ip6n->tnls_wc;
1413 ip6n->tnls[1] = ip6n->tnls_r_l;
1415 err = -ENOMEM;
1416 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1417 ip6_tnl_dev_setup);
1419 if (!ip6n->fb_tnl_dev)
1420 goto err_alloc_dev;
1421 dev_net_set(ip6n->fb_tnl_dev, net);
1423 ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1425 err = register_netdev(ip6n->fb_tnl_dev);
1426 if (err < 0)
1427 goto err_register;
1428 return 0;
1430 err_register:
1431 free_netdev(ip6n->fb_tnl_dev);
1432 err_alloc_dev:
1433 return err;
1436 static void __net_exit ip6_tnl_exit_net(struct net *net)
1438 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1440 rtnl_lock();
1441 ip6_tnl_destroy_tunnels(ip6n);
1442 rtnl_unlock();
1445 static struct pernet_operations ip6_tnl_net_ops = {
1446 .init = ip6_tnl_init_net,
1447 .exit = ip6_tnl_exit_net,
1448 .id = &ip6_tnl_net_id,
1449 .size = sizeof(struct ip6_tnl_net),
1453 * ip6_tunnel_init - register protocol and reserve needed resources
1455 * Return: 0 on success
1458 static int __init ip6_tunnel_init(void)
1460 int err;
1462 err = register_pernet_device(&ip6_tnl_net_ops);
1463 if (err < 0)
1464 goto out_pernet;
1466 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1467 if (err < 0) {
1468 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
1469 goto out_ip4ip6;
1472 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1473 if (err < 0) {
1474 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
1475 goto out_ip6ip6;
1478 return 0;
1480 out_ip6ip6:
1481 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
1482 out_ip4ip6:
1483 unregister_pernet_device(&ip6_tnl_net_ops);
1484 out_pernet:
1485 return err;
1489 * ip6_tunnel_cleanup - free resources and unregister protocol
1492 static void __exit ip6_tunnel_cleanup(void)
1494 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
1495 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
1497 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
1498 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
1500 unregister_pernet_device(&ip6_tnl_net_ops);
1503 module_init(ip6_tunnel_init);
1504 module_exit(ip6_tunnel_cleanup);