blob: 1e5e2404f1af51c4d230ac91817bb5805f62b856 [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");
stephen hemminger6dfbd872011-03-10 11:43:19 +000064MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#ifdef IP6_TNL_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +000067#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#else
69#define IP6_TNL_TRACE(x...) do {;} while(0)
70#endif
71
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090072#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Dumazetddbe5032012-07-18 08:11:12 +000074#define HASH_SIZE_SHIFT 5
75#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000077static bool log_ecn_error = true;
78module_param(log_ecn_error, bool, 0644);
79MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
80
Eric Dumazetddbe5032012-07-18 08:11:12 +000081static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
82{
83 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
84
85 return hash_32(hash, HASH_SIZE_SHIFT);
86}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Dumazet8560f222010-09-28 03:23:34 +000088static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090089static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000090static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Eric Dumazetf99189b2009-11-17 10:42:49 +000092static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070093struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070094 /* the IPv6 tunnel fallback device */
95 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070096 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000097 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
98 struct ip6_tnl __rcu *tnls_wc[1];
99 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -0700100};
101
Eric Dumazet8560f222010-09-28 03:23:34 +0000102static struct net_device_stats *ip6_get_stats(struct net_device *dev)
103{
David S. Miller56a43422014-01-06 17:37:45 -0500104 struct pcpu_sw_netstats tmp, sum = { 0 };
Eric Dumazet8560f222010-09-28 03:23:34 +0000105 int i;
106
107 for_each_possible_cpu(i) {
Li RongQingabb60132014-01-02 13:20:12 +0800108 unsigned int start;
Li RongQing8f849852014-01-04 13:57:59 +0800109 const struct pcpu_sw_netstats *tstats =
110 per_cpu_ptr(dev->tstats, i);
Eric Dumazet8560f222010-09-28 03:23:34 +0000111
Li RongQingabb60132014-01-02 13:20:12 +0800112 do {
113 start = u64_stats_fetch_begin_bh(&tstats->syncp);
114 tmp.rx_packets = tstats->rx_packets;
115 tmp.rx_bytes = tstats->rx_bytes;
116 tmp.tx_packets = tstats->tx_packets;
117 tmp.tx_bytes = tstats->tx_bytes;
118 } while (u64_stats_fetch_retry_bh(&tstats->syncp, start));
119
120 sum.rx_packets += tmp.rx_packets;
121 sum.rx_bytes += tmp.rx_bytes;
122 sum.tx_packets += tmp.tx_packets;
123 sum.tx_bytes += tmp.tx_bytes;
Eric Dumazet8560f222010-09-28 03:23:34 +0000124 }
125 dev->stats.rx_packets = sum.rx_packets;
126 dev->stats.rx_bytes = sum.rx_bytes;
127 dev->stats.tx_packets = sum.tx_packets;
128 dev->stats.tx_bytes = sum.tx_bytes;
129 return &dev->stats;
130}
131
Eric Dumazet2922bc82009-10-23 06:34:34 +0000132/*
Eric Dumazet94767632010-09-15 20:25:34 +0000133 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000136struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct dst_entry *dst = t->dst_cache;
139
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900140 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 dst->ops->check(dst, t->dst_cookie) == NULL) {
142 t->dst_cache = NULL;
143 dst_release(dst);
144 return NULL;
145 }
146
147 return dst;
148}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000149EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000151void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 dst_release(t->dst_cache);
154 t->dst_cache = NULL;
155}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000156EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000158void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct rt6_info *rt = (struct rt6_info *) dst;
161 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
162 dst_release(t->dst_cache);
163 t->dst_cache = dst;
164}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000165EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900168 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900169 * @remote: the address of the tunnel exit-point
170 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900172 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900174 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * else %NULL
176 **/
177
Eric Dumazet2922bc82009-10-23 06:34:34 +0000178#define for_each_ip6_tunnel_rcu(start) \
179 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000182ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000184 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700186 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Eric Dumazetddbe5032012-07-18 08:11:12 +0000188 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (ipv6_addr_equal(local, &t->parms.laddr) &&
190 ipv6_addr_equal(remote, &t->parms.raddr) &&
191 (t->dev->flags & IFF_UP))
192 return t;
193 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000194 t = rcu_dereference(ip6n->tnls_wc[0]);
195 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return t;
197
198 return NULL;
199}
200
201/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900202 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900203 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900206 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * &struct in6_addr entries laddr and raddr in @p.
208 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900209 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 **/
211
Eric Dumazet94767632010-09-15 20:25:34 +0000212static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000213ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000215 const struct in6_addr *remote = &p->raddr;
216 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000217 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int prio = 0;
219
220 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
221 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000222 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700224 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900228 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * @t: tunnel to be added
230 **/
231
232static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700233ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Eric Dumazet94767632010-09-15 20:25:34 +0000235 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Eric Dumazetcf778b02012-01-12 04:41:32 +0000237 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
238 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900242 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 * @t: tunnel to be removed
244 **/
245
246static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700247ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Eric Dumazet94767632010-09-15 20:25:34 +0000249 struct ip6_tnl __rcu **tp;
250 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Eric Dumazet94767632010-09-15 20:25:34 +0000252 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
253 (iter = rtnl_dereference(*tp)) != NULL;
254 tp = &iter->next) {
255 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000256 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258 }
259 }
260}
261
Eric Dumazet8560f222010-09-28 03:23:34 +0000262static void ip6_dev_free(struct net_device *dev)
263{
264 free_percpu(dev->tstats);
265 free_netdev(dev);
266}
267
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000268static int ip6_tnl_create2(struct net_device *dev)
269{
270 struct ip6_tnl *t = netdev_priv(dev);
271 struct net *net = dev_net(dev);
272 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
273 int err;
274
275 t = netdev_priv(dev);
276 err = ip6_tnl_dev_init(dev);
277 if (err < 0)
278 goto out;
279
280 err = register_netdevice(dev);
281 if (err < 0)
282 goto out;
283
284 strcpy(t->parms.name, dev->name);
285 dev->rtnl_link_ops = &ip6_link_ops;
286
287 dev_hold(dev);
288 ip6_tnl_link(ip6n, t);
289 return 0;
290
291out:
292 return err;
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000296 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 * @p: tunnel parameters
298 * @pt: pointer to new tunnel
299 *
300 * Description:
301 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900302 *
303 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800304 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 **/
306
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000307static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 struct net_device *dev;
310 struct ip6_tnl *t;
311 char name[IFNAMSIZ];
312 int err;
313
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800314 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800316 else
317 sprintf(name, "ip6tnl%%d");
318
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900319 dev = alloc_netdev(sizeof (*t), name, 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) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800367 ipv6_addr_equal(remote, &t->parms.raddr))
368 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800371 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700372 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900376 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900378 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900380 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 **/
382
383static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900384ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Patrick McHardy2941a482006-01-08 22:05:26 -0800386 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200387 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700388 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Eric Dumazet94767632010-09-15 20:25:34 +0000390 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000391 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000392 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700393 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 ip6_tnl_dst_reset(t);
395 dev_put(dev);
396}
397
398/**
399 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
400 * @skb: received socket buffer
401 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900402 * Return:
403 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * else index to encapsulation limit
405 **/
406
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000407__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000409 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 __u8 nexthdr = ipv6h->nexthdr;
411 __u16 off = sizeof (*ipv6h);
412
413 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
414 __u16 optlen = 0;
415 struct ipv6_opt_hdr *hdr;
416 if (raw + off + sizeof (*hdr) > skb->data &&
417 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
418 break;
419
420 hdr = (struct ipv6_opt_hdr *) (raw + off);
421 if (nexthdr == NEXTHDR_FRAGMENT) {
422 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
423 if (frag_hdr->frag_off)
424 break;
425 optlen = 8;
426 } else if (nexthdr == NEXTHDR_AUTH) {
427 optlen = (hdr->hdrlen + 2) << 2;
428 } else {
429 optlen = ipv6_optlen(hdr);
430 }
431 if (nexthdr == NEXTHDR_DEST) {
432 __u16 i = off + 2;
433 while (1) {
434 struct ipv6_tlv_tnl_enc_lim *tel;
435
436 /* No more room for encapsulation limit */
437 if (i + sizeof (*tel) > off + optlen)
438 break;
439
440 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
441 /* return index of option if found and valid */
442 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
443 tel->length == 1)
444 return i;
445 /* else jump to next option */
446 if (tel->type)
447 i += tel->length + 2;
448 else
449 i++;
450 }
451 }
452 nexthdr = hdr->nexthdr;
453 off += optlen;
454 }
455 return 0;
456}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000457EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900460 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 *
462 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900463 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * to the specifications in RFC 2473.
465 **/
466
Herbert Xud2acc342006-03-28 01:12:13 -0800467static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900468ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700469 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000471 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct ip6_tnl *t;
473 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700474 u8 rel_type = ICMPV6_DEST_UNREACH;
475 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 __u32 rel_info = 0;
477 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800478 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900480 /* If the packet doesn't contain the original IPv6 header we are
481 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 processing of the error. */
483
Eric Dumazet2922bc82009-10-23 06:34:34 +0000484 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700485 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700486 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto out;
488
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900489 if (t->parms.proto != ipproto && t->parms.proto != 0)
490 goto out;
491
Herbert Xud2acc342006-03-28 01:12:13 -0800492 err = 0;
493
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900494 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 __u32 teli;
496 struct ipv6_tlv_tnl_enc_lim *tel;
497 __u32 mtu;
498 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000499 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
500 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 rel_msg = 1;
502 break;
503 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900504 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000505 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
506 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 rel_msg = 1;
508 }
509 break;
510 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800511 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900512 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000513 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Al Viro704eae12007-07-26 17:33:29 +0100515 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
517 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000518 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
519 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 rel_msg = 1;
521 }
Joe Perchese87cc472012-05-13 21:56:26 +0000522 } else {
523 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
524 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526 break;
527 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100528 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (mtu < IPV6_MIN_MTU)
530 mtu = IPV6_MIN_MTU;
531 t->dev->mtu = mtu;
532
Al Virocc6cdac2006-02-18 16:02:18 -0500533 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 rel_type = ICMPV6_PKT_TOOBIG;
535 rel_code = 0;
536 rel_info = mtu;
537 rel_msg = 1;
538 }
539 break;
540 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900541
542 *type = rel_type;
543 *code = rel_code;
544 *info = rel_info;
545 *msg = rel_msg;
546
547out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000548 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900549 return err;
550}
551
552static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900553ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700554 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900555{
556 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700557 u8 rel_type = type;
558 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100559 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900560 int err;
561 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000562 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900563 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -0700564 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900565
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900566 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
567 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900568 if (err < 0)
569 return err;
570
571 if (rel_msg == 0)
572 return 0;
573
574 switch (rel_type) {
575 case ICMPV6_DEST_UNREACH:
576 if (rel_code != ICMPV6_ADDR_UNREACH)
577 return 0;
578 rel_type = ICMP_DEST_UNREACH;
579 rel_code = ICMP_HOST_UNREACH;
580 break;
581 case ICMPV6_PKT_TOOBIG:
582 if (rel_code != 0)
583 return 0;
584 rel_type = ICMP_DEST_UNREACH;
585 rel_code = ICMP_FRAG_NEEDED;
586 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700587 case NDISC_REDIRECT:
588 rel_type = ICMP_REDIRECT;
589 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900590 default:
591 return 0;
592 }
593
594 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
595 return 0;
596
597 skb2 = skb_clone(skb, GFP_ATOMIC);
598 if (!skb2)
599 return 0;
600
Eric Dumazetadf30902009-06-02 05:19:30 +0000601 skb_dst_drop(skb2);
602
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900603 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700604 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700605 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900606
607 /* Try to guess incoming interface */
David S. Miller31e4543d2011-05-03 20:25:42 -0700608 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500609 eiph->saddr, 0,
610 0, 0,
611 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800612 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900613 goto out;
614
Changli Gaod8d1f302010-06-10 23:31:35 -0700615 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900616
617 /* route "incoming" packet */
618 if (rt->rt_flags & RTCF_LOCAL) {
619 ip_rt_put(rt);
620 rt = NULL;
David S. Miller31e4543d2011-05-03 20:25:42 -0700621 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500622 eiph->daddr, eiph->saddr,
623 0, 0,
624 IPPROTO_IPIP,
625 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800626 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700627 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800628 if (!IS_ERR(rt))
629 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900630 goto out;
631 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800632 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900633 } else {
634 ip_rt_put(rt);
635 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
636 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000637 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900638 goto out;
639 }
640
641 /* change mtu on this route */
642 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000643 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900644 goto out;
645
David S. Miller6700c272012-07-17 03:29:28 -0700646 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900647 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700648 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700649 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900650
Al Viro704eae12007-07-26 17:33:29 +0100651 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900652
653out:
654 kfree_skb(skb2);
655 return 0;
656}
657
658static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900659ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700660 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900661{
662 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700663 u8 rel_type = type;
664 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100665 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900666 int err;
667
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900668 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
669 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900670 if (err < 0)
671 return err;
672
673 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 struct rt6_info *rt;
675 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Eric Dumazetadf30902009-06-02 05:19:30 +0000680 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700682 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700685 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
686 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
David S. Millerd1918542011-12-28 20:19:20 -0500688 if (rt && rt->dst.dev)
689 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000691 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Amerigo Wang94e187c2012-10-29 00:13:19 +0000693 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 kfree_skb(skb2);
696 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900697
698 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000701static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
702 const struct ipv6hdr *ipv6h,
703 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900704{
705 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
706
707 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700708 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900709
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000710 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900711}
712
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000713static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
714 const struct ipv6hdr *ipv6h,
715 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900717 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800718 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000720 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900722
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000723__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000724 const struct in6_addr *laddr,
725 const struct in6_addr *raddr)
726{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000727 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000728 int ltype = ipv6_addr_type(laddr);
729 int rtype = ipv6_addr_type(raddr);
730 __u32 flags = 0;
731
732 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
733 flags = IP6_TNL_F_CAP_PER_PACKET;
734 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
735 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
736 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
737 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
738 if (ltype&IPV6_ADDR_UNICAST)
739 flags |= IP6_TNL_F_CAP_XMIT;
740 if (rtype&IPV6_ADDR_UNICAST)
741 flags |= IP6_TNL_F_CAP_RCV;
742 }
743 return flags;
744}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000745EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000746
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100747/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000748int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000749 const struct in6_addr *laddr,
750 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800751{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000752 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800753 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200754 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800755
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000756 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
757 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
758 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900759 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800760
761 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100762 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800763
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000764 if ((ipv6_addr_is_multicast(laddr) ||
765 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
766 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800767 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800768 }
769 return ret;
770}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000771EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900774 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900776 * @protocol: ethernet protocol ID
777 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *
779 * Return: 0
780 **/
781
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900782static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900783 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000784 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
785 const struct ipv6hdr *ipv6h,
786 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000789 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000790 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Eric Dumazet2922bc82009-10-23 06:34:34 +0000792 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700794 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700795 &ipv6h->daddr)) != NULL) {
Li RongQing8f849852014-01-04 13:57:59 +0800796 struct pcpu_sw_netstats *tstats;
Eric Dumazet8560f222010-09-28 03:23:34 +0000797
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900798 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000799 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900800 goto discard;
801 }
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000804 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700805 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000808 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700809 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000810 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 goto discard;
812 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700813 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700814 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900815 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700817
Nicolas Dichtelea231922013-09-02 15:34:58 +0200818 __skb_tunnel_rx(skb, t->dev, t->net);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000819
820 err = dscp_ecn_decapsulate(t, ipv6h, skb);
821 if (unlikely(err)) {
822 if (log_ecn_error)
823 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
824 &ipv6h->saddr,
825 ipv6_get_dsfield(ipv6h));
826 if (err > 1) {
827 ++t->dev->stats.rx_frame_errors;
828 ++t->dev->stats.rx_errors;
829 rcu_read_unlock();
830 goto discard;
831 }
832 }
833
Eric Dumazet8560f222010-09-28 03:23:34 +0000834 tstats = this_cpu_ptr(t->dev->tstats);
Li RongQingabb60132014-01-02 13:20:12 +0800835 u64_stats_update_begin(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000836 tstats->rx_packets++;
837 tstats->rx_bytes += skb->len;
Li RongQingabb60132014-01-02 13:20:12 +0800838 u64_stats_update_end(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000839
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000840 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000841
Eric Dumazet2922bc82009-10-23 06:34:34 +0000842 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return 0;
844 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000845 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700847
848discard:
849 kfree_skb(skb);
850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900853static int ip4ip6_rcv(struct sk_buff *skb)
854{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900855 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
856 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900857}
858
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900859static int ip6ip6_rcv(struct sk_buff *skb)
860{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900861 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
862 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900863}
864
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800865struct ipv6_tel_txoption {
866 struct ipv6_txoptions ops;
867 __u8 dst_opt[8];
868};
869
870static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800872 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800874 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
875 opt->dst_opt[3] = 1;
876 opt->dst_opt[4] = encap_limit;
877 opt->dst_opt[5] = IPV6_TLV_PADN;
878 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800880 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
881 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
884/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900885 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900887 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 *
889 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900890 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * doesn't match source of incoming packet.
892 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900893 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * 1 if conflict,
895 * 0 else
896 **/
897
Eric Dumazet92113bf2012-05-18 08:14:11 +0200898static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000899ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
902}
903
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000904int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800905{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000906 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800907 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200908 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800909
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900910 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800911 struct net_device *ldev = NULL;
912
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100913 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800914 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100915 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800916
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700917 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000918 pr_warn("%s xmit: Local address not yet configured!\n",
919 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800920 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700921 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000922 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
923 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800924 else
925 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100926 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800927 }
928 return ret;
929}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000930EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900933 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900935 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900936 * @dsfield: dscp code for outer header
937 * @fl: flow of tunneled packet
938 * @encap_limit: encapsulation limit
939 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 *
941 * Description:
942 * Build new header and do some sanity checks on the packet before sending
943 * it.
944 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900945 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900946 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900947 * -1 fail
948 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 **/
950
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900951static int ip6_tnl_xmit2(struct sk_buff *skb,
952 struct net_device *dev,
953 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500954 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900955 int encap_limit,
956 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Patrick McHardy2941a482006-01-08 22:05:26 -0800958 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200959 struct net *net = t->net;
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700960 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700961 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800962 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400963 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct net_device *tdev;
965 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700966 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900968 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400970 if (!fl6->flowi6_mark)
971 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000972 if (!dst) {
973 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Eric Dumazet89b02122011-07-28 04:32:25 +0000975 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700976 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000977 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
978 if (IS_ERR(ndst)) {
979 err = PTR_ERR(ndst);
980 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800981 goto tx_err_link_failure;
982 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000983 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 tdev = dst->dev;
987
988 if (tdev == dev) {
989 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000990 net_warn_ratelimited("%s: Local routing loop detected!\n",
991 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 goto tx_err_dst_release;
993 }
994 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800995 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 max_headroom += 8;
997 mtu -= 8;
998 }
999 if (mtu < IPV6_MIN_MTU)
1000 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +00001001 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -07001002 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001004 *pmtu = mtu;
1005 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto tx_err_dst_release;
1007 }
1008
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001009 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /*
1012 * Okay, now see if we can stuff it in the buffer as-is.
1013 */
1014 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001015
Patrick McHardycfbba492007-07-09 15:33:40 -07001016 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1017 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1021 goto tx_err_dst_release;
1022
1023 if (skb->sk)
1024 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001025 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 skb = new_skb;
1027 }
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001028 if (fl6->flowi6_mark) {
1029 skb_dst_set(skb, dst);
1030 ndst = NULL;
1031 } else {
1032 skb_dst_set_noref(skb, dst);
1033 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001034 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
David S. Miller4c9483b2011-03-12 16:22:43 -05001036 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001037 if (encap_limit >= 0) {
1038 init_tel_txopt(&opt, encap_limit);
1039 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1040 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +02001041
1042 if (likely(!skb->encapsulation)) {
1043 skb_reset_inner_headers(skb);
1044 skb->encapsulation = 1;
1045 }
1046
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001047 skb_push(skb, sizeof(struct ipv6hdr));
1048 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001049 ipv6h = ipv6_hdr(skb);
YOSHIFUJI Hideaki / 吉藤英明3e4e4c12013-01-13 05:01:39 +00001050 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield), fl6->flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ipv6h->hop_limit = t->parms.hop_limit;
1052 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001053 ipv6h->saddr = fl6->saddr;
1054 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001055 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001056 if (ndst)
1057 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return 0;
1059tx_err_link_failure:
1060 stats->tx_carrier_errors++;
1061 dst_link_failure(skb);
1062tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001063 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001064 return err;
1065}
1066
1067static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001068ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1069{
1070 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001071 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001072 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001073 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001074 __u8 dsfield;
1075 __u32 mtu;
1076 int err;
1077
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001078 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1079 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001080 return -1;
1081
1082 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1083 encap_limit = t->parms.encap_limit;
1084
David S. Miller4c9483b2011-03-12 16:22:43 -05001085 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1086 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001087
1088 dsfield = ipv4_get_dsfield(iph);
1089
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001090 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001091 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001092 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001093 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1094 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001095
David S. Miller4c9483b2011-03-12 16:22:43 -05001096 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001097 if (err != 0) {
1098 /* XXX: send ICMP error even if DF is not set. */
1099 if (err == -EMSGSIZE)
1100 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1101 htonl(mtu));
1102 return -1;
1103 }
1104
1105 return 0;
1106}
1107
1108static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001109ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1110{
1111 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001112 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001113 int encap_limit = -1;
1114 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001115 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001116 __u8 dsfield;
1117 __u32 mtu;
1118 int err;
1119
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001120 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1121 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001122 return -1;
1123
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001124 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001125 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001126 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001127 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001128 if (tel->encap_limit == 0) {
1129 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001130 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001131 return -1;
1132 }
1133 encap_limit = tel->encap_limit - 1;
1134 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1135 encap_limit = t->parms.encap_limit;
1136
David S. Miller4c9483b2011-03-12 16:22:43 -05001137 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1138 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001139
1140 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001141 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001142 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001143 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +01001144 fl6.flowlabel |= ip6_flowlabel(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001145 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1146 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001147
David S. Miller4c9483b2011-03-12 16:22:43 -05001148 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001149 if (err != 0) {
1150 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001151 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001152 return -1;
1153 }
1154
1155 return 0;
1156}
1157
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001158static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001159ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1160{
1161 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001162 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001163 int ret;
1164
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001165 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001166 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001167 ret = ip4ip6_tnl_xmit(skb, dev);
1168 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001169 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001170 ret = ip6ip6_tnl_xmit(skb, dev);
1171 break;
1172 default:
1173 goto tx_err;
1174 }
1175
1176 if (ret < 0)
1177 goto tx_err;
1178
Patrick McHardy6ed10652009-06-23 06:03:08 +00001179 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181tx_err:
1182 stats->tx_errors++;
1183 stats->tx_dropped++;
1184 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001185 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001188static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001191 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001192 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001194 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1195 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001198 fl6->saddr = p->laddr;
1199 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001200 fl6->flowi6_oif = p->link;
1201 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001204 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001206 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001208 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1209 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1212 dev->flags |= IFF_POINTOPOINT;
1213 else
1214 dev->flags &= ~IFF_POINTOPOINT;
1215
1216 dev->iflink = p->link;
1217
1218 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001219 int strict = (ipv6_addr_type(&p->raddr) &
1220 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1221
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001222 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001223 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001224 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 if (rt == NULL)
1227 return;
1228
David S. Millerd1918542011-12-28 20:19:20 -05001229 if (rt->dst.dev) {
1230 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 sizeof (struct ipv6hdr);
1232
David S. Millerd1918542011-12-28 20:19:20 -05001233 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001234 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1235 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if (dev->mtu < IPV6_MIN_MTU)
1238 dev->mtu = IPV6_MIN_MTU;
1239 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001240 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242}
1243
1244/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001245 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * @t: tunnel to be changed
1247 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 *
1249 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001250 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 **/
1252
1253static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001254ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001256 t->parms.laddr = p->laddr;
1257 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 t->parms.flags = p->flags;
1259 t->parms.hop_limit = p->hop_limit;
1260 t->parms.encap_limit = p->encap_limit;
1261 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001262 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001263 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001264 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001265 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return 0;
1267}
1268
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001269static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1270{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001271 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001272 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1273 int err;
1274
1275 ip6_tnl_unlink(ip6n, t);
1276 synchronize_net();
1277 err = ip6_tnl_change(t, p);
1278 ip6_tnl_link(ip6n, t);
1279 netdev_state_change(t->dev);
1280 return err;
1281}
1282
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001283static void
1284ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1285{
1286 p->laddr = u->laddr;
1287 p->raddr = u->raddr;
1288 p->flags = u->flags;
1289 p->hop_limit = u->hop_limit;
1290 p->encap_limit = u->encap_limit;
1291 p->flowinfo = u->flowinfo;
1292 p->link = u->link;
1293 p->proto = u->proto;
1294 memcpy(p->name, u->name, sizeof(u->name));
1295}
1296
1297static void
1298ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1299{
1300 u->laddr = p->laddr;
1301 u->raddr = p->raddr;
1302 u->flags = p->flags;
1303 u->hop_limit = p->hop_limit;
1304 u->encap_limit = p->encap_limit;
1305 u->flowinfo = p->flowinfo;
1306 u->link = p->link;
1307 u->proto = p->proto;
1308 memcpy(u->name, p->name, sizeof(u->name));
1309}
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001312 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 * @dev: virtual device associated with tunnel
1314 * @ifr: parameters passed from userspace
1315 * @cmd: command to be performed
1316 *
1317 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001318 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001319 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 *
1321 * The possible commands are the following:
1322 * %SIOCGETTUNNEL: get tunnel parameters for device
1323 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1324 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1325 * %SIOCDELTUNNEL: delete tunnel
1326 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001327 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 * initialization, can be used for creating other tunnel devices.
1329 *
1330 * Return:
1331 * 0 on success,
1332 * %-EFAULT if unable to copy data to or from userspace,
1333 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1334 * %-EINVAL if passed tunnel parameters are invalid,
1335 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1336 * %-ENODEV if attempting to change or delete a nonexisting device
1337 **/
1338
1339static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001340ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001344 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001346 struct net *net = dev_net(dev);
1347 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 switch (cmd) {
1350 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001351 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001352 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 err = -EFAULT;
1354 break;
1355 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001356 ip6_tnl_parm_from_user(&p1, &p);
1357 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001358 } else {
1359 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001360 }
1361 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001362 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001363 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1365 err = -EFAULT;
1366 }
1367 break;
1368 case SIOCADDTUNNEL:
1369 case SIOCCHGTUNNEL:
1370 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001371 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001373 err = -EFAULT;
1374 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001376 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001377 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1378 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001380 ip6_tnl_parm_from_user(&p1, &p);
1381 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001382 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001383 if (t != NULL) {
1384 if (t->dev != dev) {
1385 err = -EEXIST;
1386 break;
1387 }
1388 } else
1389 t = netdev_priv(dev);
1390
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001391 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001393 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001395 ip6_tnl_parm_to_user(&p, &t->parms);
1396 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001397 err = -EFAULT;
1398
1399 } else
1400 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 break;
1402 case SIOCDELTUNNEL:
1403 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001404 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 break;
1406
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001407 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001408 err = -EFAULT;
1409 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001411 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001412 ip6_tnl_parm_from_user(&p1, &p);
1413 t = ip6_tnl_locate(net, &p1, 0);
1414 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001416 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001417 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001419 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001421 err = 0;
1422 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 break;
1424 default:
1425 err = -EINVAL;
1426 }
1427 return err;
1428}
1429
1430/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001431 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 * @dev: virtual device associated with tunnel
1433 * @new_mtu: the new mtu
1434 *
1435 * Return:
1436 * 0 on success,
1437 * %-EINVAL if mtu too small
1438 **/
1439
1440static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001441ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001443 struct ip6_tnl *tnl = netdev_priv(dev);
1444
1445 if (tnl->parms.proto == IPPROTO_IPIP) {
1446 if (new_mtu < 68)
1447 return -EINVAL;
1448 } else {
1449 if (new_mtu < IPV6_MIN_MTU)
1450 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001452 if (new_mtu > 0xFFF8 - dev->hard_header_len)
1453 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 dev->mtu = new_mtu;
1455 return 0;
1456}
1457
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001458
1459static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001460 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001461 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001462 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001463 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001464 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001465};
1466
Eric Dumazet8560f222010-09-28 03:23:34 +00001467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001469 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 * @dev: virtual device associated with tunnel
1471 *
1472 * Description:
1473 * Initialize function pointers and device parameters
1474 **/
1475
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001476static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Anders Franzen381601e2010-11-24 05:47:18 +00001478 struct ip6_tnl *t;
1479
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001480 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001481 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 dev->type = ARPHRD_TUNNEL6;
1484 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1485 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001486 t = netdev_priv(dev);
1487 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1488 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 dev->flags |= IFF_NOARP;
1490 dev->addr_len = sizeof(struct in6_addr);
Anders Franzen7e223de2010-10-19 03:50:47 +00001491 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Nicolas Dichtele8377352013-08-20 12:16:06 +02001492 /* This perm addr will be used as interface identifier by IPv6 */
1493 dev->addr_assign_type = NET_ADDR_RANDOM;
1494 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
1497
1498/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001499 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * @dev: virtual device associated with tunnel
1501 **/
1502
Eric Dumazet8560f222010-09-28 03:23:34 +00001503static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001504ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Patrick McHardy2941a482006-01-08 22:05:26 -08001506 struct ip6_tnl *t = netdev_priv(dev);
John Stultz827da442013-10-07 15:51:58 -07001507 int i;
Eric Dumazet8560f222010-09-28 03:23:34 +00001508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001510 t->net = dev_net(dev);
Li RongQing8f849852014-01-04 13:57:59 +08001511 dev->tstats = alloc_percpu(struct pcpu_sw_netstats);
Eric Dumazet8560f222010-09-28 03:23:34 +00001512 if (!dev->tstats)
1513 return -ENOMEM;
John Stultz827da442013-10-07 15:51:58 -07001514
1515 for_each_possible_cpu(i) {
Li RongQing8f849852014-01-04 13:57:59 +08001516 struct pcpu_sw_netstats *ip6_tnl_stats;
John Stultz827da442013-10-07 15:51:58 -07001517 ip6_tnl_stats = per_cpu_ptr(dev->tstats, i);
1518 u64_stats_init(&ip6_tnl_stats->syncp);
1519 }
Eric Dumazet8560f222010-09-28 03:23:34 +00001520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
1523/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001524 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 * @dev: virtual device associated with tunnel
1526 **/
1527
Eric Dumazet8560f222010-09-28 03:23:34 +00001528static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
Patrick McHardy2941a482006-01-08 22:05:26 -08001530 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001531 int err = ip6_tnl_dev_init_gen(dev);
1532
1533 if (err)
1534 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001535 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001540 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 * @dev: fallback device
1542 *
1543 * Return: 0
1544 **/
1545
Eric Dumazet8560f222010-09-28 03:23:34 +00001546static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Patrick McHardy2941a482006-01-08 22:05:26 -08001548 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001549 struct net *net = dev_net(dev);
1550 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001551 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001552
Eric Dumazet8560f222010-09-28 03:23:34 +00001553 if (err)
1554 return err;
1555
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001556 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001558
1559 ip6_tnl_link_config(t);
1560
Eric Dumazetcf778b02012-01-12 04:41:32 +00001561 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001565static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1566{
1567 u8 proto;
1568
1569 if (!data)
1570 return 0;
1571
1572 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1573 if (proto != IPPROTO_IPV6 &&
1574 proto != IPPROTO_IPIP &&
1575 proto != 0)
1576 return -EINVAL;
1577
1578 return 0;
1579}
1580
1581static void ip6_tnl_netlink_parms(struct nlattr *data[],
1582 struct __ip6_tnl_parm *parms)
1583{
1584 memset(parms, 0, sizeof(*parms));
1585
1586 if (!data)
1587 return;
1588
1589 if (data[IFLA_IPTUN_LINK])
1590 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1591
1592 if (data[IFLA_IPTUN_LOCAL])
1593 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1594 sizeof(struct in6_addr));
1595
1596 if (data[IFLA_IPTUN_REMOTE])
1597 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1598 sizeof(struct in6_addr));
1599
1600 if (data[IFLA_IPTUN_TTL])
1601 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1602
1603 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1604 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1605
1606 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001607 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001608
1609 if (data[IFLA_IPTUN_FLAGS])
1610 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1611
1612 if (data[IFLA_IPTUN_PROTO])
1613 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1614}
1615
1616static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1617 struct nlattr *tb[], struct nlattr *data[])
1618{
1619 struct net *net = dev_net(dev);
1620 struct ip6_tnl *nt;
1621
1622 nt = netdev_priv(dev);
1623 ip6_tnl_netlink_parms(data, &nt->parms);
1624
1625 if (ip6_tnl_locate(net, &nt->parms, 0))
1626 return -EEXIST;
1627
1628 return ip6_tnl_create2(dev);
1629}
1630
1631static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1632 struct nlattr *data[])
1633{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001634 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001635 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001636 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001637 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1638
1639 if (dev == ip6n->fb_tnl_dev)
1640 return -EINVAL;
1641
1642 ip6_tnl_netlink_parms(data, &p);
1643
1644 t = ip6_tnl_locate(net, &p, 0);
1645
1646 if (t) {
1647 if (t->dev != dev)
1648 return -EEXIST;
1649 } else
1650 t = netdev_priv(dev);
1651
1652 return ip6_tnl_update(t, &p);
1653}
1654
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001655static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1656{
1657 struct net *net = dev_net(dev);
1658 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1659
1660 if (dev != ip6n->fb_tnl_dev)
1661 unregister_netdevice_queue(dev, head);
1662}
1663
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001664static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001665{
1666 return
1667 /* IFLA_IPTUN_LINK */
1668 nla_total_size(4) +
1669 /* IFLA_IPTUN_LOCAL */
1670 nla_total_size(sizeof(struct in6_addr)) +
1671 /* IFLA_IPTUN_REMOTE */
1672 nla_total_size(sizeof(struct in6_addr)) +
1673 /* IFLA_IPTUN_TTL */
1674 nla_total_size(1) +
1675 /* IFLA_IPTUN_ENCAP_LIMIT */
1676 nla_total_size(1) +
1677 /* IFLA_IPTUN_FLOWINFO */
1678 nla_total_size(4) +
1679 /* IFLA_IPTUN_FLAGS */
1680 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001681 /* IFLA_IPTUN_PROTO */
1682 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001683 0;
1684}
1685
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001686static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001687{
1688 struct ip6_tnl *tunnel = netdev_priv(dev);
1689 struct __ip6_tnl_parm *parm = &tunnel->parms;
1690
1691 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1692 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001693 &parm->laddr) ||
Ding Zhi0d2ede92013-09-16 11:31:15 +02001694 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1695 &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001696 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1697 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1698 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001699 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1700 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001701 goto nla_put_failure;
1702 return 0;
1703
1704nla_put_failure:
1705 return -EMSGSIZE;
1706}
1707
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001708static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1709 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1710 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1711 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1712 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1713 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1714 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1715 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1716 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1717};
1718
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001719static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1720 .kind = "ip6tnl",
1721 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001722 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001723 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001724 .setup = ip6_tnl_dev_setup,
1725 .validate = ip6_tnl_validate,
1726 .newlink = ip6_tnl_newlink,
1727 .changelink = ip6_tnl_changelink,
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001728 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001729 .get_size = ip6_tnl_get_size,
1730 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001731};
1732
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001733static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001734 .handler = ip4ip6_rcv,
1735 .err_handler = ip4ip6_err,
1736 .priority = 1,
1737};
1738
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001739static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001740 .handler = ip6ip6_rcv,
1741 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001742 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743};
1744
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001745static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001746{
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001747 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001748 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001749 int h;
1750 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001751 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001752
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001753 for_each_netdev_safe(net, dev, aux)
1754 if (dev->rtnl_link_ops == &ip6_link_ops)
1755 unregister_netdevice_queue(dev, &list);
1756
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001757 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001758 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001759 while (t != NULL) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001760 /* If dev is in the same netns, it has already
1761 * been added to the list by the previous loop.
1762 */
1763 if (!net_eq(dev_net(t->dev), net))
1764 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001765 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001766 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001767 }
1768
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001769 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001770}
1771
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001772static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001773{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001774 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001775 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001776 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001777
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001778 ip6n->tnls[0] = ip6n->tnls_wc;
1779 ip6n->tnls[1] = ip6n->tnls_r_l;
1780
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001781 err = -ENOMEM;
1782 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1783 ip6_tnl_dev_setup);
1784
1785 if (!ip6n->fb_tnl_dev)
1786 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001787 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtelbb814092013-10-01 18:05:00 +02001788 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001789 /* FB netdevice is special: we have one, and only one per netns.
1790 * Allowing to move it to another netns is clearly unsafe.
1791 */
1792 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001793
Eric Dumazet8560f222010-09-28 03:23:34 +00001794 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1795 if (err < 0)
1796 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001797
1798 err = register_netdev(ip6n->fb_tnl_dev);
1799 if (err < 0)
1800 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001801
1802 t = netdev_priv(ip6n->fb_tnl_dev);
1803
1804 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001805 return 0;
1806
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001807err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001808 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001809err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001810 return err;
1811}
1812
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001813static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001814{
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001815 rtnl_lock();
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001816 ip6_tnl_destroy_tunnels(net);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001817 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001818}
1819
1820static struct pernet_operations ip6_tnl_net_ops = {
1821 .init = ip6_tnl_init_net,
1822 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001823 .id = &ip6_tnl_net_id,
1824 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001825};
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827/**
1828 * ip6_tunnel_init - register protocol and reserve needed resources
1829 *
1830 * Return: 0 on success
1831 **/
1832
1833static int __init ip6_tunnel_init(void)
1834{
1835 int err;
1836
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001837 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001838 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001839 goto out_pernet;
1840
1841 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1842 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001843 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001844 goto out_ip4ip6;
1845 }
1846
1847 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1848 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001849 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001850 goto out_ip6ip6;
1851 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001852 err = rtnl_link_register(&ip6_link_ops);
1853 if (err < 0)
1854 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001857
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001858rtnl_link_failed:
1859 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001860out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001861 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001862out_ip4ip6:
1863 unregister_pernet_device(&ip6_tnl_net_ops);
1864out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 return err;
1866}
1867
1868/**
1869 * ip6_tunnel_cleanup - free resources and unregister protocol
1870 **/
1871
1872static void __exit ip6_tunnel_cleanup(void)
1873{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001874 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001875 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001876 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001877
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001878 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001879 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001881 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
1884module_init(ip6_tunnel_init);
1885module_exit(ip6_tunnel_cleanup);