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