blob: 14f46af17704f813a5c86b36e8c6521e23698b81 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09002 * IPv6 tunneling device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Ville Nuorvala <vnuorval@tcs.hut.fi>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09007 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Based on:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090010 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * RFC 2473
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 *
19 */
20
Joe Perchesf3213832012-05-15 14:11:53 +000021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080024#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/types.h>
27#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090028#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/if.h>
30#include <linux/in.h>
31#include <linux/ip.h>
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090048#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/ip.h>
Pravin B Shelarc5441932013-03-25 14:49:35 +000050#include <net/ip_tunnels.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <net/ip6_route.h>
53#include <net/addrconf.h>
54#include <net/ip6_tunnel.h>
55#include <net/xfrm.h>
56#include <net/dsfield.h>
57#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070058#include <net/net_namespace.h>
59#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090062MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_LICENSE("GPL");
Tom Gundersen57b1ec62014-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
73#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efa2007-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);
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000268
269 err = register_netdevice(dev);
270 if (err < 0)
271 goto out;
272
273 strcpy(t->parms.name, dev->name);
274 dev->rtnl_link_ops = &ip6_link_ops;
275
276 dev_hold(dev);
277 ip6_tnl_link(ip6n, t);
278 return 0;
279
280out:
281 return err;
282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000285 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * @p: tunnel parameters
287 * @pt: pointer to new tunnel
288 *
289 * Description:
290 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900291 *
292 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800293 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 **/
295
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000296static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct net_device *dev;
299 struct ip6_tnl *t;
300 char name[IFNAMSIZ];
301 int err;
302
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800303 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800305 else
306 sprintf(name, "ip6tnl%%d");
307
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900308 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800310 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700312 dev_net_set(dev, net);
313
Patrick McHardy2941a482006-01-08 22:05:26 -0800314 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 t->parms = *p;
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000316 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000317 if (err < 0)
318 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Ville Nuorvala567131a2006-11-24 17:05:41 -0800320 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800321
322failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000323 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800324failed:
325 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900329 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900330 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * @create: != 0 if allowed to create new tunnel if no match found
332 *
333 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900334 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * based on @parms. If this is unsuccessful, but @create is set a new
336 * tunnel device is created and registered for use.
337 *
338 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800339 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 **/
341
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700342static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000343 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000345 const struct in6_addr *remote = &p->raddr;
346 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000347 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700349 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Eric Dumazet94767632010-09-15 20:25:34 +0000351 for (tp = ip6_tnl_bucket(ip6n, p);
352 (t = rtnl_dereference(*tp)) != NULL;
353 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800355 ipv6_addr_equal(remote, &t->parms.raddr))
356 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
358 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800359 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700360 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
363/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900364 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900366 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900368 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 **/
370
371static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900372ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Patrick McHardy2941a482006-01-08 22:05:26 -0800374 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700375 struct net *net = dev_net(dev);
376 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Eric Dumazet94767632010-09-15 20:25:34 +0000378 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000379 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000380 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700381 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 ip6_tnl_dst_reset(t);
383 dev_put(dev);
384}
385
386/**
387 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
388 * @skb: received socket buffer
389 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900390 * Return:
391 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * else index to encapsulation limit
393 **/
394
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000395__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000397 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 __u8 nexthdr = ipv6h->nexthdr;
399 __u16 off = sizeof (*ipv6h);
400
401 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
402 __u16 optlen = 0;
403 struct ipv6_opt_hdr *hdr;
404 if (raw + off + sizeof (*hdr) > skb->data &&
405 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
406 break;
407
408 hdr = (struct ipv6_opt_hdr *) (raw + off);
409 if (nexthdr == NEXTHDR_FRAGMENT) {
410 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
411 if (frag_hdr->frag_off)
412 break;
413 optlen = 8;
414 } else if (nexthdr == NEXTHDR_AUTH) {
415 optlen = (hdr->hdrlen + 2) << 2;
416 } else {
417 optlen = ipv6_optlen(hdr);
418 }
419 if (nexthdr == NEXTHDR_DEST) {
420 __u16 i = off + 2;
421 while (1) {
422 struct ipv6_tlv_tnl_enc_lim *tel;
423
424 /* No more room for encapsulation limit */
425 if (i + sizeof (*tel) > off + optlen)
426 break;
427
428 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
429 /* return index of option if found and valid */
430 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
431 tel->length == 1)
432 return i;
433 /* else jump to next option */
434 if (tel->type)
435 i += tel->length + 2;
436 else
437 i++;
438 }
439 }
440 nexthdr = hdr->nexthdr;
441 off += optlen;
442 }
443 return 0;
444}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000445EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900448 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 *
450 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900451 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * to the specifications in RFC 2473.
453 **/
454
Herbert Xud2acc342006-03-28 01:12:13 -0800455static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900456ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700457 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000459 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 struct ip6_tnl *t;
461 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700462 u8 rel_type = ICMPV6_DEST_UNREACH;
463 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 __u32 rel_info = 0;
465 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800466 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900468 /* If the packet doesn't contain the original IPv6 header we are
469 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 processing of the error. */
471
Eric Dumazet2922bc82009-10-23 06:34:34 +0000472 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700473 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700474 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto out;
476
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900477 if (t->parms.proto != ipproto && t->parms.proto != 0)
478 goto out;
479
Herbert Xud2acc342006-03-28 01:12:13 -0800480 err = 0;
481
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900482 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 __u32 teli;
484 struct ipv6_tlv_tnl_enc_lim *tel;
485 __u32 mtu;
486 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000487 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
488 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 rel_msg = 1;
490 break;
491 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900492 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000493 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
494 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 rel_msg = 1;
496 }
497 break;
498 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800499 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900500 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000501 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Al Viro704eae12007-07-26 17:33:29 +0100503 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
505 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000506 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
507 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 rel_msg = 1;
509 }
Joe Perchese87cc472012-05-13 21:56:26 +0000510 } else {
511 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
512 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 break;
515 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100516 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (mtu < IPV6_MIN_MTU)
518 mtu = IPV6_MIN_MTU;
519 t->dev->mtu = mtu;
520
Al Virocc6cdac2006-02-18 16:02:18 -0500521 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 rel_type = ICMPV6_PKT_TOOBIG;
523 rel_code = 0;
524 rel_info = mtu;
525 rel_msg = 1;
526 }
527 break;
528 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900529
530 *type = rel_type;
531 *code = rel_code;
532 *info = rel_info;
533 *msg = rel_msg;
534
535out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000536 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900537 return err;
538}
539
540static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900541ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700542 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900543{
544 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700545 u8 rel_type = type;
546 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100547 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900548 int err;
549 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000550 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900551 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -0700552 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900553
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900554 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
555 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900556 if (err < 0)
557 return err;
558
559 if (rel_msg == 0)
560 return 0;
561
562 switch (rel_type) {
563 case ICMPV6_DEST_UNREACH:
564 if (rel_code != ICMPV6_ADDR_UNREACH)
565 return 0;
566 rel_type = ICMP_DEST_UNREACH;
567 rel_code = ICMP_HOST_UNREACH;
568 break;
569 case ICMPV6_PKT_TOOBIG:
570 if (rel_code != 0)
571 return 0;
572 rel_type = ICMP_DEST_UNREACH;
573 rel_code = ICMP_FRAG_NEEDED;
574 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700575 case NDISC_REDIRECT:
576 rel_type = ICMP_REDIRECT;
577 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900578 default:
579 return 0;
580 }
581
582 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
583 return 0;
584
585 skb2 = skb_clone(skb, GFP_ATOMIC);
586 if (!skb2)
587 return 0;
588
Eric Dumazetadf30902009-06-02 05:19:30 +0000589 skb_dst_drop(skb2);
590
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900591 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700592 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700593 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900594
595 /* Try to guess incoming interface */
David S. Miller31e4543d2011-05-03 20:25:42 -0700596 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500597 eiph->saddr, 0,
598 0, 0,
599 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800600 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900601 goto out;
602
Changli Gaod8d1f302010-06-10 23:31:35 -0700603 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900604
605 /* route "incoming" packet */
606 if (rt->rt_flags & RTCF_LOCAL) {
607 ip_rt_put(rt);
608 rt = NULL;
David S. Miller31e4543d2011-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->daddr, eiph->saddr,
611 0, 0,
612 IPPROTO_IPIP,
613 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800614 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700615 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800616 if (!IS_ERR(rt))
617 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900618 goto out;
619 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800620 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900621 } else {
622 ip_rt_put(rt);
623 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
624 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000625 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900626 goto out;
627 }
628
629 /* change mtu on this route */
630 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000631 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900632 goto out;
633
David S. Miller6700c272012-07-17 03:29:28 -0700634 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900635 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700636 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700637 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900638
Al Viro704eae12007-07-26 17:33:29 +0100639 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900640
641out:
642 kfree_skb(skb2);
643 return 0;
644}
645
646static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900647ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700648 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900649{
650 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700651 u8 rel_type = type;
652 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100653 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900654 int err;
655
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900656 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
657 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900658 if (err < 0)
659 return err;
660
661 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 struct rt6_info *rt;
663 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Eric Dumazetadf30902009-06-02 05:19:30 +0000668 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700670 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700673 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
674 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David S. Millerd1918542011-12-28 20:19:20 -0500676 if (rt && rt->dst.dev)
677 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000679 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Amerigo Wang94e187c2012-10-29 00:13:19 +0000681 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 kfree_skb(skb2);
684 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900685
686 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000689static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
690 const struct ipv6hdr *ipv6h,
691 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900692{
693 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
694
695 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700696 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900697
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000698 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900699}
700
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000701static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
702 const struct ipv6hdr *ipv6h,
703 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900705 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800706 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000708 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900710
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000711__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000712 const struct in6_addr *laddr,
713 const struct in6_addr *raddr)
714{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000715 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000716 int ltype = ipv6_addr_type(laddr);
717 int rtype = ipv6_addr_type(raddr);
718 __u32 flags = 0;
719
720 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
721 flags = IP6_TNL_F_CAP_PER_PACKET;
722 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
723 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
724 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
725 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
726 if (ltype&IPV6_ADDR_UNICAST)
727 flags |= IP6_TNL_F_CAP_XMIT;
728 if (rtype&IPV6_ADDR_UNICAST)
729 flags |= IP6_TNL_F_CAP_RCV;
730 }
731 return flags;
732}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000733EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000734
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100735/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000736int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000737 const struct in6_addr *laddr,
738 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800739{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000740 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800741 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700742 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800743
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000744 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
745 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
746 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900747 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800748
749 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100750 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800751
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000752 if ((ipv6_addr_is_multicast(laddr) ||
753 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
754 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800755 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800756 }
757 return ret;
758}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000759EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900762 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900764 * @protocol: ethernet protocol ID
765 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 *
767 * Return: 0
768 **/
769
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900770static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900771 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000772 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
773 const struct ipv6hdr *ipv6h,
774 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000777 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000778 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Eric Dumazet2922bc82009-10-23 06:34:34 +0000780 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700782 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700783 &ipv6h->daddr)) != NULL) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000784 struct pcpu_tstats *tstats;
785
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900786 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000787 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900788 goto discard;
789 }
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000792 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700793 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000796 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700797 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000798 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 goto discard;
800 }
801 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700802 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700803 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900804 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 skb->pkt_type = PACKET_HOST;
806 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700807
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000808 __skb_tunnel_rx(skb, t->dev);
809
810 err = dscp_ecn_decapsulate(t, ipv6h, skb);
811 if (unlikely(err)) {
812 if (log_ecn_error)
813 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
814 &ipv6h->saddr,
815 ipv6_get_dsfield(ipv6h));
816 if (err > 1) {
817 ++t->dev->stats.rx_frame_errors;
818 ++t->dev->stats.rx_errors;
819 rcu_read_unlock();
820 goto discard;
821 }
822 }
823
Eric Dumazet8560f222010-09-28 03:23:34 +0000824 tstats = this_cpu_ptr(t->dev->tstats);
825 tstats->rx_packets++;
826 tstats->rx_bytes += skb->len;
827
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000828 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000829
Eric Dumazet2922bc82009-10-23 06:34:34 +0000830 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return 0;
832 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000833 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700835
836discard:
837 kfree_skb(skb);
838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900841static int ip4ip6_rcv(struct sk_buff *skb)
842{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900843 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
844 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900845}
846
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900847static int ip6ip6_rcv(struct sk_buff *skb)
848{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900849 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
850 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900851}
852
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800853struct ipv6_tel_txoption {
854 struct ipv6_txoptions ops;
855 __u8 dst_opt[8];
856};
857
858static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800860 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800862 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
863 opt->dst_opt[3] = 1;
864 opt->dst_opt[4] = encap_limit;
865 opt->dst_opt[5] = IPV6_TLV_PADN;
866 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800868 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
869 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
872/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900873 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900875 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 *
877 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900878 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 * doesn't match source of incoming packet.
880 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900881 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 * 1 if conflict,
883 * 0 else
884 **/
885
Eric Dumazet92113bf2012-05-18 08:14:11 +0200886static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000887ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
890}
891
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000892int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800893{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000894 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800895 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700896 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800897
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900898 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800899 struct net_device *ldev = NULL;
900
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100901 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800902 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100903 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800904
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700905 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000906 pr_warn("%s xmit: Local address not yet configured!\n",
907 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800908 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700909 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000910 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
911 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800912 else
913 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100914 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800915 }
916 return ret;
917}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000918EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900921 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900923 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900924 * @dsfield: dscp code for outer header
925 * @fl: flow of tunneled packet
926 * @encap_limit: encapsulation limit
927 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 *
929 * Description:
930 * Build new header and do some sanity checks on the packet before sending
931 * it.
932 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900933 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900934 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900935 * -1 fail
936 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 **/
938
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900939static int ip6_tnl_xmit2(struct sk_buff *skb,
940 struct net_device *dev,
941 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500942 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900943 int encap_limit,
944 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800946 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800947 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700948 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700949 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800950 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400951 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct net_device *tdev;
953 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700954 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900956 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400958 if (!fl6->flowi6_mark)
959 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000960 if (!dst) {
961 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Eric Dumazet89b02122011-07-28 04:32:25 +0000963 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700964 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000965 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
966 if (IS_ERR(ndst)) {
967 err = PTR_ERR(ndst);
968 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800969 goto tx_err_link_failure;
970 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000971 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 tdev = dst->dev;
975
976 if (tdev == dev) {
977 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000978 net_warn_ratelimited("%s: Local routing loop detected!\n",
979 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto tx_err_dst_release;
981 }
982 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800983 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 max_headroom += 8;
985 mtu -= 8;
986 }
987 if (mtu < IPV6_MIN_MTU)
988 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000989 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700990 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900992 *pmtu = mtu;
993 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 goto tx_err_dst_release;
995 }
996
997 /*
998 * Okay, now see if we can stuff it in the buffer as-is.
999 */
1000 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001001
Patrick McHardycfbba492007-07-09 15:33:40 -07001002 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1003 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1007 goto tx_err_dst_release;
1008
1009 if (skb->sk)
1010 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001011 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 skb = new_skb;
1013 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001014 skb_dst_drop(skb);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001015 if (fl6->flowi6_mark) {
1016 skb_dst_set(skb, dst);
1017 ndst = NULL;
1018 } else {
1019 skb_dst_set_noref(skb, dst);
1020 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001021 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
David S. Miller4c9483b2011-03-12 16:22:43 -05001023 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001024 if (encap_limit >= 0) {
1025 init_tel_txopt(&opt, encap_limit);
1026 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1027 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001028 skb_push(skb, sizeof(struct ipv6hdr));
1029 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001030 ipv6h = ipv6_hdr(skb);
YOSHIFUJI Hideaki / 吉藤英明3e4e4c12013-01-13 05:01:39 +00001031 ip6_flow_hdr(ipv6h, INET_ECN_encapsulate(0, dsfield), fl6->flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 ipv6h->hop_limit = t->parms.hop_limit;
1033 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001034 ipv6h->saddr = fl6->saddr;
1035 ipv6h->daddr = fl6->daddr;
Cong Wange8f72ea2013-03-09 23:00:39 +00001036 ip6tunnel_xmit(skb, dev);
Eric Dumazet89b02122011-07-28 04:32:25 +00001037 if (ndst)
1038 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return 0;
1040tx_err_link_failure:
1041 stats->tx_carrier_errors++;
1042 dst_link_failure(skb);
1043tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001044 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001045 return err;
1046}
1047
1048static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001049ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1050{
1051 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001052 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001053 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001054 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001055 __u8 dsfield;
1056 __u32 mtu;
1057 int err;
1058
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001059 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1060 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001061 return -1;
1062
1063 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1064 encap_limit = t->parms.encap_limit;
1065
David S. Miller4c9483b2011-03-12 16:22:43 -05001066 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1067 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001068
1069 dsfield = ipv4_get_dsfield(iph);
1070
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001071 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001072 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001073 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001074 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1075 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001076
David S. Miller4c9483b2011-03-12 16:22:43 -05001077 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001078 if (err != 0) {
1079 /* XXX: send ICMP error even if DF is not set. */
1080 if (err == -EMSGSIZE)
1081 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1082 htonl(mtu));
1083 return -1;
1084 }
1085
1086 return 0;
1087}
1088
1089static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001090ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1091{
1092 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001093 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001094 int encap_limit = -1;
1095 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001096 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001097 __u8 dsfield;
1098 __u32 mtu;
1099 int err;
1100
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001101 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1102 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001103 return -1;
1104
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001105 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001106 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001107 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001108 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001109 if (tel->encap_limit == 0) {
1110 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001111 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001112 return -1;
1113 }
1114 encap_limit = tel->encap_limit - 1;
1115 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1116 encap_limit = t->parms.encap_limit;
1117
David S. Miller4c9483b2011-03-12 16:22:43 -05001118 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1119 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001120
1121 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001122 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001123 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001124 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
David S. Miller4c9483b2011-03-12 16:22:43 -05001125 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001126 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1127 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001128
David S. Miller4c9483b2011-03-12 16:22:43 -05001129 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001130 if (err != 0) {
1131 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001132 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001133 return -1;
1134 }
1135
1136 return 0;
1137}
1138
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001139static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001140ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1141{
1142 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001143 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001144 int ret;
1145
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001146 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001147 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001148 ret = ip4ip6_tnl_xmit(skb, dev);
1149 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001150 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001151 ret = ip6ip6_tnl_xmit(skb, dev);
1152 break;
1153 default:
1154 goto tx_err;
1155 }
1156
1157 if (ret < 0)
1158 goto tx_err;
1159
Patrick McHardy6ed10652009-06-23 06:03:08 +00001160 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162tx_err:
1163 stats->tx_errors++;
1164 stats->tx_dropped++;
1165 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001166 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001169static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001172 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001173 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001175 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1176 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001179 fl6->saddr = p->laddr;
1180 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001181 fl6->flowi6_oif = p->link;
1182 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001185 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001187 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001189 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1190 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1193 dev->flags |= IFF_POINTOPOINT;
1194 else
1195 dev->flags &= ~IFF_POINTOPOINT;
1196
1197 dev->iflink = p->link;
1198
1199 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001200 int strict = (ipv6_addr_type(&p->raddr) &
1201 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1202
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001203 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1204 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001205 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 if (rt == NULL)
1208 return;
1209
David S. Millerd1918542011-12-28 20:19:20 -05001210 if (rt->dst.dev) {
1211 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 sizeof (struct ipv6hdr);
1213
David S. Millerd1918542011-12-28 20:19:20 -05001214 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001215 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1216 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 if (dev->mtu < IPV6_MIN_MTU)
1219 dev->mtu = IPV6_MIN_MTU;
1220 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001221 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223}
1224
1225/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001226 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * @t: tunnel to be changed
1228 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 *
1230 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001231 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 **/
1233
1234static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001235ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001237 t->parms.laddr = p->laddr;
1238 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 t->parms.flags = p->flags;
1240 t->parms.hop_limit = p->hop_limit;
1241 t->parms.encap_limit = p->encap_limit;
1242 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001243 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001244 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001245 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001246 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return 0;
1248}
1249
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001250static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1251{
1252 struct net *net = dev_net(t->dev);
1253 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1254 int err;
1255
1256 ip6_tnl_unlink(ip6n, t);
1257 synchronize_net();
1258 err = ip6_tnl_change(t, p);
1259 ip6_tnl_link(ip6n, t);
1260 netdev_state_change(t->dev);
1261 return err;
1262}
1263
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001264static void
1265ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1266{
1267 p->laddr = u->laddr;
1268 p->raddr = u->raddr;
1269 p->flags = u->flags;
1270 p->hop_limit = u->hop_limit;
1271 p->encap_limit = u->encap_limit;
1272 p->flowinfo = u->flowinfo;
1273 p->link = u->link;
1274 p->proto = u->proto;
1275 memcpy(p->name, u->name, sizeof(u->name));
1276}
1277
1278static void
1279ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1280{
1281 u->laddr = p->laddr;
1282 u->raddr = p->raddr;
1283 u->flags = p->flags;
1284 u->hop_limit = p->hop_limit;
1285 u->encap_limit = p->encap_limit;
1286 u->flowinfo = p->flowinfo;
1287 u->link = p->link;
1288 u->proto = p->proto;
1289 memcpy(u->name, p->name, sizeof(u->name));
1290}
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001293 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 * @dev: virtual device associated with tunnel
1295 * @ifr: parameters passed from userspace
1296 * @cmd: command to be performed
1297 *
1298 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001299 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001300 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 *
1302 * The possible commands are the following:
1303 * %SIOCGETTUNNEL: get tunnel parameters for device
1304 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1305 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1306 * %SIOCDELTUNNEL: delete tunnel
1307 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001308 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 * initialization, can be used for creating other tunnel devices.
1310 *
1311 * Return:
1312 * 0 on success,
1313 * %-EFAULT if unable to copy data to or from userspace,
1314 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1315 * %-EINVAL if passed tunnel parameters are invalid,
1316 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1317 * %-ENODEV if attempting to change or delete a nonexisting device
1318 **/
1319
1320static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001321ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
1323 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001325 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001327 struct net *net = dev_net(dev);
1328 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330 switch (cmd) {
1331 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001332 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001333 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 err = -EFAULT;
1335 break;
1336 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001337 ip6_tnl_parm_from_user(&p1, &p);
1338 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001339 } else {
1340 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001341 }
1342 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001343 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001344 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1346 err = -EFAULT;
1347 }
1348 break;
1349 case SIOCADDTUNNEL:
1350 case SIOCCHGTUNNEL:
1351 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001352 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001354 err = -EFAULT;
1355 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001357 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001358 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1359 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001361 ip6_tnl_parm_from_user(&p1, &p);
1362 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001363 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001364 if (t != NULL) {
1365 if (t->dev != dev) {
1366 err = -EEXIST;
1367 break;
1368 }
1369 } else
1370 t = netdev_priv(dev);
1371
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001372 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001374 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001376 ip6_tnl_parm_to_user(&p, &t->parms);
1377 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001378 err = -EFAULT;
1379
1380 } else
1381 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 break;
1383 case SIOCDELTUNNEL:
1384 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001385 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 break;
1387
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001388 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001389 err = -EFAULT;
1390 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001392 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001393 ip6_tnl_parm_from_user(&p1, &p);
1394 t = ip6_tnl_locate(net, &p1, 0);
1395 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001397 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001398 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001400 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001402 err = 0;
1403 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 break;
1405 default:
1406 err = -EINVAL;
1407 }
1408 return err;
1409}
1410
1411/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001412 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 * @dev: virtual device associated with tunnel
1414 * @new_mtu: the new mtu
1415 *
1416 * Return:
1417 * 0 on success,
1418 * %-EINVAL if mtu too small
1419 **/
1420
1421static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001422ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 if (new_mtu < IPV6_MIN_MTU) {
1425 return -EINVAL;
1426 }
1427 dev->mtu = new_mtu;
1428 return 0;
1429}
1430
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001431
1432static const struct net_device_ops ip6_tnl_netdev_ops = {
Steffen Klassert2d2a8382014-11-03 09:19:27 +01001433 .ndo_init = ip6_tnl_dev_init,
Eric Dumazet8560f222010-09-28 03:23:34 +00001434 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001435 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001436 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001437 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001438 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001439};
1440
Eric Dumazet8560f222010-09-28 03:23:34 +00001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001443 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * @dev: virtual device associated with tunnel
1445 *
1446 * Description:
1447 * Initialize function pointers and device parameters
1448 **/
1449
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001450static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Anders Franzen381601e2010-11-24 05:47:18 +00001452 struct ip6_tnl *t;
1453
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001454 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001455 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 dev->type = ARPHRD_TUNNEL6;
1458 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1459 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001460 t = netdev_priv(dev);
1461 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1462 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 dev->flags |= IFF_NOARP;
1464 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001465 dev->features |= NETIF_F_NETNS_LOCAL;
Anders Franzen7e223de2010-10-19 03:50:47 +00001466 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469
1470/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001471 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 * @dev: virtual device associated with tunnel
1473 **/
1474
Eric Dumazet8560f222010-09-28 03:23:34 +00001475static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001476ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Patrick McHardy2941a482006-01-08 22:05:26 -08001478 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 t->dev = dev;
Eric Dumazet8560f222010-09-28 03:23:34 +00001481 dev->tstats = alloc_percpu(struct pcpu_tstats);
1482 if (!dev->tstats)
1483 return -ENOMEM;
1484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001488 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 * @dev: virtual device associated with tunnel
1490 **/
1491
Eric Dumazet8560f222010-09-28 03:23:34 +00001492static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Patrick McHardy2941a482006-01-08 22:05:26 -08001494 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001495 int err = ip6_tnl_dev_init_gen(dev);
1496
1497 if (err)
1498 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001499 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
1503/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001504 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 * @dev: fallback device
1506 *
1507 * Return: 0
1508 **/
1509
Eric Dumazet8560f222010-09-28 03:23:34 +00001510static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Patrick McHardy2941a482006-01-08 22:05:26 -08001512 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001513 struct net *net = dev_net(dev);
1514 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001515
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001516 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001518
Eric Dumazetcf778b02012-01-12 04:41:32 +00001519 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001523static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1524{
1525 u8 proto;
1526
Susant Sahani4cba2462014-05-10 00:11:32 +05301527 if (!data || !data[IFLA_IPTUN_PROTO])
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001528 return 0;
1529
1530 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1531 if (proto != IPPROTO_IPV6 &&
1532 proto != IPPROTO_IPIP &&
1533 proto != 0)
1534 return -EINVAL;
1535
1536 return 0;
1537}
1538
1539static void ip6_tnl_netlink_parms(struct nlattr *data[],
1540 struct __ip6_tnl_parm *parms)
1541{
1542 memset(parms, 0, sizeof(*parms));
1543
1544 if (!data)
1545 return;
1546
1547 if (data[IFLA_IPTUN_LINK])
1548 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1549
1550 if (data[IFLA_IPTUN_LOCAL])
1551 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1552 sizeof(struct in6_addr));
1553
1554 if (data[IFLA_IPTUN_REMOTE])
1555 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1556 sizeof(struct in6_addr));
1557
1558 if (data[IFLA_IPTUN_TTL])
1559 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1560
1561 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1562 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1563
1564 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001565 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001566
1567 if (data[IFLA_IPTUN_FLAGS])
1568 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1569
1570 if (data[IFLA_IPTUN_PROTO])
1571 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1572}
1573
1574static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1575 struct nlattr *tb[], struct nlattr *data[])
1576{
1577 struct net *net = dev_net(dev);
1578 struct ip6_tnl *nt;
1579
1580 nt = netdev_priv(dev);
1581 ip6_tnl_netlink_parms(data, &nt->parms);
1582
1583 if (ip6_tnl_locate(net, &nt->parms, 0))
1584 return -EEXIST;
1585
1586 return ip6_tnl_create2(dev);
1587}
1588
1589static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1590 struct nlattr *data[])
1591{
1592 struct ip6_tnl *t;
1593 struct __ip6_tnl_parm p;
1594 struct net *net = dev_net(dev);
1595 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1596
1597 if (dev == ip6n->fb_tnl_dev)
1598 return -EINVAL;
1599
1600 ip6_tnl_netlink_parms(data, &p);
1601
1602 t = ip6_tnl_locate(net, &p, 0);
1603
1604 if (t) {
1605 if (t->dev != dev)
1606 return -EEXIST;
1607 } else
1608 t = netdev_priv(dev);
1609
1610 return ip6_tnl_update(t, &p);
1611}
1612
Nicolas Dichtel38c963f2014-01-31 09:24:06 +01001613static void ip6_tnl_dellink(struct net_device *dev, struct list_head *head)
1614{
1615 struct net *net = dev_net(dev);
1616 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1617
1618 if (dev != ip6n->fb_tnl_dev)
1619 unregister_netdevice_queue(dev, head);
1620}
1621
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001622static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001623{
1624 return
1625 /* IFLA_IPTUN_LINK */
1626 nla_total_size(4) +
1627 /* IFLA_IPTUN_LOCAL */
1628 nla_total_size(sizeof(struct in6_addr)) +
1629 /* IFLA_IPTUN_REMOTE */
1630 nla_total_size(sizeof(struct in6_addr)) +
1631 /* IFLA_IPTUN_TTL */
1632 nla_total_size(1) +
1633 /* IFLA_IPTUN_ENCAP_LIMIT */
1634 nla_total_size(1) +
1635 /* IFLA_IPTUN_FLOWINFO */
1636 nla_total_size(4) +
1637 /* IFLA_IPTUN_FLAGS */
1638 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001639 /* IFLA_IPTUN_PROTO */
1640 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001641 0;
1642}
1643
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001644static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001645{
1646 struct ip6_tnl *tunnel = netdev_priv(dev);
1647 struct __ip6_tnl_parm *parm = &tunnel->parms;
1648
1649 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1650 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001651 &parm->laddr) ||
Ding Zhifa42a012013-09-16 11:31:15 +02001652 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1653 &parm->raddr) ||
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001654 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1655 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1656 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001657 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1658 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001659 goto nla_put_failure;
1660 return 0;
1661
1662nla_put_failure:
1663 return -EMSGSIZE;
1664}
1665
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001666static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1667 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1668 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1669 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1670 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1671 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1672 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1673 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1674 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1675};
1676
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001677static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1678 .kind = "ip6tnl",
1679 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001680 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001681 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001682 .setup = ip6_tnl_dev_setup,
1683 .validate = ip6_tnl_validate,
1684 .newlink = ip6_tnl_newlink,
1685 .changelink = ip6_tnl_changelink,
Nicolas Dichtel38c963f2014-01-31 09:24:06 +01001686 .dellink = ip6_tnl_dellink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001687 .get_size = ip6_tnl_get_size,
1688 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001689};
1690
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001691static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001692 .handler = ip4ip6_rcv,
1693 .err_handler = ip4ip6_err,
1694 .priority = 1,
1695};
1696
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001697static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001698 .handler = ip6ip6_rcv,
1699 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001700 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701};
1702
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001703static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001704{
1705 int h;
1706 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001707 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001708
1709 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001710 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001711 while (t != NULL) {
1712 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001713 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001714 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001715 }
1716
Nicolas Dichtel89ed31c2014-01-31 09:24:05 +01001717 t = rtnl_dereference(ip6n->tnls_wc[0]);
1718 unregister_netdevice_queue(t->dev, &list);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001719 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001720}
1721
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001722static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001723{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001724 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001725 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001726 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001727
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001728 ip6n->tnls[0] = ip6n->tnls_wc;
1729 ip6n->tnls[1] = ip6n->tnls_r_l;
1730
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001731 err = -ENOMEM;
1732 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1733 ip6_tnl_dev_setup);
1734
1735 if (!ip6n->fb_tnl_dev)
1736 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001737 dev_net_set(ip6n->fb_tnl_dev, net);
Nicolas Dichtel506cdb82013-10-01 18:05:00 +02001738 ip6n->fb_tnl_dev->rtnl_link_ops = &ip6_link_ops;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001739
Eric Dumazet8560f222010-09-28 03:23:34 +00001740 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1741 if (err < 0)
1742 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001743
1744 err = register_netdev(ip6n->fb_tnl_dev);
1745 if (err < 0)
1746 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001747
1748 t = netdev_priv(ip6n->fb_tnl_dev);
1749
1750 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001751 return 0;
1752
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001753err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001754 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001755err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001756 return err;
1757}
1758
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001759static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001760{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001761 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001762
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001763 rtnl_lock();
1764 ip6_tnl_destroy_tunnels(ip6n);
1765 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001766}
1767
1768static struct pernet_operations ip6_tnl_net_ops = {
1769 .init = ip6_tnl_init_net,
1770 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001771 .id = &ip6_tnl_net_id,
1772 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001773};
1774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775/**
1776 * ip6_tunnel_init - register protocol and reserve needed resources
1777 *
1778 * Return: 0 on success
1779 **/
1780
1781static int __init ip6_tunnel_init(void)
1782{
1783 int err;
1784
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001785 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001786 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001787 goto out_pernet;
1788
1789 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1790 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001791 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001792 goto out_ip4ip6;
1793 }
1794
1795 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1796 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001797 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001798 goto out_ip6ip6;
1799 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001800 err = rtnl_link_register(&ip6_link_ops);
1801 if (err < 0)
1802 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001805
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001806rtnl_link_failed:
1807 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001808out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001809 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001810out_ip4ip6:
1811 unregister_pernet_device(&ip6_tnl_net_ops);
1812out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return err;
1814}
1815
1816/**
1817 * ip6_tunnel_cleanup - free resources and unregister protocol
1818 **/
1819
1820static void __exit ip6_tunnel_cleanup(void)
1821{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001822 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001823 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001824 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001825
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001826 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001827 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001829 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
1832module_init(ip6_tunnel_init);
1833module_exit(ip6_tunnel_cleanup);