blob: d0c1f2db7f21d520301f58a2d3f79f344b964ca3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
9 * $Id: sit.c,v 1.53 2001/09/25 05:09:53 davem Exp $
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 *
16 * Changes:
17 * Roger Venning <r.venning@telstra.com>: 6to4 support
18 * Nate Thompson <nate@thebog.net>: 6to4 support
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040019 * Fred Templin <fred.l.templin@boeing.com>: isatap support
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080023#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/icmp.h>
33#include <asm/uaccess.h>
34#include <linux/init.h>
35#include <linux/netfilter_ipv4.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080036#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <net/sock.h>
39#include <net/snmp.h>
40
41#include <net/ipv6.h>
42#include <net/protocol.h>
43#include <net/transp_v6.h>
44#include <net/ip6_fib.h>
45#include <net/ip6_route.h>
46#include <net/ndisc.h>
47#include <net/addrconf.h>
48#include <net/ip.h>
49#include <net/udp.h>
50#include <net/icmp.h>
51#include <net/ipip.h>
52#include <net/inet_ecn.h>
53#include <net/xfrm.h>
54#include <net/dsfield.h>
Pavel Emelyanov8190d902008-04-16 01:15:17 -070055#include <net/net_namespace.h>
56#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
60
61 For comments look at net/ipv4/ip_gre.c --ANK
62 */
63
64#define HASH_SIZE 16
Al Viroe69a4ad2006-11-14 20:56:00 -080065#define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67static int ipip6_fb_tunnel_init(struct net_device *dev);
68static int ipip6_tunnel_init(struct net_device *dev);
69static void ipip6_tunnel_setup(struct net_device *dev);
70
Pavel Emelyanov8190d902008-04-16 01:15:17 -070071static int sit_net_id;
72struct sit_net {
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -070073 struct net_device *fb_tunnel_dev;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070074};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static struct ip_tunnel *tunnels_r_l[HASH_SIZE];
77static struct ip_tunnel *tunnels_r[HASH_SIZE];
78static struct ip_tunnel *tunnels_l[HASH_SIZE];
79static struct ip_tunnel *tunnels_wc[1];
80static struct ip_tunnel **tunnels[4] = { tunnels_wc, tunnels_l, tunnels_r, tunnels_r_l };
81
82static DEFINE_RWLOCK(ipip6_lock);
83
Pavel Emelyanovca8def12008-04-16 01:15:39 -070084static struct ip_tunnel * ipip6_tunnel_lookup(struct net *net,
85 __be32 remote, __be32 local)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 unsigned h0 = HASH(remote);
88 unsigned h1 = HASH(local);
89 struct ip_tunnel *t;
90
91 for (t = tunnels_r_l[h0^h1]; t; t = t->next) {
92 if (local == t->parms.iph.saddr &&
93 remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
94 return t;
95 }
96 for (t = tunnels_r[h0]; t; t = t->next) {
97 if (remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
98 return t;
99 }
100 for (t = tunnels_l[h1]; t; t = t->next) {
101 if (local == t->parms.iph.saddr && (t->dev->flags&IFF_UP))
102 return t;
103 }
104 if ((t = tunnels_wc[0]) != NULL && (t->dev->flags&IFF_UP))
105 return t;
106 return NULL;
107}
108
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700109static struct ip_tunnel **__ipip6_bucket(struct sit_net *sitn,
110 struct ip_tunnel_parm *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900112 __be32 remote = parms->iph.daddr;
113 __be32 local = parms->iph.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 unsigned h = 0;
115 int prio = 0;
116
117 if (remote) {
118 prio |= 2;
119 h ^= HASH(remote);
120 }
121 if (local) {
122 prio |= 1;
123 h ^= HASH(local);
124 }
125 return &tunnels[prio][h];
126}
127
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700128static inline struct ip_tunnel **ipip6_bucket(struct sit_net *sitn,
129 struct ip_tunnel *t)
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900130{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700131 return __ipip6_bucket(sitn, &t->parms);
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900132}
133
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700134static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct ip_tunnel **tp;
137
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700138 for (tp = ipip6_bucket(sitn, t); *tp; tp = &(*tp)->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (t == *tp) {
140 write_lock_bh(&ipip6_lock);
141 *tp = t->next;
142 write_unlock_bh(&ipip6_lock);
143 break;
144 }
145 }
146}
147
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700148static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700150 struct ip_tunnel **tp = ipip6_bucket(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 t->next = *tp;
153 write_lock_bh(&ipip6_lock);
154 *tp = t;
155 write_unlock_bh(&ipip6_lock);
156}
157
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700158static struct ip_tunnel * ipip6_tunnel_locate(struct net *net,
159 struct ip_tunnel_parm *parms, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Al Viroe69a4ad2006-11-14 20:56:00 -0800161 __be32 remote = parms->iph.daddr;
162 __be32 local = parms->iph.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct ip_tunnel *t, **tp, *nt;
164 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 char name[IFNAMSIZ];
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700166 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700168 for (tp = __ipip6_bucket(sitn, parms); (t = *tp) != NULL; tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (local == t->parms.iph.saddr && remote == t->parms.iph.daddr)
170 return t;
171 }
172 if (!create)
173 goto failed;
174
175 if (parms->name[0])
176 strlcpy(name, parms->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800177 else
178 sprintf(name, "sit%%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
181 if (dev == NULL)
182 return NULL;
183
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800184 if (strchr(name, '%')) {
185 if (dev_alloc_name(dev, name) < 0)
186 goto failed_free;
187 }
188
Patrick McHardy2941a482006-01-08 22:05:26 -0800189 nt = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 dev->init = ipip6_tunnel_init;
191 nt->parms = *parms;
192
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100193 if (parms->i_flags & SIT_ISATAP)
194 dev->priv_flags |= IFF_ISATAP;
195
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800196 if (register_netdevice(dev) < 0)
197 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 dev_hold(dev);
200
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700201 ipip6_tunnel_link(sitn, nt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return nt;
203
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800204failed_free:
205 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206failed:
207 return NULL;
208}
209
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400210static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900211__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400212{
213 struct ip_tunnel_prl_entry *p = (struct ip_tunnel_prl_entry *)NULL;
214
215 for (p = t->prl; p; p = p->next)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900216 if (p->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400217 break;
218 return p;
219
220}
221
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900222static int ipip6_tunnel_get_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
223{
224 struct ip_tunnel_prl *kp;
225 struct ip_tunnel_prl_entry *prl;
226 unsigned int cmax, c = 0, ca, len;
227 int ret = 0;
228
229 cmax = a->datalen / sizeof(*a);
230 if (cmax > 1 && a->addr != htonl(INADDR_ANY))
231 cmax = 1;
232
233 /* For simple GET or for root users,
234 * we try harder to allocate.
235 */
236 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
237 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
238 NULL;
239
240 read_lock(&ipip6_lock);
241
242 ca = t->prl_count < cmax ? t->prl_count : cmax;
243
244 if (!kp) {
245 /* We don't try hard to allocate much memory for
246 * non-root users.
247 * For root users, retry allocating enough memory for
248 * the answer.
249 */
250 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
251 if (!kp) {
252 ret = -ENOMEM;
253 goto out;
254 }
255 }
256
257 c = 0;
258 for (prl = t->prl; prl; prl = prl->next) {
259 if (c > cmax)
260 break;
261 if (a->addr != htonl(INADDR_ANY) && prl->addr != a->addr)
262 continue;
263 kp[c].addr = prl->addr;
264 kp[c].flags = prl->flags;
265 c++;
266 if (a->addr != htonl(INADDR_ANY))
267 break;
268 }
269out:
270 read_unlock(&ipip6_lock);
271
272 len = sizeof(*kp) * c;
273 ret = len ? copy_to_user(a->data, kp, len) : 0;
274
275 kfree(kp);
276 if (ret)
277 return -EFAULT;
278
279 a->datalen = len;
280 return 0;
281}
282
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400283static int
284ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
285{
286 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900287 int err = 0;
288
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900289 if (a->addr == htonl(INADDR_ANY))
290 return -EINVAL;
291
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900292 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400293
294 for (p = t->prl; p; p = p->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900295 if (p->addr == a->addr) {
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900296 if (chg)
297 goto update;
298 err = -EEXIST;
299 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400300 }
301 }
302
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900303 if (chg) {
304 err = -ENXIO;
305 goto out;
306 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400307
308 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900309 if (!p) {
310 err = -ENOBUFS;
311 goto out;
312 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400313
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400314 p->next = t->prl;
315 t->prl = p;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900316 t->prl_count++;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900317update:
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900318 p->addr = a->addr;
319 p->flags = a->flags;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900320out:
321 write_unlock(&ipip6_lock);
322 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400323}
324
325static int
326ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
327{
328 struct ip_tunnel_prl_entry *x, **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900329 int err = 0;
330
331 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400332
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900333 if (a && a->addr != htonl(INADDR_ANY)) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400334 for (p = &t->prl; *p; p = &(*p)->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900335 if ((*p)->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400336 x = *p;
337 *p = x->next;
338 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900339 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900340 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400341 }
342 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900343 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400344 } else {
345 while (t->prl) {
346 x = t->prl;
347 t->prl = t->prl->next;
348 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900349 t->prl_count--;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400350 }
351 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900352out:
353 write_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400354 return 0;
355}
356
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400357static int
358isatap_chksrc(struct sk_buff *skb, struct iphdr *iph, struct ip_tunnel *t)
359{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900360 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400361 int ok = 1;
362
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900363 read_lock(&ipip6_lock);
364 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400365 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900366 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400367 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
368 else
369 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
370 } else {
371 struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
372 if (ipv6_addr_is_isatap(addr6) &&
373 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400374 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400375 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
376 else
377 ok = 0;
378 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900379 read_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400380 return ok;
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static void ipip6_tunnel_uninit(struct net_device *dev)
384{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700385 struct net *net = dev_net(dev);
386 struct sit_net *sitn = net_generic(net, sit_net_id);
387
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700388 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 write_lock_bh(&ipip6_lock);
390 tunnels_wc[0] = NULL;
391 write_unlock_bh(&ipip6_lock);
392 dev_put(dev);
393 } else {
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700394 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
YOSHIFUJI Hideaki02e10b92008-04-10 15:41:27 +0900395 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 dev_put(dev);
397 }
398}
399
400
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800401static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403#ifndef I_WISH_WORLD_WERE_PERFECT
404
405/* It is not :-( All the routers (except for Linux) return only
406 8 bytes of packet payload. It means, that precise relaying of
407 ICMP in the real Internet is absolutely infeasible.
408 */
409 struct iphdr *iph = (struct iphdr*)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300410 const int type = icmp_hdr(skb)->type;
411 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800413 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 switch (type) {
416 default:
417 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 case ICMP_DEST_UNREACH:
421 switch (code) {
422 case ICMP_SR_FAILED:
423 case ICMP_PORT_UNREACH:
424 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 case ICMP_FRAG_NEEDED:
427 /* Soft state for pmtu is maintained by IP core. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 default:
430 /* All others are translated to HOST_UNREACH.
431 rfc2003 contains "deep thoughts" about NET_UNREACH,
432 I believe they are just ether pollution. --ANK
433 */
434 break;
435 }
436 break;
437 case ICMP_TIME_EXCEEDED:
438 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800439 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 break;
441 }
442
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800443 err = -ENOENT;
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700446 t = ipip6_tunnel_lookup(dev_net(skb->dev), iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (t == NULL || t->parms.iph.daddr == 0)
448 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800449
450 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
452 goto out;
453
454 if (jiffies - t->err_time < IPTUNNEL_ERR_TIMEO)
455 t->err_count++;
456 else
457 t->err_count = 1;
458 t->err_time = jiffies;
459out:
460 read_unlock(&ipip6_lock);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800461 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#else
463 struct iphdr *iph = (struct iphdr*)dp;
464 int hlen = iph->ihl<<2;
465 struct ipv6hdr *iph6;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300466 const int type = icmp_hdr(skb)->type;
467 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 int rel_type = 0;
469 int rel_code = 0;
470 int rel_info = 0;
471 struct sk_buff *skb2;
472 struct rt6_info *rt6i;
473
474 if (len < hlen + sizeof(struct ipv6hdr))
475 return;
476 iph6 = (struct ipv6hdr*)(dp + hlen);
477
478 switch (type) {
479 default:
480 return;
481 case ICMP_PARAMETERPROB:
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300482 if (icmp_hdr(skb)->un.gateway < hlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return;
484
485 /* So... This guy found something strange INSIDE encapsulated
486 packet. Well, he is fool, but what can we do ?
487 */
488 rel_type = ICMPV6_PARAMPROB;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300489 rel_info = icmp_hdr(skb)->un.gateway - hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491
492 case ICMP_DEST_UNREACH:
493 switch (code) {
494 case ICMP_SR_FAILED:
495 case ICMP_PORT_UNREACH:
496 /* Impossible event. */
497 return;
498 case ICMP_FRAG_NEEDED:
499 /* Too complicated case ... */
500 return;
501 default:
502 /* All others are translated to HOST_UNREACH.
503 rfc2003 contains "deep thoughts" about NET_UNREACH,
504 I believe, it is just ether pollution. --ANK
505 */
506 rel_type = ICMPV6_DEST_UNREACH;
507 rel_code = ICMPV6_ADDR_UNREACH;
508 break;
509 }
510 break;
511 case ICMP_TIME_EXCEEDED:
512 if (code != ICMP_EXC_TTL)
513 return;
514 rel_type = ICMPV6_TIME_EXCEED;
515 rel_code = ICMPV6_EXC_HOPLIMIT;
516 break;
517 }
518
519 /* Prepare fake skb to feed it to icmpv6_send */
520 skb2 = skb_clone(skb, GFP_ATOMIC);
521 if (skb2 == NULL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 dst_release(skb2->dst);
524 skb2->dst = NULL;
525 skb_pull(skb2, skb->data - (u8*)iph6);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700526 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /* Try to guess incoming interface */
Daniel Lezcano606a2b42008-03-04 13:45:59 -0800529 rt6i = rt6_lookup(&init_net, &iph6->saddr, NULL, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (rt6i && rt6i->rt6i_dev) {
531 skb2->dev = rt6i->rt6i_dev;
532
Daniel Lezcano606a2b42008-03-04 13:45:59 -0800533 rt6i = rt6_lookup(&init_net, &iph6->daddr, &iph6->saddr, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 if (rt6i && rt6i->rt6i_dev && rt6i->rt6i_dev->type == ARPHRD_SIT) {
Patrick McHardy2941a482006-01-08 22:05:26 -0800536 struct ip_tunnel *t = netdev_priv(rt6i->rt6i_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (rel_type == ICMPV6_TIME_EXCEED && t->parms.iph.ttl) {
538 rel_type = ICMPV6_DEST_UNREACH;
539 rel_code = ICMPV6_ADDR_UNREACH;
540 }
541 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
542 }
543 }
544 kfree_skb(skb2);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800545 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#endif
547}
548
549static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
550{
551 if (INET_ECN_is_ce(iph->tos))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700552 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555static int ipip6_rcv(struct sk_buff *skb)
556{
557 struct iphdr *iph;
558 struct ip_tunnel *tunnel;
559
560 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
561 goto out;
562
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700563 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700566 if ((tunnel = ipip6_tunnel_lookup(dev_net(skb->dev),
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700567 iph->saddr, iph->daddr)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700569 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700570 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800571 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 skb->protocol = htons(ETH_P_IPV6);
573 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100574
575 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400576 !isatap_chksrc(skb, iph, tunnel)) {
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100577 tunnel->stat.rx_errors++;
578 read_unlock(&ipip6_lock);
579 kfree_skb(skb);
580 return 0;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 tunnel->stat.rx_packets++;
583 tunnel->stat.rx_bytes += skb->len;
584 skb->dev = tunnel->dev;
585 dst_release(skb->dst);
586 skb->dst = NULL;
587 nf_reset(skb);
588 ipip6_ecn_decapsulate(iph, skb);
589 netif_rx(skb);
590 read_unlock(&ipip6_lock);
591 return 0;
592 }
593
Herbert Xu45af08b2006-04-05 22:31:19 -0700594 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 kfree_skb(skb);
596 read_unlock(&ipip6_lock);
597out:
598 return 0;
599}
600
601/* Returns the embedded IPv4 address if the IPv6 address
602 comes from 6to4 (RFC 3056) addr space */
603
Al Viroe69a4ad2006-11-14 20:56:00 -0800604static inline __be32 try_6to4(struct in6_addr *v6dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Al Viroe69a4ad2006-11-14 20:56:00 -0800606 __be32 dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900609 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 memcpy(&dst, &v6dst->s6_addr16[1], 4);
611 }
612 return dst;
613}
614
615/*
616 * This function assumes it is being called from dev_queue_xmit()
617 * and that skb is filled properly by that function.
618 */
619
620static int ipip6_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
621{
Patrick McHardy2941a482006-01-08 22:05:26 -0800622 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct net_device_stats *stats = &tunnel->stat;
624 struct iphdr *tiph = &tunnel->parms.iph;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700625 struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 u8 tos = tunnel->parms.iph.tos;
627 struct rtable *rt; /* Route to the other host */
628 struct net_device *tdev; /* Device to other host */
629 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700630 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800631 __be32 dst = tiph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 int mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900633 struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 int addr_type;
635
636 if (tunnel->recursion++) {
637 tunnel->stat.collisions++;
638 goto tx_error;
639 }
640
641 if (skb->protocol != htons(ETH_P_IPV6))
642 goto tx_error;
643
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100644 /* ISATAP (RFC4214) - must come before 6to4 */
645 if (dev->priv_flags & IFF_ISATAP) {
646 struct neighbour *neigh = NULL;
647
648 if (skb->dst)
649 neigh = skb->dst->neighbour;
650
651 if (neigh == NULL) {
652 if (net_ratelimit())
653 printk(KERN_DEBUG "sit: nexthop == NULL\n");
654 goto tx_error;
655 }
656
657 addr6 = (struct in6_addr*)&neigh->primary_key;
658 addr_type = ipv6_addr_type(addr6);
659
660 if ((addr_type & IPV6_ADDR_UNICAST) &&
661 ipv6_addr_is_isatap(addr6))
662 dst = addr6->s6_addr32[3];
663 else
664 goto tx_error;
665 }
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (!dst)
668 dst = try_6to4(&iph6->daddr);
669
670 if (!dst) {
671 struct neighbour *neigh = NULL;
672
673 if (skb->dst)
674 neigh = skb->dst->neighbour;
675
676 if (neigh == NULL) {
677 if (net_ratelimit())
678 printk(KERN_DEBUG "sit: nexthop == NULL\n");
679 goto tx_error;
680 }
681
682 addr6 = (struct in6_addr*)&neigh->primary_key;
683 addr_type = ipv6_addr_type(addr6);
684
685 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700686 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 addr_type = ipv6_addr_type(addr6);
688 }
689
690 if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
691 goto tx_error_icmp;
692
693 dst = addr6->s6_addr32[3];
694 }
695
696 {
697 struct flowi fl = { .nl_u = { .ip4_u =
698 { .daddr = dst,
699 .saddr = tiph->saddr,
700 .tos = RT_TOS(tos) } },
701 .oif = tunnel->parms.link,
702 .proto = IPPROTO_IPV6 };
Denis V. Lunevf2063512008-01-22 22:07:34 -0800703 if (ip_route_output_key(&init_net, &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 tunnel->stat.tx_carrier_errors++;
705 goto tx_error_icmp;
706 }
707 }
708 if (rt->rt_type != RTN_UNICAST) {
709 ip_rt_put(rt);
710 tunnel->stat.tx_carrier_errors++;
711 goto tx_error_icmp;
712 }
713 tdev = rt->u.dst.dev;
714
715 if (tdev == dev) {
716 ip_rt_put(rt);
717 tunnel->stat.collisions++;
718 goto tx_error;
719 }
720
721 if (tiph->frag_off)
722 mtu = dst_mtu(&rt->u.dst) - sizeof(struct iphdr);
723 else
724 mtu = skb->dst ? dst_mtu(skb->dst) : dev->mtu;
725
726 if (mtu < 68) {
727 tunnel->stat.collisions++;
728 ip_rt_put(rt);
729 goto tx_error;
730 }
731 if (mtu < IPV6_MIN_MTU)
732 mtu = IPV6_MIN_MTU;
733 if (tunnel->parms.iph.daddr && skb->dst)
734 skb->dst->ops->update_pmtu(skb->dst, mtu);
735
736 if (skb->len > mtu) {
737 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
738 ip_rt_put(rt);
739 goto tx_error;
740 }
741
742 if (tunnel->err_count > 0) {
743 if (jiffies - tunnel->err_time < IPTUNNEL_ERR_TIMEO) {
744 tunnel->err_count--;
745 dst_link_failure(skb);
746 } else
747 tunnel->err_count = 0;
748 }
749
750 /*
751 * Okay, now see if we can stuff it in the buffer as-is.
752 */
753 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
754
Patrick McHardycfbba492007-07-09 15:33:40 -0700755 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
756 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
758 if (!new_skb) {
759 ip_rt_put(rt);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900760 stats->tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 dev_kfree_skb(skb);
762 tunnel->recursion--;
763 return 0;
764 }
765 if (skb->sk)
766 skb_set_owner_w(new_skb, skb->sk);
767 dev_kfree_skb(skb);
768 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700769 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700772 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700773 skb_push(skb, sizeof(struct iphdr));
774 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800776 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 dst_release(skb->dst);
778 skb->dst = &rt->u.dst;
779
780 /*
781 * Push down and install the IPIP header.
782 */
783
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700784 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 iph->version = 4;
786 iph->ihl = sizeof(struct iphdr)>>2;
787 if (mtu > IPV6_MIN_MTU)
788 iph->frag_off = htons(IP_DF);
789 else
790 iph->frag_off = 0;
791
792 iph->protocol = IPPROTO_IPV6;
793 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
794 iph->daddr = rt->rt_dst;
795 iph->saddr = rt->rt_src;
796
797 if ((iph->ttl = tiph->ttl) == 0)
798 iph->ttl = iph6->hop_limit;
799
800 nf_reset(skb);
801
802 IPTUNNEL_XMIT();
803 tunnel->recursion--;
804 return 0;
805
806tx_error_icmp:
807 dst_link_failure(skb);
808tx_error:
809 stats->tx_errors++;
810 dev_kfree_skb(skb);
811 tunnel->recursion--;
812 return 0;
813}
814
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800815static void ipip6_tunnel_bind_dev(struct net_device *dev)
816{
817 struct net_device *tdev = NULL;
818 struct ip_tunnel *tunnel;
819 struct iphdr *iph;
820
821 tunnel = netdev_priv(dev);
822 iph = &tunnel->parms.iph;
823
824 if (iph->daddr) {
825 struct flowi fl = { .nl_u = { .ip4_u =
826 { .daddr = iph->daddr,
827 .saddr = iph->saddr,
828 .tos = RT_TOS(iph->tos) } },
829 .oif = tunnel->parms.link,
830 .proto = IPPROTO_IPV6 };
831 struct rtable *rt;
Denis V. Lunevf2063512008-01-22 22:07:34 -0800832 if (!ip_route_output_key(&init_net, &rt, &fl)) {
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800833 tdev = rt->u.dst.dev;
834 ip_rt_put(rt);
835 }
836 dev->flags |= IFF_POINTOPOINT;
837 }
838
839 if (!tdev && tunnel->parms.link)
840 tdev = __dev_get_by_index(&init_net, tunnel->parms.link);
841
842 if (tdev) {
843 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
844 dev->mtu = tdev->mtu - sizeof(struct iphdr);
845 if (dev->mtu < IPV6_MIN_MTU)
846 dev->mtu = IPV6_MIN_MTU;
847 }
848 dev->iflink = tunnel->parms.link;
849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851static int
852ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
853{
854 int err = 0;
855 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400856 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700858 struct net *net = dev_net(dev);
859 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 switch (cmd) {
862 case SIOCGETTUNNEL:
863 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700864 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
866 err = -EFAULT;
867 break;
868 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700869 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -0800872 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 memcpy(&p, &t->parms, sizeof(p));
874 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
875 err = -EFAULT;
876 break;
877
878 case SIOCADDTUNNEL:
879 case SIOCCHGTUNNEL:
880 err = -EPERM;
881 if (!capable(CAP_NET_ADMIN))
882 goto done;
883
884 err = -EFAULT;
885 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
886 goto done;
887
888 err = -EINVAL;
889 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
890 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
891 goto done;
892 if (p.iph.ttl)
893 p.iph.frag_off |= htons(IP_DF);
894
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700895 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700897 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (t != NULL) {
899 if (t->dev != dev) {
900 err = -EEXIST;
901 break;
902 }
903 } else {
904 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
905 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
906 err = -EINVAL;
907 break;
908 }
Patrick McHardy2941a482006-01-08 22:05:26 -0800909 t = netdev_priv(dev);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700910 ipip6_tunnel_unlink(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 t->parms.iph.saddr = p.iph.saddr;
912 t->parms.iph.daddr = p.iph.daddr;
913 memcpy(dev->dev_addr, &p.iph.saddr, 4);
914 memcpy(dev->broadcast, &p.iph.daddr, 4);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700915 ipip6_tunnel_link(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 netdev_state_change(dev);
917 }
918 }
919
920 if (t) {
921 err = 0;
922 if (cmd == SIOCCHGTUNNEL) {
923 t->parms.iph.ttl = p.iph.ttl;
924 t->parms.iph.tos = p.iph.tos;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800925 if (t->parms.link != p.link) {
926 t->parms.link = p.link;
927 ipip6_tunnel_bind_dev(dev);
928 netdev_state_change(dev);
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
932 err = -EFAULT;
933 } else
934 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
935 break;
936
937 case SIOCDELTUNNEL:
938 err = -EPERM;
939 if (!capable(CAP_NET_ADMIN))
940 goto done;
941
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700942 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 err = -EFAULT;
944 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
945 goto done;
946 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700947 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 goto done;
949 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700950 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 goto done;
952 dev = t->dev;
953 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -0800954 unregister_netdevice(dev);
955 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 break;
957
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900958 case SIOCGETPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400959 case SIOCADDPRL:
960 case SIOCDELPRL:
961 case SIOCCHGPRL:
962 err = -EPERM;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900963 if (cmd != SIOCGETPRL && !capable(CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400964 goto done;
965 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700966 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400967 goto done;
968 err = -EFAULT;
969 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
970 goto done;
971 err = -ENOENT;
972 if (!(t = netdev_priv(dev)))
973 goto done;
974
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900975 switch (cmd) {
976 case SIOCGETPRL:
977 err = ipip6_tunnel_get_prl(t, &prl);
978 if (!err && copy_to_user(ifr->ifr_ifru.ifru_data,
979 &prl, sizeof(prl)))
980 err = -EFAULT;
981 break;
982 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400983 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900984 break;
985 case SIOCADDPRL:
986 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400987 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900988 break;
989 }
990 if (cmd != SIOCGETPRL)
991 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400992 break;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 default:
995 err = -EINVAL;
996 }
997
998done:
999 return err;
1000}
1001
1002static struct net_device_stats *ipip6_tunnel_get_stats(struct net_device *dev)
1003{
Patrick McHardy2941a482006-01-08 22:05:26 -08001004 return &(((struct ip_tunnel*)netdev_priv(dev))->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
1007static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1008{
1009 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
1010 return -EINVAL;
1011 dev->mtu = new_mtu;
1012 return 0;
1013}
1014
1015static void ipip6_tunnel_setup(struct net_device *dev)
1016{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 dev->uninit = ipip6_tunnel_uninit;
1018 dev->destructor = free_netdev;
1019 dev->hard_start_xmit = ipip6_tunnel_xmit;
1020 dev->get_stats = ipip6_tunnel_get_stats;
1021 dev->do_ioctl = ipip6_tunnel_ioctl;
1022 dev->change_mtu = ipip6_tunnel_change_mtu;
1023
1024 dev->type = ARPHRD_SIT;
1025 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -08001026 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 dev->flags = IFF_NOARP;
1028 dev->iflink = 0;
1029 dev->addr_len = 4;
1030}
1031
1032static int ipip6_tunnel_init(struct net_device *dev)
1033{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct ip_tunnel *tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Patrick McHardy2941a482006-01-08 22:05:26 -08001036 tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 tunnel->dev = dev;
1039 strcpy(tunnel->parms.name, dev->name);
1040
1041 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
1042 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
1043
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001044 ipip6_tunnel_bind_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 return 0;
1047}
1048
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001049static int ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Patrick McHardy2941a482006-01-08 22:05:26 -08001051 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 struct iphdr *iph = &tunnel->parms.iph;
1053
1054 tunnel->dev = dev;
1055 strcpy(tunnel->parms.name, dev->name);
1056
1057 iph->version = 4;
1058 iph->protocol = IPPROTO_IPV6;
1059 iph->ihl = 5;
1060 iph->ttl = 64;
1061
1062 dev_hold(dev);
1063 tunnels_wc[0] = tunnel;
1064 return 0;
1065}
1066
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001067static struct xfrm_tunnel sit_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 .handler = ipip6_rcv,
1069 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001070 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071};
1072
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001073static void __exit sit_destroy_tunnels(void)
1074{
1075 int prio;
1076
1077 for (prio = 1; prio < 4; prio++) {
1078 int h;
1079 for (h = 0; h < HASH_SIZE; h++) {
1080 struct ip_tunnel *t;
1081 while ((t = tunnels[prio][h]) != NULL)
1082 unregister_netdevice(t->dev);
1083 }
1084 }
1085}
1086
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001087static int sit_init_net(struct net *net)
1088{
1089 int err;
1090 struct sit_net *sitn;
1091
1092 err = -ENOMEM;
1093 sitn = kmalloc(sizeof(struct sit_net), GFP_KERNEL);
1094 if (sitn == NULL)
1095 goto err_alloc;
1096
1097 err = net_assign_generic(net, sit_net_id, sitn);
1098 if (err < 0)
1099 goto err_assign;
1100
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001101 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1102 ipip6_tunnel_setup);
1103 if (!sitn->fb_tunnel_dev) {
1104 err = -ENOMEM;
1105 goto err_alloc_dev;
1106 }
1107
1108 sitn->fb_tunnel_dev->init = ipip6_fb_tunnel_init;
1109 dev_net_set(sitn->fb_tunnel_dev, net);
1110
1111 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1112 goto err_reg_dev;
1113
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001114 return 0;
1115
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001116err_reg_dev:
1117 free_netdev(sitn->fb_tunnel_dev);
1118err_alloc_dev:
1119 /* nothing */
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001120err_assign:
1121 kfree(sitn);
1122err_alloc:
1123 return err;
1124}
1125
1126static void sit_exit_net(struct net *net)
1127{
1128 struct sit_net *sitn;
1129
1130 sitn = net_generic(net, sit_net_id);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001131 rtnl_lock();
1132 unregister_netdevice(sitn->fb_tunnel_dev);
1133 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001134 kfree(sitn);
1135}
1136
1137static struct pernet_operations sit_net_ops = {
1138 .init = sit_init_net,
1139 .exit = sit_exit_net,
1140};
1141
Adrian Bunk89c89452006-11-20 16:56:48 -08001142static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001144 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001145
1146 rtnl_lock();
1147 sit_destroy_tunnels();
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001148 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001149
1150 unregister_pernet_gen_device(sit_net_id, &sit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Adrian Bunk89c89452006-11-20 16:56:48 -08001153static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
1155 int err;
1156
1157 printk(KERN_INFO "IPv6 over IPv4 tunneling driver\n");
1158
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001159 if (xfrm4_tunnel_register(&sit_handler, AF_INET6) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 printk(KERN_INFO "sit init: Can't add protocol\n");
1161 return -EAGAIN;
1162 }
1163
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001164 err = register_pernet_gen_device(&sit_net_id, &sit_net_ops);
1165 if (err < 0)
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001166 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001170
1171module_init(sit_init);
1172module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001173MODULE_LICENSE("GPL");
Patrick McHardydaccff02006-11-05 15:47:04 -08001174MODULE_ALIAS("sit0");