blob: 7badac6c7416c199cbac7e005db8995a5c27731d [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 Viroe69a4adc2006-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 Emelyanov29182172008-04-16 01:16:38 -070073 struct ip_tunnel *tunnels_r_l[HASH_SIZE];
74 struct ip_tunnel *tunnels_r[HASH_SIZE];
75 struct ip_tunnel *tunnels_l[HASH_SIZE];
76 struct ip_tunnel *tunnels_wc[1];
77 struct ip_tunnel **tunnels[4];
78
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -070079 struct net_device *fb_tunnel_dev;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070080};
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static 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;
Pavel Emelyanov29182172008-04-16 01:16:38 -070090 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Pavel Emelyanov29182172008-04-16 01:16:38 -070092 for (t = sitn->tunnels_r_l[h0^h1]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (local == t->parms.iph.saddr &&
94 remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
95 return t;
96 }
Pavel Emelyanov29182172008-04-16 01:16:38 -070097 for (t = sitn->tunnels_r[h0]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
99 return t;
100 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700101 for (t = sitn->tunnels_l[h1]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (local == t->parms.iph.saddr && (t->dev->flags&IFF_UP))
103 return t;
104 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700105 if ((t = sitn->tunnels_wc[0]) != NULL && (t->dev->flags&IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return t;
107 return NULL;
108}
109
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700110static struct ip_tunnel **__ipip6_bucket(struct sit_net *sitn,
111 struct ip_tunnel_parm *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900113 __be32 remote = parms->iph.daddr;
114 __be32 local = parms->iph.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 unsigned h = 0;
116 int prio = 0;
117
118 if (remote) {
119 prio |= 2;
120 h ^= HASH(remote);
121 }
122 if (local) {
123 prio |= 1;
124 h ^= HASH(local);
125 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700126 return &sitn->tunnels[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700129static inline struct ip_tunnel **ipip6_bucket(struct sit_net *sitn,
130 struct ip_tunnel *t)
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900131{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700132 return __ipip6_bucket(sitn, &t->parms);
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900133}
134
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700135static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 struct ip_tunnel **tp;
138
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700139 for (tp = ipip6_bucket(sitn, t); *tp; tp = &(*tp)->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (t == *tp) {
141 write_lock_bh(&ipip6_lock);
142 *tp = t->next;
143 write_unlock_bh(&ipip6_lock);
144 break;
145 }
146 }
147}
148
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700149static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700151 struct ip_tunnel **tp = ipip6_bucket(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 t->next = *tp;
154 write_lock_bh(&ipip6_lock);
155 *tp = t;
156 write_unlock_bh(&ipip6_lock);
157}
158
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700159static struct ip_tunnel * ipip6_tunnel_locate(struct net *net,
160 struct ip_tunnel_parm *parms, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Al Viroe69a4adc2006-11-14 20:56:00 -0800162 __be32 remote = parms->iph.daddr;
163 __be32 local = parms->iph.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 struct ip_tunnel *t, **tp, *nt;
165 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 char name[IFNAMSIZ];
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700167 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700169 for (tp = __ipip6_bucket(sitn, parms); (t = *tp) != NULL; tp = &t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (local == t->parms.iph.saddr && remote == t->parms.iph.daddr)
171 return t;
172 }
173 if (!create)
174 goto failed;
175
176 if (parms->name[0])
177 strlcpy(name, parms->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800178 else
179 sprintf(name, "sit%%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
182 if (dev == NULL)
183 return NULL;
184
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800185 if (strchr(name, '%')) {
186 if (dev_alloc_name(dev, name) < 0)
187 goto failed_free;
188 }
189
Patrick McHardy2941a482006-01-08 22:05:26 -0800190 nt = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 dev->init = ipip6_tunnel_init;
192 nt->parms = *parms;
193
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100194 if (parms->i_flags & SIT_ISATAP)
195 dev->priv_flags |= IFF_ISATAP;
196
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800197 if (register_netdevice(dev) < 0)
198 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 dev_hold(dev);
201
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700202 ipip6_tunnel_link(sitn, nt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return nt;
204
Pavel Emelyanovb37d428b2008-02-26 23:51:04 -0800205failed_free:
206 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207failed:
208 return NULL;
209}
210
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400211static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900212__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400213{
214 struct ip_tunnel_prl_entry *p = (struct ip_tunnel_prl_entry *)NULL;
215
216 for (p = t->prl; p; p = p->next)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900217 if (p->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400218 break;
219 return p;
220
221}
222
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900223static int ipip6_tunnel_get_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
224{
225 struct ip_tunnel_prl *kp;
226 struct ip_tunnel_prl_entry *prl;
227 unsigned int cmax, c = 0, ca, len;
228 int ret = 0;
229
230 cmax = a->datalen / sizeof(*a);
231 if (cmax > 1 && a->addr != htonl(INADDR_ANY))
232 cmax = 1;
233
234 /* For simple GET or for root users,
235 * we try harder to allocate.
236 */
237 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
238 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
239 NULL;
240
241 read_lock(&ipip6_lock);
242
243 ca = t->prl_count < cmax ? t->prl_count : cmax;
244
245 if (!kp) {
246 /* We don't try hard to allocate much memory for
247 * non-root users.
248 * For root users, retry allocating enough memory for
249 * the answer.
250 */
251 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
252 if (!kp) {
253 ret = -ENOMEM;
254 goto out;
255 }
256 }
257
258 c = 0;
259 for (prl = t->prl; prl; prl = prl->next) {
260 if (c > cmax)
261 break;
262 if (a->addr != htonl(INADDR_ANY) && prl->addr != a->addr)
263 continue;
264 kp[c].addr = prl->addr;
265 kp[c].flags = prl->flags;
266 c++;
267 if (a->addr != htonl(INADDR_ANY))
268 break;
269 }
270out:
271 read_unlock(&ipip6_lock);
272
273 len = sizeof(*kp) * c;
274 ret = len ? copy_to_user(a->data, kp, len) : 0;
275
276 kfree(kp);
277 if (ret)
278 return -EFAULT;
279
280 a->datalen = len;
281 return 0;
282}
283
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400284static int
285ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
286{
287 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900288 int err = 0;
289
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900290 if (a->addr == htonl(INADDR_ANY))
291 return -EINVAL;
292
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900293 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400294
295 for (p = t->prl; p; p = p->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900296 if (p->addr == a->addr) {
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900297 if (chg)
298 goto update;
299 err = -EEXIST;
300 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400301 }
302 }
303
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900304 if (chg) {
305 err = -ENXIO;
306 goto out;
307 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400308
309 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900310 if (!p) {
311 err = -ENOBUFS;
312 goto out;
313 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400314
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400315 p->next = t->prl;
316 t->prl = p;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900317 t->prl_count++;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900318update:
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900319 p->addr = a->addr;
320 p->flags = a->flags;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900321out:
322 write_unlock(&ipip6_lock);
323 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400324}
325
326static int
327ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
328{
329 struct ip_tunnel_prl_entry *x, **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900330 int err = 0;
331
332 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400333
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900334 if (a && a->addr != htonl(INADDR_ANY)) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400335 for (p = &t->prl; *p; p = &(*p)->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900336 if ((*p)->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400337 x = *p;
338 *p = x->next;
339 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900340 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900341 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400342 }
343 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900344 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400345 } else {
346 while (t->prl) {
347 x = t->prl;
348 t->prl = t->prl->next;
349 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900350 t->prl_count--;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400351 }
352 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900353out:
354 write_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400355 return 0;
356}
357
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400358static int
359isatap_chksrc(struct sk_buff *skb, struct iphdr *iph, struct ip_tunnel *t)
360{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900361 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400362 int ok = 1;
363
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900364 read_lock(&ipip6_lock);
365 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400366 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900367 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400368 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
369 else
370 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
371 } else {
372 struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
373 if (ipv6_addr_is_isatap(addr6) &&
374 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400375 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400376 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
377 else
378 ok = 0;
379 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900380 read_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400381 return ok;
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384static void ipip6_tunnel_uninit(struct net_device *dev)
385{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700386 struct net *net = dev_net(dev);
387 struct sit_net *sitn = net_generic(net, sit_net_id);
388
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700389 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 write_lock_bh(&ipip6_lock);
Pavel Emelyanov29182172008-04-16 01:16:38 -0700391 sitn->tunnels_wc[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 write_unlock_bh(&ipip6_lock);
393 dev_put(dev);
394 } else {
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700395 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
YOSHIFUJI Hideaki02e10b92008-04-10 15:41:27 +0900396 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 dev_put(dev);
398 }
399}
400
401
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800402static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404#ifndef I_WISH_WORLD_WERE_PERFECT
405
406/* It is not :-( All the routers (except for Linux) return only
407 8 bytes of packet payload. It means, that precise relaying of
408 ICMP in the real Internet is absolutely infeasible.
409 */
410 struct iphdr *iph = (struct iphdr*)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300411 const int type = icmp_hdr(skb)->type;
412 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800414 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 switch (type) {
417 default:
418 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 case ICMP_DEST_UNREACH:
422 switch (code) {
423 case ICMP_SR_FAILED:
424 case ICMP_PORT_UNREACH:
425 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 case ICMP_FRAG_NEEDED:
428 /* Soft state for pmtu is maintained by IP core. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 default:
431 /* All others are translated to HOST_UNREACH.
432 rfc2003 contains "deep thoughts" about NET_UNREACH,
433 I believe they are just ether pollution. --ANK
434 */
435 break;
436 }
437 break;
438 case ICMP_TIME_EXCEEDED:
439 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
442 }
443
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800444 err = -ENOENT;
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700447 t = ipip6_tunnel_lookup(dev_net(skb->dev), iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (t == NULL || t->parms.iph.daddr == 0)
449 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800450
451 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
453 goto out;
454
455 if (jiffies - t->err_time < IPTUNNEL_ERR_TIMEO)
456 t->err_count++;
457 else
458 t->err_count = 1;
459 t->err_time = jiffies;
460out:
461 read_unlock(&ipip6_lock);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800462 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#else
464 struct iphdr *iph = (struct iphdr*)dp;
465 int hlen = iph->ihl<<2;
466 struct ipv6hdr *iph6;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300467 const int type = icmp_hdr(skb)->type;
468 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 int rel_type = 0;
470 int rel_code = 0;
471 int rel_info = 0;
472 struct sk_buff *skb2;
473 struct rt6_info *rt6i;
474
475 if (len < hlen + sizeof(struct ipv6hdr))
476 return;
477 iph6 = (struct ipv6hdr*)(dp + hlen);
478
479 switch (type) {
480 default:
481 return;
482 case ICMP_PARAMETERPROB:
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300483 if (icmp_hdr(skb)->un.gateway < hlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return;
485
486 /* So... This guy found something strange INSIDE encapsulated
487 packet. Well, he is fool, but what can we do ?
488 */
489 rel_type = ICMPV6_PARAMPROB;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300490 rel_info = icmp_hdr(skb)->un.gateway - hlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 break;
492
493 case ICMP_DEST_UNREACH:
494 switch (code) {
495 case ICMP_SR_FAILED:
496 case ICMP_PORT_UNREACH:
497 /* Impossible event. */
498 return;
499 case ICMP_FRAG_NEEDED:
500 /* Too complicated case ... */
501 return;
502 default:
503 /* All others are translated to HOST_UNREACH.
504 rfc2003 contains "deep thoughts" about NET_UNREACH,
505 I believe, it is just ether pollution. --ANK
506 */
507 rel_type = ICMPV6_DEST_UNREACH;
508 rel_code = ICMPV6_ADDR_UNREACH;
509 break;
510 }
511 break;
512 case ICMP_TIME_EXCEEDED:
513 if (code != ICMP_EXC_TTL)
514 return;
515 rel_type = ICMPV6_TIME_EXCEED;
516 rel_code = ICMPV6_EXC_HOPLIMIT;
517 break;
518 }
519
520 /* Prepare fake skb to feed it to icmpv6_send */
521 skb2 = skb_clone(skb, GFP_ATOMIC);
522 if (skb2 == NULL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 dst_release(skb2->dst);
525 skb2->dst = NULL;
526 skb_pull(skb2, skb->data - (u8*)iph6);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700527 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* Try to guess incoming interface */
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700530 rt6i = rt6_lookup(dev_net(skb->dev), &iph6->saddr, NULL, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (rt6i && rt6i->rt6i_dev) {
532 skb2->dev = rt6i->rt6i_dev;
533
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700534 rt6i = rt6_lookup(dev_net(skb->dev),
535 &iph6->daddr, &iph6->saddr, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (rt6i && rt6i->rt6i_dev && rt6i->rt6i_dev->type == ARPHRD_SIT) {
Patrick McHardy2941a482006-01-08 22:05:26 -0800538 struct ip_tunnel *t = netdev_priv(rt6i->rt6i_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (rel_type == ICMPV6_TIME_EXCEED && t->parms.iph.ttl) {
540 rel_type = ICMPV6_DEST_UNREACH;
541 rel_code = ICMPV6_ADDR_UNREACH;
542 }
543 icmpv6_send(skb2, rel_type, rel_code, rel_info, skb2->dev);
544 }
545 }
546 kfree_skb(skb2);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#endif
549}
550
551static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
552{
553 if (INET_ECN_is_ce(iph->tos))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700554 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557static int ipip6_rcv(struct sk_buff *skb)
558{
559 struct iphdr *iph;
560 struct ip_tunnel *tunnel;
561
562 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
563 goto out;
564
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700565 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700568 if ((tunnel = ipip6_tunnel_lookup(dev_net(skb->dev),
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700569 iph->saddr, iph->daddr)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700571 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700572 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800573 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 skb->protocol = htons(ETH_P_IPV6);
575 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100576
577 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400578 !isatap_chksrc(skb, iph, tunnel)) {
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100579 tunnel->stat.rx_errors++;
580 read_unlock(&ipip6_lock);
581 kfree_skb(skb);
582 return 0;
583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 tunnel->stat.rx_packets++;
585 tunnel->stat.rx_bytes += skb->len;
586 skb->dev = tunnel->dev;
587 dst_release(skb->dst);
588 skb->dst = NULL;
589 nf_reset(skb);
590 ipip6_ecn_decapsulate(iph, skb);
591 netif_rx(skb);
592 read_unlock(&ipip6_lock);
593 return 0;
594 }
595
Herbert Xu45af08b2006-04-05 22:31:19 -0700596 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 kfree_skb(skb);
598 read_unlock(&ipip6_lock);
599out:
600 return 0;
601}
602
603/* Returns the embedded IPv4 address if the IPv6 address
604 comes from 6to4 (RFC 3056) addr space */
605
Al Viroe69a4adc2006-11-14 20:56:00 -0800606static inline __be32 try_6to4(struct in6_addr *v6dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Al Viroe69a4adc2006-11-14 20:56:00 -0800608 __be32 dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900611 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 memcpy(&dst, &v6dst->s6_addr16[1], 4);
613 }
614 return dst;
615}
616
617/*
618 * This function assumes it is being called from dev_queue_xmit()
619 * and that skb is filled properly by that function.
620 */
621
622static int ipip6_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
623{
Patrick McHardy2941a482006-01-08 22:05:26 -0800624 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 struct net_device_stats *stats = &tunnel->stat;
626 struct iphdr *tiph = &tunnel->parms.iph;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700627 struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 u8 tos = tunnel->parms.iph.tos;
629 struct rtable *rt; /* Route to the other host */
630 struct net_device *tdev; /* Device to other host */
631 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700632 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4adc2006-11-14 20:56:00 -0800633 __be32 dst = tiph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 int mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900635 struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 int addr_type;
637
638 if (tunnel->recursion++) {
639 tunnel->stat.collisions++;
640 goto tx_error;
641 }
642
643 if (skb->protocol != htons(ETH_P_IPV6))
644 goto tx_error;
645
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100646 /* ISATAP (RFC4214) - must come before 6to4 */
647 if (dev->priv_flags & IFF_ISATAP) {
648 struct neighbour *neigh = NULL;
649
650 if (skb->dst)
651 neigh = skb->dst->neighbour;
652
653 if (neigh == NULL) {
654 if (net_ratelimit())
655 printk(KERN_DEBUG "sit: nexthop == NULL\n");
656 goto tx_error;
657 }
658
659 addr6 = (struct in6_addr*)&neigh->primary_key;
660 addr_type = ipv6_addr_type(addr6);
661
662 if ((addr_type & IPV6_ADDR_UNICAST) &&
663 ipv6_addr_is_isatap(addr6))
664 dst = addr6->s6_addr32[3];
665 else
666 goto tx_error;
667 }
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (!dst)
670 dst = try_6to4(&iph6->daddr);
671
672 if (!dst) {
673 struct neighbour *neigh = NULL;
674
675 if (skb->dst)
676 neigh = skb->dst->neighbour;
677
678 if (neigh == NULL) {
679 if (net_ratelimit())
680 printk(KERN_DEBUG "sit: nexthop == NULL\n");
681 goto tx_error;
682 }
683
684 addr6 = (struct in6_addr*)&neigh->primary_key;
685 addr_type = ipv6_addr_type(addr6);
686
687 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700688 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 addr_type = ipv6_addr_type(addr6);
690 }
691
692 if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
693 goto tx_error_icmp;
694
695 dst = addr6->s6_addr32[3];
696 }
697
698 {
699 struct flowi fl = { .nl_u = { .ip4_u =
700 { .daddr = dst,
701 .saddr = tiph->saddr,
702 .tos = RT_TOS(tos) } },
703 .oif = tunnel->parms.link,
704 .proto = IPPROTO_IPV6 };
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700705 if (ip_route_output_key(dev_net(dev), &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 tunnel->stat.tx_carrier_errors++;
707 goto tx_error_icmp;
708 }
709 }
710 if (rt->rt_type != RTN_UNICAST) {
711 ip_rt_put(rt);
712 tunnel->stat.tx_carrier_errors++;
713 goto tx_error_icmp;
714 }
715 tdev = rt->u.dst.dev;
716
717 if (tdev == dev) {
718 ip_rt_put(rt);
719 tunnel->stat.collisions++;
720 goto tx_error;
721 }
722
723 if (tiph->frag_off)
724 mtu = dst_mtu(&rt->u.dst) - sizeof(struct iphdr);
725 else
726 mtu = skb->dst ? dst_mtu(skb->dst) : dev->mtu;
727
728 if (mtu < 68) {
729 tunnel->stat.collisions++;
730 ip_rt_put(rt);
731 goto tx_error;
732 }
733 if (mtu < IPV6_MIN_MTU)
734 mtu = IPV6_MIN_MTU;
735 if (tunnel->parms.iph.daddr && skb->dst)
736 skb->dst->ops->update_pmtu(skb->dst, mtu);
737
738 if (skb->len > mtu) {
739 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
740 ip_rt_put(rt);
741 goto tx_error;
742 }
743
744 if (tunnel->err_count > 0) {
745 if (jiffies - tunnel->err_time < IPTUNNEL_ERR_TIMEO) {
746 tunnel->err_count--;
747 dst_link_failure(skb);
748 } else
749 tunnel->err_count = 0;
750 }
751
752 /*
753 * Okay, now see if we can stuff it in the buffer as-is.
754 */
755 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
756
Patrick McHardycfbba492007-07-09 15:33:40 -0700757 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
758 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
760 if (!new_skb) {
761 ip_rt_put(rt);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900762 stats->tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 dev_kfree_skb(skb);
764 tunnel->recursion--;
765 return 0;
766 }
767 if (skb->sk)
768 skb_set_owner_w(new_skb, skb->sk);
769 dev_kfree_skb(skb);
770 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700771 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700774 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700775 skb_push(skb, sizeof(struct iphdr));
776 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800778 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 dst_release(skb->dst);
780 skb->dst = &rt->u.dst;
781
782 /*
783 * Push down and install the IPIP header.
784 */
785
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700786 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 iph->version = 4;
788 iph->ihl = sizeof(struct iphdr)>>2;
789 if (mtu > IPV6_MIN_MTU)
790 iph->frag_off = htons(IP_DF);
791 else
792 iph->frag_off = 0;
793
794 iph->protocol = IPPROTO_IPV6;
795 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
796 iph->daddr = rt->rt_dst;
797 iph->saddr = rt->rt_src;
798
799 if ((iph->ttl = tiph->ttl) == 0)
800 iph->ttl = iph6->hop_limit;
801
802 nf_reset(skb);
803
804 IPTUNNEL_XMIT();
805 tunnel->recursion--;
806 return 0;
807
808tx_error_icmp:
809 dst_link_failure(skb);
810tx_error:
811 stats->tx_errors++;
812 dev_kfree_skb(skb);
813 tunnel->recursion--;
814 return 0;
815}
816
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800817static void ipip6_tunnel_bind_dev(struct net_device *dev)
818{
819 struct net_device *tdev = NULL;
820 struct ip_tunnel *tunnel;
821 struct iphdr *iph;
822
823 tunnel = netdev_priv(dev);
824 iph = &tunnel->parms.iph;
825
826 if (iph->daddr) {
827 struct flowi fl = { .nl_u = { .ip4_u =
828 { .daddr = iph->daddr,
829 .saddr = iph->saddr,
830 .tos = RT_TOS(iph->tos) } },
831 .oif = tunnel->parms.link,
832 .proto = IPPROTO_IPV6 };
833 struct rtable *rt;
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700834 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800835 tdev = rt->u.dst.dev;
836 ip_rt_put(rt);
837 }
838 dev->flags |= IFF_POINTOPOINT;
839 }
840
841 if (!tdev && tunnel->parms.link)
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700842 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800843
844 if (tdev) {
845 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
846 dev->mtu = tdev->mtu - sizeof(struct iphdr);
847 if (dev->mtu < IPV6_MIN_MTU)
848 dev->mtu = IPV6_MIN_MTU;
849 }
850 dev->iflink = tunnel->parms.link;
851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853static int
854ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
855{
856 int err = 0;
857 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400858 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700860 struct net *net = dev_net(dev);
861 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 switch (cmd) {
864 case SIOCGETTUNNEL:
865 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700866 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
868 err = -EFAULT;
869 break;
870 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700871 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
873 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -0800874 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 memcpy(&p, &t->parms, sizeof(p));
876 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
877 err = -EFAULT;
878 break;
879
880 case SIOCADDTUNNEL:
881 case SIOCCHGTUNNEL:
882 err = -EPERM;
883 if (!capable(CAP_NET_ADMIN))
884 goto done;
885
886 err = -EFAULT;
887 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
888 goto done;
889
890 err = -EINVAL;
891 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
892 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
893 goto done;
894 if (p.iph.ttl)
895 p.iph.frag_off |= htons(IP_DF);
896
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700897 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700899 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (t != NULL) {
901 if (t->dev != dev) {
902 err = -EEXIST;
903 break;
904 }
905 } else {
906 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
907 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
908 err = -EINVAL;
909 break;
910 }
Patrick McHardy2941a482006-01-08 22:05:26 -0800911 t = netdev_priv(dev);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700912 ipip6_tunnel_unlink(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 t->parms.iph.saddr = p.iph.saddr;
914 t->parms.iph.daddr = p.iph.daddr;
915 memcpy(dev->dev_addr, &p.iph.saddr, 4);
916 memcpy(dev->broadcast, &p.iph.daddr, 4);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700917 ipip6_tunnel_link(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 netdev_state_change(dev);
919 }
920 }
921
922 if (t) {
923 err = 0;
924 if (cmd == SIOCCHGTUNNEL) {
925 t->parms.iph.ttl = p.iph.ttl;
926 t->parms.iph.tos = p.iph.tos;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800927 if (t->parms.link != p.link) {
928 t->parms.link = p.link;
929 ipip6_tunnel_bind_dev(dev);
930 netdev_state_change(dev);
931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
934 err = -EFAULT;
935 } else
936 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
937 break;
938
939 case SIOCDELTUNNEL:
940 err = -EPERM;
941 if (!capable(CAP_NET_ADMIN))
942 goto done;
943
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700944 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 err = -EFAULT;
946 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
947 goto done;
948 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700949 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 goto done;
951 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700952 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 goto done;
954 dev = t->dev;
955 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -0800956 unregister_netdevice(dev);
957 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 break;
959
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900960 case SIOCGETPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400961 case SIOCADDPRL:
962 case SIOCDELPRL:
963 case SIOCCHGPRL:
964 err = -EPERM;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900965 if (cmd != SIOCGETPRL && !capable(CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400966 goto done;
967 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700968 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400969 goto done;
970 err = -EFAULT;
971 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
972 goto done;
973 err = -ENOENT;
974 if (!(t = netdev_priv(dev)))
975 goto done;
976
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900977 switch (cmd) {
978 case SIOCGETPRL:
979 err = ipip6_tunnel_get_prl(t, &prl);
980 if (!err && copy_to_user(ifr->ifr_ifru.ifru_data,
981 &prl, sizeof(prl)))
982 err = -EFAULT;
983 break;
984 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400985 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900986 break;
987 case SIOCADDPRL:
988 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400989 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900990 break;
991 }
992 if (cmd != SIOCGETPRL)
993 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400994 break;
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 default:
997 err = -EINVAL;
998 }
999
1000done:
1001 return err;
1002}
1003
1004static struct net_device_stats *ipip6_tunnel_get_stats(struct net_device *dev)
1005{
Patrick McHardy2941a482006-01-08 22:05:26 -08001006 return &(((struct ip_tunnel*)netdev_priv(dev))->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
1009static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1010{
1011 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
1012 return -EINVAL;
1013 dev->mtu = new_mtu;
1014 return 0;
1015}
1016
1017static void ipip6_tunnel_setup(struct net_device *dev)
1018{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 dev->uninit = ipip6_tunnel_uninit;
1020 dev->destructor = free_netdev;
1021 dev->hard_start_xmit = ipip6_tunnel_xmit;
1022 dev->get_stats = ipip6_tunnel_get_stats;
1023 dev->do_ioctl = ipip6_tunnel_ioctl;
1024 dev->change_mtu = ipip6_tunnel_change_mtu;
1025
1026 dev->type = ARPHRD_SIT;
1027 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -08001028 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 dev->flags = IFF_NOARP;
1030 dev->iflink = 0;
1031 dev->addr_len = 4;
1032}
1033
1034static int ipip6_tunnel_init(struct net_device *dev)
1035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct ip_tunnel *tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Patrick McHardy2941a482006-01-08 22:05:26 -08001038 tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 tunnel->dev = dev;
1041 strcpy(tunnel->parms.name, dev->name);
1042
1043 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
1044 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
1045
Michal Schmidt8a4a50f2007-12-13 09:47:00 -08001046 ipip6_tunnel_bind_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 return 0;
1049}
1050
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001051static int ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
Patrick McHardy2941a482006-01-08 22:05:26 -08001053 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001055 struct net *net = dev_net(dev);
1056 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 tunnel->dev = dev;
1059 strcpy(tunnel->parms.name, dev->name);
1060
1061 iph->version = 4;
1062 iph->protocol = IPPROTO_IPV6;
1063 iph->ihl = 5;
1064 iph->ttl = 64;
1065
1066 dev_hold(dev);
Pavel Emelyanov29182172008-04-16 01:16:38 -07001067 sitn->tunnels_wc[0] = tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
1069}
1070
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001071static struct xfrm_tunnel sit_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 .handler = ipip6_rcv,
1073 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001074 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075};
1076
Pavel Emelyanov29182172008-04-16 01:16:38 -07001077static void sit_destroy_tunnels(struct sit_net *sitn)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001078{
1079 int prio;
1080
1081 for (prio = 1; prio < 4; prio++) {
1082 int h;
1083 for (h = 0; h < HASH_SIZE; h++) {
1084 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001085 while ((t = sitn->tunnels[prio][h]) != NULL)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001086 unregister_netdevice(t->dev);
1087 }
1088 }
1089}
1090
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001091static int sit_init_net(struct net *net)
1092{
1093 int err;
1094 struct sit_net *sitn;
1095
1096 err = -ENOMEM;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001097 sitn = kzalloc(sizeof(struct sit_net), GFP_KERNEL);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001098 if (sitn == NULL)
1099 goto err_alloc;
1100
1101 err = net_assign_generic(net, sit_net_id, sitn);
1102 if (err < 0)
1103 goto err_assign;
1104
Pavel Emelyanov29182172008-04-16 01:16:38 -07001105 sitn->tunnels[0] = sitn->tunnels_wc;
1106 sitn->tunnels[1] = sitn->tunnels_l;
1107 sitn->tunnels[2] = sitn->tunnels_r;
1108 sitn->tunnels[3] = sitn->tunnels_r_l;
1109
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001110 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1111 ipip6_tunnel_setup);
1112 if (!sitn->fb_tunnel_dev) {
1113 err = -ENOMEM;
1114 goto err_alloc_dev;
1115 }
1116
1117 sitn->fb_tunnel_dev->init = ipip6_fb_tunnel_init;
1118 dev_net_set(sitn->fb_tunnel_dev, net);
1119
1120 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1121 goto err_reg_dev;
1122
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001123 return 0;
1124
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001125err_reg_dev:
1126 free_netdev(sitn->fb_tunnel_dev);
1127err_alloc_dev:
1128 /* nothing */
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001129err_assign:
1130 kfree(sitn);
1131err_alloc:
1132 return err;
1133}
1134
1135static void sit_exit_net(struct net *net)
1136{
1137 struct sit_net *sitn;
1138
1139 sitn = net_generic(net, sit_net_id);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001140 rtnl_lock();
Pavel Emelyanov29182172008-04-16 01:16:38 -07001141 sit_destroy_tunnels(sitn);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001142 unregister_netdevice(sitn->fb_tunnel_dev);
1143 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001144 kfree(sitn);
1145}
1146
1147static struct pernet_operations sit_net_ops = {
1148 .init = sit_init_net,
1149 .exit = sit_exit_net,
1150};
1151
Adrian Bunk89c89452006-11-20 16:56:48 -08001152static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001154 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001155
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001156 unregister_pernet_gen_device(sit_net_id, &sit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Adrian Bunk89c89452006-11-20 16:56:48 -08001159static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 int err;
1162
1163 printk(KERN_INFO "IPv6 over IPv4 tunneling driver\n");
1164
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001165 if (xfrm4_tunnel_register(&sit_handler, AF_INET6) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 printk(KERN_INFO "sit init: Can't add protocol\n");
1167 return -EAGAIN;
1168 }
1169
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001170 err = register_pernet_gen_device(&sit_net_id, &sit_net_ops);
1171 if (err < 0)
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001172 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001176
1177module_init(sit_init);
1178module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001179MODULE_LICENSE("GPL");
Patrick McHardydaccff02006-11-05 15:47:04 -08001180MODULE_ALIAS("sit0");