blob: f6d9f683543eaee96284139f3f2c8ca0936f7fb7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09002 * IPv6 tunneling device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Ville Nuorvala <vnuorval@tcs.hut.fi>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09007 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Based on:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090010 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * RFC 2473
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 *
19 */
20
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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Viroe69a4ad2006-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-02-15 00:43:16 +0900551 goto out;
552
Changli Gaod8d1f302010-06-10 23:31:35 -0700553 skb2->dev = rt->dst.dev;
Yasuyuki Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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 Kozakaic4d3efa2007-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);
Eric Dumazet8990f462010-09-20 00:12:11 +0000728
729 if (netif_rx(skb) == NET_RX_DROP)
730 t->dev->stats.rx_dropped++;
731
Eric Dumazet2922bc82009-10-23 06:34:34 +0000732 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 0;
734 }
Eric Dumazet2922bc82009-10-23 06:34:34 +0000735 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700737
738discard:
739 kfree_skb(skb);
740 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900743static int ip4ip6_rcv(struct sk_buff *skb)
744{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900745 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
746 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900747}
748
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900749static int ip6ip6_rcv(struct sk_buff *skb)
750{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900751 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
752 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900753}
754
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800755struct ipv6_tel_txoption {
756 struct ipv6_txoptions ops;
757 __u8 dst_opt[8];
758};
759
760static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800762 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800764 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
765 opt->dst_opt[3] = 1;
766 opt->dst_opt[4] = encap_limit;
767 opt->dst_opt[5] = IPV6_TLV_PADN;
768 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800770 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
771 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900775 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900777 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 *
779 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900780 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * doesn't match source of incoming packet.
782 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900783 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 * 1 if conflict,
785 * 0 else
786 **/
787
788static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900789ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
792}
793
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800794static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
795{
796 struct ip6_tnl_parm *p = &t->parms;
797 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700798 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800799
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900800 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800801 struct net_device *ldev = NULL;
802
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100803 rcu_read_lock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800804 if (p->link)
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100805 ldev = dev_get_by_index_rcu(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800806
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700807 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800808 printk(KERN_WARNING
809 "%s xmit: Local address not yet configured!\n",
810 p->name);
811 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700812 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800813 printk(KERN_WARNING
814 "%s xmit: Routing loop! "
815 "Remote address found on this node!\n",
816 p->name);
817 else
818 ret = 1;
Eric Dumazetf1a28ea2009-11-02 11:21:37 +0100819 rcu_read_unlock();
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800820 }
821 return ret;
822}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900824 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900826 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900827 * @dsfield: dscp code for outer header
828 * @fl: flow of tunneled packet
829 * @encap_limit: encapsulation limit
830 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 *
832 * Description:
833 * Build new header and do some sanity checks on the packet before sending
834 * it.
835 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900836 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900837 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900838 * -1 fail
839 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 **/
841
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900842static int ip6_tnl_xmit2(struct sk_buff *skb,
843 struct net_device *dev,
844 __u8 dsfield,
845 struct flowi *fl,
846 int encap_limit,
847 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800849 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800850 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700851 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700852 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800853 struct ipv6_tel_txoption opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 struct dst_entry *dst;
855 struct net_device *tdev;
856 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700857 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900859 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if ((dst = ip6_tnl_dst_check(t)) != NULL)
863 dst_hold(dst);
Patrick McHardya57ebc92005-09-08 14:27:47 -0700864 else {
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800865 dst = ip6_route_output(net, NULL, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800867 if (dst->error || xfrm_lookup(net, &dst, fl, NULL, 0) < 0)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700868 goto tx_err_link_failure;
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 tdev = dst->dev;
872
873 if (tdev == dev) {
874 stats->collisions++;
875 if (net_ratelimit())
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900876 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 "%s: Local routing loop detected!\n",
878 t->parms.name);
879 goto tx_err_dst_release;
880 }
881 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800882 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 max_headroom += 8;
884 mtu -= 8;
885 }
886 if (mtu < IPV6_MIN_MTU)
887 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000888 if (skb_dst(skb))
889 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900891 *pmtu = mtu;
892 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 goto tx_err_dst_release;
894 }
895
896 /*
897 * Okay, now see if we can stuff it in the buffer as-is.
898 */
899 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900900
Patrick McHardycfbba492007-07-09 15:33:40 -0700901 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
902 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
906 goto tx_err_dst_release;
907
908 if (skb->sk)
909 skb_set_owner_w(new_skb, skb->sk);
910 kfree_skb(skb);
911 skb = new_skb;
912 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000913 skb_dst_drop(skb);
914 skb_dst_set(skb, dst_clone(dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700916 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900918 proto = fl->proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800919 if (encap_limit >= 0) {
920 init_tel_txopt(&opt, encap_limit);
921 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
922 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700923 skb_push(skb, sizeof(struct ipv6hdr));
924 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700925 ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900926 *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 dsfield = INET_ECN_encapsulate(0, dsfield);
928 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 ipv6h->hop_limit = t->parms.hop_limit;
930 ipv6h->nexthdr = proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900931 ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
932 ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 nf_reset(skb);
934 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -0800935 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200937 if (net_xmit_eval(err) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 stats->tx_bytes += pkt_len;
939 stats->tx_packets++;
940 } else {
941 stats->tx_errors++;
942 stats->tx_aborted_errors++;
943 }
944 ip6_tnl_dst_store(t, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return 0;
946tx_err_link_failure:
947 stats->tx_carrier_errors++;
948 dst_link_failure(skb);
949tx_err_dst_release:
950 dst_release(dst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900951 return err;
952}
953
954static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900955ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
956{
957 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700958 struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900959 int encap_limit = -1;
960 struct flowi fl;
961 __u8 dsfield;
962 __u32 mtu;
963 int err;
964
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900965 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
966 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900967 return -1;
968
969 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
970 encap_limit = t->parms.encap_limit;
971
972 memcpy(&fl, &t->fl, sizeof (fl));
973 fl.proto = IPPROTO_IPIP;
974
975 dsfield = ipv4_get_dsfield(iph);
976
977 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
Al Virob77f2fa2007-07-21 19:09:41 -0700978 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
979 & IPV6_TCLASS_MASK;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900980
981 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
982 if (err != 0) {
983 /* XXX: send ICMP error even if DF is not set. */
984 if (err == -EMSGSIZE)
985 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
986 htonl(mtu));
987 return -1;
988 }
989
990 return 0;
991}
992
993static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900994ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
995{
996 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700997 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900998 int encap_limit = -1;
999 __u16 offset;
1000 struct flowi fl;
1001 __u8 dsfield;
1002 __u32 mtu;
1003 int err;
1004
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001005 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1006 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001007 return -1;
1008
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001009 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1010 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001011 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001012 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001013 if (tel->encap_limit == 0) {
1014 icmpv6_send(skb, ICMPV6_PARAMPROB,
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001015 ICMPV6_HDR_FIELD, offset + 2);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001016 return -1;
1017 }
1018 encap_limit = tel->encap_limit - 1;
1019 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1020 encap_limit = t->parms.encap_limit;
1021
1022 memcpy(&fl, &t->fl, sizeof (fl));
1023 fl.proto = IPPROTO_IPV6;
1024
1025 dsfield = ipv6_get_dsfield(ipv6h);
1026 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1027 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1028 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1029 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1030
1031 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1032 if (err != 0) {
1033 if (err == -EMSGSIZE)
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001034 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001035 return -1;
1036 }
1037
1038 return 0;
1039}
1040
Stephen Hemminger6fef4c02009-08-31 19:50:41 +00001041static netdev_tx_t
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001042ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1043{
1044 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001045 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001046 int ret;
1047
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001048 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001049 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001050 ret = ip4ip6_tnl_xmit(skb, dev);
1051 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001052 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001053 ret = ip6ip6_tnl_xmit(skb, dev);
1054 break;
1055 default:
1056 goto tx_err;
1057 }
1058
1059 if (ret < 0)
1060 goto tx_err;
1061
Patrick McHardy6ed10652009-06-23 06:03:08 +00001062 return NETDEV_TX_OK;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064tx_err:
1065 stats->tx_errors++;
1066 stats->tx_dropped++;
1067 kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001068 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
1071static void ip6_tnl_set_cap(struct ip6_tnl *t)
1072{
1073 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001074 int ltype = ipv6_addr_type(&p->laddr);
1075 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1078
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001079 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1080 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1081 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001082 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001083 if (ltype&IPV6_ADDR_UNICAST)
1084 p->flags |= IP6_TNL_F_CAP_XMIT;
1085 if (rtype&IPV6_ADDR_UNICAST)
1086 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088}
1089
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001090static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 struct net_device *dev = t->dev;
1093 struct ip6_tnl_parm *p = &t->parms;
1094 struct flowi *fl = &t->fl;
1095
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001096 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1097 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 /* Set up flowi template */
1100 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1101 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1102 fl->oif = p->link;
1103 fl->fl6_flowlabel = 0;
1104
1105 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1106 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1107 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1108 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1109
1110 ip6_tnl_set_cap(t);
1111
1112 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1113 dev->flags |= IFF_POINTOPOINT;
1114 else
1115 dev->flags &= ~IFF_POINTOPOINT;
1116
1117 dev->iflink = p->link;
1118
1119 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001120 int strict = (ipv6_addr_type(&p->raddr) &
1121 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1122
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001123 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1124 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001125 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 if (rt == NULL)
1128 return;
1129
1130 if (rt->rt6i_dev) {
1131 dev->hard_header_len = rt->rt6i_dev->hard_header_len +
1132 sizeof (struct ipv6hdr);
1133
1134 dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
1135
1136 if (dev->mtu < IPV6_MIN_MTU)
1137 dev->mtu = IPV6_MIN_MTU;
1138 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001139 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
1141}
1142
1143/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001144 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 * @t: tunnel to be changed
1146 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 *
1148 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001149 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 **/
1151
1152static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001153ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1156 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1157 t->parms.flags = p->flags;
1158 t->parms.hop_limit = p->hop_limit;
1159 t->parms.encap_limit = p->encap_limit;
1160 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001161 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001162 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001163 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001164 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return 0;
1166}
1167
1168/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001169 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * @dev: virtual device associated with tunnel
1171 * @ifr: parameters passed from userspace
1172 * @cmd: command to be performed
1173 *
1174 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001175 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001176 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 *
1178 * The possible commands are the following:
1179 * %SIOCGETTUNNEL: get tunnel parameters for device
1180 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1181 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1182 * %SIOCDELTUNNEL: delete tunnel
1183 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001184 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * initialization, can be used for creating other tunnel devices.
1186 *
1187 * Return:
1188 * 0 on success,
1189 * %-EFAULT if unable to copy data to or from userspace,
1190 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1191 * %-EINVAL if passed tunnel parameters are invalid,
1192 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1193 * %-ENODEV if attempting to change or delete a nonexisting device
1194 **/
1195
1196static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001197ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
1199 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 struct ip6_tnl_parm p;
1201 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001202 struct net *net = dev_net(dev);
1203 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 switch (cmd) {
1206 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001207 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001208 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 err = -EFAULT;
1210 break;
1211 }
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001212 t = ip6_tnl_locate(net, &p, 0);
Ville Nuorvala567131a2006-11-24 17:05:41 -08001213 }
1214 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001215 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 memcpy(&p, &t->parms, sizeof (p));
1217 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1218 err = -EFAULT;
1219 }
1220 break;
1221 case SIOCADDTUNNEL:
1222 case SIOCCHGTUNNEL:
1223 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (!capable(CAP_NET_ADMIN))
1225 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001226 err = -EFAULT;
1227 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001229 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001230 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1231 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 break;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001233 t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001234 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001235 if (t != NULL) {
1236 if (t->dev != dev) {
1237 err = -EEXIST;
1238 break;
1239 }
1240 } else
1241 t = netdev_priv(dev);
1242
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001243 ip6_tnl_unlink(ip6n, t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001244 err = ip6_tnl_change(t, &p);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001245 ip6_tnl_link(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 netdev_state_change(dev);
1247 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001248 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001250 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1251 err = -EFAULT;
1252
1253 } else
1254 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 break;
1256 case SIOCDELTUNNEL:
1257 err = -EPERM;
1258 if (!capable(CAP_NET_ADMIN))
1259 break;
1260
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001261 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001262 err = -EFAULT;
1263 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001265 err = -ENOENT;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001266 if ((t = ip6_tnl_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001268 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001269 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001271 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001273 err = 0;
1274 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 break;
1276 default:
1277 err = -EINVAL;
1278 }
1279 return err;
1280}
1281
1282/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001283 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 * @dev: virtual device associated with tunnel
1285 * @new_mtu: the new mtu
1286 *
1287 * Return:
1288 * 0 on success,
1289 * %-EINVAL if mtu too small
1290 **/
1291
1292static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001293ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 if (new_mtu < IPV6_MIN_MTU) {
1296 return -EINVAL;
1297 }
1298 dev->mtu = new_mtu;
1299 return 0;
1300}
1301
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001302
1303static const struct net_device_ops ip6_tnl_netdev_ops = {
1304 .ndo_uninit = ip6_tnl_dev_uninit,
1305 .ndo_start_xmit = ip6_tnl_xmit,
1306 .ndo_do_ioctl = ip6_tnl_ioctl,
1307 .ndo_change_mtu = ip6_tnl_change_mtu,
1308};
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001311 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 * @dev: virtual device associated with tunnel
1313 *
1314 * Description:
1315 * Initialize function pointers and device parameters
1316 **/
1317
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001318static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001320 dev->netdev_ops = &ip6_tnl_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 dev->type = ARPHRD_TUNNEL6;
1324 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1325 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1326 dev->flags |= IFF_NOARP;
1327 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001328 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
1331
1332/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001333 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 * @dev: virtual device associated with tunnel
1335 **/
1336
1337static inline void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001338ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Patrick McHardy2941a482006-01-08 22:05:26 -08001340 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 t->dev = dev;
1342 strcpy(t->parms.name, dev->name);
1343}
1344
1345/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001346 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 * @dev: virtual device associated with tunnel
1348 **/
1349
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001350static void ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Patrick McHardy2941a482006-01-08 22:05:26 -08001352 struct ip6_tnl *t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001353 ip6_tnl_dev_init_gen(dev);
1354 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
1357/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001358 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 * @dev: fallback device
1360 *
1361 * Return: 0
1362 **/
1363
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001364static void __net_init ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Patrick McHardy2941a482006-01-08 22:05:26 -08001366 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001367 struct net *net = dev_net(dev);
1368 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1369
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001370 ip6_tnl_dev_init_gen(dev);
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001371 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 dev_hold(dev);
Eric Dumazet94767632010-09-15 20:25:34 +00001373 rcu_assign_pointer(ip6n->tnls_wc[0], t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001376static struct xfrm6_tunnel ip4ip6_handler __read_mostly = {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001377 .handler = ip4ip6_rcv,
1378 .err_handler = ip4ip6_err,
1379 .priority = 1,
1380};
1381
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +00001382static struct xfrm6_tunnel ip6ip6_handler __read_mostly = {
Patrick McHardy03037702005-07-19 14:03:34 -07001383 .handler = ip6ip6_rcv,
1384 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001385 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386};
1387
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001388static void __net_exit ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001389{
1390 int h;
1391 struct ip6_tnl *t;
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001392 LIST_HEAD(list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001393
1394 for (h = 0; h < HASH_SIZE; h++) {
Eric Dumazet94767632010-09-15 20:25:34 +00001395 t = rtnl_dereference(ip6n->tnls_r_l[h]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001396 while (t != NULL) {
1397 unregister_netdevice_queue(t->dev, &list);
Eric Dumazet94767632010-09-15 20:25:34 +00001398 t = rtnl_dereference(t->next);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001399 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001400 }
1401
Eric Dumazet94767632010-09-15 20:25:34 +00001402 t = rtnl_dereference(ip6n->tnls_wc[0]);
Eric Dumazetcf4432f2009-10-28 05:16:51 +00001403 unregister_netdevice_queue(t->dev, &list);
1404 unregister_netdevice_many(&list);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001405}
1406
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001407static int __net_init ip6_tnl_init_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001408{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001409 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001410 int err;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001411
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001412 ip6n->tnls[0] = ip6n->tnls_wc;
1413 ip6n->tnls[1] = ip6n->tnls_r_l;
1414
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001415 err = -ENOMEM;
1416 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1417 ip6_tnl_dev_setup);
1418
1419 if (!ip6n->fb_tnl_dev)
1420 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001421 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001422
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001423 ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001424
1425 err = register_netdev(ip6n->fb_tnl_dev);
1426 if (err < 0)
1427 goto err_register;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001428 return 0;
1429
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001430err_register:
1431 free_netdev(ip6n->fb_tnl_dev);
1432err_alloc_dev:
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001433 return err;
1434}
1435
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001436static void __net_exit ip6_tnl_exit_net(struct net *net)
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001437{
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001438 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001439
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001440 rtnl_lock();
1441 ip6_tnl_destroy_tunnels(ip6n);
1442 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001443}
1444
1445static struct pernet_operations ip6_tnl_net_ops = {
1446 .init = ip6_tnl_init_net,
1447 .exit = ip6_tnl_exit_net,
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001448 .id = &ip6_tnl_net_id,
1449 .size = sizeof(struct ip6_tnl_net),
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001450};
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452/**
1453 * ip6_tunnel_init - register protocol and reserve needed resources
1454 *
1455 * Return: 0 on success
1456 **/
1457
1458static int __init ip6_tunnel_init(void)
1459{
1460 int err;
1461
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001462 err = register_pernet_device(&ip6_tnl_net_ops);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001463 if (err < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001464 goto out_pernet;
1465
1466 err = xfrm6_tunnel_register(&ip4ip6_handler, AF_INET);
1467 if (err < 0) {
1468 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
1469 goto out_ip4ip6;
1470 }
1471
1472 err = xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6);
1473 if (err < 0) {
1474 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
1475 goto out_ip6ip6;
1476 }
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return 0;
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001479
1480out_ip6ip6:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001481 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +00001482out_ip4ip6:
1483 unregister_pernet_device(&ip6_tnl_net_ops);
1484out_pernet:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return err;
1486}
1487
1488/**
1489 * ip6_tunnel_cleanup - free resources and unregister protocol
1490 **/
1491
1492static void __exit ip6_tunnel_cleanup(void)
1493{
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001494 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001495 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001496
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001497 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001498 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Eric W. Biedermanac31cd32009-11-29 15:46:15 +00001500 unregister_pernet_device(&ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
1503module_init(ip6_tunnel_init);
1504module_exit(ip6_tunnel_cleanup);