blob: 32e871a6c25ac35a3952fc8705f7394ec0f7ba2a [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 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 Viroe69a4ad2006-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 Emelyanov7a971462008-04-16 01:17:18 -0700185 dev_net_set(dev, net);
186
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800187 if (strchr(name, '%')) {
188 if (dev_alloc_name(dev, name) < 0)
189 goto failed_free;
190 }
191
Patrick McHardy2941a482006-01-08 22:05:26 -0800192 nt = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dev->init = ipip6_tunnel_init;
194 nt->parms = *parms;
195
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100196 if (parms->i_flags & SIT_ISATAP)
197 dev->priv_flags |= IFF_ISATAP;
198
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800199 if (register_netdevice(dev) < 0)
200 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 dev_hold(dev);
203
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700204 ipip6_tunnel_link(sitn, nt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return nt;
206
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800207failed_free:
208 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209failed:
210 return NULL;
211}
212
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400213static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900214__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400215{
216 struct ip_tunnel_prl_entry *p = (struct ip_tunnel_prl_entry *)NULL;
217
218 for (p = t->prl; p; p = p->next)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900219 if (p->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400220 break;
221 return p;
222
223}
224
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700225static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
226 struct ip_tunnel_prl __user *a)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900227{
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700228 struct ip_tunnel_prl kprl, *kp;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900229 struct ip_tunnel_prl_entry *prl;
230 unsigned int cmax, c = 0, ca, len;
231 int ret = 0;
232
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700233 if (copy_from_user(&kprl, a, sizeof(kprl)))
234 return -EFAULT;
235 cmax = kprl.datalen / sizeof(kprl);
236 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900237 cmax = 1;
238
239 /* For simple GET or for root users,
240 * we try harder to allocate.
241 */
242 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
243 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
244 NULL;
245
246 read_lock(&ipip6_lock);
247
248 ca = t->prl_count < cmax ? t->prl_count : cmax;
249
250 if (!kp) {
251 /* We don't try hard to allocate much memory for
252 * non-root users.
253 * For root users, retry allocating enough memory for
254 * the answer.
255 */
256 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
257 if (!kp) {
258 ret = -ENOMEM;
259 goto out;
260 }
261 }
262
263 c = 0;
264 for (prl = t->prl; prl; prl = prl->next) {
265 if (c > cmax)
266 break;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700267 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900268 continue;
269 kp[c].addr = prl->addr;
270 kp[c].flags = prl->flags;
271 c++;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700272 if (kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900273 break;
274 }
275out:
276 read_unlock(&ipip6_lock);
277
278 len = sizeof(*kp) * c;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700279 ret = 0;
280 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
281 ret = -EFAULT;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900282
283 kfree(kp);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900284
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700285 return ret;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900286}
287
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400288static int
289ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
290{
291 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900292 int err = 0;
293
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900294 if (a->addr == htonl(INADDR_ANY))
295 return -EINVAL;
296
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900297 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400298
299 for (p = t->prl; p; p = p->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900300 if (p->addr == a->addr) {
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900301 if (chg)
302 goto update;
303 err = -EEXIST;
304 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400305 }
306 }
307
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900308 if (chg) {
309 err = -ENXIO;
310 goto out;
311 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400312
313 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900314 if (!p) {
315 err = -ENOBUFS;
316 goto out;
317 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400318
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400319 p->next = t->prl;
320 t->prl = p;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900321 t->prl_count++;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900322update:
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900323 p->addr = a->addr;
324 p->flags = a->flags;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900325out:
326 write_unlock(&ipip6_lock);
327 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400328}
329
330static int
331ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
332{
333 struct ip_tunnel_prl_entry *x, **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900334 int err = 0;
335
336 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400337
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900338 if (a && a->addr != htonl(INADDR_ANY)) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400339 for (p = &t->prl; *p; p = &(*p)->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900340 if ((*p)->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400341 x = *p;
342 *p = x->next;
343 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900344 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900345 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400346 }
347 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900348 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400349 } else {
350 while (t->prl) {
351 x = t->prl;
352 t->prl = t->prl->next;
353 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900354 t->prl_count--;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400355 }
356 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900357out:
358 write_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400359 return 0;
360}
361
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400362static int
363isatap_chksrc(struct sk_buff *skb, struct iphdr *iph, struct ip_tunnel *t)
364{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900365 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400366 int ok = 1;
367
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900368 read_lock(&ipip6_lock);
369 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400370 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900371 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400372 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
373 else
374 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
375 } else {
376 struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
377 if (ipv6_addr_is_isatap(addr6) &&
378 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400379 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400380 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
381 else
382 ok = 0;
383 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900384 read_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400385 return ok;
386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388static void ipip6_tunnel_uninit(struct net_device *dev)
389{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700390 struct net *net = dev_net(dev);
391 struct sit_net *sitn = net_generic(net, sit_net_id);
392
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700393 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 write_lock_bh(&ipip6_lock);
Pavel Emelyanov29182172008-04-16 01:16:38 -0700395 sitn->tunnels_wc[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 write_unlock_bh(&ipip6_lock);
397 dev_put(dev);
398 } else {
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700399 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
YOSHIFUJI Hideaki02e10b92008-04-10 15:41:27 +0900400 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 dev_put(dev);
402 }
403}
404
405
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800406static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Rami Rosen071f92d2008-05-21 17:47:54 -0700409/* All the routers (except for Linux) return only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 8 bytes of packet payload. It means, that precise relaying of
411 ICMP in the real Internet is absolutely infeasible.
412 */
413 struct iphdr *iph = (struct iphdr*)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300414 const int type = icmp_hdr(skb)->type;
415 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800417 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 switch (type) {
420 default:
421 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 case ICMP_DEST_UNREACH:
425 switch (code) {
426 case ICMP_SR_FAILED:
427 case ICMP_PORT_UNREACH:
428 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 case ICMP_FRAG_NEEDED:
431 /* Soft state for pmtu is maintained by IP core. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 default:
434 /* All others are translated to HOST_UNREACH.
435 rfc2003 contains "deep thoughts" about NET_UNREACH,
436 I believe they are just ether pollution. --ANK
437 */
438 break;
439 }
440 break;
441 case ICMP_TIME_EXCEEDED:
442 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 break;
445 }
446
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800447 err = -ENOENT;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700450 t = ipip6_tunnel_lookup(dev_net(skb->dev), iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (t == NULL || t->parms.iph.daddr == 0)
452 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800453
454 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
456 goto out;
457
458 if (jiffies - t->err_time < IPTUNNEL_ERR_TIMEO)
459 t->err_count++;
460 else
461 t->err_count = 1;
462 t->err_time = jiffies;
463out:
464 read_unlock(&ipip6_lock);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800465 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
469{
470 if (INET_ECN_is_ce(iph->tos))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700471 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
474static int ipip6_rcv(struct sk_buff *skb)
475{
476 struct iphdr *iph;
477 struct ip_tunnel *tunnel;
478
479 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
480 goto out;
481
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700482 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700485 if ((tunnel = ipip6_tunnel_lookup(dev_net(skb->dev),
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700486 iph->saddr, iph->daddr)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700488 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700489 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800490 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 skb->protocol = htons(ETH_P_IPV6);
492 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100493
494 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400495 !isatap_chksrc(skb, iph, tunnel)) {
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100496 tunnel->stat.rx_errors++;
497 read_unlock(&ipip6_lock);
498 kfree_skb(skb);
499 return 0;
500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 tunnel->stat.rx_packets++;
502 tunnel->stat.rx_bytes += skb->len;
503 skb->dev = tunnel->dev;
504 dst_release(skb->dst);
505 skb->dst = NULL;
506 nf_reset(skb);
507 ipip6_ecn_decapsulate(iph, skb);
508 netif_rx(skb);
509 read_unlock(&ipip6_lock);
510 return 0;
511 }
512
Herbert Xu45af08b2006-04-05 22:31:19 -0700513 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 read_unlock(&ipip6_lock);
515out:
David S. Miller36ca34c2008-05-08 23:40:26 -0700516 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return 0;
518}
519
520/* Returns the embedded IPv4 address if the IPv6 address
521 comes from 6to4 (RFC 3056) addr space */
522
Al Viroe69a4ad2006-11-14 20:56:00 -0800523static inline __be32 try_6to4(struct in6_addr *v6dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Al Viroe69a4ad2006-11-14 20:56:00 -0800525 __be32 dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900528 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 memcpy(&dst, &v6dst->s6_addr16[1], 4);
530 }
531 return dst;
532}
533
534/*
535 * This function assumes it is being called from dev_queue_xmit()
536 * and that skb is filled properly by that function.
537 */
538
539static int ipip6_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
540{
Patrick McHardy2941a482006-01-08 22:05:26 -0800541 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct net_device_stats *stats = &tunnel->stat;
543 struct iphdr *tiph = &tunnel->parms.iph;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700544 struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 u8 tos = tunnel->parms.iph.tos;
546 struct rtable *rt; /* Route to the other host */
547 struct net_device *tdev; /* Device to other host */
548 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700549 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800550 __be32 dst = tiph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 int mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900552 struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 int addr_type;
554
555 if (tunnel->recursion++) {
556 tunnel->stat.collisions++;
557 goto tx_error;
558 }
559
560 if (skb->protocol != htons(ETH_P_IPV6))
561 goto tx_error;
562
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100563 /* ISATAP (RFC4214) - must come before 6to4 */
564 if (dev->priv_flags & IFF_ISATAP) {
565 struct neighbour *neigh = NULL;
566
567 if (skb->dst)
568 neigh = skb->dst->neighbour;
569
570 if (neigh == NULL) {
571 if (net_ratelimit())
572 printk(KERN_DEBUG "sit: nexthop == NULL\n");
573 goto tx_error;
574 }
575
576 addr6 = (struct in6_addr*)&neigh->primary_key;
577 addr_type = ipv6_addr_type(addr6);
578
579 if ((addr_type & IPV6_ADDR_UNICAST) &&
580 ipv6_addr_is_isatap(addr6))
581 dst = addr6->s6_addr32[3];
582 else
583 goto tx_error;
584 }
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!dst)
587 dst = try_6to4(&iph6->daddr);
588
589 if (!dst) {
590 struct neighbour *neigh = NULL;
591
592 if (skb->dst)
593 neigh = skb->dst->neighbour;
594
595 if (neigh == NULL) {
596 if (net_ratelimit())
597 printk(KERN_DEBUG "sit: nexthop == NULL\n");
598 goto tx_error;
599 }
600
601 addr6 = (struct in6_addr*)&neigh->primary_key;
602 addr_type = ipv6_addr_type(addr6);
603
604 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700605 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 addr_type = ipv6_addr_type(addr6);
607 }
608
609 if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
610 goto tx_error_icmp;
611
612 dst = addr6->s6_addr32[3];
613 }
614
615 {
616 struct flowi fl = { .nl_u = { .ip4_u =
617 { .daddr = dst,
618 .saddr = tiph->saddr,
619 .tos = RT_TOS(tos) } },
620 .oif = tunnel->parms.link,
621 .proto = IPPROTO_IPV6 };
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700622 if (ip_route_output_key(dev_net(dev), &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 tunnel->stat.tx_carrier_errors++;
624 goto tx_error_icmp;
625 }
626 }
627 if (rt->rt_type != RTN_UNICAST) {
628 ip_rt_put(rt);
629 tunnel->stat.tx_carrier_errors++;
630 goto tx_error_icmp;
631 }
632 tdev = rt->u.dst.dev;
633
634 if (tdev == dev) {
635 ip_rt_put(rt);
636 tunnel->stat.collisions++;
637 goto tx_error;
638 }
639
640 if (tiph->frag_off)
641 mtu = dst_mtu(&rt->u.dst) - sizeof(struct iphdr);
642 else
643 mtu = skb->dst ? dst_mtu(skb->dst) : dev->mtu;
644
645 if (mtu < 68) {
646 tunnel->stat.collisions++;
647 ip_rt_put(rt);
648 goto tx_error;
649 }
650 if (mtu < IPV6_MIN_MTU)
651 mtu = IPV6_MIN_MTU;
652 if (tunnel->parms.iph.daddr && skb->dst)
653 skb->dst->ops->update_pmtu(skb->dst, mtu);
654
655 if (skb->len > mtu) {
656 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
657 ip_rt_put(rt);
658 goto tx_error;
659 }
660
661 if (tunnel->err_count > 0) {
662 if (jiffies - tunnel->err_time < IPTUNNEL_ERR_TIMEO) {
663 tunnel->err_count--;
664 dst_link_failure(skb);
665 } else
666 tunnel->err_count = 0;
667 }
668
669 /*
670 * Okay, now see if we can stuff it in the buffer as-is.
671 */
672 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
673
Patrick McHardycfbba492007-07-09 15:33:40 -0700674 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
675 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
677 if (!new_skb) {
678 ip_rt_put(rt);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900679 stats->tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 dev_kfree_skb(skb);
681 tunnel->recursion--;
682 return 0;
683 }
684 if (skb->sk)
685 skb_set_owner_w(new_skb, skb->sk);
686 dev_kfree_skb(skb);
687 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700688 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700691 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700692 skb_push(skb, sizeof(struct iphdr));
693 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800695 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 dst_release(skb->dst);
697 skb->dst = &rt->u.dst;
698
699 /*
700 * Push down and install the IPIP header.
701 */
702
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700703 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 iph->version = 4;
705 iph->ihl = sizeof(struct iphdr)>>2;
706 if (mtu > IPV6_MIN_MTU)
707 iph->frag_off = htons(IP_DF);
708 else
709 iph->frag_off = 0;
710
711 iph->protocol = IPPROTO_IPV6;
712 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
713 iph->daddr = rt->rt_dst;
714 iph->saddr = rt->rt_src;
715
716 if ((iph->ttl = tiph->ttl) == 0)
717 iph->ttl = iph6->hop_limit;
718
719 nf_reset(skb);
720
721 IPTUNNEL_XMIT();
722 tunnel->recursion--;
723 return 0;
724
725tx_error_icmp:
726 dst_link_failure(skb);
727tx_error:
728 stats->tx_errors++;
729 dev_kfree_skb(skb);
730 tunnel->recursion--;
731 return 0;
732}
733
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800734static void ipip6_tunnel_bind_dev(struct net_device *dev)
735{
736 struct net_device *tdev = NULL;
737 struct ip_tunnel *tunnel;
738 struct iphdr *iph;
739
740 tunnel = netdev_priv(dev);
741 iph = &tunnel->parms.iph;
742
743 if (iph->daddr) {
744 struct flowi fl = { .nl_u = { .ip4_u =
745 { .daddr = iph->daddr,
746 .saddr = iph->saddr,
747 .tos = RT_TOS(iph->tos) } },
748 .oif = tunnel->parms.link,
749 .proto = IPPROTO_IPV6 };
750 struct rtable *rt;
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700751 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800752 tdev = rt->u.dst.dev;
753 ip_rt_put(rt);
754 }
755 dev->flags |= IFF_POINTOPOINT;
756 }
757
758 if (!tdev && tunnel->parms.link)
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700759 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800760
761 if (tdev) {
762 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
763 dev->mtu = tdev->mtu - sizeof(struct iphdr);
764 if (dev->mtu < IPV6_MIN_MTU)
765 dev->mtu = IPV6_MIN_MTU;
766 }
767 dev->iflink = tunnel->parms.link;
768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static int
771ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
772{
773 int err = 0;
774 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400775 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700777 struct net *net = dev_net(dev);
778 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 switch (cmd) {
781 case SIOCGETTUNNEL:
782 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700783 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
785 err = -EFAULT;
786 break;
787 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700788 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -0800791 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 memcpy(&p, &t->parms, sizeof(p));
793 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
794 err = -EFAULT;
795 break;
796
797 case SIOCADDTUNNEL:
798 case SIOCCHGTUNNEL:
799 err = -EPERM;
800 if (!capable(CAP_NET_ADMIN))
801 goto done;
802
803 err = -EFAULT;
804 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
805 goto done;
806
807 err = -EINVAL;
808 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
809 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
810 goto done;
811 if (p.iph.ttl)
812 p.iph.frag_off |= htons(IP_DF);
813
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700814 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700816 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (t != NULL) {
818 if (t->dev != dev) {
819 err = -EEXIST;
820 break;
821 }
822 } else {
823 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
824 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
825 err = -EINVAL;
826 break;
827 }
Patrick McHardy2941a482006-01-08 22:05:26 -0800828 t = netdev_priv(dev);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700829 ipip6_tunnel_unlink(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 t->parms.iph.saddr = p.iph.saddr;
831 t->parms.iph.daddr = p.iph.daddr;
832 memcpy(dev->dev_addr, &p.iph.saddr, 4);
833 memcpy(dev->broadcast, &p.iph.daddr, 4);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700834 ipip6_tunnel_link(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 netdev_state_change(dev);
836 }
837 }
838
839 if (t) {
840 err = 0;
841 if (cmd == SIOCCHGTUNNEL) {
842 t->parms.iph.ttl = p.iph.ttl;
843 t->parms.iph.tos = p.iph.tos;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800844 if (t->parms.link != p.link) {
845 t->parms.link = p.link;
846 ipip6_tunnel_bind_dev(dev);
847 netdev_state_change(dev);
848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
851 err = -EFAULT;
852 } else
853 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
854 break;
855
856 case SIOCDELTUNNEL:
857 err = -EPERM;
858 if (!capable(CAP_NET_ADMIN))
859 goto done;
860
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700861 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 err = -EFAULT;
863 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
864 goto done;
865 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700866 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 goto done;
868 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700869 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 goto done;
871 dev = t->dev;
872 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -0800873 unregister_netdevice(dev);
874 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
876
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900877 case SIOCGETPRL:
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700878 err = -EINVAL;
879 if (dev == sitn->fb_tunnel_dev)
880 goto done;
881 err = -ENOENT;
882 if (!(t = netdev_priv(dev)))
883 goto done;
884 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
885 break;
886
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400887 case SIOCADDPRL:
888 case SIOCDELPRL:
889 case SIOCCHGPRL:
890 err = -EPERM;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700891 if (!capable(CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400892 goto done;
893 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700894 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400895 goto done;
896 err = -EFAULT;
897 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
898 goto done;
899 err = -ENOENT;
900 if (!(t = netdev_priv(dev)))
901 goto done;
902
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900903 switch (cmd) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900904 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400905 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900906 break;
907 case SIOCADDPRL:
908 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400909 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900910 break;
911 }
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700912 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400913 break;
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 default:
916 err = -EINVAL;
917 }
918
919done:
920 return err;
921}
922
923static struct net_device_stats *ipip6_tunnel_get_stats(struct net_device *dev)
924{
Patrick McHardy2941a482006-01-08 22:05:26 -0800925 return &(((struct ip_tunnel*)netdev_priv(dev))->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
928static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
929{
930 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
931 return -EINVAL;
932 dev->mtu = new_mtu;
933 return 0;
934}
935
936static void ipip6_tunnel_setup(struct net_device *dev)
937{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 dev->uninit = ipip6_tunnel_uninit;
939 dev->destructor = free_netdev;
940 dev->hard_start_xmit = ipip6_tunnel_xmit;
941 dev->get_stats = ipip6_tunnel_get_stats;
942 dev->do_ioctl = ipip6_tunnel_ioctl;
943 dev->change_mtu = ipip6_tunnel_change_mtu;
944
945 dev->type = ARPHRD_SIT;
946 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800947 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 dev->flags = IFF_NOARP;
949 dev->iflink = 0;
950 dev->addr_len = 4;
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700951 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954static int ipip6_tunnel_init(struct net_device *dev)
955{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 struct ip_tunnel *tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Patrick McHardy2941a482006-01-08 22:05:26 -0800958 tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 tunnel->dev = dev;
961 strcpy(tunnel->parms.name, dev->name);
962
963 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
964 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
965
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800966 ipip6_tunnel_bind_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 return 0;
969}
970
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700971static int ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Patrick McHardy2941a482006-01-08 22:05:26 -0800973 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -0700975 struct net *net = dev_net(dev);
976 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 tunnel->dev = dev;
979 strcpy(tunnel->parms.name, dev->name);
980
981 iph->version = 4;
982 iph->protocol = IPPROTO_IPV6;
983 iph->ihl = 5;
984 iph->ttl = 64;
985
986 dev_hold(dev);
Pavel Emelyanov29182172008-04-16 01:16:38 -0700987 sitn->tunnels_wc[0] = tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 0;
989}
990
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800991static struct xfrm_tunnel sit_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 .handler = ipip6_rcv,
993 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800994 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995};
996
Pavel Emelyanov29182172008-04-16 01:16:38 -0700997static void sit_destroy_tunnels(struct sit_net *sitn)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -0700998{
999 int prio;
1000
1001 for (prio = 1; prio < 4; prio++) {
1002 int h;
1003 for (h = 0; h < HASH_SIZE; h++) {
1004 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001005 while ((t = sitn->tunnels[prio][h]) != NULL)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001006 unregister_netdevice(t->dev);
1007 }
1008 }
1009}
1010
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001011static int sit_init_net(struct net *net)
1012{
1013 int err;
1014 struct sit_net *sitn;
1015
1016 err = -ENOMEM;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001017 sitn = kzalloc(sizeof(struct sit_net), GFP_KERNEL);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001018 if (sitn == NULL)
1019 goto err_alloc;
1020
1021 err = net_assign_generic(net, sit_net_id, sitn);
1022 if (err < 0)
1023 goto err_assign;
1024
Pavel Emelyanov29182172008-04-16 01:16:38 -07001025 sitn->tunnels[0] = sitn->tunnels_wc;
1026 sitn->tunnels[1] = sitn->tunnels_l;
1027 sitn->tunnels[2] = sitn->tunnels_r;
1028 sitn->tunnels[3] = sitn->tunnels_r_l;
1029
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001030 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1031 ipip6_tunnel_setup);
1032 if (!sitn->fb_tunnel_dev) {
1033 err = -ENOMEM;
1034 goto err_alloc_dev;
1035 }
1036
1037 sitn->fb_tunnel_dev->init = ipip6_fb_tunnel_init;
1038 dev_net_set(sitn->fb_tunnel_dev, net);
1039
1040 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1041 goto err_reg_dev;
1042
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001043 return 0;
1044
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001045err_reg_dev:
1046 free_netdev(sitn->fb_tunnel_dev);
1047err_alloc_dev:
1048 /* nothing */
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001049err_assign:
1050 kfree(sitn);
1051err_alloc:
1052 return err;
1053}
1054
1055static void sit_exit_net(struct net *net)
1056{
1057 struct sit_net *sitn;
1058
1059 sitn = net_generic(net, sit_net_id);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001060 rtnl_lock();
Pavel Emelyanov29182172008-04-16 01:16:38 -07001061 sit_destroy_tunnels(sitn);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001062 unregister_netdevice(sitn->fb_tunnel_dev);
1063 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001064 kfree(sitn);
1065}
1066
1067static struct pernet_operations sit_net_ops = {
1068 .init = sit_init_net,
1069 .exit = sit_exit_net,
1070};
1071
Adrian Bunk89c89452006-11-20 16:56:48 -08001072static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001074 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001075
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001076 unregister_pernet_gen_device(sit_net_id, &sit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
Adrian Bunk89c89452006-11-20 16:56:48 -08001079static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 int err;
1082
1083 printk(KERN_INFO "IPv6 over IPv4 tunneling driver\n");
1084
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001085 if (xfrm4_tunnel_register(&sit_handler, AF_INET6) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 printk(KERN_INFO "sit init: Can't add protocol\n");
1087 return -EAGAIN;
1088 }
1089
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001090 err = register_pernet_gen_device(&sit_net_id, &sit_net_ops);
1091 if (err < 0)
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001092 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001096
1097module_init(sit_init);
1098module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001099MODULE_LICENSE("GPL");
Patrick McHardydaccff02006-11-05 15:47:04 -08001100MODULE_ALIAS("sit0");