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