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