blob: 9cb94cfa0ae71d05a5bd924e58eb225e21dbb62d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000275
276 err = register_netdevice(dev);
277 if (err < 0)
278 goto out;
279
280 strcpy(t->parms.name, dev->name);
281 dev->rtnl_link_ops = &ip6_link_ops;
282
283 dev_hold(dev);
284 ip6_tnl_link(ip6n, t);
285 return 0;
286
287out:
288 return err;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000292 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * @p: tunnel parameters
294 * @pt: pointer to new tunnel
295 *
296 * Description:
297 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900298 *
299 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800300 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 **/
302
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000303static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct net_device *dev;
306 struct ip6_tnl *t;
307 char name[IFNAMSIZ];
308 int err;
309
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800310 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800312 else
313 sprintf(name, "ip6tnl%%d");
314
Tom Gundersenc835a672014-07-14 16:37:24 +0200315 dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN,
316 ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800318 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700320 dev_net_set(dev, net);
321
Patrick McHardy2941a482006-01-08 22:05:26 -0800322 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 t->parms = *p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200324 t->net = dev_net(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000325 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000326 if (err < 0)
327 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Ville Nuorvala567131a2006-11-24 17:05:41 -0800329 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800330
331failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000332 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800333failed:
334 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900338 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900339 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * @create: != 0 if allowed to create new tunnel if no match found
341 *
342 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900343 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * based on @parms. If this is unsuccessful, but @create is set a new
345 * tunnel device is created and registered for use.
346 *
347 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800348 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 **/
350
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700351static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000352 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000354 const struct in6_addr *remote = &p->raddr;
355 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000356 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700358 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Eric Dumazet94767632010-09-15 20:25:34 +0000360 for (tp = ip6_tnl_bucket(ip6n, p);
361 (t = rtnl_dereference(*tp)) != NULL;
362 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200364 ipv6_addr_equal(remote, &t->parms.raddr)) {
365 if (create)
366 return NULL;
367
Ville Nuorvala567131a2006-11-24 17:05:41 -0800368 return t;
Steffen Klassert2b0bb012014-09-22 10:07:24 +0200369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800372 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700373 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900377 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900379 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900381 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 **/
383
384static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900385ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Patrick McHardy2941a482006-01-08 22:05:26 -0800387 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200388 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700389 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Eric Dumazet94767632010-09-15 20:25:34 +0000391 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000392 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000393 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700394 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ip6_tnl_dst_reset(t);
396 dev_put(dev);
397}
398
399/**
400 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
401 * @skb: received socket buffer
402 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900403 * Return:
404 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * else index to encapsulation limit
406 **/
407
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000408__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000410 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 __u8 nexthdr = ipv6h->nexthdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100412 __u16 off = sizeof(*ipv6h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
415 __u16 optlen = 0;
416 struct ipv6_opt_hdr *hdr;
Ian Morris67ba4152014-08-24 21:53:10 +0100417 if (raw + off + sizeof(*hdr) > skb->data &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
419 break;
420
421 hdr = (struct ipv6_opt_hdr *) (raw + off);
422 if (nexthdr == NEXTHDR_FRAGMENT) {
423 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
424 if (frag_hdr->frag_off)
425 break;
426 optlen = 8;
427 } else if (nexthdr == NEXTHDR_AUTH) {
428 optlen = (hdr->hdrlen + 2) << 2;
429 } else {
430 optlen = ipv6_optlen(hdr);
431 }
432 if (nexthdr == NEXTHDR_DEST) {
433 __u16 i = off + 2;
434 while (1) {
435 struct ipv6_tlv_tnl_enc_lim *tel;
436
437 /* No more room for encapsulation limit */
438 if (i + sizeof (*tel) > off + optlen)
439 break;
440
441 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
442 /* return index of option if found and valid */
443 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
444 tel->length == 1)
445 return i;
446 /* else jump to next option */
447 if (tel->type)
448 i += tel->length + 2;
449 else
450 i++;
451 }
452 }
453 nexthdr = hdr->nexthdr;
454 off += optlen;
455 }
456 return 0;
457}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000458EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900461 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 *
463 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900464 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * to the specifications in RFC 2473.
466 **/
467
Herbert Xud2acc342006-03-28 01:12:13 -0800468static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900469ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700470 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000472 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct ip6_tnl *t;
474 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700475 u8 rel_type = ICMPV6_DEST_UNREACH;
476 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 __u32 rel_info = 0;
478 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800479 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900481 /* If the packet doesn't contain the original IPv6 header we are
482 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 processing of the error. */
484
Eric Dumazet2922bc82009-10-23 06:34:34 +0000485 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700486 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700487 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto out;
489
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900490 if (t->parms.proto != ipproto && t->parms.proto != 0)
491 goto out;
492
Herbert Xud2acc342006-03-28 01:12:13 -0800493 err = 0;
494
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900495 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 __u32 teli;
497 struct ipv6_tlv_tnl_enc_lim *tel;
498 __u32 mtu;
499 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000500 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
501 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 rel_msg = 1;
503 break;
504 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900505 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000506 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
507 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 rel_msg = 1;
509 }
510 break;
511 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800512 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900513 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000514 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Al Viro704eae12007-07-26 17:33:29 +0100516 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
518 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000519 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
520 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 rel_msg = 1;
522 }
Joe Perchese87cc472012-05-13 21:56:26 +0000523 } else {
524 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
525 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 break;
528 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100529 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (mtu < IPV6_MIN_MTU)
531 mtu = IPV6_MIN_MTU;
532 t->dev->mtu = mtu;
533
Ian Morris67ba4152014-08-24 21:53:10 +0100534 if ((len = sizeof(*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 rel_type = ICMPV6_PKT_TOOBIG;
536 rel_code = 0;
537 rel_info = mtu;
538 rel_msg = 1;
539 }
540 break;
541 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900542
543 *type = rel_type;
544 *code = rel_code;
545 *info = rel_info;
546 *msg = rel_msg;
547
548out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000549 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900550 return err;
551}
552
553static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900554ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700555 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900556{
557 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700558 u8 rel_type = type;
559 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100560 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900561 int err;
562 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000563 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900564 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700565 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900566
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900567 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
568 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900569 if (err < 0)
570 return err;
571
572 if (rel_msg == 0)
573 return 0;
574
575 switch (rel_type) {
576 case ICMPV6_DEST_UNREACH:
577 if (rel_code != ICMPV6_ADDR_UNREACH)
578 return 0;
579 rel_type = ICMP_DEST_UNREACH;
580 rel_code = ICMP_HOST_UNREACH;
581 break;
582 case ICMPV6_PKT_TOOBIG:
583 if (rel_code != 0)
584 return 0;
585 rel_type = ICMP_DEST_UNREACH;
586 rel_code = ICMP_FRAG_NEEDED;
587 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700588 case NDISC_REDIRECT:
589 rel_type = ICMP_REDIRECT;
590 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900591 default:
592 return 0;
593 }
594
595 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
596 return 0;
597
598 skb2 = skb_clone(skb, GFP_ATOMIC);
599 if (!skb2)
600 return 0;
601
Eric Dumazetadf30902009-06-02 05:19:30 +0000602 skb_dst_drop(skb2);
603
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900604 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700605 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700606 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900607
608 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700609 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500610 eiph->saddr, 0,
611 0, 0,
612 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800613 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900614 goto out;
615
Changli Gaod8d1f302010-06-10 23:31:35 -0700616 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900617
618 /* route "incoming" packet */
619 if (rt->rt_flags & RTCF_LOCAL) {
620 ip_rt_put(rt);
621 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700622 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500623 eiph->daddr, eiph->saddr,
624 0, 0,
625 IPPROTO_IPIP,
626 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800627 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700628 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800629 if (!IS_ERR(rt))
630 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900631 goto out;
632 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800633 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900634 } else {
635 ip_rt_put(rt);
636 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
637 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000638 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900639 goto out;
640 }
641
642 /* change mtu on this route */
643 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000644 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900645 goto out;
646
David S. Miller6700c272012-07-17 03:29:28 -0700647 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900648 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700649 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700650 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900651
Al Viro704eae12007-07-26 17:33:29 +0100652 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900653
654out:
655 kfree_skb(skb2);
656 return 0;
657}
658
659static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900660ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700661 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900662{
663 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700664 u8 rel_type = type;
665 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100666 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900667 int err;
668
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900669 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
670 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900671 if (err < 0)
672 return err;
673
674 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 struct rt6_info *rt;
676 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900679 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Eric Dumazetadf30902009-06-02 05:19:30 +0000681 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700683 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700686 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
687 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
David S. Millerd1918542011-12-28 20:19:20 -0500689 if (rt && rt->dst.dev)
690 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000692 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Amerigo Wang94e187c2012-10-29 00:13:19 +0000694 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 kfree_skb(skb2);
697 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900698
699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000702static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
703 const struct ipv6hdr *ipv6h,
704 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900705{
706 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
707
708 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700709 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900710
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000711 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900712}
713
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000714static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
715 const struct ipv6hdr *ipv6h,
716 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900718 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800719 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000721 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900723
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000724__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000725 const struct in6_addr *laddr,
726 const struct in6_addr *raddr)
727{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000728 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000729 int ltype = ipv6_addr_type(laddr);
730 int rtype = ipv6_addr_type(raddr);
731 __u32 flags = 0;
732
733 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
734 flags = IP6_TNL_F_CAP_PER_PACKET;
735 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
736 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
737 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
738 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
739 if (ltype&IPV6_ADDR_UNICAST)
740 flags |= IP6_TNL_F_CAP_XMIT;
741 if (rtype&IPV6_ADDR_UNICAST)
742 flags |= IP6_TNL_F_CAP_RCV;
743 }
744 return flags;
745}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000746EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000747
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100748/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000749int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000750 const struct in6_addr *laddr,
751 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800752{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000753 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800754 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200755 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800756
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000757 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
758 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
759 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900760 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800761
762 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100763 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800764
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000765 if ((ipv6_addr_is_multicast(laddr) ||
766 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
767 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800768 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800769 }
770 return ret;
771}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000772EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900775 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900777 * @protocol: ethernet protocol ID
778 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 *
780 * Return: 0
781 **/
782
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900783static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900784 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000785 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
786 const struct ipv6hdr *ipv6h,
787 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000790 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000791 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Eric Dumazet2922bc82009-10-23 06:34:34 +0000793 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700795 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700796 &ipv6h->daddr)) != NULL) {
Li RongQing8f849852014-01-04 13:57:59 +0800797 struct pcpu_sw_netstats *tstats;
Eric Dumazet8560f222010-09-28 03:23:34 +0000798
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900799 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000800 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900801 goto discard;
802 }
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000805 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700806 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
808
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000809 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700810 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000811 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 goto discard;
813 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700814 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700815 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900816 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700818
Nicolas Dichtelea231922013-09-02 15:34:58 +0200819 __skb_tunnel_rx(skb, t->dev, t->net);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000820
821 err = dscp_ecn_decapsulate(t, ipv6h, skb);
822 if (unlikely(err)) {
823 if (log_ecn_error)
824 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
825 &ipv6h->saddr,
826 ipv6_get_dsfield(ipv6h));
827 if (err > 1) {
828 ++t->dev->stats.rx_frame_errors;
829 ++t->dev->stats.rx_errors;
830 rcu_read_unlock();
831 goto discard;
832 }
833 }
834
Eric Dumazet8560f222010-09-28 03:23:34 +0000835 tstats = this_cpu_ptr(t->dev->tstats);
Li RongQingabb60132014-01-02 13:20:12 +0800836 u64_stats_update_begin(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000837 tstats->rx_packets++;
838 tstats->rx_bytes += skb->len;
Li RongQingabb60132014-01-02 13:20:12 +0800839 u64_stats_update_end(&tstats->syncp);
Eric Dumazet8560f222010-09-28 03:23:34 +0000840
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000841 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000842
Eric Dumazet2922bc82009-10-23 06:34:34 +0000843 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
845 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000846 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700848
849discard:
850 kfree_skb(skb);
851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900854static int ip4ip6_rcv(struct sk_buff *skb)
855{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900856 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
857 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900858}
859
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900860static int ip6ip6_rcv(struct sk_buff *skb)
861{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900862 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
863 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900864}
865
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800866struct ipv6_tel_txoption {
867 struct ipv6_txoptions ops;
868 __u8 dst_opt[8];
869};
870
871static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800873 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800875 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
876 opt->dst_opt[3] = 1;
877 opt->dst_opt[4] = encap_limit;
878 opt->dst_opt[5] = IPV6_TLV_PADN;
879 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800881 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
882 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900886 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900888 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 *
890 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900891 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 * doesn't match source of incoming packet.
893 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900894 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 * 1 if conflict,
896 * 0 else
897 **/
898
Eric Dumazet92113bf2012-05-18 08:14:11 +0200899static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000900ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
903}
904
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000905int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800906{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000907 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800908 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200909 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800910
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900911 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800912 struct net_device *ldev = NULL;
913
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100914 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800915 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100916 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800917
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700918 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000919 pr_warn("%s xmit: Local address not yet configured!\n",
920 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800921 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700922 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000923 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
924 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800925 else
926 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100927 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800928 }
929 return ret;
930}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000931EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900934 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900936 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900937 * @dsfield: dscp code for outer header
938 * @fl: flow of tunneled packet
939 * @encap_limit: encapsulation limit
940 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
942 * Description:
943 * Build new header and do some sanity checks on the packet before sending
944 * it.
945 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900946 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900947 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900948 * -1 fail
949 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 **/
951
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900952static int ip6_tnl_xmit2(struct sk_buff *skb,
953 struct net_device *dev,
954 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500955 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900956 int encap_limit,
957 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Patrick McHardy2941a482006-01-08 22:05:26 -0800959 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200960 struct net *net = t->net;
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700961 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700962 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800963 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400964 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 struct net_device *tdev;
966 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700967 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900969 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400971 if (!fl6->flowi6_mark)
972 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000973 if (!dst) {
974 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Eric Dumazet89b02122011-07-28 04:32:25 +0000976 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700977 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000978 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
979 if (IS_ERR(ndst)) {
980 err = PTR_ERR(ndst);
981 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800982 goto tx_err_link_failure;
983 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000984 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 tdev = dst->dev;
988
989 if (tdev == dev) {
990 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000991 net_warn_ratelimited("%s: Local routing loop detected!\n",
992 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 goto tx_err_dst_release;
994 }
Ian Morris67ba4152014-08-24 21:53:10 +0100995 mtu = dst_mtu(dst) - sizeof(*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800996 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 max_headroom += 8;
998 mtu -= 8;
999 }
1000 if (mtu < IPV6_MIN_MTU)
1001 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +00001002 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -07001003 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001005 *pmtu = mtu;
1006 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 goto tx_err_dst_release;
1008 }
1009
Nicolas Dichtel963a88b2013-09-02 15:34:57 +02001010 skb_scrub_packet(skb, !net_eq(t->net, dev_net(dev)));
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /*
1013 * Okay, now see if we can stuff it in the buffer as-is.
1014 */
1015 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001016
Patrick McHardycfbba492007-07-09 15:33:40 -07001017 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1018 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1022 goto tx_err_dst_release;
1023
1024 if (skb->sk)
1025 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001026 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 skb = new_skb;
1028 }
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001029 if (fl6->flowi6_mark) {
1030 skb_dst_set(skb, dst);
1031 ndst = NULL;
1032 } else {
1033 skb_dst_set_noref(skb, dst);
1034 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001035 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
David S. Miller4c9483b2011-03-12 16:22:43 -05001037 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001038 if (encap_limit >= 0) {
1039 init_tel_txopt(&opt, encap_limit);
1040 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1041 }
Hannes Frederic Sowa3d483052013-08-18 13:46:52 +02001042
1043 if (likely(!skb->encapsulation)) {
1044 skb_reset_inner_headers(skb);
1045 skb->encapsulation = 1;
1046 }
1047
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001048 skb_push(skb, sizeof(struct ipv6hdr));
1049 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001050 ipv6h = ipv6_hdr(skb);
Tom Herbertcb1ce2e2014-07-01 21:33:10 -07001051 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield),
1052 ip6_make_flowlabel(net, skb, fl6->flowlabel, false));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 ipv6h->hop_limit = t->parms.hop_limit;
1054 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001055 ipv6h->saddr = fl6->saddr;
1056 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001057 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001058 if (ndst)
1059 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return 0;
1061tx_err_link_failure:
1062 stats->tx_carrier_errors++;
1063 dst_link_failure(skb);
1064tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001065 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001066 return err;
1067}
1068
1069static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001070ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1071{
1072 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001073 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001074 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001075 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001076 __u8 dsfield;
1077 __u32 mtu;
1078 int err;
1079
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001080 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1081 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001082 return -1;
1083
1084 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1085 encap_limit = t->parms.encap_limit;
1086
Ian Morris67ba4152014-08-24 21:53:10 +01001087 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
David S. Miller4c9483b2011-03-12 16:22:43 -05001088 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001089
1090 dsfield = ipv4_get_dsfield(iph);
1091
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001092 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001093 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001094 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001095 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1096 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001097
David S. Miller4c9483b2011-03-12 16:22:43 -05001098 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001099 if (err != 0) {
1100 /* XXX: send ICMP error even if DF is not set. */
1101 if (err == -EMSGSIZE)
1102 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1103 htonl(mtu));
1104 return -1;
1105 }
1106
1107 return 0;
1108}
1109
1110static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001111ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1112{
1113 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001114 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001115 int encap_limit = -1;
1116 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001117 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001118 __u8 dsfield;
1119 __u32 mtu;
1120 int err;
1121
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001122 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1123 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001124 return -1;
1125
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001126 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001127 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001128 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001129 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001130 if (tel->encap_limit == 0) {
1131 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001132 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001133 return -1;
1134 }
1135 encap_limit = tel->encap_limit - 1;
1136 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1137 encap_limit = t->parms.encap_limit;
1138
Ian Morris67ba4152014-08-24 21:53:10 +01001139 memcpy(&fl6, &t->fl.u.ip6, sizeof(fl6));
David S. Miller4c9483b2011-03-12 16:22:43 -05001140 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001141
1142 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001143 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001144 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001145 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
Florent Fourcot3308de22013-12-08 15:47:00 +01001146 fl6.flowlabel |= ip6_flowlabel(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001147 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1148 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001149
David S. Miller4c9483b2011-03-12 16:22:43 -05001150 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001151 if (err != 0) {
1152 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001153 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001154 return -1;
1155 }
1156
1157 return 0;
1158}
1159
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001160static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001161ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1162{
1163 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001164 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001165 int ret;
1166
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001167 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001168 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001169 ret = ip4ip6_tnl_xmit(skb, dev);
1170 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001171 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001172 ret = ip6ip6_tnl_xmit(skb, dev);
1173 break;
1174 default:
1175 goto tx_err;
1176 }
1177
1178 if (ret < 0)
1179 goto tx_err;
1180
Patrick McHardy6ed10652009-06-23 06:03:08 +00001181 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183tx_err:
1184 stats->tx_errors++;
1185 stats->tx_dropped++;
1186 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001187 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001190static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
1192 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001193 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001194 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001196 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1197 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001200 fl6->saddr = p->laddr;
1201 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001202 fl6->flowi6_oif = p->link;
1203 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001206 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001208 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001210 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1211 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1214 dev->flags |= IFF_POINTOPOINT;
1215 else
1216 dev->flags &= ~IFF_POINTOPOINT;
1217
1218 dev->iflink = p->link;
1219
1220 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001221 int strict = (ipv6_addr_type(&p->raddr) &
1222 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1223
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001224 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001225 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001226 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (rt == NULL)
1229 return;
1230
David S. Millerd1918542011-12-28 20:19:20 -05001231 if (rt->dst.dev) {
1232 dev->hard_header_len = rt->dst.dev->hard_header_len +
Ian Morris67ba4152014-08-24 21:53:10 +01001233 sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Ian Morris67ba4152014-08-24 21:53:10 +01001235 dev->mtu = rt->dst.dev->mtu - sizeof(struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001236 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001237 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 if (dev->mtu < IPV6_MIN_MTU)
1240 dev->mtu = IPV6_MIN_MTU;
1241 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001242 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244}
1245
1246/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001247 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 * @t: tunnel to be changed
1249 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 *
1251 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001252 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 **/
1254
1255static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001256ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001258 t->parms.laddr = p->laddr;
1259 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 t->parms.flags = p->flags;
1261 t->parms.hop_limit = p->hop_limit;
1262 t->parms.encap_limit = p->encap_limit;
1263 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001264 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001265 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001266 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001267 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return 0;
1269}
1270
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001271static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1272{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001273 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001274 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1275 int err;
1276
1277 ip6_tnl_unlink(ip6n, t);
1278 synchronize_net();
1279 err = ip6_tnl_change(t, p);
1280 ip6_tnl_link(ip6n, t);
1281 netdev_state_change(t->dev);
1282 return err;
1283}
1284
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001285static void
1286ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1287{
1288 p->laddr = u->laddr;
1289 p->raddr = u->raddr;
1290 p->flags = u->flags;
1291 p->hop_limit = u->hop_limit;
1292 p->encap_limit = u->encap_limit;
1293 p->flowinfo = u->flowinfo;
1294 p->link = u->link;
1295 p->proto = u->proto;
1296 memcpy(p->name, u->name, sizeof(u->name));
1297}
1298
1299static void
1300ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1301{
1302 u->laddr = p->laddr;
1303 u->raddr = p->raddr;
1304 u->flags = p->flags;
1305 u->hop_limit = p->hop_limit;
1306 u->encap_limit = p->encap_limit;
1307 u->flowinfo = p->flowinfo;
1308 u->link = p->link;
1309 u->proto = p->proto;
1310 memcpy(u->name, p->name, sizeof(u->name));
1311}
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001314 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 * @dev: virtual device associated with tunnel
1316 * @ifr: parameters passed from userspace
1317 * @cmd: command to be performed
1318 *
1319 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001320 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001321 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 *
1323 * The possible commands are the following:
1324 * %SIOCGETTUNNEL: get tunnel parameters for device
1325 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1326 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1327 * %SIOCDELTUNNEL: delete tunnel
1328 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001329 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 * initialization, can be used for creating other tunnel devices.
1331 *
1332 * Return:
1333 * 0 on success,
1334 * %-EFAULT if unable to copy data to or from userspace,
1335 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1336 * %-EINVAL if passed tunnel parameters are invalid,
1337 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1338 * %-ENODEV if attempting to change or delete a nonexisting device
1339 **/
1340
1341static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001342ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001346 struct __ip6_tnl_parm p1;
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001347 struct ip6_tnl *t = netdev_priv(dev);
1348 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001349 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 switch (cmd) {
1352 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001353 if (dev == ip6n->fb_tnl_dev) {
Ian Morris67ba4152014-08-24 21:53:10 +01001354 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 err = -EFAULT;
1356 break;
1357 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001358 ip6_tnl_parm_from_user(&p1, &p);
1359 t = ip6_tnl_locate(net, &p1, 0);
Nicolas Dichtel74462f02014-04-16 11:19:34 +02001360 if (t == NULL)
1361 t = netdev_priv(dev);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001362 } else {
1363 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001364 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001365 ip6_tnl_parm_to_user(&p, &t->parms);
Ian Morris67ba4152014-08-24 21:53:10 +01001366 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 err = -EFAULT;
1368 }
1369 break;
1370 case SIOCADDTUNNEL:
1371 case SIOCCHGTUNNEL:
1372 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001373 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001375 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001376 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001378 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001379 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1380 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001382 ip6_tnl_parm_from_user(&p1, &p);
1383 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001384 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001385 if (t != NULL) {
1386 if (t->dev != dev) {
1387 err = -EEXIST;
1388 break;
1389 }
1390 } else
1391 t = netdev_priv(dev);
1392
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001393 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001395 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001397 ip6_tnl_parm_to_user(&p, &t->parms);
1398 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001399 err = -EFAULT;
1400
1401 } else
1402 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 break;
1404 case SIOCDELTUNNEL:
1405 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001406 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 break;
1408
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001409 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001410 err = -EFAULT;
Ian Morris67ba4152014-08-24 21:53:10 +01001411 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001413 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001414 ip6_tnl_parm_from_user(&p1, &p);
1415 t = ip6_tnl_locate(net, &p1, 0);
1416 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001418 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001419 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001421 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001423 err = 0;
1424 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 break;
1426 default:
1427 err = -EINVAL;
1428 }
1429 return err;
1430}
1431
1432/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001433 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 * @dev: virtual device associated with tunnel
1435 * @new_mtu: the new mtu
1436 *
1437 * Return:
1438 * 0 on success,
1439 * %-EINVAL if mtu too small
1440 **/
1441
1442static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001443ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001445 struct ip6_tnl *tnl = netdev_priv(dev);
1446
1447 if (tnl->parms.proto == IPPROTO_IPIP) {
1448 if (new_mtu < 68)
1449 return -EINVAL;
1450 } else {
1451 if (new_mtu < IPV6_MIN_MTU)
1452 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
Oussama Ghorbel582442d2013-10-03 14:49:26 +01001454 if (new_mtu > 0xFFF8 - dev->hard_header_len)
1455 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 dev->mtu = new_mtu;
1457 return 0;
1458}
1459
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001460
1461static const struct net_device_ops ip6_tnl_netdev_ops = {
Steffen Klassert6c6151d2014-11-03 09:19:27 +01001462 .ndo_init = ip6_tnl_dev_init,
Eric Dumazet8560f222010-09-28 03:23:34 +00001463 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001464 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001465 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001466 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001467 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001468};
1469
Eric Dumazet8560f222010-09-28 03:23:34 +00001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001472 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 * @dev: virtual device associated with tunnel
1474 *
1475 * Description:
1476 * Initialize function pointers and device parameters
1477 **/
1478
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001479static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
Anders Franzen381601e2010-11-24 05:47:18 +00001481 struct ip6_tnl *t;
1482
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001483 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001484 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 dev->type = ARPHRD_TUNNEL6;
Ian Morris67ba4152014-08-24 21:53:10 +01001487 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct ipv6hdr);
1488 dev->mtu = ETH_DATA_LEN - sizeof(struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001489 t = netdev_priv(dev);
1490 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
Ian Morris67ba4152014-08-24 21:53:10 +01001491 dev->mtu -= 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 dev->flags |= IFF_NOARP;
1493 dev->addr_len = sizeof(struct in6_addr);
Eric Dumazet02875872014-10-05 18:38:35 -07001494 netif_keep_dst(dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001495 /* This perm addr will be used as interface identifier by IPv6 */
1496 dev->addr_assign_type = NET_ADDR_RANDOM;
1497 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500
1501/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001502 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 * @dev: virtual device associated with tunnel
1504 **/
1505
Eric Dumazet8560f222010-09-28 03:23:34 +00001506static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001507ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Patrick McHardy2941a482006-01-08 22:05:26 -08001509 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001512 t->net = dev_net(dev);
WANG Cong1c213bd2014-02-13 11:46:28 -08001513 dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
Eric Dumazet8560f222010-09-28 03:23:34 +00001514 if (!dev->tstats)
1515 return -ENOMEM;
1516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518
1519/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001520 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 * @dev: virtual device associated with tunnel
1522 **/
1523
Eric Dumazet8560f222010-09-28 03:23:34 +00001524static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
Patrick McHardy2941a482006-01-08 22:05:26 -08001526 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001527 int err = ip6_tnl_dev_init_gen(dev);
1528
1529 if (err)
1530 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001531 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
1535/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001536 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 * @dev: fallback device
1538 *
1539 * Return: 0
1540 **/
1541
Eric Dumazet8560f222010-09-28 03:23:34 +00001542static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Patrick McHardy2941a482006-01-08 22:05:26 -08001544 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001545 struct net *net = dev_net(dev);
1546 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001547
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001548 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001550
Eric Dumazetcf778b02012-01-12 04:41:32 +00001551 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001555static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1556{
1557 u8 proto;
1558
Susant Sahanic8965932014-05-10 00:11:32 +05301559 if (!data || !data[IFLA_IPTUN_PROTO])
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001560 return 0;
1561
1562 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1563 if (proto != IPPROTO_IPV6 &&
1564 proto != IPPROTO_IPIP &&
1565 proto != 0)
1566 return -EINVAL;
1567
1568 return 0;
1569}
1570
1571static void ip6_tnl_netlink_parms(struct nlattr *data[],
1572 struct __ip6_tnl_parm *parms)
1573{
1574 memset(parms, 0, sizeof(*parms));
1575
1576 if (!data)
1577 return;
1578
1579 if (data[IFLA_IPTUN_LINK])
1580 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1581
1582 if (data[IFLA_IPTUN_LOCAL])
1583 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1584 sizeof(struct in6_addr));
1585
1586 if (data[IFLA_IPTUN_REMOTE])
1587 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1588 sizeof(struct in6_addr));
1589
1590 if (data[IFLA_IPTUN_TTL])
1591 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1592
1593 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1594 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1595
1596 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001597 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001598
1599 if (data[IFLA_IPTUN_FLAGS])
1600 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1601
1602 if (data[IFLA_IPTUN_PROTO])
1603 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1604}
1605
1606static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1607 struct nlattr *tb[], struct nlattr *data[])
1608{
1609 struct net *net = dev_net(dev);
1610 struct ip6_tnl *nt;
1611
1612 nt = netdev_priv(dev);
1613 ip6_tnl_netlink_parms(data, &nt->parms);
1614
1615 if (ip6_tnl_locate(net, &nt->parms, 0))
1616 return -EEXIST;
1617
1618 return ip6_tnl_create2(dev);
1619}
1620
1621static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1622 struct nlattr *data[])
1623{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001624 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001625 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001626 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001627 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1628
1629 if (dev == ip6n->fb_tnl_dev)
1630 return -EINVAL;
1631
1632 ip6_tnl_netlink_parms(data, &p);
1633
1634 t = ip6_tnl_locate(net, &p, 0);
1635
1636 if (t) {
1637 if (t->dev != dev)
1638 return -EEXIST;
1639 } else
1640 t = netdev_priv(dev);
1641
1642 return ip6_tnl_update(t, &p);
1643}
1644
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001645static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1646{
1647 struct net *net = dev_net(dev);
1648 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1649
1650 if (dev != ip6n->fb_tnl_dev)
1651 unregister_netdevice_queue(dev, head);
1652}
1653
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001654static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001655{
1656 return
1657 /* IFLA_IPTUN_LINK */
1658 nla_total_size(4) +
1659 /* IFLA_IPTUN_LOCAL */
1660 nla_total_size(sizeof(struct in6_addr)) +
1661 /* IFLA_IPTUN_REMOTE */
1662 nla_total_size(sizeof(struct in6_addr)) +
1663 /* IFLA_IPTUN_TTL */
1664 nla_total_size(1) +
1665 /* IFLA_IPTUN_ENCAP_LIMIT */
1666 nla_total_size(1) +
1667 /* IFLA_IPTUN_FLOWINFO */
1668 nla_total_size(4) +
1669 /* IFLA_IPTUN_FLAGS */
1670 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001671 /* IFLA_IPTUN_PROTO */
1672 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001673 0;
1674}
1675
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001676static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001677{
1678 struct ip6_tnl *tunnel = netdev_priv(dev);
1679 struct __ip6_tnl_parm *parm = &tunnel->parms;
1680
1681 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1682 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001683 &parm->laddr) ||
Ding Zhi0d2ede92013-09-16 11:31:15 +02001684 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1685 &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001686 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1687 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1688 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001689 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1690 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001691 goto nla_put_failure;
1692 return 0;
1693
1694nla_put_failure:
1695 return -EMSGSIZE;
1696}
1697
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001698static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1699 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1700 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1701 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1702 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1703 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1704 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1705 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1706 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1707};
1708
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001709static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1710 .kind = "ip6tnl",
1711 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001712 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001713 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001714 .setup = ip6_tnl_dev_setup,
1715 .validate = ip6_tnl_validate,
1716 .newlink = ip6_tnl_newlink,
1717 .changelink = ip6_tnl_changelink,
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001718 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001719 .get_size = ip6_tnl_get_size,
1720 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001721};
1722
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001723static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001724 .handler = ip4ip6_rcv,
1725 .err_handler = ip4ip6_err,
1726 .priority = 1,
1727};
1728
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001729static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001730 .handler = ip6ip6_rcv,
1731 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001732 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733};
1734
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001735static void __net_exit ip6_tnl_destroy_tunnels(struct net *net)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001736{
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001737 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001738 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001739 int h;
1740 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001741 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001742
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001743 for_each_netdev_safe(net, dev, aux)
1744 if (dev->rtnl_link_ops == &ip6_link_ops)
1745 unregister_netdevice_queue(dev, &list);
1746
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001747 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001748 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001749 while (t != NULL) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001750 /* If dev is in the same netns, it has already
1751 * been added to the list by the previous loop.
1752 */
1753 if (!net_eq(dev_net(t->dev), net))
1754 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001755 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001756 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001757 }
1758
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001759 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001760}
1761
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001762static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001763{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001764 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001765 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001766 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001767
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001768 ip6n->tnls[0] = ip6n->tnls_wc;
1769 ip6n->tnls[1] = ip6n->tnls_r_l;
1770
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001771 err = -ENOMEM;
1772 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
Tom Gundersenc835a672014-07-14 16:37:24 +02001773 NET_NAME_UNKNOWN, ip6_tnl_dev_setup);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001774
1775 if (!ip6n->fb_tnl_dev)
1776 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001777 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtelbb814092013-10-01 18:05:00 +02001778 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001779 /* FB netdevice is special: we have one, and only one per netns.
1780 * Allowing to move it to another netns is clearly unsafe.
1781 */
1782 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001783
Eric Dumazet8560f222010-09-28 03:23:34 +00001784 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1785 if (err < 0)
1786 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001787
1788 err = register_netdev(ip6n->fb_tnl_dev);
1789 if (err < 0)
1790 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001791
1792 t = netdev_priv(ip6n->fb_tnl_dev);
1793
1794 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001795 return 0;
1796
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001797err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001798 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001799err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001800 return err;
1801}
1802
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001803static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001804{
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001805 rtnl_lock();
Nicolas Dichtel1e9f3d62013-11-14 15:47:03 +01001806 ip6_tnl_destroy_tunnels(net);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001807 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001808}
1809
1810static struct pernet_operations ip6_tnl_net_ops = {
1811 .init = ip6_tnl_init_net,
1812 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001813 .id = &ip6_tnl_net_id,
1814 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001815};
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817/**
1818 * ip6_tunnel_init - register protocol and reserve needed resources
1819 *
1820 * Return: 0 on success
1821 **/
1822
1823static int __init ip6_tunnel_init(void)
1824{
1825 int err;
1826
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001827 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001828 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001829 goto out_pernet;
1830
1831 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1832 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001833 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001834 goto out_ip4ip6;
1835 }
1836
1837 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1838 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001839 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001840 goto out_ip6ip6;
1841 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001842 err = rtnl_link_register(&ip6_link_ops);
1843 if (err < 0)
1844 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001847
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001848rtnl_link_failed:
1849 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001850out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001851 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001852out_ip4ip6:
1853 unregister_pernet_device(&ip6_tnl_net_ops);
1854out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return err;
1856}
1857
1858/**
1859 * ip6_tunnel_cleanup - free resources and unregister protocol
1860 **/
1861
1862static void __exit ip6_tunnel_cleanup(void)
1863{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001864 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001865 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001866 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001867
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001868 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001869 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001871 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874module_init(ip6_tunnel_init);
1875module_exit(ip6_tunnel_cleanup);