blob: a14f28b280f57a040e3d499955419f6c949c5c93 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/uaccess.h>
Arun Sharma600634972011-07-26 16:09:06 -070046#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090048#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/ip.h>
50#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ip6_route.h>
52#include <net/addrconf.h>
53#include <net/ip6_tunnel.h>
54#include <net/xfrm.h>
55#include <net/dsfield.h>
56#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070057#include <net/net_namespace.h>
58#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090061MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_LICENSE("GPL");
stephen hemminger6dfbd872011-03-10 11:43:19 +000063MODULE_ALIAS_NETDEV("ip6tnl0");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#ifdef IP6_TNL_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +000066#define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#else
68#define IP6_TNL_TRACE(x...) do {;} while(0)
69#endif
70
71#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090072#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Dumazetddbe5032012-07-18 08:11:12 +000074#define HASH_SIZE_SHIFT 5
75#define HASH_SIZE (1 << HASH_SIZE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +000077static bool log_ecn_error = true;
78module_param(log_ecn_error, bool, 0644);
79MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
80
Eric Dumazetddbe5032012-07-18 08:11:12 +000081static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
82{
83 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
84
85 return hash_32(hash, HASH_SIZE_SHIFT);
86}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Dumazet8560f222010-09-28 03:23:34 +000088static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090089static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000090static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Eric Dumazetf99189b2009-11-17 10:42:49 +000092static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070093struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070094 /* the IPv6 tunnel fallback device */
95 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070096 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000097 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
98 struct ip6_tnl __rcu *tnls_wc[1];
99 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -0700100};
101
Eric Dumazet8560f222010-09-28 03:23:34 +0000102static struct net_device_stats *ip6_get_stats(struct net_device *dev)
103{
104 struct pcpu_tstats sum = { 0 };
105 int i;
106
107 for_each_possible_cpu(i) {
108 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
109
110 sum.rx_packets += tstats->rx_packets;
111 sum.rx_bytes += tstats->rx_bytes;
112 sum.tx_packets += tstats->tx_packets;
113 sum.tx_bytes += tstats->tx_bytes;
114 }
115 dev->stats.rx_packets = sum.rx_packets;
116 dev->stats.rx_bytes = sum.rx_bytes;
117 dev->stats.tx_packets = sum.tx_packets;
118 dev->stats.tx_bytes = sum.tx_bytes;
119 return &dev->stats;
120}
121
Eric Dumazet2922bc82009-10-23 06:34:34 +0000122/*
Eric Dumazet94767632010-09-15 20:25:34 +0000123 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000124 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000126struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 struct dst_entry *dst = t->dst_cache;
129
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900130 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 dst->ops->check(dst, t->dst_cookie) == NULL) {
132 t->dst_cache = NULL;
133 dst_release(dst);
134 return NULL;
135 }
136
137 return dst;
138}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000139EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000141void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 dst_release(t->dst_cache);
144 t->dst_cache = NULL;
145}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000146EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000148void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct rt6_info *rt = (struct rt6_info *) dst;
151 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
152 dst_release(t->dst_cache);
153 t->dst_cache = dst;
154}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000155EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900158 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900159 * @remote: the address of the tunnel exit-point
160 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900162 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900164 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * else %NULL
166 **/
167
Eric Dumazet2922bc82009-10-23 06:34:34 +0000168#define for_each_ip6_tunnel_rcu(start) \
169 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000172ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000174 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700176 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Eric Dumazetddbe5032012-07-18 08:11:12 +0000178 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (ipv6_addr_equal(local, &t->parms.laddr) &&
180 ipv6_addr_equal(remote, &t->parms.raddr) &&
181 (t->dev->flags & IFF_UP))
182 return t;
183 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000184 t = rcu_dereference(ip6n->tnls_wc[0]);
185 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return t;
187
188 return NULL;
189}
190
191/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900192 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900193 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *
195 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900196 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * &struct in6_addr entries laddr and raddr in @p.
198 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900199 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 **/
201
Eric Dumazet94767632010-09-15 20:25:34 +0000202static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000203ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000205 const struct in6_addr *remote = &p->raddr;
206 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000207 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 int prio = 0;
209
210 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
211 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000212 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700214 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900218 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * @t: tunnel to be added
220 **/
221
222static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700223ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Eric Dumazet94767632010-09-15 20:25:34 +0000225 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Eric Dumazetcf778b02012-01-12 04:41:32 +0000227 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
228 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900232 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * @t: tunnel to be removed
234 **/
235
236static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700237ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Eric Dumazet94767632010-09-15 20:25:34 +0000239 struct ip6_tnl __rcu **tp;
240 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Eric Dumazet94767632010-09-15 20:25:34 +0000242 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
243 (iter = rtnl_dereference(*tp)) != NULL;
244 tp = &iter->next) {
245 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000246 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 break;
248 }
249 }
250}
251
Eric Dumazet8560f222010-09-28 03:23:34 +0000252static void ip6_dev_free(struct net_device *dev)
253{
254 free_percpu(dev->tstats);
255 free_netdev(dev);
256}
257
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000258static int ip6_tnl_create2(struct net_device *dev)
259{
260 struct ip6_tnl *t = netdev_priv(dev);
261 struct net *net = dev_net(dev);
262 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
263 int err;
264
265 t = netdev_priv(dev);
266 err = ip6_tnl_dev_init(dev);
267 if (err < 0)
268 goto out;
269
270 err = register_netdevice(dev);
271 if (err < 0)
272 goto out;
273
274 strcpy(t->parms.name, dev->name);
275 dev->rtnl_link_ops = &ip6_link_ops;
276
277 dev_hold(dev);
278 ip6_tnl_link(ip6n, t);
279 return 0;
280
281out:
282 return err;
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000286 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * @p: tunnel parameters
288 * @pt: pointer to new tunnel
289 *
290 * Description:
291 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900292 *
293 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800294 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 **/
296
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000297static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct net_device *dev;
300 struct ip6_tnl *t;
301 char name[IFNAMSIZ];
302 int err;
303
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800304 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800306 else
307 sprintf(name, "ip6tnl%%d");
308
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900309 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800311 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700313 dev_net_set(dev, net);
314
Patrick McHardy2941a482006-01-08 22:05:26 -0800315 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 t->parms = *p;
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000317 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000318 if (err < 0)
319 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Ville Nuorvala567131a2006-11-24 17:05:41 -0800321 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800322
323failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000324 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800325failed:
326 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900330 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900331 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * @create: != 0 if allowed to create new tunnel if no match found
333 *
334 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900335 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * based on @parms. If this is unsuccessful, but @create is set a new
337 * tunnel device is created and registered for use.
338 *
339 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800340 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 **/
342
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700343static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000344 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000346 const struct in6_addr *remote = &p->raddr;
347 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000348 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700350 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Eric Dumazet94767632010-09-15 20:25:34 +0000352 for (tp = ip6_tnl_bucket(ip6n, p);
353 (t = rtnl_dereference(*tp)) != NULL;
354 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800356 ipv6_addr_equal(remote, &t->parms.raddr))
357 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800360 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700361 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900365 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900367 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900369 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 **/
371
372static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900373ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Patrick McHardy2941a482006-01-08 22:05:26 -0800375 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700376 struct net *net = dev_net(dev);
377 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Eric Dumazet94767632010-09-15 20:25:34 +0000379 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000380 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000381 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700382 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 ip6_tnl_dst_reset(t);
384 dev_put(dev);
385}
386
387/**
388 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
389 * @skb: received socket buffer
390 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900391 * Return:
392 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 * else index to encapsulation limit
394 **/
395
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000396__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000398 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 __u8 nexthdr = ipv6h->nexthdr;
400 __u16 off = sizeof (*ipv6h);
401
402 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
403 __u16 optlen = 0;
404 struct ipv6_opt_hdr *hdr;
405 if (raw + off + sizeof (*hdr) > skb->data &&
406 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
407 break;
408
409 hdr = (struct ipv6_opt_hdr *) (raw + off);
410 if (nexthdr == NEXTHDR_FRAGMENT) {
411 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
412 if (frag_hdr->frag_off)
413 break;
414 optlen = 8;
415 } else if (nexthdr == NEXTHDR_AUTH) {
416 optlen = (hdr->hdrlen + 2) << 2;
417 } else {
418 optlen = ipv6_optlen(hdr);
419 }
420 if (nexthdr == NEXTHDR_DEST) {
421 __u16 i = off + 2;
422 while (1) {
423 struct ipv6_tlv_tnl_enc_lim *tel;
424
425 /* No more room for encapsulation limit */
426 if (i + sizeof (*tel) > off + optlen)
427 break;
428
429 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
430 /* return index of option if found and valid */
431 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
432 tel->length == 1)
433 return i;
434 /* else jump to next option */
435 if (tel->type)
436 i += tel->length + 2;
437 else
438 i++;
439 }
440 }
441 nexthdr = hdr->nexthdr;
442 off += optlen;
443 }
444 return 0;
445}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000446EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900449 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 *
451 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900452 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * to the specifications in RFC 2473.
454 **/
455
Herbert Xud2acc342006-03-28 01:12:13 -0800456static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900457ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700458 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000460 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct ip6_tnl *t;
462 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700463 u8 rel_type = ICMPV6_DEST_UNREACH;
464 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 __u32 rel_info = 0;
466 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800467 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900469 /* If the packet doesn't contain the original IPv6 header we are
470 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 processing of the error. */
472
Eric Dumazet2922bc82009-10-23 06:34:34 +0000473 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700474 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700475 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto out;
477
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900478 if (t->parms.proto != ipproto && t->parms.proto != 0)
479 goto out;
480
Herbert Xud2acc342006-03-28 01:12:13 -0800481 err = 0;
482
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900483 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 __u32 teli;
485 struct ipv6_tlv_tnl_enc_lim *tel;
486 __u32 mtu;
487 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000488 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
489 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 rel_msg = 1;
491 break;
492 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900493 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000494 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
495 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 rel_msg = 1;
497 }
498 break;
499 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800500 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900501 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000502 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Al Viro704eae12007-07-26 17:33:29 +0100504 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
506 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000507 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
508 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 rel_msg = 1;
510 }
Joe Perchese87cc472012-05-13 21:56:26 +0000511 } else {
512 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
513 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515 break;
516 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100517 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (mtu < IPV6_MIN_MTU)
519 mtu = IPV6_MIN_MTU;
520 t->dev->mtu = mtu;
521
Al Virocc6cdac2006-02-18 16:02:18 -0500522 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 rel_type = ICMPV6_PKT_TOOBIG;
524 rel_code = 0;
525 rel_info = mtu;
526 rel_msg = 1;
527 }
528 break;
529 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900530
531 *type = rel_type;
532 *code = rel_code;
533 *info = rel_info;
534 *msg = rel_msg;
535
536out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000537 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900538 return err;
539}
540
541static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900542ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700543 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900544{
545 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700546 u8 rel_type = type;
547 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100548 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900549 int err;
550 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000551 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900552 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700553 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900554
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900555 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
556 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900557 if (err < 0)
558 return err;
559
560 if (rel_msg == 0)
561 return 0;
562
563 switch (rel_type) {
564 case ICMPV6_DEST_UNREACH:
565 if (rel_code != ICMPV6_ADDR_UNREACH)
566 return 0;
567 rel_type = ICMP_DEST_UNREACH;
568 rel_code = ICMP_HOST_UNREACH;
569 break;
570 case ICMPV6_PKT_TOOBIG:
571 if (rel_code != 0)
572 return 0;
573 rel_type = ICMP_DEST_UNREACH;
574 rel_code = ICMP_FRAG_NEEDED;
575 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700576 case NDISC_REDIRECT:
577 rel_type = ICMP_REDIRECT;
578 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900579 default:
580 return 0;
581 }
582
583 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
584 return 0;
585
586 skb2 = skb_clone(skb, GFP_ATOMIC);
587 if (!skb2)
588 return 0;
589
Eric Dumazetadf30902009-06-02 05:19:30 +0000590 skb_dst_drop(skb2);
591
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900592 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700593 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700594 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900595
596 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700597 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500598 eiph->saddr, 0,
599 0, 0,
600 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800601 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900602 goto out;
603
Changli Gaod8d1f302010-06-10 23:31:35 -0700604 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900605
606 /* route "incoming" packet */
607 if (rt->rt_flags & RTCF_LOCAL) {
608 ip_rt_put(rt);
609 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700610 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500611 eiph->daddr, eiph->saddr,
612 0, 0,
613 IPPROTO_IPIP,
614 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800615 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700616 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800617 if (!IS_ERR(rt))
618 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900619 goto out;
620 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800621 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900622 } else {
623 ip_rt_put(rt);
624 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
625 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000626 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900627 goto out;
628 }
629
630 /* change mtu on this route */
631 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000632 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900633 goto out;
634
David S. Miller6700c272012-07-17 03:29:28 -0700635 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900636 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700637 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700638 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900639
Al Viro704eae12007-07-26 17:33:29 +0100640 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900641
642out:
643 kfree_skb(skb2);
644 return 0;
645}
646
647static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900648ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700649 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900650{
651 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700652 u8 rel_type = type;
653 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100654 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900655 int err;
656
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900657 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
658 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900659 if (err < 0)
660 return err;
661
662 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 struct rt6_info *rt;
664 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Eric Dumazetadf30902009-06-02 05:19:30 +0000669 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700671 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700674 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
675 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
David S. Millerd1918542011-12-28 20:19:20 -0500677 if (rt && rt->dst.dev)
678 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000680 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Amerigo Wang94e187c2012-10-29 00:13:19 +0000682 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 kfree_skb(skb2);
685 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900686
687 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000690static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
691 const struct ipv6hdr *ipv6h,
692 struct sk_buff *skb)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900693{
694 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
695
696 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700697 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900698
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000699 return IP6_ECN_decapsulate(ipv6h, skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900700}
701
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000702static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
703 const struct ipv6hdr *ipv6h,
704 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900706 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800707 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000709 return IP6_ECN_decapsulate(ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900711
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000712__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000713 const struct in6_addr *laddr,
714 const struct in6_addr *raddr)
715{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000716 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000717 int ltype = ipv6_addr_type(laddr);
718 int rtype = ipv6_addr_type(raddr);
719 __u32 flags = 0;
720
721 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
722 flags = IP6_TNL_F_CAP_PER_PACKET;
723 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
724 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
725 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
726 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
727 if (ltype&IPV6_ADDR_UNICAST)
728 flags |= IP6_TNL_F_CAP_XMIT;
729 if (rtype&IPV6_ADDR_UNICAST)
730 flags |= IP6_TNL_F_CAP_RCV;
731 }
732 return flags;
733}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000734EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000735
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100736/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000737int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000738 const struct in6_addr *laddr,
739 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800740{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000741 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800742 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700743 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800744
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000745 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
746 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
747 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900748 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800749
750 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100751 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800752
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000753 if ((ipv6_addr_is_multicast(laddr) ||
754 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
755 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800756 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800757 }
758 return ret;
759}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000760EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900763 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900765 * @protocol: ethernet protocol ID
766 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 *
768 * Return: 0
769 **/
770
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900771static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900772 __u8 ipproto,
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000773 int (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
774 const struct ipv6hdr *ipv6h,
775 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000778 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000779 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Eric Dumazet2922bc82009-10-23 06:34:34 +0000781 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700783 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700784 &ipv6h->daddr)) != NULL) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000785 struct pcpu_tstats *tstats;
786
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900787 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000788 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900789 goto discard;
790 }
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000793 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700794 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000797 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700798 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000799 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 goto discard;
801 }
802 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700803 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700804 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900805 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 skb->pkt_type = PACKET_HOST;
807 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700808
Nicolas Dichtelf4e0b4c2012-11-27 03:07:11 +0000809 __skb_tunnel_rx(skb, t->dev);
810
811 err = dscp_ecn_decapsulate(t, ipv6h, skb);
812 if (unlikely(err)) {
813 if (log_ecn_error)
814 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
815 &ipv6h->saddr,
816 ipv6_get_dsfield(ipv6h));
817 if (err > 1) {
818 ++t->dev->stats.rx_frame_errors;
819 ++t->dev->stats.rx_errors;
820 rcu_read_unlock();
821 goto discard;
822 }
823 }
824
Eric Dumazet8560f222010-09-28 03:23:34 +0000825 tstats = this_cpu_ptr(t->dev->tstats);
826 tstats->rx_packets++;
827 tstats->rx_bytes += skb->len;
828
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000829 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000830
Eric Dumazet2922bc82009-10-23 06:34:34 +0000831 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return 0;
833 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000834 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700836
837discard:
838 kfree_skb(skb);
839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900842static int ip4ip6_rcv(struct sk_buff *skb)
843{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900844 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
845 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900846}
847
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900848static int ip6ip6_rcv(struct sk_buff *skb)
849{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900850 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
851 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900852}
853
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800854struct ipv6_tel_txoption {
855 struct ipv6_txoptions ops;
856 __u8 dst_opt[8];
857};
858
859static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800861 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800863 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
864 opt->dst_opt[3] = 1;
865 opt->dst_opt[4] = encap_limit;
866 opt->dst_opt[5] = IPV6_TLV_PADN;
867 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800869 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
870 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900874 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900876 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 *
878 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900879 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * doesn't match source of incoming packet.
881 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900882 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 * 1 if conflict,
884 * 0 else
885 **/
886
Eric Dumazet92113bf2012-05-18 08:14:11 +0200887static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000888ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
891}
892
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000893int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800894{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000895 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800896 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700897 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800898
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900899 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800900 struct net_device *ldev = NULL;
901
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100902 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800903 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100904 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800905
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700906 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000907 pr_warn("%s xmit: Local address not yet configured!\n",
908 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800909 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700910 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000911 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
912 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800913 else
914 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100915 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800916 }
917 return ret;
918}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000919EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900922 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900924 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900925 * @dsfield: dscp code for outer header
926 * @fl: flow of tunneled packet
927 * @encap_limit: encapsulation limit
928 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 *
930 * Description:
931 * Build new header and do some sanity checks on the packet before sending
932 * it.
933 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900934 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900935 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900936 * -1 fail
937 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 **/
939
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900940static int ip6_tnl_xmit2(struct sk_buff *skb,
941 struct net_device *dev,
942 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500943 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900944 int encap_limit,
945 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800947 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800948 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700949 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700950 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800951 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400952 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 struct net_device *tdev;
954 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700955 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900957 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400960 if (!fl6->flowi6_mark)
961 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000962 if (!dst) {
963 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Eric Dumazet89b02122011-07-28 04:32:25 +0000965 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700966 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000967 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
968 if (IS_ERR(ndst)) {
969 err = PTR_ERR(ndst);
970 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800971 goto tx_err_link_failure;
972 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000973 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 tdev = dst->dev;
977
978 if (tdev == dev) {
979 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000980 net_warn_ratelimited("%s: Local routing loop detected!\n",
981 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 goto tx_err_dst_release;
983 }
984 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800985 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 max_headroom += 8;
987 mtu -= 8;
988 }
989 if (mtu < IPV6_MIN_MTU)
990 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000991 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700992 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900994 *pmtu = mtu;
995 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto tx_err_dst_release;
997 }
998
999 /*
1000 * Okay, now see if we can stuff it in the buffer as-is.
1001 */
1002 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001003
Patrick McHardycfbba492007-07-09 15:33:40 -07001004 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
1005 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
1009 goto tx_err_dst_release;
1010
1011 if (skb->sk)
1012 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +00001013 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 skb = new_skb;
1015 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001016 skb_dst_drop(skb);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001017 if (fl6->flowi6_mark) {
1018 skb_dst_set(skb, dst);
1019 ndst = NULL;
1020 } else {
1021 skb_dst_set_noref(skb, dst);
1022 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001023 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
David S. Miller4c9483b2011-03-12 16:22:43 -05001025 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001026 if (encap_limit >= 0) {
1027 init_tel_txopt(&opt, encap_limit);
1028 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1029 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001030 skb_push(skb, sizeof(struct ipv6hdr));
1031 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001032 ipv6h = ipv6_hdr(skb);
David S. Miller4c9483b2011-03-12 16:22:43 -05001033 *(__be32*)ipv6h = fl6->flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 dsfield = INET_ECN_encapsulate(0, dsfield);
1035 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 ipv6h->hop_limit = t->parms.hop_limit;
1037 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001038 ipv6h->saddr = fl6->saddr;
1039 ipv6h->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 nf_reset(skb);
1041 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -08001042 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -02001044 if (net_xmit_eval(err) == 0) {
Eric Dumazet8560f222010-09-28 03:23:34 +00001045 struct pcpu_tstats *tstats = this_cpu_ptr(t->dev->tstats);
1046
1047 tstats->tx_bytes += pkt_len;
1048 tstats->tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 } else {
1050 stats->tx_errors++;
1051 stats->tx_aborted_errors++;
1052 }
Eric Dumazet89b02122011-07-28 04:32:25 +00001053 if (ndst)
1054 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return 0;
1056tx_err_link_failure:
1057 stats->tx_carrier_errors++;
1058 dst_link_failure(skb);
1059tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001060 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001061 return err;
1062}
1063
1064static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001065ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1066{
1067 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001068 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001069 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001070 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001071 __u8 dsfield;
1072 __u32 mtu;
1073 int err;
1074
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001075 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1076 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001077 return -1;
1078
1079 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1080 encap_limit = t->parms.encap_limit;
1081
David S. Miller4c9483b2011-03-12 16:22:43 -05001082 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1083 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001084
1085 dsfield = ipv4_get_dsfield(iph);
1086
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001087 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001088 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001089 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001090 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1091 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001092
David S. Miller4c9483b2011-03-12 16:22:43 -05001093 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001094 if (err != 0) {
1095 /* XXX: send ICMP error even if DF is not set. */
1096 if (err == -EMSGSIZE)
1097 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1098 htonl(mtu));
1099 return -1;
1100 }
1101
1102 return 0;
1103}
1104
1105static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001106ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1107{
1108 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001109 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001110 int encap_limit = -1;
1111 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001112 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001113 __u8 dsfield;
1114 __u32 mtu;
1115 int err;
1116
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001117 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1118 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001119 return -1;
1120
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001121 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001122 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001123 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001124 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001125 if (tel->encap_limit == 0) {
1126 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001127 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001128 return -1;
1129 }
1130 encap_limit = tel->encap_limit - 1;
1131 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1132 encap_limit = t->parms.encap_limit;
1133
David S. Miller4c9483b2011-03-12 16:22:43 -05001134 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1135 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001136
1137 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001138 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001139 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001140 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
David S. Miller4c9483b2011-03-12 16:22:43 -05001141 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001142 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1143 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001144
David S. Miller4c9483b2011-03-12 16:22:43 -05001145 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001146 if (err != 0) {
1147 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001148 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001149 return -1;
1150 }
1151
1152 return 0;
1153}
1154
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001155static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001156ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1157{
1158 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001159 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001160 int ret;
1161
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001162 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001163 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001164 ret = ip4ip6_tnl_xmit(skb, dev);
1165 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001166 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001167 ret = ip6ip6_tnl_xmit(skb, dev);
1168 break;
1169 default:
1170 goto tx_err;
1171 }
1172
1173 if (ret < 0)
1174 goto tx_err;
1175
Patrick McHardy6ed10652009-06-23 06:03:08 +00001176 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178tx_err:
1179 stats->tx_errors++;
1180 stats->tx_dropped++;
1181 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001182 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001185static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001188 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001189 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001191 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1192 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001195 fl6->saddr = p->laddr;
1196 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001197 fl6->flowi6_oif = p->link;
1198 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001201 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001203 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001205 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1206 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1209 dev->flags |= IFF_POINTOPOINT;
1210 else
1211 dev->flags &= ~IFF_POINTOPOINT;
1212
1213 dev->iflink = p->link;
1214
1215 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001216 int strict = (ipv6_addr_type(&p->raddr) &
1217 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1218
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001219 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1220 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001221 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (rt == NULL)
1224 return;
1225
David S. Millerd1918542011-12-28 20:19:20 -05001226 if (rt->dst.dev) {
1227 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 sizeof (struct ipv6hdr);
1229
David S. Millerd1918542011-12-28 20:19:20 -05001230 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001231 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1232 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 if (dev->mtu < IPV6_MIN_MTU)
1235 dev->mtu = IPV6_MIN_MTU;
1236 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001237 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239}
1240
1241/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001242 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 * @t: tunnel to be changed
1244 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 *
1246 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001247 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 **/
1249
1250static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001251ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001253 t->parms.laddr = p->laddr;
1254 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 t->parms.flags = p->flags;
1256 t->parms.hop_limit = p->hop_limit;
1257 t->parms.encap_limit = p->encap_limit;
1258 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001259 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001260 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001261 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001262 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return 0;
1264}
1265
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001266static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1267{
1268 struct net *net = dev_net(t->dev);
1269 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1270 int err;
1271
1272 ip6_tnl_unlink(ip6n, t);
1273 synchronize_net();
1274 err = ip6_tnl_change(t, p);
1275 ip6_tnl_link(ip6n, t);
1276 netdev_state_change(t->dev);
1277 return err;
1278}
1279
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001280static void
1281ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1282{
1283 p->laddr = u->laddr;
1284 p->raddr = u->raddr;
1285 p->flags = u->flags;
1286 p->hop_limit = u->hop_limit;
1287 p->encap_limit = u->encap_limit;
1288 p->flowinfo = u->flowinfo;
1289 p->link = u->link;
1290 p->proto = u->proto;
1291 memcpy(p->name, u->name, sizeof(u->name));
1292}
1293
1294static void
1295ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1296{
1297 u->laddr = p->laddr;
1298 u->raddr = p->raddr;
1299 u->flags = p->flags;
1300 u->hop_limit = p->hop_limit;
1301 u->encap_limit = p->encap_limit;
1302 u->flowinfo = p->flowinfo;
1303 u->link = p->link;
1304 u->proto = p->proto;
1305 memcpy(u->name, p->name, sizeof(u->name));
1306}
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001309 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 * @dev: virtual device associated with tunnel
1311 * @ifr: parameters passed from userspace
1312 * @cmd: command to be performed
1313 *
1314 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001315 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001316 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 *
1318 * The possible commands are the following:
1319 * %SIOCGETTUNNEL: get tunnel parameters for device
1320 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1321 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1322 * %SIOCDELTUNNEL: delete tunnel
1323 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001324 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 * initialization, can be used for creating other tunnel devices.
1326 *
1327 * Return:
1328 * 0 on success,
1329 * %-EFAULT if unable to copy data to or from userspace,
1330 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1331 * %-EINVAL if passed tunnel parameters are invalid,
1332 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1333 * %-ENODEV if attempting to change or delete a nonexisting device
1334 **/
1335
1336static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001337ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001341 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001343 struct net *net = dev_net(dev);
1344 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 switch (cmd) {
1347 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001348 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001349 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 err = -EFAULT;
1351 break;
1352 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001353 ip6_tnl_parm_from_user(&p1, &p);
1354 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001355 } else {
1356 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001357 }
1358 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001359 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001360 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1362 err = -EFAULT;
1363 }
1364 break;
1365 case SIOCADDTUNNEL:
1366 case SIOCCHGTUNNEL:
1367 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001368 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001370 err = -EFAULT;
1371 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001373 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001374 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1375 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001377 ip6_tnl_parm_from_user(&p1, &p);
1378 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001379 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001380 if (t != NULL) {
1381 if (t->dev != dev) {
1382 err = -EEXIST;
1383 break;
1384 }
1385 } else
1386 t = netdev_priv(dev);
1387
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001388 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001390 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001392 ip6_tnl_parm_to_user(&p, &t->parms);
1393 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001394 err = -EFAULT;
1395
1396 } else
1397 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 break;
1399 case SIOCDELTUNNEL:
1400 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001401 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 break;
1403
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001404 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001405 err = -EFAULT;
1406 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001408 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001409 ip6_tnl_parm_from_user(&p1, &p);
1410 t = ip6_tnl_locate(net, &p1, 0);
1411 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001413 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001414 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001416 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001418 err = 0;
1419 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 break;
1421 default:
1422 err = -EINVAL;
1423 }
1424 return err;
1425}
1426
1427/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001428 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 * @dev: virtual device associated with tunnel
1430 * @new_mtu: the new mtu
1431 *
1432 * Return:
1433 * 0 on success,
1434 * %-EINVAL if mtu too small
1435 **/
1436
1437static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001438ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
1440 if (new_mtu < IPV6_MIN_MTU) {
1441 return -EINVAL;
1442 }
1443 dev->mtu = new_mtu;
1444 return 0;
1445}
1446
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001447
1448static const struct net_device_ops ip6_tnl_netdev_ops = {
Eric Dumazet8560f222010-09-28 03:23:34 +00001449 .ndo_uninit = ip6_tnl_dev_uninit,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001450 .ndo_start_xmit = ip6_tnl_xmit,
Eric Dumazet8560f222010-09-28 03:23:34 +00001451 .ndo_do_ioctl = ip6_tnl_ioctl,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001452 .ndo_change_mtu = ip6_tnl_change_mtu,
Eric Dumazet8560f222010-09-28 03:23:34 +00001453 .ndo_get_stats = ip6_get_stats,
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001454};
1455
Eric Dumazet8560f222010-09-28 03:23:34 +00001456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001458 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 * @dev: virtual device associated with tunnel
1460 *
1461 * Description:
1462 * Initialize function pointers and device parameters
1463 **/
1464
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001465static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
Anders Franzen381601e2010-11-24 05:47:18 +00001467 struct ip6_tnl *t;
1468
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001469 dev->netdev_ops = &ip6_tnl_netdev_ops;
Eric Dumazet8560f222010-09-28 03:23:34 +00001470 dev->destructor = ip6_dev_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 dev->type = ARPHRD_TUNNEL6;
1473 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1474 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001475 t = netdev_priv(dev);
1476 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1477 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 dev->flags |= IFF_NOARP;
1479 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001480 dev->features |= NETIF_F_NETNS_LOCAL;
Anders Franzen7e223de2010-10-19 03:50:47 +00001481 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
1484
1485/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001486 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 * @dev: virtual device associated with tunnel
1488 **/
1489
Eric Dumazet8560f222010-09-28 03:23:34 +00001490static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001491ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Patrick McHardy2941a482006-01-08 22:05:26 -08001493 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 t->dev = dev;
Eric Dumazet8560f222010-09-28 03:23:34 +00001496 dev->tstats = alloc_percpu(struct pcpu_tstats);
1497 if (!dev->tstats)
1498 return -ENOMEM;
1499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
1502/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001503 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 * @dev: virtual device associated with tunnel
1505 **/
1506
Eric Dumazet8560f222010-09-28 03:23:34 +00001507static int ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Patrick McHardy2941a482006-01-08 22:05:26 -08001509 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +00001510 int err = ip6_tnl_dev_init_gen(dev);
1511
1512 if (err)
1513 return err;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001514 ip6_tnl_link_config(t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001519 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 * @dev: fallback device
1521 *
1522 * Return: 0
1523 **/
1524
Eric Dumazet8560f222010-09-28 03:23:34 +00001525static int __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Patrick McHardy2941a482006-01-08 22:05:26 -08001527 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001528 struct net *net = dev_net(dev);
1529 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Eric Dumazet8560f222010-09-28 03:23:34 +00001530 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001531
Eric Dumazet8560f222010-09-28 03:23:34 +00001532 if (err)
1533 return err;
1534
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001535 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001537
1538 ip6_tnl_link_config(t);
1539
Eric Dumazetcf778b02012-01-12 04:41:32 +00001540 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001544static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1545{
1546 u8 proto;
1547
1548 if (!data)
1549 return 0;
1550
1551 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1552 if (proto != IPPROTO_IPV6 &&
1553 proto != IPPROTO_IPIP &&
1554 proto != 0)
1555 return -EINVAL;
1556
1557 return 0;
1558}
1559
1560static void ip6_tnl_netlink_parms(struct nlattr *data[],
1561 struct __ip6_tnl_parm *parms)
1562{
1563 memset(parms, 0, sizeof(*parms));
1564
1565 if (!data)
1566 return;
1567
1568 if (data[IFLA_IPTUN_LINK])
1569 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1570
1571 if (data[IFLA_IPTUN_LOCAL])
1572 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1573 sizeof(struct in6_addr));
1574
1575 if (data[IFLA_IPTUN_REMOTE])
1576 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1577 sizeof(struct in6_addr));
1578
1579 if (data[IFLA_IPTUN_TTL])
1580 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1581
1582 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1583 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1584
1585 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001586 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001587
1588 if (data[IFLA_IPTUN_FLAGS])
1589 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1590
1591 if (data[IFLA_IPTUN_PROTO])
1592 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1593}
1594
1595static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1596 struct nlattr *tb[], struct nlattr *data[])
1597{
1598 struct net *net = dev_net(dev);
1599 struct ip6_tnl *nt;
1600
1601 nt = netdev_priv(dev);
1602 ip6_tnl_netlink_parms(data, &nt->parms);
1603
1604 if (ip6_tnl_locate(net, &nt->parms, 0))
1605 return -EEXIST;
1606
1607 return ip6_tnl_create2(dev);
1608}
1609
1610static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1611 struct nlattr *data[])
1612{
1613 struct ip6_tnl *t;
1614 struct __ip6_tnl_parm p;
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 return -EINVAL;
1620
1621 ip6_tnl_netlink_parms(data, &p);
1622
1623 t = ip6_tnl_locate(net, &p, 0);
1624
1625 if (t) {
1626 if (t->dev != dev)
1627 return -EEXIST;
1628 } else
1629 t = netdev_priv(dev);
1630
1631 return ip6_tnl_update(t, &p);
1632}
1633
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001634static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001635{
1636 return
1637 /* IFLA_IPTUN_LINK */
1638 nla_total_size(4) +
1639 /* IFLA_IPTUN_LOCAL */
1640 nla_total_size(sizeof(struct in6_addr)) +
1641 /* IFLA_IPTUN_REMOTE */
1642 nla_total_size(sizeof(struct in6_addr)) +
1643 /* IFLA_IPTUN_TTL */
1644 nla_total_size(1) +
1645 /* IFLA_IPTUN_ENCAP_LIMIT */
1646 nla_total_size(1) +
1647 /* IFLA_IPTUN_FLOWINFO */
1648 nla_total_size(4) +
1649 /* IFLA_IPTUN_FLAGS */
1650 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001651 /* IFLA_IPTUN_PROTO */
1652 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001653 0;
1654}
1655
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001656static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001657{
1658 struct ip6_tnl *tunnel = netdev_priv(dev);
1659 struct __ip6_tnl_parm *parm = &tunnel->parms;
1660
1661 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1662 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
1663 &parm->raddr) ||
1664 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1665 &parm->laddr) ||
1666 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1667 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1668 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001669 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1670 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001671 goto nla_put_failure;
1672 return 0;
1673
1674nla_put_failure:
1675 return -EMSGSIZE;
1676}
1677
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001678static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1679 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1680 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1681 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1682 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1683 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1684 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1685 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1686 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1687};
1688
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001689static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1690 .kind = "ip6tnl",
1691 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001692 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001693 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001694 .setup = ip6_tnl_dev_setup,
1695 .validate = ip6_tnl_validate,
1696 .newlink = ip6_tnl_newlink,
1697 .changelink = ip6_tnl_changelink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001698 .get_size = ip6_tnl_get_size,
1699 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001700};
1701
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001702static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001703 .handler = ip4ip6_rcv,
1704 .err_handler = ip4ip6_err,
1705 .priority = 1,
1706};
1707
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001708static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001709 .handler = ip6ip6_rcv,
1710 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001711 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712};
1713
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001714static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001715{
1716 int h;
1717 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001718 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001719
1720 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001721 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001722 while (t != NULL) {
1723 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001724 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001725 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001726 }
1727
Eric Dumazet94767632010-09-15 20:25:34 +00001728 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001729 unregister_netdevice_queue(t->dev, &list);
1730 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001731}
1732
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001733static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001734{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001735 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001736 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001737 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001738
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001739 ip6n->tnls[0] = ip6n->tnls_wc;
1740 ip6n->tnls[1] = ip6n->tnls_r_l;
1741
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001742 err = -ENOMEM;
1743 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1744 ip6_tnl_dev_setup);
1745
1746 if (!ip6n->fb_tnl_dev)
1747 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001748 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001749
Eric Dumazet8560f222010-09-28 03:23:34 +00001750 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1751 if (err < 0)
1752 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001753
1754 err = register_netdev(ip6n->fb_tnl_dev);
1755 if (err < 0)
1756 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001757
1758 t = netdev_priv(ip6n->fb_tnl_dev);
1759
1760 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001761 return 0;
1762
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001763err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001764 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001765err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001766 return err;
1767}
1768
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001769static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001770{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001771 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001772
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001773 rtnl_lock();
1774 ip6_tnl_destroy_tunnels(ip6n);
1775 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001776}
1777
1778static struct pernet_operations ip6_tnl_net_ops = {
1779 .init = ip6_tnl_init_net,
1780 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001781 .id = &ip6_tnl_net_id,
1782 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001783};
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785/**
1786 * ip6_tunnel_init - register protocol and reserve needed resources
1787 *
1788 * Return: 0 on success
1789 **/
1790
1791static int __init ip6_tunnel_init(void)
1792{
1793 int err;
1794
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001795 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001796 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001797 goto out_pernet;
1798
1799 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1800 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001801 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001802 goto out_ip4ip6;
1803 }
1804
1805 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1806 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001807 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001808 goto out_ip6ip6;
1809 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001810 err = rtnl_link_register(&ip6_link_ops);
1811 if (err < 0)
1812 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001815
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001816rtnl_link_failed:
1817 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001818out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001819 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001820out_ip4ip6:
1821 unregister_pernet_device(&ip6_tnl_net_ops);
1822out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 return err;
1824}
1825
1826/**
1827 * ip6_tunnel_cleanup - free resources and unregister protocol
1828 **/
1829
1830static void __exit ip6_tunnel_cleanup(void)
1831{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001832 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001833 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001834 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001835
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001836 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001837 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001839 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
1841
1842module_init(ip6_tunnel_init);
1843module_exit(ip6_tunnel_cleanup);