blob: 2bda3ba100b170122edc27d843d227976a3c30e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002 * IPv6 tunneling device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Ville Nuorvala <vnuorval@tcs.hut.fi>
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09007 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * $Id$
10 *
11 * Based on:
Yasuyuki Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-02-15 00:43:16 +090028#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/if.h>
30#include <linux/in.h>
31#include <linux/ip.h>
32#include <linux/if_tunnel.h>
33#include <linux/net.h>
34#include <linux/in6.h>
35#include <linux/netdevice.h>
36#include <linux/if_arp.h>
37#include <linux/icmpv6.h>
38#include <linux/init.h>
39#include <linux/route.h>
40#include <linux/rtnetlink.h>
41#include <linux/netfilter_ipv6.h>
42
43#include <asm/uaccess.h>
44#include <asm/atomic.h>
45
Yasuyuki Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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 Kozakaic4d3efaf2007-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 Viroe69a4adc2006-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 {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070085 /* the IPv6 tunnel fallback device */
86 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070087 /* lists for storing tunnels in use */
88 struct ip6_tnl *tnls_r_l[HASH_SIZE];
89 struct ip6_tnl *tnls_wc[1];
90 struct ip6_tnl **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070091};
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* lock for the tunnel lists */
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090094static DEFINE_RWLOCK(ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
97{
98 struct dst_entry *dst = t->dst_cache;
99
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900100 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 dst->ops->check(dst, t->dst_cookie) == NULL) {
102 t->dst_cache = NULL;
103 dst_release(dst);
104 return NULL;
105 }
106
107 return dst;
108}
109
110static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
111{
112 dst_release(t->dst_cache);
113 t->dst_cache = NULL;
114}
115
116static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
117{
118 struct rt6_info *rt = (struct rt6_info *) dst;
119 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
120 dst_release(t->dst_cache);
121 t->dst_cache = dst;
122}
123
124/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900125 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900126 * @remote: the address of the tunnel exit-point
127 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900129 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900131 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * else %NULL
133 **/
134
135static struct ip6_tnl *
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700136ip6_tnl_lookup(struct net *net, struct in6_addr *remote, struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 unsigned h0 = HASH(remote);
139 unsigned h1 = HASH(local);
140 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700141 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700143 for (t = ip6n->tnls_r_l[h0 ^ h1]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (ipv6_addr_equal(local, &t->parms.laddr) &&
145 ipv6_addr_equal(remote, &t->parms.raddr) &&
146 (t->dev->flags & IFF_UP))
147 return t;
148 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700149 if ((t = ip6n->tnls_wc[0]) != NULL && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return t;
151
152 return NULL;
153}
154
155/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900156 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900157 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 *
159 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900160 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * &struct in6_addr entries laddr and raddr in @p.
162 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900163 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 **/
165
166static struct ip6_tnl **
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700167ip6_tnl_bucket(struct ip6_tnl_net *ip6n, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct in6_addr *remote = &p->raddr;
170 struct in6_addr *local = &p->laddr;
171 unsigned h = 0;
172 int prio = 0;
173
174 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
175 prio = 1;
176 h = HASH(remote) ^ HASH(local);
177 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700178 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900182 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * @t: tunnel to be added
184 **/
185
186static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700187ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700189 struct ip6_tnl **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 t->next = *tp;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900192 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 *tp = t;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900194 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900198 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * @t: tunnel to be removed
200 **/
201
202static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700203ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 struct ip6_tnl **tp;
206
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700207 for (tp = ip6_tnl_bucket(ip6n, &t->parms); *tp; tp = &(*tp)->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (t == *tp) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900209 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 *tp = t->next;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900211 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 }
214 }
215}
216
217/**
218 * ip6_tnl_create() - create a new tunnel
219 * @p: tunnel parameters
220 * @pt: pointer to new tunnel
221 *
222 * Description:
223 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900224 *
225 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800226 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 **/
228
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700229static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct net_device *dev;
232 struct ip6_tnl *t;
233 char name[IFNAMSIZ];
234 int err;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700235 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800237 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800239 else
240 sprintf(name, "ip6tnl%%d");
241
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900242 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800244 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700246 dev_net_set(dev, net);
247
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800248 if (strchr(name, '%')) {
249 if (dev_alloc_name(dev, name) < 0)
250 goto failed_free;
251 }
252
Patrick McHardy2941a482006-01-08 22:05:26 -0800253 t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900254 dev->init = ip6_tnl_dev_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 t->parms = *p;
256
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800257 if ((err = register_netdevice(dev)) < 0)
258 goto failed_free;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 dev_hold(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700261 ip6_tnl_link(ip6n, t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800262 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800263
264failed_free:
265 free_netdev(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800266failed:
267 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900271 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900272 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * @create: != 0 if allowed to create new tunnel if no match found
274 *
275 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900276 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * based on @parms. If this is unsuccessful, but @create is set a new
278 * tunnel device is created and registered for use.
279 *
280 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800281 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 **/
283
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700284static struct ip6_tnl *ip6_tnl_locate(struct net *net,
285 struct ip6_tnl_parm *p, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct in6_addr *remote = &p->raddr;
288 struct in6_addr *local = &p->laddr;
289 struct ip6_tnl *t;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700290 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700292 for (t = *ip6_tnl_bucket(ip6n, p); t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800294 ipv6_addr_equal(remote, &t->parms.raddr))
295 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800298 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700299 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900303 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900305 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900307 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 **/
309
310static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900311ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Patrick McHardy2941a482006-01-08 22:05:26 -0800313 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700314 struct net *net = dev_net(dev);
315 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Pavel Emelyanov15820e1292008-04-16 01:23:02 -0700317 if (dev == ip6n->fb_tnl_dev) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900318 write_lock_bh(&ip6_tnl_lock);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700319 ip6n->tnls_wc[0] = NULL;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900320 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 } else {
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700322 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 ip6_tnl_dst_reset(t);
325 dev_put(dev);
326}
327
328/**
329 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
330 * @skb: received socket buffer
331 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900332 * Return:
333 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 * else index to encapsulation limit
335 **/
336
337static __u16
338parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
339{
340 struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
341 __u8 nexthdr = ipv6h->nexthdr;
342 __u16 off = sizeof (*ipv6h);
343
344 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
345 __u16 optlen = 0;
346 struct ipv6_opt_hdr *hdr;
347 if (raw + off + sizeof (*hdr) > skb->data &&
348 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
349 break;
350
351 hdr = (struct ipv6_opt_hdr *) (raw + off);
352 if (nexthdr == NEXTHDR_FRAGMENT) {
353 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
354 if (frag_hdr->frag_off)
355 break;
356 optlen = 8;
357 } else if (nexthdr == NEXTHDR_AUTH) {
358 optlen = (hdr->hdrlen + 2) << 2;
359 } else {
360 optlen = ipv6_optlen(hdr);
361 }
362 if (nexthdr == NEXTHDR_DEST) {
363 __u16 i = off + 2;
364 while (1) {
365 struct ipv6_tlv_tnl_enc_lim *tel;
366
367 /* No more room for encapsulation limit */
368 if (i + sizeof (*tel) > off + optlen)
369 break;
370
371 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
372 /* return index of option if found and valid */
373 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
374 tel->length == 1)
375 return i;
376 /* else jump to next option */
377 if (tel->type)
378 i += tel->length + 2;
379 else
380 i++;
381 }
382 }
383 nexthdr = hdr->nexthdr;
384 off += optlen;
385 }
386 return 0;
387}
388
389/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900390 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 *
392 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900393 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * to the specifications in RFC 2473.
395 **/
396
Herbert Xud2acc342006-03-28 01:12:13 -0800397static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900398ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100399 int *type, int *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
402 struct ip6_tnl *t;
403 int rel_msg = 0;
404 int rel_type = ICMPV6_DEST_UNREACH;
405 int rel_code = ICMPV6_ADDR_UNREACH;
406 __u32 rel_info = 0;
407 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800408 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900410 /* If the packet doesn't contain the original IPv6 header we are
411 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 processing of the error. */
413
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900414 read_lock(&ip6_tnl_lock);
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700415 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700416 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 goto out;
418
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900419 if (t->parms.proto != ipproto && t->parms.proto != 0)
420 goto out;
421
Herbert Xud2acc342006-03-28 01:12:13 -0800422 err = 0;
423
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900424 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 __u32 teli;
426 struct ipv6_tlv_tnl_enc_lim *tel;
427 __u32 mtu;
428 case ICMPV6_DEST_UNREACH:
429 if (net_ratelimit())
430 printk(KERN_WARNING
431 "%s: Path to destination invalid "
432 "or inactive!\n", t->parms.name);
433 rel_msg = 1;
434 break;
435 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900436 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (net_ratelimit())
438 printk(KERN_WARNING
439 "%s: Too small hop limit or "
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900440 "routing loop in tunnel!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 t->parms.name);
442 rel_msg = 1;
443 }
444 break;
445 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800446 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900447 if ((*code) == ICMPV6_HDR_FIELD)
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800448 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Al Viro704eae12007-07-26 17:33:29 +0100450 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
452 if (tel->encap_limit == 0) {
453 if (net_ratelimit())
454 printk(KERN_WARNING
455 "%s: Too small encapsulation "
456 "limit or routing loop in "
457 "tunnel!\n", t->parms.name);
458 rel_msg = 1;
459 }
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800460 } else if (net_ratelimit()) {
461 printk(KERN_WARNING
462 "%s: Recipient unable to parse tunneled "
463 "packet!\n ", t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 break;
466 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100467 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (mtu < IPV6_MIN_MTU)
469 mtu = IPV6_MIN_MTU;
470 t->dev->mtu = mtu;
471
Al Virocc6cdac2006-02-18 16:02:18 -0500472 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 rel_type = ICMPV6_PKT_TOOBIG;
474 rel_code = 0;
475 rel_info = mtu;
476 rel_msg = 1;
477 }
478 break;
479 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900480
481 *type = rel_type;
482 *code = rel_code;
483 *info = rel_info;
484 *msg = rel_msg;
485
486out:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900487 read_unlock(&ip6_tnl_lock);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900488 return err;
489}
490
491static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900492ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100493 int type, int code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900494{
495 int rel_msg = 0;
496 int rel_type = type;
497 int rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100498 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900499 int err;
500 struct sk_buff *skb2;
501 struct iphdr *eiph;
502 struct flowi fl;
503 struct rtable *rt;
504
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900505 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
506 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900507 if (err < 0)
508 return err;
509
510 if (rel_msg == 0)
511 return 0;
512
513 switch (rel_type) {
514 case ICMPV6_DEST_UNREACH:
515 if (rel_code != ICMPV6_ADDR_UNREACH)
516 return 0;
517 rel_type = ICMP_DEST_UNREACH;
518 rel_code = ICMP_HOST_UNREACH;
519 break;
520 case ICMPV6_PKT_TOOBIG:
521 if (rel_code != 0)
522 return 0;
523 rel_type = ICMP_DEST_UNREACH;
524 rel_code = ICMP_FRAG_NEEDED;
525 break;
526 default:
527 return 0;
528 }
529
530 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
531 return 0;
532
533 skb2 = skb_clone(skb, GFP_ATOMIC);
534 if (!skb2)
535 return 0;
536
537 dst_release(skb2->dst);
538 skb2->dst = NULL;
539 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700540 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700541 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900542
543 /* Try to guess incoming interface */
544 memset(&fl, 0, sizeof(fl));
545 fl.fl4_dst = eiph->saddr;
546 fl.fl4_tos = RT_TOS(eiph->tos);
547 fl.proto = IPPROTO_IPIP;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700548 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900549 goto out;
550
551 skb2->dev = rt->u.dst.dev;
552
553 /* route "incoming" packet */
554 if (rt->rt_flags & RTCF_LOCAL) {
555 ip_rt_put(rt);
556 rt = NULL;
557 fl.fl4_dst = eiph->daddr;
558 fl.fl4_src = eiph->saddr;
559 fl.fl4_tos = eiph->tos;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700560 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl) ||
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900561 rt->u.dst.dev->type != ARPHRD_TUNNEL) {
562 ip_rt_put(rt);
563 goto out;
564 }
Denis V. Lunev9937ded2008-02-18 20:49:36 -0800565 skb2->dst = (struct dst_entry *)rt;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900566 } else {
567 ip_rt_put(rt);
568 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
569 skb2->dev) ||
570 skb2->dst->dev->type != ARPHRD_TUNNEL)
571 goto out;
572 }
573
574 /* change mtu on this route */
575 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
576 if (rel_info > dst_mtu(skb2->dst))
577 goto out;
578
579 skb2->dst->ops->update_pmtu(skb2->dst, rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900580 }
581
Al Viro704eae12007-07-26 17:33:29 +0100582 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900583
584out:
585 kfree_skb(skb2);
586 return 0;
587}
588
589static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900590ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100591 int type, int code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900592{
593 int rel_msg = 0;
594 int rel_type = type;
595 int rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100596 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900597 int err;
598
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900599 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
600 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900601 if (err < 0)
602 return err;
603
604 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 struct rt6_info *rt;
606 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 dst_release(skb2->dst);
612 skb2->dst = NULL;
613 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700614 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700617 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
618 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 if (rt && rt->rt6i_dev)
621 skb2->dev = rt->rt6i_dev;
622
623 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
624
625 if (rt)
626 dst_release(&rt->u.dst);
627
628 kfree_skb(skb2);
629 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900630
631 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900634static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
635 struct ipv6hdr *ipv6h,
636 struct sk_buff *skb)
637{
638 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
639
640 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700641 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900642
643 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700644 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900645}
646
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900647static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
648 struct ipv6hdr *ipv6h,
649 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900651 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800652 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900654 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700655 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900657
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800658static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
659{
660 struct ip6_tnl_parm *p = &t->parms;
661 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700662 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800663
664 if (p->flags & IP6_TNL_F_CAP_RCV) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900665 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800666
667 if (p->link)
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700668 ldev = dev_get_by_index(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800669
670 if ((ipv6_addr_is_multicast(&p->laddr) ||
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700671 likely(ipv6_chk_addr(net, &p->laddr, ldev, 0))) &&
672 likely(!ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800673 ret = 1;
674
675 if (ldev)
676 dev_put(ldev);
677 }
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
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900699 read_lock(&ip6_tnl_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) {
704 read_unlock(&ip6_tnl_lock);
705 goto discard;
706 }
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900709 read_unlock(&ip6_tnl_lock);
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)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 t->stat.rx_dropped++;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900715 read_unlock(&ip6_tnl_lock);
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));
724 skb->dev = t->dev;
725 dst_release(skb->dst);
726 skb->dst = NULL;
Yasuyuki Kozakai53ab61c2006-11-06 10:06:23 -0800727 nf_reset(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900728
729 dscp_ecn_decapsulate(t, ipv6h, skb);
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 t->stat.rx_packets++;
732 t->stat.rx_bytes += skb->len;
733 netif_rx(skb);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900734 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return 0;
736 }
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900737 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700739
740discard:
741 kfree_skb(skb);
742 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900745static int ip4ip6_rcv(struct sk_buff *skb)
746{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900747 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
748 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900749}
750
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900751static int ip6ip6_rcv(struct sk_buff *skb)
752{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900753 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
754 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900755}
756
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800757struct ipv6_tel_txoption {
758 struct ipv6_txoptions ops;
759 __u8 dst_opt[8];
760};
761
762static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800764 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800766 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
767 opt->dst_opt[3] = 1;
768 opt->dst_opt[4] = encap_limit;
769 opt->dst_opt[5] = IPV6_TLV_PADN;
770 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800772 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
773 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
776/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900777 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900779 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 *
781 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900782 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * doesn't match source of incoming packet.
784 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900785 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * 1 if conflict,
787 * 0 else
788 **/
789
790static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900791ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
794}
795
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800796static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
797{
798 struct ip6_tnl_parm *p = &t->parms;
799 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700800 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800801
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900802 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800803 struct net_device *ldev = NULL;
804
805 if (p->link)
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700806 ldev = dev_get_by_index(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800807
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700808 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800809 printk(KERN_WARNING
810 "%s xmit: Local address not yet configured!\n",
811 p->name);
812 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700813 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800814 printk(KERN_WARNING
815 "%s xmit: Routing loop! "
816 "Remote address found on this node!\n",
817 p->name);
818 else
819 ret = 1;
820 if (ldev)
821 dev_put(ldev);
822 }
823 return ret;
824}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900826 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900828 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900829 * @dsfield: dscp code for outer header
830 * @fl: flow of tunneled packet
831 * @encap_limit: encapsulation limit
832 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 *
834 * Description:
835 * Build new header and do some sanity checks on the packet before sending
836 * it.
837 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900838 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900839 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900840 * -1 fail
841 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 **/
843
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900844static int ip6_tnl_xmit2(struct sk_buff *skb,
845 struct net_device *dev,
846 __u8 dsfield,
847 struct flowi *fl,
848 int encap_limit,
849 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Patrick McHardy2941a482006-01-08 22:05:26 -0800851 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 struct net_device_stats *stats = &t->stat;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700853 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800854 struct ipv6_tel_txoption opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct dst_entry *dst;
856 struct net_device *tdev;
857 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700858 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900860 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if ((dst = ip6_tnl_dst_check(t)) != NULL)
864 dst_hold(dst);
Patrick McHardya57ebc92005-09-08 14:27:47 -0700865 else {
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700866 dst = ip6_route_output(dev_net(dev), NULL, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900868 if (dst->error || xfrm_lookup(&dst, fl, NULL, 0) < 0)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700869 goto tx_err_link_failure;
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 tdev = dst->dev;
873
874 if (tdev == dev) {
875 stats->collisions++;
876 if (net_ratelimit())
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900877 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 "%s: Local routing loop detected!\n",
879 t->parms.name);
880 goto tx_err_dst_release;
881 }
882 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800883 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 max_headroom += 8;
885 mtu -= 8;
886 }
887 if (mtu < IPV6_MIN_MTU)
888 mtu = IPV6_MIN_MTU;
Yasuyuki Kozakai26892052006-09-10 03:59:17 +0900889 if (skb->dst)
890 skb->dst->ops->update_pmtu(skb->dst, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900892 *pmtu = mtu;
893 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto tx_err_dst_release;
895 }
896
897 /*
898 * Okay, now see if we can stuff it in the buffer as-is.
899 */
900 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900901
Patrick McHardycfbba492007-07-09 15:33:40 -0700902 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
903 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
907 goto tx_err_dst_release;
908
909 if (skb->sk)
910 skb_set_owner_w(new_skb, skb->sk);
911 kfree_skb(skb);
912 skb = new_skb;
913 }
914 dst_release(skb->dst);
915 skb->dst = dst_clone(dst);
916
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700917 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900919 proto = fl->proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800920 if (encap_limit >= 0) {
921 init_tel_txopt(&opt, encap_limit);
922 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
923 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700924 skb_push(skb, sizeof(struct ipv6hdr));
925 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700926 ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900927 *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 dsfield = INET_ECN_encapsulate(0, dsfield);
929 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 ipv6h->hop_limit = t->parms.hop_limit;
931 ipv6h->nexthdr = proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900932 ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
933 ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 nf_reset(skb);
935 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -0800936 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200938 if (net_xmit_eval(err) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 stats->tx_bytes += pkt_len;
940 stats->tx_packets++;
941 } else {
942 stats->tx_errors++;
943 stats->tx_aborted_errors++;
944 }
945 ip6_tnl_dst_store(t, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return 0;
947tx_err_link_failure:
948 stats->tx_carrier_errors++;
949 dst_link_failure(skb);
950tx_err_dst_release:
951 dst_release(dst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900952 return err;
953}
954
955static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900956ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
957{
958 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700959 struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900960 int encap_limit = -1;
961 struct flowi fl;
962 __u8 dsfield;
963 __u32 mtu;
964 int err;
965
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900966 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
967 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900968 return -1;
969
970 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
971 encap_limit = t->parms.encap_limit;
972
973 memcpy(&fl, &t->fl, sizeof (fl));
974 fl.proto = IPPROTO_IPIP;
975
976 dsfield = ipv4_get_dsfield(iph);
977
978 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
Al Virob77f2fa2007-07-21 19:09:41 -0700979 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
980 & IPV6_TCLASS_MASK;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900981
982 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
983 if (err != 0) {
984 /* XXX: send ICMP error even if DF is not set. */
985 if (err == -EMSGSIZE)
986 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
987 htonl(mtu));
988 return -1;
989 }
990
991 return 0;
992}
993
994static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900995ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
996{
997 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700998 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900999 int encap_limit = -1;
1000 __u16 offset;
1001 struct flowi fl;
1002 __u8 dsfield;
1003 __u32 mtu;
1004 int err;
1005
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001006 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1007 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001008 return -1;
1009
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001010 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1011 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001012 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001013 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001014 if (tel->encap_limit == 0) {
1015 icmpv6_send(skb, ICMPV6_PARAMPROB,
1016 ICMPV6_HDR_FIELD, offset + 2, skb->dev);
1017 return -1;
1018 }
1019 encap_limit = tel->encap_limit - 1;
1020 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1021 encap_limit = t->parms.encap_limit;
1022
1023 memcpy(&fl, &t->fl, sizeof (fl));
1024 fl.proto = IPPROTO_IPV6;
1025
1026 dsfield = ipv6_get_dsfield(ipv6h);
1027 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1028 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1029 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1030 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1031
1032 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1033 if (err != 0) {
1034 if (err == -EMSGSIZE)
1035 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
1036 return -1;
1037 }
1038
1039 return 0;
1040}
1041
1042static int
1043ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1044{
1045 struct ip6_tnl *t = netdev_priv(dev);
1046 struct net_device_stats *stats = &t->stat;
1047 int ret;
1048
1049 if (t->recursion++) {
1050 t->stat.collisions++;
1051 goto tx_err;
1052 }
1053
1054 switch (skb->protocol) {
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001055 case __constant_htons(ETH_P_IP):
1056 ret = ip4ip6_tnl_xmit(skb, dev);
1057 break;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001058 case __constant_htons(ETH_P_IPV6):
1059 ret = ip6ip6_tnl_xmit(skb, dev);
1060 break;
1061 default:
1062 goto tx_err;
1063 }
1064
1065 if (ret < 0)
1066 goto tx_err;
1067
1068 t->recursion--;
1069 return 0;
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071tx_err:
1072 stats->tx_errors++;
1073 stats->tx_dropped++;
1074 kfree_skb(skb);
1075 t->recursion--;
1076 return 0;
1077}
1078
1079static void ip6_tnl_set_cap(struct ip6_tnl *t)
1080{
1081 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001082 int ltype = ipv6_addr_type(&p->laddr);
1083 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1086
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001087 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1088 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1089 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001090 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001091 if (ltype&IPV6_ADDR_UNICAST)
1092 p->flags |= IP6_TNL_F_CAP_XMIT;
1093 if (rtype&IPV6_ADDR_UNICAST)
1094 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096}
1097
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001098static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct net_device *dev = t->dev;
1101 struct ip6_tnl_parm *p = &t->parms;
1102 struct flowi *fl = &t->fl;
1103
1104 memcpy(&dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1105 memcpy(&dev->broadcast, &p->raddr, sizeof(struct in6_addr));
1106
1107 /* Set up flowi template */
1108 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1109 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1110 fl->oif = p->link;
1111 fl->fl6_flowlabel = 0;
1112
1113 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1114 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1115 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1116 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1117
1118 ip6_tnl_set_cap(t);
1119
1120 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1121 dev->flags |= IFF_POINTOPOINT;
1122 else
1123 dev->flags &= ~IFF_POINTOPOINT;
1124
1125 dev->iflink = p->link;
1126
1127 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001128 int strict = (ipv6_addr_type(&p->raddr) &
1129 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1130
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001131 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1132 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001133 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 if (rt == NULL)
1136 return;
1137
1138 if (rt->rt6i_dev) {
1139 dev->hard_header_len = rt->rt6i_dev->hard_header_len +
1140 sizeof (struct ipv6hdr);
1141
1142 dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
1143
1144 if (dev->mtu < IPV6_MIN_MTU)
1145 dev->mtu = IPV6_MIN_MTU;
1146 }
1147 dst_release(&rt->u.dst);
1148 }
1149}
1150
1151/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001152 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 * @t: tunnel to be changed
1154 * @p: tunnel configuration parameters
1155 * @active: != 0 if tunnel is ready for use
1156 *
1157 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001158 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 **/
1160
1161static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001162ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1165 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1166 t->parms.flags = p->flags;
1167 t->parms.hop_limit = p->hop_limit;
1168 t->parms.encap_limit = p->encap_limit;
1169 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001170 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001171 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001172 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001173 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return 0;
1175}
1176
1177/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001178 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 * @dev: virtual device associated with tunnel
1180 * @ifr: parameters passed from userspace
1181 * @cmd: command to be performed
1182 *
1183 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001184 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001185 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 *
1187 * The possible commands are the following:
1188 * %SIOCGETTUNNEL: get tunnel parameters for device
1189 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1190 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1191 * %SIOCDELTUNNEL: delete tunnel
1192 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001193 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * initialization, can be used for creating other tunnel devices.
1195 *
1196 * Return:
1197 * 0 on success,
1198 * %-EFAULT if unable to copy data to or from userspace,
1199 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1200 * %-EINVAL if passed tunnel parameters are invalid,
1201 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1202 * %-ENODEV if attempting to change or delete a nonexisting device
1203 **/
1204
1205static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001206ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct ip6_tnl_parm p;
1210 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001211 struct net *net = dev_net(dev);
1212 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 switch (cmd) {
1215 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001216 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001217 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 err = -EFAULT;
1219 break;
1220 }
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001221 t = ip6_tnl_locate(net, &p, 0);
Ville Nuorvala567131a2006-11-24 17:05:41 -08001222 }
1223 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001224 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 memcpy(&p, &t->parms, sizeof (p));
1226 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1227 err = -EFAULT;
1228 }
1229 break;
1230 case SIOCADDTUNNEL:
1231 case SIOCCHGTUNNEL:
1232 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (!capable(CAP_NET_ADMIN))
1234 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001235 err = -EFAULT;
1236 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001238 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001239 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1240 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 break;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001242 t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001243 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001244 if (t != NULL) {
1245 if (t->dev != dev) {
1246 err = -EEXIST;
1247 break;
1248 }
1249 } else
1250 t = netdev_priv(dev);
1251
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001252 ip6_tnl_unlink(ip6n, t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001253 err = ip6_tnl_change(t, &p);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001254 ip6_tnl_link(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 netdev_state_change(dev);
1256 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001257 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001259 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1260 err = -EFAULT;
1261
1262 } else
1263 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 break;
1265 case SIOCDELTUNNEL:
1266 err = -EPERM;
1267 if (!capable(CAP_NET_ADMIN))
1268 break;
1269
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001270 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001271 err = -EFAULT;
1272 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001274 err = -ENOENT;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001275 if ((t = ip6_tnl_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001277 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001278 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001280 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001282 err = 0;
1283 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 break;
1285 default:
1286 err = -EINVAL;
1287 }
1288 return err;
1289}
1290
1291/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001292 * ip6_tnl_get_stats - return the stats for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 * @dev: virtual device associated with tunnel
1294 *
1295 * Return: stats for device
1296 **/
1297
1298static struct net_device_stats *
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001299ip6_tnl_get_stats(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Patrick McHardy2941a482006-01-08 22:05:26 -08001301 return &(((struct ip6_tnl *)netdev_priv(dev))->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
1304/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001305 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 * @dev: virtual device associated with tunnel
1307 * @new_mtu: the new mtu
1308 *
1309 * Return:
1310 * 0 on success,
1311 * %-EINVAL if mtu too small
1312 **/
1313
1314static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001315ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 if (new_mtu < IPV6_MIN_MTU) {
1318 return -EINVAL;
1319 }
1320 dev->mtu = new_mtu;
1321 return 0;
1322}
1323
1324/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001325 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 * @dev: virtual device associated with tunnel
1327 *
1328 * Description:
1329 * Initialize function pointers and device parameters
1330 **/
1331
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001332static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001334 dev->uninit = ip6_tnl_dev_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 dev->destructor = free_netdev;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001336 dev->hard_start_xmit = ip6_tnl_xmit;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001337 dev->get_stats = ip6_tnl_get_stats;
1338 dev->do_ioctl = ip6_tnl_ioctl;
1339 dev->change_mtu = ip6_tnl_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 dev->type = ARPHRD_TUNNEL6;
1342 dev->hard_header_len = LL_MAX_HEADER + sizeof (struct ipv6hdr);
1343 dev->mtu = ETH_DATA_LEN - sizeof (struct ipv6hdr);
1344 dev->flags |= IFF_NOARP;
1345 dev->addr_len = sizeof(struct in6_addr);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001346 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
1349
1350/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001351 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * @dev: virtual device associated with tunnel
1353 **/
1354
1355static inline void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001356ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Patrick McHardy2941a482006-01-08 22:05:26 -08001358 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 t->dev = dev;
1360 strcpy(t->parms.name, dev->name);
1361}
1362
1363/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001364 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 * @dev: virtual device associated with tunnel
1366 **/
1367
1368static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001369ip6_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Patrick McHardy2941a482006-01-08 22:05:26 -08001371 struct ip6_tnl *t = netdev_priv(dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001372 ip6_tnl_dev_init_gen(dev);
1373 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return 0;
1375}
1376
1377/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001378 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * @dev: fallback device
1380 *
1381 * Return: 0
1382 **/
1383
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001384static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001385ip6_fb_tnl_dev_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Patrick McHardy2941a482006-01-08 22:05:26 -08001387 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001388 struct net *net = dev_net(dev);
1389 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1390
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001391 ip6_tnl_dev_init_gen(dev);
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001392 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 dev_hold(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001394 ip6n->tnls_wc[0] = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return 0;
1396}
1397
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001398static struct xfrm6_tunnel ip4ip6_handler = {
1399 .handler = ip4ip6_rcv,
1400 .err_handler = ip4ip6_err,
1401 .priority = 1,
1402};
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404static struct xfrm6_tunnel ip6ip6_handler = {
Patrick McHardy03037702005-07-19 14:03:34 -07001405 .handler = ip6ip6_rcv,
1406 .err_handler = ip6ip6_err,
Herbert Xud2acc342006-03-28 01:12:13 -08001407 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408};
1409
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001410static void ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
1411{
1412 int h;
1413 struct ip6_tnl *t;
1414
1415 for (h = 0; h < HASH_SIZE; h++) {
1416 while ((t = ip6n->tnls_r_l[h]) != NULL)
1417 unregister_netdevice(t->dev);
1418 }
1419
1420 t = ip6n->tnls_wc[0];
1421 unregister_netdevice(t->dev);
1422}
1423
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001424static int ip6_tnl_init_net(struct net *net)
1425{
1426 int err;
1427 struct ip6_tnl_net *ip6n;
1428
1429 err = -ENOMEM;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001430 ip6n = kzalloc(sizeof(struct ip6_tnl_net), GFP_KERNEL);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001431 if (ip6n == NULL)
1432 goto err_alloc;
1433
1434 err = net_assign_generic(net, ip6_tnl_net_id, ip6n);
1435 if (err < 0)
1436 goto err_assign;
1437
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001438 ip6n->tnls[0] = ip6n->tnls_wc;
1439 ip6n->tnls[1] = ip6n->tnls_r_l;
1440
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001441 err = -ENOMEM;
1442 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1443 ip6_tnl_dev_setup);
1444
1445 if (!ip6n->fb_tnl_dev)
1446 goto err_alloc_dev;
1447
1448 ip6n->fb_tnl_dev->init = ip6_fb_tnl_dev_init;
1449 dev_net_set(ip6n->fb_tnl_dev, net);
1450
1451 err = register_netdev(ip6n->fb_tnl_dev);
1452 if (err < 0)
1453 goto err_register;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001454 return 0;
1455
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001456err_register:
1457 free_netdev(ip6n->fb_tnl_dev);
1458err_alloc_dev:
1459 /* nothing */
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001460err_assign:
1461 kfree(ip6n);
1462err_alloc:
1463 return err;
1464}
1465
1466static void ip6_tnl_exit_net(struct net *net)
1467{
1468 struct ip6_tnl_net *ip6n;
1469
1470 ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001471 rtnl_lock();
1472 ip6_tnl_destroy_tunnels(ip6n);
1473 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001474 kfree(ip6n);
1475}
1476
1477static struct pernet_operations ip6_tnl_net_ops = {
1478 .init = ip6_tnl_init_net,
1479 .exit = ip6_tnl_exit_net,
1480};
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482/**
1483 * ip6_tunnel_init - register protocol and reserve needed resources
1484 *
1485 * Return: 0 on success
1486 **/
1487
1488static int __init ip6_tunnel_init(void)
1489{
1490 int err;
1491
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001492 if (xfrm6_tunnel_register(&ip4ip6_handler, AF_INET)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001493 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001494 err = -EAGAIN;
1495 goto out;
1496 }
1497
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001498 if (xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001499 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001500 err = -EAGAIN;
1501 goto unreg_ip4ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001503
1504 err = register_pernet_gen_device(&ip6_tnl_net_id, &ip6_tnl_net_ops);
1505 if (err < 0)
1506 goto err_pernet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return 0;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001508err_pernet:
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001509 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001510unreg_ip4ip6:
1511 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
1512out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return err;
1514}
1515
1516/**
1517 * ip6_tunnel_cleanup - free resources and unregister protocol
1518 **/
1519
1520static void __exit ip6_tunnel_cleanup(void)
1521{
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001522 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001523 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001524
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001525 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001526 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001528 unregister_pernet_gen_device(ip6_tnl_net_id, &ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
1531module_init(ip6_tunnel_init);
1532module_exit(ip6_tunnel_cleanup);