blob: b0c5080420a86b2d0b01ca5600c9214e235fbfb1 [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
65static int ipip6_fb_tunnel_init(struct net_device *dev);
66static int ipip6_tunnel_init(struct net_device *dev);
67static 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) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (local == t->parms.iph.saddr && remote == t->parms.iph.daddr)
169 return t;
170 }
171 if (!create)
172 goto failed;
173
174 if (parms->name[0])
175 strlcpy(name, parms->name, IFNAMSIZ);
Pavel Emelyanov34cc7ba2008-02-23 20:19:20 -0800176 else
177 sprintf(name, "sit%%d");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
180 if (dev == NULL)
181 return NULL;
182
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700183 dev_net_set(dev, net);
184
Pavel Emelyanovb37d4282008-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 Emelyanovb37d4282008-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 Emelyanovb37d4282008-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{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Rami Rosen071f92d2008-05-21 17:47:54 -0700405/* All the routers (except for Linux) return only
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 8 bytes of packet payload. It means, that precise relaying of
407 ICMP in the real Internet is absolutely infeasible.
408 */
409 struct iphdr *iph = (struct iphdr*)skb->data;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300410 const int type = icmp_hdr(skb)->type;
411 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 struct ip_tunnel *t;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800413 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 switch (type) {
416 default:
417 case ICMP_PARAMETERPROB:
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 case ICMP_DEST_UNREACH:
421 switch (code) {
422 case ICMP_SR_FAILED:
423 case ICMP_PORT_UNREACH:
424 /* Impossible event. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 case ICMP_FRAG_NEEDED:
427 /* Soft state for pmtu is maintained by IP core. */
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 default:
430 /* All others are translated to HOST_UNREACH.
431 rfc2003 contains "deep thoughts" about NET_UNREACH,
432 I believe they are just ether pollution. --ANK
433 */
434 break;
435 }
436 break;
437 case ICMP_TIME_EXCEEDED:
438 if (code != ICMP_EXC_TTL)
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800439 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 break;
441 }
442
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800443 err = -ENOENT;
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700446 t = ipip6_tunnel_lookup(dev_net(skb->dev), iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (t == NULL || t->parms.iph.daddr == 0)
448 goto out;
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800449
450 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
452 goto out;
453
454 if (jiffies - t->err_time < IPTUNNEL_ERR_TIMEO)
455 t->err_count++;
456 else
457 t->err_count = 1;
458 t->err_time = jiffies;
459out:
460 read_unlock(&ipip6_lock);
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800461 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
465{
466 if (INET_ECN_is_ce(iph->tos))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700467 IP6_ECN_set_ce(ipv6_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
470static int ipip6_rcv(struct sk_buff *skb)
471{
472 struct iphdr *iph;
473 struct ip_tunnel *tunnel;
474
475 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
476 goto out;
477
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700478 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 read_lock(&ipip6_lock);
Pavel Emelyanovfcee5ec2008-04-16 01:15:59 -0700481 if ((tunnel = ipip6_tunnel_lookup(dev_net(skb->dev),
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700482 iph->saddr, iph->daddr)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 secpath_reset(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700484 skb->mac_header = skb->network_header;
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700485 skb_reset_network_header(skb);
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800486 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 skb->protocol = htons(ETH_P_IPV6);
488 skb->pkt_type = PACKET_HOST;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100489
490 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400491 !isatap_chksrc(skb, iph, tunnel)) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700492 tunnel->dev->stats.rx_errors++;
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100493 read_unlock(&ipip6_lock);
494 kfree_skb(skb);
495 return 0;
496 }
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700497 tunnel->dev->stats.rx_packets++;
498 tunnel->dev->stats.rx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 skb->dev = tunnel->dev;
500 dst_release(skb->dst);
501 skb->dst = NULL;
502 nf_reset(skb);
503 ipip6_ecn_decapsulate(iph, skb);
504 netif_rx(skb);
505 read_unlock(&ipip6_lock);
506 return 0;
507 }
508
Herbert Xu45af08b2006-04-05 22:31:19 -0700509 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 read_unlock(&ipip6_lock);
511out:
David S. Miller36ca34c2008-05-08 23:40:26 -0700512 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return 0;
514}
515
516/* Returns the embedded IPv4 address if the IPv6 address
517 comes from 6to4 (RFC 3056) addr space */
518
Al Viroe69a4ad2006-11-14 20:56:00 -0800519static inline __be32 try_6to4(struct in6_addr *v6dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Al Viroe69a4ad2006-11-14 20:56:00 -0800521 __be32 dst = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 if (v6dst->s6_addr16[0] == htons(0x2002)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900524 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 memcpy(&dst, &v6dst->s6_addr16[1], 4);
526 }
527 return dst;
528}
529
530/*
531 * This function assumes it is being called from dev_queue_xmit()
532 * and that skb is filled properly by that function.
533 */
534
535static int ipip6_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
536{
Patrick McHardy2941a482006-01-08 22:05:26 -0800537 struct ip_tunnel *tunnel = netdev_priv(dev);
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700538 struct net_device_stats *stats = &tunnel->dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct iphdr *tiph = &tunnel->parms.iph;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700540 struct ipv6hdr *iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 u8 tos = tunnel->parms.iph.tos;
542 struct rtable *rt; /* Route to the other host */
543 struct net_device *tdev; /* Device to other host */
544 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700545 unsigned int max_headroom; /* The extra header space needed */
Al Viroe69a4ad2006-11-14 20:56:00 -0800546 __be32 dst = tiph->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 int mtu;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900548 struct in6_addr *addr6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int addr_type;
550
551 if (tunnel->recursion++) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700552 stats->collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto tx_error;
554 }
555
556 if (skb->protocol != htons(ETH_P_IPV6))
557 goto tx_error;
558
Fred L. Templinc7dc89c2007-11-29 22:11:40 +1100559 /* ISATAP (RFC4214) - must come before 6to4 */
560 if (dev->priv_flags & IFF_ISATAP) {
561 struct neighbour *neigh = NULL;
562
563 if (skb->dst)
564 neigh = skb->dst->neighbour;
565
566 if (neigh == NULL) {
567 if (net_ratelimit())
568 printk(KERN_DEBUG "sit: nexthop == NULL\n");
569 goto tx_error;
570 }
571
572 addr6 = (struct in6_addr*)&neigh->primary_key;
573 addr_type = ipv6_addr_type(addr6);
574
575 if ((addr_type & IPV6_ADDR_UNICAST) &&
576 ipv6_addr_is_isatap(addr6))
577 dst = addr6->s6_addr32[3];
578 else
579 goto tx_error;
580 }
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (!dst)
583 dst = try_6to4(&iph6->daddr);
584
585 if (!dst) {
586 struct neighbour *neigh = NULL;
587
588 if (skb->dst)
589 neigh = skb->dst->neighbour;
590
591 if (neigh == NULL) {
592 if (net_ratelimit())
593 printk(KERN_DEBUG "sit: nexthop == NULL\n");
594 goto tx_error;
595 }
596
597 addr6 = (struct in6_addr*)&neigh->primary_key;
598 addr_type = ipv6_addr_type(addr6);
599
600 if (addr_type == IPV6_ADDR_ANY) {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700601 addr6 = &ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 addr_type = ipv6_addr_type(addr6);
603 }
604
605 if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
606 goto tx_error_icmp;
607
608 dst = addr6->s6_addr32[3];
609 }
610
611 {
612 struct flowi fl = { .nl_u = { .ip4_u =
613 { .daddr = dst,
614 .saddr = tiph->saddr,
615 .tos = RT_TOS(tos) } },
616 .oif = tunnel->parms.link,
617 .proto = IPPROTO_IPV6 };
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700618 if (ip_route_output_key(dev_net(dev), &rt, &fl)) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700619 stats->tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 goto tx_error_icmp;
621 }
622 }
623 if (rt->rt_type != RTN_UNICAST) {
624 ip_rt_put(rt);
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700625 stats->tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto tx_error_icmp;
627 }
628 tdev = rt->u.dst.dev;
629
630 if (tdev == dev) {
631 ip_rt_put(rt);
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700632 stats->collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 goto tx_error;
634 }
635
636 if (tiph->frag_off)
637 mtu = dst_mtu(&rt->u.dst) - sizeof(struct iphdr);
638 else
639 mtu = skb->dst ? dst_mtu(skb->dst) : dev->mtu;
640
641 if (mtu < 68) {
Pavel Emelyanov4eecc102008-05-21 14:15:46 -0700642 stats->collisions++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 ip_rt_put(rt);
644 goto tx_error;
645 }
646 if (mtu < IPV6_MIN_MTU)
647 mtu = IPV6_MIN_MTU;
648 if (tunnel->parms.iph.daddr && skb->dst)
649 skb->dst->ops->update_pmtu(skb->dst, mtu);
650
651 if (skb->len > mtu) {
652 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
653 ip_rt_put(rt);
654 goto tx_error;
655 }
656
657 if (tunnel->err_count > 0) {
658 if (jiffies - tunnel->err_time < IPTUNNEL_ERR_TIMEO) {
659 tunnel->err_count--;
660 dst_link_failure(skb);
661 } else
662 tunnel->err_count = 0;
663 }
664
665 /*
666 * Okay, now see if we can stuff it in the buffer as-is.
667 */
668 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
669
Patrick McHardycfbba492007-07-09 15:33:40 -0700670 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
671 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
673 if (!new_skb) {
674 ip_rt_put(rt);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900675 stats->tx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 dev_kfree_skb(skb);
677 tunnel->recursion--;
678 return 0;
679 }
680 if (skb->sk)
681 skb_set_owner_w(new_skb, skb->sk);
682 dev_kfree_skb(skb);
683 skb = new_skb;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700684 iph6 = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700687 skb->transport_header = skb->network_header;
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700688 skb_push(skb, sizeof(struct iphdr));
689 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
Patrick McHardy8cdfab82006-01-06 23:04:01 -0800691 IPCB(skb)->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 dst_release(skb->dst);
693 skb->dst = &rt->u.dst;
694
695 /*
696 * Push down and install the IPIP header.
697 */
698
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700699 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 iph->version = 4;
701 iph->ihl = sizeof(struct iphdr)>>2;
702 if (mtu > IPV6_MIN_MTU)
703 iph->frag_off = htons(IP_DF);
704 else
705 iph->frag_off = 0;
706
707 iph->protocol = IPPROTO_IPV6;
708 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
709 iph->daddr = rt->rt_dst;
710 iph->saddr = rt->rt_src;
711
712 if ((iph->ttl = tiph->ttl) == 0)
713 iph->ttl = iph6->hop_limit;
714
715 nf_reset(skb);
716
717 IPTUNNEL_XMIT();
718 tunnel->recursion--;
719 return 0;
720
721tx_error_icmp:
722 dst_link_failure(skb);
723tx_error:
724 stats->tx_errors++;
725 dev_kfree_skb(skb);
726 tunnel->recursion--;
727 return 0;
728}
729
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800730static void ipip6_tunnel_bind_dev(struct net_device *dev)
731{
732 struct net_device *tdev = NULL;
733 struct ip_tunnel *tunnel;
734 struct iphdr *iph;
735
736 tunnel = netdev_priv(dev);
737 iph = &tunnel->parms.iph;
738
739 if (iph->daddr) {
740 struct flowi fl = { .nl_u = { .ip4_u =
741 { .daddr = iph->daddr,
742 .saddr = iph->saddr,
743 .tos = RT_TOS(iph->tos) } },
744 .oif = tunnel->parms.link,
745 .proto = IPPROTO_IPV6 };
746 struct rtable *rt;
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700747 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800748 tdev = rt->u.dst.dev;
749 ip_rt_put(rt);
750 }
751 dev->flags |= IFF_POINTOPOINT;
752 }
753
754 if (!tdev && tunnel->parms.link)
Pavel Emelyanov907a08c2008-04-16 01:16:58 -0700755 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800756
757 if (tdev) {
758 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
759 dev->mtu = tdev->mtu - sizeof(struct iphdr);
760 if (dev->mtu < IPV6_MIN_MTU)
761 dev->mtu = IPV6_MIN_MTU;
762 }
763 dev->iflink = tunnel->parms.link;
764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766static int
767ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
768{
769 int err = 0;
770 struct ip_tunnel_parm p;
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400771 struct ip_tunnel_prl prl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct ip_tunnel *t;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700773 struct net *net = dev_net(dev);
774 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 switch (cmd) {
777 case SIOCGETTUNNEL:
778 t = NULL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700779 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
781 err = -EFAULT;
782 break;
783 }
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700784 t = ipip6_tunnel_locate(net, &p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 if (t == NULL)
Patrick McHardy2941a482006-01-08 22:05:26 -0800787 t = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 memcpy(&p, &t->parms, sizeof(p));
789 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
790 err = -EFAULT;
791 break;
792
793 case SIOCADDTUNNEL:
794 case SIOCCHGTUNNEL:
795 err = -EPERM;
796 if (!capable(CAP_NET_ADMIN))
797 goto done;
798
799 err = -EFAULT;
800 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
801 goto done;
802
803 err = -EINVAL;
804 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
805 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
806 goto done;
807 if (p.iph.ttl)
808 p.iph.frag_off |= htons(IP_DF);
809
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700810 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700812 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (t != NULL) {
814 if (t->dev != dev) {
815 err = -EEXIST;
816 break;
817 }
818 } else {
819 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
820 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
821 err = -EINVAL;
822 break;
823 }
Patrick McHardy2941a482006-01-08 22:05:26 -0800824 t = netdev_priv(dev);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700825 ipip6_tunnel_unlink(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 t->parms.iph.saddr = p.iph.saddr;
827 t->parms.iph.daddr = p.iph.daddr;
828 memcpy(dev->dev_addr, &p.iph.saddr, 4);
829 memcpy(dev->broadcast, &p.iph.daddr, 4);
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700830 ipip6_tunnel_link(sitn, t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 netdev_state_change(dev);
832 }
833 }
834
835 if (t) {
836 err = 0;
837 if (cmd == SIOCCHGTUNNEL) {
838 t->parms.iph.ttl = p.iph.ttl;
839 t->parms.iph.tos = p.iph.tos;
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800840 if (t->parms.link != p.link) {
841 t->parms.link = p.link;
842 ipip6_tunnel_bind_dev(dev);
843 netdev_state_change(dev);
844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
847 err = -EFAULT;
848 } else
849 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
850 break;
851
852 case SIOCDELTUNNEL:
853 err = -EPERM;
854 if (!capable(CAP_NET_ADMIN))
855 goto done;
856
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700857 if (dev == sitn->fb_tunnel_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 err = -EFAULT;
859 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
860 goto done;
861 err = -ENOENT;
Pavel Emelyanovca8def12008-04-16 01:15:39 -0700862 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 goto done;
864 err = -EPERM;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700865 if (t == netdev_priv(sitn->fb_tunnel_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 goto done;
867 dev = t->dev;
868 }
Stephen Hemminger22f8cde2007-02-07 00:09:58 -0800869 unregister_netdevice(dev);
870 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 break;
872
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900873 case SIOCGETPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400874 case SIOCADDPRL:
875 case SIOCDELPRL:
876 case SIOCCHGPRL:
877 err = -EPERM;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900878 if (cmd != SIOCGETPRL && !capable(CAP_NET_ADMIN))
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400879 goto done;
880 err = -EINVAL;
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700881 if (dev == sitn->fb_tunnel_dev)
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400882 goto done;
883 err = -EFAULT;
884 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
885 goto done;
886 err = -ENOENT;
887 if (!(t = netdev_priv(dev)))
888 goto done;
889
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900890 switch (cmd) {
891 case SIOCGETPRL:
892 err = ipip6_tunnel_get_prl(t, &prl);
893 if (!err && copy_to_user(ifr->ifr_ifru.ifru_data,
894 &prl, sizeof(prl)))
895 err = -EFAULT;
896 break;
897 case SIOCDELPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400898 err = ipip6_tunnel_del_prl(t, &prl);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900899 break;
900 case SIOCADDPRL:
901 case SIOCCHGPRL:
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400902 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +0900903 break;
904 }
905 if (cmd != SIOCGETPRL)
906 netdev_state_change(dev);
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -0400907 break;
908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 default:
910 err = -EINVAL;
911 }
912
913done:
914 return err;
915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
918{
919 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
920 return -EINVAL;
921 dev->mtu = new_mtu;
922 return 0;
923}
924
925static void ipip6_tunnel_setup(struct net_device *dev)
926{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 dev->uninit = ipip6_tunnel_uninit;
928 dev->destructor = free_netdev;
929 dev->hard_start_xmit = ipip6_tunnel_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 dev->do_ioctl = ipip6_tunnel_ioctl;
931 dev->change_mtu = ipip6_tunnel_change_mtu;
932
933 dev->type = ARPHRD_SIT;
934 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
Kris Katterjohn46f25df2006-01-05 16:35:42 -0800935 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 dev->flags = IFF_NOARP;
937 dev->iflink = 0;
938 dev->addr_len = 4;
Pavel Emelyanov7a971462008-04-16 01:17:18 -0700939 dev->features |= NETIF_F_NETNS_LOCAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942static int ipip6_tunnel_init(struct net_device *dev)
943{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 struct ip_tunnel *tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Patrick McHardy2941a482006-01-08 22:05:26 -0800946 tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 tunnel->dev = dev;
949 strcpy(tunnel->parms.name, dev->name);
950
951 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
952 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
953
Michal Schmidt8a4a50f2007-12-13 09:47:00 -0800954 ipip6_tunnel_bind_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 return 0;
957}
958
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -0700959static int ipip6_fb_tunnel_init(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960{
Patrick McHardy2941a482006-01-08 22:05:26 -0800961 struct ip_tunnel *tunnel = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 struct iphdr *iph = &tunnel->parms.iph;
Pavel Emelyanov29182172008-04-16 01:16:38 -0700963 struct net *net = dev_net(dev);
964 struct sit_net *sitn = net_generic(net, sit_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 tunnel->dev = dev;
967 strcpy(tunnel->parms.name, dev->name);
968
969 iph->version = 4;
970 iph->protocol = IPPROTO_IPV6;
971 iph->ihl = 5;
972 iph->ttl = 64;
973
974 dev_hold(dev);
Pavel Emelyanov29182172008-04-16 01:16:38 -0700975 sitn->tunnels_wc[0] = tunnel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 0;
977}
978
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800979static struct xfrm_tunnel sit_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 .handler = ipip6_rcv,
981 .err_handler = ipip6_err,
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -0800982 .priority = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983};
984
Pavel Emelyanov29182172008-04-16 01:16:38 -0700985static void sit_destroy_tunnels(struct sit_net *sitn)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -0700986{
987 int prio;
988
989 for (prio = 1; prio < 4; prio++) {
990 int h;
991 for (h = 0; h < HASH_SIZE; h++) {
992 struct ip_tunnel *t;
Pavel Emelyanov29182172008-04-16 01:16:38 -0700993 while ((t = sitn->tunnels[prio][h]) != NULL)
Alexey Kuznetsovdb445752005-07-30 17:46:44 -0700994 unregister_netdevice(t->dev);
995 }
996 }
997}
998
Pavel Emelyanov8190d902008-04-16 01:15:17 -0700999static int sit_init_net(struct net *net)
1000{
1001 int err;
1002 struct sit_net *sitn;
1003
1004 err = -ENOMEM;
Pavel Emelyanov29182172008-04-16 01:16:38 -07001005 sitn = kzalloc(sizeof(struct sit_net), GFP_KERNEL);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001006 if (sitn == NULL)
1007 goto err_alloc;
1008
1009 err = net_assign_generic(net, sit_net_id, sitn);
1010 if (err < 0)
1011 goto err_assign;
1012
Pavel Emelyanov29182172008-04-16 01:16:38 -07001013 sitn->tunnels[0] = sitn->tunnels_wc;
1014 sitn->tunnels[1] = sitn->tunnels_l;
1015 sitn->tunnels[2] = sitn->tunnels_r;
1016 sitn->tunnels[3] = sitn->tunnels_r_l;
1017
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001018 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1019 ipip6_tunnel_setup);
1020 if (!sitn->fb_tunnel_dev) {
1021 err = -ENOMEM;
1022 goto err_alloc_dev;
1023 }
1024
1025 sitn->fb_tunnel_dev->init = ipip6_fb_tunnel_init;
1026 dev_net_set(sitn->fb_tunnel_dev, net);
1027
1028 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1029 goto err_reg_dev;
1030
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001031 return 0;
1032
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001033err_reg_dev:
1034 free_netdev(sitn->fb_tunnel_dev);
1035err_alloc_dev:
1036 /* nothing */
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001037err_assign:
1038 kfree(sitn);
1039err_alloc:
1040 return err;
1041}
1042
1043static void sit_exit_net(struct net *net)
1044{
1045 struct sit_net *sitn;
1046
1047 sitn = net_generic(net, sit_net_id);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001048 rtnl_lock();
Pavel Emelyanov29182172008-04-16 01:16:38 -07001049 sit_destroy_tunnels(sitn);
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001050 unregister_netdevice(sitn->fb_tunnel_dev);
1051 rtnl_unlock();
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001052 kfree(sitn);
1053}
1054
1055static struct pernet_operations sit_net_ops = {
1056 .init = sit_init_net,
1057 .exit = sit_exit_net,
1058};
1059
Adrian Bunk89c89452006-11-20 16:56:48 -08001060static void __exit sit_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001062 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Alexey Kuznetsovdb445752005-07-30 17:46:44 -07001063
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001064 unregister_pernet_gen_device(sit_net_id, &sit_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Adrian Bunk89c89452006-11-20 16:56:48 -08001067static int __init sit_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 int err;
1070
1071 printk(KERN_INFO "IPv6 over IPv4 tunneling driver\n");
1072
Kazunori MIYAZAWAc73cb5a2007-02-13 12:55:25 -08001073 if (xfrm4_tunnel_register(&sit_handler, AF_INET6) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 printk(KERN_INFO "sit init: Can't add protocol\n");
1075 return -EAGAIN;
1076 }
1077
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001078 err = register_pernet_gen_device(&sit_net_id, &sit_net_ops);
1079 if (err < 0)
Pavel Emelyanovcd3dbc12008-04-16 01:16:18 -07001080 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
Pavel Emelyanov8190d902008-04-16 01:15:17 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
Joerg Roedel989e5b92006-10-10 14:47:44 -07001084
1085module_init(sit_init);
1086module_exit(sit_cleanup);
Jan Dittmer39c85082006-10-13 15:05:53 -07001087MODULE_LICENSE("GPL");
Patrick McHardydaccff02006-11-05 15:47:04 -08001088MODULE_ALIAS("sit0");