blob: 404d16a97d5c9d85c119f1853ce23e509c924ed5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09002 * IPv6 tunneling device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Ville Nuorvala <vnuorval@tcs.hut.fi>
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09007 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Based on:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090010 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * RFC 2473
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 *
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080022#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/types.h>
25#include <linux/sockios.h>
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090026#include <linux/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/if.h>
28#include <linux/in.h>
29#include <linux/ip.h>
30#include <linux/if_tunnel.h>
31#include <linux/net.h>
32#include <linux/in6.h>
33#include <linux/netdevice.h>
34#include <linux/if_arp.h>
35#include <linux/icmpv6.h>
36#include <linux/init.h>
37#include <linux/route.h>
38#include <linux/rtnetlink.h>
39#include <linux/netfilter_ipv6.h>
40
41#include <asm/uaccess.h>
42#include <asm/atomic.h>
43
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090044#include <net/icmp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/ip.h>
46#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/ip6_route.h>
48#include <net/addrconf.h>
49#include <net/ip6_tunnel.h>
50#include <net/xfrm.h>
51#include <net/dsfield.h>
52#include <net/inet_ecn.h>
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070053#include <net/net_namespace.h>
54#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56MODULE_AUTHOR("Ville Nuorvala");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090057MODULE_DESCRIPTION("IPv6 tunneling device");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058MODULE_LICENSE("GPL");
59
60#define IPV6_TLV_TEL_DST_SIZE 8
61
62#ifdef IP6_TNL_DEBUG
Harvey Harrison0dc47872008-03-05 20:47:47 -080063#define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __func__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#else
65#define IP6_TNL_TRACE(x...) do {;} while(0)
66#endif
67
68#define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +090069#define IPV6_TCLASS_SHIFT 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define HASH_SIZE 32
72
Al Viroe69a4adc2006-11-14 20:56:00 -080073#define HASH(addr) ((__force u32)((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090074 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
75 (HASH_SIZE - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Stephen Hemminger1326c3d2008-11-20 20:33:56 -080077static void ip6_fb_tnl_dev_init(struct net_device *dev);
78static void ip6_tnl_dev_init(struct net_device *dev);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090079static void ip6_tnl_dev_setup(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070081static int ip6_tnl_net_id;
82struct ip6_tnl_net {
Pavel Emelyanov15820e1292008-04-16 01:23:02 -070083 /* the IPv6 tunnel fallback device */
84 struct net_device *fb_tnl_dev;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -070085 /* lists for storing tunnels in use */
86 struct ip6_tnl *tnls_r_l[HASH_SIZE];
87 struct ip6_tnl *tnls_wc[1];
88 struct ip6_tnl **tnls[2];
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -070089};
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* lock for the tunnel lists */
Yasuyuki Kozakai31445812007-02-10 00:30:33 +090092static DEFINE_RWLOCK(ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94static inline struct dst_entry *ip6_tnl_dst_check(struct ip6_tnl *t)
95{
96 struct dst_entry *dst = t->dst_cache;
97
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090098 if (dst && dst->obsolete &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 dst->ops->check(dst, t->dst_cookie) == NULL) {
100 t->dst_cache = NULL;
101 dst_release(dst);
102 return NULL;
103 }
104
105 return dst;
106}
107
108static inline void ip6_tnl_dst_reset(struct ip6_tnl *t)
109{
110 dst_release(t->dst_cache);
111 t->dst_cache = NULL;
112}
113
114static inline void ip6_tnl_dst_store(struct ip6_tnl *t, struct dst_entry *dst)
115{
116 struct rt6_info *rt = (struct rt6_info *) dst;
117 t->dst_cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
118 dst_release(t->dst_cache);
119 t->dst_cache = dst;
120}
121
122/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900123 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900124 * @remote: the address of the tunnel exit-point
125 * @local: the address of the tunnel entry-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900127 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * tunnel matching given end-points if found,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900129 * else fallback tunnel if its device is up,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * else %NULL
131 **/
132
133static struct ip6_tnl *
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700134ip6_tnl_lookup(struct net *net, struct in6_addr *remote, struct in6_addr *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 unsigned h0 = HASH(remote);
137 unsigned h1 = HASH(local);
138 struct ip6_tnl *t;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700139 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700141 for (t = ip6n->tnls_r_l[h0 ^ h1]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (ipv6_addr_equal(local, &t->parms.laddr) &&
143 ipv6_addr_equal(remote, &t->parms.raddr) &&
144 (t->dev->flags & IFF_UP))
145 return t;
146 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700147 if ((t = ip6n->tnls_wc[0]) != NULL && (t->dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return t;
149
150 return NULL;
151}
152
153/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900154 * ip6_tnl_bucket - get head of list matching given tunnel parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900155 * @p: parameters containing tunnel end-points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 *
157 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900158 * ip6_tnl_bucket() returns the head of the list matching the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * &struct in6_addr entries laddr and raddr in @p.
160 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900161 * Return: head of IPv6 tunnel list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 **/
163
164static struct ip6_tnl **
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700165ip6_tnl_bucket(struct ip6_tnl_net *ip6n, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct in6_addr *remote = &p->raddr;
168 struct in6_addr *local = &p->laddr;
169 unsigned h = 0;
170 int prio = 0;
171
172 if (!ipv6_addr_any(remote) || !ipv6_addr_any(local)) {
173 prio = 1;
174 h = HASH(remote) ^ HASH(local);
175 }
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700176 return &ip6n->tnls[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900180 * ip6_tnl_link - add tunnel to hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * @t: tunnel to be added
182 **/
183
184static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700185ip6_tnl_link(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700187 struct ip6_tnl **tp = ip6_tnl_bucket(ip6n, &t->parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 t->next = *tp;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900190 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 *tp = t;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900192 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900196 * ip6_tnl_unlink - remove tunnel from hash table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * @t: tunnel to be removed
198 **/
199
200static void
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700201ip6_tnl_unlink(struct ip6_tnl_net *ip6n, struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct ip6_tnl **tp;
204
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700205 for (tp = ip6_tnl_bucket(ip6n, &t->parms); *tp; tp = &(*tp)->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (t == *tp) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900207 write_lock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *tp = t->next;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900209 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
211 }
212 }
213}
214
215/**
216 * ip6_tnl_create() - create a new tunnel
217 * @p: tunnel parameters
218 * @pt: pointer to new tunnel
219 *
220 * Description:
221 * Create tunnel matching given parameters.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900222 *
223 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800224 * created tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 **/
226
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700227static struct ip6_tnl *ip6_tnl_create(struct net *net, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 struct net_device *dev;
230 struct ip6_tnl *t;
231 char name[IFNAMSIZ];
232 int err;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700233 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800235 if (p->name[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 strlcpy(name, p->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800237 else
238 sprintf(name, "ip6tnl%%d");
239
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900240 dev = alloc_netdev(sizeof (*t), name, ip6_tnl_dev_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (dev == NULL)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800242 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Pavel Emelyanov554eb272008-04-16 01:24:13 -0700244 dev_net_set(dev, net);
245
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800246 if (strchr(name, '%')) {
247 if (dev_alloc_name(dev, name) < 0)
248 goto failed_free;
249 }
250
Patrick McHardy2941a482006-01-08 22:05:26 -0800251 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 t->parms = *p;
Noriaki TAKAMIYA20461c12009-02-09 15:01:19 -0800253 ip6_tnl_dev_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800255 if ((err = register_netdevice(dev)) < 0)
256 goto failed_free;
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 dev_hold(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700259 ip6_tnl_link(ip6n, t);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800260 return t;
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800261
262failed_free:
263 free_netdev(dev);
Ville Nuorvala567131a2006-11-24 17:05:41 -0800264failed:
265 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900269 * ip6_tnl_locate - find or create tunnel matching given parameters
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900270 * @p: tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * @create: != 0 if allowed to create new tunnel if no match found
272 *
273 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900274 * ip6_tnl_locate() first tries to locate an existing tunnel
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * based on @parms. If this is unsuccessful, but @create is set a new
276 * tunnel device is created and registered for use.
277 *
278 * Return:
Ville Nuorvala567131a2006-11-24 17:05:41 -0800279 * matching tunnel or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 **/
281
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700282static struct ip6_tnl *ip6_tnl_locate(struct net *net,
283 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;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700288 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700290 for (t = *ip6_tnl_bucket(ip6n, p); t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (ipv6_addr_equal(local, &t->parms.laddr) &&
Ville Nuorvala567131a2006-11-24 17:05:41 -0800292 ipv6_addr_equal(remote, &t->parms.raddr))
293 return t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 if (!create)
Ville Nuorvala567131a2006-11-24 17:05:41 -0800296 return NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700297 return ip6_tnl_create(net, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900301 * ip6_tnl_dev_uninit - tunnel device uninitializer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * @dev: the device to be destroyed
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900303 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900305 * ip6_tnl_dev_uninit() removes tunnel from its list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 **/
307
308static void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900309ip6_tnl_dev_uninit(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Patrick McHardy2941a482006-01-08 22:05:26 -0800311 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700312 struct net *net = dev_net(dev);
313 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Pavel Emelyanov15820e1292008-04-16 01:23:02 -0700315 if (dev == ip6n->fb_tnl_dev) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900316 write_lock_bh(&ip6_tnl_lock);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -0700317 ip6n->tnls_wc[0] = NULL;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900318 write_unlock_bh(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 } else {
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700320 ip6_tnl_unlink(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 ip6_tnl_dst_reset(t);
323 dev_put(dev);
324}
325
326/**
327 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
328 * @skb: received socket buffer
329 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900330 * Return:
331 * 0 if none was found,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * else index to encapsulation limit
333 **/
334
335static __u16
336parse_tlv_tnl_enc_lim(struct sk_buff *skb, __u8 * raw)
337{
338 struct ipv6hdr *ipv6h = (struct ipv6hdr *) raw;
339 __u8 nexthdr = ipv6h->nexthdr;
340 __u16 off = sizeof (*ipv6h);
341
342 while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) {
343 __u16 optlen = 0;
344 struct ipv6_opt_hdr *hdr;
345 if (raw + off + sizeof (*hdr) > skb->data &&
346 !pskb_may_pull(skb, raw - skb->data + off + sizeof (*hdr)))
347 break;
348
349 hdr = (struct ipv6_opt_hdr *) (raw + off);
350 if (nexthdr == NEXTHDR_FRAGMENT) {
351 struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr;
352 if (frag_hdr->frag_off)
353 break;
354 optlen = 8;
355 } else if (nexthdr == NEXTHDR_AUTH) {
356 optlen = (hdr->hdrlen + 2) << 2;
357 } else {
358 optlen = ipv6_optlen(hdr);
359 }
360 if (nexthdr == NEXTHDR_DEST) {
361 __u16 i = off + 2;
362 while (1) {
363 struct ipv6_tlv_tnl_enc_lim *tel;
364
365 /* No more room for encapsulation limit */
366 if (i + sizeof (*tel) > off + optlen)
367 break;
368
369 tel = (struct ipv6_tlv_tnl_enc_lim *) &raw[i];
370 /* return index of option if found and valid */
371 if (tel->type == IPV6_TLV_TNL_ENCAP_LIMIT &&
372 tel->length == 1)
373 return i;
374 /* else jump to next option */
375 if (tel->type)
376 i += tel->length + 2;
377 else
378 i++;
379 }
380 }
381 nexthdr = hdr->nexthdr;
382 off += optlen;
383 }
384 return 0;
385}
386
387/**
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900388 * ip6_tnl_err - tunnel error handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
390 * Description:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900391 * ip6_tnl_err() should handle errors in the tunnel according
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * to the specifications in RFC 2473.
393 **/
394
Herbert Xud2acc342006-03-28 01:12:13 -0800395static int
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900396ip6_tnl_err(struct sk_buff *skb, __u8 ipproto, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100397 int *type, int *code, int *msg, __u32 *info, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 struct ipv6hdr *ipv6h = (struct ipv6hdr *) skb->data;
400 struct ip6_tnl *t;
401 int rel_msg = 0;
402 int rel_type = ICMPV6_DEST_UNREACH;
403 int rel_code = ICMPV6_ADDR_UNREACH;
404 __u32 rel_info = 0;
405 __u16 len;
Herbert Xud2acc342006-03-28 01:12:13 -0800406 int err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900408 /* If the packet doesn't contain the original IPv6 header we are
409 in trouble since we might need the source address for further
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 processing of the error. */
411
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900412 read_lock(&ip6_tnl_lock);
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700413 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->daddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700414 &ipv6h->saddr)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 goto out;
416
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900417 if (t->parms.proto != ipproto && t->parms.proto != 0)
418 goto out;
419
Herbert Xud2acc342006-03-28 01:12:13 -0800420 err = 0;
421
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900422 switch (*type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 __u32 teli;
424 struct ipv6_tlv_tnl_enc_lim *tel;
425 __u32 mtu;
426 case ICMPV6_DEST_UNREACH:
427 if (net_ratelimit())
428 printk(KERN_WARNING
429 "%s: Path to destination invalid "
430 "or inactive!\n", t->parms.name);
431 rel_msg = 1;
432 break;
433 case ICMPV6_TIME_EXCEED:
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900434 if ((*code) == ICMPV6_EXC_HOPLIMIT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (net_ratelimit())
436 printk(KERN_WARNING
437 "%s: Too small hop limit or "
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900438 "routing loop in tunnel!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 t->parms.name);
440 rel_msg = 1;
441 }
442 break;
443 case ICMPV6_PARAMPROB:
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800444 teli = 0;
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900445 if ((*code) == ICMPV6_HDR_FIELD)
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800446 teli = parse_tlv_tnl_enc_lim(skb, skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Al Viro704eae12007-07-26 17:33:29 +0100448 if (teli && teli == *info - 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 tel = (struct ipv6_tlv_tnl_enc_lim *) &skb->data[teli];
450 if (tel->encap_limit == 0) {
451 if (net_ratelimit())
452 printk(KERN_WARNING
453 "%s: Too small encapsulation "
454 "limit or routing loop in "
455 "tunnel!\n", t->parms.name);
456 rel_msg = 1;
457 }
Ville Nuorvala107a5fe2006-11-24 17:08:58 -0800458 } else if (net_ratelimit()) {
459 printk(KERN_WARNING
460 "%s: Recipient unable to parse tunneled "
461 "packet!\n ", t->parms.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463 break;
464 case ICMPV6_PKT_TOOBIG:
Al Viro704eae12007-07-26 17:33:29 +0100465 mtu = *info - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (mtu < IPV6_MIN_MTU)
467 mtu = IPV6_MIN_MTU;
468 t->dev->mtu = mtu;
469
Al Virocc6cdac2006-02-18 16:02:18 -0500470 if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 rel_type = ICMPV6_PKT_TOOBIG;
472 rel_code = 0;
473 rel_info = mtu;
474 rel_msg = 1;
475 }
476 break;
477 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900478
479 *type = rel_type;
480 *code = rel_code;
481 *info = rel_info;
482 *msg = rel_msg;
483
484out:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900485 read_unlock(&ip6_tnl_lock);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900486 return err;
487}
488
489static int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900490ip4ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100491 int type, int code, int offset, __be32 info)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900492{
493 int rel_msg = 0;
494 int rel_type = type;
495 int rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100496 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900497 int err;
498 struct sk_buff *skb2;
499 struct iphdr *eiph;
500 struct flowi fl;
501 struct rtable *rt;
502
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900503 err = ip6_tnl_err(skb, IPPROTO_IPIP, opt, &rel_type, &rel_code,
504 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900505 if (err < 0)
506 return err;
507
508 if (rel_msg == 0)
509 return 0;
510
511 switch (rel_type) {
512 case ICMPV6_DEST_UNREACH:
513 if (rel_code != ICMPV6_ADDR_UNREACH)
514 return 0;
515 rel_type = ICMP_DEST_UNREACH;
516 rel_code = ICMP_HOST_UNREACH;
517 break;
518 case ICMPV6_PKT_TOOBIG:
519 if (rel_code != 0)
520 return 0;
521 rel_type = ICMP_DEST_UNREACH;
522 rel_code = ICMP_FRAG_NEEDED;
523 break;
524 default:
525 return 0;
526 }
527
528 if (!pskb_may_pull(skb, offset + sizeof(struct iphdr)))
529 return 0;
530
531 skb2 = skb_clone(skb, GFP_ATOMIC);
532 if (!skb2)
533 return 0;
534
Eric Dumazetadf30902009-06-02 05:19:30 +0000535 skb_dst_drop(skb2);
536
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900537 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700538 skb_reset_network_header(skb2);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700539 eiph = ip_hdr(skb2);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900540
541 /* Try to guess incoming interface */
542 memset(&fl, 0, sizeof(fl));
543 fl.fl4_dst = eiph->saddr;
544 fl.fl4_tos = RT_TOS(eiph->tos);
545 fl.proto = IPPROTO_IPIP;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700546 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900547 goto out;
548
549 skb2->dev = rt->u.dst.dev;
550
551 /* route "incoming" packet */
552 if (rt->rt_flags & RTCF_LOCAL) {
553 ip_rt_put(rt);
554 rt = NULL;
555 fl.fl4_dst = eiph->daddr;
556 fl.fl4_src = eiph->saddr;
557 fl.fl4_tos = eiph->tos;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700558 if (ip_route_output_key(dev_net(skb->dev), &rt, &fl) ||
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900559 rt->u.dst.dev->type != ARPHRD_TUNNEL) {
560 ip_rt_put(rt);
561 goto out;
562 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000563 skb_dst_set(skb2, (struct dst_entry *)rt);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900564 } else {
565 ip_rt_put(rt);
566 if (ip_route_input(skb2, eiph->daddr, eiph->saddr, eiph->tos,
567 skb2->dev) ||
Eric Dumazetadf30902009-06-02 05:19:30 +0000568 skb_dst(skb2)->dev->type != ARPHRD_TUNNEL)
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900569 goto out;
570 }
571
572 /* change mtu on this route */
573 if (rel_type == ICMP_DEST_UNREACH && rel_code == ICMP_FRAG_NEEDED) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000574 if (rel_info > dst_mtu(skb_dst(skb2)))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900575 goto out;
576
Eric Dumazetadf30902009-06-02 05:19:30 +0000577 skb_dst(skb2)->ops->update_pmtu(skb_dst(skb2), rel_info);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900578 }
579
Al Viro704eae12007-07-26 17:33:29 +0100580 icmp_send(skb2, rel_type, rel_code, htonl(rel_info));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900581
582out:
583 kfree_skb(skb2);
584 return 0;
585}
586
587static int
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900588ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Al Viro704eae12007-07-26 17:33:29 +0100589 int type, int code, int offset, __be32 info)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900590{
591 int rel_msg = 0;
592 int rel_type = type;
593 int rel_code = code;
Al Viro704eae12007-07-26 17:33:29 +0100594 __u32 rel_info = ntohl(info);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900595 int err;
596
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900597 err = ip6_tnl_err(skb, IPPROTO_IPV6, opt, &rel_type, &rel_code,
598 &rel_msg, &rel_info, offset);
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900599 if (err < 0)
600 return err;
601
602 if (rel_msg && pskb_may_pull(skb, offset + sizeof(struct ipv6hdr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 struct rt6_info *rt;
604 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
Ville Nuorvala305d4b32006-11-24 17:06:53 -0800605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (!skb2)
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Eric Dumazetadf30902009-06-02 05:19:30 +0000609 skb_dst_drop(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 skb_pull(skb2, offset);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700611 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 /* Try to guess incoming interface */
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700614 rt = rt6_lookup(dev_net(skb->dev), &ipv6_hdr(skb2)->saddr,
615 NULL, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 if (rt && rt->rt6i_dev)
618 skb2->dev = rt->rt6i_dev;
619
620 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
621
622 if (rt)
623 dst_release(&rt->u.dst);
624
625 kfree_skb(skb2);
626 }
Yasuyuki Kozakaie490d1d2006-10-31 23:11:25 +0900627
628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900631static void ip4ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
632 struct ipv6hdr *ipv6h,
633 struct sk_buff *skb)
634{
635 __u8 dsfield = ipv6_get_dsfield(ipv6h) & ~INET_ECN_MASK;
636
637 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700638 ipv4_change_dsfield(ip_hdr(skb), INET_ECN_MASK, dsfield);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900639
640 if (INET_ECN_is_ce(dsfield))
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700641 IP_ECN_set_ce(ip_hdr(skb));
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900642}
643
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900644static void ip6ip6_dscp_ecn_decapsulate(struct ip6_tnl *t,
645 struct ipv6hdr *ipv6h,
646 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900648 if (t->parms.flags & IP6_TNL_F_RCV_DSCP_COPY)
Herbert Xu29bb43b42007-11-13 21:40:13 -0800649 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h), ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900651 if (INET_ECN_is_ce(ipv6_get_dsfield(ipv6h)))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700652 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900654
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800655static inline int ip6_tnl_rcv_ctl(struct ip6_tnl *t)
656{
657 struct ip6_tnl_parm *p = &t->parms;
658 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700659 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800660
661 if (p->flags & IP6_TNL_F_CAP_RCV) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900662 struct net_device *ldev = NULL;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800663
664 if (p->link)
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700665 ldev = dev_get_by_index(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800666
667 if ((ipv6_addr_is_multicast(&p->laddr) ||
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700668 likely(ipv6_chk_addr(net, &p->laddr, ldev, 0))) &&
669 likely(!ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800670 ret = 1;
671
672 if (ldev)
673 dev_put(ldev);
674 }
675 return ret;
676}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900679 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * @skb: received socket buffer
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900681 * @protocol: ethernet protocol ID
682 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 *
684 * Return: 0
685 **/
686
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900687static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol,
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900688 __u8 ipproto,
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900689 void (*dscp_ecn_decapsulate)(struct ip6_tnl *t,
690 struct ipv6hdr *ipv6h,
691 struct sk_buff *skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 struct ip6_tnl *t;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700694 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900696 read_lock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Pavel Emelyanov8704ca7e2008-04-16 01:22:43 -0700698 if ((t = ip6_tnl_lookup(dev_net(skb->dev), &ipv6h->saddr,
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -0700699 &ipv6h->daddr)) != NULL) {
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900700 if (t->parms.proto != ipproto && t->parms.proto != 0) {
701 read_unlock(&ip6_tnl_lock);
702 goto discard;
703 }
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900706 read_unlock(&ip6_tnl_lock);
Herbert Xu50fba2a2006-04-04 13:50:45 -0700707 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800710 if (!ip6_tnl_rcv_ctl(t)) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700711 t->dev->stats.rx_dropped++;
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900712 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 goto discard;
714 }
715 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700716 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700717 skb_reset_network_header(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900718 skb->protocol = htons(protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 skb->pkt_type = PACKET_HOST;
720 memset(skb->cb, 0, sizeof(struct inet6_skb_parm));
721 skb->dev = t->dev;
Eric Dumazetadf30902009-06-02 05:19:30 +0000722 skb_dst_drop(skb);
Yasuyuki Kozakai53ab61c2006-11-06 10:06:23 -0800723 nf_reset(skb);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900724
725 dscp_ecn_decapsulate(t, ipv6h, skb);
726
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700727 t->dev->stats.rx_packets++;
728 t->dev->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 netif_rx(skb);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900730 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 0;
732 }
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900733 read_unlock(&ip6_tnl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return 1;
Herbert Xu50fba2a2006-04-04 13:50:45 -0700735
736discard:
737 kfree_skb(skb);
738 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900741static int ip4ip6_rcv(struct sk_buff *skb)
742{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900743 return ip6_tnl_rcv(skb, ETH_P_IP, IPPROTO_IPIP,
744 ip4ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900745}
746
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900747static int ip6ip6_rcv(struct sk_buff *skb)
748{
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900749 return ip6_tnl_rcv(skb, ETH_P_IPV6, IPPROTO_IPV6,
750 ip6ip6_dscp_ecn_decapsulate);
Yasuyuki Kozakai83599252006-11-03 09:39:14 +0900751}
752
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800753struct ipv6_tel_txoption {
754 struct ipv6_txoptions ops;
755 __u8 dst_opt[8];
756};
757
758static void init_tel_txopt(struct ipv6_tel_txoption *opt, __u8 encap_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800760 memset(opt, 0, sizeof(struct ipv6_tel_txoption));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800762 opt->dst_opt[2] = IPV6_TLV_TNL_ENCAP_LIMIT;
763 opt->dst_opt[3] = 1;
764 opt->dst_opt[4] = encap_limit;
765 opt->dst_opt[5] = IPV6_TLV_PADN;
766 opt->dst_opt[6] = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800768 opt->ops.dst0opt = (struct ipv6_opt_hdr *) opt->dst_opt;
769 opt->ops.opt_nflen = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
772/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900773 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * @t: the outgoing tunnel device
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900775 * @hdr: IPv6 header from the incoming packet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 *
777 * Description:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900778 * Avoid trivial tunneling loop by checking that tunnel exit-point
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 * doesn't match source of incoming packet.
780 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900781 * Return:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * 1 if conflict,
783 * 0 else
784 **/
785
786static inline int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +0900787ip6_tnl_addr_conflict(struct ip6_tnl *t, struct ipv6hdr *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 return ipv6_addr_equal(&t->parms.raddr, &hdr->saddr);
790}
791
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800792static inline int ip6_tnl_xmit_ctl(struct ip6_tnl *t)
793{
794 struct ip6_tnl_parm *p = &t->parms;
795 int ret = 0;
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700796 struct net *net = dev_net(t->dev);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800797
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900798 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800799 struct net_device *ldev = NULL;
800
801 if (p->link)
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700802 ldev = dev_get_by_index(net, p->link);
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800803
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700804 if (unlikely(!ipv6_chk_addr(net, &p->laddr, ldev, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800805 printk(KERN_WARNING
806 "%s xmit: Local address not yet configured!\n",
807 p->name);
808 else if (!ipv6_addr_is_multicast(&p->raddr) &&
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -0700809 unlikely(ipv6_chk_addr(net, &p->raddr, NULL, 0)))
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -0800810 printk(KERN_WARNING
811 "%s xmit: Routing loop! "
812 "Remote address found on this node!\n",
813 p->name);
814 else
815 ret = 1;
816 if (ldev)
817 dev_put(ldev);
818 }
819 return ret;
820}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/**
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900822 * ip6_tnl_xmit2 - encapsulate packet and send
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 * @skb: the outgoing socket buffer
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900824 * @dev: the outgoing tunnel device
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900825 * @dsfield: dscp code for outer header
826 * @fl: flow of tunneled packet
827 * @encap_limit: encapsulation limit
828 * @pmtu: Path MTU is stored if packet is too big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 *
830 * Description:
831 * Build new header and do some sanity checks on the packet before sending
832 * it.
833 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900834 * Return:
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900835 * 0 on success
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900836 * -1 fail
837 * %-EMSGSIZE message too big. return mtu in this case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 **/
839
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900840static int ip6_tnl_xmit2(struct sk_buff *skb,
841 struct net_device *dev,
842 __u8 dsfield,
843 struct flowi *fl,
844 int encap_limit,
845 __u32 *pmtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800847 struct net *net = dev_net(dev);
Patrick McHardy2941a482006-01-08 22:05:26 -0800848 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -0700849 struct net_device_stats *stats = &t->dev->stats;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700850 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800851 struct ipv6_tel_txoption opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 struct dst_entry *dst;
853 struct net_device *tdev;
854 int mtu;
Chuck Leverc2636b42007-10-23 21:07:32 -0700855 unsigned int max_headroom = sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 u8 proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900857 int err = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 int pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if ((dst = ip6_tnl_dst_check(t)) != NULL)
861 dst_hold(dst);
Patrick McHardya57ebc92005-09-08 14:27:47 -0700862 else {
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800863 dst = ip6_route_output(net, NULL, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800865 if (dst->error || xfrm_lookup(net, &dst, fl, NULL, 0) < 0)
Patrick McHardya57ebc92005-09-08 14:27:47 -0700866 goto tx_err_link_failure;
867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 tdev = dst->dev;
870
871 if (tdev == dev) {
872 stats->collisions++;
873 if (net_ratelimit())
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900874 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 "%s: Local routing loop detected!\n",
876 t->parms.name);
877 goto tx_err_dst_release;
878 }
879 mtu = dst_mtu(dst) - sizeof (*ipv6h);
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800880 if (encap_limit >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 max_headroom += 8;
882 mtu -= 8;
883 }
884 if (mtu < IPV6_MIN_MTU)
885 mtu = IPV6_MIN_MTU;
Eric Dumazetadf30902009-06-02 05:19:30 +0000886 if (skb_dst(skb))
887 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (skb->len > mtu) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900889 *pmtu = mtu;
890 err = -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 goto tx_err_dst_release;
892 }
893
894 /*
895 * Okay, now see if we can stuff it in the buffer as-is.
896 */
897 max_headroom += LL_RESERVED_SPACE(tdev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900898
Patrick McHardycfbba492007-07-09 15:33:40 -0700899 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
900 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 struct sk_buff *new_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (!(new_skb = skb_realloc_headroom(skb, max_headroom)))
904 goto tx_err_dst_release;
905
906 if (skb->sk)
907 skb_set_owner_w(new_skb, skb->sk);
908 kfree_skb(skb);
909 skb = new_skb;
910 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000911 skb_dst_drop(skb);
912 skb_dst_set(skb, dst_clone(dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700914 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900916 proto = fl->proto;
Ville Nuorvala6fb32dd2006-11-24 17:08:32 -0800917 if (encap_limit >= 0) {
918 init_tel_txopt(&opt, encap_limit);
919 ipv6_push_nfrag_opts(skb, &opt.ops, &proto, NULL);
920 }
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700921 skb_push(skb, sizeof(struct ipv6hdr));
922 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700923 ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900924 *(__be32*)ipv6h = fl->fl6_flowlabel | htonl(0x60000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 dsfield = INET_ECN_encapsulate(0, dsfield);
926 ipv6_change_dsfield(ipv6h, ~INET_ECN_MASK, dsfield);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 ipv6h->hop_limit = t->parms.hop_limit;
928 ipv6h->nexthdr = proto;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900929 ipv6_addr_copy(&ipv6h->saddr, &fl->fl6_src);
930 ipv6_addr_copy(&ipv6h->daddr, &fl->fl6_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 nf_reset(skb);
932 pkt_len = skb->len;
Herbert Xuef76bc22008-01-11 19:15:08 -0800933 err = ip6_local_out(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200935 if (net_xmit_eval(err) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 stats->tx_bytes += pkt_len;
937 stats->tx_packets++;
938 } else {
939 stats->tx_errors++;
940 stats->tx_aborted_errors++;
941 }
942 ip6_tnl_dst_store(t, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
944tx_err_link_failure:
945 stats->tx_carrier_errors++;
946 dst_link_failure(skb);
947tx_err_dst_release:
948 dst_release(dst);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900949 return err;
950}
951
952static inline int
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900953ip4ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
954{
955 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700956 struct iphdr *iph = ip_hdr(skb);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900957 int encap_limit = -1;
958 struct flowi fl;
959 __u8 dsfield;
960 __u32 mtu;
961 int err;
962
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +0900963 if ((t->parms.proto != IPPROTO_IPIP && t->parms.proto != 0) ||
964 !ip6_tnl_xmit_ctl(t))
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900965 return -1;
966
967 if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
968 encap_limit = t->parms.encap_limit;
969
970 memcpy(&fl, &t->fl, sizeof (fl));
971 fl.proto = IPPROTO_IPIP;
972
973 dsfield = ipv4_get_dsfield(iph);
974
975 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
Al Virob77f2fa2007-07-21 19:09:41 -0700976 fl.fl6_flowlabel |= htonl((__u32)iph->tos << IPV6_TCLASS_SHIFT)
977 & IPV6_TCLASS_MASK;
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +0900978
979 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
980 if (err != 0) {
981 /* XXX: send ICMP error even if DF is not set. */
982 if (err == -EMSGSIZE)
983 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
984 htonl(mtu));
985 return -1;
986 }
987
988 return 0;
989}
990
991static inline int
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900992ip6ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
993{
994 struct ip6_tnl *t = netdev_priv(dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700995 struct ipv6hdr *ipv6h = ipv6_hdr(skb);
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +0900996 int encap_limit = -1;
997 __u16 offset;
998 struct flowi fl;
999 __u8 dsfield;
1000 __u32 mtu;
1001 int err;
1002
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001003 if ((t->parms.proto != IPPROTO_IPV6 && t->parms.proto != 0) ||
1004 !ip6_tnl_xmit_ctl(t) || ip6_tnl_addr_conflict(t, ipv6h))
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001005 return -1;
1006
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001007 offset = parse_tlv_tnl_enc_lim(skb, skb_network_header(skb));
1008 if (offset > 0) {
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001009 struct ipv6_tlv_tnl_enc_lim *tel;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001010 tel = (struct ipv6_tlv_tnl_enc_lim *)&skb_network_header(skb)[offset];
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001011 if (tel->encap_limit == 0) {
1012 icmpv6_send(skb, ICMPV6_PARAMPROB,
1013 ICMPV6_HDR_FIELD, offset + 2, skb->dev);
1014 return -1;
1015 }
1016 encap_limit = tel->encap_limit - 1;
1017 } else if (!(t->parms.flags & IP6_TNL_F_IGN_ENCAP_LIMIT))
1018 encap_limit = t->parms.encap_limit;
1019
1020 memcpy(&fl, &t->fl, sizeof (fl));
1021 fl.proto = IPPROTO_IPV6;
1022
1023 dsfield = ipv6_get_dsfield(ipv6h);
1024 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_TCLASS))
1025 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_TCLASS_MASK);
1026 if ((t->parms.flags & IP6_TNL_F_USE_ORIG_FLOWLABEL))
1027 fl.fl6_flowlabel |= (*(__be32 *) ipv6h & IPV6_FLOWLABEL_MASK);
1028
1029 err = ip6_tnl_xmit2(skb, dev, dsfield, &fl, encap_limit, &mtu);
1030 if (err != 0) {
1031 if (err == -EMSGSIZE)
1032 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
1033 return -1;
1034 }
1035
1036 return 0;
1037}
1038
1039static int
1040ip6_tnl_xmit(struct sk_buff *skb, struct net_device *dev)
1041{
1042 struct ip6_tnl *t = netdev_priv(dev);
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001043 struct net_device_stats *stats = &t->dev->stats;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001044 int ret;
1045
1046 if (t->recursion++) {
Pavel Emelyanov3dca02a2008-05-21 14:17:05 -07001047 stats->collisions++;
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001048 goto tx_err;
1049 }
1050
1051 switch (skb->protocol) {
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001052 case htons(ETH_P_IP):
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001053 ret = ip4ip6_tnl_xmit(skb, dev);
1054 break;
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -07001055 case htons(ETH_P_IPV6):
Yasuyuki Kozakai61ec2ae2006-11-05 22:56:45 +09001056 ret = ip6ip6_tnl_xmit(skb, dev);
1057 break;
1058 default:
1059 goto tx_err;
1060 }
1061
1062 if (ret < 0)
1063 goto tx_err;
1064
1065 t->recursion--;
1066 return 0;
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068tx_err:
1069 stats->tx_errors++;
1070 stats->tx_dropped++;
1071 kfree_skb(skb);
1072 t->recursion--;
1073 return 0;
1074}
1075
1076static void ip6_tnl_set_cap(struct ip6_tnl *t)
1077{
1078 struct ip6_tnl_parm *p = &t->parms;
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001079 int ltype = ipv6_addr_type(&p->laddr);
1080 int rtype = ipv6_addr_type(&p->raddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 p->flags &= ~(IP6_TNL_F_CAP_XMIT|IP6_TNL_F_CAP_RCV);
1083
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001084 if (ltype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1085 rtype & (IPV6_ADDR_UNICAST|IPV6_ADDR_MULTICAST) &&
1086 !((ltype|rtype) & IPV6_ADDR_LOOPBACK) &&
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001087 (!((ltype|rtype) & IPV6_ADDR_LINKLOCAL) || p->link)) {
Ville Nuorvala09c6bbf2006-11-24 17:06:27 -08001088 if (ltype&IPV6_ADDR_UNICAST)
1089 p->flags |= IP6_TNL_F_CAP_XMIT;
1090 if (rtype&IPV6_ADDR_UNICAST)
1091 p->flags |= IP6_TNL_F_CAP_RCV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
1093}
1094
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001095static void ip6_tnl_link_config(struct ip6_tnl *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 struct net_device *dev = t->dev;
1098 struct ip6_tnl_parm *p = &t->parms;
1099 struct flowi *fl = &t->fl;
1100
Jiri Pirko3a6d54c2009-05-11 23:37:15 +00001101 memcpy(dev->dev_addr, &p->laddr, sizeof(struct in6_addr));
1102 memcpy(dev->broadcast, &p->raddr, sizeof(struct in6_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* Set up flowi template */
1105 ipv6_addr_copy(&fl->fl6_src, &p->laddr);
1106 ipv6_addr_copy(&fl->fl6_dst, &p->raddr);
1107 fl->oif = p->link;
1108 fl->fl6_flowlabel = 0;
1109
1110 if (!(p->flags&IP6_TNL_F_USE_ORIG_TCLASS))
1111 fl->fl6_flowlabel |= IPV6_TCLASS_MASK & p->flowinfo;
1112 if (!(p->flags&IP6_TNL_F_USE_ORIG_FLOWLABEL))
1113 fl->fl6_flowlabel |= IPV6_FLOWLABEL_MASK & p->flowinfo;
1114
1115 ip6_tnl_set_cap(t);
1116
1117 if (p->flags&IP6_TNL_F_CAP_XMIT && p->flags&IP6_TNL_F_CAP_RCV)
1118 dev->flags |= IFF_POINTOPOINT;
1119 else
1120 dev->flags &= ~IFF_POINTOPOINT;
1121
1122 dev->iflink = p->link;
1123
1124 if (p->flags & IP6_TNL_F_CAP_XMIT) {
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001125 int strict = (ipv6_addr_type(&p->raddr) &
1126 (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL));
1127
Pavel Emelyanov2f7f54b2008-04-16 01:23:44 -07001128 struct rt6_info *rt = rt6_lookup(dev_net(dev),
1129 &p->raddr, &p->laddr,
Ville Nuorvala305d4b32006-11-24 17:06:53 -08001130 p->link, strict);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 if (rt == NULL)
1133 return;
1134
1135 if (rt->rt6i_dev) {
1136 dev->hard_header_len = rt->rt6i_dev->hard_header_len +
1137 sizeof (struct ipv6hdr);
1138
1139 dev->mtu = rt->rt6i_dev->mtu - sizeof (struct ipv6hdr);
1140
1141 if (dev->mtu < IPV6_MIN_MTU)
1142 dev->mtu = IPV6_MIN_MTU;
1143 }
1144 dst_release(&rt->u.dst);
1145 }
1146}
1147
1148/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001149 * ip6_tnl_change - update the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 * @t: tunnel to be changed
1151 * @p: tunnel configuration parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 *
1153 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001154 * ip6_tnl_change() updates the tunnel parameters
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 **/
1156
1157static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001158ip6_tnl_change(struct ip6_tnl *t, struct ip6_tnl_parm *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 ipv6_addr_copy(&t->parms.laddr, &p->laddr);
1161 ipv6_addr_copy(&t->parms.raddr, &p->raddr);
1162 t->parms.flags = p->flags;
1163 t->parms.hop_limit = p->hop_limit;
1164 t->parms.encap_limit = p->encap_limit;
1165 t->parms.flowinfo = p->flowinfo;
Gabor Fekete8181b8c2005-06-08 14:54:38 -07001166 t->parms.link = p->link;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001167 t->parms.proto = p->proto;
Hugo Santos0c088892006-02-24 13:16:25 -08001168 ip6_tnl_dst_reset(t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001169 ip6_tnl_link_config(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return 0;
1171}
1172
1173/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001174 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 * @dev: virtual device associated with tunnel
1176 * @ifr: parameters passed from userspace
1177 * @cmd: command to be performed
1178 *
1179 * Description:
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001180 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001181 * from userspace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 *
1183 * The possible commands are the following:
1184 * %SIOCGETTUNNEL: get tunnel parameters for device
1185 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1186 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1187 * %SIOCDELTUNNEL: delete tunnel
1188 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001189 * The fallback device "ip6tnl0", created during module
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * initialization, can be used for creating other tunnel devices.
1191 *
1192 * Return:
1193 * 0 on success,
1194 * %-EFAULT if unable to copy data to or from userspace,
1195 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1196 * %-EINVAL if passed tunnel parameters are invalid,
1197 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1198 * %-ENODEV if attempting to change or delete a nonexisting device
1199 **/
1200
1201static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001202ip6_tnl_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
1204 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct ip6_tnl_parm p;
1206 struct ip6_tnl *t = NULL;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001207 struct net *net = dev_net(dev);
1208 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 switch (cmd) {
1211 case SIOCGETTUNNEL:
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001212 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001213 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 err = -EFAULT;
1215 break;
1216 }
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001217 t = ip6_tnl_locate(net, &p, 0);
Ville Nuorvala567131a2006-11-24 17:05:41 -08001218 }
1219 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -08001220 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 memcpy(&p, &t->parms, sizeof (p));
1222 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof (p))) {
1223 err = -EFAULT;
1224 }
1225 break;
1226 case SIOCADDTUNNEL:
1227 case SIOCCHGTUNNEL:
1228 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (!capable(CAP_NET_ADMIN))
1230 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001231 err = -EFAULT;
1232 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001234 err = -EINVAL;
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001235 if (p.proto != IPPROTO_IPV6 && p.proto != IPPROTO_IPIP &&
1236 p.proto != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001238 t = ip6_tnl_locate(net, &p, cmd == SIOCADDTUNNEL);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001239 if (dev != ip6n->fb_tnl_dev && cmd == SIOCCHGTUNNEL) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001240 if (t != NULL) {
1241 if (t->dev != dev) {
1242 err = -EEXIST;
1243 break;
1244 }
1245 } else
1246 t = netdev_priv(dev);
1247
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001248 ip6_tnl_unlink(ip6n, t);
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001249 err = ip6_tnl_change(t, &p);
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001250 ip6_tnl_link(ip6n, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 netdev_state_change(dev);
1252 }
Ville Nuorvala567131a2006-11-24 17:05:41 -08001253 if (t) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 err = 0;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001255 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof (p)))
1256 err = -EFAULT;
1257
1258 } else
1259 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 break;
1261 case SIOCDELTUNNEL:
1262 err = -EPERM;
1263 if (!capable(CAP_NET_ADMIN))
1264 break;
1265
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001266 if (dev == ip6n->fb_tnl_dev) {
Ville Nuorvala567131a2006-11-24 17:05:41 -08001267 err = -EFAULT;
1268 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof (p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001270 err = -ENOENT;
Pavel Emelyanov2dd02c82008-04-16 01:22:23 -07001271 if ((t = ip6_tnl_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001273 err = -EPERM;
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001274 if (t->dev == ip6n->fb_tnl_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 break;
Ville Nuorvala567131a2006-11-24 17:05:41 -08001276 dev = t->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -08001278 err = 0;
1279 unregister_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 break;
1281 default:
1282 err = -EINVAL;
1283 }
1284 return err;
1285}
1286
1287/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001288 * ip6_tnl_change_mtu - change mtu manually for tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 * @dev: virtual device associated with tunnel
1290 * @new_mtu: the new mtu
1291 *
1292 * Return:
1293 * 0 on success,
1294 * %-EINVAL if mtu too small
1295 **/
1296
1297static int
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001298ip6_tnl_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 if (new_mtu < IPV6_MIN_MTU) {
1301 return -EINVAL;
1302 }
1303 dev->mtu = new_mtu;
1304 return 0;
1305}
1306
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001307
1308static const struct net_device_ops ip6_tnl_netdev_ops = {
1309 .ndo_uninit = ip6_tnl_dev_uninit,
1310 .ndo_start_xmit = ip6_tnl_xmit,
1311 .ndo_do_ioctl = ip6_tnl_ioctl,
1312 .ndo_change_mtu = ip6_tnl_change_mtu,
1313};
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001316 * ip6_tnl_dev_setup - setup virtual tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 * @dev: virtual device associated with tunnel
1318 *
1319 * Description:
1320 * Initialize function pointers and device parameters
1321 **/
1322
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001323static void ip6_tnl_dev_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001325 dev->netdev_ops = &ip6_tnl_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 dev->destructor = free_netdev;
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);
Pavel Emelyanov554eb272008-04-16 01:24:13 -07001333 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336
1337/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001338 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 * @dev: virtual device associated with tunnel
1340 **/
1341
1342static inline void
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001343ip6_tnl_dev_init_gen(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Patrick McHardy2941a482006-01-08 22:05:26 -08001345 struct ip6_tnl *t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 t->dev = dev;
1347 strcpy(t->parms.name, dev->name);
1348}
1349
1350/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001351 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * @dev: virtual device associated with tunnel
1353 **/
1354
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001355static void ip6_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}
1361
1362/**
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001363 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 * @dev: fallback device
1365 *
1366 * Return: 0
1367 **/
1368
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001369static void ip6_fb_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);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001372 struct net *net = dev_net(dev);
1373 struct ip6_tnl_net *ip6n = net_generic(net, ip6_tnl_net_id);
1374
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001375 ip6_tnl_dev_init_gen(dev);
Yasuyuki Kozakai502b0932006-11-30 14:43:28 +09001376 t->parms.proto = IPPROTO_IPV6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 dev_hold(dev);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001378 ip6n->tnls_wc[0] = t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Yasuyuki Kozakaic4d3efaf2007-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 Emelyanov3e6c9fb2008-04-16 01:23:22 -07001393static void ip6_tnl_destroy_tunnels(struct ip6_tnl_net *ip6n)
1394{
1395 int h;
1396 struct ip6_tnl *t;
1397
1398 for (h = 0; h < HASH_SIZE; h++) {
1399 while ((t = ip6n->tnls_r_l[h]) != NULL)
1400 unregister_netdevice(t->dev);
1401 }
1402
1403 t = ip6n->tnls_wc[0];
1404 unregister_netdevice(t->dev);
1405}
1406
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001407static int ip6_tnl_init_net(struct net *net)
1408{
1409 int err;
1410 struct ip6_tnl_net *ip6n;
1411
1412 err = -ENOMEM;
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001413 ip6n = kzalloc(sizeof(struct ip6_tnl_net), GFP_KERNEL);
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001414 if (ip6n == NULL)
1415 goto err_alloc;
1416
1417 err = net_assign_generic(net, ip6_tnl_net_id, ip6n);
1418 if (err < 0)
1419 goto err_assign;
1420
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001421 ip6n->tnls[0] = ip6n->tnls_wc;
1422 ip6n->tnls[1] = ip6n->tnls_r_l;
1423
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001424 err = -ENOMEM;
1425 ip6n->fb_tnl_dev = alloc_netdev(sizeof(struct ip6_tnl), "ip6tnl0",
1426 ip6_tnl_dev_setup);
1427
1428 if (!ip6n->fb_tnl_dev)
1429 goto err_alloc_dev;
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001430 dev_net_set(ip6n->fb_tnl_dev, net);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001431
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001432 ip6_fb_tnl_dev_init(ip6n->fb_tnl_dev);
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001433
1434 err = register_netdev(ip6n->fb_tnl_dev);
1435 if (err < 0)
1436 goto err_register;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001437 return 0;
1438
Pavel Emelyanov15820e1292008-04-16 01:23:02 -07001439err_register:
1440 free_netdev(ip6n->fb_tnl_dev);
1441err_alloc_dev:
1442 /* nothing */
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001443err_assign:
1444 kfree(ip6n);
1445err_alloc:
1446 return err;
1447}
1448
1449static void ip6_tnl_exit_net(struct net *net)
1450{
1451 struct ip6_tnl_net *ip6n;
1452
1453 ip6n = net_generic(net, ip6_tnl_net_id);
Pavel Emelyanov3e6c9fb2008-04-16 01:23:22 -07001454 rtnl_lock();
1455 ip6_tnl_destroy_tunnels(ip6n);
1456 rtnl_unlock();
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001457 kfree(ip6n);
1458}
1459
1460static struct pernet_operations ip6_tnl_net_ops = {
1461 .init = ip6_tnl_init_net,
1462 .exit = ip6_tnl_exit_net,
1463};
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/**
1466 * ip6_tunnel_init - register protocol and reserve needed resources
1467 *
1468 * Return: 0 on success
1469 **/
1470
1471static int __init ip6_tunnel_init(void)
1472{
1473 int err;
1474
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001475 if (xfrm6_tunnel_register(&ip4ip6_handler, AF_INET)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001476 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001477 err = -EAGAIN;
1478 goto out;
1479 }
1480
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001481 if (xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6)) {
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001482 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001483 err = -EAGAIN;
1484 goto unreg_ip4ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001486
1487 err = register_pernet_gen_device(&ip6_tnl_net_id, &ip6_tnl_net_ops);
1488 if (err < 0)
1489 goto err_pernet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return 0;
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001491err_pernet:
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001492 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001493unreg_ip4ip6:
1494 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);
1495out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return err;
1497}
1498
1499/**
1500 * ip6_tunnel_cleanup - free resources and unregister protocol
1501 **/
1502
1503static void __exit ip6_tunnel_cleanup(void)
1504{
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001505 if (xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001506 printk(KERN_INFO "ip6_tunnel close: can't deregister ip4ip6\n");
Yasuyuki Kozakaic4d3efaf2007-02-15 00:43:16 +09001507
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -08001508 if (xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6))
Yasuyuki Kozakai31445812007-02-10 00:30:33 +09001509 printk(KERN_INFO "ip6_tunnel close: can't deregister ip6ip6\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Pavel Emelyanov13eeb8e2008-04-16 01:22:02 -07001511 unregister_pernet_gen_device(ip6_tnl_net_id, &ip6_tnl_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
1514module_init(ip6_tunnel_init);
1515module_exit(ip6_tunnel_cleanup);