ip6_tunnel.c 43.1 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *	IPv6 tunneling device
L
Linus Torvalds 已提交
3 4 5
 *	Linux INET6 implementation
 *
 *	Authors:
6
 *	Ville Nuorvala		<vnuorval@tcs.hut.fi>
7
 *	Yasuyuki Kozakai	<kozakai@linux-ipv6.org>
L
Linus Torvalds 已提交
8 9
 *
 *      Based on:
10
 *      linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
L
Linus Torvalds 已提交
11 12 13 14 15 16 17 18 19 20
 *
 *      RFC 2473
 *
 *	This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 *
 */

21 22
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
23
#include <linux/module.h>
24
#include <linux/capability.h>
L
Linus Torvalds 已提交
25 26 27
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/sockios.h>
28
#include <linux/icmp.h>
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41
#include <linux/if.h>
#include <linux/in.h>
#include <linux/ip.h>
#include <linux/if_tunnel.h>
#include <linux/net.h>
#include <linux/in6.h>
#include <linux/netdevice.h>
#include <linux/if_arp.h>
#include <linux/icmpv6.h>
#include <linux/init.h>
#include <linux/route.h>
#include <linux/rtnetlink.h>
#include <linux/netfilter_ipv6.h>
42
#include <linux/slab.h>
E
Eric Dumazet 已提交
43
#include <linux/hash.h>
L
Linus Torvalds 已提交
44 45

#include <asm/uaccess.h>
A
Arun Sharma 已提交
46
#include <linux/atomic.h>
L
Linus Torvalds 已提交
47

48
#include <net/icmp.h>
L
Linus Torvalds 已提交
49
#include <net/ip.h>
50
#include <net/ip_tunnels.h>
L
Linus Torvalds 已提交
51 52 53 54 55 56 57
#include <net/ipv6.h>
#include <net/ip6_route.h>
#include <net/addrconf.h>
#include <net/ip6_tunnel.h>
#include <net/xfrm.h>
#include <net/dsfield.h>
#include <net/inet_ecn.h>
58 59
#include <net/net_namespace.h>
#include <net/netns/generic.h>
L
Linus Torvalds 已提交
60 61

MODULE_AUTHOR("Ville Nuorvala");
62
MODULE_DESCRIPTION("IPv6 tunneling device");
L
Linus Torvalds 已提交
63
MODULE_LICENSE("GPL");
S
stephen hemminger 已提交
64
MODULE_ALIAS_NETDEV("ip6tnl0");
L
Linus Torvalds 已提交
65 66

#ifdef IP6_TNL_DEBUG
67
#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
L
Linus Torvalds 已提交
68 69 70 71 72
#else
#define IP6_TNL_TRACE(x...) do {;} while(0)
#endif

#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
73
#define IPV6_TCLASS_SHIFT 20
L
Linus Torvalds 已提交
74

E
Eric Dumazet 已提交
75 76
#define HASH_SIZE_SHIFT  5
#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
L
Linus Torvalds 已提交
77

78 79 80 81
static bool log_ecn_error = true;
module_param(log_ecn_error, bool, 0644);
MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");

E
Eric Dumazet 已提交
82 83 84 85 86 87
static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
{
	u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);

	return hash_32(hash, HASH_SIZE_SHIFT);
}
L
Linus Torvalds 已提交
88

E
Eric Dumazet 已提交
89
static int ip6_tnl_dev_init(struct net_device *dev);
90
static void ip6_tnl_dev_setup(struct net_device *dev);
91
static struct rtnl_link_ops ip6_link_ops __read_mostly;
L
Linus Torvalds 已提交
92

93
static int ip6_tnl_net_id __read_mostly;
94
struct ip6_tnl_net {
95 96
	/* the IPv6 tunnel fallback device */
	struct net_device *fb_tnl_dev;
97
	/* lists for storing tunnels in use */
E
Eric Dumazet 已提交
98 99 100
	struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
	struct ip6_tnl __rcu *tnls_wc[1];
	struct ip6_tnl __rcu **tnls[2];
101 102
};

E
Eric Dumazet 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
static struct net_device_stats *ip6_get_stats(struct net_device *dev)
{
	struct pcpu_tstats sum = { 0 };
	int i;

	for_each_possible_cpu(i) {
		const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);

		sum.rx_packets += tstats->rx_packets;
		sum.rx_bytes   += tstats->rx_bytes;
		sum.tx_packets += tstats->tx_packets;
		sum.tx_bytes   += tstats->tx_bytes;
	}
	dev->stats.rx_packets = sum.rx_packets;
	dev->stats.rx_bytes   = sum.rx_bytes;
	dev->stats.tx_packets = sum.tx_packets;
	dev->stats.tx_bytes   = sum.tx_bytes;
	return &dev->stats;
}

123
/*
E
Eric Dumazet 已提交
124
 * Locking : hash tables are protected by RCU and RTNL
125
 */
L
Linus Torvalds 已提交
126

X
xeb@mail.ru 已提交
127
struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
L
Linus Torvalds 已提交
128 129 130
{
	struct dst_entry *dst = t->dst_cache;

131
	if (dst && dst->obsolete &&
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139
	    dst->ops->check(dst, t->dst_cookie) == NULL) {
		t->dst_cache = NULL;
		dst_release(dst);
		return NULL;
	}

	return dst;
}
X
xeb@mail.ru 已提交
140
EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
L
Linus Torvalds 已提交
141

X
xeb@mail.ru 已提交
142
void ip6_tnl_dst_reset(struct ip6_tnl *t)
L
Linus Torvalds 已提交
143 144 145 146
{
	dst_release(t->dst_cache);
	t->dst_cache = NULL;
}
X
xeb@mail.ru 已提交
147
EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
L
Linus Torvalds 已提交
148

X
xeb@mail.ru 已提交
149
void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
L
Linus Torvalds 已提交
150 151 152 153 154 155
{
	struct rt6_info *rt = (struct rt6_info *) dst;
	t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
	dst_release(t->dst_cache);
	t->dst_cache = dst;
}
X
xeb@mail.ru 已提交
156
EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
L
Linus Torvalds 已提交
157 158

/**
159
 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
160 161
 *   @remote: the address of the tunnel exit-point
 *   @local: the address of the tunnel entry-point
L
Linus Torvalds 已提交
162
 *
163
 * Return:
L
Linus Torvalds 已提交
164
 *   tunnel matching given end-points if found,
165
 *   else fallback tunnel if its device is up,
L
Linus Torvalds 已提交
166 167 168
 *   else %NULL
 **/

169 170 171
#define for_each_ip6_tunnel_rcu(start) \
	for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))

L
Linus Torvalds 已提交
172
static struct ip6_tnl *
173
ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
L
Linus Torvalds 已提交
174
{
E
Eric Dumazet 已提交
175
	unsigned int hash = HASH(remote, local);
L
Linus Torvalds 已提交
176
	struct ip6_tnl *t;
177
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
L
Linus Torvalds 已提交
178

E
Eric Dumazet 已提交
179
	for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
L
Linus Torvalds 已提交
180 181 182 183 184
		if (ipv6_addr_equal(local, &t->parms.laddr) &&
		    ipv6_addr_equal(remote, &t->parms.raddr) &&
		    (t->dev->flags & IFF_UP))
			return t;
	}
185 186
	t = rcu_dereference(ip6n->tnls_wc[0]);
	if (t && (t->dev->flags & IFF_UP))
L
Linus Torvalds 已提交
187 188 189 190 191 192
		return t;

	return NULL;
}

/**
193
 * ip6_tnl_bucket - get head of list matching given tunnel parameters
194
 *   @p: parameters containing tunnel end-points
L
Linus Torvalds 已提交
195 196
 *
 * Description:
197
 *   ip6_tnl_bucket() returns the head of the list matching the
L
Linus Torvalds 已提交
198 199
 *   &struct in6_addr entries laddr and raddr in @p.
 *
200
 * Return: head of IPv6 tunnel list
L
Linus Torvalds 已提交
201 202
 **/

E
Eric Dumazet 已提交
203
static struct ip6_tnl __rcu **
X
xeb@mail.ru 已提交
204
ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
L
Linus Torvalds 已提交
205
{
206 207
	const struct in6_addr *remote = &p->raddr;
	const struct in6_addr *local = &p->laddr;
208
	unsigned int h = 0;
L
Linus Torvalds 已提交
209 210 211 212
	int prio = 0;

	if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
		prio = 1;
E
Eric Dumazet 已提交
213
		h = HASH(remote, local);
L
Linus Torvalds 已提交
214
	}
215
	return &ip6n->tnls[prio][h];
L
Linus Torvalds 已提交
216 217 218
}

/**
219
 * ip6_tnl_link - add tunnel to hash table
L
Linus Torvalds 已提交
220 221 222 223
 *   @t: tunnel to be added
 **/

static void
224
ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
L
Linus Torvalds 已提交
225
{
E
Eric Dumazet 已提交
226
	struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
L
Linus Torvalds 已提交
227

228 229
	rcu_assign_pointer(t->next , rtnl_dereference(*tp));
	rcu_assign_pointer(*tp, t);
L
Linus Torvalds 已提交
230 231 232
}

/**
233
 * ip6_tnl_unlink - remove tunnel from hash table
L
Linus Torvalds 已提交
234 235 236 237
 *   @t: tunnel to be removed
 **/

static void
238
ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
L
Linus Torvalds 已提交
239
{
E
Eric Dumazet 已提交
240 241 242 243 244 245 246
	struct ip6_tnl __rcu **tp;
	struct ip6_tnl *iter;

	for (tp = ip6_tnl_bucket(ip6n, &t->parms);
	     (iter = rtnl_dereference(*tp)) != NULL;
	     tp = &iter->next) {
		if (t == iter) {
247
			rcu_assign_pointer(*tp, t->next);
L
Linus Torvalds 已提交
248 249 250 251 252
			break;
		}
	}
}

E
Eric Dumazet 已提交
253 254 255 256 257 258
static void ip6_dev_free(struct net_device *dev)
{
	free_percpu(dev->tstats);
	free_netdev(dev);
}

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
static int ip6_tnl_create2(struct net_device *dev)
{
	struct ip6_tnl *t = netdev_priv(dev);
	struct net *net = dev_net(dev);
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
	int err;

	t = netdev_priv(dev);
	err = ip6_tnl_dev_init(dev);
	if (err < 0)
		goto out;

	err = register_netdevice(dev);
	if (err < 0)
		goto out;

	strcpy(t->parms.name, dev->name);
	dev->rtnl_link_ops = &ip6_link_ops;

	dev_hold(dev);
	ip6_tnl_link(ip6n, t);
	return 0;

out:
	return err;
}

L
Linus Torvalds 已提交
286
/**
287
 * ip6_tnl_create - create a new tunnel
L
Linus Torvalds 已提交
288 289 290 291 292
 *   @p: tunnel parameters
 *   @pt: pointer to new tunnel
 *
 * Description:
 *   Create tunnel matching given parameters.
293 294
 *
 * Return:
295
 *   created tunnel or NULL
L
Linus Torvalds 已提交
296 297
 **/

X
xeb@mail.ru 已提交
298
static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
L
Linus Torvalds 已提交
299 300 301 302 303 304
{
	struct net_device *dev;
	struct ip6_tnl *t;
	char name[IFNAMSIZ];
	int err;

305
	if (p->name[0])
L
Linus Torvalds 已提交
306
		strlcpy(name, p->name, IFNAMSIZ);
307 308 309
	else
		sprintf(name, "ip6tnl%%d");

310
	dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
L
Linus Torvalds 已提交
311
	if (dev == NULL)
312
		goto failed;
L
Linus Torvalds 已提交
313

314 315
	dev_net_set(dev, net);

316
	t = netdev_priv(dev);
L
Linus Torvalds 已提交
317
	t->parms = *p;
318
	err = ip6_tnl_create2(dev);
E
Eric Dumazet 已提交
319 320
	if (err < 0)
		goto failed_free;
L
Linus Torvalds 已提交
321

322
	return t;
323 324

failed_free:
E
Eric Dumazet 已提交
325
	ip6_dev_free(dev);
326 327
failed:
	return NULL;
L
Linus Torvalds 已提交
328 329 330
}

/**
331
 * ip6_tnl_locate - find or create tunnel matching given parameters
332
 *   @p: tunnel parameters
L
Linus Torvalds 已提交
333 334 335
 *   @create: != 0 if allowed to create new tunnel if no match found
 *
 * Description:
336
 *   ip6_tnl_locate() first tries to locate an existing tunnel
L
Linus Torvalds 已提交
337 338 339 340
 *   based on @parms. If this is unsuccessful, but @create is set a new
 *   tunnel device is created and registered for use.
 *
 * Return:
341
 *   matching tunnel or NULL
L
Linus Torvalds 已提交
342 343
 **/

344
static struct ip6_tnl *ip6_tnl_locate(struct net *net,
X
xeb@mail.ru 已提交
345
		struct __ip6_tnl_parm *p, int create)
L
Linus Torvalds 已提交
346
{
347 348
	const struct in6_addr *remote = &p->raddr;
	const struct in6_addr *local = &p->laddr;
E
Eric Dumazet 已提交
349
	struct ip6_tnl __rcu **tp;
L
Linus Torvalds 已提交
350
	struct ip6_tnl *t;
351
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
L
Linus Torvalds 已提交
352

E
Eric Dumazet 已提交
353 354 355
	for (tp = ip6_tnl_bucket(ip6n, p);
	     (t = rtnl_dereference(*tp)) != NULL;
	     tp = &t->next) {
L
Linus Torvalds 已提交
356
		if (ipv6_addr_equal(local, &t->parms.laddr) &&
357 358
		    ipv6_addr_equal(remote, &t->parms.raddr))
			return t;
L
Linus Torvalds 已提交
359 360
	}
	if (!create)
361
		return NULL;
362
	return ip6_tnl_create(net, p);
L
Linus Torvalds 已提交
363 364 365
}

/**
366
 * ip6_tnl_dev_uninit - tunnel device uninitializer
L
Linus Torvalds 已提交
367
 *   @dev: the device to be destroyed
368
 *
L
Linus Torvalds 已提交
369
 * Description:
370
 *   ip6_tnl_dev_uninit() removes tunnel from its list
L
Linus Torvalds 已提交
371 372 373
 **/

static void
374
ip6_tnl_dev_uninit(struct net_device *dev)
L
Linus Torvalds 已提交
375
{
376
	struct ip6_tnl *t = netdev_priv(dev);
377 378
	struct net *net = dev_net(dev);
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
L
Linus Torvalds 已提交
379

E
Eric Dumazet 已提交
380
	if (dev == ip6n->fb_tnl_dev)
381
		RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
E
Eric Dumazet 已提交
382
	else
383
		ip6_tnl_unlink(ip6n, t);
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391
	ip6_tnl_dst_reset(t);
	dev_put(dev);
}

/**
 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
 *   @skb: received socket buffer
 *
392 393
 * Return:
 *   0 if none was found,
L
Linus Torvalds 已提交
394 395 396
 *   else index to encapsulation limit
 **/

X
xeb@mail.ru 已提交
397
__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
L
Linus Torvalds 已提交
398
{
399
	const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
L
Linus Torvalds 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
	__u8 nexthdr = ipv6h->nexthdr;
	__u16 off = sizeof (*ipv6h);

	while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
		__u16 optlen = 0;
		struct ipv6_opt_hdr *hdr;
		if (raw + off + sizeof (*hdr) > skb->data &&
		    !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
			break;

		hdr = (struct ipv6_opt_hdr *) (raw + off);
		if (nexthdr == NEXTHDR_FRAGMENT) {
			struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
			if (frag_hdr->frag_off)
				break;
			optlen = 8;
		} else if (nexthdr == NEXTHDR_AUTH) {
			optlen = (hdr->hdrlen + 2) << 2;
		} else {
			optlen = ipv6_optlen(hdr);
		}
		if (nexthdr == NEXTHDR_DEST) {
			__u16 i = off + 2;
			while (1) {
				struct ipv6_tlv_tnl_enc_lim *tel;

				/* No more room for encapsulation limit */
				if (i + sizeof (*tel) > off + optlen)
					break;

				tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
				/* return index of option if found and valid */
				if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
				    tel->length == 1)
					return i;
				/* else jump to next option */
				if (tel->type)
					i += tel->length + 2;
				else
					i++;
			}
		}
		nexthdr = hdr->nexthdr;
		off += optlen;
	}
	return 0;
}
X
xeb@mail.ru 已提交
447
EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
L
Linus Torvalds 已提交
448 449

/**
450
 * ip6_tnl_err - tunnel error handler
L
Linus Torvalds 已提交
451 452
 *
 * Description:
453
 *   ip6_tnl_err() should handle errors in the tunnel according
L
Linus Torvalds 已提交
454 455 456
 *   to the specifications in RFC 2473.
 **/

H
Herbert Xu 已提交
457
static int
458
ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
459
	    u8 *type, u8 *code, int *msg, __u32 *info, int offset)
L
Linus Torvalds 已提交
460
{
461
	const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
L
Linus Torvalds 已提交
462 463
	struct ip6_tnl *t;
	int rel_msg = 0;
464 465
	u8 rel_type = ICMPV6_DEST_UNREACH;
	u8 rel_code = ICMPV6_ADDR_UNREACH;
L
Linus Torvalds 已提交
466 467
	__u32 rel_info = 0;
	__u16 len;
H
Herbert Xu 已提交
468
	int err = -ENOENT;
L
Linus Torvalds 已提交
469

470 471
	/* If the packet doesn't contain the original IPv6 header we are
	   in trouble since we might need the source address for further
L
Linus Torvalds 已提交
472 473
	   processing of the error. */

474
	rcu_read_lock();
475
	if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
476
					&ipv6h->saddr)) == NULL)
L
Linus Torvalds 已提交
477 478
		goto out;

479 480 481
	if (t->parms.proto != ipproto && t->parms.proto != 0)
		goto out;

H
Herbert Xu 已提交
482 483
	err = 0;

484
	switch (*type) {
L
Linus Torvalds 已提交
485 486 487 488
		__u32 teli;
		struct ipv6_tlv_tnl_enc_lim *tel;
		__u32 mtu;
	case ICMPV6_DEST_UNREACH:
489 490
		net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
				     t->parms.name);
L
Linus Torvalds 已提交
491 492 493
		rel_msg = 1;
		break;
	case ICMPV6_TIME_EXCEED:
494
		if ((*code) == ICMPV6_EXC_HOPLIMIT) {
495 496
			net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
					     t->parms.name);
L
Linus Torvalds 已提交
497 498 499 500
			rel_msg = 1;
		}
		break;
	case ICMPV6_PARAMPROB:
501
		teli = 0;
502
		if ((*code) == ICMPV6_HDR_FIELD)
X
xeb@mail.ru 已提交
503
			teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
L
Linus Torvalds 已提交
504

A
Al Viro 已提交
505
		if (teli && teli == *info - 2) {
L
Linus Torvalds 已提交
506 507
			tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
			if (tel->encap_limit == 0) {
508 509
				net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
						     t->parms.name);
L
Linus Torvalds 已提交
510 511
				rel_msg = 1;
			}
512 513 514
		} else {
			net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
					     t->parms.name);
L
Linus Torvalds 已提交
515 516 517
		}
		break;
	case ICMPV6_PKT_TOOBIG:
A
Al Viro 已提交
518
		mtu = *info - offset;
L
Linus Torvalds 已提交
519 520 521 522
		if (mtu < IPV6_MIN_MTU)
			mtu = IPV6_MIN_MTU;
		t->dev->mtu = mtu;

A
Al Viro 已提交
523
		if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
L
Linus Torvalds 已提交
524 525 526 527 528 529 530
			rel_type = ICMPV6_PKT_TOOBIG;
			rel_code = 0;
			rel_info = mtu;
			rel_msg = 1;
		}
		break;
	}
531 532 533 534 535 536 537

	*type = rel_type;
	*code = rel_code;
	*info = rel_info;
	*msg = rel_msg;

out:
538
	rcu_read_unlock();
539 540 541
	return err;
}

542 543
static int
ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
544
	   u8 type, u8 code, int offset, __be32 info)
545 546
{
	int rel_msg = 0;
547 548
	u8 rel_type = type;
	u8 rel_code = code;
A
Al Viro 已提交
549
	__u32 rel_info = ntohl(info);
550 551
	int err;
	struct sk_buff *skb2;
552
	const struct iphdr *eiph;
553
	struct rtable *rt;
554
	struct flowi4 fl4;
555

556 557
	err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
			  &rel_msg, &rel_info, offset);
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
	if (err < 0)
		return err;

	if (rel_msg == 0)
		return 0;

	switch (rel_type) {
	case ICMPV6_DEST_UNREACH:
		if (rel_code != ICMPV6_ADDR_UNREACH)
			return 0;
		rel_type = ICMP_DEST_UNREACH;
		rel_code = ICMP_HOST_UNREACH;
		break;
	case ICMPV6_PKT_TOOBIG:
		if (rel_code != 0)
			return 0;
		rel_type = ICMP_DEST_UNREACH;
		rel_code = ICMP_FRAG_NEEDED;
		break;
577 578 579
	case NDISC_REDIRECT:
		rel_type = ICMP_REDIRECT;
		rel_code = ICMP_REDIR_HOST;
580 581 582 583 584 585 586 587 588 589 590
	default:
		return 0;
	}

	if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
		return 0;

	skb2 = skb_clone(skb, GFP_ATOMIC);
	if (!skb2)
		return 0;

E
Eric Dumazet 已提交
591 592
	skb_dst_drop(skb2);

593
	skb_pull(skb2, offset);
594
	skb_reset_network_header(skb2);
595
	eiph = ip_hdr(skb2);
596 597

	/* Try to guess incoming interface */
598
	rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
599 600 601
				   eiph->saddr, 0,
				   0, 0,
				   IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
602
	if (IS_ERR(rt))
603 604
		goto out;

605
	skb2->dev = rt->dst.dev;
606 607 608 609 610

	/* route "incoming" packet */
	if (rt->rt_flags & RTCF_LOCAL) {
		ip_rt_put(rt);
		rt = NULL;
611
		rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
612 613 614 615
					   eiph->daddr, eiph->saddr,
					   0, 0,
					   IPPROTO_IPIP,
					   RT_TOS(eiph->tos), 0);
616
		if (IS_ERR(rt) ||
617
		    rt->dst.dev->type != ARPHRD_TUNNEL) {
618 619
			if (!IS_ERR(rt))
				ip_rt_put(rt);
620 621
			goto out;
		}
622
		skb_dst_set(skb2, &rt->dst);
623 624 625 626
	} else {
		ip_rt_put(rt);
		if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
				   skb2->dev) ||
E
Eric Dumazet 已提交
627
		    skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
628 629 630 631 632
			goto out;
	}

	/* change mtu on this route */
	if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
E
Eric Dumazet 已提交
633
		if (rel_info > dst_mtu(skb_dst(skb2)))
634 635
			goto out;

636
		skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
637
	}
638
	if (rel_type == ICMP_REDIRECT)
639
		skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
640

A
Al Viro 已提交
641
	icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
642 643 644 645 646 647

out:
	kfree_skb(skb2);
	return 0;
}

648 649
static int
ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
650
	   u8 type, u8 code, int offset, __be32 info)
651 652
{
	int rel_msg = 0;
653 654
	u8 rel_type = type;
	u8 rel_code = code;
A
Al Viro 已提交
655
	__u32 rel_info = ntohl(info);
656 657
	int err;

658 659
	err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
			  &rel_msg, &rel_info, offset);
660 661 662 663
	if (err < 0)
		return err;

	if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
L
Linus Torvalds 已提交
664 665
		struct rt6_info *rt;
		struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
666

L
Linus Torvalds 已提交
667
		if (!skb2)
668
			return 0;
L
Linus Torvalds 已提交
669

E
Eric Dumazet 已提交
670
		skb_dst_drop(skb2);
L
Linus Torvalds 已提交
671
		skb_pull(skb2, offset);
672
		skb_reset_network_header(skb2);
L
Linus Torvalds 已提交
673 674

		/* Try to guess incoming interface */
675 676
		rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
				NULL, 0, 0);
L
Linus Torvalds 已提交
677

678 679
		if (rt && rt->dst.dev)
			skb2->dev = rt->dst.dev;
L
Linus Torvalds 已提交
680

681
		icmpv6_send(skb2, rel_type, rel_code, rel_info);
L
Linus Torvalds 已提交
682

A
Amerigo Wang 已提交
683
		ip6_rt_put(rt);
L
Linus Torvalds 已提交
684 685 686

		kfree_skb(skb2);
	}
687 688

	return 0;
L
Linus Torvalds 已提交
689 690
}

691 692 693
static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
				       const struct ipv6hdr *ipv6h,
				       struct sk_buff *skb)
694 695 696 697
{
	__u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;

	if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
698
		ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
699

700
	return IP6_ECN_decapsulate(ipv6h, skb);
701 702
}

703 704 705
static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
				       const struct ipv6hdr *ipv6h,
				       struct sk_buff *skb)
L
Linus Torvalds 已提交
706
{
707
	if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
708
		ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
L
Linus Torvalds 已提交
709

710
	return IP6_ECN_decapsulate(ipv6h, skb);
L
Linus Torvalds 已提交
711
}
712

X
xeb@mail.ru 已提交
713
__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
714 715 716
			     const struct in6_addr *laddr,
			     const struct in6_addr *raddr)
{
X
xeb@mail.ru 已提交
717
	struct __ip6_tnl_parm *p = &t->parms;
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
	int ltype = ipv6_addr_type(laddr);
	int rtype = ipv6_addr_type(raddr);
	__u32 flags = 0;

	if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
		flags = IP6_TNL_F_CAP_PER_PACKET;
	} else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
		   rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
		   !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
		   (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
		if (ltype&IPV6_ADDR_UNICAST)
			flags |= IP6_TNL_F_CAP_XMIT;
		if (rtype&IPV6_ADDR_UNICAST)
			flags |= IP6_TNL_F_CAP_RCV;
	}
	return flags;
}
X
xeb@mail.ru 已提交
735
EXPORT_SYMBOL(ip6_tnl_get_cap);
736

E
Eric Dumazet 已提交
737
/* called with rcu_read_lock() */
X
xeb@mail.ru 已提交
738
int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
739 740
				  const struct in6_addr *laddr,
				  const struct in6_addr *raddr)
741
{
X
xeb@mail.ru 已提交
742
	struct __ip6_tnl_parm *p = &t->parms;
743
	int ret = 0;
744
	struct net *net = dev_net(t->dev);
745

746 747 748
	if ((p->flags & IP6_TNL_F_CAP_RCV) ||
	    ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
	     (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
749
		struct net_device *ldev = NULL;
750 751

		if (p->link)
E
Eric Dumazet 已提交
752
			ldev = dev_get_by_index_rcu(net, p->link);
753

754 755 756
		if ((ipv6_addr_is_multicast(laddr) ||
		     likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
		    likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
757 758 759 760
			ret = 1;
	}
	return ret;
}
X
xeb@mail.ru 已提交
761
EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
L
Linus Torvalds 已提交
762 763

/**
764
 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
L
Linus Torvalds 已提交
765
 *   @skb: received socket buffer
766 767
 *   @protocol: ethernet protocol ID
 *   @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
L
Linus Torvalds 已提交
768 769 770 771
 *
 * Return: 0
 **/

772
static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
773
		       __u8 ipproto,
774 775 776
		       int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
						   const struct ipv6hdr *ipv6h,
						   struct sk_buff *skb))
L
Linus Torvalds 已提交
777 778
{
	struct ip6_tnl *t;
779
	const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
780
	int err;
L
Linus Torvalds 已提交
781

782
	rcu_read_lock();
L
Linus Torvalds 已提交
783

784
	if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
785
					&ipv6h->daddr)) != NULL) {
E
Eric Dumazet 已提交
786 787
		struct pcpu_tstats *tstats;

788
		if (t->parms.proto != ipproto && t->parms.proto != 0) {
789
			rcu_read_unlock();
790 791 792
			goto discard;
		}

L
Linus Torvalds 已提交
793
		if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
794
			rcu_read_unlock();
795
			goto discard;
L
Linus Torvalds 已提交
796 797
		}

798
		if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
799
			t->dev->stats.rx_dropped++;
800
			rcu_read_unlock();
L
Linus Torvalds 已提交
801 802 803
			goto discard;
		}
		secpath_reset(skb);
804
		skb->mac_header = skb->network_header;
805
		skb_reset_network_header(skb);
806
		skb->protocol = htons(protocol);
L
Linus Torvalds 已提交
807 808
		skb->pkt_type = PACKET_HOST;
		memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
809

810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
		__skb_tunnel_rx(skb, t->dev);

		err = dscp_ecn_decapsulate(t, ipv6h, skb);
		if (unlikely(err)) {
			if (log_ecn_error)
				net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
						     &ipv6h->saddr,
						     ipv6_get_dsfield(ipv6h));
			if (err > 1) {
				++t->dev->stats.rx_frame_errors;
				++t->dev->stats.rx_errors;
				rcu_read_unlock();
				goto discard;
			}
		}

E
Eric Dumazet 已提交
826 827 828 829
		tstats = this_cpu_ptr(t->dev->tstats);
		tstats->rx_packets++;
		tstats->rx_bytes += skb->len;

830
		netif_rx(skb);
E
Eric Dumazet 已提交
831

832
		rcu_read_unlock();
L
Linus Torvalds 已提交
833 834
		return 0;
	}
835
	rcu_read_unlock();
L
Linus Torvalds 已提交
836
	return 1;
837 838 839 840

discard:
	kfree_skb(skb);
	return 0;
L
Linus Torvalds 已提交
841 842
}

843 844
static int ip4ip6_rcv(struct sk_buff *skb)
{
845 846
	return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
			   ip4ip6_dscp_ecn_decapsulate);
847 848
}

849 850
static int ip6ip6_rcv(struct sk_buff *skb)
{
851 852
	return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
			   ip6ip6_dscp_ecn_decapsulate);
853 854
}

855 856 857 858
struct ipv6_tel_txoption {
	struct ipv6_txoptions ops;
	__u8 dst_opt[8];
};
L
Linus Torvalds 已提交
859

860 861 862
static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
{
	memset(opt, 0, sizeof(struct ipv6_tel_txoption));
L
Linus Torvalds 已提交
863

864 865 866 867 868
	opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
	opt->dst_opt[3] = 1;
	opt->dst_opt[4] = encap_limit;
	opt->dst_opt[5] = IPV6_TLV_PADN;
	opt->dst_opt[6] = 1;
L
Linus Torvalds 已提交
869

870 871
	opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
	opt->ops.opt_nflen = 8;
L
Linus Torvalds 已提交
872 873 874
}

/**
875
 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
L
Linus Torvalds 已提交
876
 *   @t: the outgoing tunnel device
877
 *   @hdr: IPv6 header from the incoming packet
L
Linus Torvalds 已提交
878 879
 *
 * Description:
880
 *   Avoid trivial tunneling loop by checking that tunnel exit-point
L
Linus Torvalds 已提交
881 882
 *   doesn't match source of incoming packet.
 *
883
 * Return:
L
Linus Torvalds 已提交
884 885 886 887
 *   1 if conflict,
 *   0 else
 **/

E
Eric Dumazet 已提交
888
static inline bool
889
ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
L
Linus Torvalds 已提交
890 891 892 893
{
	return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
}

X
xeb@mail.ru 已提交
894
int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
895
{
X
xeb@mail.ru 已提交
896
	struct __ip6_tnl_parm *p = &t->parms;
897
	int ret = 0;
898
	struct net *net = dev_net(t->dev);
899

900
	if (p->flags & IP6_TNL_F_CAP_XMIT) {
901 902
		struct net_device *ldev = NULL;

E
Eric Dumazet 已提交
903
		rcu_read_lock();
904
		if (p->link)
E
Eric Dumazet 已提交
905
			ldev = dev_get_by_index_rcu(net, p->link);
906

907
		if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
908 909
			pr_warn("%s xmit: Local address not yet configured!\n",
				p->name);
910
		else if (!ipv6_addr_is_multicast(&p->raddr) &&
911
			 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
912 913
			pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
				p->name);
914 915
		else
			ret = 1;
E
Eric Dumazet 已提交
916
		rcu_read_unlock();
917 918 919
	}
	return ret;
}
X
xeb@mail.ru 已提交
920 921
EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);

L
Linus Torvalds 已提交
922
/**
923
 * ip6_tnl_xmit2 - encapsulate packet and send
L
Linus Torvalds 已提交
924
 *   @skb: the outgoing socket buffer
925
 *   @dev: the outgoing tunnel device
926 927 928 929
 *   @dsfield: dscp code for outer header
 *   @fl: flow of tunneled packet
 *   @encap_limit: encapsulation limit
 *   @pmtu: Path MTU is stored if packet is too big
L
Linus Torvalds 已提交
930 931 932 933 934
 *
 * Description:
 *   Build new header and do some sanity checks on the packet before sending
 *   it.
 *
935
 * Return:
936
 *   0 on success
937 938
 *   -1 fail
 *   %-EMSGSIZE message too big. return mtu in this case.
L
Linus Torvalds 已提交
939 940
 **/

941 942 943
static int ip6_tnl_xmit2(struct sk_buff *skb,
			 struct net_device *dev,
			 __u8 dsfield,
944
			 struct flowi6 *fl6,
945 946
			 int encap_limit,
			 __u32 *pmtu)
L
Linus Torvalds 已提交
947
{
A
Alexey Dobriyan 已提交
948
	struct net *net = dev_net(dev);
949
	struct ip6_tnl *t = netdev_priv(dev);
950
	struct net_device_stats *stats = &t->dev->stats;
951
	struct ipv6hdr *ipv6h = ipv6_hdr(skb);
952
	struct ipv6_tel_txoption opt;
953
	struct dst_entry *dst = NULL, *ndst = NULL;
L
Linus Torvalds 已提交
954 955
	struct net_device *tdev;
	int mtu;
956
	unsigned int max_headroom = sizeof(struct ipv6hdr);
L
Linus Torvalds 已提交
957
	u8 proto;
958
	int err = -1;
L
Linus Torvalds 已提交
959

960 961
	if (!fl6->flowi6_mark)
		dst = ip6_tnl_dst_check(t);
962 963
	if (!dst) {
		ndst = ip6_route_output(net, NULL, fl6);
L
Linus Torvalds 已提交
964

965
		if (ndst->error)
966
			goto tx_err_link_failure;
967 968 969 970
		ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
		if (IS_ERR(ndst)) {
			err = PTR_ERR(ndst);
			ndst = NULL;
971 972
			goto tx_err_link_failure;
		}
973
		dst = ndst;
974
	}
L
Linus Torvalds 已提交
975 976 977 978 979

	tdev = dst->dev;

	if (tdev == dev) {
		stats->collisions++;
980 981
		net_warn_ratelimited("%s: Local routing loop detected!\n",
				     t->parms.name);
L
Linus Torvalds 已提交
982 983 984
		goto tx_err_dst_release;
	}
	mtu = dst_mtu(dst) - sizeof (*ipv6h);
985
	if (encap_limit >= 0) {
L
Linus Torvalds 已提交
986 987 988 989 990
		max_headroom += 8;
		mtu -= 8;
	}
	if (mtu < IPV6_MIN_MTU)
		mtu = IPV6_MIN_MTU;
E
Eric Dumazet 已提交
991
	if (skb_dst(skb))
992
		skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
L
Linus Torvalds 已提交
993
	if (skb->len > mtu) {
994 995
		*pmtu = mtu;
		err = -EMSGSIZE;
L
Linus Torvalds 已提交
996 997 998 999 1000 1001 1002
		goto tx_err_dst_release;
	}

	/*
	 * Okay, now see if we can stuff it in the buffer as-is.
	 */
	max_headroom += LL_RESERVED_SPACE(tdev);
1003

1004 1005
	if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
	    (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
L
Linus Torvalds 已提交
1006
		struct sk_buff *new_skb;
1007

L
Linus Torvalds 已提交
1008 1009 1010 1011 1012
		if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
			goto tx_err_dst_release;

		if (skb->sk)
			skb_set_owner_w(new_skb, skb->sk);
1013
		consume_skb(skb);
L
Linus Torvalds 已提交
1014 1015
		skb = new_skb;
	}
E
Eric Dumazet 已提交
1016
	skb_dst_drop(skb);
1017 1018 1019 1020 1021 1022
	if (fl6->flowi6_mark) {
		skb_dst_set(skb, dst);
		ndst = NULL;
	} else {
		skb_dst_set_noref(skb, dst);
	}
1023
	skb->transport_header = skb->network_header;
L
Linus Torvalds 已提交
1024

1025
	proto = fl6->flowi6_proto;
1026 1027 1028 1029
	if (encap_limit >= 0) {
		init_tel_txopt(&opt, encap_limit);
		ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
	}
1030 1031
	skb_push(skb, sizeof(struct ipv6hdr));
	skb_reset_network_header(skb);
1032
	ipv6h = ipv6_hdr(skb);
1033
	ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield), fl6->flowlabel);
L
Linus Torvalds 已提交
1034 1035
	ipv6h->hop_limit = t->parms.hop_limit;
	ipv6h->nexthdr = proto;
A
Alexey Dobriyan 已提交
1036 1037
	ipv6h->saddr = fl6->saddr;
	ipv6h->daddr = fl6->daddr;
1038
	ip6tunnel_xmit(skb, dev);
1039 1040
	if (ndst)
		ip6_tnl_dst_store(t, ndst);
L
Linus Torvalds 已提交
1041 1042 1043 1044 1045
	return 0;
tx_err_link_failure:
	stats->tx_carrier_errors++;
	dst_link_failure(skb);
tx_err_dst_release:
1046
	dst_release(ndst);
1047 1048 1049
	return err;
}

1050 1051 1052 1053
static inline int
ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
{
	struct ip6_tnl *t = netdev_priv(dev);
1054
	const struct iphdr  *iph = ip_hdr(skb);
1055
	int encap_limit = -1;
1056
	struct flowi6 fl6;
1057 1058 1059 1060
	__u8 dsfield;
	__u32 mtu;
	int err;

1061 1062
	if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
	    !ip6_tnl_xmit_ctl(t))
1063 1064 1065 1066 1067
		return -1;

	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
		encap_limit = t->parms.encap_limit;

1068 1069
	memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
	fl6.flowi6_proto = IPPROTO_IPIP;
1070 1071 1072

	dsfield = ipv4_get_dsfield(iph);

1073
	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
1074
		fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
A
Al Viro 已提交
1075
					  & IPV6_TCLASS_MASK;
1076 1077
	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
		fl6.flowi6_mark = skb->mark;
1078

1079
	err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
	if (err != 0) {
		/* XXX: send ICMP error even if DF is not set. */
		if (err == -EMSGSIZE)
			icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
				  htonl(mtu));
		return -1;
	}

	return 0;
}

1091 1092 1093 1094
static inline int
ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
{
	struct ip6_tnl *t = netdev_priv(dev);
1095
	struct ipv6hdr *ipv6h = ipv6_hdr(skb);
1096 1097
	int encap_limit = -1;
	__u16 offset;
1098
	struct flowi6 fl6;
1099 1100 1101 1102
	__u8 dsfield;
	__u32 mtu;
	int err;

1103 1104
	if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
	    !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
1105 1106
		return -1;

X
xeb@mail.ru 已提交
1107
	offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
1108
	if (offset > 0) {
1109
		struct ipv6_tlv_tnl_enc_lim *tel;
1110
		tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
1111 1112
		if (tel->encap_limit == 0) {
			icmpv6_send(skb, ICMPV6_PARAMPROB,
1113
				    ICMPV6_HDR_FIELD, offset + 2);
1114 1115 1116 1117 1118 1119
			return -1;
		}
		encap_limit = tel->encap_limit - 1;
	} else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
		encap_limit = t->parms.encap_limit;

1120 1121
	memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
	fl6.flowi6_proto = IPPROTO_IPV6;
1122 1123

	dsfield = ipv6_get_dsfield(ipv6h);
1124
	if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
1125
		fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1126
	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
1127
		fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1128 1129
	if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
		fl6.flowi6_mark = skb->mark;
1130

1131
	err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
1132 1133
	if (err != 0) {
		if (err == -EMSGSIZE)
1134
			icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1135 1136 1137 1138 1139 1140
		return -1;
	}

	return 0;
}

1141
static netdev_tx_t
1142 1143 1144
ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
{
	struct ip6_tnl *t = netdev_priv(dev);
1145
	struct net_device_stats *stats = &t->dev->stats;
1146 1147 1148
	int ret;

	switch (skb->protocol) {
1149
	case htons(ETH_P_IP):
1150 1151
		ret = ip4ip6_tnl_xmit(skb, dev);
		break;
1152
	case htons(ETH_P_IPV6):
1153 1154 1155 1156 1157 1158 1159 1160 1161
		ret = ip6ip6_tnl_xmit(skb, dev);
		break;
	default:
		goto tx_err;
	}

	if (ret < 0)
		goto tx_err;

1162
	return NETDEV_TX_OK;
1163

L
Linus Torvalds 已提交
1164 1165 1166 1167
tx_err:
	stats->tx_errors++;
	stats->tx_dropped++;
	kfree_skb(skb);
1168
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1169 1170
}

1171
static void ip6_tnl_link_config(struct ip6_tnl *t)
L
Linus Torvalds 已提交
1172 1173
{
	struct net_device *dev = t->dev;
X
xeb@mail.ru 已提交
1174
	struct __ip6_tnl_parm *p = &t->parms;
1175
	struct flowi6 *fl6 = &t->fl.u.ip6;
L
Linus Torvalds 已提交
1176

1177 1178
	memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
	memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
L
Linus Torvalds 已提交
1179 1180

	/* Set up flowi template */
A
Alexey Dobriyan 已提交
1181 1182
	fl6->saddr = p->laddr;
	fl6->daddr = p->raddr;
1183 1184
	fl6->flowi6_oif = p->link;
	fl6->flowlabel = 0;
L
Linus Torvalds 已提交
1185 1186

	if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1187
		fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
L
Linus Torvalds 已提交
1188
	if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1189
		fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
L
Linus Torvalds 已提交
1190

1191 1192
	p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
	p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
L
Linus Torvalds 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201

	if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
		dev->flags |= IFF_POINTOPOINT;
	else
		dev->flags &= ~IFF_POINTOPOINT;

	dev->iflink = p->link;

	if (p->flags & IP6_TNL_F_CAP_XMIT) {
1202 1203 1204
		int strict = (ipv6_addr_type(&p->raddr) &
			      (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));

1205 1206
		struct rt6_info *rt = rt6_lookup(dev_net(dev),
						 &p->raddr, &p->laddr,
1207
						 p->link, strict);
L
Linus Torvalds 已提交
1208 1209 1210 1211

		if (rt == NULL)
			return;

1212 1213
		if (rt->dst.dev) {
			dev->hard_header_len = rt->dst.dev->hard_header_len +
L
Linus Torvalds 已提交
1214 1215
				sizeof (struct ipv6hdr);

1216
			dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
1217 1218
			if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
				dev->mtu-=8;
L
Linus Torvalds 已提交
1219 1220 1221 1222

			if (dev->mtu < IPV6_MIN_MTU)
				dev->mtu = IPV6_MIN_MTU;
		}
A
Amerigo Wang 已提交
1223
		ip6_rt_put(rt);
L
Linus Torvalds 已提交
1224 1225 1226 1227
	}
}

/**
1228
 * ip6_tnl_change - update the tunnel parameters
L
Linus Torvalds 已提交
1229 1230 1231 1232
 *   @t: tunnel to be changed
 *   @p: tunnel configuration parameters
 *
 * Description:
1233
 *   ip6_tnl_change() updates the tunnel parameters
L
Linus Torvalds 已提交
1234 1235 1236
 **/

static int
X
xeb@mail.ru 已提交
1237
ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
L
Linus Torvalds 已提交
1238
{
A
Alexey Dobriyan 已提交
1239 1240
	t->parms.laddr = p->laddr;
	t->parms.raddr = p->raddr;
L
Linus Torvalds 已提交
1241 1242 1243 1244
	t->parms.flags = p->flags;
	t->parms.hop_limit = p->hop_limit;
	t->parms.encap_limit = p->encap_limit;
	t->parms.flowinfo = p->flowinfo;
1245
	t->parms.link = p->link;
1246
	t->parms.proto = p->proto;
1247
	ip6_tnl_dst_reset(t);
1248
	ip6_tnl_link_config(t);
L
Linus Torvalds 已提交
1249 1250 1251
	return 0;
}

1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
{
	struct net *net = dev_net(t->dev);
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
	int err;

	ip6_tnl_unlink(ip6n, t);
	synchronize_net();
	err = ip6_tnl_change(t, p);
	ip6_tnl_link(ip6n, t);
	netdev_state_change(t->dev);
	return err;
}

X
xeb@mail.ru 已提交
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
static void
ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
{
	p->laddr = u->laddr;
	p->raddr = u->raddr;
	p->flags = u->flags;
	p->hop_limit = u->hop_limit;
	p->encap_limit = u->encap_limit;
	p->flowinfo = u->flowinfo;
	p->link = u->link;
	p->proto = u->proto;
	memcpy(p->name, u->name, sizeof(u->name));
}

static void
ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
{
	u->laddr = p->laddr;
	u->raddr = p->raddr;
	u->flags = p->flags;
	u->hop_limit = p->hop_limit;
	u->encap_limit = p->encap_limit;
	u->flowinfo = p->flowinfo;
	u->link = p->link;
	u->proto = p->proto;
	memcpy(u->name, p->name, sizeof(u->name));
}

L
Linus Torvalds 已提交
1294
/**
1295
 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
L
Linus Torvalds 已提交
1296 1297 1298 1299 1300
 *   @dev: virtual device associated with tunnel
 *   @ifr: parameters passed from userspace
 *   @cmd: command to be performed
 *
 * Description:
1301
 *   ip6_tnl_ioctl() is used for managing IPv6 tunnels
1302
 *   from userspace.
L
Linus Torvalds 已提交
1303 1304 1305 1306 1307 1308 1309
 *
 *   The possible commands are the following:
 *     %SIOCGETTUNNEL: get tunnel parameters for device
 *     %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
 *     %SIOCCHGTUNNEL: change tunnel parameters to those given
 *     %SIOCDELTUNNEL: delete tunnel
 *
1310
 *   The fallback device "ip6tnl0", created during module
L
Linus Torvalds 已提交
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
 *   initialization, can be used for creating other tunnel devices.
 *
 * Return:
 *   0 on success,
 *   %-EFAULT if unable to copy data to or from userspace,
 *   %-EPERM if current process hasn't %CAP_NET_ADMIN set
 *   %-EINVAL if passed tunnel parameters are invalid,
 *   %-EEXIST if changing a tunnel's parameters would cause a conflict
 *   %-ENODEV if attempting to change or delete a nonexisting device
 **/

static int
1323
ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
L
Linus Torvalds 已提交
1324 1325 1326
{
	int err = 0;
	struct ip6_tnl_parm p;
X
xeb@mail.ru 已提交
1327
	struct __ip6_tnl_parm p1;
L
Linus Torvalds 已提交
1328
	struct ip6_tnl *t = NULL;
1329 1330
	struct net *net = dev_net(dev);
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
L
Linus Torvalds 已提交
1331 1332 1333

	switch (cmd) {
	case SIOCGETTUNNEL:
1334
		if (dev == ip6n->fb_tnl_dev) {
1335
			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
L
Linus Torvalds 已提交
1336 1337 1338
				err = -EFAULT;
				break;
			}
X
xeb@mail.ru 已提交
1339 1340
			ip6_tnl_parm_from_user(&p1, &p);
			t = ip6_tnl_locate(net, &p1, 0);
1341 1342
		} else {
			memset(&p, 0, sizeof(p));
1343 1344
		}
		if (t == NULL)
1345
			t = netdev_priv(dev);
X
xeb@mail.ru 已提交
1346
		ip6_tnl_parm_to_user(&p, &t->parms);
L
Linus Torvalds 已提交
1347 1348 1349 1350 1351 1352 1353
		if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
			err = -EFAULT;
		}
		break;
	case SIOCADDTUNNEL:
	case SIOCCHGTUNNEL:
		err = -EPERM;
1354
		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
L
Linus Torvalds 已提交
1355
			break;
1356 1357
		err = -EFAULT;
		if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
L
Linus Torvalds 已提交
1358
			break;
1359
		err = -EINVAL;
1360 1361
		if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
		    p.proto != 0)
L
Linus Torvalds 已提交
1362
			break;
X
xeb@mail.ru 已提交
1363 1364
		ip6_tnl_parm_from_user(&p1, &p);
		t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
1365
		if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
1366 1367 1368 1369 1370 1371 1372 1373
			if (t != NULL) {
				if (t->dev != dev) {
					err = -EEXIST;
					break;
				}
			} else
				t = netdev_priv(dev);

1374
			err = ip6_tnl_update(t, &p1);
L
Linus Torvalds 已提交
1375
		}
1376
		if (t) {
L
Linus Torvalds 已提交
1377
			err = 0;
X
xeb@mail.ru 已提交
1378 1379
			ip6_tnl_parm_to_user(&p, &t->parms);
			if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
1380 1381 1382 1383
				err = -EFAULT;

		} else
			err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
L
Linus Torvalds 已提交
1384 1385 1386
		break;
	case SIOCDELTUNNEL:
		err = -EPERM;
1387
		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
L
Linus Torvalds 已提交
1388 1389
			break;

1390
		if (dev == ip6n->fb_tnl_dev) {
1391 1392
			err = -EFAULT;
			if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
L
Linus Torvalds 已提交
1393
				break;
1394
			err = -ENOENT;
X
xeb@mail.ru 已提交
1395 1396 1397
			ip6_tnl_parm_from_user(&p1, &p);
			t = ip6_tnl_locate(net, &p1, 0);
			if (t == NULL)
L
Linus Torvalds 已提交
1398
				break;
1399
			err = -EPERM;
1400
			if (t->dev == ip6n->fb_tnl_dev)
L
Linus Torvalds 已提交
1401
				break;
1402
			dev = t->dev;
L
Linus Torvalds 已提交
1403
		}
1404 1405
		err = 0;
		unregister_netdevice(dev);
L
Linus Torvalds 已提交
1406 1407 1408 1409 1410 1411 1412 1413
		break;
	default:
		err = -EINVAL;
	}
	return err;
}

/**
1414
 * ip6_tnl_change_mtu - change mtu manually for tunnel device
L
Linus Torvalds 已提交
1415 1416 1417 1418 1419 1420 1421 1422 1423
 *   @dev: virtual device associated with tunnel
 *   @new_mtu: the new mtu
 *
 * Return:
 *   0 on success,
 *   %-EINVAL if mtu too small
 **/

static int
1424
ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
L
Linus Torvalds 已提交
1425 1426 1427 1428 1429 1430 1431 1432
{
	if (new_mtu < IPV6_MIN_MTU) {
		return -EINVAL;
	}
	dev->mtu = new_mtu;
	return 0;
}

1433 1434

static const struct net_device_ops ip6_tnl_netdev_ops = {
E
Eric Dumazet 已提交
1435
	.ndo_uninit	= ip6_tnl_dev_uninit,
1436
	.ndo_start_xmit = ip6_tnl_xmit,
E
Eric Dumazet 已提交
1437
	.ndo_do_ioctl	= ip6_tnl_ioctl,
1438
	.ndo_change_mtu = ip6_tnl_change_mtu,
E
Eric Dumazet 已提交
1439
	.ndo_get_stats	= ip6_get_stats,
1440 1441
};

E
Eric Dumazet 已提交
1442

L
Linus Torvalds 已提交
1443
/**
1444
 * ip6_tnl_dev_setup - setup virtual tunnel device
L
Linus Torvalds 已提交
1445 1446 1447 1448 1449 1450
 *   @dev: virtual device associated with tunnel
 *
 * Description:
 *   Initialize function pointers and device parameters
 **/

1451
static void ip6_tnl_dev_setup(struct net_device *dev)
L
Linus Torvalds 已提交
1452
{
1453 1454
	struct ip6_tnl *t;

1455
	dev->netdev_ops = &ip6_tnl_netdev_ops;
E
Eric Dumazet 已提交
1456
	dev->destructor = ip6_dev_free;
L
Linus Torvalds 已提交
1457 1458 1459 1460

	dev->type = ARPHRD_TUNNEL6;
	dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
	dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1461 1462 1463
	t = netdev_priv(dev);
	if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
		dev->mtu-=8;
L
Linus Torvalds 已提交
1464 1465
	dev->flags |= IFF_NOARP;
	dev->addr_len = sizeof(struct in6_addr);
1466
	dev->features |= NETIF_F_NETNS_LOCAL;
1467
	dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
L
Linus Torvalds 已提交
1468 1469 1470 1471
}


/**
1472
 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
L
Linus Torvalds 已提交
1473 1474 1475
 *   @dev: virtual device associated with tunnel
 **/

E
Eric Dumazet 已提交
1476
static inline int
1477
ip6_tnl_dev_init_gen(struct net_device *dev)
L
Linus Torvalds 已提交
1478
{
1479
	struct ip6_tnl *t = netdev_priv(dev);
E
Eric Dumazet 已提交
1480

L
Linus Torvalds 已提交
1481
	t->dev = dev;
E
Eric Dumazet 已提交
1482 1483 1484 1485
	dev->tstats = alloc_percpu(struct pcpu_tstats);
	if (!dev->tstats)
		return -ENOMEM;
	return 0;
L
Linus Torvalds 已提交
1486 1487 1488
}

/**
1489
 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
L
Linus Torvalds 已提交
1490 1491 1492
 *   @dev: virtual device associated with tunnel
 **/

E
Eric Dumazet 已提交
1493
static int ip6_tnl_dev_init(struct net_device *dev)
L
Linus Torvalds 已提交
1494
{
1495
	struct ip6_tnl *t = netdev_priv(dev);
E
Eric Dumazet 已提交
1496 1497 1498 1499
	int err = ip6_tnl_dev_init_gen(dev);

	if (err)
		return err;
1500
	ip6_tnl_link_config(t);
E
Eric Dumazet 已提交
1501
	return 0;
L
Linus Torvalds 已提交
1502 1503 1504
}

/**
1505
 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
L
Linus Torvalds 已提交
1506 1507 1508 1509 1510
 *   @dev: fallback device
 *
 * Return: 0
 **/

E
Eric Dumazet 已提交
1511
static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
L
Linus Torvalds 已提交
1512
{
1513
	struct ip6_tnl *t = netdev_priv(dev);
1514 1515
	struct net *net = dev_net(dev);
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
E
Eric Dumazet 已提交
1516 1517 1518 1519
	int err = ip6_tnl_dev_init_gen(dev);

	if (err)
		return err;
1520

1521
	t->parms.proto = IPPROTO_IPV6;
L
Linus Torvalds 已提交
1522
	dev_hold(dev);
1523 1524 1525

	ip6_tnl_link_config(t);

1526
	rcu_assign_pointer(ip6n->tnls_wc[0], t);
E
Eric Dumazet 已提交
1527
	return 0;
L
Linus Torvalds 已提交
1528 1529
}

1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
{
	u8 proto;

	if (!data)
		return 0;

	proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
	if (proto != IPPROTO_IPV6 &&
	    proto != IPPROTO_IPIP &&
	    proto != 0)
		return -EINVAL;

	return 0;
}

static void ip6_tnl_netlink_parms(struct nlattr *data[],
				  struct __ip6_tnl_parm *parms)
{
	memset(parms, 0, sizeof(*parms));

	if (!data)
		return;

	if (data[IFLA_IPTUN_LINK])
		parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);

	if (data[IFLA_IPTUN_LOCAL])
		nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
			   sizeof(struct in6_addr));

	if (data[IFLA_IPTUN_REMOTE])
		nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
			   sizeof(struct in6_addr));

	if (data[IFLA_IPTUN_TTL])
		parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);

	if (data[IFLA_IPTUN_ENCAP_LIMIT])
		parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);

	if (data[IFLA_IPTUN_FLOWINFO])
1572
		parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619

	if (data[IFLA_IPTUN_FLAGS])
		parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);

	if (data[IFLA_IPTUN_PROTO])
		parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
}

static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
			   struct nlattr *tb[], struct nlattr *data[])
{
	struct net *net = dev_net(dev);
	struct ip6_tnl *nt;

	nt = netdev_priv(dev);
	ip6_tnl_netlink_parms(data, &nt->parms);

	if (ip6_tnl_locate(net, &nt->parms, 0))
		return -EEXIST;

	return ip6_tnl_create2(dev);
}

static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
			      struct nlattr *data[])
{
	struct ip6_tnl *t;
	struct __ip6_tnl_parm p;
	struct net *net = dev_net(dev);
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);

	if (dev == ip6n->fb_tnl_dev)
		return -EINVAL;

	ip6_tnl_netlink_parms(data, &p);

	t = ip6_tnl_locate(net, &p, 0);

	if (t) {
		if (t->dev != dev)
			return -EEXIST;
	} else
		t = netdev_priv(dev);

	return ip6_tnl_update(t, &p);
}

1620
static size_t ip6_tnl_get_size(const struct net_device *dev)
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636
{
	return
		/* IFLA_IPTUN_LINK */
		nla_total_size(4) +
		/* IFLA_IPTUN_LOCAL */
		nla_total_size(sizeof(struct in6_addr)) +
		/* IFLA_IPTUN_REMOTE */
		nla_total_size(sizeof(struct in6_addr)) +
		/* IFLA_IPTUN_TTL */
		nla_total_size(1) +
		/* IFLA_IPTUN_ENCAP_LIMIT */
		nla_total_size(1) +
		/* IFLA_IPTUN_FLOWINFO */
		nla_total_size(4) +
		/* IFLA_IPTUN_FLAGS */
		nla_total_size(4) +
1637 1638
		/* IFLA_IPTUN_PROTO */
		nla_total_size(1) +
1639 1640 1641
		0;
}

1642
static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
{
	struct ip6_tnl *tunnel = netdev_priv(dev);
	struct __ip6_tnl_parm *parm = &tunnel->parms;

	if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
	    nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
		    &parm->raddr) ||
	    nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
		    &parm->laddr) ||
	    nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
	    nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
	    nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
1655 1656
	    nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
	    nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
1657 1658 1659 1660 1661 1662 1663
		goto nla_put_failure;
	return 0;

nla_put_failure:
	return -EMSGSIZE;
}

1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
	[IFLA_IPTUN_LINK]		= { .type = NLA_U32 },
	[IFLA_IPTUN_LOCAL]		= { .len = sizeof(struct in6_addr) },
	[IFLA_IPTUN_REMOTE]		= { .len = sizeof(struct in6_addr) },
	[IFLA_IPTUN_TTL]		= { .type = NLA_U8 },
	[IFLA_IPTUN_ENCAP_LIMIT]	= { .type = NLA_U8 },
	[IFLA_IPTUN_FLOWINFO]		= { .type = NLA_U32 },
	[IFLA_IPTUN_FLAGS]		= { .type = NLA_U32 },
	[IFLA_IPTUN_PROTO]		= { .type = NLA_U8 },
};

1675 1676 1677
static struct rtnl_link_ops ip6_link_ops __read_mostly = {
	.kind		= "ip6tnl",
	.maxtype	= IFLA_IPTUN_MAX,
1678
	.policy		= ip6_tnl_policy,
1679
	.priv_size	= sizeof(struct ip6_tnl),
1680 1681 1682 1683
	.setup		= ip6_tnl_dev_setup,
	.validate	= ip6_tnl_validate,
	.newlink	= ip6_tnl_newlink,
	.changelink	= ip6_tnl_changelink,
1684 1685
	.get_size	= ip6_tnl_get_size,
	.fill_info	= ip6_tnl_fill_info,
1686 1687
};

1688
static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
1689 1690 1691 1692 1693
	.handler	= ip4ip6_rcv,
	.err_handler	= ip4ip6_err,
	.priority	=	1,
};

1694
static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
1695 1696
	.handler	= ip6ip6_rcv,
	.err_handler	= ip6ip6_err,
H
Herbert Xu 已提交
1697
	.priority	=	1,
L
Linus Torvalds 已提交
1698 1699
};

1700
static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
1701 1702 1703
{
	int h;
	struct ip6_tnl *t;
1704
	LIST_HEAD(list);
1705 1706

	for (h = 0; h < HASH_SIZE; h++) {
E
Eric Dumazet 已提交
1707
		t = rtnl_dereference(ip6n->tnls_r_l[h]);
1708 1709
		while (t != NULL) {
			unregister_netdevice_queue(t->dev, &list);
E
Eric Dumazet 已提交
1710
			t = rtnl_dereference(t->next);
1711
		}
1712 1713
	}

E
Eric Dumazet 已提交
1714
	t = rtnl_dereference(ip6n->tnls_wc[0]);
1715 1716
	unregister_netdevice_queue(t->dev, &list);
	unregister_netdevice_many(&list);
1717 1718
}

1719
static int __net_init ip6_tnl_init_net(struct net *net)
1720
{
1721
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1722
	struct ip6_tnl *t = NULL;
1723 1724
	int err;

1725 1726 1727
	ip6n->tnls[0] = ip6n->tnls_wc;
	ip6n->tnls[1] = ip6n->tnls_r_l;

1728 1729 1730 1731 1732 1733
	err = -ENOMEM;
	ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
				      ip6_tnl_dev_setup);

	if (!ip6n->fb_tnl_dev)
		goto err_alloc_dev;
1734
	dev_net_set(ip6n->fb_tnl_dev, net);
1735

E
Eric Dumazet 已提交
1736 1737 1738
	err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
	if (err < 0)
		goto err_register;
1739 1740 1741 1742

	err = register_netdev(ip6n->fb_tnl_dev);
	if (err < 0)
		goto err_register;
1743 1744 1745 1746

	t = netdev_priv(ip6n->fb_tnl_dev);

	strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
1747 1748
	return 0;

1749
err_register:
E
Eric Dumazet 已提交
1750
	ip6_dev_free(ip6n->fb_tnl_dev);
1751
err_alloc_dev:
1752 1753 1754
	return err;
}

1755
static void __net_exit ip6_tnl_exit_net(struct net *net)
1756
{
1757
	struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1758

1759 1760 1761
	rtnl_lock();
	ip6_tnl_destroy_tunnels(ip6n);
	rtnl_unlock();
1762 1763 1764 1765 1766
}

static struct pernet_operations ip6_tnl_net_ops = {
	.init = ip6_tnl_init_net,
	.exit = ip6_tnl_exit_net,
1767 1768
	.id   = &ip6_tnl_net_id,
	.size = sizeof(struct ip6_tnl_net),
1769 1770
};

L
Linus Torvalds 已提交
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
/**
 * ip6_tunnel_init - register protocol and reserve needed resources
 *
 * Return: 0 on success
 **/

static int __init ip6_tunnel_init(void)
{
	int  err;

1781 1782 1783 1784 1785 1786
	err = register_pernet_device(&ip6_tnl_net_ops);
	if (err < 0)
		goto out_pernet;

	err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
	if (err < 0) {
1787
		pr_err("%s: can't register ip4ip6\n", __func__);
1788
		goto out_ip4ip6;
1789 1790
	}

1791 1792
	err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
	if (err < 0) {
1793
		pr_err("%s: can't register ip6ip6\n", __func__);
1794
		goto out_ip6ip6;
L
Linus Torvalds 已提交
1795
	}
1796 1797 1798
	err = rtnl_link_register(&ip6_link_ops);
	if (err < 0)
		goto rtnl_link_failed;
1799

L
Linus Torvalds 已提交
1800
	return 0;
1801

1802 1803
rtnl_link_failed:
	xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
1804
out_ip6ip6:
1805
	xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
1806 1807 1808
out_ip4ip6:
	unregister_pernet_device(&ip6_tnl_net_ops);
out_pernet:
L
Linus Torvalds 已提交
1809 1810 1811 1812 1813 1814 1815 1816 1817
	return err;
}

/**
 * ip6_tunnel_cleanup - free resources and unregister protocol
 **/

static void __exit ip6_tunnel_cleanup(void)
{
1818
	rtnl_link_unregister(&ip6_link_ops);
1819
	if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
1820
		pr_info("%s: can't deregister ip4ip6\n", __func__);
1821

1822
	if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
1823
		pr_info("%s: can't deregister ip6ip6\n", __func__);
L
Linus Torvalds 已提交
1824

1825
	unregister_pernet_device(&ip6_tnl_net_ops);
L
Linus Torvalds 已提交
1826 1827 1828 1829
}

module_init(ip6_tunnel_init);
module_exit(ip6_tunnel_cleanup);