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