blob: e62504133c77d6e3a60045045b35249cc976579c [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Changes:
15 * Roger Venning <r.venning@telstra.com>: 6to4 support
16 * Nate Thompson <nate@thebog.net>: 6to4 support
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040017 * Fred Templin <fred.l.templin@boeing.com>: isatap support
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/errno.h>
23#include <linux/types.h>
24#include <linux/socket.h>
25#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/net.h>
27#include <linux/in6.h>
28#include <linux/netdevice.h>
29#include <linux/if_arp.h>
30#include <linux/icmp.h>
31#include <asm/uaccess.h>
32#include <linux/init.h>
33#include <linux/netfilter_ipv4.h>
Kris Katterjohn46f25df2006-01-05 16:35:42 -080034#include <linux/if_ether.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <net/sock.h>
37#include <net/snmp.h>
38
39#include <net/ipv6.h>
40#include <net/protocol.h>
41#include <net/transp_v6.h>
42#include <net/ip6_fib.h>
43#include <net/ip6_route.h>
44#include <net/ndisc.h>
45#include <net/addrconf.h>
46#include <net/ip.h>
47#include <net/udp.h>
48#include <net/icmp.h>
49#include <net/ipip.h>
50#include <net/inet_ecn.h>
51#include <net/xfrm.h>
52#include <net/dsfield.h>
Pavel Emelyanov8190d902008-04-16 01:15:17 -070053#include <net/net_namespace.h>
54#include <net/netns/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
58
59 For comments look at net/ipv4/ip_gre.c --ANK
60 */
61
62#define HASH_SIZE 16
Al Viroe69a4ad2006-11-14 20:56:00 -080063#define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Stephen Hemminger1326c3d2008-11-20 20:33:56 -080065static void ipip6_fb_tunnel_init(struct net_device *dev);
66static void ipip6_tunnel_init(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static void ipip6_tunnel_setup(struct net_device *dev);
68
Pavel Emelyanov8190d902008-04-16 01:15:17 -070069static int sit_net_id;
70struct sit_net {
Pavel Emelyanov29182172008-04-16 01:16:38 -070071 struct ip_tunnel *tunnels_r_l[HASH_SIZE];
72 struct ip_tunnel *tunnels_r[HASH_SIZE];
73 struct ip_tunnel *tunnels_l[HASH_SIZE];
74 struct ip_tunnel *tunnels_wc[1];
75 struct ip_tunnel **tunnels[4];
76
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -070077 struct net_device *fb_tunnel_dev;
Pavel Emelyanov8190d902008-04-16 01:15:17 -070078};
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static DEFINE_RWLOCK(ipip6_lock);
81
Pavel Emelyanovca8def12008-04-16 01:15:39 -070082static struct ip_tunnel * ipip6_tunnel_lookup(struct net *net,
83 __be32 remote, __be32 local)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 unsigned h0 = HASH(remote);
86 unsigned h1 = HASH(local);
87 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -070088 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Pavel Emelyanov29182172008-04-16 01:16:38 -070090 for (t = sitn->tunnels_r_l[h0^h1]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (local == t->parms.iph.saddr &&
92 remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
93 return t;
94 }
Pavel Emelyanov29182172008-04-16 01:16:38 -070095 for (t = sitn->tunnels_r[h0]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
97 return t;
98 }
Pavel Emelyanov29182172008-04-16 01:16:38 -070099 for (t = sitn->tunnels_l[h1]; t; t = t->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (local == t->parms.iph.saddr && (t->dev->flags&IFF_UP))
101 return t;
102 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700103 if ((t = sitn->tunnels_wc[0]) != NULL && (t->dev->flags&IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return t;
105 return NULL;
106}
107
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700108static struct ip_tunnel **__ipip6_bucket(struct sit_net *sitn,
109 struct ip_tunnel_parm *parms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900111 __be32 remote = parms->iph.daddr;
112 __be32 local = parms->iph.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned h = 0;
114 int prio = 0;
115
116 if (remote) {
117 prio |= 2;
118 h ^= HASH(remote);
119 }
120 if (local) {
121 prio |= 1;
122 h ^= HASH(local);
123 }
Pavel Emelyanov29182172008-04-16 01:16:38 -0700124 return &sitn->tunnels[prio][h];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700127static inline struct ip_tunnel **ipip6_bucket(struct sit_net *sitn,
128 struct ip_tunnel *t)
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900129{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700130 return __ipip6_bucket(sitn, &t->parms);
YOSHIFUJI Hideaki420fe232007-04-24 20:44:47 +0900131}
132
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700133static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 struct ip_tunnel **tp;
136
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700137 for (tp = ipip6_bucket(sitn, t); *tp; tp = &(*tp)->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (t == *tp) {
139 write_lock_bh(&ipip6_lock);
140 *tp = t->next;
141 write_unlock_bh(&ipip6_lock);
142 break;
143 }
144 }
145}
146
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700147static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700149 struct ip_tunnel **tp = ipip6_bucket(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 t->next = *tp;
152 write_lock_bh(&ipip6_lock);
153 *tp = t;
154 write_unlock_bh(&ipip6_lock);
155}
156
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700157static struct ip_tunnel * ipip6_tunnel_locate(struct net *net,
158 struct ip_tunnel_parm *parms, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Al Viroe69a4ad2006-11-14 20:56:00 -0800160 __be32 remote = parms->iph.daddr;
161 __be32 local = parms->iph.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct ip_tunnel *t, **tp, *nt;
163 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 char name[IFNAMSIZ];
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700165 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700167 for (tp = __ipip6_bucket(sitn, parms); (t = *tp) != NULL; tp = &t->next) {
Sascha Hlusiak8db99e52009-05-19 12:56:48 +0000168 if (local == t->parms.iph.saddr &&
169 remote == t->parms.iph.daddr) {
170 if (create)
171 return NULL;
172 else
173 return t;
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176 if (!create)
177 goto failed;
178
179 if (parms->name[0])
180 strlcpy(name, parms->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800181 else
182 sprintf(name, "sit%%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
185 if (dev == NULL)
186 return NULL;
187
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700188 dev_net_set(dev, net);
189
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800190 if (strchr(name, '%')) {
191 if (dev_alloc_name(dev, name) < 0)
192 goto failed_free;
193 }
194
Patrick McHardy2941a482006-01-08 22:05:26 -0800195 nt = netdev_priv(dev);
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 nt->parms = *parms;
Bjørn Mork1b1d8f72009-03-18 18:56:54 -0700198 ipip6_tunnel_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100200 if (parms->i_flags & SIT_ISATAP)
201 dev->priv_flags |= IFF_ISATAP;
202
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800203 if (register_netdevice(dev) < 0)
204 goto failed_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 dev_hold(dev);
207
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700208 ipip6_tunnel_link(sitn, nt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return nt;
210
Pavel Emelyanovb37d4282008-02-26 23:51:04 -0800211failed_free:
212 free_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213failed:
214 return NULL;
215}
216
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400217static struct ip_tunnel_prl_entry *
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900218__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400219{
220 struct ip_tunnel_prl_entry *p = (struct ip_tunnel_prl_entry *)NULL;
221
222 for (p = t->prl; p; p = p->next)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900223 if (p->addr == addr)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400224 break;
225 return p;
226
227}
228
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700229static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
230 struct ip_tunnel_prl __user *a)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900231{
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700232 struct ip_tunnel_prl kprl, *kp;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900233 struct ip_tunnel_prl_entry *prl;
234 unsigned int cmax, c = 0, ca, len;
235 int ret = 0;
236
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700237 if (copy_from_user(&kprl, a, sizeof(kprl)))
238 return -EFAULT;
239 cmax = kprl.datalen / sizeof(kprl);
240 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900241 cmax = 1;
242
243 /* For simple GET or for root users,
244 * we try harder to allocate.
245 */
246 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
247 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
248 NULL;
249
250 read_lock(&ipip6_lock);
251
252 ca = t->prl_count < cmax ? t->prl_count : cmax;
253
254 if (!kp) {
255 /* We don't try hard to allocate much memory for
256 * non-root users.
257 * For root users, retry allocating enough memory for
258 * the answer.
259 */
260 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
261 if (!kp) {
262 ret = -ENOMEM;
263 goto out;
264 }
265 }
266
267 c = 0;
268 for (prl = t->prl; prl; prl = prl->next) {
269 if (c > cmax)
270 break;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700271 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900272 continue;
273 kp[c].addr = prl->addr;
274 kp[c].flags = prl->flags;
275 c++;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700276 if (kprl.addr != htonl(INADDR_ANY))
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900277 break;
278 }
279out:
280 read_unlock(&ipip6_lock);
281
282 len = sizeof(*kp) * c;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700283 ret = 0;
284 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
285 ret = -EFAULT;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900286
287 kfree(kp);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900288
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700289 return ret;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900290}
291
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400292static int
293ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
294{
295 struct ip_tunnel_prl_entry *p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900296 int err = 0;
297
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900298 if (a->addr == htonl(INADDR_ANY))
299 return -EINVAL;
300
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900301 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400302
303 for (p = t->prl; p; p = p->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900304 if (p->addr == a->addr) {
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900305 if (chg)
306 goto update;
307 err = -EEXIST;
308 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400309 }
310 }
311
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900312 if (chg) {
313 err = -ENXIO;
314 goto out;
315 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400316
317 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900318 if (!p) {
319 err = -ENOBUFS;
320 goto out;
321 }
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400322
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400323 p->next = t->prl;
324 t->prl = p;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900325 t->prl_count++;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900326update:
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900327 p->addr = a->addr;
328 p->flags = a->flags;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900329out:
330 write_unlock(&ipip6_lock);
331 return err;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400332}
333
334static int
335ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
336{
337 struct ip_tunnel_prl_entry *x, **p;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900338 int err = 0;
339
340 write_lock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400341
YOSHIFUJI Hideaki0009ae12008-03-22 17:50:59 +0900342 if (a && a->addr != htonl(INADDR_ANY)) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400343 for (p = &t->prl; *p; p = &(*p)->next) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900344 if ((*p)->addr == a->addr) {
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400345 x = *p;
346 *p = x->next;
347 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900348 t->prl_count--;
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900349 goto out;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400350 }
351 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900352 err = -ENXIO;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400353 } else {
354 while (t->prl) {
355 x = t->prl;
356 t->prl = t->prl->next;
357 kfree(x);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900358 t->prl_count--;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400359 }
360 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900361out:
362 write_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400363 return 0;
364}
365
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400366static int
367isatap_chksrc(struct sk_buff *skb, struct iphdr *iph, struct ip_tunnel *t)
368{
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900369 struct ip_tunnel_prl_entry *p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400370 int ok = 1;
371
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900372 read_lock(&ipip6_lock);
373 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400374 if (p) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900375 if (p->flags & PRL_DEFAULT)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400376 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
377 else
378 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
379 } else {
380 struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
381 if (ipv6_addr_is_isatap(addr6) &&
382 (addr6->s6_addr32[3] == iph->saddr) &&
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -0400383 ipv6_chk_prefix(addr6, t->dev))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400384 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
385 else
386 ok = 0;
387 }
YOSHIFUJI Hideaki3fcfa122008-03-22 17:42:57 +0900388 read_unlock(&ipip6_lock);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400389 return ok;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static void ipip6_tunnel_uninit(struct net_device *dev)
393{
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700394 struct net *net = dev_net(dev);
395 struct sit_net *sitn = net_generic(net, sit_net_id);
396
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700397 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 write_lock_bh(&ipip6_lock);
Pavel Emelyanov29182172008-04-16 01:16:38 -0700399 sitn->tunnels_wc[0] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 write_unlock_bh(&ipip6_lock);
401 dev_put(dev);
402 } else {
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700403 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
YOSHIFUJI Hideaki02e10b92008-04-10 15:41:27 +0900404 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 dev_put(dev);
406 }
407}
408
409
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800410static int ipip6_err(struct sk_buff *skb, u32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Rami Rosen071f92d2008-05-21 17:47:54 -0700413/* All the routers (except for Linux) return only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 8 bytes of packet payload. It means, that precise relaying of
415 ICMP in the real Internet is absolutely infeasible.
416 */
417 struct iphdr *iph = (struct iphdr*)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300418 const int type = icmp_hdr(skb)->type;
419 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800421 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 switch (type) {
424 default:
425 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 case ICMP_DEST_UNREACH:
429 switch (code) {
430 case ICMP_SR_FAILED:
431 case ICMP_PORT_UNREACH:
432 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 case ICMP_FRAG_NEEDED:
435 /* Soft state for pmtu is maintained by IP core. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 default:
438 /* All others are translated to HOST_UNREACH.
439 rfc2003 contains "deep thoughts" about NET_UNREACH,
440 I believe they are just ether pollution. --ANK
441 */
442 break;
443 }
444 break;
445 case ICMP_TIME_EXCEEDED:
446 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 break;
449 }
450
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800451 err = -ENOENT;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700454 t = ipip6_tunnel_lookup(dev_net(skb->dev), iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (t == NULL || t->parms.iph.daddr == 0)
456 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800457
458 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
460 goto out;
461
Wei Yongjunbb800872009-02-24 23:37:19 -0800462 if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 t->err_count++;
464 else
465 t->err_count = 1;
466 t->err_time = jiffies;
467out:
468 read_unlock(&ipip6_lock);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800469 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
473{
474 if (INET_ECN_is_ce(iph->tos))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700475 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478static int ipip6_rcv(struct sk_buff *skb)
479{
480 struct iphdr *iph;
481 struct ip_tunnel *tunnel;
482
483 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
484 goto out;
485
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700486 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700489 if ((tunnel = ipip6_tunnel_lookup(dev_net(skb->dev),
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700490 iph->saddr, iph->daddr)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700492 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700493 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800494 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 skb->protocol = htons(ETH_P_IPV6);
496 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100497
498 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400499 !isatap_chksrc(skb, iph, tunnel)) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700500 tunnel->dev->stats.rx_errors++;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100501 read_unlock(&ipip6_lock);
502 kfree_skb(skb);
503 return 0;
504 }
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700505 tunnel->dev->stats.rx_packets++;
506 tunnel->dev->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 skb->dev = tunnel->dev;
508 dst_release(skb->dst);
509 skb->dst = NULL;
510 nf_reset(skb);
511 ipip6_ecn_decapsulate(iph, skb);
512 netif_rx(skb);
513 read_unlock(&ipip6_lock);
514 return 0;
515 }
516
Herbert Xu45af08b2006-04-05 22:31:19 -0700517 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 read_unlock(&ipip6_lock);
519out:
David S. Miller36ca34c2008-05-08 23:40:26 -0700520 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
522}
523
524/* Returns the embedded IPv4 address if the IPv6 address
525 comes from 6to4 (RFC 3056) addr space */
526
Al Viroe69a4ad2006-11-14 20:56:00 -0800527static inline __be32 try_6to4(struct in6_addr *v6dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Al Viroe69a4ad2006-11-14 20:56:00 -0800529 __be32 dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900532 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 memcpy(&dst, &v6dst->s6_addr16[1], 4);
534 }
535 return dst;
536}
537
538/*
539 * This function assumes it is being called from dev_queue_xmit()
540 * and that skb is filled properly by that function.
541 */
542
543static int ipip6_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
544{
Patrick McHardy2941a482006-01-08 22:05:26 -0800545 struct ip_tunnel *tunnel = netdev_priv(dev);
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700546 struct net_device_stats *stats = &tunnel->dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct iphdr *tiph = &tunnel->parms.iph;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700548 struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 u8 tos = tunnel->parms.iph.tos;
550 struct rtable *rt; /* Route to the other host */
551 struct net_device *tdev; /* Device to other host */
552 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700553 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800554 __be32 dst = tiph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 int mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900556 struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int addr_type;
558
559 if (tunnel->recursion++) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700560 stats->collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto tx_error;
562 }
563
564 if (skb->protocol != htons(ETH_P_IPV6))
565 goto tx_error;
566
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100567 /* ISATAP (RFC4214) - must come before 6to4 */
568 if (dev->priv_flags & IFF_ISATAP) {
569 struct neighbour *neigh = NULL;
570
571 if (skb->dst)
572 neigh = skb->dst->neighbour;
573
574 if (neigh == NULL) {
575 if (net_ratelimit())
576 printk(KERN_DEBUG "sit: nexthop == NULL\n");
577 goto tx_error;
578 }
579
580 addr6 = (struct in6_addr*)&neigh->primary_key;
581 addr_type = ipv6_addr_type(addr6);
582
583 if ((addr_type & IPV6_ADDR_UNICAST) &&
584 ipv6_addr_is_isatap(addr6))
585 dst = addr6->s6_addr32[3];
586 else
587 goto tx_error;
588 }
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (!dst)
591 dst = try_6to4(&iph6->daddr);
592
593 if (!dst) {
594 struct neighbour *neigh = NULL;
595
596 if (skb->dst)
597 neigh = skb->dst->neighbour;
598
599 if (neigh == NULL) {
600 if (net_ratelimit())
601 printk(KERN_DEBUG "sit: nexthop == NULL\n");
602 goto tx_error;
603 }
604
605 addr6 = (struct in6_addr*)&neigh->primary_key;
606 addr_type = ipv6_addr_type(addr6);
607
608 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700609 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 addr_type = ipv6_addr_type(addr6);
611 }
612
613 if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
614 goto tx_error_icmp;
615
616 dst = addr6->s6_addr32[3];
617 }
618
619 {
620 struct flowi fl = { .nl_u = { .ip4_u =
621 { .daddr = dst,
622 .saddr = tiph->saddr,
623 .tos = RT_TOS(tos) } },
624 .oif = tunnel->parms.link,
625 .proto = IPPROTO_IPV6 };
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700626 if (ip_route_output_key(dev_net(dev), &rt, &fl)) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700627 stats->tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 goto tx_error_icmp;
629 }
630 }
631 if (rt->rt_type != RTN_UNICAST) {
632 ip_rt_put(rt);
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700633 stats->tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 goto tx_error_icmp;
635 }
636 tdev = rt->u.dst.dev;
637
638 if (tdev == dev) {
639 ip_rt_put(rt);
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700640 stats->collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto tx_error;
642 }
643
644 if (tiph->frag_off)
645 mtu = dst_mtu(&rt->u.dst) - sizeof(struct iphdr);
646 else
647 mtu = skb->dst ? dst_mtu(skb->dst) : dev->mtu;
648
649 if (mtu < 68) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700650 stats->collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 ip_rt_put(rt);
652 goto tx_error;
653 }
654 if (mtu < IPV6_MIN_MTU)
655 mtu = IPV6_MIN_MTU;
656 if (tunnel->parms.iph.daddr && skb->dst)
657 skb->dst->ops->update_pmtu(skb->dst, mtu);
658
659 if (skb->len > mtu) {
660 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
661 ip_rt_put(rt);
662 goto tx_error;
663 }
664
665 if (tunnel->err_count > 0) {
Wei Yongjunbb800872009-02-24 23:37:19 -0800666 if (time_before(jiffies,
667 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 tunnel->err_count--;
669 dst_link_failure(skb);
670 } else
671 tunnel->err_count = 0;
672 }
673
674 /*
675 * Okay, now see if we can stuff it in the buffer as-is.
676 */
677 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
678
Patrick McHardycfbba492007-07-09 15:33:40 -0700679 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
680 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
682 if (!new_skb) {
683 ip_rt_put(rt);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900684 stats->tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 dev_kfree_skb(skb);
686 tunnel->recursion--;
687 return 0;
688 }
689 if (skb->sk)
690 skb_set_owner_w(new_skb, skb->sk);
691 dev_kfree_skb(skb);
692 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700693 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700696 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700697 skb_push(skb, sizeof(struct iphdr));
698 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800700 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 dst_release(skb->dst);
702 skb->dst = &rt->u.dst;
703
704 /*
705 * Push down and install the IPIP header.
706 */
707
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700708 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 iph->version = 4;
710 iph->ihl = sizeof(struct iphdr)>>2;
711 if (mtu > IPV6_MIN_MTU)
712 iph->frag_off = htons(IP_DF);
713 else
714 iph->frag_off = 0;
715
716 iph->protocol = IPPROTO_IPV6;
717 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
718 iph->daddr = rt->rt_dst;
719 iph->saddr = rt->rt_src;
720
721 if ((iph->ttl = tiph->ttl) == 0)
722 iph->ttl = iph6->hop_limit;
723
724 nf_reset(skb);
725
726 IPTUNNEL_XMIT();
727 tunnel->recursion--;
728 return 0;
729
730tx_error_icmp:
731 dst_link_failure(skb);
732tx_error:
733 stats->tx_errors++;
734 dev_kfree_skb(skb);
735 tunnel->recursion--;
736 return 0;
737}
738
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800739static void ipip6_tunnel_bind_dev(struct net_device *dev)
740{
741 struct net_device *tdev = NULL;
742 struct ip_tunnel *tunnel;
743 struct iphdr *iph;
744
745 tunnel = netdev_priv(dev);
746 iph = &tunnel->parms.iph;
747
748 if (iph->daddr) {
749 struct flowi fl = { .nl_u = { .ip4_u =
750 { .daddr = iph->daddr,
751 .saddr = iph->saddr,
752 .tos = RT_TOS(iph->tos) } },
753 .oif = tunnel->parms.link,
754 .proto = IPPROTO_IPV6 };
755 struct rtable *rt;
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700756 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800757 tdev = rt->u.dst.dev;
758 ip_rt_put(rt);
759 }
760 dev->flags |= IFF_POINTOPOINT;
761 }
762
763 if (!tdev && tunnel->parms.link)
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700764 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800765
766 if (tdev) {
767 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
768 dev->mtu = tdev->mtu - sizeof(struct iphdr);
769 if (dev->mtu < IPV6_MIN_MTU)
770 dev->mtu = IPV6_MIN_MTU;
771 }
772 dev->iflink = tunnel->parms.link;
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static int
776ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
777{
778 int err = 0;
779 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400780 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700782 struct net *net = dev_net(dev);
783 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 switch (cmd) {
786 case SIOCGETTUNNEL:
787 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700788 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
790 err = -EFAULT;
791 break;
792 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700793 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -0800796 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 memcpy(&p, &t->parms, sizeof(p));
798 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
799 err = -EFAULT;
800 break;
801
802 case SIOCADDTUNNEL:
803 case SIOCCHGTUNNEL:
804 err = -EPERM;
805 if (!capable(CAP_NET_ADMIN))
806 goto done;
807
808 err = -EFAULT;
809 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
810 goto done;
811
812 err = -EINVAL;
813 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
814 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
815 goto done;
816 if (p.iph.ttl)
817 p.iph.frag_off |= htons(IP_DF);
818
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700819 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700821 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (t != NULL) {
823 if (t->dev != dev) {
824 err = -EEXIST;
825 break;
826 }
827 } else {
828 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
829 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
830 err = -EINVAL;
831 break;
832 }
Patrick McHardy2941a482006-01-08 22:05:26 -0800833 t = netdev_priv(dev);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700834 ipip6_tunnel_unlink(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 t->parms.iph.saddr = p.iph.saddr;
836 t->parms.iph.daddr = p.iph.daddr;
837 memcpy(dev->dev_addr, &p.iph.saddr, 4);
838 memcpy(dev->broadcast, &p.iph.daddr, 4);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700839 ipip6_tunnel_link(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 netdev_state_change(dev);
841 }
842 }
843
844 if (t) {
845 err = 0;
846 if (cmd == SIOCCHGTUNNEL) {
847 t->parms.iph.ttl = p.iph.ttl;
848 t->parms.iph.tos = p.iph.tos;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800849 if (t->parms.link != p.link) {
850 t->parms.link = p.link;
851 ipip6_tunnel_bind_dev(dev);
852 netdev_state_change(dev);
853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
856 err = -EFAULT;
857 } else
858 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
859 break;
860
861 case SIOCDELTUNNEL:
862 err = -EPERM;
863 if (!capable(CAP_NET_ADMIN))
864 goto done;
865
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700866 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 err = -EFAULT;
868 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
869 goto done;
870 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700871 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto done;
873 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700874 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 goto done;
876 dev = t->dev;
877 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -0800878 unregister_netdevice(dev);
879 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 break;
881
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900882 case SIOCGETPRL:
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700883 err = -EINVAL;
884 if (dev == sitn->fb_tunnel_dev)
885 goto done;
886 err = -ENOENT;
887 if (!(t = netdev_priv(dev)))
888 goto done;
889 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
890 break;
891
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400892 case SIOCADDPRL:
893 case SIOCDELPRL:
894 case SIOCCHGPRL:
895 err = -EPERM;
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700896 if (!capable(CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400897 goto done;
898 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700899 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400900 goto done;
901 err = -EFAULT;
902 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
903 goto done;
904 err = -ENOENT;
905 if (!(t = netdev_priv(dev)))
906 goto done;
907
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900908 switch (cmd) {
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900909 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400910 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900911 break;
912 case SIOCADDPRL:
913 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400914 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900915 break;
916 }
YOSHIFUJI Hideaki2b4743b2008-06-16 16:48:20 -0700917 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400918 break;
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 default:
921 err = -EINVAL;
922 }
923
924done:
925 return err;
926}
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928static 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
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800936static const struct net_device_ops ipip6_netdev_ops = {
937 .ndo_uninit = ipip6_tunnel_uninit,
938 .ndo_start_xmit = ipip6_tunnel_xmit,
939 .ndo_do_ioctl = ipip6_tunnel_ioctl,
940 .ndo_change_mtu = ipip6_tunnel_change_mtu,
941};
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943static void ipip6_tunnel_setup(struct net_device *dev)
944{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800945 dev->netdev_ops = &ipip6_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 dev->type = ARPHRD_SIT;
949 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800950 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 dev->flags = IFF_NOARP;
952 dev->iflink = 0;
953 dev->addr_len = 4;
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700954 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800957static void ipip6_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800959 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 tunnel->dev = dev;
962 strcpy(tunnel->parms.name, dev->name);
963
964 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
965 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
966
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800967 ipip6_tunnel_bind_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
Stephen Hemminger1326c3d2008-11-20 20:33:56 -0800970static void ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Patrick McHardy2941a482006-01-08 22:05:26 -0800972 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -0700974 struct net *net = dev_net(dev);
975 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 tunnel->dev = dev;
978 strcpy(tunnel->parms.name, dev->name);
979
980 iph->version = 4;
981 iph->protocol = IPPROTO_IPV6;
982 iph->ihl = 5;
983 iph->ttl = 64;
984
985 dev_hold(dev);
Pavel Emelyanov29182172008-04-16 01:16:38 -0700986 sitn->tunnels_wc[0] = tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800989static struct xfrm_tunnel sit_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 .handler = ipip6_rcv,
991 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800992 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993};
994
Pavel Emelyanov29182172008-04-16 01:16:38 -0700995static void sit_destroy_tunnels(struct sit_net *sitn)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -0700996{
997 int prio;
998
999 for (prio = 1; prio < 4; prio++) {
1000 int h;
1001 for (h = 0; h < HASH_SIZE; h++) {
1002 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001003 while ((t = sitn->tunnels[prio][h]) != NULL)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001004 unregister_netdevice(t->dev);
1005 }
1006 }
1007}
1008
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001009static int sit_init_net(struct net *net)
1010{
1011 int err;
1012 struct sit_net *sitn;
1013
1014 err = -ENOMEM;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001015 sitn = kzalloc(sizeof(struct sit_net), GFP_KERNEL);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001016 if (sitn == NULL)
1017 goto err_alloc;
1018
1019 err = net_assign_generic(net, sit_net_id, sitn);
1020 if (err < 0)
1021 goto err_assign;
1022
Pavel Emelyanov29182172008-04-16 01:16:38 -07001023 sitn->tunnels[0] = sitn->tunnels_wc;
1024 sitn->tunnels[1] = sitn->tunnels_l;
1025 sitn->tunnels[2] = sitn->tunnels_r;
1026 sitn->tunnels[3] = sitn->tunnels_r_l;
1027
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001028 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1029 ipip6_tunnel_setup);
1030 if (!sitn->fb_tunnel_dev) {
1031 err = -ENOMEM;
1032 goto err_alloc_dev;
1033 }
Alexey Dobriyanbe77e592008-11-23 17:26:26 -08001034 dev_net_set(sitn->fb_tunnel_dev, net);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001035
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001036 ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001037
1038 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1039 goto err_reg_dev;
1040
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001041 return 0;
1042
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001043err_reg_dev:
Stephen Hemminger1326c3d2008-11-20 20:33:56 -08001044 dev_put(sitn->fb_tunnel_dev);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001045 free_netdev(sitn->fb_tunnel_dev);
1046err_alloc_dev:
1047 /* nothing */
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001048err_assign:
1049 kfree(sitn);
1050err_alloc:
1051 return err;
1052}
1053
1054static void sit_exit_net(struct net *net)
1055{
1056 struct sit_net *sitn;
1057
1058 sitn = net_generic(net, sit_net_id);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001059 rtnl_lock();
Pavel Emelyanov29182172008-04-16 01:16:38 -07001060 sit_destroy_tunnels(sitn);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001061 unregister_netdevice(sitn->fb_tunnel_dev);
1062 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001063 kfree(sitn);
1064}
1065
1066static struct pernet_operations sit_net_ops = {
1067 .init = sit_init_net,
1068 .exit = sit_exit_net,
1069};
1070
Adrian Bunk89c89452006-11-20 16:56:48 -08001071static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001073 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001074
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001075 unregister_pernet_gen_device(sit_net_id, &sit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076}
1077
Adrian Bunk89c89452006-11-20 16:56:48 -08001078static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 int err;
1081
1082 printk(KERN_INFO "IPv6 over IPv4 tunneling driver\n");
1083
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001084 if (xfrm4_tunnel_register(&sit_handler, AF_INET6) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 printk(KERN_INFO "sit init: Can't add protocol\n");
1086 return -EAGAIN;
1087 }
1088
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001089 err = register_pernet_gen_device(&sit_net_id, &sit_net_ops);
1090 if (err < 0)
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001091 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001095
1096module_init(sit_init);
1097module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001098MODULE_LICENSE("GPL");
Patrick McHardydaccff02006-11-05 15:47:04 -08001099MODULE_ALIAS("sit0");