blob: a8f94ff9c606dd6d17d6219d39eb55a925020393 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09002 * IPv6 tunneling device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Ville Nuorvala <vnuorval@tcs.hut.fi>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09007 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Based on:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090010 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
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
Joe Perchesf3213832012-05-15 14:11:53 +000021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080024#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/types.h>
27#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090028#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/if.h>
30#include <linux/in.h>
31#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/net.h>
33#include <linux/in6.h>
34#include <linux/netdevice.h>
35#include <linux/if_arp.h>
36#include <linux/icmpv6.h>
37#include <linux/init.h>
38#include <linux/route.h>
39#include <linux/rtnetlink.h>
40#include <linux/netfilter_ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000042#include <linux/hash.h>
Nicolas Dichtele8377352013-08-20 12:16:06 +020043#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090048#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000050#include <net/ip_tunnels.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <net/ip6_route.h>
53#include <net/addrconf.h>
54#include <net/ip6_tunnel.h>
55#include <net/xfrm.h>
56#include <net/dsfield.h>
57#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070058#include <net/net_namespace.h>
59#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090062MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_LICENSE("GPL");
Tom Gundersenf98f89a2014-05-15 23:21:30 +020064MODULE_ALIAS_RTNL_LINK("ip6tnl");
stephen hemminger6dfbd872011-03-10 11:43:19 +000065MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef IP6_TNL_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +000068#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#else
70#define IP6_TNL_TRACE(x...) do {;} while(0)
71#endif
72
Eric Dumazetddbe5032012-07-18 08:11:12 +000073#define HASH_SIZE_SHIFT 5
74#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000076static bool log_ecn_error = true;
77module_param(log_ecn_error, bool, 0644);
78MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
79
Eric Dumazetddbe5032012-07-18 08:11:12 +000080static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
81{
82 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
83
84 return hash_32(hash, HASH_SIZE_SHIFT);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Eric Dumazet8560f222010-09-28 03:23:34 +000087static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090088static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000089static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Eric Dumazetf99189b2009-11-17 10:42:49 +000091static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070092struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070093 /* the IPv6 tunnel fallback device */
94 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070095 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000096 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
97 struct ip6_tnl __rcu *tnls_wc[1];
98 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070099};
100
Eric Dumazet8560f222010-09-28 03:23:34 +0000101static struct net_device_stats *ip6_get_stats(struct net_device *dev)
102{
David S. Miller56a43422014-01-06 17:37:45 -0500103 struct pcpu_sw_netstats tmp, sum = { 0 };
Eric Dumazet8560f222010-09-28 03:23:34 +0000104 int i;
105
106 for_each_possible_cpu(i) {
Li RongQingabb60132014-01-02 13:20:12 +0800107 unsigned int start;
Li RongQing8f849852014-01-04 13:57:59 +0800108 const struct pcpu_sw_netstats *tstats =
109 per_cpu_ptr(dev->tstats, i);
Eric Dumazet8560f222010-09-28 03:23:34 +0000110
Li RongQingabb60132014-01-02 13:20:12 +0800111 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700112 start = u64_stats_fetch_begin_irq(&tstats->syncp);
Li RongQingabb60132014-01-02 13:20:12 +0800113 tmp.rx_packets = tstats->rx_packets;
114 tmp.rx_bytes = tstats->rx_bytes;
115 tmp.tx_packets = tstats->tx_packets;
116 tmp.tx_bytes = tstats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700117 } while (u64_stats_fetch_retry_irq(&tstats->syncp, start));
Li RongQingabb60132014-01-02 13:20:12 +0800118
119 sum.rx_packets += tmp.rx_packets;
120 sum.rx_bytes += tmp.rx_bytes;
121 sum.tx_packets += tmp.tx_packets;
122 sum.tx_bytes += tmp.tx_bytes;
Eric Dumazet8560f222010-09-28 03:23:34 +0000123 }
124 dev->stats.rx_packets = sum.rx_packets;
125 dev->stats.rx_bytes = sum.rx_bytes;
126 dev->stats.tx_packets = sum.tx_packets;
127 dev->stats.tx_bytes = sum.tx_bytes;
128 return &dev->stats;
129}
130
Eric Dumazet2922bc82009-10-23 06:34:34 +0000131/*
Eric Dumazet94767632010-09-15 20:25:34 +0000132 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000135struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 struct dst_entry *dst = t->dst_cache;
138
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900139 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 dst->ops->check(dst, t->dst_cookie) == NULL) {
141 t->dst_cache = NULL;
142 dst_release(dst);
143 return NULL;
144 }
145
146 return dst;
147}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000148EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000150void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 dst_release(t->dst_cache);
153 t->dst_cache = NULL;
154}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000155EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000157void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 struct rt6_info *rt = (struct rt6_info *) dst;
160 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
161 dst_release(t->dst_cache);
162 t->dst_cache = dst;
163}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000164EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900167 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900168 * @remote: the address of the tunnel exit-point
169 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900171 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900173 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * else %NULL
175 **/
176
Eric Dumazet2922bc82009-10-23 06:34:34 +0000177#define for_each_ip6_tunnel_rcu(start) \
178 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000181ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000183 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700185 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Eric Dumazetddbe5032012-07-18 08:11:12 +0000187 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (ipv6_addr_equal(local, &t->parms.laddr) &&
189 ipv6_addr_equal(remote, &t->parms.raddr) &&
190 (t->dev->flags & IFF_UP))
191 return t;
192 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000193 t = rcu_dereference(ip6n->tnls_wc[0]);
194 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return t;
196
197 return NULL;
198}
199
200/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900201 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900202 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *
204 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900205 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * &struct in6_addr entries laddr and raddr in @p.
207 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900208 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 **/
210
Eric Dumazet94767632010-09-15 20:25:34 +0000211static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000212ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000214 const struct in6_addr *remote = &p->raddr;
215 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000216 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int prio = 0;
218
219 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
220 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000221 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700223 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900227 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * @t: tunnel to be added
229 **/
230
231static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700232ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Eric Dumazet94767632010-09-15 20:25:34 +0000234 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Eric Dumazetcf778b02012-01-12 04:41:32 +0000236 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
237 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900241 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * @t: tunnel to be removed
243 **/
244
245static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700246ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Eric Dumazet94767632010-09-15 20:25:34 +0000248 struct ip6_tnl __rcu **tp;
249 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Eric Dumazet94767632010-09-15 20:25:34 +0000251 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
252 (iter = rtnl_dereference(*tp)) != NULL;
253 tp = &iter->next) {
254 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000255 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257 }
258 }
259}
260
Eric Dumazet8560f222010-09-28 03:23:34 +0000261static void ip6_dev_free(struct net_device *dev)
262{
263 free_percpu(dev->tstats);
264 free_netdev(dev);
265}
266
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000267static int ip6_tnl_create2(struct net_device *dev)
268{
269 struct ip6_tnl *t = netdev_priv(dev);
270 struct net *net = dev_net(dev);
271 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
272 int err;
273
274 t = netdev_priv(dev);
275 err = ip6_tnl_dev_init(dev);
276 if (err < 0)
277 goto out;
278
279 err = register_netdevice(dev);
280 if (err < 0)
281 goto out;
282
283 strcpy(t->parms.name, dev->name);
284 dev->rtnl_link_ops = &ip6_link_ops;
285
286 dev_hold(dev);
287 ip6_tnl_link(ip6n, t);
288 return 0;
289
290out:
291 return err;
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000295 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * @p: tunnel parameters
297 * @pt: pointer to new tunnel
298 *
299 * Description:
300 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900301 *
302 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800303 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 **/
305
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000306static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 struct net_device *dev;
309 struct ip6_tnl *t;
310 char name[IFNAMSIZ];
311 int err;
312
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800313 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800315 else
316 sprintf(name, "ip6tnl%%d");
317
Tom Gundersenc835a672014-07-14 16:37:24 +0200318 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
319 ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800321 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700323 dev_net_set(dev, net);
324
Patrick McHardy2941a482006-01-08 22:05:26 -0800325 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 t->parms = *p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200327 t->net = dev_net(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000328 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000329 if (err < 0)
330 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Ville Nuorvala567131a2006-11-24 17:05:41 -0800332 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800333
334failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000335 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800336failed:
337 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900341 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900342 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 * @create: != 0 if allowed to create new tunnel if no match found
344 *
345 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900346 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * based on @parms. If this is unsuccessful, but @create is set a new
348 * tunnel device is created and registered for use.
349 *
350 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800351 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 **/
353
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700354static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000355 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000357 const struct in6_addr *remote = &p->raddr;
358 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000359 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700361 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Eric Dumazet94767632010-09-15 20:25:34 +0000363 for (tp = ip6_tnl_bucket(ip6n, p);
364 (t = rtnl_dereference(*tp)) != NULL;
365 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200367 ipv6_addr_equal(remote, &t->parms.raddr)) {
368 if (create)
369 return NULL;
370
Ville Nuorvala567131a2006-11-24 17:05:41 -0800371 return t;
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800375 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700376 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900380 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900382 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900384 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 **/
386
387static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900388ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Patrick McHardy2941a482006-01-08 22:05:26 -0800390 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200391 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700392 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Eric Dumazet94767632010-09-15 20:25:34 +0000394 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000395 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000396 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700397 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 ip6_tnl_dst_reset(t);
399 dev_put(dev);
400}
401
402/**
403 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
404 * @skb: received socket buffer
405 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406 * Return:
407 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * else index to encapsulation limit
409 **/
410
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000411__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000413 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 __u8 nexthdr = ipv6h->nexthdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100415 __u16 off = sizeof(*ipv6h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
418 __u16 optlen = 0;
419 struct ipv6_opt_hdr *hdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100420 if (raw + off + sizeof(*hdr) > skb->data &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
422 break;
423
424 hdr = (struct ipv6_opt_hdr *) (raw + off);
425 if (nexthdr == NEXTHDR_FRAGMENT) {
426 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
427 if (frag_hdr->frag_off)
428 break;
429 optlen = 8;
430 } else if (nexthdr == NEXTHDR_AUTH) {
431 optlen = (hdr->hdrlen + 2) << 2;
432 } else {
433 optlen = ipv6_optlen(hdr);
434 }
435 if (nexthdr == NEXTHDR_DEST) {
436 __u16 i = off + 2;
437 while (1) {
438 struct ipv6_tlv_tnl_enc_lim *tel;
439
440 /* No more room for encapsulation limit */
441 if (i + sizeof (*tel) > off + optlen)
442 break;
443
444 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
445 /* return index of option if found and valid */
446 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
447 tel->length == 1)
448 return i;
449 /* else jump to next option */
450 if (tel->type)
451 i += tel->length + 2;
452 else
453 i++;
454 }
455 }
456 nexthdr = hdr->nexthdr;
457 off += optlen;
458 }
459 return 0;
460}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000461EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900464 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 *
466 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900467 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * to the specifications in RFC 2473.
469 **/
470
Herbert Xud2acc342006-03-28 01:12:13 -0800471static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900472ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700473 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000475 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct ip6_tnl *t;
477 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700478 u8 rel_type = ICMPV6_DEST_UNREACH;
479 u8 rel_code = ICMPV6_ADDR_UNREACH;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300480 u8 tproto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 __u32 rel_info = 0;
482 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800483 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900485 /* If the packet doesn't contain the original IPv6 header we are
486 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 processing of the error. */
488
Eric Dumazet2922bc82009-10-23 06:34:34 +0000489 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700490 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700491 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto out;
493
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300494 tproto = ACCESS_ONCE(t->parms.proto);
495 if (tproto != ipproto && tproto != 0)
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900496 goto out;
497
Herbert Xud2acc342006-03-28 01:12:13 -0800498 err = 0;
499
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900500 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 __u32 teli;
502 struct ipv6_tlv_tnl_enc_lim *tel;
503 __u32 mtu;
504 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000505 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
506 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 rel_msg = 1;
508 break;
509 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900510 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000511 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
512 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 rel_msg = 1;
514 }
515 break;
516 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800517 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900518 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000519 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Al Viro704eae12007-07-26 17:33:29 +0100521 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
523 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000524 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
525 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 rel_msg = 1;
527 }
Joe Perchese87cc472012-05-13 21:56:26 +0000528 } else {
529 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
530 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532 break;
533 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100534 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (mtu < IPV6_MIN_MTU)
536 mtu = IPV6_MIN_MTU;
537 t->dev->mtu = mtu;
538
Ian Morris67ba4152014-08-24 21:53:10 +0100539 if ((len = sizeof(*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 rel_type = ICMPV6_PKT_TOOBIG;
541 rel_code = 0;
542 rel_info = mtu;
543 rel_msg = 1;
544 }
545 break;
546 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900547
548 *type = rel_type;
549 *code = rel_code;
550 *info = rel_info;
551 *msg = rel_msg;
552
553out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000554 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900555 return err;
556}
557
558static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900559ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700560 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900561{
562 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700563 u8 rel_type = type;
564 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100565 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900566 int err;
567 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000568 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900569 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -0700570 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900571
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900572 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
573 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900574 if (err < 0)
575 return err;
576
577 if (rel_msg == 0)
578 return 0;
579
580 switch (rel_type) {
581 case ICMPV6_DEST_UNREACH:
582 if (rel_code != ICMPV6_ADDR_UNREACH)
583 return 0;
584 rel_type = ICMP_DEST_UNREACH;
585 rel_code = ICMP_HOST_UNREACH;
586 break;
587 case ICMPV6_PKT_TOOBIG:
588 if (rel_code != 0)
589 return 0;
590 rel_type = ICMP_DEST_UNREACH;
591 rel_code = ICMP_FRAG_NEEDED;
592 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700593 case NDISC_REDIRECT:
594 rel_type = ICMP_REDIRECT;
595 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900596 default:
597 return 0;
598 }
599
600 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
601 return 0;
602
603 skb2 = skb_clone(skb, GFP_ATOMIC);
604 if (!skb2)
605 return 0;
606
Eric Dumazetadf30902009-06-02 05:19:30 +0000607 skb_dst_drop(skb2);
608
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900609 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700610 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700611 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900612
613 /* Try to guess incoming interface */
David S. Miller31e4543d2011-05-03 20:25:42 -0700614 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500615 eiph->saddr, 0,
616 0, 0,
617 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800618 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900619 goto out;
620
Changli Gaod8d1f302010-06-10 23:31:35 -0700621 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900622
623 /* route "incoming" packet */
624 if (rt->rt_flags & RTCF_LOCAL) {
625 ip_rt_put(rt);
626 rt = NULL;
David S. Miller31e4543d2011-05-03 20:25:42 -0700627 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500628 eiph->daddr, eiph->saddr,
629 0, 0,
630 IPPROTO_IPIP,
631 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800632 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700633 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800634 if (!IS_ERR(rt))
635 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900636 goto out;
637 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800638 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900639 } else {
640 ip_rt_put(rt);
641 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
642 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000643 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900644 goto out;
645 }
646
647 /* change mtu on this route */
648 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000649 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900650 goto out;
651
David S. Miller6700c272012-07-17 03:29:28 -0700652 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900653 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700654 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700655 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900656
Al Viro704eae12007-07-26 17:33:29 +0100657 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900658
659out:
660 kfree_skb(skb2);
661 return 0;
662}
663
664static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900665ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700666 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900667{
668 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700669 u8 rel_type = type;
670 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100671 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900672 int err;
673
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900674 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
675 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900676 if (err < 0)
677 return err;
678
679 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct rt6_info *rt;
681 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900684 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Eric Dumazetadf30902009-06-02 05:19:30 +0000686 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700688 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700691 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
692 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
David S. Millerd1918542011-12-28 20:19:20 -0500694 if (rt && rt->dst.dev)
695 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000697 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Amerigo Wang94e187c2012-10-29 00:13:19 +0000699 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 kfree_skb(skb2);
702 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900703
704 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000707static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
708 const struct ipv6hdr *ipv6h,
709 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900710{
711 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
712
713 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700714 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900715
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000716 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900717}
718
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000719static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
720 const struct ipv6hdr *ipv6h,
721 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900723 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800724 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000726 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900728
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000729__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000730 const struct in6_addr *laddr,
731 const struct in6_addr *raddr)
732{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000733 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000734 int ltype = ipv6_addr_type(laddr);
735 int rtype = ipv6_addr_type(raddr);
736 __u32 flags = 0;
737
738 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
739 flags = IP6_TNL_F_CAP_PER_PACKET;
740 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
741 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
742 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
743 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
744 if (ltype&IPV6_ADDR_UNICAST)
745 flags |= IP6_TNL_F_CAP_XMIT;
746 if (rtype&IPV6_ADDR_UNICAST)
747 flags |= IP6_TNL_F_CAP_RCV;
748 }
749 return flags;
750}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000751EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000752
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100753/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000754int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000755 const struct in6_addr *laddr,
756 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800757{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000758 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800759 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200760 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800761
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000762 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
763 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
764 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900765 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800766
767 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100768 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800769
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000770 if ((ipv6_addr_is_multicast(laddr) ||
771 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
772 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800773 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800774 }
775 return ret;
776}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000777EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900780 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900782 * @protocol: ethernet protocol ID
783 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *
785 * Return: 0
786 **/
787
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900788static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900789 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000790 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
791 const struct ipv6hdr *ipv6h,
792 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000795 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300796 u8 tproto;
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000797 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Eric Dumazet2922bc82009-10-23 06:34:34 +0000799 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700801 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700802 &ipv6h->daddr)) != NULL) {
Li RongQing8f849852014-01-04 13:57:59 +0800803 struct pcpu_sw_netstats *tstats;
Eric Dumazet8560f222010-09-28 03:23:34 +0000804
Alexey Andriyanovacf722f2014-10-29 10:54:52 +0300805 tproto = ACCESS_ONCE(t->parms.proto);
806 if (tproto != ipproto && tproto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000807 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900808 goto discard;
809 }
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000812 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700813 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000816 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02af2008-05-21 14:17:05 -0700817 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000818 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto discard;
820 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700821 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700822 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900823 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700825
Nicolas Dichtelea231922013-09-02 15:34:58 +0200826 __skb_tunnel_rx(skb, t->dev, t->net);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000827
828 err = dscp_ecn_decapsulate(t, ipv6h, skb);
829 if (unlikely(err)) {
830 if (log_ecn_error)
831 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
832 &ipv6h->saddr,
833 ipv6_get_dsfield(ipv6h));
834 if (err > 1) {
835 ++t->dev->stats.rx_frame_errors;
836 ++t->dev->stats.rx_errors;
837 rcu_read_unlock();
838 goto discard;
839 }
840 }
841
Eric Dumazet8560f222010-09-28 03:23:34 +0000842 tstats = this_cpu_ptr(t->dev->tstats);
Li RongQingabb60132014-01-02 13:20:12 +0800843 u64_stats_update_begin(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000844 tstats->rx_packets++;
845 tstats->rx_bytes += skb->len;
Li RongQingabb60132014-01-02 13:20:12 +0800846 u64_stats_update_end(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000847
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000848 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000849
Eric Dumazet2922bc82009-10-23 06:34:34 +0000850 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return 0;
852 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000853 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700855
856discard:
857 kfree_skb(skb);
858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900861static int ip4ip6_rcv(struct sk_buff *skb)
862{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900863 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
864 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900865}
866
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900867static int ip6ip6_rcv(struct sk_buff *skb)
868{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900869 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
870 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900871}
872
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800873struct ipv6_tel_txoption {
874 struct ipv6_txoptions ops;
875 __u8 dst_opt[8];
876};
877
878static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800880 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800882 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
883 opt->dst_opt[3] = 1;
884 opt->dst_opt[4] = encap_limit;
885 opt->dst_opt[5] = IPV6_TLV_PADN;
886 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800888 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
889 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900893 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900895 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 *
897 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900898 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * doesn't match source of incoming packet.
900 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900901 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 * 1 if conflict,
903 * 0 else
904 **/
905
Eric Dumazet92113bf2012-05-18 08:14:11 +0200906static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000907ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
910}
911
Steffen Klassertd5005142014-11-05 08:02:48 +0100912int ip6_tnl_xmit_ctl(struct ip6_tnl *t,
913 const struct in6_addr *laddr,
914 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800915{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000916 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800917 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200918 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800919
Steffen Klassertd5005142014-11-05 08:02:48 +0100920 if ((p->flags & IP6_TNL_F_CAP_XMIT) ||
921 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
922 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_XMIT))) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800923 struct net_device *ldev = NULL;
924
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100925 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800926 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100927 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800928
Steffen Klassertd5005142014-11-05 08:02:48 +0100929 if (unlikely(!ipv6_chk_addr(net, laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000930 pr_warn("%s xmit: Local address not yet configured!\n",
931 p->name);
Steffen Klassertd5005142014-11-05 08:02:48 +0100932 else if (!ipv6_addr_is_multicast(raddr) &&
933 unlikely(ipv6_chk_addr(net, raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000934 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
935 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800936 else
937 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100938 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800939 }
940 return ret;
941}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000942EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900945 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900947 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900948 * @dsfield: dscp code for outer header
949 * @fl: flow of tunneled packet
950 * @encap_limit: encapsulation limit
951 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 *
953 * Description:
954 * Build new header and do some sanity checks on the packet before sending
955 * it.
956 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900957 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900958 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900959 * -1 fail
960 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 **/
962
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900963static int ip6_tnl_xmit2(struct sk_buff *skb,
964 struct net_device *dev,
965 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500966 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900967 int encap_limit,
968 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Patrick McHardy2941a482006-01-08 22:05:26 -0800970 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200971 struct net *net = t->net;
Pavel Emelyanov3dca02af2008-05-21 14:17:05 -0700972 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700973 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800974 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400975 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 struct net_device *tdev;
977 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700978 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900980 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400982 if (!fl6->flowi6_mark)
983 dst = ip6_tnl_dst_check(t);
Steffen Klassertd5005142014-11-05 08:02:48 +0100984
985 if (!ip6_tnl_xmit_ctl(t, &fl6->saddr, &fl6->daddr))
986 goto tx_err_link_failure;
987
Eric Dumazet89b02122011-07-28 04:32:25 +0000988 if (!dst) {
989 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Eric Dumazet89b02122011-07-28 04:32:25 +0000991 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700992 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000993 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
994 if (IS_ERR(ndst)) {
995 err = PTR_ERR(ndst);
996 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800997 goto tx_err_link_failure;
998 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000999 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -07001000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 tdev = dst->dev;
1003
1004 if (tdev == dev) {
1005 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +00001006 net_warn_ratelimited("%s: Local routing loop detected!\n",
1007 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 goto tx_err_dst_release;
1009 }
Ian Morris67ba4152014-08-24 21:53:10 +01001010 mtu = dst_mtu(dst) - sizeof(*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001011 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 max_headroom += 8;
1013 mtu -= 8;
1014 }
1015 if (mtu < IPV6_MIN_MTU)
1016 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +00001017 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -07001018 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001020 *pmtu = mtu;
1021 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 goto tx_err_dst_release;
1023 }
1024
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001025 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /*
1028 * Okay, now see if we can stuff it in the buffer as-is.
1029 */
1030 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001031
Patrick McHardycfbba492007-07-09 15:33:40 -07001032 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1033 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1037 goto tx_err_dst_release;
1038
1039 if (skb->sk)
1040 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001041 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 skb = new_skb;
1043 }
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001044 if (fl6->flowi6_mark) {
1045 skb_dst_set(skb, dst);
1046 ndst = NULL;
1047 } else {
1048 skb_dst_set_noref(skb, dst);
1049 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001050 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
David S. Miller4c9483b2011-03-12 16:22:43 -05001052 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001053 if (encap_limit >= 0) {
1054 init_tel_txopt(&opt, encap_limit);
1055 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1056 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +02001057
1058 if (likely(!skb->encapsulation)) {
1059 skb_reset_inner_headers(skb);
1060 skb->encapsulation = 1;
1061 }
1062
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001063 skb_push(skb, sizeof(struct ipv6hdr));
1064 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001065 ipv6h = ipv6_hdr(skb);
Tom Herbertcb1ce2e2014-07-01 21:33:10 -07001066 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield),
1067 ip6_make_flowlabel(net, skb, fl6->flowlabel, false));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 ipv6h->hop_limit = t->parms.hop_limit;
1069 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001070 ipv6h->saddr = fl6->saddr;
1071 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001072 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001073 if (ndst)
1074 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 0;
1076tx_err_link_failure:
1077 stats->tx_carrier_errors++;
1078 dst_link_failure(skb);
1079tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001080 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001081 return err;
1082}
1083
1084static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001085ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1086{
1087 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001088 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001089 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001090 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001091 __u8 dsfield;
1092 __u32 mtu;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001093 u8 tproto;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001094 int err;
1095
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001096 tproto = ACCESS_ONCE(t->parms.proto);
Steffen Klassertd5005142014-11-05 08:02:48 +01001097 if (tproto != IPPROTO_IPIP && tproto != 0)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001098 return -1;
1099
1100 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1101 encap_limit = t->parms.encap_limit;
1102
Ian Morris67ba4152014-08-24 21:53:10 +01001103 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
David S. Miller4c9483b2011-03-12 16:22:43 -05001104 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001105
1106 dsfield = ipv4_get_dsfield(iph);
1107
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001108 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001109 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001110 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001111 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1112 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001113
David S. Miller4c9483b2011-03-12 16:22:43 -05001114 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001115 if (err != 0) {
1116 /* XXX: send ICMP error even if DF is not set. */
1117 if (err == -EMSGSIZE)
1118 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1119 htonl(mtu));
1120 return -1;
1121 }
1122
1123 return 0;
1124}
1125
1126static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001127ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1128{
1129 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001130 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001131 int encap_limit = -1;
1132 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001133 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001134 __u8 dsfield;
1135 __u32 mtu;
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001136 u8 tproto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001137 int err;
1138
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001139 tproto = ACCESS_ONCE(t->parms.proto);
1140 if ((tproto != IPPROTO_IPV6 && tproto != 0) ||
Steffen Klassertd5005142014-11-05 08:02:48 +01001141 ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001142 return -1;
1143
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001144 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001145 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001146 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001147 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001148 if (tel->encap_limit == 0) {
1149 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001150 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001151 return -1;
1152 }
1153 encap_limit = tel->encap_limit - 1;
1154 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1155 encap_limit = t->parms.encap_limit;
1156
Ian Morris67ba4152014-08-24 21:53:10 +01001157 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
David S. Miller4c9483b2011-03-12 16:22:43 -05001158 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001159
1160 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001161 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001162 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001163 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +01001164 fl6.flowlabel |= ip6_flowlabel(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001165 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1166 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001167
David S. Miller4c9483b2011-03-12 16:22:43 -05001168 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001169 if (err != 0) {
1170 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001171 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001172 return -1;
1173 }
1174
1175 return 0;
1176}
1177
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001178static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001179ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1180{
1181 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02af2008-05-21 14:17:05 -07001182 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001183 int ret;
1184
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001185 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001186 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001187 ret = ip4ip6_tnl_xmit(skb, dev);
1188 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001189 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001190 ret = ip6ip6_tnl_xmit(skb, dev);
1191 break;
1192 default:
1193 goto tx_err;
1194 }
1195
1196 if (ret < 0)
1197 goto tx_err;
1198
Patrick McHardy6ed10652009-06-23 06:03:08 +00001199 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201tx_err:
1202 stats->tx_errors++;
1203 stats->tx_dropped++;
1204 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001205 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001208static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
1210 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001211 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001212 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001214 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1215 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001218 fl6->saddr = p->laddr;
1219 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001220 fl6->flowi6_oif = p->link;
1221 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001224 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001226 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001228 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1229 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1232 dev->flags |= IFF_POINTOPOINT;
1233 else
1234 dev->flags &= ~IFF_POINTOPOINT;
1235
1236 dev->iflink = p->link;
1237
1238 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001239 int strict = (ipv6_addr_type(&p->raddr) &
1240 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1241
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001242 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001243 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001244 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if (rt == NULL)
1247 return;
1248
David S. Millerd1918542011-12-28 20:19:20 -05001249 if (rt->dst.dev) {
1250 dev->hard_header_len = rt->dst.dev->hard_header_len +
Ian Morris67ba4152014-08-24 21:53:10 +01001251 sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Ian Morris67ba4152014-08-24 21:53:10 +01001253 dev->mtu = rt->dst.dev->mtu - sizeof(struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001254 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001255 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 if (dev->mtu < IPV6_MIN_MTU)
1258 dev->mtu = IPV6_MIN_MTU;
1259 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001260 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262}
1263
1264/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001265 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 * @t: tunnel to be changed
1267 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 *
1269 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001270 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 **/
1272
1273static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001274ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001276 t->parms.laddr = p->laddr;
1277 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 t->parms.flags = p->flags;
1279 t->parms.hop_limit = p->hop_limit;
1280 t->parms.encap_limit = p->encap_limit;
1281 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001282 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001283 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001284 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001285 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return 0;
1287}
1288
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001289static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1290{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001291 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001292 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1293 int err;
1294
1295 ip6_tnl_unlink(ip6n, t);
1296 synchronize_net();
1297 err = ip6_tnl_change(t, p);
1298 ip6_tnl_link(ip6n, t);
1299 netdev_state_change(t->dev);
1300 return err;
1301}
1302
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001303static int ip6_tnl0_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1304{
1305 /* for default tnl0 device allow to change only the proto */
1306 t->parms.proto = p->proto;
1307 netdev_state_change(t->dev);
1308 return 0;
1309}
1310
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001311static void
1312ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1313{
1314 p->laddr = u->laddr;
1315 p->raddr = u->raddr;
1316 p->flags = u->flags;
1317 p->hop_limit = u->hop_limit;
1318 p->encap_limit = u->encap_limit;
1319 p->flowinfo = u->flowinfo;
1320 p->link = u->link;
1321 p->proto = u->proto;
1322 memcpy(p->name, u->name, sizeof(u->name));
1323}
1324
1325static void
1326ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1327{
1328 u->laddr = p->laddr;
1329 u->raddr = p->raddr;
1330 u->flags = p->flags;
1331 u->hop_limit = p->hop_limit;
1332 u->encap_limit = p->encap_limit;
1333 u->flowinfo = p->flowinfo;
1334 u->link = p->link;
1335 u->proto = p->proto;
1336 memcpy(u->name, p->name, sizeof(u->name));
1337}
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001340 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 * @dev: virtual device associated with tunnel
1342 * @ifr: parameters passed from userspace
1343 * @cmd: command to be performed
1344 *
1345 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001346 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001347 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 *
1349 * The possible commands are the following:
1350 * %SIOCGETTUNNEL: get tunnel parameters for device
1351 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1352 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1353 * %SIOCDELTUNNEL: delete tunnel
1354 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001355 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 * initialization, can be used for creating other tunnel devices.
1357 *
1358 * Return:
1359 * 0 on success,
1360 * %-EFAULT if unable to copy data to or from userspace,
1361 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1362 * %-EINVAL if passed tunnel parameters are invalid,
1363 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1364 * %-ENODEV if attempting to change or delete a nonexisting device
1365 **/
1366
1367static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001368ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001372 struct __ip6_tnl_parm p1;
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001373 struct ip6_tnl *t = netdev_priv(dev);
1374 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001375 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 switch (cmd) {
1378 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001379 if (dev == ip6n->fb_tnl_dev) {
Ian Morris67ba4152014-08-24 21:53:10 +01001380 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 err = -EFAULT;
1382 break;
1383 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001384 ip6_tnl_parm_from_user(&p1, &p);
1385 t = ip6_tnl_locate(net, &p1, 0);
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001386 if (t == NULL)
1387 t = netdev_priv(dev);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001388 } else {
1389 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001390 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001391 ip6_tnl_parm_to_user(&p, &t->parms);
Ian Morris67ba4152014-08-24 21:53:10 +01001392 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 err = -EFAULT;
1394 }
1395 break;
1396 case SIOCADDTUNNEL:
1397 case SIOCCHGTUNNEL:
1398 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001399 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001401 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001402 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001404 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001405 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1406 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001408 ip6_tnl_parm_from_user(&p1, &p);
1409 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001410 if (cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001411 if (t != NULL) {
1412 if (t->dev != dev) {
1413 err = -EEXIST;
1414 break;
1415 }
1416 } else
1417 t = netdev_priv(dev);
Alexey Andriyanovacf722f2014-10-29 10:54:52 +03001418 if (dev == ip6n->fb_tnl_dev)
1419 err = ip6_tnl0_update(t, &p1);
1420 else
1421 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001423 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001425 ip6_tnl_parm_to_user(&p, &t->parms);
1426 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001427 err = -EFAULT;
1428
1429 } else
1430 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 break;
1432 case SIOCDELTUNNEL:
1433 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001434 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 break;
1436
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001437 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001438 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001439 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001441 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001442 ip6_tnl_parm_from_user(&p1, &p);
1443 t = ip6_tnl_locate(net, &p1, 0);
1444 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001446 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001447 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001449 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001451 err = 0;
1452 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 break;
1454 default:
1455 err = -EINVAL;
1456 }
1457 return err;
1458}
1459
1460/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001461 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 * @dev: virtual device associated with tunnel
1463 * @new_mtu: the new mtu
1464 *
1465 * Return:
1466 * 0 on success,
1467 * %-EINVAL if mtu too small
1468 **/
1469
1470static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001471ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001473 struct ip6_tnl *tnl = netdev_priv(dev);
1474
1475 if (tnl->parms.proto == IPPROTO_IPIP) {
1476 if (new_mtu < 68)
1477 return -EINVAL;
1478 } else {
1479 if (new_mtu < IPV6_MIN_MTU)
1480 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001482 if (new_mtu > 0xFFF8 - dev->hard_header_len)
1483 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 dev->mtu = new_mtu;
1485 return 0;
1486}
1487
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001488
1489static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001490 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001491 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001492 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001493 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001494 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001495};
1496
Eric Dumazet8560f222010-09-28 03:23:34 +00001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001499 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * @dev: virtual device associated with tunnel
1501 *
1502 * Description:
1503 * Initialize function pointers and device parameters
1504 **/
1505
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001506static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Anders Franzen381601e2010-11-24 05:47:18 +00001508 struct ip6_tnl *t;
1509
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001510 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001511 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 dev->type = ARPHRD_TUNNEL6;
Ian Morris67ba4152014-08-24 21:53:10 +01001514 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr);
1515 dev->mtu = ETH_DATA_LEN - sizeof(struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001516 t = netdev_priv(dev);
1517 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001518 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 dev->flags |= IFF_NOARP;
1520 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001521 netif_keep_dst(dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001522 /* This perm addr will be used as interface identifier by IPv6 */
1523 dev->addr_assign_type = NET_ADDR_RANDOM;
1524 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
1527
1528/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001529 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 * @dev: virtual device associated with tunnel
1531 **/
1532
Eric Dumazet8560f222010-09-28 03:23:34 +00001533static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001534ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Patrick McHardy2941a482006-01-08 22:05:26 -08001536 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001539 t->net = dev_net(dev);
WANG Cong1c213bd2014-02-13 11:46:28 -08001540 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Eric Dumazet8560f222010-09-28 03:23:34 +00001541 if (!dev->tstats)
1542 return -ENOMEM;
1543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
1546/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001547 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * @dev: virtual device associated with tunnel
1549 **/
1550
Eric Dumazet8560f222010-09-28 03:23:34 +00001551static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Patrick McHardy2941a482006-01-08 22:05:26 -08001553 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001554 int err = ip6_tnl_dev_init_gen(dev);
1555
1556 if (err)
1557 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001558 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001559 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
1562/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001563 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 * @dev: fallback device
1565 *
1566 * Return: 0
1567 **/
1568
Eric Dumazet8560f222010-09-28 03:23:34 +00001569static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Patrick McHardy2941a482006-01-08 22:05:26 -08001571 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001572 struct net *net = dev_net(dev);
1573 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001574 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001575
Eric Dumazet8560f222010-09-28 03:23:34 +00001576 if (err)
1577 return err;
1578
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001579 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001581
1582 ip6_tnl_link_config(t);
1583
Eric Dumazetcf778b02012-01-12 04:41:32 +00001584 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001588static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1589{
1590 u8 proto;
1591
Susant Sahanic8965932014-05-10 00:11:32 +05301592 if (!data || !data[IFLA_IPTUN_PROTO])
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001593 return 0;
1594
1595 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1596 if (proto != IPPROTO_IPV6 &&
1597 proto != IPPROTO_IPIP &&
1598 proto != 0)
1599 return -EINVAL;
1600
1601 return 0;
1602}
1603
1604static void ip6_tnl_netlink_parms(struct nlattr *data[],
1605 struct __ip6_tnl_parm *parms)
1606{
1607 memset(parms, 0, sizeof(*parms));
1608
1609 if (!data)
1610 return;
1611
1612 if (data[IFLA_IPTUN_LINK])
1613 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1614
1615 if (data[IFLA_IPTUN_LOCAL])
1616 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1617 sizeof(struct in6_addr));
1618
1619 if (data[IFLA_IPTUN_REMOTE])
1620 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1621 sizeof(struct in6_addr));
1622
1623 if (data[IFLA_IPTUN_TTL])
1624 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1625
1626 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1627 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1628
1629 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001630 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001631
1632 if (data[IFLA_IPTUN_FLAGS])
1633 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1634
1635 if (data[IFLA_IPTUN_PROTO])
1636 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1637}
1638
1639static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1640 struct nlattr *tb[], struct nlattr *data[])
1641{
1642 struct net *net = dev_net(dev);
1643 struct ip6_tnl *nt;
1644
1645 nt = netdev_priv(dev);
1646 ip6_tnl_netlink_parms(data, &nt->parms);
1647
1648 if (ip6_tnl_locate(net, &nt->parms, 0))
1649 return -EEXIST;
1650
1651 return ip6_tnl_create2(dev);
1652}
1653
1654static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1655 struct nlattr *data[])
1656{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001657 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001658 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001659 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001660 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1661
1662 if (dev == ip6n->fb_tnl_dev)
1663 return -EINVAL;
1664
1665 ip6_tnl_netlink_parms(data, &p);
1666
1667 t = ip6_tnl_locate(net, &p, 0);
1668
1669 if (t) {
1670 if (t->dev != dev)
1671 return -EEXIST;
1672 } else
1673 t = netdev_priv(dev);
1674
1675 return ip6_tnl_update(t, &p);
1676}
1677
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001678static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1679{
1680 struct net *net = dev_net(dev);
1681 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1682
1683 if (dev != ip6n->fb_tnl_dev)
1684 unregister_netdevice_queue(dev, head);
1685}
1686
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001687static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001688{
1689 return
1690 /* IFLA_IPTUN_LINK */
1691 nla_total_size(4) +
1692 /* IFLA_IPTUN_LOCAL */
1693 nla_total_size(sizeof(struct in6_addr)) +
1694 /* IFLA_IPTUN_REMOTE */
1695 nla_total_size(sizeof(struct in6_addr)) +
1696 /* IFLA_IPTUN_TTL */
1697 nla_total_size(1) +
1698 /* IFLA_IPTUN_ENCAP_LIMIT */
1699 nla_total_size(1) +
1700 /* IFLA_IPTUN_FLOWINFO */
1701 nla_total_size(4) +
1702 /* IFLA_IPTUN_FLAGS */
1703 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001704 /* IFLA_IPTUN_PROTO */
1705 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001706 0;
1707}
1708
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001709static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001710{
1711 struct ip6_tnl *tunnel = netdev_priv(dev);
1712 struct __ip6_tnl_parm *parm = &tunnel->parms;
1713
1714 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1715 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001716 &parm->laddr) ||
Ding Zhi0d2ede92013-09-16 11:31:15 +02001717 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1718 &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001719 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1720 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1721 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001722 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1723 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001724 goto nla_put_failure;
1725 return 0;
1726
1727nla_put_failure:
1728 return -EMSGSIZE;
1729}
1730
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001731static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1732 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1733 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1734 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1735 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1736 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1737 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1738 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1739 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1740};
1741
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001742static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1743 .kind = "ip6tnl",
1744 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001745 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001746 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001747 .setup = ip6_tnl_dev_setup,
1748 .validate = ip6_tnl_validate,
1749 .newlink = ip6_tnl_newlink,
1750 .changelink = ip6_tnl_changelink,
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001751 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001752 .get_size = ip6_tnl_get_size,
1753 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001754};
1755
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001756static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001757 .handler = ip4ip6_rcv,
1758 .err_handler = ip4ip6_err,
1759 .priority = 1,
1760};
1761
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001762static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001763 .handler = ip6ip6_rcv,
1764 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001765 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766};
1767
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001768static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001769{
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001770 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001771 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001772 int h;
1773 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001774 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001775
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001776 for_each_netdev_safe(net, dev, aux)
1777 if (dev->rtnl_link_ops == &ip6_link_ops)
1778 unregister_netdevice_queue(dev, &list);
1779
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001780 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001781 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001782 while (t != NULL) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001783 /* If dev is in the same netns, it has already
1784 * been added to the list by the previous loop.
1785 */
1786 if (!net_eq(dev_net(t->dev), net))
1787 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001788 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001789 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001790 }
1791
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001792 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001793}
1794
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001795static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001796{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001797 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001798 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001799 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001800
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001801 ip6n->tnls[0] = ip6n->tnls_wc;
1802 ip6n->tnls[1] = ip6n->tnls_r_l;
1803
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001804 err = -ENOMEM;
1805 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001806 NET_NAME_UNKNOWN, ip6_tnl_dev_setup);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001807
1808 if (!ip6n->fb_tnl_dev)
1809 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001810 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtelbb814092013-10-01 18:05:00 +02001811 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001812 /* FB netdevice is special: we have one, and only one per netns.
1813 * Allowing to move it to another netns is clearly unsafe.
1814 */
1815 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001816
Eric Dumazet8560f222010-09-28 03:23:34 +00001817 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1818 if (err < 0)
1819 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001820
1821 err = register_netdev(ip6n->fb_tnl_dev);
1822 if (err < 0)
1823 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001824
1825 t = netdev_priv(ip6n->fb_tnl_dev);
1826
1827 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001828 return 0;
1829
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001830err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001831 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001832err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001833 return err;
1834}
1835
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001836static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001837{
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001838 rtnl_lock();
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001839 ip6_tnl_destroy_tunnels(net);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001840 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001841}
1842
1843static struct pernet_operations ip6_tnl_net_ops = {
1844 .init = ip6_tnl_init_net,
1845 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001846 .id = &ip6_tnl_net_id,
1847 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001848};
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850/**
1851 * ip6_tunnel_init - register protocol and reserve needed resources
1852 *
1853 * Return: 0 on success
1854 **/
1855
1856static int __init ip6_tunnel_init(void)
1857{
1858 int err;
1859
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001860 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001861 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001862 goto out_pernet;
1863
1864 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1865 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001866 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001867 goto out_ip4ip6;
1868 }
1869
1870 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1871 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001872 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001873 goto out_ip6ip6;
1874 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001875 err = rtnl_link_register(&ip6_link_ops);
1876 if (err < 0)
1877 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001880
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001881rtnl_link_failed:
1882 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001883out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001884 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001885out_ip4ip6:
1886 unregister_pernet_device(&ip6_tnl_net_ops);
1887out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return err;
1889}
1890
1891/**
1892 * ip6_tunnel_cleanup - free resources and unregister protocol
1893 **/
1894
1895static void __exit ip6_tunnel_cleanup(void)
1896{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001897 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001898 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001899 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001900
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001901 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001902 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001904 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
1907module_init(ip6_tunnel_init);
1908module_exit(ip6_tunnel_cleanup);