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