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