blob: fb828e9fe8e0c8c8dbf04e99d0fe0bfc9dcdd8ff [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
Eric Dumazetddbe5032012-07-18 08:11:12 +000077static u32 HASH(const struct in6_addr *addr1, const struct in6_addr *addr2)
78{
79 u32 hash = ipv6_addr_hash(addr1) ^ ipv6_addr_hash(addr2);
80
81 return hash_32(hash, HASH_SIZE_SHIFT);
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Eric Dumazet8560f222010-09-28 03:23:34 +000084static int ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090085static void ip6_tnl_dev_setup(struct net_device *dev);
Nicolas Dichtelc075b132012-11-09 06:10:01 +000086static struct rtnl_link_ops ip6_link_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Dumazetf99189b2009-11-17 10:42:49 +000088static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070089struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070090 /* the IPv6 tunnel fallback device */
91 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070092 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000093 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
94 struct ip6_tnl __rcu *tnls_wc[1];
95 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070096};
97
Eric Dumazet8560f222010-09-28 03:23:34 +000098static struct net_device_stats *ip6_get_stats(struct net_device *dev)
99{
100 struct pcpu_tstats sum = { 0 };
101 int i;
102
103 for_each_possible_cpu(i) {
104 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
105
106 sum.rx_packets += tstats->rx_packets;
107 sum.rx_bytes += tstats->rx_bytes;
108 sum.tx_packets += tstats->tx_packets;
109 sum.tx_bytes += tstats->tx_bytes;
110 }
111 dev->stats.rx_packets = sum.rx_packets;
112 dev->stats.rx_bytes = sum.rx_bytes;
113 dev->stats.tx_packets = sum.tx_packets;
114 dev->stats.tx_bytes = sum.tx_bytes;
115 return &dev->stats;
116}
117
Eric Dumazet2922bc82009-10-23 06:34:34 +0000118/*
Eric Dumazet94767632010-09-15 20:25:34 +0000119 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +0000120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000122struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct dst_entry *dst = t->dst_cache;
125
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900126 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 dst->ops->check(dst, t->dst_cookie) == NULL) {
128 t->dst_cache = NULL;
129 dst_release(dst);
130 return NULL;
131 }
132
133 return dst;
134}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000135EXPORT_SYMBOL_GPL(ip6_tnl_dst_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000137void ip6_tnl_dst_reset(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 dst_release(t->dst_cache);
140 t->dst_cache = NULL;
141}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000142EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000144void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct rt6_info *rt = (struct rt6_info *) dst;
147 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
148 dst_release(t->dst_cache);
149 t->dst_cache = dst;
150}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000151EXPORT_SYMBOL_GPL(ip6_tnl_dst_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900154 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900155 * @remote: the address of the tunnel exit-point
156 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900158 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900160 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * else %NULL
162 **/
163
Eric Dumazet2922bc82009-10-23 06:34:34 +0000164#define for_each_ip6_tunnel_rcu(start) \
165 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static struct ip6_tnl *
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000168ip6_tnl_lookup(struct net *net, const struct in6_addr *remote, const struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000170 unsigned int hash = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700172 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Eric Dumazetddbe5032012-07-18 08:11:12 +0000174 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[hash]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (ipv6_addr_equal(local, &t->parms.laddr) &&
176 ipv6_addr_equal(remote, &t->parms.raddr) &&
177 (t->dev->flags & IFF_UP))
178 return t;
179 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000180 t = rcu_dereference(ip6n->tnls_wc[0]);
181 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return t;
183
184 return NULL;
185}
186
187/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900188 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900189 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900192 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * &struct in6_addr entries laddr and raddr in @p.
194 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900195 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 **/
197
Eric Dumazet94767632010-09-15 20:25:34 +0000198static struct ip6_tnl __rcu **
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000199ip6_tnl_bucket(struct ip6_tnl_net *ip6n, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000201 const struct in6_addr *remote = &p->raddr;
202 const struct in6_addr *local = &p->laddr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000203 unsigned int h = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int prio = 0;
205
206 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
207 prio = 1;
Eric Dumazetddbe5032012-07-18 08:11:12 +0000208 h = HASH(remote, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700210 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900214 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * @t: tunnel to be added
216 **/
217
218static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700219ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Eric Dumazet94767632010-09-15 20:25:34 +0000221 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Eric Dumazetcf778b02012-01-12 04:41:32 +0000223 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
224 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
227/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900228 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * @t: tunnel to be removed
230 **/
231
232static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700233ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Eric Dumazet94767632010-09-15 20:25:34 +0000235 struct ip6_tnl __rcu **tp;
236 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Eric Dumazet94767632010-09-15 20:25:34 +0000238 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
239 (iter = rtnl_dereference(*tp)) != NULL;
240 tp = &iter->next) {
241 if (t == iter) {
Eric Dumazetcf778b02012-01-12 04:41:32 +0000242 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 }
245 }
246}
247
Eric Dumazet8560f222010-09-28 03:23:34 +0000248static void ip6_dev_free(struct net_device *dev)
249{
250 free_percpu(dev->tstats);
251 free_netdev(dev);
252}
253
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000254static int ip6_tnl_create2(struct net_device *dev)
255{
256 struct ip6_tnl *t = netdev_priv(dev);
257 struct net *net = dev_net(dev);
258 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
259 int err;
260
261 t = netdev_priv(dev);
262 err = ip6_tnl_dev_init(dev);
263 if (err < 0)
264 goto out;
265
266 err = register_netdevice(dev);
267 if (err < 0)
268 goto out;
269
270 strcpy(t->parms.name, dev->name);
271 dev->rtnl_link_ops = &ip6_link_ops;
272
273 dev_hold(dev);
274 ip6_tnl_link(ip6n, t);
275 return 0;
276
277out:
278 return err;
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/**
Ben Hutchings2c530402012-07-10 10:55:09 +0000282 * ip6_tnl_create - create a new tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 * @p: tunnel parameters
284 * @pt: pointer to new tunnel
285 *
286 * Description:
287 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900288 *
289 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800290 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 **/
292
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000293static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 struct net_device *dev;
296 struct ip6_tnl *t;
297 char name[IFNAMSIZ];
298 int err;
299
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800300 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800302 else
303 sprintf(name, "ip6tnl%%d");
304
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900305 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800307 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700309 dev_net_set(dev, net);
310
Patrick McHardy2941a482006-01-08 22:05:26 -0800311 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 t->parms = *p;
Nicolas Dichtel0b112452012-11-14 05:14:00 +0000313 err = ip6_tnl_create2(dev);
Eric Dumazet8560f222010-09-28 03:23:34 +0000314 if (err < 0)
315 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Ville Nuorvala567131a2006-11-24 17:05:41 -0800317 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800318
319failed_free:
Eric Dumazet8560f222010-09-28 03:23:34 +0000320 ip6_dev_free(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800321failed:
322 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900326 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900327 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 * @create: != 0 if allowed to create new tunnel if no match found
329 *
330 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900331 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * based on @parms. If this is unsuccessful, but @create is set a new
333 * tunnel device is created and registered for use.
334 *
335 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800336 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 **/
338
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700339static struct ip6_tnl *ip6_tnl_locate(struct net *net,
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000340 struct __ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000342 const struct in6_addr *remote = &p->raddr;
343 const struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000344 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700346 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Eric Dumazet94767632010-09-15 20:25:34 +0000348 for (tp = ip6_tnl_bucket(ip6n, p);
349 (t = rtnl_dereference(*tp)) != NULL;
350 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800352 ipv6_addr_equal(remote, &t->parms.raddr))
353 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800356 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700357 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900361 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900363 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900365 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 **/
367
368static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900369ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Patrick McHardy2941a482006-01-08 22:05:26 -0800371 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700372 struct net *net = dev_net(dev);
373 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Eric Dumazet94767632010-09-15 20:25:34 +0000375 if (dev == ip6n->fb_tnl_dev)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000376 RCU_INIT_POINTER(ip6n->tnls_wc[0], NULL);
Eric Dumazet94767632010-09-15 20:25:34 +0000377 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700378 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 ip6_tnl_dst_reset(t);
380 dev_put(dev);
381}
382
383/**
384 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
385 * @skb: received socket buffer
386 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900387 * Return:
388 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * else index to encapsulation limit
390 **/
391
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000392__u16 ip6_tnl_parse_tlv_enc_lim(struct sk_buff *skb, __u8 *raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000394 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 __u8 nexthdr = ipv6h->nexthdr;
396 __u16 off = sizeof (*ipv6h);
397
398 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
399 __u16 optlen = 0;
400 struct ipv6_opt_hdr *hdr;
401 if (raw + off + sizeof (*hdr) > skb->data &&
402 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
403 break;
404
405 hdr = (struct ipv6_opt_hdr *) (raw + off);
406 if (nexthdr == NEXTHDR_FRAGMENT) {
407 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
408 if (frag_hdr->frag_off)
409 break;
410 optlen = 8;
411 } else if (nexthdr == NEXTHDR_AUTH) {
412 optlen = (hdr->hdrlen + 2) << 2;
413 } else {
414 optlen = ipv6_optlen(hdr);
415 }
416 if (nexthdr == NEXTHDR_DEST) {
417 __u16 i = off + 2;
418 while (1) {
419 struct ipv6_tlv_tnl_enc_lim *tel;
420
421 /* No more room for encapsulation limit */
422 if (i + sizeof (*tel) > off + optlen)
423 break;
424
425 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
426 /* return index of option if found and valid */
427 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
428 tel->length == 1)
429 return i;
430 /* else jump to next option */
431 if (tel->type)
432 i += tel->length + 2;
433 else
434 i++;
435 }
436 }
437 nexthdr = hdr->nexthdr;
438 off += optlen;
439 }
440 return 0;
441}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000442EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900445 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *
447 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900448 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * to the specifications in RFC 2473.
450 **/
451
Herbert Xud2acc342006-03-28 01:12:13 -0800452static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900453ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700454 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000456 const struct ipv6hdr *ipv6h = (const struct ipv6hdr *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct ip6_tnl *t;
458 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700459 u8 rel_type = ICMPV6_DEST_UNREACH;
460 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 __u32 rel_info = 0;
462 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800463 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900465 /* If the packet doesn't contain the original IPv6 header we are
466 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 processing of the error. */
468
Eric Dumazet2922bc82009-10-23 06:34:34 +0000469 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700470 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700471 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 goto out;
473
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900474 if (t->parms.proto != ipproto && t->parms.proto != 0)
475 goto out;
476
Herbert Xud2acc342006-03-28 01:12:13 -0800477 err = 0;
478
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900479 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 __u32 teli;
481 struct ipv6_tlv_tnl_enc_lim *tel;
482 __u32 mtu;
483 case ICMPV6_DEST_UNREACH:
Joe Perchese87cc472012-05-13 21:56:26 +0000484 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
485 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 rel_msg = 1;
487 break;
488 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900489 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Joe Perchese87cc472012-05-13 21:56:26 +0000490 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
491 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 rel_msg = 1;
493 }
494 break;
495 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800496 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900497 if ((*code) == ICMPV6_HDR_FIELD)
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000498 teli = ip6_tnl_parse_tlv_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Al Viro704eae12007-07-26 17:33:29 +0100500 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
502 if (tel->encap_limit == 0) {
Joe Perchese87cc472012-05-13 21:56:26 +0000503 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
504 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 rel_msg = 1;
506 }
Joe Perchese87cc472012-05-13 21:56:26 +0000507 } else {
508 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
509 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 break;
512 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100513 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (mtu < IPV6_MIN_MTU)
515 mtu = IPV6_MIN_MTU;
516 t->dev->mtu = mtu;
517
Al Virocc6cdac2006-02-18 16:02:18 -0500518 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 rel_type = ICMPV6_PKT_TOOBIG;
520 rel_code = 0;
521 rel_info = mtu;
522 rel_msg = 1;
523 }
524 break;
525 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900526
527 *type = rel_type;
528 *code = rel_code;
529 *info = rel_info;
530 *msg = rel_msg;
531
532out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000533 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900534 return err;
535}
536
537static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900538ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700539 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900540{
541 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700542 u8 rel_type = type;
543 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100544 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900545 int err;
546 struct sk_buff *skb2;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000547 const struct iphdr *eiph;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900548 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700549 struct flowi4 fl4;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900550
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900551 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
552 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900553 if (err < 0)
554 return err;
555
556 if (rel_msg == 0)
557 return 0;
558
559 switch (rel_type) {
560 case ICMPV6_DEST_UNREACH:
561 if (rel_code != ICMPV6_ADDR_UNREACH)
562 return 0;
563 rel_type = ICMP_DEST_UNREACH;
564 rel_code = ICMP_HOST_UNREACH;
565 break;
566 case ICMPV6_PKT_TOOBIG:
567 if (rel_code != 0)
568 return 0;
569 rel_type = ICMP_DEST_UNREACH;
570 rel_code = ICMP_FRAG_NEEDED;
571 break;
David S. Millerec18d9a2012-07-12 00:25:15 -0700572 case NDISC_REDIRECT:
573 rel_type = ICMP_REDIRECT;
574 rel_code = ICMP_REDIR_HOST;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900575 default:
576 return 0;
577 }
578
579 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
580 return 0;
581
582 skb2 = skb_clone(skb, GFP_ATOMIC);
583 if (!skb2)
584 return 0;
585
Eric Dumazetadf30902009-06-02 05:19:30 +0000586 skb_dst_drop(skb2);
587
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900588 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700589 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700590 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900591
592 /* Try to guess incoming interface */
David S. Miller31e45432011-05-03 20:25:42 -0700593 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500594 eiph->saddr, 0,
595 0, 0,
596 IPPROTO_IPIP, RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800597 if (IS_ERR(rt))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900598 goto out;
599
Changli Gaod8d1f302010-06-10 23:31:35 -0700600 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900601
602 /* route "incoming" packet */
603 if (rt->rt_flags & RTCF_LOCAL) {
604 ip_rt_put(rt);
605 rt = NULL;
David S. Miller31e45432011-05-03 20:25:42 -0700606 rt = ip_route_output_ports(dev_net(skb->dev), &fl4, NULL,
David S. Miller78fbfd82011-03-12 00:00:52 -0500607 eiph->daddr, eiph->saddr,
608 0, 0,
609 IPPROTO_IPIP,
610 RT_TOS(eiph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800611 if (IS_ERR(rt) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700612 rt->dst.dev->type != ARPHRD_TUNNEL) {
David S. Millerb23dd4f2011-03-02 14:31:35 -0800613 if (!IS_ERR(rt))
614 ip_rt_put(rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900615 goto out;
616 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800617 skb_dst_set(skb2, &rt->dst);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900618 } else {
619 ip_rt_put(rt);
620 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
621 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000622 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900623 goto out;
624 }
625
626 /* change mtu on this route */
627 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000628 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900629 goto out;
630
David S. Miller6700c272012-07-17 03:29:28 -0700631 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), NULL, skb2, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900632 }
David S. Miller1ed5c482012-07-12 00:41:25 -0700633 if (rel_type == ICMP_REDIRECT)
David S. Miller6700c272012-07-17 03:29:28 -0700634 skb_dst(skb2)->ops->redirect(skb_dst(skb2), NULL, skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900635
Al Viro704eae12007-07-26 17:33:29 +0100636 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900637
638out:
639 kfree_skb(skb2);
640 return 0;
641}
642
643static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900644ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700645 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900646{
647 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700648 u8 rel_type = type;
649 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100650 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900651 int err;
652
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900653 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
654 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900655 if (err < 0)
656 return err;
657
658 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 struct rt6_info *rt;
660 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900663 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Eric Dumazetadf30902009-06-02 05:19:30 +0000665 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700667 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700670 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
671 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
David S. Millerd1918542011-12-28 20:19:20 -0500673 if (rt && rt->dst.dev)
674 skb2->dev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000676 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Amerigo Wang94e187c2012-10-29 00:13:19 +0000678 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 kfree_skb(skb2);
681 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900682
683 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000686static void ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
687 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900688 struct sk_buff *skb)
689{
690 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
691
692 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700693 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900694
695 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700696 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900697}
698
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000699static void ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl *t,
700 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900701 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900703 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800704 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900706 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700707 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900709
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000710__u32 ip6_tnl_get_cap(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000711 const struct in6_addr *laddr,
712 const struct in6_addr *raddr)
713{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000714 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000715 int ltype = ipv6_addr_type(laddr);
716 int rtype = ipv6_addr_type(raddr);
717 __u32 flags = 0;
718
719 if (ltype == IPV6_ADDR_ANY || rtype == IPV6_ADDR_ANY) {
720 flags = IP6_TNL_F_CAP_PER_PACKET;
721 } else if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
722 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
723 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
724 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
725 if (ltype&IPV6_ADDR_UNICAST)
726 flags |= IP6_TNL_F_CAP_XMIT;
727 if (rtype&IPV6_ADDR_UNICAST)
728 flags |= IP6_TNL_F_CAP_RCV;
729 }
730 return flags;
731}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000732EXPORT_SYMBOL(ip6_tnl_get_cap);
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000733
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100734/* called with rcu_read_lock() */
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000735int ip6_tnl_rcv_ctl(struct ip6_tnl *t,
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000736 const struct in6_addr *laddr,
737 const struct in6_addr *raddr)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800738{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000739 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800740 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700741 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800742
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000743 if ((p->flags & IP6_TNL_F_CAP_RCV) ||
744 ((p->flags & IP6_TNL_F_CAP_PER_PACKET) &&
745 (ip6_tnl_get_cap(t, laddr, raddr) & IP6_TNL_F_CAP_RCV))) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900746 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800747
748 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100749 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800750
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000751 if ((ipv6_addr_is_multicast(laddr) ||
752 likely(ipv6_chk_addr(net, laddr, ldev, 0))) &&
753 likely(!ipv6_chk_addr(net, raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800754 ret = 1;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800755 }
756 return ret;
757}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000758EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900761 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900763 * @protocol: ethernet protocol ID
764 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 *
766 * Return: 0
767 **/
768
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900769static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900770 __u8 ipproto,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000771 void (*dscp_ecn_decapsulate)(const struct ip6_tnl *t,
772 const struct ipv6hdr *ipv6h,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900773 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct ip6_tnl *t;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000776 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Eric Dumazet2922bc82009-10-23 06:34:34 +0000778 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700780 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700781 &ipv6h->daddr)) != NULL) {
Eric Dumazet8560f222010-09-28 03:23:34 +0000782 struct pcpu_tstats *tstats;
783
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900784 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000785 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900786 goto discard;
787 }
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000790 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700791 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
Ville Nuorvalad0087b22012-06-28 18:15:52 +0000794 if (!ip6_tnl_rcv_ctl(t, &ipv6h->daddr, &ipv6h->saddr)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700795 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000796 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 goto discard;
798 }
799 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700800 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700801 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900802 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 skb->pkt_type = PACKET_HOST;
804 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700805
Eric Dumazet8560f222010-09-28 03:23:34 +0000806 tstats = this_cpu_ptr(t->dev->tstats);
807 tstats->rx_packets++;
808 tstats->rx_bytes += skb->len;
809
810 __skb_tunnel_rx(skb, t->dev);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900811
812 dscp_ecn_decapsulate(t, ipv6h, skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000813
Eric Dumazetcaf586e2010-09-30 21:06:55 +0000814 netif_rx(skb);
Eric Dumazet8990f462010-09-20 00:12:11 +0000815
Eric Dumazet2922bc82009-10-23 06:34:34 +0000816 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return 0;
818 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000819 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700821
822discard:
823 kfree_skb(skb);
824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900827static int ip4ip6_rcv(struct sk_buff *skb)
828{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900829 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
830 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900831}
832
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900833static int ip6ip6_rcv(struct sk_buff *skb)
834{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900835 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
836 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900837}
838
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800839struct ipv6_tel_txoption {
840 struct ipv6_txoptions ops;
841 __u8 dst_opt[8];
842};
843
844static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800846 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800848 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
849 opt->dst_opt[3] = 1;
850 opt->dst_opt[4] = encap_limit;
851 opt->dst_opt[5] = IPV6_TLV_PADN;
852 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800854 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
855 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
858/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900859 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900861 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 *
863 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900864 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * doesn't match source of incoming packet.
866 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900867 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 * 1 if conflict,
869 * 0 else
870 **/
871
Eric Dumazet92113bf2012-05-18 08:14:11 +0200872static inline bool
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000873ip6_tnl_addr_conflict(const struct ip6_tnl *t, const struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
876}
877
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000878int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800879{
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000880 struct __ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800881 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700882 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800883
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900884 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800885 struct net_device *ldev = NULL;
886
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100887 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800888 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100889 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800890
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700891 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000892 pr_warn("%s xmit: Local address not yet configured!\n",
893 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800894 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700895 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Joe Perchesf3213832012-05-15 14:11:53 +0000896 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
897 p->name);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800898 else
899 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100900 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800901 }
902 return ret;
903}
xeb@mail.ruc12b3952012-08-10 00:51:50 +0000904EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl);
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900907 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900909 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900910 * @dsfield: dscp code for outer header
911 * @fl: flow of tunneled packet
912 * @encap_limit: encapsulation limit
913 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 *
915 * Description:
916 * Build new header and do some sanity checks on the packet before sending
917 * it.
918 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900919 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900920 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900921 * -1 fail
922 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 **/
924
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900925static int ip6_tnl_xmit2(struct sk_buff *skb,
926 struct net_device *dev,
927 __u8 dsfield,
David S. Miller4c9483b2011-03-12 16:22:43 -0500928 struct flowi6 *fl6,
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900929 int encap_limit,
930 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800932 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800933 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700934 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700935 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800936 struct ipv6_tel_txoption opt;
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400937 struct dst_entry *dst = NULL, *ndst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct net_device *tdev;
939 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700940 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900942 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Eric Dumazetd24f22f2011-09-20 14:50:00 -0400945 if (!fl6->flowi6_mark)
946 dst = ip6_tnl_dst_check(t);
Eric Dumazet89b02122011-07-28 04:32:25 +0000947 if (!dst) {
948 ndst = ip6_route_output(net, NULL, fl6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Eric Dumazet89b02122011-07-28 04:32:25 +0000950 if (ndst->error)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700951 goto tx_err_link_failure;
Eric Dumazet89b02122011-07-28 04:32:25 +0000952 ndst = xfrm_lookup(net, ndst, flowi6_to_flowi(fl6), NULL, 0);
953 if (IS_ERR(ndst)) {
954 err = PTR_ERR(ndst);
955 ndst = NULL;
David S. Miller452edd52011-03-02 13:27:41 -0800956 goto tx_err_link_failure;
957 }
Eric Dumazet89b02122011-07-28 04:32:25 +0000958 dst = ndst;
Patrick McHardya57ebc92005-09-08 14:27:47 -0700959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 tdev = dst->dev;
962
963 if (tdev == dev) {
964 stats->collisions++;
Joe Perchese87cc472012-05-13 21:56:26 +0000965 net_warn_ratelimited("%s: Local routing loop detected!\n",
966 t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 goto tx_err_dst_release;
968 }
969 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800970 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 max_headroom += 8;
972 mtu -= 8;
973 }
974 if (mtu < IPV6_MIN_MTU)
975 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000976 if (skb_dst(skb))
David S. Miller6700c272012-07-17 03:29:28 -0700977 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900979 *pmtu = mtu;
980 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 goto tx_err_dst_release;
982 }
983
984 /*
985 * Okay, now see if we can stuff it in the buffer as-is.
986 */
987 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900988
Patrick McHardycfbba492007-07-09 15:33:40 -0700989 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
990 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
994 goto tx_err_dst_release;
995
996 if (skb->sk)
997 skb_set_owner_w(new_skb, skb->sk);
Eric Dumazet9ff26442012-04-19 02:24:17 +0000998 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 skb = new_skb;
1000 }
Eric Dumazetadf30902009-06-02 05:19:30 +00001001 skb_dst_drop(skb);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001002 if (fl6->flowi6_mark) {
1003 skb_dst_set(skb, dst);
1004 ndst = NULL;
1005 } else {
1006 skb_dst_set_noref(skb, dst);
1007 }
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001008 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
David S. Miller4c9483b2011-03-12 16:22:43 -05001010 proto = fl6->flowi6_proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -08001011 if (encap_limit >= 0) {
1012 init_tel_txopt(&opt, encap_limit);
1013 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
1014 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001015 skb_push(skb, sizeof(struct ipv6hdr));
1016 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001017 ipv6h = ipv6_hdr(skb);
David S. Miller4c9483b2011-03-12 16:22:43 -05001018 *(__be32*)ipv6h = fl6->flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 dsfield = INET_ECN_encapsulate(0, dsfield);
1020 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 ipv6h->hop_limit = t->parms.hop_limit;
1022 ipv6h->nexthdr = proto;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001023 ipv6h->saddr = fl6->saddr;
1024 ipv6h->daddr = fl6->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 nf_reset(skb);
1026 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -08001027 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -02001029 if (net_xmit_eval(err) == 0) {
Eric Dumazet8560f222010-09-28 03:23:34 +00001030 struct pcpu_tstats *tstats = this_cpu_ptr(t->dev->tstats);
1031
1032 tstats->tx_bytes += pkt_len;
1033 tstats->tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 } else {
1035 stats->tx_errors++;
1036 stats->tx_aborted_errors++;
1037 }
Eric Dumazet89b02122011-07-28 04:32:25 +00001038 if (ndst)
1039 ip6_tnl_dst_store(t, ndst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041tx_err_link_failure:
1042 stats->tx_carrier_errors++;
1043 dst_link_failure(skb);
1044tx_err_dst_release:
Eric Dumazet89b02122011-07-28 04:32:25 +00001045 dst_release(ndst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001046 return err;
1047}
1048
1049static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001050ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1051{
1052 struct ip6_tnl *t = netdev_priv(dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001053 const struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001054 int encap_limit = -1;
David S. Miller4c9483b2011-03-12 16:22:43 -05001055 struct flowi6 fl6;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001056 __u8 dsfield;
1057 __u32 mtu;
1058 int err;
1059
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001060 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
1061 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001062 return -1;
1063
1064 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1065 encap_limit = t->parms.encap_limit;
1066
David S. Miller4c9483b2011-03-12 16:22:43 -05001067 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1068 fl6.flowi6_proto = IPPROTO_IPIP;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001069
1070 dsfield = ipv4_get_dsfield(iph);
1071
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001072 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001073 fl6.flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
Al Virob77f2fa2007-07-21 19:09:41 -07001074 & IPV6_TCLASS_MASK;
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001075 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1076 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001077
David S. Miller4c9483b2011-03-12 16:22:43 -05001078 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001079 if (err != 0) {
1080 /* XXX: send ICMP error even if DF is not set. */
1081 if (err == -EMSGSIZE)
1082 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
1083 htonl(mtu));
1084 return -1;
1085 }
1086
1087 return 0;
1088}
1089
1090static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001091ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1092{
1093 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001094 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001095 int encap_limit = -1;
1096 __u16 offset;
David S. Miller4c9483b2011-03-12 16:22:43 -05001097 struct flowi6 fl6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001098 __u8 dsfield;
1099 __u32 mtu;
1100 int err;
1101
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001102 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1103 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001104 return -1;
1105
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001106 offset = ip6_tnl_parse_tlv_enc_lim(skb, skb_network_header(skb));
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001107 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001108 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001109 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001110 if (tel->encap_limit == 0) {
1111 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001112 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001113 return -1;
1114 }
1115 encap_limit = tel->encap_limit - 1;
1116 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1117 encap_limit = t->parms.encap_limit;
1118
David S. Miller4c9483b2011-03-12 16:22:43 -05001119 memcpy(&fl6, &t->fl.u.ip6, sizeof (fl6));
1120 fl6.flowi6_proto = IPPROTO_IPV6;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001121
1122 dsfield = ipv6_get_dsfield(ipv6h);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001123 if (t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS)
David S. Miller4c9483b2011-03-12 16:22:43 -05001124 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001125 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL)
David S. Miller4c9483b2011-03-12 16:22:43 -05001126 fl6.flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
Eric Dumazetd24f22f2011-09-20 14:50:00 -04001127 if (t->parms.flags & IP6_TNL_F_USE_ORIG_FWMARK)
1128 fl6.flowi6_mark = skb->mark;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001129
David S. Miller4c9483b2011-03-12 16:22:43 -05001130 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl6, encap_limit, &mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001131 if (err != 0) {
1132 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001133 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001134 return -1;
1135 }
1136
1137 return 0;
1138}
1139
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001140static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001141ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1142{
1143 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001144 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001145 int ret;
1146
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001147 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001148 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001149 ret = ip4ip6_tnl_xmit(skb, dev);
1150 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001151 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001152 ret = ip6ip6_tnl_xmit(skb, dev);
1153 break;
1154 default:
1155 goto tx_err;
1156 }
1157
1158 if (ret < 0)
1159 goto tx_err;
1160
Patrick McHardy6ed10652009-06-23 06:03:08 +00001161 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163tx_err:
1164 stats->tx_errors++;
1165 stats->tx_dropped++;
1166 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001167 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001170static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 struct net_device *dev = t->dev;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001173 struct __ip6_tnl_parm *p = &t->parms;
David S. Miller4c9483b2011-03-12 16:22:43 -05001174 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001176 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1177 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 /* Set up flowi template */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001180 fl6->saddr = p->laddr;
1181 fl6->daddr = p->raddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001182 fl6->flowi6_oif = p->link;
1183 fl6->flowlabel = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
David S. Miller4c9483b2011-03-12 16:22:43 -05001186 fl6->flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
David S. Miller4c9483b2011-03-12 16:22:43 -05001188 fl6->flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001190 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV|IP6_TNL_F_CAP_PER_PACKET);
1191 p->flags |= ip6_tnl_get_cap(t, &p->laddr, &p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1194 dev->flags |= IFF_POINTOPOINT;
1195 else
1196 dev->flags &= ~IFF_POINTOPOINT;
1197
1198 dev->iflink = p->link;
1199
1200 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001201 int strict = (ipv6_addr_type(&p->raddr) &
1202 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1203
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001204 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1205 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001206 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 if (rt == NULL)
1209 return;
1210
David S. Millerd1918542011-12-28 20:19:20 -05001211 if (rt->dst.dev) {
1212 dev->hard_header_len = rt->dst.dev->hard_header_len +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 sizeof (struct ipv6hdr);
1214
David S. Millerd1918542011-12-28 20:19:20 -05001215 dev->mtu = rt->dst.dev->mtu - sizeof (struct ipv6hdr);
Anders Franzen381601e2010-11-24 05:47:18 +00001216 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1217 dev->mtu-=8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 if (dev->mtu < IPV6_MIN_MTU)
1220 dev->mtu = IPV6_MIN_MTU;
1221 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001222 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224}
1225
1226/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001227 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * @t: tunnel to be changed
1229 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 *
1231 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001232 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 **/
1234
1235static int
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001236ip6_tnl_change(struct ip6_tnl *t, const struct __ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001238 t->parms.laddr = p->laddr;
1239 t->parms.raddr = p->raddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 t->parms.flags = p->flags;
1241 t->parms.hop_limit = p->hop_limit;
1242 t->parms.encap_limit = p->encap_limit;
1243 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001244 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001245 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001246 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001247 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return 0;
1249}
1250
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001251static int ip6_tnl_update(struct ip6_tnl *t, struct __ip6_tnl_parm *p)
1252{
1253 struct net *net = dev_net(t->dev);
1254 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1255 int err;
1256
1257 ip6_tnl_unlink(ip6n, t);
1258 synchronize_net();
1259 err = ip6_tnl_change(t, p);
1260 ip6_tnl_link(ip6n, t);
1261 netdev_state_change(t->dev);
1262 return err;
1263}
1264
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001265static void
1266ip6_tnl_parm_from_user(struct __ip6_tnl_parm *p, const struct ip6_tnl_parm *u)
1267{
1268 p->laddr = u->laddr;
1269 p->raddr = u->raddr;
1270 p->flags = u->flags;
1271 p->hop_limit = u->hop_limit;
1272 p->encap_limit = u->encap_limit;
1273 p->flowinfo = u->flowinfo;
1274 p->link = u->link;
1275 p->proto = u->proto;
1276 memcpy(p->name, u->name, sizeof(u->name));
1277}
1278
1279static void
1280ip6_tnl_parm_to_user(struct ip6_tnl_parm *u, const struct __ip6_tnl_parm *p)
1281{
1282 u->laddr = p->laddr;
1283 u->raddr = p->raddr;
1284 u->flags = p->flags;
1285 u->hop_limit = p->hop_limit;
1286 u->encap_limit = p->encap_limit;
1287 u->flowinfo = p->flowinfo;
1288 u->link = p->link;
1289 u->proto = p->proto;
1290 memcpy(u->name, p->name, sizeof(u->name));
1291}
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001294 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 * @dev: virtual device associated with tunnel
1296 * @ifr: parameters passed from userspace
1297 * @cmd: command to be performed
1298 *
1299 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001300 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001301 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 *
1303 * The possible commands are the following:
1304 * %SIOCGETTUNNEL: get tunnel parameters for device
1305 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1306 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1307 * %SIOCDELTUNNEL: delete tunnel
1308 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001309 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 * initialization, can be used for creating other tunnel devices.
1311 *
1312 * Return:
1313 * 0 on success,
1314 * %-EFAULT if unable to copy data to or from userspace,
1315 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1316 * %-EINVAL if passed tunnel parameters are invalid,
1317 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1318 * %-ENODEV if attempting to change or delete a nonexisting device
1319 **/
1320
1321static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001322ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
1324 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 struct ip6_tnl_parm p;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001326 struct __ip6_tnl_parm p1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001328 struct net *net = dev_net(dev);
1329 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 switch (cmd) {
1332 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001333 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001334 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 err = -EFAULT;
1336 break;
1337 }
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001338 ip6_tnl_parm_from_user(&p1, &p);
1339 t = ip6_tnl_locate(net, &p1, 0);
Dan Carpenter5ef5d6c2012-08-16 03:14:04 +00001340 } else {
1341 memset(&p, 0, sizeof(p));
Ville Nuorvala567131a2006-11-24 17:05:41 -08001342 }
1343 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001344 t = netdev_priv(dev);
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001345 ip6_tnl_parm_to_user(&p, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1347 err = -EFAULT;
1348 }
1349 break;
1350 case SIOCADDTUNNEL:
1351 case SIOCCHGTUNNEL:
1352 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001353 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001355 err = -EFAULT;
1356 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001358 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001359 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1360 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 break;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001362 ip6_tnl_parm_from_user(&p1, &p);
1363 t = ip6_tnl_locate(net, &p1, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001364 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001365 if (t != NULL) {
1366 if (t->dev != dev) {
1367 err = -EEXIST;
1368 break;
1369 }
1370 } else
1371 t = netdev_priv(dev);
1372
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001373 err = ip6_tnl_update(t, &p1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001375 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 err = 0;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001377 ip6_tnl_parm_to_user(&p, &t->parms);
1378 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
Ville Nuorvala567131a2006-11-24 17:05:41 -08001379 err = -EFAULT;
1380
1381 } else
1382 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 break;
1384 case SIOCDELTUNNEL:
1385 err = -EPERM;
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00001386 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 break;
1388
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001389 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001390 err = -EFAULT;
1391 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001393 err = -ENOENT;
xeb@mail.ruc12b3952012-08-10 00:51:50 +00001394 ip6_tnl_parm_from_user(&p1, &p);
1395 t = ip6_tnl_locate(net, &p1, 0);
1396 if (t == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001398 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001399 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001401 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001403 err = 0;
1404 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 break;
1406 default:
1407 err = -EINVAL;
1408 }
1409 return err;
1410}
1411
1412/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001413 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 * @dev: virtual device associated with tunnel
1415 * @new_mtu: the new mtu
1416 *
1417 * Return:
1418 * 0 on success,
1419 * %-EINVAL if mtu too small
1420 **/
1421
1422static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001423ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 if (new_mtu < IPV6_MIN_MTU) {
1426 return -EINVAL;
1427 }
1428 dev->mtu = new_mtu;
1429 return 0;
1430}
1431
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001432
1433static const struct net_device_ops ip6_tnl_netdev_ops = {
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 int err = ip6_tnl_dev_init_gen(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001516
Eric Dumazet8560f222010-09-28 03:23:34 +00001517 if (err)
1518 return err;
1519
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001520 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 dev_hold(dev);
Ville Nuorvalad0087b22012-06-28 18:15:52 +00001522
1523 ip6_tnl_link_config(t);
1524
Eric Dumazetcf778b02012-01-12 04:41:32 +00001525 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Eric Dumazet8560f222010-09-28 03:23:34 +00001526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001529static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
1530{
1531 u8 proto;
1532
1533 if (!data)
1534 return 0;
1535
1536 proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1537 if (proto != IPPROTO_IPV6 &&
1538 proto != IPPROTO_IPIP &&
1539 proto != 0)
1540 return -EINVAL;
1541
1542 return 0;
1543}
1544
1545static void ip6_tnl_netlink_parms(struct nlattr *data[],
1546 struct __ip6_tnl_parm *parms)
1547{
1548 memset(parms, 0, sizeof(*parms));
1549
1550 if (!data)
1551 return;
1552
1553 if (data[IFLA_IPTUN_LINK])
1554 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1555
1556 if (data[IFLA_IPTUN_LOCAL])
1557 nla_memcpy(&parms->laddr, data[IFLA_IPTUN_LOCAL],
1558 sizeof(struct in6_addr));
1559
1560 if (data[IFLA_IPTUN_REMOTE])
1561 nla_memcpy(&parms->raddr, data[IFLA_IPTUN_REMOTE],
1562 sizeof(struct in6_addr));
1563
1564 if (data[IFLA_IPTUN_TTL])
1565 parms->hop_limit = nla_get_u8(data[IFLA_IPTUN_TTL]);
1566
1567 if (data[IFLA_IPTUN_ENCAP_LIMIT])
1568 parms->encap_limit = nla_get_u8(data[IFLA_IPTUN_ENCAP_LIMIT]);
1569
1570 if (data[IFLA_IPTUN_FLOWINFO])
Nicolas Dichtel1ff05fb2012-11-15 04:06:42 +00001571 parms->flowinfo = nla_get_be32(data[IFLA_IPTUN_FLOWINFO]);
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001572
1573 if (data[IFLA_IPTUN_FLAGS])
1574 parms->flags = nla_get_u32(data[IFLA_IPTUN_FLAGS]);
1575
1576 if (data[IFLA_IPTUN_PROTO])
1577 parms->proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
1578}
1579
1580static int ip6_tnl_newlink(struct net *src_net, struct net_device *dev,
1581 struct nlattr *tb[], struct nlattr *data[])
1582{
1583 struct net *net = dev_net(dev);
1584 struct ip6_tnl *nt;
1585
1586 nt = netdev_priv(dev);
1587 ip6_tnl_netlink_parms(data, &nt->parms);
1588
1589 if (ip6_tnl_locate(net, &nt->parms, 0))
1590 return -EEXIST;
1591
1592 return ip6_tnl_create2(dev);
1593}
1594
1595static int ip6_tnl_changelink(struct net_device *dev, struct nlattr *tb[],
1596 struct nlattr *data[])
1597{
1598 struct ip6_tnl *t;
1599 struct __ip6_tnl_parm p;
1600 struct net *net = dev_net(dev);
1601 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1602
1603 if (dev == ip6n->fb_tnl_dev)
1604 return -EINVAL;
1605
1606 ip6_tnl_netlink_parms(data, &p);
1607
1608 t = ip6_tnl_locate(net, &p, 0);
1609
1610 if (t) {
1611 if (t->dev != dev)
1612 return -EEXIST;
1613 } else
1614 t = netdev_priv(dev);
1615
1616 return ip6_tnl_update(t, &p);
1617}
1618
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001619static size_t ip6_tnl_get_size(const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001620{
1621 return
1622 /* IFLA_IPTUN_LINK */
1623 nla_total_size(4) +
1624 /* IFLA_IPTUN_LOCAL */
1625 nla_total_size(sizeof(struct in6_addr)) +
1626 /* IFLA_IPTUN_REMOTE */
1627 nla_total_size(sizeof(struct in6_addr)) +
1628 /* IFLA_IPTUN_TTL */
1629 nla_total_size(1) +
1630 /* IFLA_IPTUN_ENCAP_LIMIT */
1631 nla_total_size(1) +
1632 /* IFLA_IPTUN_FLOWINFO */
1633 nla_total_size(4) +
1634 /* IFLA_IPTUN_FLAGS */
1635 nla_total_size(4) +
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001636 /* IFLA_IPTUN_PROTO */
1637 nla_total_size(1) +
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001638 0;
1639}
1640
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001641static int ip6_tnl_fill_info(struct sk_buff *skb, const struct net_device *dev)
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001642{
1643 struct ip6_tnl *tunnel = netdev_priv(dev);
1644 struct __ip6_tnl_parm *parm = &tunnel->parms;
1645
1646 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1647 nla_put(skb, IFLA_IPTUN_LOCAL, sizeof(struct in6_addr),
1648 &parm->raddr) ||
1649 nla_put(skb, IFLA_IPTUN_REMOTE, sizeof(struct in6_addr),
1650 &parm->laddr) ||
1651 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->hop_limit) ||
1652 nla_put_u8(skb, IFLA_IPTUN_ENCAP_LIMIT, parm->encap_limit) ||
1653 nla_put_be32(skb, IFLA_IPTUN_FLOWINFO, parm->flowinfo) ||
Nicolas Dichtelcfa323b2012-11-14 05:13:58 +00001654 nla_put_u32(skb, IFLA_IPTUN_FLAGS, parm->flags) ||
1655 nla_put_u8(skb, IFLA_IPTUN_PROTO, parm->proto))
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001656 goto nla_put_failure;
1657 return 0;
1658
1659nla_put_failure:
1660 return -EMSGSIZE;
1661}
1662
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001663static const struct nla_policy ip6_tnl_policy[IFLA_IPTUN_MAX + 1] = {
1664 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1665 [IFLA_IPTUN_LOCAL] = { .len = sizeof(struct in6_addr) },
1666 [IFLA_IPTUN_REMOTE] = { .len = sizeof(struct in6_addr) },
1667 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1668 [IFLA_IPTUN_ENCAP_LIMIT] = { .type = NLA_U8 },
1669 [IFLA_IPTUN_FLOWINFO] = { .type = NLA_U32 },
1670 [IFLA_IPTUN_FLAGS] = { .type = NLA_U32 },
1671 [IFLA_IPTUN_PROTO] = { .type = NLA_U8 },
1672};
1673
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001674static struct rtnl_link_ops ip6_link_ops __read_mostly = {
1675 .kind = "ip6tnl",
1676 .maxtype = IFLA_IPTUN_MAX,
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001677 .policy = ip6_tnl_policy,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001678 .priv_size = sizeof(struct ip6_tnl),
Nicolas Dichtel0b112452012-11-14 05:14:00 +00001679 .setup = ip6_tnl_dev_setup,
1680 .validate = ip6_tnl_validate,
1681 .newlink = ip6_tnl_newlink,
1682 .changelink = ip6_tnl_changelink,
Nicolas Dichtelb58d7312012-11-14 05:13:59 +00001683 .get_size = ip6_tnl_get_size,
1684 .fill_info = ip6_tnl_fill_info,
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001685};
1686
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001687static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001688 .handler = ip4ip6_rcv,
1689 .err_handler = ip4ip6_err,
1690 .priority = 1,
1691};
1692
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001693static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001694 .handler = ip6ip6_rcv,
1695 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001696 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697};
1698
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001699static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001700{
1701 int h;
1702 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001703 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001704
1705 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001706 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001707 while (t != NULL) {
1708 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001709 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001710 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001711 }
1712
Eric Dumazet94767632010-09-15 20:25:34 +00001713 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001714 unregister_netdevice_queue(t->dev, &list);
1715 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001716}
1717
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001718static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001719{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001720 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Josh Boyer731abb92011-11-10 15:10:23 +00001721 struct ip6_tnl *t = NULL;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001722 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001723
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001724 ip6n->tnls[0] = ip6n->tnls_wc;
1725 ip6n->tnls[1] = ip6n->tnls_r_l;
1726
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001727 err = -ENOMEM;
1728 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1729 ip6_tnl_dev_setup);
1730
1731 if (!ip6n->fb_tnl_dev)
1732 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001733 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001734
Eric Dumazet8560f222010-09-28 03:23:34 +00001735 err = ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
1736 if (err < 0)
1737 goto err_register;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001738
1739 err = register_netdev(ip6n->fb_tnl_dev);
1740 if (err < 0)
1741 goto err_register;
Josh Boyer731abb92011-11-10 15:10:23 +00001742
1743 t = netdev_priv(ip6n->fb_tnl_dev);
1744
1745 strcpy(t->parms.name, ip6n->fb_tnl_dev->name);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001746 return 0;
1747
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001748err_register:
Eric Dumazet8560f222010-09-28 03:23:34 +00001749 ip6_dev_free(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001750err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001751 return err;
1752}
1753
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001754static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001755{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001756 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001757
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001758 rtnl_lock();
1759 ip6_tnl_destroy_tunnels(ip6n);
1760 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001761}
1762
1763static struct pernet_operations ip6_tnl_net_ops = {
1764 .init = ip6_tnl_init_net,
1765 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001766 .id = &ip6_tnl_net_id,
1767 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001768};
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/**
1771 * ip6_tunnel_init - register protocol and reserve needed resources
1772 *
1773 * Return: 0 on success
1774 **/
1775
1776static int __init ip6_tunnel_init(void)
1777{
1778 int err;
1779
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001780 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001781 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001782 goto out_pernet;
1783
1784 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1785 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001786 pr_err("%s: can't register ip4ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001787 goto out_ip4ip6;
1788 }
1789
1790 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1791 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00001792 pr_err("%s: can't register ip6ip6\n", __func__);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001793 goto out_ip6ip6;
1794 }
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001795 err = rtnl_link_register(&ip6_link_ops);
1796 if (err < 0)
1797 goto rtnl_link_failed;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001800
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001801rtnl_link_failed:
1802 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001803out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001804 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001805out_ip4ip6:
1806 unregister_pernet_device(&ip6_tnl_net_ops);
1807out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return err;
1809}
1810
1811/**
1812 * ip6_tunnel_cleanup - free resources and unregister protocol
1813 **/
1814
1815static void __exit ip6_tunnel_cleanup(void)
1816{
Nicolas Dichtelc075b132012-11-09 06:10:01 +00001817 rtnl_link_unregister(&ip6_link_ops);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001818 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Joe Perchesf3213832012-05-15 14:11:53 +00001819 pr_info("%s: can't deregister ip4ip6\n", __func__);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001820
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001821 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Joe Perchesf3213832012-05-15 14:11:53 +00001822 pr_info("%s: can't deregister ip6ip6\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001824 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
1827module_init(ip6_tunnel_init);
1828module_exit(ip6_tunnel_cleanup);