blob: 2365eb0fb6a470b6a13d32dfb1eabe4854d08b98 [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 *
9 * $Id$
10 *
11 * Based on:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090012 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * RFC 2473
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
20 *
21 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080024#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/types.h>
27#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090028#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/if.h>
30#include <linux/in.h>
31#include <linux/ip.h>
32#include <linux/if_tunnel.h>
33#include <linux/net.h>
34#include <linux/in6.h>
35#include <linux/netdevice.h>
36#include <linux/if_arp.h>
37#include <linux/icmpv6.h>
38#include <linux/init.h>
39#include <linux/route.h>
40#include <linux/rtnetlink.h>
41#include <linux/netfilter_ipv6.h>
42
43#include <asm/uaccess.h>
44#include <asm/atomic.h>
45
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090046#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/ip.h>
48#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/ip6_route.h>
50#include <net/addrconf.h>
51#include <net/ip6_tunnel.h>
52#include <net/xfrm.h>
53#include <net/dsfield.h>
54#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070055#include <net/net_namespace.h>
56#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090059MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_LICENSE("GPL");
61
62#define IPV6_TLV_TEL_DST_SIZE 8
63
64#ifdef IP6_TNL_DEBUG
Harvey Harrison0dc47872008-03-05 20:47:47 -080065#define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#else
67#define IP6_TNL_TRACE(x...) do {;} while(0)
68#endif
69
70#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +090071#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#define HASH_SIZE 32
74
Al Viroe69a4ad2006-11-14 20:56:00 -080075#define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090076 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
77 (HASH_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090079static int ip6_fb_tnl_dev_init(struct net_device *dev);
80static int ip6_tnl_dev_init(struct net_device *dev);
81static void ip6_tnl_dev_setup(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070083static int ip6_tnl_net_id;
84struct ip6_tnl_net {
85};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* the IPv6 tunnel fallback device */
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090088static struct net_device *ip6_fb_tnl_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90
91/* lists for storing tunnels in use */
92static struct ip6_tnl *tnls_r_l[HASH_SIZE];
93static struct ip6_tnl *tnls_wc[1];
94static struct ip6_tnl **tnls[2] = { tnls_wc, tnls_r_l };
95
96/* lock for the tunnel lists */
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090097static DEFINE_RWLOCK(ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
100{
101 struct dst_entry *dst = t->dst_cache;
102
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900103 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 dst->ops->check(dst, t->dst_cookie) == NULL) {
105 t->dst_cache = NULL;
106 dst_release(dst);
107 return NULL;
108 }
109
110 return dst;
111}
112
113static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
114{
115 dst_release(t->dst_cache);
116 t->dst_cache = NULL;
117}
118
119static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
120{
121 struct rt6_info *rt = (struct rt6_info *) dst;
122 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
123 dst_release(t->dst_cache);
124 t->dst_cache = dst;
125}
126
127/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900128 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900129 * @remote: the address of the tunnel exit-point
130 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900132 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900134 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * else %NULL
136 **/
137
138static struct ip6_tnl *
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900139ip6_tnl_lookup(struct in6_addr *remote, struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 unsigned h0 = HASH(remote);
142 unsigned h1 = HASH(local);
143 struct ip6_tnl *t;
144
145 for (t = tnls_r_l[h0 ^ h1]; t; t = t->next) {
146 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 }
151 if ((t = tnls_wc[0]) != NULL && (t->dev->flags & IFF_UP))
152 return t;
153
154 return NULL;
155}
156
157/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900158 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900159 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
161 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900162 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * &struct in6_addr entries laddr and raddr in @p.
164 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900165 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 **/
167
168static struct ip6_tnl **
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900169ip6_tnl_bucket(struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 struct in6_addr *remote = &p->raddr;
172 struct in6_addr *local = &p->laddr;
173 unsigned h = 0;
174 int prio = 0;
175
176 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
177 prio = 1;
178 h = HASH(remote) ^ HASH(local);
179 }
180 return &tnls[prio][h];
181}
182
183/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900184 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * @t: tunnel to be added
186 **/
187
188static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900189ip6_tnl_link(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900191 struct ip6_tnl **tp = ip6_tnl_bucket(&t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 t->next = *tp;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900194 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 *tp = t;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900196 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900200 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * @t: tunnel to be removed
202 **/
203
204static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900205ip6_tnl_unlink(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 struct ip6_tnl **tp;
208
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900209 for (tp = ip6_tnl_bucket(&t->parms); *tp; tp = &(*tp)->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (t == *tp) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900211 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *tp = t->next;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900213 write_unlock_bh(&ip6_tnl_lock);
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
Ville Nuorvala567131a2006-11-24 17:05:41 -0800231static struct ip6_tnl *ip6_tnl_create(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;
237
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800238 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800240 else
241 sprintf(name, "ip6tnl%%d");
242
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900243 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800245 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800247 if (strchr(name, '%')) {
248 if (dev_alloc_name(dev, name) < 0)
249 goto failed_free;
250 }
251
Patrick McHardy2941a482006-01-08 22:05:26 -0800252 t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900253 dev->init = ip6_tnl_dev_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 t->parms = *p;
255
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800256 if ((err = register_netdevice(dev)) < 0)
257 goto failed_free;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 dev_hold(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900260 ip6_tnl_link(t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800261 return t;
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800262
263failed_free:
264 free_netdev(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800265failed:
266 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900270 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900271 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 * @create: != 0 if allowed to create new tunnel if no match found
273 *
274 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900275 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * based on @parms. If this is unsuccessful, but @create is set a new
277 * tunnel device is created and registered for use.
278 *
279 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800280 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 **/
282
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900283static struct ip6_tnl *ip6_tnl_locate(struct ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 struct in6_addr *remote = &p->raddr;
286 struct in6_addr *local = &p->laddr;
287 struct ip6_tnl *t;
288
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900289 for (t = *ip6_tnl_bucket(p); t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800291 ipv6_addr_equal(remote, &t->parms.raddr))
292 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
294 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800295 return NULL;
296 return ip6_tnl_create(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900300 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900302 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900304 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 **/
306
307static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900308ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Patrick McHardy2941a482006-01-08 22:05:26 -0800310 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900312 if (dev == ip6_fb_tnl_dev) {
313 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 tnls_wc[0] = NULL;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900315 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 } else {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900317 ip6_tnl_unlink(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 ip6_tnl_dst_reset(t);
320 dev_put(dev);
321}
322
323/**
324 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
325 * @skb: received socket buffer
326 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900327 * Return:
328 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * else index to encapsulation limit
330 **/
331
332static __u16
333parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
334{
335 struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
336 __u8 nexthdr = ipv6h->nexthdr;
337 __u16 off = sizeof (*ipv6h);
338
339 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
340 __u16 optlen = 0;
341 struct ipv6_opt_hdr *hdr;
342 if (raw + off + sizeof (*hdr) > skb->data &&
343 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
344 break;
345
346 hdr = (struct ipv6_opt_hdr *) (raw + off);
347 if (nexthdr == NEXTHDR_FRAGMENT) {
348 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
349 if (frag_hdr->frag_off)
350 break;
351 optlen = 8;
352 } else if (nexthdr == NEXTHDR_AUTH) {
353 optlen = (hdr->hdrlen + 2) << 2;
354 } else {
355 optlen = ipv6_optlen(hdr);
356 }
357 if (nexthdr == NEXTHDR_DEST) {
358 __u16 i = off + 2;
359 while (1) {
360 struct ipv6_tlv_tnl_enc_lim *tel;
361
362 /* No more room for encapsulation limit */
363 if (i + sizeof (*tel) > off + optlen)
364 break;
365
366 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
367 /* return index of option if found and valid */
368 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
369 tel->length == 1)
370 return i;
371 /* else jump to next option */
372 if (tel->type)
373 i += tel->length + 2;
374 else
375 i++;
376 }
377 }
378 nexthdr = hdr->nexthdr;
379 off += optlen;
380 }
381 return 0;
382}
383
384/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900385 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *
387 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900388 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * to the specifications in RFC 2473.
390 **/
391
Herbert Xud2acc342006-03-28 01:12:13 -0800392static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900393ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100394 int *type, int *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
397 struct ip6_tnl *t;
398 int rel_msg = 0;
399 int rel_type = ICMPV6_DEST_UNREACH;
400 int rel_code = ICMPV6_ADDR_UNREACH;
401 __u32 rel_info = 0;
402 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800403 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900405 /* If the packet doesn't contain the original IPv6 header we are
406 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 processing of the error. */
408
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900409 read_lock(&ip6_tnl_lock);
410 if ((t = ip6_tnl_lookup(&ipv6h->daddr, &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 goto out;
412
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900413 if (t->parms.proto != ipproto && t->parms.proto != 0)
414 goto out;
415
Herbert Xud2acc342006-03-28 01:12:13 -0800416 err = 0;
417
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900418 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 __u32 teli;
420 struct ipv6_tlv_tnl_enc_lim *tel;
421 __u32 mtu;
422 case ICMPV6_DEST_UNREACH:
423 if (net_ratelimit())
424 printk(KERN_WARNING
425 "%s: Path to destination invalid "
426 "or inactive!\n", t->parms.name);
427 rel_msg = 1;
428 break;
429 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900430 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (net_ratelimit())
432 printk(KERN_WARNING
433 "%s: Too small hop limit or "
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900434 "routing loop in tunnel!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 t->parms.name);
436 rel_msg = 1;
437 }
438 break;
439 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800440 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900441 if ((*code) == ICMPV6_HDR_FIELD)
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800442 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Al Viro704eae12007-07-26 17:33:29 +0100444 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
446 if (tel->encap_limit == 0) {
447 if (net_ratelimit())
448 printk(KERN_WARNING
449 "%s: Too small encapsulation "
450 "limit or routing loop in "
451 "tunnel!\n", t->parms.name);
452 rel_msg = 1;
453 }
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800454 } else if (net_ratelimit()) {
455 printk(KERN_WARNING
456 "%s: Recipient unable to parse tunneled "
457 "packet!\n ", t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 break;
460 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100461 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (mtu < IPV6_MIN_MTU)
463 mtu = IPV6_MIN_MTU;
464 t->dev->mtu = mtu;
465
Al Virocc6cdac2006-02-18 16:02:18 -0500466 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 rel_type = ICMPV6_PKT_TOOBIG;
468 rel_code = 0;
469 rel_info = mtu;
470 rel_msg = 1;
471 }
472 break;
473 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900474
475 *type = rel_type;
476 *code = rel_code;
477 *info = rel_info;
478 *msg = rel_msg;
479
480out:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900481 read_unlock(&ip6_tnl_lock);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900482 return err;
483}
484
485static int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900486ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100487 int type, int code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900488{
489 int rel_msg = 0;
490 int rel_type = type;
491 int rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100492 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900493 int err;
494 struct sk_buff *skb2;
495 struct iphdr *eiph;
496 struct flowi fl;
497 struct rtable *rt;
498
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900499 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
500 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900501 if (err < 0)
502 return err;
503
504 if (rel_msg == 0)
505 return 0;
506
507 switch (rel_type) {
508 case ICMPV6_DEST_UNREACH:
509 if (rel_code != ICMPV6_ADDR_UNREACH)
510 return 0;
511 rel_type = ICMP_DEST_UNREACH;
512 rel_code = ICMP_HOST_UNREACH;
513 break;
514 case ICMPV6_PKT_TOOBIG:
515 if (rel_code != 0)
516 return 0;
517 rel_type = ICMP_DEST_UNREACH;
518 rel_code = ICMP_FRAG_NEEDED;
519 break;
520 default:
521 return 0;
522 }
523
524 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
525 return 0;
526
527 skb2 = skb_clone(skb, GFP_ATOMIC);
528 if (!skb2)
529 return 0;
530
531 dst_release(skb2->dst);
532 skb2->dst = NULL;
533 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700534 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700535 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900536
537 /* Try to guess incoming interface */
538 memset(&fl, 0, sizeof(fl));
539 fl.fl4_dst = eiph->saddr;
540 fl.fl4_tos = RT_TOS(eiph->tos);
541 fl.proto = IPPROTO_IPIP;
Denis V. Lunevf2063512008-01-22 22:07:34 -0800542 if (ip_route_output_key(&init_net, &rt, &fl))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900543 goto out;
544
545 skb2->dev = rt->u.dst.dev;
546
547 /* route "incoming" packet */
548 if (rt->rt_flags & RTCF_LOCAL) {
549 ip_rt_put(rt);
550 rt = NULL;
551 fl.fl4_dst = eiph->daddr;
552 fl.fl4_src = eiph->saddr;
553 fl.fl4_tos = eiph->tos;
Denis V. Lunevf2063512008-01-22 22:07:34 -0800554 if (ip_route_output_key(&init_net, &rt, &fl) ||
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900555 rt->u.dst.dev->type != ARPHRD_TUNNEL) {
556 ip_rt_put(rt);
557 goto out;
558 }
Denis V. Lunev9937ded2008-02-18 20:49:36 -0800559 skb2->dst = (struct dst_entry *)rt;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900560 } else {
561 ip_rt_put(rt);
562 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
563 skb2->dev) ||
564 skb2->dst->dev->type != ARPHRD_TUNNEL)
565 goto out;
566 }
567
568 /* change mtu on this route */
569 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
570 if (rel_info > dst_mtu(skb2->dst))
571 goto out;
572
573 skb2->dst->ops->update_pmtu(skb2->dst, rel_info);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900574 }
575
Al Viro704eae12007-07-26 17:33:29 +0100576 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900577
578out:
579 kfree_skb(skb2);
580 return 0;
581}
582
583static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900584ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100585 int type, int code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900586{
587 int rel_msg = 0;
588 int rel_type = type;
589 int rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100590 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900591 int err;
592
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900593 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
594 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900595 if (err < 0)
596 return err;
597
598 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct rt6_info *rt;
600 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 dst_release(skb2->dst);
606 skb2->dst = NULL;
607 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700608 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* Try to guess incoming interface */
Daniel Lezcano606a2b42008-03-04 13:45:59 -0800611 rt = rt6_lookup(&init_net, &ipv6_hdr(skb2)->saddr, NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 if (rt && rt->rt6i_dev)
614 skb2->dev = rt->rt6i_dev;
615
616 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
617
618 if (rt)
619 dst_release(&rt->u.dst);
620
621 kfree_skb(skb2);
622 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900623
624 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900627static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
628 struct ipv6hdr *ipv6h,
629 struct sk_buff *skb)
630{
631 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
632
633 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700634 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900635
636 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700637 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900638}
639
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900640static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
641 struct ipv6hdr *ipv6h,
642 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900644 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b2007-11-13 21:40:13 -0800645 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900647 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700648 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900650
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800651static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
652{
653 struct ip6_tnl_parm *p = &t->parms;
654 int ret = 0;
655
656 if (p->flags & IP6_TNL_F_CAP_RCV) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900657 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800658
659 if (p->link)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700660 ldev = dev_get_by_index(&init_net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800661
662 if ((ipv6_addr_is_multicast(&p->laddr) ||
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800663 likely(ipv6_chk_addr(&init_net, &p->laddr, ldev, 0))) &&
664 likely(!ipv6_chk_addr(&init_net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800665 ret = 1;
666
667 if (ldev)
668 dev_put(ldev);
669 }
670 return ret;
671}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900674 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900676 * @protocol: ethernet protocol ID
677 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 *
679 * Return: 0
680 **/
681
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900682static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900683 __u8 ipproto,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900684 void (*dscp_ecn_decapsulate)(struct ip6_tnl *t,
685 struct ipv6hdr *ipv6h,
686 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct ip6_tnl *t;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700689 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900691 read_lock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900693 if ((t = ip6_tnl_lookup(&ipv6h->saddr, &ipv6h->daddr)) != NULL) {
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900694 if (t->parms.proto != ipproto && t->parms.proto != 0) {
695 read_unlock(&ip6_tnl_lock);
696 goto discard;
697 }
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900700 read_unlock(&ip6_tnl_lock);
Herbert Xu50fba2a2006-04-04 13:50:45 -0700701 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
703
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800704 if (!ip6_tnl_rcv_ctl(t)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 t->stat.rx_dropped++;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900706 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 goto discard;
708 }
709 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700710 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700711 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900712 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 skb->pkt_type = PACKET_HOST;
714 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
715 skb->dev = t->dev;
716 dst_release(skb->dst);
717 skb->dst = NULL;
Yasuyuki Kozakai53ab61c2006-11-06 10:06:23 -0800718 nf_reset(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900719
720 dscp_ecn_decapsulate(t, ipv6h, skb);
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 t->stat.rx_packets++;
723 t->stat.rx_bytes += skb->len;
724 netif_rx(skb);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900725 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return 0;
727 }
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900728 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700730
731discard:
732 kfree_skb(skb);
733 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900736static int ip4ip6_rcv(struct sk_buff *skb)
737{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900738 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
739 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900740}
741
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900742static int ip6ip6_rcv(struct sk_buff *skb)
743{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900744 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
745 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900746}
747
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800748struct ipv6_tel_txoption {
749 struct ipv6_txoptions ops;
750 __u8 dst_opt[8];
751};
752
753static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800755 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800757 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
758 opt->dst_opt[3] = 1;
759 opt->dst_opt[4] = encap_limit;
760 opt->dst_opt[5] = IPV6_TLV_PADN;
761 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800763 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
764 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900768 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900770 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 *
772 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900773 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * doesn't match source of incoming packet.
775 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900776 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * 1 if conflict,
778 * 0 else
779 **/
780
781static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900782ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
785}
786
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800787static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
788{
789 struct ip6_tnl_parm *p = &t->parms;
790 int ret = 0;
791
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900792 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800793 struct net_device *ldev = NULL;
794
795 if (p->link)
Eric W. Biederman881d9662007-09-17 11:56:21 -0700796 ldev = dev_get_by_index(&init_net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800797
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800798 if (unlikely(!ipv6_chk_addr(&init_net, &p->laddr, ldev, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800799 printk(KERN_WARNING
800 "%s xmit: Local address not yet configured!\n",
801 p->name);
802 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800803 unlikely(ipv6_chk_addr(&init_net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800804 printk(KERN_WARNING
805 "%s xmit: Routing loop! "
806 "Remote address found on this node!\n",
807 p->name);
808 else
809 ret = 1;
810 if (ldev)
811 dev_put(ldev);
812 }
813 return ret;
814}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900816 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900818 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900819 * @dsfield: dscp code for outer header
820 * @fl: flow of tunneled packet
821 * @encap_limit: encapsulation limit
822 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 *
824 * Description:
825 * Build new header and do some sanity checks on the packet before sending
826 * it.
827 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900828 * Return:
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900829 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900830 * -1 fail
831 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 **/
833
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900834static int ip6_tnl_xmit2(struct sk_buff *skb,
835 struct net_device *dev,
836 __u8 dsfield,
837 struct flowi *fl,
838 int encap_limit,
839 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Patrick McHardy2941a482006-01-08 22:05:26 -0800841 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct net_device_stats *stats = &t->stat;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700843 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800844 struct ipv6_tel_txoption opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct dst_entry *dst;
846 struct net_device *tdev;
847 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700848 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900850 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if ((dst = ip6_tnl_dst_check(t)) != NULL)
854 dst_hold(dst);
Patrick McHardya57ebc92005-09-08 14:27:47 -0700855 else {
Daniel Lezcano4591db42008-03-05 10:48:10 -0800856 dst = ip6_route_output(&init_net, NULL, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900858 if (dst->error || xfrm_lookup(&dst, fl, NULL, 0) < 0)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700859 goto tx_err_link_failure;
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 tdev = dst->dev;
863
864 if (tdev == dev) {
865 stats->collisions++;
866 if (net_ratelimit())
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900867 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 "%s: Local routing loop detected!\n",
869 t->parms.name);
870 goto tx_err_dst_release;
871 }
872 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800873 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 max_headroom += 8;
875 mtu -= 8;
876 }
877 if (mtu < IPV6_MIN_MTU)
878 mtu = IPV6_MIN_MTU;
Yasuyuki Kozakai26892052006-09-10 03:59:17 +0900879 if (skb->dst)
880 skb->dst->ops->update_pmtu(skb->dst, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900882 *pmtu = mtu;
883 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 goto tx_err_dst_release;
885 }
886
887 /*
888 * Okay, now see if we can stuff it in the buffer as-is.
889 */
890 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900891
Patrick McHardycfbba492007-07-09 15:33:40 -0700892 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
893 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
897 goto tx_err_dst_release;
898
899 if (skb->sk)
900 skb_set_owner_w(new_skb, skb->sk);
901 kfree_skb(skb);
902 skb = new_skb;
903 }
904 dst_release(skb->dst);
905 skb->dst = dst_clone(dst);
906
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700907 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900909 proto = fl->proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800910 if (encap_limit >= 0) {
911 init_tel_txopt(&opt, encap_limit);
912 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
913 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700914 skb_push(skb, sizeof(struct ipv6hdr));
915 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700916 ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900917 *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 dsfield = INET_ECN_encapsulate(0, dsfield);
919 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ipv6h->hop_limit = t->parms.hop_limit;
921 ipv6h->nexthdr = proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900922 ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
923 ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 nf_reset(skb);
925 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -0800926 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200928 if (net_xmit_eval(err) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 stats->tx_bytes += pkt_len;
930 stats->tx_packets++;
931 } else {
932 stats->tx_errors++;
933 stats->tx_aborted_errors++;
934 }
935 ip6_tnl_dst_store(t, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return 0;
937tx_err_link_failure:
938 stats->tx_carrier_errors++;
939 dst_link_failure(skb);
940tx_err_dst_release:
941 dst_release(dst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900942 return err;
943}
944
945static inline int
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900946ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
947{
948 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700949 struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900950 int encap_limit = -1;
951 struct flowi fl;
952 __u8 dsfield;
953 __u32 mtu;
954 int err;
955
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900956 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
957 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900958 return -1;
959
960 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
961 encap_limit = t->parms.encap_limit;
962
963 memcpy(&fl, &t->fl, sizeof (fl));
964 fl.proto = IPPROTO_IPIP;
965
966 dsfield = ipv4_get_dsfield(iph);
967
968 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
Al Virob77f2fa2007-07-21 19:09:41 -0700969 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
970 & IPV6_TCLASS_MASK;
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +0900971
972 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
973 if (err != 0) {
974 /* XXX: send ICMP error even if DF is not set. */
975 if (err == -EMSGSIZE)
976 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
977 htonl(mtu));
978 return -1;
979 }
980
981 return 0;
982}
983
984static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900985ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
986{
987 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700988 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900989 int encap_limit = -1;
990 __u16 offset;
991 struct flowi fl;
992 __u8 dsfield;
993 __u32 mtu;
994 int err;
995
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900996 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
997 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900998 return -1;
999
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001000 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1001 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001002 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001003 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001004 if (tel->encap_limit == 0) {
1005 icmpv6_send(skb, ICMPV6_PARAMPROB,
1006 ICMPV6_HDR_FIELD, offset + 2, skb->dev);
1007 return -1;
1008 }
1009 encap_limit = tel->encap_limit - 1;
1010 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1011 encap_limit = t->parms.encap_limit;
1012
1013 memcpy(&fl, &t->fl, sizeof (fl));
1014 fl.proto = IPPROTO_IPV6;
1015
1016 dsfield = ipv6_get_dsfield(ipv6h);
1017 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1018 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1019 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1020 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1021
1022 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1023 if (err != 0) {
1024 if (err == -EMSGSIZE)
1025 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
1026 return -1;
1027 }
1028
1029 return 0;
1030}
1031
1032static int
1033ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1034{
1035 struct ip6_tnl *t = netdev_priv(dev);
1036 struct net_device_stats *stats = &t->stat;
1037 int ret;
1038
1039 if (t->recursion++) {
1040 t->stat.collisions++;
1041 goto tx_err;
1042 }
1043
1044 switch (skb->protocol) {
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001045 case __constant_htons(ETH_P_IP):
1046 ret = ip4ip6_tnl_xmit(skb, dev);
1047 break;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001048 case __constant_htons(ETH_P_IPV6):
1049 ret = ip6ip6_tnl_xmit(skb, dev);
1050 break;
1051 default:
1052 goto tx_err;
1053 }
1054
1055 if (ret < 0)
1056 goto tx_err;
1057
1058 t->recursion--;
1059 return 0;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061tx_err:
1062 stats->tx_errors++;
1063 stats->tx_dropped++;
1064 kfree_skb(skb);
1065 t->recursion--;
1066 return 0;
1067}
1068
1069static void ip6_tnl_set_cap(struct ip6_tnl *t)
1070{
1071 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001072 int ltype = ipv6_addr_type(&p->laddr);
1073 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1076
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001077 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1078 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1079 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001080 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001081 if (ltype&IPV6_ADDR_UNICAST)
1082 p->flags |= IP6_TNL_F_CAP_XMIT;
1083 if (rtype&IPV6_ADDR_UNICAST)
1084 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086}
1087
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001088static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 struct net_device *dev = t->dev;
1091 struct ip6_tnl_parm *p = &t->parms;
1092 struct flowi *fl = &t->fl;
1093
1094 memcpy(&dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1095 memcpy(&dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1096
1097 /* Set up flowi template */
1098 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1099 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1100 fl->oif = p->link;
1101 fl->fl6_flowlabel = 0;
1102
1103 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1104 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1105 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1106 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1107
1108 ip6_tnl_set_cap(t);
1109
1110 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1111 dev->flags |= IFF_POINTOPOINT;
1112 else
1113 dev->flags &= ~IFF_POINTOPOINT;
1114
1115 dev->iflink = p->link;
1116
1117 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001118 int strict = (ipv6_addr_type(&p->raddr) &
1119 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1120
Daniel Lezcano606a2b42008-03-04 13:45:59 -08001121 struct rt6_info *rt = rt6_lookup(&init_net, &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 }
1136 dst_release(&rt->u.dst);
1137 }
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
1144 * @active: != 0 if tunnel is ready for use
1145 *
1146 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001147 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 **/
1149
1150static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001151ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1154 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1155 t->parms.flags = p->flags;
1156 t->parms.hop_limit = p->hop_limit;
1157 t->parms.encap_limit = p->encap_limit;
1158 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001159 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001160 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001161 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001162 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 return 0;
1164}
1165
1166/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001167 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 * @dev: virtual device associated with tunnel
1169 * @ifr: parameters passed from userspace
1170 * @cmd: command to be performed
1171 *
1172 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001173 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001174 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 *
1176 * The possible commands are the following:
1177 * %SIOCGETTUNNEL: get tunnel parameters for device
1178 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1179 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1180 * %SIOCDELTUNNEL: delete tunnel
1181 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001182 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 * initialization, can be used for creating other tunnel devices.
1184 *
1185 * Return:
1186 * 0 on success,
1187 * %-EFAULT if unable to copy data to or from userspace,
1188 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1189 * %-EINVAL if passed tunnel parameters are invalid,
1190 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1191 * %-ENODEV if attempting to change or delete a nonexisting device
1192 **/
1193
1194static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001195ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 struct ip6_tnl_parm p;
1199 struct ip6_tnl *t = NULL;
1200
1201 switch (cmd) {
1202 case SIOCGETTUNNEL:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001203 if (dev == ip6_fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001204 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 err = -EFAULT;
1206 break;
1207 }
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001208 t = ip6_tnl_locate(&p, 0);
Ville Nuorvala567131a2006-11-24 17:05:41 -08001209 }
1210 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001211 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 memcpy(&p, &t->parms, sizeof (p));
1213 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1214 err = -EFAULT;
1215 }
1216 break;
1217 case SIOCADDTUNNEL:
1218 case SIOCCHGTUNNEL:
1219 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (!capable(CAP_NET_ADMIN))
1221 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001222 err = -EFAULT;
1223 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001225 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001226 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1227 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 break;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001229 t = ip6_tnl_locate(&p, cmd == SIOCADDTUNNEL);
1230 if (dev != ip6_fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001231 if (t != NULL) {
1232 if (t->dev != dev) {
1233 err = -EEXIST;
1234 break;
1235 }
1236 } else
1237 t = netdev_priv(dev);
1238
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001239 ip6_tnl_unlink(t);
1240 err = ip6_tnl_change(t, &p);
1241 ip6_tnl_link(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 netdev_state_change(dev);
1243 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001244 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001246 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1247 err = -EFAULT;
1248
1249 } else
1250 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 break;
1252 case SIOCDELTUNNEL:
1253 err = -EPERM;
1254 if (!capable(CAP_NET_ADMIN))
1255 break;
1256
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001257 if (dev == ip6_fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001258 err = -EFAULT;
1259 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001261 err = -ENOENT;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001262 if ((t = ip6_tnl_locate(&p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001264 err = -EPERM;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001265 if (t->dev == ip6_fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001267 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001269 err = 0;
1270 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 break;
1272 default:
1273 err = -EINVAL;
1274 }
1275 return err;
1276}
1277
1278/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001279 * ip6_tnl_get_stats - return the stats for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 * @dev: virtual device associated with tunnel
1281 *
1282 * Return: stats for device
1283 **/
1284
1285static struct net_device_stats *
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001286ip6_tnl_get_stats(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Patrick McHardy2941a482006-01-08 22:05:26 -08001288 return &(((struct ip6_tnl *)netdev_priv(dev))->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001292 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 * @dev: virtual device associated with tunnel
1294 * @new_mtu: the new mtu
1295 *
1296 * Return:
1297 * 0 on success,
1298 * %-EINVAL if mtu too small
1299 **/
1300
1301static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001302ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 if (new_mtu < IPV6_MIN_MTU) {
1305 return -EINVAL;
1306 }
1307 dev->mtu = new_mtu;
1308 return 0;
1309}
1310
1311/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001312 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 * @dev: virtual device associated with tunnel
1314 *
1315 * Description:
1316 * Initialize function pointers and device parameters
1317 **/
1318
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001319static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001321 dev->uninit = ip6_tnl_dev_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 dev->destructor = free_netdev;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001323 dev->hard_start_xmit = ip6_tnl_xmit;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001324 dev->get_stats = ip6_tnl_get_stats;
1325 dev->do_ioctl = ip6_tnl_ioctl;
1326 dev->change_mtu = ip6_tnl_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 dev->type = ARPHRD_TUNNEL6;
1329 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1330 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1331 dev->flags |= IFF_NOARP;
1332 dev->addr_len = sizeof(struct in6_addr);
1333}
1334
1335
1336/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001337 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 * @dev: virtual device associated with tunnel
1339 **/
1340
1341static inline void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001342ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
Patrick McHardy2941a482006-01-08 22:05:26 -08001344 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 t->dev = dev;
1346 strcpy(t->parms.name, dev->name);
1347}
1348
1349/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001350 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 * @dev: virtual device associated with tunnel
1352 **/
1353
1354static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001355ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
Patrick McHardy2941a482006-01-08 22:05:26 -08001357 struct ip6_tnl *t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001358 ip6_tnl_dev_init_gen(dev);
1359 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return 0;
1361}
1362
1363/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001364 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 * @dev: fallback device
1366 *
1367 * Return: 0
1368 **/
1369
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001370static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001371ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Patrick McHardy2941a482006-01-08 22:05:26 -08001373 struct ip6_tnl *t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001374 ip6_tnl_dev_init_gen(dev);
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001375 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 dev_hold(dev);
1377 tnls_wc[0] = t;
1378 return 0;
1379}
1380
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001381static struct xfrm6_tunnel ip4ip6_handler = {
1382 .handler = ip4ip6_rcv,
1383 .err_handler = ip4ip6_err,
1384 .priority = 1,
1385};
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387static struct xfrm6_tunnel ip6ip6_handler = {
Patrick McHardy03037702005-07-19 14:03:34 -07001388 .handler = ip6ip6_rcv,
1389 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001390 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391};
1392
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001393static int ip6_tnl_init_net(struct net *net)
1394{
1395 int err;
1396 struct ip6_tnl_net *ip6n;
1397
1398 err = -ENOMEM;
1399 ip6n = kmalloc(sizeof(struct ip6_tnl_net), GFP_KERNEL);
1400 if (ip6n == NULL)
1401 goto err_alloc;
1402
1403 err = net_assign_generic(net, ip6_tnl_net_id, ip6n);
1404 if (err < 0)
1405 goto err_assign;
1406
1407 return 0;
1408
1409err_assign:
1410 kfree(ip6n);
1411err_alloc:
1412 return err;
1413}
1414
1415static void ip6_tnl_exit_net(struct net *net)
1416{
1417 struct ip6_tnl_net *ip6n;
1418
1419 ip6n = net_generic(net, ip6_tnl_net_id);
1420 kfree(ip6n);
1421}
1422
1423static struct pernet_operations ip6_tnl_net_ops = {
1424 .init = ip6_tnl_init_net,
1425 .exit = ip6_tnl_exit_net,
1426};
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428/**
1429 * ip6_tunnel_init - register protocol and reserve needed resources
1430 *
1431 * Return: 0 on success
1432 **/
1433
1434static int __init ip6_tunnel_init(void)
1435{
1436 int err;
1437
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001438 if (xfrm6_tunnel_register(&ip4ip6_handler, AF_INET)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001439 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001440 err = -EAGAIN;
1441 goto out;
1442 }
1443
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001444 if (xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001445 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001446 err = -EAGAIN;
1447 goto unreg_ip4ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001449 ip6_fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1450 ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001452 if (!ip6_fb_tnl_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 err = -ENOMEM;
1454 goto fail;
1455 }
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001456 ip6_fb_tnl_dev->init = ip6_fb_tnl_dev_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001458 if ((err = register_netdev(ip6_fb_tnl_dev))) {
1459 free_netdev(ip6_fb_tnl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto fail;
1461 }
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001462
1463 err = register_pernet_gen_device(&ip6_tnl_net_id, &ip6_tnl_net_ops);
1464 if (err < 0)
1465 goto err_pernet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return 0;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001467err_pernet:
1468 unregister_netdevice(ip6_fb_tnl_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469fail:
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001470 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001471unreg_ip4ip6:
1472 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
1473out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return err;
1475}
1476
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001477static void __exit ip6_tnl_destroy_tunnels(void)
Yasuyuki Kozakaib3fdd9f2006-11-06 10:06:22 -08001478{
1479 int h;
1480 struct ip6_tnl *t;
1481
1482 for (h = 0; h < HASH_SIZE; h++) {
1483 while ((t = tnls_r_l[h]) != NULL)
1484 unregister_netdevice(t->dev);
1485 }
1486
1487 t = tnls_wc[0];
1488 unregister_netdevice(t->dev);
1489}
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491/**
1492 * ip6_tunnel_cleanup - free resources and unregister protocol
1493 **/
1494
1495static void __exit ip6_tunnel_cleanup(void)
1496{
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001497 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001498 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
Yasuyuki Kozakaic4d3efa2007-02-15 00:43:16 +09001499
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001500 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001501 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Yasuyuki Kozakaib3fdd9f2006-11-06 10:06:22 -08001503 rtnl_lock();
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001504 ip6_tnl_destroy_tunnels();
Yasuyuki Kozakaib3fdd9f2006-11-06 10:06:22 -08001505 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001506
1507 unregister_pernet_gen_device(ip6_tnl_net_id, &ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
1510module_init(ip6_tunnel_init);
1511module_exit(ip6_tunnel_cleanup);