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