blob: 9289cecac4de291ba94487c04f3cdbb03313729b [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080022#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/types.h>
25#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090026#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/if.h>
28#include <linux/in.h>
29#include <linux/ip.h>
30#include <linux/if_tunnel.h>
31#include <linux/net.h>
32#include <linux/in6.h>
33#include <linux/netdevice.h>
34#include <linux/if_arp.h>
35#include <linux/icmpv6.h>
36#include <linux/init.h>
37#include <linux/route.h>
38#include <linux/rtnetlink.h>
39#include <linux/netfilter_ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/uaccess.h>
43#include <asm/atomic.h>
44
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090045#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <net/ip.h>
47#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/ip6_route.h>
49#include <net/addrconf.h>
50#include <net/ip6_tunnel.h>
51#include <net/xfrm.h>
52#include <net/dsfield.h>
53#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070054#include <net/net_namespace.h>
55#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090058MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_LICENSE("GPL");
60
61#define IPV6_TLV_TEL_DST_SIZE 8
62
63#ifdef IP6_TNL_DEBUG
Harvey Harrison0dc47872008-03-05 20:47:47 -080064#define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#else
66#define IP6_TNL_TRACE(x...) do {;} while(0)
67#endif
68
69#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090070#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define HASH_SIZE 32
73
Al Viroe69a4adc2006-11-14 20:56:00 -080074#define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090075 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
76 (HASH_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Stephen Hemminger1326c3d2008-11-20 20:33:56 -080078static void ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090079static void ip6_tnl_dev_setup(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Eric Dumazetf99189b2009-11-17 10:42:49 +000081static int ip6_tnl_net_id __read_mostly;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070082struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070083 /* the IPv6 tunnel fallback device */
84 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070085 /* lists for storing tunnels in use */
Eric Dumazet94767632010-09-15 20:25:34 +000086 struct ip6_tnl __rcu *tnls_r_l[HASH_SIZE];
87 struct ip6_tnl __rcu *tnls_wc[1];
88 struct ip6_tnl __rcu **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070089};
90
Eric Dumazet2922bc82009-10-23 06:34:34 +000091/*
Eric Dumazet94767632010-09-15 20:25:34 +000092 * Locking : hash tables are protected by RCU and RTNL
Eric Dumazet2922bc82009-10-23 06:34:34 +000093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
96{
97 struct dst_entry *dst = t->dst_cache;
98
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090099 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 dst->ops->check(dst, t->dst_cookie) == NULL) {
101 t->dst_cache = NULL;
102 dst_release(dst);
103 return NULL;
104 }
105
106 return dst;
107}
108
109static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
110{
111 dst_release(t->dst_cache);
112 t->dst_cache = NULL;
113}
114
115static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
116{
117 struct rt6_info *rt = (struct rt6_info *) dst;
118 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
119 dst_release(t->dst_cache);
120 t->dst_cache = dst;
121}
122
123/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900124 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900125 * @remote: the address of the tunnel exit-point
126 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900128 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900130 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * else %NULL
132 **/
133
Eric Dumazet2922bc82009-10-23 06:34:34 +0000134#define for_each_ip6_tunnel_rcu(start) \
135 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static struct ip6_tnl *
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700138ip6_tnl_lookup(struct net *net, struct in6_addr *remote, struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Eric Dumazet94767632010-09-15 20:25:34 +0000140 unsigned int h0 = HASH(remote);
141 unsigned int h1 = HASH(local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700143 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Eric Dumazet2922bc82009-10-23 06:34:34 +0000145 for_each_ip6_tunnel_rcu(ip6n->tnls_r_l[h0 ^ h1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (ipv6_addr_equal(local, &t->parms.laddr) &&
147 ipv6_addr_equal(remote, &t->parms.raddr) &&
148 (t->dev->flags & IFF_UP))
149 return t;
150 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000151 t = rcu_dereference(ip6n->tnls_wc[0]);
152 if (t && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return t;
154
155 return NULL;
156}
157
158/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900159 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900160 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
162 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900163 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * &struct in6_addr entries laddr and raddr in @p.
165 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900166 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 **/
168
Eric Dumazet94767632010-09-15 20:25:34 +0000169static struct ip6_tnl __rcu **
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700170ip6_tnl_bucket(struct ip6_tnl_net *ip6n, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct in6_addr *remote = &p->raddr;
173 struct in6_addr *local = &p->laddr;
174 unsigned h = 0;
175 int prio = 0;
176
177 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
178 prio = 1;
179 h = HASH(remote) ^ HASH(local);
180 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700181 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900185 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * @t: tunnel to be added
187 **/
188
189static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700190ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Eric Dumazet94767632010-09-15 20:25:34 +0000192 struct ip6_tnl __rcu **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Eric Dumazet94767632010-09-15 20:25:34 +0000194 rcu_assign_pointer(t->next , rtnl_dereference(*tp));
Eric Dumazet2922bc82009-10-23 06:34:34 +0000195 rcu_assign_pointer(*tp, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900199 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * @t: tunnel to be removed
201 **/
202
203static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700204ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Eric Dumazet94767632010-09-15 20:25:34 +0000206 struct ip6_tnl __rcu **tp;
207 struct ip6_tnl *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Eric Dumazet94767632010-09-15 20:25:34 +0000209 for (tp = ip6_tnl_bucket(ip6n, &t->parms);
210 (iter = rtnl_dereference(*tp)) != NULL;
211 tp = &iter->next) {
212 if (t == iter) {
213 rcu_assign_pointer(*tp, t->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215 }
216 }
217}
218
219/**
220 * ip6_tnl_create() - create a new tunnel
221 * @p: tunnel parameters
222 * @pt: pointer to new tunnel
223 *
224 * Description:
225 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900226 *
227 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800228 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 **/
230
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700231static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct net_device *dev;
234 struct ip6_tnl *t;
235 char name[IFNAMSIZ];
236 int err;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700237 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800239 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800241 else
242 sprintf(name, "ip6tnl%%d");
243
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900244 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800246 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700248 dev_net_set(dev, net);
249
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800250 if (strchr(name, '%')) {
251 if (dev_alloc_name(dev, name) < 0)
252 goto failed_free;
253 }
254
Patrick McHardy2941a482006-01-08 22:05:26 -0800255 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 t->parms = *p;
Noriaki TAKAMIYA20461c12009-02-09 15:01:19 -0800257 ip6_tnl_dev_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800259 if ((err = register_netdevice(dev)) < 0)
260 goto failed_free;
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 dev_hold(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700263 ip6_tnl_link(ip6n, t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800264 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800265
266failed_free:
267 free_netdev(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800268failed:
269 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900273 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900274 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * @create: != 0 if allowed to create new tunnel if no match found
276 *
277 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900278 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * based on @parms. If this is unsuccessful, but @create is set a new
280 * tunnel device is created and registered for use.
281 *
282 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800283 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 **/
285
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700286static struct ip6_tnl *ip6_tnl_locate(struct net *net,
287 struct ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct in6_addr *remote = &p->raddr;
290 struct in6_addr *local = &p->laddr;
Eric Dumazet94767632010-09-15 20:25:34 +0000291 struct ip6_tnl __rcu **tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700293 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Eric Dumazet94767632010-09-15 20:25:34 +0000295 for (tp = ip6_tnl_bucket(ip6n, p);
296 (t = rtnl_dereference(*tp)) != NULL;
297 tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800299 ipv6_addr_equal(remote, &t->parms.raddr))
300 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800303 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700304 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900308 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900310 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900312 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 **/
314
315static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900316ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Patrick McHardy2941a482006-01-08 22:05:26 -0800318 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700319 struct net *net = dev_net(dev);
320 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Eric Dumazet94767632010-09-15 20:25:34 +0000322 if (dev == ip6n->fb_tnl_dev)
323 rcu_assign_pointer(ip6n->tnls_wc[0], NULL);
324 else
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700325 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 ip6_tnl_dst_reset(t);
327 dev_put(dev);
328}
329
330/**
331 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
332 * @skb: received socket buffer
333 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900334 * Return:
335 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * else index to encapsulation limit
337 **/
338
339static __u16
340parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
341{
342 struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
343 __u8 nexthdr = ipv6h->nexthdr;
344 __u16 off = sizeof (*ipv6h);
345
346 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
347 __u16 optlen = 0;
348 struct ipv6_opt_hdr *hdr;
349 if (raw + off + sizeof (*hdr) > skb->data &&
350 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
351 break;
352
353 hdr = (struct ipv6_opt_hdr *) (raw + off);
354 if (nexthdr == NEXTHDR_FRAGMENT) {
355 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
356 if (frag_hdr->frag_off)
357 break;
358 optlen = 8;
359 } else if (nexthdr == NEXTHDR_AUTH) {
360 optlen = (hdr->hdrlen + 2) << 2;
361 } else {
362 optlen = ipv6_optlen(hdr);
363 }
364 if (nexthdr == NEXTHDR_DEST) {
365 __u16 i = off + 2;
366 while (1) {
367 struct ipv6_tlv_tnl_enc_lim *tel;
368
369 /* No more room for encapsulation limit */
370 if (i + sizeof (*tel) > off + optlen)
371 break;
372
373 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
374 /* return index of option if found and valid */
375 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
376 tel->length == 1)
377 return i;
378 /* else jump to next option */
379 if (tel->type)
380 i += tel->length + 2;
381 else
382 i++;
383 }
384 }
385 nexthdr = hdr->nexthdr;
386 off += optlen;
387 }
388 return 0;
389}
390
391/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900392 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 *
394 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900395 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * to the specifications in RFC 2473.
397 **/
398
Herbert Xud2acc342006-03-28 01:12:13 -0800399static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900400ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700401 u8 *type, u8 *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
404 struct ip6_tnl *t;
405 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700406 u8 rel_type = ICMPV6_DEST_UNREACH;
407 u8 rel_code = ICMPV6_ADDR_UNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 __u32 rel_info = 0;
409 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800410 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900412 /* If the packet doesn't contain the original IPv6 header we are
413 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 processing of the error. */
415
Eric Dumazet2922bc82009-10-23 06:34:34 +0000416 rcu_read_lock();
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700417 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700418 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 goto out;
420
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900421 if (t->parms.proto != ipproto && t->parms.proto != 0)
422 goto out;
423
Herbert Xud2acc342006-03-28 01:12:13 -0800424 err = 0;
425
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900426 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 __u32 teli;
428 struct ipv6_tlv_tnl_enc_lim *tel;
429 __u32 mtu;
430 case ICMPV6_DEST_UNREACH:
431 if (net_ratelimit())
432 printk(KERN_WARNING
433 "%s: Path to destination invalid "
434 "or inactive!\n", t->parms.name);
435 rel_msg = 1;
436 break;
437 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900438 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (net_ratelimit())
440 printk(KERN_WARNING
441 "%s: Too small hop limit or "
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900442 "routing loop in tunnel!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 t->parms.name);
444 rel_msg = 1;
445 }
446 break;
447 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800448 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900449 if ((*code) == ICMPV6_HDR_FIELD)
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800450 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Al Viro704eae12007-07-26 17:33:29 +0100452 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
454 if (tel->encap_limit == 0) {
455 if (net_ratelimit())
456 printk(KERN_WARNING
457 "%s: Too small encapsulation "
458 "limit or routing loop in "
459 "tunnel!\n", t->parms.name);
460 rel_msg = 1;
461 }
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800462 } else if (net_ratelimit()) {
463 printk(KERN_WARNING
464 "%s: Recipient unable to parse tunneled "
465 "packet!\n ", t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467 break;
468 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100469 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (mtu < IPV6_MIN_MTU)
471 mtu = IPV6_MIN_MTU;
472 t->dev->mtu = mtu;
473
Al Virocc6cdac2006-02-18 16:02:18 -0500474 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 rel_type = ICMPV6_PKT_TOOBIG;
476 rel_code = 0;
477 rel_info = mtu;
478 rel_msg = 1;
479 }
480 break;
481 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900482
483 *type = rel_type;
484 *code = rel_code;
485 *info = rel_info;
486 *msg = rel_msg;
487
488out:
Eric Dumazet2922bc82009-10-23 06:34:34 +0000489 rcu_read_unlock();
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900490 return err;
491}
492
493static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900494ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700495 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900496{
497 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700498 u8 rel_type = type;
499 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100500 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900501 int err;
502 struct sk_buff *skb2;
503 struct iphdr *eiph;
504 struct flowi fl;
505 struct rtable *rt;
506
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900507 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
508 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900509 if (err < 0)
510 return err;
511
512 if (rel_msg == 0)
513 return 0;
514
515 switch (rel_type) {
516 case ICMPV6_DEST_UNREACH:
517 if (rel_code != ICMPV6_ADDR_UNREACH)
518 return 0;
519 rel_type = ICMP_DEST_UNREACH;
520 rel_code = ICMP_HOST_UNREACH;
521 break;
522 case ICMPV6_PKT_TOOBIG:
523 if (rel_code != 0)
524 return 0;
525 rel_type = ICMP_DEST_UNREACH;
526 rel_code = ICMP_FRAG_NEEDED;
527 break;
528 default:
529 return 0;
530 }
531
532 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
533 return 0;
534
535 skb2 = skb_clone(skb, GFP_ATOMIC);
536 if (!skb2)
537 return 0;
538
Eric Dumazetadf30902009-06-02 05:19:30 +0000539 skb_dst_drop(skb2);
540
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900541 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700542 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700543 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900544
545 /* Try to guess incoming interface */
546 memset(&fl, 0, sizeof(fl));
547 fl.fl4_dst = eiph->saddr;
548 fl.fl4_tos = RT_TOS(eiph->tos);
549 fl.proto = IPPROTO_IPIP;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700550 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900551 goto out;
552
Changli Gaod8d1f302010-06-10 23:31:35 -0700553 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900554
555 /* route "incoming" packet */
556 if (rt->rt_flags & RTCF_LOCAL) {
557 ip_rt_put(rt);
558 rt = NULL;
559 fl.fl4_dst = eiph->daddr;
560 fl.fl4_src = eiph->saddr;
561 fl.fl4_tos = eiph->tos;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700562 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl) ||
Changli Gaod8d1f302010-06-10 23:31:35 -0700563 rt->dst.dev->type != ARPHRD_TUNNEL) {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900564 ip_rt_put(rt);
565 goto out;
566 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000567 skb_dst_set(skb2, (struct dst_entry *)rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900568 } else {
569 ip_rt_put(rt);
570 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
571 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000572 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900573 goto out;
574 }
575
576 /* change mtu on this route */
577 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000578 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900579 goto out;
580
Eric Dumazetadf30902009-06-02 05:19:30 +0000581 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900582 }
583
Al Viro704eae12007-07-26 17:33:29 +0100584 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900585
586out:
587 kfree_skb(skb2);
588 return 0;
589}
590
591static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900592ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700593 u8 type, u8 code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900594{
595 int rel_msg = 0;
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700596 u8 rel_type = type;
597 u8 rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100598 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900599 int err;
600
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900601 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
602 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900603 if (err < 0)
604 return err;
605
606 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct rt6_info *rt;
608 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Eric Dumazetadf30902009-06-02 05:19:30 +0000613 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700615 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700618 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
619 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 if (rt && rt->rt6i_dev)
622 skb2->dev = rt->rt6i_dev;
623
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000624 icmpv6_send(skb2, rel_type, rel_code, rel_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -0700627 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 kfree_skb(skb2);
630 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900631
632 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900635static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
636 struct ipv6hdr *ipv6h,
637 struct sk_buff *skb)
638{
639 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
640
641 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700642 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900643
644 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700645 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900646}
647
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900648static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
649 struct ipv6hdr *ipv6h,
650 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900652 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800653 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900655 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700656 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900658
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100659/* called with rcu_read_lock() */
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800660static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
661{
662 struct ip6_tnl_parm *p = &t->parms;
663 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700664 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800665
666 if (p->flags & IP6_TNL_F_CAP_RCV) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900667 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800668
669 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100670 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800671
672 if ((ipv6_addr_is_multicast(&p->laddr) ||
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700673 likely(ipv6_chk_addr(net, &p->laddr, ldev, 0))) &&
674 likely(!ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800675 ret = 1;
676
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800677 }
678 return ret;
679}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900682 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900684 * @protocol: ethernet protocol ID
685 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 *
687 * Return: 0
688 **/
689
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900690static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900691 __u8 ipproto,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900692 void (*dscp_ecn_decapsulate)(struct ip6_tnl *t,
693 struct ipv6hdr *ipv6h,
694 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct ip6_tnl *t;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700697 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Eric Dumazet2922bc82009-10-23 06:34:34 +0000699 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700701 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700702 &ipv6h->daddr)) != NULL) {
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900703 if (t->parms.proto != ipproto && t->parms.proto != 0) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000704 rcu_read_unlock();
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900705 goto discard;
706 }
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Eric Dumazet2922bc82009-10-23 06:34:34 +0000709 rcu_read_unlock();
Herbert Xu50fba2a2006-04-04 13:50:45 -0700710 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800713 if (!ip6_tnl_rcv_ctl(t)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700714 t->dev->stats.rx_dropped++;
Eric Dumazet2922bc82009-10-23 06:34:34 +0000715 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 goto discard;
717 }
718 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700719 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700720 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900721 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 skb->pkt_type = PACKET_HOST;
723 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
Eric Dumazetd19d56d2010-05-17 22:36:55 -0700724
725 skb_tunnel_rx(skb, t->dev);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900726
727 dscp_ecn_decapsulate(t, ipv6h, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 netif_rx(skb);
Eric Dumazet2922bc82009-10-23 06:34:34 +0000729 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return 0;
731 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000732 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700734
735discard:
736 kfree_skb(skb);
737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900740static int ip4ip6_rcv(struct sk_buff *skb)
741{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900742 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
743 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900744}
745
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900746static int ip6ip6_rcv(struct sk_buff *skb)
747{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900748 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
749 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900750}
751
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800752struct ipv6_tel_txoption {
753 struct ipv6_txoptions ops;
754 __u8 dst_opt[8];
755};
756
757static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800759 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800761 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
762 opt->dst_opt[3] = 1;
763 opt->dst_opt[4] = encap_limit;
764 opt->dst_opt[5] = IPV6_TLV_PADN;
765 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800767 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
768 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
771/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900772 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900774 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 *
776 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900777 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * doesn't match source of incoming packet.
779 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900780 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * 1 if conflict,
782 * 0 else
783 **/
784
785static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900786ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
789}
790
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800791static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
792{
793 struct ip6_tnl_parm *p = &t->parms;
794 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700795 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800796
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900797 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800798 struct net_device *ldev = NULL;
799
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100800 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800801 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100802 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800803
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700804 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800805 printk(KERN_WARNING
806 "%s xmit: Local address not yet configured!\n",
807 p->name);
808 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700809 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800810 printk(KERN_WARNING
811 "%s xmit: Routing loop! "
812 "Remote address found on this node!\n",
813 p->name);
814 else
815 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100816 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800817 }
818 return ret;
819}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900821 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900823 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900824 * @dsfield: dscp code for outer header
825 * @fl: flow of tunneled packet
826 * @encap_limit: encapsulation limit
827 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 *
829 * Description:
830 * Build new header and do some sanity checks on the packet before sending
831 * it.
832 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900833 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900834 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900835 * -1 fail
836 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 **/
838
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900839static int ip6_tnl_xmit2(struct sk_buff *skb,
840 struct net_device *dev,
841 __u8 dsfield,
842 struct flowi *fl,
843 int encap_limit,
844 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800846 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800847 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700848 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700849 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800850 struct ipv6_tel_txoption opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 struct dst_entry *dst;
852 struct net_device *tdev;
853 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700854 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900856 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if ((dst = ip6_tnl_dst_check(t)) != NULL)
860 dst_hold(dst);
Patrick McHardya57ebc92005-09-08 14:27:47 -0700861 else {
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800862 dst = ip6_route_output(net, NULL, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800864 if (dst->error || xfrm_lookup(net, &dst, fl, NULL, 0) < 0)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700865 goto tx_err_link_failure;
866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 tdev = dst->dev;
869
870 if (tdev == dev) {
871 stats->collisions++;
872 if (net_ratelimit())
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900873 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 "%s: Local routing loop detected!\n",
875 t->parms.name);
876 goto tx_err_dst_release;
877 }
878 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800879 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 max_headroom += 8;
881 mtu -= 8;
882 }
883 if (mtu < IPV6_MIN_MTU)
884 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000885 if (skb_dst(skb))
886 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900888 *pmtu = mtu;
889 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 goto tx_err_dst_release;
891 }
892
893 /*
894 * Okay, now see if we can stuff it in the buffer as-is.
895 */
896 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900897
Patrick McHardycfbba492007-07-09 15:33:40 -0700898 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
899 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
903 goto tx_err_dst_release;
904
905 if (skb->sk)
906 skb_set_owner_w(new_skb, skb->sk);
907 kfree_skb(skb);
908 skb = new_skb;
909 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000910 skb_dst_drop(skb);
911 skb_dst_set(skb, dst_clone(dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700913 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900915 proto = fl->proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800916 if (encap_limit >= 0) {
917 init_tel_txopt(&opt, encap_limit);
918 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
919 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700920 skb_push(skb, sizeof(struct ipv6hdr));
921 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700922 ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900923 *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 dsfield = INET_ECN_encapsulate(0, dsfield);
925 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 ipv6h->hop_limit = t->parms.hop_limit;
927 ipv6h->nexthdr = proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900928 ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
929 ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 nf_reset(skb);
931 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -0800932 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200934 if (net_xmit_eval(err) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 stats->tx_bytes += pkt_len;
936 stats->tx_packets++;
937 } else {
938 stats->tx_errors++;
939 stats->tx_aborted_errors++;
940 }
941 ip6_tnl_dst_store(t, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return 0;
943tx_err_link_failure:
944 stats->tx_carrier_errors++;
945 dst_link_failure(skb);
946tx_err_dst_release:
947 dst_release(dst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900948 return err;
949}
950
951static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900952ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
953{
954 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700955 struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900956 int encap_limit = -1;
957 struct flowi fl;
958 __u8 dsfield;
959 __u32 mtu;
960 int err;
961
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900962 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
963 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900964 return -1;
965
966 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
967 encap_limit = t->parms.encap_limit;
968
969 memcpy(&fl, &t->fl, sizeof (fl));
970 fl.proto = IPPROTO_IPIP;
971
972 dsfield = ipv4_get_dsfield(iph);
973
974 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
Al Virob77f2fa2007-07-21 19:09:41 -0700975 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
976 & IPV6_TCLASS_MASK;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900977
978 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
979 if (err != 0) {
980 /* XXX: send ICMP error even if DF is not set. */
981 if (err == -EMSGSIZE)
982 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
983 htonl(mtu));
984 return -1;
985 }
986
987 return 0;
988}
989
990static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900991ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
992{
993 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700994 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900995 int encap_limit = -1;
996 __u16 offset;
997 struct flowi fl;
998 __u8 dsfield;
999 __u32 mtu;
1000 int err;
1001
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001002 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1003 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001004 return -1;
1005
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001006 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1007 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001008 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001009 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001010 if (tel->encap_limit == 0) {
1011 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001012 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001013 return -1;
1014 }
1015 encap_limit = tel->encap_limit - 1;
1016 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1017 encap_limit = t->parms.encap_limit;
1018
1019 memcpy(&fl, &t->fl, sizeof (fl));
1020 fl.proto = IPPROTO_IPV6;
1021
1022 dsfield = ipv6_get_dsfield(ipv6h);
1023 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1024 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1025 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1026 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1027
1028 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1029 if (err != 0) {
1030 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001031 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001032 return -1;
1033 }
1034
1035 return 0;
1036}
1037
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001038static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001039ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1040{
1041 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001042 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001043 int ret;
1044
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001045 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001046 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001047 ret = ip4ip6_tnl_xmit(skb, dev);
1048 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001049 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001050 ret = ip6ip6_tnl_xmit(skb, dev);
1051 break;
1052 default:
1053 goto tx_err;
1054 }
1055
1056 if (ret < 0)
1057 goto tx_err;
1058
Patrick McHardy6ed10652009-06-23 06:03:08 +00001059 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061tx_err:
1062 stats->tx_errors++;
1063 stats->tx_dropped++;
1064 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001065 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
1068static void ip6_tnl_set_cap(struct ip6_tnl *t)
1069{
1070 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001071 int ltype = ipv6_addr_type(&p->laddr);
1072 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1075
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001076 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1077 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1078 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001079 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001080 if (ltype&IPV6_ADDR_UNICAST)
1081 p->flags |= IP6_TNL_F_CAP_XMIT;
1082 if (rtype&IPV6_ADDR_UNICAST)
1083 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085}
1086
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001087static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 struct net_device *dev = t->dev;
1090 struct ip6_tnl_parm *p = &t->parms;
1091 struct flowi *fl = &t->fl;
1092
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001093 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1094 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* Set up flowi template */
1097 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1098 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1099 fl->oif = p->link;
1100 fl->fl6_flowlabel = 0;
1101
1102 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1103 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1104 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1105 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1106
1107 ip6_tnl_set_cap(t);
1108
1109 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1110 dev->flags |= IFF_POINTOPOINT;
1111 else
1112 dev->flags &= ~IFF_POINTOPOINT;
1113
1114 dev->iflink = p->link;
1115
1116 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001117 int strict = (ipv6_addr_type(&p->raddr) &
1118 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1119
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001120 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1121 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001122 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 if (rt == NULL)
1125 return;
1126
1127 if (rt->rt6i_dev) {
1128 dev->hard_header_len = rt->rt6i_dev->hard_header_len +
1129 sizeof (struct ipv6hdr);
1130
1131 dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
1132
1133 if (dev->mtu < IPV6_MIN_MTU)
1134 dev->mtu = IPV6_MIN_MTU;
1135 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001136 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
1138}
1139
1140/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001141 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 * @t: tunnel to be changed
1143 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 *
1145 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001146 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 **/
1148
1149static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001150ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1153 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1154 t->parms.flags = p->flags;
1155 t->parms.hop_limit = p->hop_limit;
1156 t->parms.encap_limit = p->encap_limit;
1157 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001158 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001159 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001160 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001161 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return 0;
1163}
1164
1165/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001166 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 * @dev: virtual device associated with tunnel
1168 * @ifr: parameters passed from userspace
1169 * @cmd: command to be performed
1170 *
1171 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001172 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001173 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 *
1175 * The possible commands are the following:
1176 * %SIOCGETTUNNEL: get tunnel parameters for device
1177 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1178 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1179 * %SIOCDELTUNNEL: delete tunnel
1180 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001181 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 * initialization, can be used for creating other tunnel devices.
1183 *
1184 * Return:
1185 * 0 on success,
1186 * %-EFAULT if unable to copy data to or from userspace,
1187 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1188 * %-EINVAL if passed tunnel parameters are invalid,
1189 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1190 * %-ENODEV if attempting to change or delete a nonexisting device
1191 **/
1192
1193static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001194ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 struct ip6_tnl_parm p;
1198 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001199 struct net *net = dev_net(dev);
1200 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 switch (cmd) {
1203 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001204 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001205 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 err = -EFAULT;
1207 break;
1208 }
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001209 t = ip6_tnl_locate(net, &p, 0);
Ville Nuorvala567131a2006-11-24 17:05:41 -08001210 }
1211 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001212 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 memcpy(&p, &t->parms, sizeof (p));
1214 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1215 err = -EFAULT;
1216 }
1217 break;
1218 case SIOCADDTUNNEL:
1219 case SIOCCHGTUNNEL:
1220 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (!capable(CAP_NET_ADMIN))
1222 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001223 err = -EFAULT;
1224 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001226 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001227 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1228 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 break;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001230 t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001231 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001232 if (t != NULL) {
1233 if (t->dev != dev) {
1234 err = -EEXIST;
1235 break;
1236 }
1237 } else
1238 t = netdev_priv(dev);
1239
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001240 ip6_tnl_unlink(ip6n, t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001241 err = ip6_tnl_change(t, &p);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001242 ip6_tnl_link(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 netdev_state_change(dev);
1244 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001245 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001247 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1248 err = -EFAULT;
1249
1250 } else
1251 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 break;
1253 case SIOCDELTUNNEL:
1254 err = -EPERM;
1255 if (!capable(CAP_NET_ADMIN))
1256 break;
1257
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001258 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001259 err = -EFAULT;
1260 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001262 err = -ENOENT;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001263 if ((t = ip6_tnl_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001265 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001266 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001268 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001270 err = 0;
1271 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
1273 default:
1274 err = -EINVAL;
1275 }
1276 return err;
1277}
1278
1279/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001280 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 * @dev: virtual device associated with tunnel
1282 * @new_mtu: the new mtu
1283 *
1284 * Return:
1285 * 0 on success,
1286 * %-EINVAL if mtu too small
1287 **/
1288
1289static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001290ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 if (new_mtu < IPV6_MIN_MTU) {
1293 return -EINVAL;
1294 }
1295 dev->mtu = new_mtu;
1296 return 0;
1297}
1298
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001299
1300static const struct net_device_ops ip6_tnl_netdev_ops = {
1301 .ndo_uninit = ip6_tnl_dev_uninit,
1302 .ndo_start_xmit = ip6_tnl_xmit,
1303 .ndo_do_ioctl = ip6_tnl_ioctl,
1304 .ndo_change_mtu = ip6_tnl_change_mtu,
1305};
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001308 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 * @dev: virtual device associated with tunnel
1310 *
1311 * Description:
1312 * Initialize function pointers and device parameters
1313 **/
1314
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001315static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001317 dev->netdev_ops = &ip6_tnl_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 dev->type = ARPHRD_TUNNEL6;
1321 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1322 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1323 dev->flags |= IFF_NOARP;
1324 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001325 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328
1329/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001330 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 * @dev: virtual device associated with tunnel
1332 **/
1333
1334static inline void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001335ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
Patrick McHardy2941a482006-01-08 22:05:26 -08001337 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 t->dev = dev;
1339 strcpy(t->parms.name, dev->name);
1340}
1341
1342/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001343 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 * @dev: virtual device associated with tunnel
1345 **/
1346
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001347static void ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Patrick McHardy2941a482006-01-08 22:05:26 -08001349 struct ip6_tnl *t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001350 ip6_tnl_dev_init_gen(dev);
1351 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001355 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 * @dev: fallback device
1357 *
1358 * Return: 0
1359 **/
1360
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001361static void __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
Patrick McHardy2941a482006-01-08 22:05:26 -08001363 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001364 struct net *net = dev_net(dev);
1365 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1366
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001367 ip6_tnl_dev_init_gen(dev);
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001368 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 dev_hold(dev);
Eric Dumazet94767632010-09-15 20:25:34 +00001370 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001373static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001374 .handler = ip4ip6_rcv,
1375 .err_handler = ip4ip6_err,
1376 .priority = 1,
1377};
1378
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001379static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001380 .handler = ip6ip6_rcv,
1381 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001382 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383};
1384
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001385static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001386{
1387 int h;
1388 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001389 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001390
1391 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001392 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001393 while (t != NULL) {
1394 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001395 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001396 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001397 }
1398
Eric Dumazet94767632010-09-15 20:25:34 +00001399 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001400 unregister_netdevice_queue(t->dev, &list);
1401 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001402}
1403
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001404static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001405{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001406 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001407 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001408
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001409 ip6n->tnls[0] = ip6n->tnls_wc;
1410 ip6n->tnls[1] = ip6n->tnls_r_l;
1411
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001412 err = -ENOMEM;
1413 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1414 ip6_tnl_dev_setup);
1415
1416 if (!ip6n->fb_tnl_dev)
1417 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001418 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001419
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001420 ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001421
1422 err = register_netdev(ip6n->fb_tnl_dev);
1423 if (err < 0)
1424 goto err_register;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001425 return 0;
1426
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001427err_register:
1428 free_netdev(ip6n->fb_tnl_dev);
1429err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001430 return err;
1431}
1432
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001433static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001434{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001435 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001436
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001437 rtnl_lock();
1438 ip6_tnl_destroy_tunnels(ip6n);
1439 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001440}
1441
1442static struct pernet_operations ip6_tnl_net_ops = {
1443 .init = ip6_tnl_init_net,
1444 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001445 .id = &ip6_tnl_net_id,
1446 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001447};
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449/**
1450 * ip6_tunnel_init - register protocol and reserve needed resources
1451 *
1452 * Return: 0 on success
1453 **/
1454
1455static int __init ip6_tunnel_init(void)
1456{
1457 int err;
1458
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001459 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001460 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001461 goto out_pernet;
1462
1463 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1464 if (err < 0) {
1465 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
1466 goto out_ip4ip6;
1467 }
1468
1469 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1470 if (err < 0) {
1471 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
1472 goto out_ip6ip6;
1473 }
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001476
1477out_ip6ip6:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001478 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001479out_ip4ip6:
1480 unregister_pernet_device(&ip6_tnl_net_ops);
1481out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return err;
1483}
1484
1485/**
1486 * ip6_tunnel_cleanup - free resources and unregister protocol
1487 **/
1488
1489static void __exit ip6_tunnel_cleanup(void)
1490{
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001491 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001492 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001493
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001494 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001495 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001497 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500module_init(ip6_tunnel_init);
1501module_exit(ip6_tunnel_cleanup);