blob: d6e00a39274c4d62401b08fd7142338c8fb10c8d [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>
32#include <linux/if_tunnel.h>
33#include <linux/net.h>
34#include <linux/in6.h>
35#include <linux/netdevice.h>
36#include <linux/if_arp.h>
37#include <linux/icmpv6.h>
38#include <linux/init.h>
39#include <linux/route.h>
40#include <linux/rtnetlink.h>
41#include <linux/netfilter_ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000043#include <linux/hash.h>
Nicolas Dichtele8377352013-08-20 12:16:06 +020044#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070047#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090049#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000051#include <net/ip_tunnels.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <net/ip6_route.h>
54#include <net/addrconf.h>
55#include <net/ip6_tunnel.h>
56#include <net/xfrm.h>
57#include <net/dsfield.h>
58#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070059#include <net/net_namespace.h>
60#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090063MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_LICENSE("GPL");
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
73#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090074#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Eric Dumazetddbe5032012-07-18 08:11:12 +000076#define HASH_SIZE_SHIFT 5
77#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000079static bool log_ecn_error = true;
80module_param(log_ecn_error, bool, 0644);
81MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
82
Eric Dumazetddbe5032012-07-18 08:11:12 +000083static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
84{
85 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
86
87 return hash_32(hash, HASH_SIZE_SHIFT);
88}
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Eric Dumazet8560f222010-09-28 03:23:34 +000090static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090091static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000092static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Eric Dumazetf99189b2009-11-17 10:42:49 +000094static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070095struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070096 /* the IPv6 tunnel fallback device */
97 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070098 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000099 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
100 struct ip6_tnl __rcu *tnls_wc[1];
101 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -0700102};
103
Eric Dumazet8560f222010-09-28 03:23:34 +0000104static struct net_device_stats *ip6_get_stats(struct net_device *dev)
105{
106 struct pcpu_tstats sum = { 0 };
107 int i;
108
109 for_each_possible_cpu(i) {
110 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
111
112 sum.rx_packets += tstats->rx_packets;
113 sum.rx_bytes += tstats->rx_bytes;
114 sum.tx_packets += tstats->tx_packets;
115 sum.tx_bytes += tstats->tx_bytes;
116 }
117 dev->stats.rx_packets = sum.rx_packets;
118 dev->stats.rx_bytes = sum.rx_bytes;
119 dev->stats.tx_packets = sum.tx_packets;
120 dev->stats.tx_bytes = sum.tx_bytes;
121 return &dev->stats;
122}
123
Eric Dumazet2922bc82009-10-23 06:34:34 +0000124/*
Eric Dumazet94767632010-09-15 20:25:34 +0000125 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000126 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000128struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct dst_entry *dst = t->dst_cache;
131
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900132 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 dst->ops->check(dst, t->dst_cookie) == NULL) {
134 t->dst_cache = NULL;
135 dst_release(dst);
136 return NULL;
137 }
138
139 return dst;
140}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000141EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000143void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 dst_release(t->dst_cache);
146 t->dst_cache = NULL;
147}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000148EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000150void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct rt6_info *rt = (struct rt6_info *) dst;
153 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
154 dst_release(t->dst_cache);
155 t->dst_cache = dst;
156}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000157EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900160 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900161 * @remote: the address of the tunnel exit-point
162 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900164 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900166 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * else %NULL
168 **/
169
Eric Dumazet2922bc82009-10-23 06:34:34 +0000170#define for_each_ip6_tunnel_rcu(start) \
171 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000174ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000176 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700178 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Eric Dumazetddbe5032012-07-18 08:11:12 +0000180 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (ipv6_addr_equal(local, &t->parms.laddr) &&
182 ipv6_addr_equal(remote, &t->parms.raddr) &&
183 (t->dev->flags & IFF_UP))
184 return t;
185 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000186 t = rcu_dereference(ip6n->tnls_wc[0]);
187 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return t;
189
190 return NULL;
191}
192
193/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900194 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900195 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
197 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900198 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * &struct in6_addr entries laddr and raddr in @p.
200 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900201 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 **/
203
Eric Dumazet94767632010-09-15 20:25:34 +0000204static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000205ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000207 const struct in6_addr *remote = &p->raddr;
208 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000209 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int prio = 0;
211
212 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
213 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000214 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700216 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900220 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * @t: tunnel to be added
222 **/
223
224static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700225ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Eric Dumazet94767632010-09-15 20:25:34 +0000227 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Eric Dumazetcf778b02012-01-12 04:41:32 +0000229 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
230 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
233/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900234 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * @t: tunnel to be removed
236 **/
237
238static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700239ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Eric Dumazet94767632010-09-15 20:25:34 +0000241 struct ip6_tnl __rcu **tp;
242 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Eric Dumazet94767632010-09-15 20:25:34 +0000244 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
245 (iter = rtnl_dereference(*tp)) != NULL;
246 tp = &iter->next) {
247 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000248 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 break;
250 }
251 }
252}
253
Eric Dumazet8560f222010-09-28 03:23:34 +0000254static void ip6_dev_free(struct net_device *dev)
255{
256 free_percpu(dev->tstats);
257 free_netdev(dev);
258}
259
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000260static int ip6_tnl_create2(struct net_device *dev)
261{
262 struct ip6_tnl *t = netdev_priv(dev);
263 struct net *net = dev_net(dev);
264 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
265 int err;
266
267 t = netdev_priv(dev);
268 err = ip6_tnl_dev_init(dev);
269 if (err < 0)
270 goto out;
271
272 err = register_netdevice(dev);
273 if (err < 0)
274 goto out;
275
276 strcpy(t->parms.name, dev->name);
277 dev->rtnl_link_ops = &ip6_link_ops;
278
279 dev_hold(dev);
280 ip6_tnl_link(ip6n, t);
281 return 0;
282
283out:
284 return err;
285}
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000288 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * @p: tunnel parameters
290 * @pt: pointer to new tunnel
291 *
292 * Description:
293 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900294 *
295 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800296 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 **/
298
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000299static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct net_device *dev;
302 struct ip6_tnl *t;
303 char name[IFNAMSIZ];
304 int err;
305
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800306 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800308 else
309 sprintf(name, "ip6tnl%%d");
310
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900311 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800313 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700315 dev_net_set(dev, net);
316
Patrick McHardy2941a482006-01-08 22:05:26 -0800317 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 t->parms = *p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200319 t->net = dev_net(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000320 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000321 if (err < 0)
322 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Ville Nuorvala567131a2006-11-24 17:05:41 -0800324 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800325
326failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000327 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800328failed:
329 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900333 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900334 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * @create: != 0 if allowed to create new tunnel if no match found
336 *
337 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900338 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 * based on @parms. If this is unsuccessful, but @create is set a new
340 * tunnel device is created and registered for use.
341 *
342 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800343 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 **/
345
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700346static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000347 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000349 const struct in6_addr *remote = &p->raddr;
350 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000351 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700353 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Eric Dumazet94767632010-09-15 20:25:34 +0000355 for (tp = ip6_tnl_bucket(ip6n, p);
356 (t = rtnl_dereference(*tp)) != NULL;
357 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800359 ipv6_addr_equal(remote, &t->parms.raddr))
360 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800363 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700364 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900368 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900370 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900372 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 **/
374
375static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900376ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Patrick McHardy2941a482006-01-08 22:05:26 -0800378 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200379 struct net *net = t->net;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700380 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Eric Dumazet94767632010-09-15 20:25:34 +0000382 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000383 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000384 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700385 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 ip6_tnl_dst_reset(t);
387 dev_put(dev);
388}
389
390/**
391 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
392 * @skb: received socket buffer
393 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900394 * Return:
395 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * else index to encapsulation limit
397 **/
398
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000399__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000401 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 __u8 nexthdr = ipv6h->nexthdr;
403 __u16 off = sizeof (*ipv6h);
404
405 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
406 __u16 optlen = 0;
407 struct ipv6_opt_hdr *hdr;
408 if (raw + off + sizeof (*hdr) > skb->data &&
409 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
410 break;
411
412 hdr = (struct ipv6_opt_hdr *) (raw + off);
413 if (nexthdr == NEXTHDR_FRAGMENT) {
414 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
415 if (frag_hdr->frag_off)
416 break;
417 optlen = 8;
418 } else if (nexthdr == NEXTHDR_AUTH) {
419 optlen = (hdr->hdrlen + 2) << 2;
420 } else {
421 optlen = ipv6_optlen(hdr);
422 }
423 if (nexthdr == NEXTHDR_DEST) {
424 __u16 i = off + 2;
425 while (1) {
426 struct ipv6_tlv_tnl_enc_lim *tel;
427
428 /* No more room for encapsulation limit */
429 if (i + sizeof (*tel) > off + optlen)
430 break;
431
432 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
433 /* return index of option if found and valid */
434 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
435 tel->length == 1)
436 return i;
437 /* else jump to next option */
438 if (tel->type)
439 i += tel->length + 2;
440 else
441 i++;
442 }
443 }
444 nexthdr = hdr->nexthdr;
445 off += optlen;
446 }
447 return 0;
448}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000449EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900452 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900455 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * to the specifications in RFC 2473.
457 **/
458
Herbert Xud2acc342006-03-28 01:12:13 -0800459static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900460ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700461 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000463 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct ip6_tnl *t;
465 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700466 u8 rel_type = ICMPV6_DEST_UNREACH;
467 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 __u32 rel_info = 0;
469 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800470 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900472 /* If the packet doesn't contain the original IPv6 header we are
473 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 processing of the error. */
475
Eric Dumazet2922bc82009-10-23 06:34:34 +0000476 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700477 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700478 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 goto out;
480
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900481 if (t->parms.proto != ipproto && t->parms.proto != 0)
482 goto out;
483
Herbert Xud2acc342006-03-28 01:12:13 -0800484 err = 0;
485
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900486 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 __u32 teli;
488 struct ipv6_tlv_tnl_enc_lim *tel;
489 __u32 mtu;
490 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000491 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
492 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 rel_msg = 1;
494 break;
495 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900496 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000497 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
498 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 rel_msg = 1;
500 }
501 break;
502 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800503 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900504 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000505 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Al Viro704eae12007-07-26 17:33:29 +0100507 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
509 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000510 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
511 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 rel_msg = 1;
513 }
Joe Perchese87cc472012-05-13 21:56:26 +0000514 } else {
515 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
516 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 break;
519 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100520 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (mtu < IPV6_MIN_MTU)
522 mtu = IPV6_MIN_MTU;
523 t->dev->mtu = mtu;
524
Al Virocc6cdac2006-02-18 16:02:18 -0500525 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 rel_type = ICMPV6_PKT_TOOBIG;
527 rel_code = 0;
528 rel_info = mtu;
529 rel_msg = 1;
530 }
531 break;
532 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900533
534 *type = rel_type;
535 *code = rel_code;
536 *info = rel_info;
537 *msg = rel_msg;
538
539out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000540 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900541 return err;
542}
543
544static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900545ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700546 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900547{
548 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700549 u8 rel_type = type;
550 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100551 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900552 int err;
553 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000554 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900555 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700556 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900557
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900558 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
559 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900560 if (err < 0)
561 return err;
562
563 if (rel_msg == 0)
564 return 0;
565
566 switch (rel_type) {
567 case ICMPV6_DEST_UNREACH:
568 if (rel_code != ICMPV6_ADDR_UNREACH)
569 return 0;
570 rel_type = ICMP_DEST_UNREACH;
571 rel_code = ICMP_HOST_UNREACH;
572 break;
573 case ICMPV6_PKT_TOOBIG:
574 if (rel_code != 0)
575 return 0;
576 rel_type = ICMP_DEST_UNREACH;
577 rel_code = ICMP_FRAG_NEEDED;
578 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700579 case NDISC_REDIRECT:
580 rel_type = ICMP_REDIRECT;
581 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900582 default:
583 return 0;
584 }
585
586 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
587 return 0;
588
589 skb2 = skb_clone(skb, GFP_ATOMIC);
590 if (!skb2)
591 return 0;
592
Eric Dumazetadf30902009-06-02 05:19:30 +0000593 skb_dst_drop(skb2);
594
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900595 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700596 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700597 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900598
599 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700600 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500601 eiph->saddr, 0,
602 0, 0,
603 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800604 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900605 goto out;
606
Changli Gaod8d1f302010-06-10 23:31:35 -0700607 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900608
609 /* route "incoming" packet */
610 if (rt->rt_flags & RTCF_LOCAL) {
611 ip_rt_put(rt);
612 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700613 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500614 eiph->daddr, eiph->saddr,
615 0, 0,
616 IPPROTO_IPIP,
617 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800618 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700619 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800620 if (!IS_ERR(rt))
621 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900622 goto out;
623 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800624 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900625 } else {
626 ip_rt_put(rt);
627 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
628 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000629 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900630 goto out;
631 }
632
633 /* change mtu on this route */
634 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000635 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900636 goto out;
637
David S. Miller6700c272012-07-17 03:29:28 -0700638 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900639 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700640 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700641 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900642
Al Viro704eae12007-07-26 17:33:29 +0100643 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900644
645out:
646 kfree_skb(skb2);
647 return 0;
648}
649
650static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900651ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700652 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900653{
654 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700655 u8 rel_type = type;
656 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100657 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900658 int err;
659
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900660 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
661 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900662 if (err < 0)
663 return err;
664
665 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct rt6_info *rt;
667 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900670 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Eric Dumazetadf30902009-06-02 05:19:30 +0000672 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700674 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700677 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
678 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
David S. Millerd1918542011-12-28 20:19:20 -0500680 if (rt && rt->dst.dev)
681 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000683 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Amerigo Wang94e187c2012-10-29 00:13:19 +0000685 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 kfree_skb(skb2);
688 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900689
690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000693static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
694 const struct ipv6hdr *ipv6h,
695 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900696{
697 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
698
699 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700700 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900701
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000702 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900703}
704
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000705static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
706 const struct ipv6hdr *ipv6h,
707 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900709 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800710 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000712 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900714
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000715__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000716 const struct in6_addr *laddr,
717 const struct in6_addr *raddr)
718{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000719 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000720 int ltype = ipv6_addr_type(laddr);
721 int rtype = ipv6_addr_type(raddr);
722 __u32 flags = 0;
723
724 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
725 flags = IP6_TNL_F_CAP_PER_PACKET;
726 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
727 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
728 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
729 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
730 if (ltype&IPV6_ADDR_UNICAST)
731 flags |= IP6_TNL_F_CAP_XMIT;
732 if (rtype&IPV6_ADDR_UNICAST)
733 flags |= IP6_TNL_F_CAP_RCV;
734 }
735 return flags;
736}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000737EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000738
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100739/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000740int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000741 const struct in6_addr *laddr,
742 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800743{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000744 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800745 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200746 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800747
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000748 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
749 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
750 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900751 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800752
753 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100754 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800755
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000756 if ((ipv6_addr_is_multicast(laddr) ||
757 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
758 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800759 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800760 }
761 return ret;
762}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000763EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900766 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900768 * @protocol: ethernet protocol ID
769 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 *
771 * Return: 0
772 **/
773
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900774static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900775 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000776 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
777 const struct ipv6hdr *ipv6h,
778 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000781 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000782 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Eric Dumazet2922bc82009-10-23 06:34:34 +0000784 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700786 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700787 &ipv6h->daddr)) != NULL) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000788 struct pcpu_tstats *tstats;
789
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900790 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000791 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900792 goto discard;
793 }
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000796 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700797 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000800 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700801 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000802 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 goto discard;
804 }
805 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700806 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700807 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900808 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 skb->pkt_type = PACKET_HOST;
810 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700811
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000812 __skb_tunnel_rx(skb, t->dev);
813
814 err = dscp_ecn_decapsulate(t, ipv6h, skb);
815 if (unlikely(err)) {
816 if (log_ecn_error)
817 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
818 &ipv6h->saddr,
819 ipv6_get_dsfield(ipv6h));
820 if (err > 1) {
821 ++t->dev->stats.rx_frame_errors;
822 ++t->dev->stats.rx_errors;
823 rcu_read_unlock();
824 goto discard;
825 }
826 }
827
Eric Dumazet8560f222010-09-28 03:23:34 +0000828 tstats = this_cpu_ptr(t->dev->tstats);
829 tstats->rx_packets++;
830 tstats->rx_bytes += skb->len;
831
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200832 if (!net_eq(t->net, dev_net(t->dev)))
833 skb_scrub_packet(skb);
834
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000835 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000836
Eric Dumazet2922bc82009-10-23 06:34:34 +0000837 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return 0;
839 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000840 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700842
843discard:
844 kfree_skb(skb);
845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900848static int ip4ip6_rcv(struct sk_buff *skb)
849{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900850 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
851 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900852}
853
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900854static int ip6ip6_rcv(struct sk_buff *skb)
855{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900856 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
857 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900858}
859
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800860struct ipv6_tel_txoption {
861 struct ipv6_txoptions ops;
862 __u8 dst_opt[8];
863};
864
865static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800867 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800869 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
870 opt->dst_opt[3] = 1;
871 opt->dst_opt[4] = encap_limit;
872 opt->dst_opt[5] = IPV6_TLV_PADN;
873 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800875 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
876 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
879/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900880 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900882 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 *
884 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900885 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 * doesn't match source of incoming packet.
887 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900888 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 * 1 if conflict,
890 * 0 else
891 **/
892
Eric Dumazet92113bf2012-05-18 08:14:11 +0200893static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000894ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
897}
898
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000899int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800900{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000901 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800902 int ret = 0;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200903 struct net *net = t->net;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800904
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900905 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800906 struct net_device *ldev = NULL;
907
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100908 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800909 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100910 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800911
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700912 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000913 pr_warn("%s xmit: Local address not yet configured!\n",
914 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800915 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700916 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000917 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
918 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800919 else
920 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100921 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800922 }
923 return ret;
924}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000925EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900928 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900930 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900931 * @dsfield: dscp code for outer header
932 * @fl: flow of tunneled packet
933 * @encap_limit: encapsulation limit
934 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 *
936 * Description:
937 * Build new header and do some sanity checks on the packet before sending
938 * it.
939 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900940 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900941 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900942 * -1 fail
943 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 **/
945
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900946static int ip6_tnl_xmit2(struct sk_buff *skb,
947 struct net_device *dev,
948 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500949 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900950 int encap_limit,
951 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Patrick McHardy2941a482006-01-08 22:05:26 -0800953 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +0200954 struct net *net = t->net;
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700955 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700956 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800957 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400958 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 struct net_device *tdev;
960 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700961 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900963 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400965 if (!fl6->flowi6_mark)
966 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000967 if (!dst) {
968 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Eric Dumazet89b02122011-07-28 04:32:25 +0000970 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700971 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000972 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
973 if (IS_ERR(ndst)) {
974 err = PTR_ERR(ndst);
975 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800976 goto tx_err_link_failure;
977 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000978 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 tdev = dst->dev;
982
983 if (tdev == dev) {
984 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000985 net_warn_ratelimited("%s: Local routing loop detected!\n",
986 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 goto tx_err_dst_release;
988 }
989 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800990 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 max_headroom += 8;
992 mtu -= 8;
993 }
994 if (mtu < IPV6_MIN_MTU)
995 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000996 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700997 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900999 *pmtu = mtu;
1000 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 goto tx_err_dst_release;
1002 }
1003
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001004 if (!net_eq(t->net, dev_net(dev)))
1005 skb_scrub_packet(skb);
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /*
1008 * Okay, now see if we can stuff it in the buffer as-is.
1009 */
1010 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001011
Patrick McHardycfbba492007-07-09 15:33:40 -07001012 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1013 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1017 goto tx_err_dst_release;
1018
1019 if (skb->sk)
1020 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001021 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 skb = new_skb;
1023 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001024 skb_dst_drop(skb);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001025 if (fl6->flowi6_mark) {
1026 skb_dst_set(skb, dst);
1027 ndst = NULL;
1028 } else {
1029 skb_dst_set_noref(skb, dst);
1030 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001031 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
David S. Miller4c9483b2011-03-12 16:22:43 -05001033 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001034 if (encap_limit >= 0) {
1035 init_tel_txopt(&opt, encap_limit);
1036 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1037 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001038 skb_push(skb, sizeof(struct ipv6hdr));
1039 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001040 ipv6h = ipv6_hdr(skb);
YOSHIFUJI Hideaki / 吉藤英明3e4e4c12013-01-13 05:01:39 +00001041 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield), fl6->flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ipv6h->hop_limit = t->parms.hop_limit;
1043 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001044 ipv6h->saddr = fl6->saddr;
1045 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001046 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001047 if (ndst)
1048 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return 0;
1050tx_err_link_failure:
1051 stats->tx_carrier_errors++;
1052 dst_link_failure(skb);
1053tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001054 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001055 return err;
1056}
1057
1058static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001059ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1060{
1061 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001062 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001063 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001064 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001065 __u8 dsfield;
1066 __u32 mtu;
1067 int err;
1068
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001069 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1070 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001071 return -1;
1072
1073 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1074 encap_limit = t->parms.encap_limit;
1075
David S. Miller4c9483b2011-03-12 16:22:43 -05001076 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1077 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001078
1079 dsfield = ipv4_get_dsfield(iph);
1080
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001081 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001082 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001083 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001084 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1085 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001086
David S. Miller4c9483b2011-03-12 16:22:43 -05001087 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001088 if (err != 0) {
1089 /* XXX: send ICMP error even if DF is not set. */
1090 if (err == -EMSGSIZE)
1091 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1092 htonl(mtu));
1093 return -1;
1094 }
1095
1096 return 0;
1097}
1098
1099static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001100ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1101{
1102 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001103 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001104 int encap_limit = -1;
1105 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001106 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001107 __u8 dsfield;
1108 __u32 mtu;
1109 int err;
1110
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001111 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1112 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001113 return -1;
1114
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001115 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001116 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001117 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001118 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001119 if (tel->encap_limit == 0) {
1120 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001121 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001122 return -1;
1123 }
1124 encap_limit = tel->encap_limit - 1;
1125 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1126 encap_limit = t->parms.encap_limit;
1127
David S. Miller4c9483b2011-03-12 16:22:43 -05001128 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1129 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001130
1131 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001132 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001133 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001134 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
David S. Miller4c9483b2011-03-12 16:22:43 -05001135 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001136 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1137 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001138
David S. Miller4c9483b2011-03-12 16:22:43 -05001139 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001140 if (err != 0) {
1141 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001142 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001143 return -1;
1144 }
1145
1146 return 0;
1147}
1148
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001149static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001150ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1151{
1152 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001153 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001154 int ret;
1155
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001156 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001157 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001158 ret = ip4ip6_tnl_xmit(skb, dev);
1159 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001160 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001161 ret = ip6ip6_tnl_xmit(skb, dev);
1162 break;
1163 default:
1164 goto tx_err;
1165 }
1166
1167 if (ret < 0)
1168 goto tx_err;
1169
Patrick McHardy6ed10652009-06-23 06:03:08 +00001170 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172tx_err:
1173 stats->tx_errors++;
1174 stats->tx_dropped++;
1175 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001176 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001179static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
1181 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001182 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001183 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001185 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1186 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001189 fl6->saddr = p->laddr;
1190 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001191 fl6->flowi6_oif = p->link;
1192 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001197 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001199 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1200 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1203 dev->flags |= IFF_POINTOPOINT;
1204 else
1205 dev->flags &= ~IFF_POINTOPOINT;
1206
1207 dev->iflink = p->link;
1208
1209 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001210 int strict = (ipv6_addr_type(&p->raddr) &
1211 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1212
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001213 struct rt6_info *rt = rt6_lookup(t->net,
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001214 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001215 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 if (rt == NULL)
1218 return;
1219
David S. Millerd1918542011-12-28 20:19:20 -05001220 if (rt->dst.dev) {
1221 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 sizeof (struct ipv6hdr);
1223
David S. Millerd1918542011-12-28 20:19:20 -05001224 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001225 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1226 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (dev->mtu < IPV6_MIN_MTU)
1229 dev->mtu = IPV6_MIN_MTU;
1230 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001231 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233}
1234
1235/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001236 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 * @t: tunnel to be changed
1238 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 *
1240 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001241 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 **/
1243
1244static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001245ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001247 t->parms.laddr = p->laddr;
1248 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 t->parms.flags = p->flags;
1250 t->parms.hop_limit = p->hop_limit;
1251 t->parms.encap_limit = p->encap_limit;
1252 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001253 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001254 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001255 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001256 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return 0;
1258}
1259
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001260static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1261{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001262 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001263 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1264 int err;
1265
1266 ip6_tnl_unlink(ip6n, t);
1267 synchronize_net();
1268 err = ip6_tnl_change(t, p);
1269 ip6_tnl_link(ip6n, t);
1270 netdev_state_change(t->dev);
1271 return err;
1272}
1273
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001274static void
1275ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1276{
1277 p->laddr = u->laddr;
1278 p->raddr = u->raddr;
1279 p->flags = u->flags;
1280 p->hop_limit = u->hop_limit;
1281 p->encap_limit = u->encap_limit;
1282 p->flowinfo = u->flowinfo;
1283 p->link = u->link;
1284 p->proto = u->proto;
1285 memcpy(p->name, u->name, sizeof(u->name));
1286}
1287
1288static void
1289ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1290{
1291 u->laddr = p->laddr;
1292 u->raddr = p->raddr;
1293 u->flags = p->flags;
1294 u->hop_limit = p->hop_limit;
1295 u->encap_limit = p->encap_limit;
1296 u->flowinfo = p->flowinfo;
1297 u->link = p->link;
1298 u->proto = p->proto;
1299 memcpy(u->name, p->name, sizeof(u->name));
1300}
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001303 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 * @dev: virtual device associated with tunnel
1305 * @ifr: parameters passed from userspace
1306 * @cmd: command to be performed
1307 *
1308 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001309 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001310 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 *
1312 * The possible commands are the following:
1313 * %SIOCGETTUNNEL: get tunnel parameters for device
1314 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1315 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1316 * %SIOCDELTUNNEL: delete tunnel
1317 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001318 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 * initialization, can be used for creating other tunnel devices.
1320 *
1321 * Return:
1322 * 0 on success,
1323 * %-EFAULT if unable to copy data to or from userspace,
1324 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1325 * %-EINVAL if passed tunnel parameters are invalid,
1326 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1327 * %-ENODEV if attempting to change or delete a nonexisting device
1328 **/
1329
1330static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001331ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
1333 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001335 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001337 struct net *net = dev_net(dev);
1338 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 switch (cmd) {
1341 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001342 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001343 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 err = -EFAULT;
1345 break;
1346 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001347 ip6_tnl_parm_from_user(&p1, &p);
1348 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001349 } else {
1350 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001351 }
1352 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001353 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001354 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1356 err = -EFAULT;
1357 }
1358 break;
1359 case SIOCADDTUNNEL:
1360 case SIOCCHGTUNNEL:
1361 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001362 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001364 err = -EFAULT;
1365 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001367 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001368 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1369 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001371 ip6_tnl_parm_from_user(&p1, &p);
1372 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001373 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001374 if (t != NULL) {
1375 if (t->dev != dev) {
1376 err = -EEXIST;
1377 break;
1378 }
1379 } else
1380 t = netdev_priv(dev);
1381
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001382 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001384 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001386 ip6_tnl_parm_to_user(&p, &t->parms);
1387 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001388 err = -EFAULT;
1389
1390 } else
1391 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 break;
1393 case SIOCDELTUNNEL:
1394 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001395 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 break;
1397
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001398 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001399 err = -EFAULT;
1400 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001402 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001403 ip6_tnl_parm_from_user(&p1, &p);
1404 t = ip6_tnl_locate(net, &p1, 0);
1405 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001407 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001408 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001410 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001412 err = 0;
1413 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 break;
1415 default:
1416 err = -EINVAL;
1417 }
1418 return err;
1419}
1420
1421/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001422 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 * @dev: virtual device associated with tunnel
1424 * @new_mtu: the new mtu
1425 *
1426 * Return:
1427 * 0 on success,
1428 * %-EINVAL if mtu too small
1429 **/
1430
1431static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001432ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
1434 if (new_mtu < IPV6_MIN_MTU) {
1435 return -EINVAL;
1436 }
1437 dev->mtu = new_mtu;
1438 return 0;
1439}
1440
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001441
1442static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001443 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001444 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001445 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001446 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001447 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001448};
1449
Eric Dumazet8560f222010-09-28 03:23:34 +00001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001452 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 * @dev: virtual device associated with tunnel
1454 *
1455 * Description:
1456 * Initialize function pointers and device parameters
1457 **/
1458
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001459static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Anders Franzen381601e2010-11-24 05:47:18 +00001461 struct ip6_tnl *t;
1462
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001463 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001464 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 dev->type = ARPHRD_TUNNEL6;
1467 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1468 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001469 t = netdev_priv(dev);
1470 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1471 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 dev->flags |= IFF_NOARP;
1473 dev->addr_len = sizeof(struct in6_addr);
Anders Franzen7e223de2010-10-19 03:50:47 +00001474 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Nicolas Dichtele8377352013-08-20 12:16:06 +02001475 /* This perm addr will be used as interface identifier by IPv6 */
1476 dev->addr_assign_type = NET_ADDR_RANDOM;
1477 eth_random_addr(dev->perm_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480
1481/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001482 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 * @dev: virtual device associated with tunnel
1484 **/
1485
Eric Dumazet8560f222010-09-28 03:23:34 +00001486static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001487ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Patrick McHardy2941a482006-01-08 22:05:26 -08001489 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 t->dev = dev;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001492 t->net = dev_net(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001493 dev->tstats = alloc_percpu(struct pcpu_tstats);
1494 if (!dev->tstats)
1495 return -ENOMEM;
1496 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
1499/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001500 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 * @dev: virtual device associated with tunnel
1502 **/
1503
Eric Dumazet8560f222010-09-28 03:23:34 +00001504static int ip6_tnl_dev_init(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);
Eric Dumazet8560f222010-09-28 03:23:34 +00001507 int err = ip6_tnl_dev_init_gen(dev);
1508
1509 if (err)
1510 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001511 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
1515/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001516 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 * @dev: fallback device
1518 *
1519 * Return: 0
1520 **/
1521
Eric Dumazet8560f222010-09-28 03:23:34 +00001522static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Patrick McHardy2941a482006-01-08 22:05:26 -08001524 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001525 struct net *net = dev_net(dev);
1526 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001527 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001528
Eric Dumazet8560f222010-09-28 03:23:34 +00001529 if (err)
1530 return err;
1531
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001532 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001534
1535 ip6_tnl_link_config(t);
1536
Eric Dumazetcf778b02012-01-12 04:41:32 +00001537 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001541static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1542{
1543 u8 proto;
1544
1545 if (!data)
1546 return 0;
1547
1548 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1549 if (proto != IPPROTO_IPV6 &&
1550 proto != IPPROTO_IPIP &&
1551 proto != 0)
1552 return -EINVAL;
1553
1554 return 0;
1555}
1556
1557static void ip6_tnl_netlink_parms(struct nlattr *data[],
1558 struct __ip6_tnl_parm *parms)
1559{
1560 memset(parms, 0, sizeof(*parms));
1561
1562 if (!data)
1563 return;
1564
1565 if (data[IFLA_IPTUN_LINK])
1566 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1567
1568 if (data[IFLA_IPTUN_LOCAL])
1569 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1570 sizeof(struct in6_addr));
1571
1572 if (data[IFLA_IPTUN_REMOTE])
1573 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1574 sizeof(struct in6_addr));
1575
1576 if (data[IFLA_IPTUN_TTL])
1577 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1578
1579 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1580 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1581
1582 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001583 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001584
1585 if (data[IFLA_IPTUN_FLAGS])
1586 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1587
1588 if (data[IFLA_IPTUN_PROTO])
1589 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1590}
1591
1592static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1593 struct nlattr *tb[], struct nlattr *data[])
1594{
1595 struct net *net = dev_net(dev);
1596 struct ip6_tnl *nt;
1597
1598 nt = netdev_priv(dev);
1599 ip6_tnl_netlink_parms(data, &nt->parms);
1600
1601 if (ip6_tnl_locate(net, &nt->parms, 0))
1602 return -EEXIST;
1603
1604 return ip6_tnl_create2(dev);
1605}
1606
1607static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1608 struct nlattr *data[])
1609{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001610 struct ip6_tnl *t = netdev_priv(dev);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001611 struct __ip6_tnl_parm p;
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001612 struct net *net = t->net;
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001613 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1614
1615 if (dev == ip6n->fb_tnl_dev)
1616 return -EINVAL;
1617
1618 ip6_tnl_netlink_parms(data, &p);
1619
1620 t = ip6_tnl_locate(net, &p, 0);
1621
1622 if (t) {
1623 if (t->dev != dev)
1624 return -EEXIST;
1625 } else
1626 t = netdev_priv(dev);
1627
1628 return ip6_tnl_update(t, &p);
1629}
1630
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001631static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001632{
1633 return
1634 /* IFLA_IPTUN_LINK */
1635 nla_total_size(4) +
1636 /* IFLA_IPTUN_LOCAL */
1637 nla_total_size(sizeof(struct in6_addr)) +
1638 /* IFLA_IPTUN_REMOTE */
1639 nla_total_size(sizeof(struct in6_addr)) +
1640 /* IFLA_IPTUN_TTL */
1641 nla_total_size(1) +
1642 /* IFLA_IPTUN_ENCAP_LIMIT */
1643 nla_total_size(1) +
1644 /* IFLA_IPTUN_FLOWINFO */
1645 nla_total_size(4) +
1646 /* IFLA_IPTUN_FLAGS */
1647 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001648 /* IFLA_IPTUN_PROTO */
1649 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001650 0;
1651}
1652
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001653static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001654{
1655 struct ip6_tnl *tunnel = netdev_priv(dev);
1656 struct __ip6_tnl_parm *parm = &tunnel->parms;
1657
1658 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1659 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
1660 &parm->raddr) ||
1661 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1662 &parm->laddr) ||
1663 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1664 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1665 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001666 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1667 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001668 goto nla_put_failure;
1669 return 0;
1670
1671nla_put_failure:
1672 return -EMSGSIZE;
1673}
1674
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001675static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1676 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1677 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1678 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1679 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1680 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1681 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1682 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1683 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1684};
1685
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001686static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1687 .kind = "ip6tnl",
1688 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001689 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001690 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001691 .setup = ip6_tnl_dev_setup,
1692 .validate = ip6_tnl_validate,
1693 .newlink = ip6_tnl_newlink,
1694 .changelink = ip6_tnl_changelink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001695 .get_size = ip6_tnl_get_size,
1696 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001697};
1698
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001699static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001700 .handler = ip4ip6_rcv,
1701 .err_handler = ip4ip6_err,
1702 .priority = 1,
1703};
1704
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001705static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001706 .handler = ip6ip6_rcv,
1707 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001708 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709};
1710
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001711static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001712{
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001713 struct net *net = dev_net(ip6n->fb_tnl_dev);
1714 struct net_device *dev, *aux;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001715 int h;
1716 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001717 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001718
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001719 for_each_netdev_safe(net, dev, aux)
1720 if (dev->rtnl_link_ops == &ip6_link_ops)
1721 unregister_netdevice_queue(dev, &list);
1722
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001723 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001724 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001725 while (t != NULL) {
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001726 /* If dev is in the same netns, it has already
1727 * been added to the list by the previous loop.
1728 */
1729 if (!net_eq(dev_net(t->dev), net))
1730 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001731 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001732 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001733 }
1734
Eric Dumazet94767632010-09-15 20:25:34 +00001735 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001736 unregister_netdevice_queue(t->dev, &list);
1737 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001738}
1739
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001740static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001741{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001742 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001743 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001744 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001745
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001746 ip6n->tnls[0] = ip6n->tnls_wc;
1747 ip6n->tnls[1] = ip6n->tnls_r_l;
1748
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001749 err = -ENOMEM;
1750 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1751 ip6_tnl_dev_setup);
1752
1753 if (!ip6n->fb_tnl_dev)
1754 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001755 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtel0bd876282013-08-13 17:51:12 +02001756 /* FB netdevice is special: we have one, and only one per netns.
1757 * Allowing to move it to another netns is clearly unsafe.
1758 */
1759 ip6n->fb_tnl_dev->features |= NETIF_F_NETNS_LOCAL;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001760
Eric Dumazet8560f222010-09-28 03:23:34 +00001761 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1762 if (err < 0)
1763 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001764
1765 err = register_netdev(ip6n->fb_tnl_dev);
1766 if (err < 0)
1767 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001768
1769 t = netdev_priv(ip6n->fb_tnl_dev);
1770
1771 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001772 return 0;
1773
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001774err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001775 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001776err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001777 return err;
1778}
1779
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001780static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001781{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001782 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001783
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001784 rtnl_lock();
1785 ip6_tnl_destroy_tunnels(ip6n);
1786 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001787}
1788
1789static struct pernet_operations ip6_tnl_net_ops = {
1790 .init = ip6_tnl_init_net,
1791 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001792 .id = &ip6_tnl_net_id,
1793 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001794};
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796/**
1797 * ip6_tunnel_init - register protocol and reserve needed resources
1798 *
1799 * Return: 0 on success
1800 **/
1801
1802static int __init ip6_tunnel_init(void)
1803{
1804 int err;
1805
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001806 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001807 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001808 goto out_pernet;
1809
1810 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1811 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001812 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001813 goto out_ip4ip6;
1814 }
1815
1816 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1817 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001818 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001819 goto out_ip6ip6;
1820 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001821 err = rtnl_link_register(&ip6_link_ops);
1822 if (err < 0)
1823 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001826
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001827rtnl_link_failed:
1828 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001829out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001830 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001831out_ip4ip6:
1832 unregister_pernet_device(&ip6_tnl_net_ops);
1833out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return err;
1835}
1836
1837/**
1838 * ip6_tunnel_cleanup - free resources and unregister protocol
1839 **/
1840
1841static void __exit ip6_tunnel_cleanup(void)
1842{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001843 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001844 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001845 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001846
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001847 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001848 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001850 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
1853module_init(ip6_tunnel_init);
1854module_exit(ip6_tunnel_cleanup);