[IP6TUNNEL]: Introduce empty ip6_tnl_net structure and net ops.
[firefly-linux-kernel-4.4.55.git] / net / ipv6 / ip6_tunnel.c
1 /*
2  *      IPv6 tunneling device
3  *      Linux INET6 implementation
4  *
5  *      Authors:
6  *      Ville Nuorvala          <vnuorval@tcs.hut.fi>
7  *      Yasuyuki Kozakai        <kozakai@linux-ipv6.org>
8  *
9  *      $Id$
10  *
11  *      Based on:
12  *      linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
13  *
14  *      RFC 2473
15  *
16  *      This program is free software; you can redistribute it and/or
17  *      modify it under the terms of the GNU General Public License
18  *      as published by the Free Software Foundation; either version
19  *      2 of the License, or (at your option) any later version.
20  *
21  */
22
23 #include <linux/module.h>
24 #include <linux/capability.h>
25 #include <linux/errno.h>
26 #include <linux/types.h>
27 #include <linux/sockios.h>
28 #include <linux/icmp.h>
29 #include <linux/if.h>
30 #include <linux/in.h>
31 #include <linux/ip.h>
32 #include <linux/if_tunnel.h>
33 #include <linux/net.h>
34 #include <linux/in6.h>
35 #include <linux/netdevice.h>
36 #include <linux/if_arp.h>
37 #include <linux/icmpv6.h>
38 #include <linux/init.h>
39 #include <linux/route.h>
40 #include <linux/rtnetlink.h>
41 #include <linux/netfilter_ipv6.h>
42
43 #include <asm/uaccess.h>
44 #include <asm/atomic.h>
45
46 #include <net/icmp.h>
47 #include <net/ip.h>
48 #include <net/ipv6.h>
49 #include <net/ip6_route.h>
50 #include <net/addrconf.h>
51 #include <net/ip6_tunnel.h>
52 #include <net/xfrm.h>
53 #include <net/dsfield.h>
54 #include <net/inet_ecn.h>
55 #include <net/net_namespace.h>
56 #include <net/netns/generic.h>
57
58 MODULE_AUTHOR("Ville Nuorvala");
59 MODULE_DESCRIPTION("IPv6 tunneling device");
60 MODULE_LICENSE("GPL");
61
62 #define IPV6_TLV_TEL_DST_SIZE 8
63
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
69
70 #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
71 #define IPV6_TCLASS_SHIFT 20
72
73 #define HASH_SIZE  32
74
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))
78
79 static int ip6_fb_tnl_dev_init(struct net_device *dev);
80 static int ip6_tnl_dev_init(struct net_device *dev);
81 static void ip6_tnl_dev_setup(struct net_device *dev);
82
83 static int ip6_tnl_net_id;
84 struct ip6_tnl_net {
85 };
86
87 /* the IPv6 tunnel fallback device */
88 static struct net_device *ip6_fb_tnl_dev;
89
90
91 /* lists for storing tunnels in use */
92 static struct ip6_tnl *tnls_r_l[HASH_SIZE];
93 static struct ip6_tnl *tnls_wc[1];
94 static struct ip6_tnl **tnls[2] = { tnls_wc, tnls_r_l };
95
96 /* lock for the tunnel lists */
97 static DEFINE_RWLOCK(ip6_tnl_lock);
98
99 static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
100 {
101         struct dst_entry *dst = t->dst_cache;
102
103         if (dst && dst->obsolete &&
104             dst->ops->check(dst, t->dst_cookie) == NULL) {
105                 t->dst_cache = NULL;
106                 dst_release(dst);
107                 return NULL;
108         }
109
110         return dst;
111 }
112
113 static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
114 {
115         dst_release(t->dst_cache);
116         t->dst_cache = NULL;
117 }
118
119 static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
120 {
121         struct rt6_info *rt = (struct rt6_info *) dst;
122         t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
123         dst_release(t->dst_cache);
124         t->dst_cache = dst;
125 }
126
127 /**
128  * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
129  *   @remote: the address of the tunnel exit-point
130  *   @local: the address of the tunnel entry-point
131  *
132  * Return:
133  *   tunnel matching given end-points if found,
134  *   else fallback tunnel if its device is up,
135  *   else %NULL
136  **/
137
138 static struct ip6_tnl *
139 ip6_tnl_lookup(struct in6_addr *remote, struct in6_addr *local)
140 {
141         unsigned h0 = HASH(remote);
142         unsigned h1 = HASH(local);
143         struct ip6_tnl *t;
144
145         for (t = tnls_r_l[h0 ^ h1]; t; t = t->next) {
146                 if (ipv6_addr_equal(local, &t->parms.laddr) &&
147                     ipv6_addr_equal(remote, &t->parms.raddr) &&
148                     (t->dev->flags & IFF_UP))
149                         return t;
150         }
151         if ((t = tnls_wc[0]) != NULL && (t->dev->flags & IFF_UP))
152                 return t;
153
154         return NULL;
155 }
156
157 /**
158  * ip6_tnl_bucket - get head of list matching given tunnel parameters
159  *   @p: parameters containing tunnel end-points
160  *
161  * Description:
162  *   ip6_tnl_bucket() returns the head of the list matching the
163  *   &struct in6_addr entries laddr and raddr in @p.
164  *
165  * Return: head of IPv6 tunnel list
166  **/
167
168 static struct ip6_tnl **
169 ip6_tnl_bucket(struct ip6_tnl_parm *p)
170 {
171         struct in6_addr *remote = &p->raddr;
172         struct in6_addr *local = &p->laddr;
173         unsigned h = 0;
174         int prio = 0;
175
176         if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
177                 prio = 1;
178                 h = HASH(remote) ^ HASH(local);
179         }
180         return &tnls[prio][h];
181 }
182
183 /**
184  * ip6_tnl_link - add tunnel to hash table
185  *   @t: tunnel to be added
186  **/
187
188 static void
189 ip6_tnl_link(struct ip6_tnl *t)
190 {
191         struct ip6_tnl **tp = ip6_tnl_bucket(&t->parms);
192
193         t->next = *tp;
194         write_lock_bh(&ip6_tnl_lock);
195         *tp = t;
196         write_unlock_bh(&ip6_tnl_lock);
197 }
198
199 /**
200  * ip6_tnl_unlink - remove tunnel from hash table
201  *   @t: tunnel to be removed
202  **/
203
204 static void
205 ip6_tnl_unlink(struct ip6_tnl *t)
206 {
207         struct ip6_tnl **tp;
208
209         for (tp = ip6_tnl_bucket(&t->parms); *tp; tp = &(*tp)->next) {
210                 if (t == *tp) {
211                         write_lock_bh(&ip6_tnl_lock);
212                         *tp = t->next;
213                         write_unlock_bh(&ip6_tnl_lock);
214                         break;
215                 }
216         }
217 }
218
219 /**
220  * ip6_tnl_create() - create a new tunnel
221  *   @p: tunnel parameters
222  *   @pt: pointer to new tunnel
223  *
224  * Description:
225  *   Create tunnel matching given parameters.
226  *
227  * Return:
228  *   created tunnel or NULL
229  **/
230
231 static struct ip6_tnl *ip6_tnl_create(struct ip6_tnl_parm *p)
232 {
233         struct net_device *dev;
234         struct ip6_tnl *t;
235         char name[IFNAMSIZ];
236         int err;
237
238         if (p->name[0])
239                 strlcpy(name, p->name, IFNAMSIZ);
240         else
241                 sprintf(name, "ip6tnl%%d");
242
243         dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
244         if (dev == NULL)
245                 goto failed;
246
247         if (strchr(name, '%')) {
248                 if (dev_alloc_name(dev, name) < 0)
249                         goto failed_free;
250         }
251
252         t = netdev_priv(dev);
253         dev->init = ip6_tnl_dev_init;
254         t->parms = *p;
255
256         if ((err = register_netdevice(dev)) < 0)
257                 goto failed_free;
258
259         dev_hold(dev);
260         ip6_tnl_link(t);
261         return t;
262
263 failed_free:
264         free_netdev(dev);
265 failed:
266         return NULL;
267 }
268
269 /**
270  * ip6_tnl_locate - find or create tunnel matching given parameters
271  *   @p: tunnel parameters
272  *   @create: != 0 if allowed to create new tunnel if no match found
273  *
274  * Description:
275  *   ip6_tnl_locate() first tries to locate an existing tunnel
276  *   based on @parms. If this is unsuccessful, but @create is set a new
277  *   tunnel device is created and registered for use.
278  *
279  * Return:
280  *   matching tunnel or NULL
281  **/
282
283 static struct ip6_tnl *ip6_tnl_locate(struct ip6_tnl_parm *p, int create)
284 {
285         struct in6_addr *remote = &p->raddr;
286         struct in6_addr *local = &p->laddr;
287         struct ip6_tnl *t;
288
289         for (t = *ip6_tnl_bucket(p); t; t = t->next) {
290                 if (ipv6_addr_equal(local, &t->parms.laddr) &&
291                     ipv6_addr_equal(remote, &t->parms.raddr))
292                         return t;
293         }
294         if (!create)
295                 return NULL;
296         return ip6_tnl_create(p);
297 }
298
299 /**
300  * ip6_tnl_dev_uninit - tunnel device uninitializer
301  *   @dev: the device to be destroyed
302  *
303  * Description:
304  *   ip6_tnl_dev_uninit() removes tunnel from its list
305  **/
306
307 static void
308 ip6_tnl_dev_uninit(struct net_device *dev)
309 {
310         struct ip6_tnl *t = netdev_priv(dev);
311
312         if (dev == ip6_fb_tnl_dev) {
313                 write_lock_bh(&ip6_tnl_lock);
314                 tnls_wc[0] = NULL;
315                 write_unlock_bh(&ip6_tnl_lock);
316         } else {
317                 ip6_tnl_unlink(t);
318         }
319         ip6_tnl_dst_reset(t);
320         dev_put(dev);
321 }
322
323 /**
324  * parse_tvl_tnl_enc_lim - handle encapsulation limit option
325  *   @skb: received socket buffer
326  *
327  * Return:
328  *   0 if none was found,
329  *   else index to encapsulation limit
330  **/
331
332 static __u16
333 parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
334 {
335         struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
336         __u8 nexthdr = ipv6h->nexthdr;
337         __u16 off = sizeof (*ipv6h);
338
339         while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
340                 __u16 optlen = 0;
341                 struct ipv6_opt_hdr *hdr;
342                 if (raw + off + sizeof (*hdr) > skb->data &&
343                     !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
344                         break;
345
346                 hdr = (struct ipv6_opt_hdr *) (raw + off);
347                 if (nexthdr == NEXTHDR_FRAGMENT) {
348                         struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
349                         if (frag_hdr->frag_off)
350                                 break;
351                         optlen = 8;
352                 } else if (nexthdr == NEXTHDR_AUTH) {
353                         optlen = (hdr->hdrlen + 2) << 2;
354                 } else {
355                         optlen = ipv6_optlen(hdr);
356                 }
357                 if (nexthdr == NEXTHDR_DEST) {
358                         __u16 i = off + 2;
359                         while (1) {
360                                 struct ipv6_tlv_tnl_enc_lim *tel;
361
362                                 /* No more room for encapsulation limit */
363                                 if (i + sizeof (*tel) > off + optlen)
364                                         break;
365
366                                 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
367                                 /* return index of option if found and valid */
368                                 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
369                                     tel->length == 1)
370                                         return i;
371                                 /* else jump to next option */
372                                 if (tel->type)
373                                         i += tel->length + 2;
374                                 else
375                                         i++;
376                         }
377                 }
378                 nexthdr = hdr->nexthdr;
379                 off += optlen;
380         }
381         return 0;
382 }
383
384 /**
385  * ip6_tnl_err - tunnel error handler
386  *
387  * Description:
388  *   ip6_tnl_err() should handle errors in the tunnel according
389  *   to the specifications in RFC 2473.
390  **/
391
392 static int
393 ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
394             int *type, int *code, int *msg, __u32 *info, int offset)
395 {
396         struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
397         struct ip6_tnl *t;
398         int rel_msg = 0;
399         int rel_type = ICMPV6_DEST_UNREACH;
400         int rel_code = ICMPV6_ADDR_UNREACH;
401         __u32 rel_info = 0;
402         __u16 len;
403         int err = -ENOENT;
404
405         /* If the packet doesn't contain the original IPv6 header we are
406            in trouble since we might need the source address for further
407            processing of the error. */
408
409         read_lock(&ip6_tnl_lock);
410         if ((t = ip6_tnl_lookup(&ipv6h->daddr, &ipv6h->saddr)) == NULL)
411                 goto out;
412
413         if (t->parms.proto != ipproto && t->parms.proto != 0)
414                 goto out;
415
416         err = 0;
417
418         switch (*type) {
419                 __u32 teli;
420                 struct ipv6_tlv_tnl_enc_lim *tel;
421                 __u32 mtu;
422         case ICMPV6_DEST_UNREACH:
423                 if (net_ratelimit())
424                         printk(KERN_WARNING
425                                "%s: Path to destination invalid "
426                                "or inactive!\n", t->parms.name);
427                 rel_msg = 1;
428                 break;
429         case ICMPV6_TIME_EXCEED:
430                 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
431                         if (net_ratelimit())
432                                 printk(KERN_WARNING
433                                        "%s: Too small hop limit or "
434                                        "routing loop in tunnel!\n",
435                                        t->parms.name);
436                         rel_msg = 1;
437                 }
438                 break;
439         case ICMPV6_PARAMPROB:
440                 teli = 0;
441                 if ((*code) == ICMPV6_HDR_FIELD)
442                         teli = parse_tlv_tnl_enc_lim(skb, skb->data);
443
444                 if (teli && teli == *info - 2) {
445                         tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
446                         if (tel->encap_limit == 0) {
447                                 if (net_ratelimit())
448                                         printk(KERN_WARNING
449                                                "%s: Too small encapsulation "
450                                                "limit or routing loop in "
451                                                "tunnel!\n", t->parms.name);
452                                 rel_msg = 1;
453                         }
454                 } else if (net_ratelimit()) {
455                         printk(KERN_WARNING
456                                "%s: Recipient unable to parse tunneled "
457                                "packet!\n ", t->parms.name);
458                 }
459                 break;
460         case ICMPV6_PKT_TOOBIG:
461                 mtu = *info - offset;
462                 if (mtu < IPV6_MIN_MTU)
463                         mtu = IPV6_MIN_MTU;
464                 t->dev->mtu = mtu;
465
466                 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
467                         rel_type = ICMPV6_PKT_TOOBIG;
468                         rel_code = 0;
469                         rel_info = mtu;
470                         rel_msg = 1;
471                 }
472                 break;
473         }
474
475         *type = rel_type;
476         *code = rel_code;
477         *info = rel_info;
478         *msg = rel_msg;
479
480 out:
481         read_unlock(&ip6_tnl_lock);
482         return err;
483 }
484
485 static int
486 ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
487            int type, int code, int offset, __be32 info)
488 {
489         int rel_msg = 0;
490         int rel_type = type;
491         int rel_code = code;
492         __u32 rel_info = ntohl(info);
493         int err;
494         struct sk_buff *skb2;
495         struct iphdr *eiph;
496         struct flowi fl;
497         struct rtable *rt;
498
499         err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
500                           &rel_msg, &rel_info, offset);
501         if (err < 0)
502                 return err;
503
504         if (rel_msg == 0)
505                 return 0;
506
507         switch (rel_type) {
508         case ICMPV6_DEST_UNREACH:
509                 if (rel_code != ICMPV6_ADDR_UNREACH)
510                         return 0;
511                 rel_type = ICMP_DEST_UNREACH;
512                 rel_code = ICMP_HOST_UNREACH;
513                 break;
514         case ICMPV6_PKT_TOOBIG:
515                 if (rel_code != 0)
516                         return 0;
517                 rel_type = ICMP_DEST_UNREACH;
518                 rel_code = ICMP_FRAG_NEEDED;
519                 break;
520         default:
521                 return 0;
522         }
523
524         if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
525                 return 0;
526
527         skb2 = skb_clone(skb, GFP_ATOMIC);
528         if (!skb2)
529                 return 0;
530
531         dst_release(skb2->dst);
532         skb2->dst = NULL;
533         skb_pull(skb2, offset);
534         skb_reset_network_header(skb2);
535         eiph = ip_hdr(skb2);
536
537         /* Try to guess incoming interface */
538         memset(&fl, 0, sizeof(fl));
539         fl.fl4_dst = eiph->saddr;
540         fl.fl4_tos = RT_TOS(eiph->tos);
541         fl.proto = IPPROTO_IPIP;
542         if (ip_route_output_key(&init_net, &rt, &fl))
543                 goto out;
544
545         skb2->dev = rt->u.dst.dev;
546
547         /* route "incoming" packet */
548         if (rt->rt_flags & RTCF_LOCAL) {
549                 ip_rt_put(rt);
550                 rt = NULL;
551                 fl.fl4_dst = eiph->daddr;
552                 fl.fl4_src = eiph->saddr;
553                 fl.fl4_tos = eiph->tos;
554                 if (ip_route_output_key(&init_net, &rt, &fl) ||
555                     rt->u.dst.dev->type != ARPHRD_TUNNEL) {
556                         ip_rt_put(rt);
557                         goto out;
558                 }
559                 skb2->dst = (struct dst_entry *)rt;
560         } else {
561                 ip_rt_put(rt);
562                 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
563                                    skb2->dev) ||
564                     skb2->dst->dev->type != ARPHRD_TUNNEL)
565                         goto out;
566         }
567
568         /* change mtu on this route */
569         if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
570                 if (rel_info > dst_mtu(skb2->dst))
571                         goto out;
572
573                 skb2->dst->ops->update_pmtu(skb2->dst, rel_info);
574         }
575
576         icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
577
578 out:
579         kfree_skb(skb2);
580         return 0;
581 }
582
583 static int
584 ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
585            int type, int code, int offset, __be32 info)
586 {
587         int rel_msg = 0;
588         int rel_type = type;
589         int rel_code = code;
590         __u32 rel_info = ntohl(info);
591         int err;
592
593         err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
594                           &rel_msg, &rel_info, offset);
595         if (err < 0)
596                 return err;
597
598         if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
599                 struct rt6_info *rt;
600                 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
601
602                 if (!skb2)
603                         return 0;
604
605                 dst_release(skb2->dst);
606                 skb2->dst = NULL;
607                 skb_pull(skb2, offset);
608                 skb_reset_network_header(skb2);
609
610                 /* Try to guess incoming interface */
611                 rt = rt6_lookup(&init_net, &ipv6_hdr(skb2)->saddr, NULL, 0, 0);
612
613                 if (rt && rt->rt6i_dev)
614                         skb2->dev = rt->rt6i_dev;
615
616                 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
617
618                 if (rt)
619                         dst_release(&rt->u.dst);
620
621                 kfree_skb(skb2);
622         }
623
624         return 0;
625 }
626
627 static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
628                                         struct ipv6hdr *ipv6h,
629                                         struct sk_buff *skb)
630 {
631         __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
632
633         if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
634                 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
635
636         if (INET_ECN_is_ce(dsfield))
637                 IP_ECN_set_ce(ip_hdr(skb));
638 }
639
640 static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
641                                         struct ipv6hdr *ipv6h,
642                                         struct sk_buff *skb)
643 {
644         if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
645                 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
646
647         if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
648                 IP6_ECN_set_ce(ipv6_hdr(skb));
649 }
650
651 static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
652 {
653         struct ip6_tnl_parm *p = &t->parms;
654         int ret = 0;
655
656         if (p->flags & IP6_TNL_F_CAP_RCV) {
657                 struct net_device *ldev = NULL;
658
659                 if (p->link)
660                         ldev = dev_get_by_index(&init_net, p->link);
661
662                 if ((ipv6_addr_is_multicast(&p->laddr) ||
663                      likely(ipv6_chk_addr(&init_net, &p->laddr, ldev, 0))) &&
664                     likely(!ipv6_chk_addr(&init_net, &p->raddr, NULL, 0)))
665                         ret = 1;
666
667                 if (ldev)
668                         dev_put(ldev);
669         }
670         return ret;
671 }
672
673 /**
674  * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
675  *   @skb: received socket buffer
676  *   @protocol: ethernet protocol ID
677  *   @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
678  *
679  * Return: 0
680  **/
681
682 static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
683                        __u8 ipproto,
684                        void (*dscp_ecn_decapsulate)(struct ip6_tnl *t,
685                                                     struct ipv6hdr *ipv6h,
686                                                     struct sk_buff *skb))
687 {
688         struct ip6_tnl *t;
689         struct ipv6hdr *ipv6h = ipv6_hdr(skb);
690
691         read_lock(&ip6_tnl_lock);
692
693         if ((t = ip6_tnl_lookup(&ipv6h->saddr, &ipv6h->daddr)) != NULL) {
694                 if (t->parms.proto != ipproto && t->parms.proto != 0) {
695                         read_unlock(&ip6_tnl_lock);
696                         goto discard;
697                 }
698
699                 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
700                         read_unlock(&ip6_tnl_lock);
701                         goto discard;
702                 }
703
704                 if (!ip6_tnl_rcv_ctl(t)) {
705                         t->stat.rx_dropped++;
706                         read_unlock(&ip6_tnl_lock);
707                         goto discard;
708                 }
709                 secpath_reset(skb);
710                 skb->mac_header = skb->network_header;
711                 skb_reset_network_header(skb);
712                 skb->protocol = htons(protocol);
713                 skb->pkt_type = PACKET_HOST;
714                 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
715                 skb->dev = t->dev;
716                 dst_release(skb->dst);
717                 skb->dst = NULL;
718                 nf_reset(skb);
719
720                 dscp_ecn_decapsulate(t, ipv6h, skb);
721
722                 t->stat.rx_packets++;
723                 t->stat.rx_bytes += skb->len;
724                 netif_rx(skb);
725                 read_unlock(&ip6_tnl_lock);
726                 return 0;
727         }
728         read_unlock(&ip6_tnl_lock);
729         return 1;
730
731 discard:
732         kfree_skb(skb);
733         return 0;
734 }
735
736 static int ip4ip6_rcv(struct sk_buff *skb)
737 {
738         return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
739                            ip4ip6_dscp_ecn_decapsulate);
740 }
741
742 static int ip6ip6_rcv(struct sk_buff *skb)
743 {
744         return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
745                            ip6ip6_dscp_ecn_decapsulate);
746 }
747
748 struct ipv6_tel_txoption {
749         struct ipv6_txoptions ops;
750         __u8 dst_opt[8];
751 };
752
753 static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
754 {
755         memset(opt, 0, sizeof(struct ipv6_tel_txoption));
756
757         opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
758         opt->dst_opt[3] = 1;
759         opt->dst_opt[4] = encap_limit;
760         opt->dst_opt[5] = IPV6_TLV_PADN;
761         opt->dst_opt[6] = 1;
762
763         opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
764         opt->ops.opt_nflen = 8;
765 }
766
767 /**
768  * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
769  *   @t: the outgoing tunnel device
770  *   @hdr: IPv6 header from the incoming packet
771  *
772  * Description:
773  *   Avoid trivial tunneling loop by checking that tunnel exit-point
774  *   doesn't match source of incoming packet.
775  *
776  * Return:
777  *   1 if conflict,
778  *   0 else
779  **/
780
781 static inline int
782 ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
783 {
784         return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
785 }
786
787 static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
788 {
789         struct ip6_tnl_parm *p = &t->parms;
790         int ret = 0;
791
792         if (p->flags & IP6_TNL_F_CAP_XMIT) {
793                 struct net_device *ldev = NULL;
794
795                 if (p->link)
796                         ldev = dev_get_by_index(&init_net, p->link);
797
798                 if (unlikely(!ipv6_chk_addr(&init_net, &p->laddr, ldev, 0)))
799                         printk(KERN_WARNING
800                                "%s xmit: Local address not yet configured!\n",
801                                p->name);
802                 else if (!ipv6_addr_is_multicast(&p->raddr) &&
803                          unlikely(ipv6_chk_addr(&init_net, &p->raddr, NULL, 0)))
804                         printk(KERN_WARNING
805                                "%s xmit: Routing loop! "
806                                "Remote address found on this node!\n",
807                                p->name);
808                 else
809                         ret = 1;
810                 if (ldev)
811                         dev_put(ldev);
812         }
813         return ret;
814 }
815 /**
816  * ip6_tnl_xmit2 - encapsulate packet and send
817  *   @skb: the outgoing socket buffer
818  *   @dev: the outgoing tunnel device
819  *   @dsfield: dscp code for outer header
820  *   @fl: flow of tunneled packet
821  *   @encap_limit: encapsulation limit
822  *   @pmtu: Path MTU is stored if packet is too big
823  *
824  * Description:
825  *   Build new header and do some sanity checks on the packet before sending
826  *   it.
827  *
828  * Return:
829  *   0 on success
830  *   -1 fail
831  *   %-EMSGSIZE message too big. return mtu in this case.
832  **/
833
834 static int ip6_tnl_xmit2(struct sk_buff *skb,
835                          struct net_device *dev,
836                          __u8 dsfield,
837                          struct flowi *fl,
838                          int encap_limit,
839                          __u32 *pmtu)
840 {
841         struct ip6_tnl *t = netdev_priv(dev);
842         struct net_device_stats *stats = &t->stat;
843         struct ipv6hdr *ipv6h = ipv6_hdr(skb);
844         struct ipv6_tel_txoption opt;
845         struct dst_entry *dst;
846         struct net_device *tdev;
847         int mtu;
848         unsigned int max_headroom = sizeof(struct ipv6hdr);
849         u8 proto;
850         int err = -1;
851         int pkt_len;
852
853         if ((dst = ip6_tnl_dst_check(t)) != NULL)
854                 dst_hold(dst);
855         else {
856                 dst = ip6_route_output(&init_net, NULL, fl);
857
858                 if (dst->error || xfrm_lookup(&dst, fl, NULL, 0) < 0)
859                         goto tx_err_link_failure;
860         }
861
862         tdev = dst->dev;
863
864         if (tdev == dev) {
865                 stats->collisions++;
866                 if (net_ratelimit())
867                         printk(KERN_WARNING
868                                "%s: Local routing loop detected!\n",
869                                t->parms.name);
870                 goto tx_err_dst_release;
871         }
872         mtu = dst_mtu(dst) - sizeof (*ipv6h);
873         if (encap_limit >= 0) {
874                 max_headroom += 8;
875                 mtu -= 8;
876         }
877         if (mtu < IPV6_MIN_MTU)
878                 mtu = IPV6_MIN_MTU;
879         if (skb->dst)
880                 skb->dst->ops->update_pmtu(skb->dst, mtu);
881         if (skb->len > mtu) {
882                 *pmtu = mtu;
883                 err = -EMSGSIZE;
884                 goto tx_err_dst_release;
885         }
886
887         /*
888          * Okay, now see if we can stuff it in the buffer as-is.
889          */
890         max_headroom += LL_RESERVED_SPACE(tdev);
891
892         if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
893             (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
894                 struct sk_buff *new_skb;
895
896                 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
897                         goto tx_err_dst_release;
898
899                 if (skb->sk)
900                         skb_set_owner_w(new_skb, skb->sk);
901                 kfree_skb(skb);
902                 skb = new_skb;
903         }
904         dst_release(skb->dst);
905         skb->dst = dst_clone(dst);
906
907         skb->transport_header = skb->network_header;
908
909         proto = fl->proto;
910         if (encap_limit >= 0) {
911                 init_tel_txopt(&opt, encap_limit);
912                 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
913         }
914         skb_push(skb, sizeof(struct ipv6hdr));
915         skb_reset_network_header(skb);
916         ipv6h = ipv6_hdr(skb);
917         *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
918         dsfield = INET_ECN_encapsulate(0, dsfield);
919         ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
920         ipv6h->hop_limit = t->parms.hop_limit;
921         ipv6h->nexthdr = proto;
922         ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
923         ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
924         nf_reset(skb);
925         pkt_len = skb->len;
926         err = ip6_local_out(skb);
927
928         if (net_xmit_eval(err) == 0) {
929                 stats->tx_bytes += pkt_len;
930                 stats->tx_packets++;
931         } else {
932                 stats->tx_errors++;
933                 stats->tx_aborted_errors++;
934         }
935         ip6_tnl_dst_store(t, dst);
936         return 0;
937 tx_err_link_failure:
938         stats->tx_carrier_errors++;
939         dst_link_failure(skb);
940 tx_err_dst_release:
941         dst_release(dst);
942         return err;
943 }
944
945 static inline int
946 ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
947 {
948         struct ip6_tnl *t = netdev_priv(dev);
949         struct iphdr  *iph = ip_hdr(skb);
950         int encap_limit = -1;
951         struct flowi fl;
952         __u8 dsfield;
953         __u32 mtu;
954         int err;
955
956         if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
957             !ip6_tnl_xmit_ctl(t))
958                 return -1;
959
960         if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
961                 encap_limit = t->parms.encap_limit;
962
963         memcpy(&fl, &t->fl, sizeof (fl));
964         fl.proto = IPPROTO_IPIP;
965
966         dsfield = ipv4_get_dsfield(iph);
967
968         if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
969                 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
970                                           & IPV6_TCLASS_MASK;
971
972         err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
973         if (err != 0) {
974                 /* XXX: send ICMP error even if DF is not set. */
975                 if (err == -EMSGSIZE)
976                         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
977                                   htonl(mtu));
978                 return -1;
979         }
980
981         return 0;
982 }
983
984 static inline int
985 ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
986 {
987         struct ip6_tnl *t = netdev_priv(dev);
988         struct ipv6hdr *ipv6h = ipv6_hdr(skb);
989         int encap_limit = -1;
990         __u16 offset;
991         struct flowi fl;
992         __u8 dsfield;
993         __u32 mtu;
994         int err;
995
996         if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
997             !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
998                 return -1;
999
1000         offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1001         if (offset > 0) {
1002                 struct ipv6_tlv_tnl_enc_lim *tel;
1003                 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
1004                 if (tel->encap_limit == 0) {
1005                         icmpv6_send(skb, ICMPV6_PARAMPROB,
1006                                     ICMPV6_HDR_FIELD, offset + 2, skb->dev);
1007                         return -1;
1008                 }
1009                 encap_limit = tel->encap_limit - 1;
1010         } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1011                 encap_limit = t->parms.encap_limit;
1012
1013         memcpy(&fl, &t->fl, sizeof (fl));
1014         fl.proto = IPPROTO_IPV6;
1015
1016         dsfield = ipv6_get_dsfield(ipv6h);
1017         if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1018                 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1019         if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1020                 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1021
1022         err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1023         if (err != 0) {
1024                 if (err == -EMSGSIZE)
1025                         icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
1026                 return -1;
1027         }
1028
1029         return 0;
1030 }
1031
1032 static int
1033 ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1034 {
1035         struct ip6_tnl *t = netdev_priv(dev);
1036         struct net_device_stats *stats = &t->stat;
1037         int ret;
1038
1039         if (t->recursion++) {
1040                 t->stat.collisions++;
1041                 goto tx_err;
1042         }
1043
1044         switch (skb->protocol) {
1045         case __constant_htons(ETH_P_IP):
1046                 ret = ip4ip6_tnl_xmit(skb, dev);
1047                 break;
1048         case __constant_htons(ETH_P_IPV6):
1049                 ret = ip6ip6_tnl_xmit(skb, dev);
1050                 break;
1051         default:
1052                 goto tx_err;
1053         }
1054
1055         if (ret < 0)
1056                 goto tx_err;
1057
1058         t->recursion--;
1059         return 0;
1060
1061 tx_err:
1062         stats->tx_errors++;
1063         stats->tx_dropped++;
1064         kfree_skb(skb);
1065         t->recursion--;
1066         return 0;
1067 }
1068
1069 static void ip6_tnl_set_cap(struct ip6_tnl *t)
1070 {
1071         struct ip6_tnl_parm *p = &t->parms;
1072         int ltype = ipv6_addr_type(&p->laddr);
1073         int rtype = ipv6_addr_type(&p->raddr);
1074
1075         p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1076
1077         if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1078             rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1079             !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
1080             (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
1081                 if (ltype&IPV6_ADDR_UNICAST)
1082                         p->flags |= IP6_TNL_F_CAP_XMIT;
1083                 if (rtype&IPV6_ADDR_UNICAST)
1084                         p->flags |= IP6_TNL_F_CAP_RCV;
1085         }
1086 }
1087
1088 static void ip6_tnl_link_config(struct ip6_tnl *t)
1089 {
1090         struct net_device *dev = t->dev;
1091         struct ip6_tnl_parm *p = &t->parms;
1092         struct flowi *fl = &t->fl;
1093
1094         memcpy(&dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1095         memcpy(&dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1096
1097         /* Set up flowi template */
1098         ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1099         ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1100         fl->oif = p->link;
1101         fl->fl6_flowlabel = 0;
1102
1103         if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1104                 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1105         if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1106                 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1107
1108         ip6_tnl_set_cap(t);
1109
1110         if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1111                 dev->flags |= IFF_POINTOPOINT;
1112         else
1113                 dev->flags &= ~IFF_POINTOPOINT;
1114
1115         dev->iflink = p->link;
1116
1117         if (p->flags & IP6_TNL_F_CAP_XMIT) {
1118                 int strict = (ipv6_addr_type(&p->raddr) &
1119                               (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1120
1121                 struct rt6_info *rt = rt6_lookup(&init_net, &p->raddr, &p->laddr,
1122                                                  p->link, strict);
1123
1124                 if (rt == NULL)
1125                         return;
1126
1127                 if (rt->rt6i_dev) {
1128                         dev->hard_header_len = rt->rt6i_dev->hard_header_len +
1129                                 sizeof (struct ipv6hdr);
1130
1131                         dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
1132
1133                         if (dev->mtu < IPV6_MIN_MTU)
1134                                 dev->mtu = IPV6_MIN_MTU;
1135                 }
1136                 dst_release(&rt->u.dst);
1137         }
1138 }
1139
1140 /**
1141  * ip6_tnl_change - update the tunnel parameters
1142  *   @t: tunnel to be changed
1143  *   @p: tunnel configuration parameters
1144  *   @active: != 0 if tunnel is ready for use
1145  *
1146  * Description:
1147  *   ip6_tnl_change() updates the tunnel parameters
1148  **/
1149
1150 static int
1151 ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
1152 {
1153         ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1154         ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1155         t->parms.flags = p->flags;
1156         t->parms.hop_limit = p->hop_limit;
1157         t->parms.encap_limit = p->encap_limit;
1158         t->parms.flowinfo = p->flowinfo;
1159         t->parms.link = p->link;
1160         t->parms.proto = p->proto;
1161         ip6_tnl_dst_reset(t);
1162         ip6_tnl_link_config(t);
1163         return 0;
1164 }
1165
1166 /**
1167  * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
1168  *   @dev: virtual device associated with tunnel
1169  *   @ifr: parameters passed from userspace
1170  *   @cmd: command to be performed
1171  *
1172  * Description:
1173  *   ip6_tnl_ioctl() is used for managing IPv6 tunnels
1174  *   from userspace.
1175  *
1176  *   The possible commands are the following:
1177  *     %SIOCGETTUNNEL: get tunnel parameters for device
1178  *     %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1179  *     %SIOCCHGTUNNEL: change tunnel parameters to those given
1180  *     %SIOCDELTUNNEL: delete tunnel
1181  *
1182  *   The fallback device "ip6tnl0", created during module
1183  *   initialization, can be used for creating other tunnel devices.
1184  *
1185  * Return:
1186  *   0 on success,
1187  *   %-EFAULT if unable to copy data to or from userspace,
1188  *   %-EPERM if current process hasn't %CAP_NET_ADMIN set
1189  *   %-EINVAL if passed tunnel parameters are invalid,
1190  *   %-EEXIST if changing a tunnel's parameters would cause a conflict
1191  *   %-ENODEV if attempting to change or delete a nonexisting device
1192  **/
1193
1194 static int
1195 ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1196 {
1197         int err = 0;
1198         struct ip6_tnl_parm p;
1199         struct ip6_tnl *t = NULL;
1200
1201         switch (cmd) {
1202         case SIOCGETTUNNEL:
1203                 if (dev == ip6_fb_tnl_dev) {
1204                         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
1205                                 err = -EFAULT;
1206                                 break;
1207                         }
1208                         t = ip6_tnl_locate(&p, 0);
1209                 }
1210                 if (t == NULL)
1211                         t = netdev_priv(dev);
1212                 memcpy(&p, &t->parms, sizeof (p));
1213                 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1214                         err = -EFAULT;
1215                 }
1216                 break;
1217         case SIOCADDTUNNEL:
1218         case SIOCCHGTUNNEL:
1219                 err = -EPERM;
1220                 if (!capable(CAP_NET_ADMIN))
1221                         break;
1222                 err = -EFAULT;
1223                 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
1224                         break;
1225                 err = -EINVAL;
1226                 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1227                     p.proto != 0)
1228                         break;
1229                 t = ip6_tnl_locate(&p, cmd == SIOCADDTUNNEL);
1230                 if (dev != ip6_fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
1231                         if (t != NULL) {
1232                                 if (t->dev != dev) {
1233                                         err = -EEXIST;
1234                                         break;
1235                                 }
1236                         } else
1237                                 t = netdev_priv(dev);
1238
1239                         ip6_tnl_unlink(t);
1240                         err = ip6_tnl_change(t, &p);
1241                         ip6_tnl_link(t);
1242                         netdev_state_change(dev);
1243                 }
1244                 if (t) {
1245                         err = 0;
1246                         if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1247                                 err = -EFAULT;
1248
1249                 } else
1250                         err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1251                 break;
1252         case SIOCDELTUNNEL:
1253                 err = -EPERM;
1254                 if (!capable(CAP_NET_ADMIN))
1255                         break;
1256
1257                 if (dev == ip6_fb_tnl_dev) {
1258                         err = -EFAULT;
1259                         if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
1260                                 break;
1261                         err = -ENOENT;
1262                         if ((t = ip6_tnl_locate(&p, 0)) == NULL)
1263                                 break;
1264                         err = -EPERM;
1265                         if (t->dev == ip6_fb_tnl_dev)
1266                                 break;
1267                         dev = t->dev;
1268                 }
1269                 err = 0;
1270                 unregister_netdevice(dev);
1271                 break;
1272         default:
1273                 err = -EINVAL;
1274         }
1275         return err;
1276 }
1277
1278 /**
1279  * ip6_tnl_get_stats - return the stats for tunnel device
1280  *   @dev: virtual device associated with tunnel
1281  *
1282  * Return: stats for device
1283  **/
1284
1285 static struct net_device_stats *
1286 ip6_tnl_get_stats(struct net_device *dev)
1287 {
1288         return &(((struct ip6_tnl *)netdev_priv(dev))->stat);
1289 }
1290
1291 /**
1292  * ip6_tnl_change_mtu - change mtu manually for tunnel device
1293  *   @dev: virtual device associated with tunnel
1294  *   @new_mtu: the new mtu
1295  *
1296  * Return:
1297  *   0 on success,
1298  *   %-EINVAL if mtu too small
1299  **/
1300
1301 static int
1302 ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
1303 {
1304         if (new_mtu < IPV6_MIN_MTU) {
1305                 return -EINVAL;
1306         }
1307         dev->mtu = new_mtu;
1308         return 0;
1309 }
1310
1311 /**
1312  * ip6_tnl_dev_setup - setup virtual tunnel device
1313  *   @dev: virtual device associated with tunnel
1314  *
1315  * Description:
1316  *   Initialize function pointers and device parameters
1317  **/
1318
1319 static void ip6_tnl_dev_setup(struct net_device *dev)
1320 {
1321         dev->uninit = ip6_tnl_dev_uninit;
1322         dev->destructor = free_netdev;
1323         dev->hard_start_xmit = ip6_tnl_xmit;
1324         dev->get_stats = ip6_tnl_get_stats;
1325         dev->do_ioctl = ip6_tnl_ioctl;
1326         dev->change_mtu = ip6_tnl_change_mtu;
1327
1328         dev->type = ARPHRD_TUNNEL6;
1329         dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1330         dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1331         dev->flags |= IFF_NOARP;
1332         dev->addr_len = sizeof(struct in6_addr);
1333 }
1334
1335
1336 /**
1337  * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
1338  *   @dev: virtual device associated with tunnel
1339  **/
1340
1341 static inline void
1342 ip6_tnl_dev_init_gen(struct net_device *dev)
1343 {
1344         struct ip6_tnl *t = netdev_priv(dev);
1345         t->dev = dev;
1346         strcpy(t->parms.name, dev->name);
1347 }
1348
1349 /**
1350  * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
1351  *   @dev: virtual device associated with tunnel
1352  **/
1353
1354 static int
1355 ip6_tnl_dev_init(struct net_device *dev)
1356 {
1357         struct ip6_tnl *t = netdev_priv(dev);
1358         ip6_tnl_dev_init_gen(dev);
1359         ip6_tnl_link_config(t);
1360         return 0;
1361 }
1362
1363 /**
1364  * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
1365  *   @dev: fallback device
1366  *
1367  * Return: 0
1368  **/
1369
1370 static int
1371 ip6_fb_tnl_dev_init(struct net_device *dev)
1372 {
1373         struct ip6_tnl *t = netdev_priv(dev);
1374         ip6_tnl_dev_init_gen(dev);
1375         t->parms.proto = IPPROTO_IPV6;
1376         dev_hold(dev);
1377         tnls_wc[0] = t;
1378         return 0;
1379 }
1380
1381 static struct xfrm6_tunnel ip4ip6_handler = {
1382         .handler        = ip4ip6_rcv,
1383         .err_handler    = ip4ip6_err,
1384         .priority       =       1,
1385 };
1386
1387 static struct xfrm6_tunnel ip6ip6_handler = {
1388         .handler        = ip6ip6_rcv,
1389         .err_handler    = ip6ip6_err,
1390         .priority       =       1,
1391 };
1392
1393 static int ip6_tnl_init_net(struct net *net)
1394 {
1395         int err;
1396         struct ip6_tnl_net *ip6n;
1397
1398         err = -ENOMEM;
1399         ip6n = kmalloc(sizeof(struct ip6_tnl_net), GFP_KERNEL);
1400         if (ip6n == NULL)
1401                 goto err_alloc;
1402
1403         err = net_assign_generic(net, ip6_tnl_net_id, ip6n);
1404         if (err < 0)
1405                 goto err_assign;
1406
1407         return 0;
1408
1409 err_assign:
1410         kfree(ip6n);
1411 err_alloc:
1412         return err;
1413 }
1414
1415 static void ip6_tnl_exit_net(struct net *net)
1416 {
1417         struct ip6_tnl_net *ip6n;
1418
1419         ip6n = net_generic(net, ip6_tnl_net_id);
1420         kfree(ip6n);
1421 }
1422
1423 static struct pernet_operations ip6_tnl_net_ops = {
1424         .init = ip6_tnl_init_net,
1425         .exit = ip6_tnl_exit_net,
1426 };
1427
1428 /**
1429  * ip6_tunnel_init - register protocol and reserve needed resources
1430  *
1431  * Return: 0 on success
1432  **/
1433
1434 static int __init ip6_tunnel_init(void)
1435 {
1436         int  err;
1437
1438         if (xfrm6_tunnel_register(&ip4ip6_handler, AF_INET)) {
1439                 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
1440                 err = -EAGAIN;
1441                 goto out;
1442         }
1443
1444         if (xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6)) {
1445                 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
1446                 err = -EAGAIN;
1447                 goto unreg_ip4ip6;
1448         }
1449         ip6_fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1450                                       ip6_tnl_dev_setup);
1451
1452         if (!ip6_fb_tnl_dev) {
1453                 err = -ENOMEM;
1454                 goto fail;
1455         }
1456         ip6_fb_tnl_dev->init = ip6_fb_tnl_dev_init;
1457
1458         if ((err = register_netdev(ip6_fb_tnl_dev))) {
1459                 free_netdev(ip6_fb_tnl_dev);
1460                 goto fail;
1461         }
1462
1463         err = register_pernet_gen_device(&ip6_tnl_net_id, &ip6_tnl_net_ops);
1464         if (err < 0)
1465                 goto err_pernet;
1466         return 0;
1467 err_pernet:
1468         unregister_netdevice(ip6_fb_tnl_dev);
1469 fail:
1470         xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
1471 unreg_ip4ip6:
1472         xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
1473 out:
1474         return err;
1475 }
1476
1477 static void __exit ip6_tnl_destroy_tunnels(void)
1478 {
1479         int h;
1480         struct ip6_tnl *t;
1481
1482         for (h = 0; h < HASH_SIZE; h++) {
1483                 while ((t = tnls_r_l[h]) != NULL)
1484                         unregister_netdevice(t->dev);
1485         }
1486
1487         t = tnls_wc[0];
1488         unregister_netdevice(t->dev);
1489 }
1490
1491 /**
1492  * ip6_tunnel_cleanup - free resources and unregister protocol
1493  **/
1494
1495 static void __exit ip6_tunnel_cleanup(void)
1496 {
1497         if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
1498                 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
1499
1500         if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
1501                 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
1502
1503         rtnl_lock();
1504         ip6_tnl_destroy_tunnels();
1505         rtnl_unlock();
1506
1507         unregister_pernet_gen_device(ip6_tnl_net_id, &ip6_tnl_net_ops);
1508 }
1509
1510 module_init(ip6_tunnel_init);
1511 module_exit(ip6_tunnel_cleanup);