]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/sit.c
ipip: convert to net_device_ops
[net-next-2.6.git] / net / ipv6 / sit.c
CommitLineData
1da177e4
LT
1/*
2 * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
3 * Linux INET6 implementation
4 *
5 * Authors:
1ab1457c 6 * Pedro Roque <roque@di.fc.ul.pt>
1da177e4
LT
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
1da177e4
LT
9 * 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
fadf6bf0 17 * Fred Templin <fred.l.templin@boeing.com>: isatap support
1da177e4
LT
18 */
19
1da177e4 20#include <linux/module.h>
4fc268d2 21#include <linux/capability.h>
1da177e4
LT
22#include <linux/errno.h>
23#include <linux/types.h>
24#include <linux/socket.h>
25#include <linux/sockios.h>
1da177e4
LT
26#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>
46f25dff 34#include <linux/if_ether.h>
1da177e4
LT
35
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>
8190d900
PE
53#include <net/net_namespace.h>
54#include <net/netns/generic.h>
1da177e4
LT
55
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
e69a4adc 63#define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
1da177e4
LT
64
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
8190d900
PE
69static int sit_net_id;
70struct sit_net {
29182176
PE
71 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
cd3dbc19 77 struct net_device *fb_tunnel_dev;
8190d900
PE
78};
79
1da177e4
LT
80static DEFINE_RWLOCK(ipip6_lock);
81
ca8def14
PE
82static struct ip_tunnel * ipip6_tunnel_lookup(struct net *net,
83 __be32 remote, __be32 local)
1da177e4
LT
84{
85 unsigned h0 = HASH(remote);
86 unsigned h1 = HASH(local);
87 struct ip_tunnel *t;
29182176 88 struct sit_net *sitn = net_generic(net, sit_net_id);
1da177e4 89
29182176 90 for (t = sitn->tunnels_r_l[h0^h1]; t; t = t->next) {
1da177e4
LT
91 if (local == t->parms.iph.saddr &&
92 remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
93 return t;
94 }
29182176 95 for (t = sitn->tunnels_r[h0]; t; t = t->next) {
1da177e4
LT
96 if (remote == t->parms.iph.daddr && (t->dev->flags&IFF_UP))
97 return t;
98 }
29182176 99 for (t = sitn->tunnels_l[h1]; t; t = t->next) {
1da177e4
LT
100 if (local == t->parms.iph.saddr && (t->dev->flags&IFF_UP))
101 return t;
102 }
29182176 103 if ((t = sitn->tunnels_wc[0]) != NULL && (t->dev->flags&IFF_UP))
1da177e4
LT
104 return t;
105 return NULL;
106}
107
ca8def14
PE
108static struct ip_tunnel **__ipip6_bucket(struct sit_net *sitn,
109 struct ip_tunnel_parm *parms)
1da177e4 110{
420fe234
YH
111 __be32 remote = parms->iph.daddr;
112 __be32 local = parms->iph.saddr;
1da177e4
LT
113 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 }
29182176 124 return &sitn->tunnels[prio][h];
1da177e4
LT
125}
126
ca8def14
PE
127static inline struct ip_tunnel **ipip6_bucket(struct sit_net *sitn,
128 struct ip_tunnel *t)
420fe234 129{
ca8def14 130 return __ipip6_bucket(sitn, &t->parms);
420fe234
YH
131}
132
ca8def14 133static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
1da177e4
LT
134{
135 struct ip_tunnel **tp;
136
ca8def14 137 for (tp = ipip6_bucket(sitn, t); *tp; tp = &(*tp)->next) {
1da177e4
LT
138 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
ca8def14 147static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
1da177e4 148{
ca8def14 149 struct ip_tunnel **tp = ipip6_bucket(sitn, t);
1da177e4
LT
150
151 t->next = *tp;
152 write_lock_bh(&ipip6_lock);
153 *tp = t;
154 write_unlock_bh(&ipip6_lock);
155}
156
ca8def14
PE
157static struct ip_tunnel * ipip6_tunnel_locate(struct net *net,
158 struct ip_tunnel_parm *parms, int create)
1da177e4 159{
e69a4adc
AV
160 __be32 remote = parms->iph.daddr;
161 __be32 local = parms->iph.saddr;
1da177e4
LT
162 struct ip_tunnel *t, **tp, *nt;
163 struct net_device *dev;
1da177e4 164 char name[IFNAMSIZ];
ca8def14 165 struct sit_net *sitn = net_generic(net, sit_net_id);
1da177e4 166
ca8def14 167 for (tp = __ipip6_bucket(sitn, parms); (t = *tp) != NULL; tp = &t->next) {
1da177e4
LT
168 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);
34cc7ba6
PE
176 else
177 sprintf(name, "sit%%d");
1da177e4
LT
178
179 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
180 if (dev == NULL)
181 return NULL;
182
7a97146c
PE
183 dev_net_set(dev, net);
184
b37d428b
PE
185 if (strchr(name, '%')) {
186 if (dev_alloc_name(dev, name) < 0)
187 goto failed_free;
188 }
189
2941a486 190 nt = netdev_priv(dev);
1da177e4
LT
191 dev->init = ipip6_tunnel_init;
192 nt->parms = *parms;
193
c7dc89c0
FT
194 if (parms->i_flags & SIT_ISATAP)
195 dev->priv_flags |= IFF_ISATAP;
196
b37d428b
PE
197 if (register_netdevice(dev) < 0)
198 goto failed_free;
1da177e4
LT
199
200 dev_hold(dev);
201
ca8def14 202 ipip6_tunnel_link(sitn, nt);
1da177e4
LT
203 return nt;
204
b37d428b
PE
205failed_free:
206 free_netdev(dev);
1da177e4
LT
207failed:
208 return NULL;
209}
210
fadf6bf0 211static struct ip_tunnel_prl_entry *
3fcfa129 212__ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
fadf6bf0
TF
213{
214 struct ip_tunnel_prl_entry *p = (struct ip_tunnel_prl_entry *)NULL;
215
216 for (p = t->prl; p; p = p->next)
300aaeea 217 if (p->addr == addr)
fadf6bf0
TF
218 break;
219 return p;
220
221}
222
2b4743bd
YH
223static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
224 struct ip_tunnel_prl __user *a)
300aaeea 225{
2b4743bd 226 struct ip_tunnel_prl kprl, *kp;
300aaeea
YH
227 struct ip_tunnel_prl_entry *prl;
228 unsigned int cmax, c = 0, ca, len;
229 int ret = 0;
230
2b4743bd
YH
231 if (copy_from_user(&kprl, a, sizeof(kprl)))
232 return -EFAULT;
233 cmax = kprl.datalen / sizeof(kprl);
234 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
300aaeea
YH
235 cmax = 1;
236
237 /* For simple GET or for root users,
238 * we try harder to allocate.
239 */
240 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
241 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
242 NULL;
243
244 read_lock(&ipip6_lock);
245
246 ca = t->prl_count < cmax ? t->prl_count : cmax;
247
248 if (!kp) {
249 /* We don't try hard to allocate much memory for
250 * non-root users.
251 * For root users, retry allocating enough memory for
252 * the answer.
253 */
254 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
255 if (!kp) {
256 ret = -ENOMEM;
257 goto out;
258 }
259 }
260
261 c = 0;
262 for (prl = t->prl; prl; prl = prl->next) {
263 if (c > cmax)
264 break;
2b4743bd 265 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
300aaeea
YH
266 continue;
267 kp[c].addr = prl->addr;
268 kp[c].flags = prl->flags;
269 c++;
2b4743bd 270 if (kprl.addr != htonl(INADDR_ANY))
300aaeea
YH
271 break;
272 }
273out:
274 read_unlock(&ipip6_lock);
275
276 len = sizeof(*kp) * c;
2b4743bd
YH
277 ret = 0;
278 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
279 ret = -EFAULT;
300aaeea
YH
280
281 kfree(kp);
300aaeea 282
2b4743bd 283 return ret;
300aaeea
YH
284}
285
fadf6bf0
TF
286static int
287ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
288{
289 struct ip_tunnel_prl_entry *p;
3fcfa129
YH
290 int err = 0;
291
0009ae1f
YH
292 if (a->addr == htonl(INADDR_ANY))
293 return -EINVAL;
294
3fcfa129 295 write_lock(&ipip6_lock);
fadf6bf0
TF
296
297 for (p = t->prl; p; p = p->next) {
300aaeea 298 if (p->addr == a->addr) {
3fcfa129
YH
299 if (chg)
300 goto update;
301 err = -EEXIST;
302 goto out;
fadf6bf0
TF
303 }
304 }
305
3fcfa129
YH
306 if (chg) {
307 err = -ENXIO;
308 goto out;
309 }
fadf6bf0
TF
310
311 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
3fcfa129
YH
312 if (!p) {
313 err = -ENOBUFS;
314 goto out;
315 }
fadf6bf0 316
fadf6bf0
TF
317 p->next = t->prl;
318 t->prl = p;
300aaeea 319 t->prl_count++;
3fcfa129 320update:
300aaeea
YH
321 p->addr = a->addr;
322 p->flags = a->flags;
3fcfa129
YH
323out:
324 write_unlock(&ipip6_lock);
325 return err;
fadf6bf0
TF
326}
327
328static int
329ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
330{
331 struct ip_tunnel_prl_entry *x, **p;
3fcfa129
YH
332 int err = 0;
333
334 write_lock(&ipip6_lock);
fadf6bf0 335
0009ae1f 336 if (a && a->addr != htonl(INADDR_ANY)) {
fadf6bf0 337 for (p = &t->prl; *p; p = &(*p)->next) {
300aaeea 338 if ((*p)->addr == a->addr) {
fadf6bf0
TF
339 x = *p;
340 *p = x->next;
341 kfree(x);
300aaeea 342 t->prl_count--;
3fcfa129 343 goto out;
fadf6bf0
TF
344 }
345 }
3fcfa129 346 err = -ENXIO;
fadf6bf0
TF
347 } else {
348 while (t->prl) {
349 x = t->prl;
350 t->prl = t->prl->next;
351 kfree(x);
300aaeea 352 t->prl_count--;
fadf6bf0
TF
353 }
354 }
3fcfa129
YH
355out:
356 write_unlock(&ipip6_lock);
fadf6bf0
TF
357 return 0;
358}
359
fadf6bf0
TF
360static int
361isatap_chksrc(struct sk_buff *skb, struct iphdr *iph, struct ip_tunnel *t)
362{
3fcfa129 363 struct ip_tunnel_prl_entry *p;
fadf6bf0
TF
364 int ok = 1;
365
3fcfa129
YH
366 read_lock(&ipip6_lock);
367 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
fadf6bf0 368 if (p) {
300aaeea 369 if (p->flags & PRL_DEFAULT)
fadf6bf0
TF
370 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
371 else
372 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
373 } else {
374 struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
375 if (ipv6_addr_is_isatap(addr6) &&
376 (addr6->s6_addr32[3] == iph->saddr) &&
52eeeb84 377 ipv6_chk_prefix(addr6, t->dev))
fadf6bf0
TF
378 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
379 else
380 ok = 0;
381 }
3fcfa129 382 read_unlock(&ipip6_lock);
fadf6bf0
TF
383 return ok;
384}
385
1da177e4
LT
386static void ipip6_tunnel_uninit(struct net_device *dev)
387{
ca8def14
PE
388 struct net *net = dev_net(dev);
389 struct sit_net *sitn = net_generic(net, sit_net_id);
390
cd3dbc19 391 if (dev == sitn->fb_tunnel_dev) {
1da177e4 392 write_lock_bh(&ipip6_lock);
29182176 393 sitn->tunnels_wc[0] = NULL;
1da177e4
LT
394 write_unlock_bh(&ipip6_lock);
395 dev_put(dev);
396 } else {
ca8def14 397 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
02e10b90 398 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
1da177e4
LT
399 dev_put(dev);
400 }
401}
402
403
c73cb5a2 404static int ipip6_err(struct sk_buff *skb, u32 info)
1da177e4 405{
1da177e4 406
071f92d0 407/* All the routers (except for Linux) return only
1da177e4
LT
408 8 bytes of packet payload. It means, that precise relaying of
409 ICMP in the real Internet is absolutely infeasible.
410 */
411 struct iphdr *iph = (struct iphdr*)skb->data;
88c7664f
ACM
412 const int type = icmp_hdr(skb)->type;
413 const int code = icmp_hdr(skb)->code;
1da177e4 414 struct ip_tunnel *t;
c73cb5a2 415 int err;
1da177e4
LT
416
417 switch (type) {
418 default:
419 case ICMP_PARAMETERPROB:
c73cb5a2 420 return 0;
1da177e4
LT
421
422 case ICMP_DEST_UNREACH:
423 switch (code) {
424 case ICMP_SR_FAILED:
425 case ICMP_PORT_UNREACH:
426 /* Impossible event. */
c73cb5a2 427 return 0;
1da177e4
LT
428 case ICMP_FRAG_NEEDED:
429 /* Soft state for pmtu is maintained by IP core. */
c73cb5a2 430 return 0;
1da177e4
LT
431 default:
432 /* All others are translated to HOST_UNREACH.
433 rfc2003 contains "deep thoughts" about NET_UNREACH,
434 I believe they are just ether pollution. --ANK
435 */
436 break;
437 }
438 break;
439 case ICMP_TIME_EXCEEDED:
440 if (code != ICMP_EXC_TTL)
c73cb5a2 441 return 0;
1da177e4
LT
442 break;
443 }
444
c73cb5a2
KM
445 err = -ENOENT;
446
1da177e4 447 read_lock(&ipip6_lock);
fcee5ec9 448 t = ipip6_tunnel_lookup(dev_net(skb->dev), iph->daddr, iph->saddr);
1da177e4
LT
449 if (t == NULL || t->parms.iph.daddr == 0)
450 goto out;
c73cb5a2
KM
451
452 err = 0;
1da177e4
LT
453 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
454 goto out;
455
456 if (jiffies - t->err_time < IPTUNNEL_ERR_TIMEO)
457 t->err_count++;
458 else
459 t->err_count = 1;
460 t->err_time = jiffies;
461out:
462 read_unlock(&ipip6_lock);
c73cb5a2 463 return err;
1da177e4
LT
464}
465
466static inline void ipip6_ecn_decapsulate(struct iphdr *iph, struct sk_buff *skb)
467{
468 if (INET_ECN_is_ce(iph->tos))
0660e03f 469 IP6_ECN_set_ce(ipv6_hdr(skb));
1da177e4
LT
470}
471
472static int ipip6_rcv(struct sk_buff *skb)
473{
474 struct iphdr *iph;
475 struct ip_tunnel *tunnel;
476
477 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
478 goto out;
479
eddc9ec5 480 iph = ip_hdr(skb);
1da177e4
LT
481
482 read_lock(&ipip6_lock);
fcee5ec9 483 if ((tunnel = ipip6_tunnel_lookup(dev_net(skb->dev),
ca8def14 484 iph->saddr, iph->daddr)) != NULL) {
1da177e4 485 secpath_reset(skb);
b0e380b1 486 skb->mac_header = skb->network_header;
c1d2bbe1 487 skb_reset_network_header(skb);
8cdfab8a 488 IPCB(skb)->flags = 0;
1da177e4
LT
489 skb->protocol = htons(ETH_P_IPV6);
490 skb->pkt_type = PACKET_HOST;
c7dc89c0
FT
491
492 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
fadf6bf0 493 !isatap_chksrc(skb, iph, tunnel)) {
4eecc107 494 tunnel->dev->stats.rx_errors++;
c7dc89c0
FT
495 read_unlock(&ipip6_lock);
496 kfree_skb(skb);
497 return 0;
498 }
4eecc107
PE
499 tunnel->dev->stats.rx_packets++;
500 tunnel->dev->stats.rx_bytes += skb->len;
1da177e4
LT
501 skb->dev = tunnel->dev;
502 dst_release(skb->dst);
503 skb->dst = NULL;
504 nf_reset(skb);
505 ipip6_ecn_decapsulate(iph, skb);
506 netif_rx(skb);
507 read_unlock(&ipip6_lock);
508 return 0;
509 }
510
45af08be 511 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
1da177e4
LT
512 read_unlock(&ipip6_lock);
513out:
36ca34cc 514 kfree_skb(skb);
1da177e4
LT
515 return 0;
516}
517
518/* Returns the embedded IPv4 address if the IPv6 address
519 comes from 6to4 (RFC 3056) addr space */
520
e69a4adc 521static inline __be32 try_6to4(struct in6_addr *v6dst)
1da177e4 522{
e69a4adc 523 __be32 dst = 0;
1da177e4
LT
524
525 if (v6dst->s6_addr16[0] == htons(0x2002)) {
1ab1457c 526 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
1da177e4
LT
527 memcpy(&dst, &v6dst->s6_addr16[1], 4);
528 }
529 return dst;
530}
531
532/*
533 * This function assumes it is being called from dev_queue_xmit()
534 * and that skb is filled properly by that function.
535 */
536
537static int ipip6_tunnel_xmit(struct sk_buff *skb, struct net_device *dev)
538{
2941a486 539 struct ip_tunnel *tunnel = netdev_priv(dev);
4eecc107 540 struct net_device_stats *stats = &tunnel->dev->stats;
1da177e4 541 struct iphdr *tiph = &tunnel->parms.iph;
0660e03f 542 struct ipv6hdr *iph6 = ipv6_hdr(skb);
1da177e4
LT
543 u8 tos = tunnel->parms.iph.tos;
544 struct rtable *rt; /* Route to the other host */
545 struct net_device *tdev; /* Device to other host */
546 struct iphdr *iph; /* Our new IP header */
c2636b4d 547 unsigned int max_headroom; /* The extra header space needed */
e69a4adc 548 __be32 dst = tiph->daddr;
1da177e4 549 int mtu;
1ab1457c 550 struct in6_addr *addr6;
1da177e4
LT
551 int addr_type;
552
553 if (tunnel->recursion++) {
4eecc107 554 stats->collisions++;
1da177e4
LT
555 goto tx_error;
556 }
557
558 if (skb->protocol != htons(ETH_P_IPV6))
559 goto tx_error;
560
c7dc89c0
FT
561 /* ISATAP (RFC4214) - must come before 6to4 */
562 if (dev->priv_flags & IFF_ISATAP) {
563 struct neighbour *neigh = NULL;
564
565 if (skb->dst)
566 neigh = skb->dst->neighbour;
567
568 if (neigh == NULL) {
569 if (net_ratelimit())
570 printk(KERN_DEBUG "sit: nexthop == NULL\n");
571 goto tx_error;
572 }
573
574 addr6 = (struct in6_addr*)&neigh->primary_key;
575 addr_type = ipv6_addr_type(addr6);
576
577 if ((addr_type & IPV6_ADDR_UNICAST) &&
578 ipv6_addr_is_isatap(addr6))
579 dst = addr6->s6_addr32[3];
580 else
581 goto tx_error;
582 }
583
1da177e4
LT
584 if (!dst)
585 dst = try_6to4(&iph6->daddr);
586
587 if (!dst) {
588 struct neighbour *neigh = NULL;
589
590 if (skb->dst)
591 neigh = skb->dst->neighbour;
592
593 if (neigh == NULL) {
594 if (net_ratelimit())
595 printk(KERN_DEBUG "sit: nexthop == NULL\n");
596 goto tx_error;
597 }
598
599 addr6 = (struct in6_addr*)&neigh->primary_key;
600 addr_type = ipv6_addr_type(addr6);
601
602 if (addr_type == IPV6_ADDR_ANY) {
0660e03f 603 addr6 = &ipv6_hdr(skb)->daddr;
1da177e4
LT
604 addr_type = ipv6_addr_type(addr6);
605 }
606
607 if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
608 goto tx_error_icmp;
609
610 dst = addr6->s6_addr32[3];
611 }
612
613 {
614 struct flowi fl = { .nl_u = { .ip4_u =
615 { .daddr = dst,
616 .saddr = tiph->saddr,
617 .tos = RT_TOS(tos) } },
618 .oif = tunnel->parms.link,
619 .proto = IPPROTO_IPV6 };
907a08c4 620 if (ip_route_output_key(dev_net(dev), &rt, &fl)) {
4eecc107 621 stats->tx_carrier_errors++;
1da177e4
LT
622 goto tx_error_icmp;
623 }
624 }
625 if (rt->rt_type != RTN_UNICAST) {
626 ip_rt_put(rt);
4eecc107 627 stats->tx_carrier_errors++;
1da177e4
LT
628 goto tx_error_icmp;
629 }
630 tdev = rt->u.dst.dev;
631
632 if (tdev == dev) {
633 ip_rt_put(rt);
4eecc107 634 stats->collisions++;
1da177e4
LT
635 goto tx_error;
636 }
637
638 if (tiph->frag_off)
639 mtu = dst_mtu(&rt->u.dst) - sizeof(struct iphdr);
640 else
641 mtu = skb->dst ? dst_mtu(skb->dst) : dev->mtu;
642
643 if (mtu < 68) {
4eecc107 644 stats->collisions++;
1da177e4
LT
645 ip_rt_put(rt);
646 goto tx_error;
647 }
648 if (mtu < IPV6_MIN_MTU)
649 mtu = IPV6_MIN_MTU;
650 if (tunnel->parms.iph.daddr && skb->dst)
651 skb->dst->ops->update_pmtu(skb->dst, mtu);
652
653 if (skb->len > mtu) {
654 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, dev);
655 ip_rt_put(rt);
656 goto tx_error;
657 }
658
659 if (tunnel->err_count > 0) {
660 if (jiffies - tunnel->err_time < IPTUNNEL_ERR_TIMEO) {
661 tunnel->err_count--;
662 dst_link_failure(skb);
663 } else
664 tunnel->err_count = 0;
665 }
666
667 /*
668 * Okay, now see if we can stuff it in the buffer as-is.
669 */
670 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
671
cfbba49d
PM
672 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
673 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
1da177e4
LT
674 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
675 if (!new_skb) {
676 ip_rt_put(rt);
1ab1457c 677 stats->tx_dropped++;
1da177e4
LT
678 dev_kfree_skb(skb);
679 tunnel->recursion--;
680 return 0;
681 }
682 if (skb->sk)
683 skb_set_owner_w(new_skb, skb->sk);
684 dev_kfree_skb(skb);
685 skb = new_skb;
0660e03f 686 iph6 = ipv6_hdr(skb);
1da177e4
LT
687 }
688
b0e380b1 689 skb->transport_header = skb->network_header;
e2d1bca7
ACM
690 skb_push(skb, sizeof(struct iphdr));
691 skb_reset_network_header(skb);
1da177e4 692 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
8cdfab8a 693 IPCB(skb)->flags = 0;
1da177e4
LT
694 dst_release(skb->dst);
695 skb->dst = &rt->u.dst;
696
697 /*
698 * Push down and install the IPIP header.
699 */
700
eddc9ec5 701 iph = ip_hdr(skb);
1da177e4
LT
702 iph->version = 4;
703 iph->ihl = sizeof(struct iphdr)>>2;
704 if (mtu > IPV6_MIN_MTU)
705 iph->frag_off = htons(IP_DF);
706 else
707 iph->frag_off = 0;
708
709 iph->protocol = IPPROTO_IPV6;
710 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
711 iph->daddr = rt->rt_dst;
712 iph->saddr = rt->rt_src;
713
714 if ((iph->ttl = tiph->ttl) == 0)
715 iph->ttl = iph6->hop_limit;
716
717 nf_reset(skb);
718
719 IPTUNNEL_XMIT();
720 tunnel->recursion--;
721 return 0;
722
723tx_error_icmp:
724 dst_link_failure(skb);
725tx_error:
726 stats->tx_errors++;
727 dev_kfree_skb(skb);
728 tunnel->recursion--;
729 return 0;
730}
731
8a4a50f9
MS
732static void ipip6_tunnel_bind_dev(struct net_device *dev)
733{
734 struct net_device *tdev = NULL;
735 struct ip_tunnel *tunnel;
736 struct iphdr *iph;
737
738 tunnel = netdev_priv(dev);
739 iph = &tunnel->parms.iph;
740
741 if (iph->daddr) {
742 struct flowi fl = { .nl_u = { .ip4_u =
743 { .daddr = iph->daddr,
744 .saddr = iph->saddr,
745 .tos = RT_TOS(iph->tos) } },
746 .oif = tunnel->parms.link,
747 .proto = IPPROTO_IPV6 };
748 struct rtable *rt;
907a08c4 749 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
8a4a50f9
MS
750 tdev = rt->u.dst.dev;
751 ip_rt_put(rt);
752 }
753 dev->flags |= IFF_POINTOPOINT;
754 }
755
756 if (!tdev && tunnel->parms.link)
907a08c4 757 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
8a4a50f9
MS
758
759 if (tdev) {
760 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
761 dev->mtu = tdev->mtu - sizeof(struct iphdr);
762 if (dev->mtu < IPV6_MIN_MTU)
763 dev->mtu = IPV6_MIN_MTU;
764 }
765 dev->iflink = tunnel->parms.link;
766}
767
1da177e4
LT
768static int
769ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
770{
771 int err = 0;
772 struct ip_tunnel_parm p;
fadf6bf0 773 struct ip_tunnel_prl prl;
1da177e4 774 struct ip_tunnel *t;
ca8def14
PE
775 struct net *net = dev_net(dev);
776 struct sit_net *sitn = net_generic(net, sit_net_id);
1da177e4
LT
777
778 switch (cmd) {
779 case SIOCGETTUNNEL:
780 t = NULL;
cd3dbc19 781 if (dev == sitn->fb_tunnel_dev) {
1da177e4
LT
782 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
783 err = -EFAULT;
784 break;
785 }
ca8def14 786 t = ipip6_tunnel_locate(net, &p, 0);
1da177e4
LT
787 }
788 if (t == NULL)
2941a486 789 t = netdev_priv(dev);
1da177e4
LT
790 memcpy(&p, &t->parms, sizeof(p));
791 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p, sizeof(p)))
792 err = -EFAULT;
793 break;
794
795 case SIOCADDTUNNEL:
796 case SIOCCHGTUNNEL:
797 err = -EPERM;
798 if (!capable(CAP_NET_ADMIN))
799 goto done;
800
801 err = -EFAULT;
802 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
803 goto done;
804
805 err = -EINVAL;
806 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
807 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
808 goto done;
809 if (p.iph.ttl)
810 p.iph.frag_off |= htons(IP_DF);
811
ca8def14 812 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
1da177e4 813
cd3dbc19 814 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
1da177e4
LT
815 if (t != NULL) {
816 if (t->dev != dev) {
817 err = -EEXIST;
818 break;
819 }
820 } else {
821 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
822 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
823 err = -EINVAL;
824 break;
825 }
2941a486 826 t = netdev_priv(dev);
ca8def14 827 ipip6_tunnel_unlink(sitn, t);
1da177e4
LT
828 t->parms.iph.saddr = p.iph.saddr;
829 t->parms.iph.daddr = p.iph.daddr;
830 memcpy(dev->dev_addr, &p.iph.saddr, 4);
831 memcpy(dev->broadcast, &p.iph.daddr, 4);
ca8def14 832 ipip6_tunnel_link(sitn, t);
1da177e4
LT
833 netdev_state_change(dev);
834 }
835 }
836
837 if (t) {
838 err = 0;
839 if (cmd == SIOCCHGTUNNEL) {
840 t->parms.iph.ttl = p.iph.ttl;
841 t->parms.iph.tos = p.iph.tos;
8a4a50f9
MS
842 if (t->parms.link != p.link) {
843 t->parms.link = p.link;
844 ipip6_tunnel_bind_dev(dev);
845 netdev_state_change(dev);
846 }
1da177e4
LT
847 }
848 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
849 err = -EFAULT;
850 } else
851 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
852 break;
853
854 case SIOCDELTUNNEL:
855 err = -EPERM;
856 if (!capable(CAP_NET_ADMIN))
857 goto done;
858
cd3dbc19 859 if (dev == sitn->fb_tunnel_dev) {
1da177e4
LT
860 err = -EFAULT;
861 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
862 goto done;
863 err = -ENOENT;
ca8def14 864 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
1da177e4
LT
865 goto done;
866 err = -EPERM;
cd3dbc19 867 if (t == netdev_priv(sitn->fb_tunnel_dev))
1da177e4
LT
868 goto done;
869 dev = t->dev;
870 }
22f8cde5
SH
871 unregister_netdevice(dev);
872 err = 0;
1da177e4
LT
873 break;
874
300aaeea 875 case SIOCGETPRL:
2b4743bd
YH
876 err = -EINVAL;
877 if (dev == sitn->fb_tunnel_dev)
878 goto done;
879 err = -ENOENT;
880 if (!(t = netdev_priv(dev)))
881 goto done;
882 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
883 break;
884
fadf6bf0
TF
885 case SIOCADDPRL:
886 case SIOCDELPRL:
887 case SIOCCHGPRL:
888 err = -EPERM;
2b4743bd 889 if (!capable(CAP_NET_ADMIN))
fadf6bf0
TF
890 goto done;
891 err = -EINVAL;
cd3dbc19 892 if (dev == sitn->fb_tunnel_dev)
fadf6bf0
TF
893 goto done;
894 err = -EFAULT;
895 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
896 goto done;
897 err = -ENOENT;
898 if (!(t = netdev_priv(dev)))
899 goto done;
900
300aaeea 901 switch (cmd) {
300aaeea 902 case SIOCDELPRL:
fadf6bf0 903 err = ipip6_tunnel_del_prl(t, &prl);
300aaeea
YH
904 break;
905 case SIOCADDPRL:
906 case SIOCCHGPRL:
fadf6bf0 907 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
300aaeea
YH
908 break;
909 }
2b4743bd 910 netdev_state_change(dev);
fadf6bf0
TF
911 break;
912
1da177e4
LT
913 default:
914 err = -EINVAL;
915 }
916
917done:
918 return err;
919}
920
1da177e4
LT
921static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
922{
923 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
924 return -EINVAL;
925 dev->mtu = new_mtu;
926 return 0;
927}
928
929static void ipip6_tunnel_setup(struct net_device *dev)
930{
1da177e4
LT
931 dev->uninit = ipip6_tunnel_uninit;
932 dev->destructor = free_netdev;
933 dev->hard_start_xmit = ipip6_tunnel_xmit;
1da177e4
LT
934 dev->do_ioctl = ipip6_tunnel_ioctl;
935 dev->change_mtu = ipip6_tunnel_change_mtu;
936
937 dev->type = ARPHRD_SIT;
938 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
46f25dff 939 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
1da177e4
LT
940 dev->flags = IFF_NOARP;
941 dev->iflink = 0;
942 dev->addr_len = 4;
7a97146c 943 dev->features |= NETIF_F_NETNS_LOCAL;
1da177e4
LT
944}
945
946static int ipip6_tunnel_init(struct net_device *dev)
947{
1da177e4 948 struct ip_tunnel *tunnel;
1da177e4 949
2941a486 950 tunnel = netdev_priv(dev);
1da177e4
LT
951
952 tunnel->dev = dev;
953 strcpy(tunnel->parms.name, dev->name);
954
955 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
956 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
957
8a4a50f9 958 ipip6_tunnel_bind_dev(dev);
1da177e4
LT
959
960 return 0;
961}
962
cd3dbc19 963static int ipip6_fb_tunnel_init(struct net_device *dev)
1da177e4 964{
2941a486 965 struct ip_tunnel *tunnel = netdev_priv(dev);
1da177e4 966 struct iphdr *iph = &tunnel->parms.iph;
29182176
PE
967 struct net *net = dev_net(dev);
968 struct sit_net *sitn = net_generic(net, sit_net_id);
1da177e4
LT
969
970 tunnel->dev = dev;
971 strcpy(tunnel->parms.name, dev->name);
972
973 iph->version = 4;
974 iph->protocol = IPPROTO_IPV6;
975 iph->ihl = 5;
976 iph->ttl = 64;
977
978 dev_hold(dev);
29182176 979 sitn->tunnels_wc[0] = tunnel;
1da177e4
LT
980 return 0;
981}
982
c73cb5a2 983static struct xfrm_tunnel sit_handler = {
1da177e4
LT
984 .handler = ipip6_rcv,
985 .err_handler = ipip6_err,
c73cb5a2 986 .priority = 1,
1da177e4
LT
987};
988
29182176 989static void sit_destroy_tunnels(struct sit_net *sitn)
db44575f
AK
990{
991 int prio;
992
993 for (prio = 1; prio < 4; prio++) {
994 int h;
995 for (h = 0; h < HASH_SIZE; h++) {
996 struct ip_tunnel *t;
29182176 997 while ((t = sitn->tunnels[prio][h]) != NULL)
db44575f
AK
998 unregister_netdevice(t->dev);
999 }
1000 }
1001}
1002
8190d900
PE
1003static int sit_init_net(struct net *net)
1004{
1005 int err;
1006 struct sit_net *sitn;
1007
1008 err = -ENOMEM;
29182176 1009 sitn = kzalloc(sizeof(struct sit_net), GFP_KERNEL);
8190d900
PE
1010 if (sitn == NULL)
1011 goto err_alloc;
1012
1013 err = net_assign_generic(net, sit_net_id, sitn);
1014 if (err < 0)
1015 goto err_assign;
1016
29182176
PE
1017 sitn->tunnels[0] = sitn->tunnels_wc;
1018 sitn->tunnels[1] = sitn->tunnels_l;
1019 sitn->tunnels[2] = sitn->tunnels_r;
1020 sitn->tunnels[3] = sitn->tunnels_r_l;
1021
cd3dbc19
PE
1022 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1023 ipip6_tunnel_setup);
1024 if (!sitn->fb_tunnel_dev) {
1025 err = -ENOMEM;
1026 goto err_alloc_dev;
1027 }
1028
1029 sitn->fb_tunnel_dev->init = ipip6_fb_tunnel_init;
1030 dev_net_set(sitn->fb_tunnel_dev, net);
1031
1032 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1033 goto err_reg_dev;
1034
8190d900
PE
1035 return 0;
1036
cd3dbc19
PE
1037err_reg_dev:
1038 free_netdev(sitn->fb_tunnel_dev);
1039err_alloc_dev:
1040 /* nothing */
8190d900
PE
1041err_assign:
1042 kfree(sitn);
1043err_alloc:
1044 return err;
1045}
1046
1047static void sit_exit_net(struct net *net)
1048{
1049 struct sit_net *sitn;
1050
1051 sitn = net_generic(net, sit_net_id);
cd3dbc19 1052 rtnl_lock();
29182176 1053 sit_destroy_tunnels(sitn);
cd3dbc19
PE
1054 unregister_netdevice(sitn->fb_tunnel_dev);
1055 rtnl_unlock();
8190d900
PE
1056 kfree(sitn);
1057}
1058
1059static struct pernet_operations sit_net_ops = {
1060 .init = sit_init_net,
1061 .exit = sit_exit_net,
1062};
1063
89c89458 1064static void __exit sit_cleanup(void)
1da177e4 1065{
c73cb5a2 1066 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
db44575f 1067
8190d900 1068 unregister_pernet_gen_device(sit_net_id, &sit_net_ops);
1da177e4
LT
1069}
1070
89c89458 1071static int __init sit_init(void)
1da177e4
LT
1072{
1073 int err;
1074
1075 printk(KERN_INFO "IPv6 over IPv4 tunneling driver\n");
1076
c73cb5a2 1077 if (xfrm4_tunnel_register(&sit_handler, AF_INET6) < 0) {
1da177e4
LT
1078 printk(KERN_INFO "sit init: Can't add protocol\n");
1079 return -EAGAIN;
1080 }
1081
8190d900
PE
1082 err = register_pernet_gen_device(&sit_net_id, &sit_net_ops);
1083 if (err < 0)
cd3dbc19 1084 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
8190d900 1085
1da177e4 1086 return err;
1da177e4 1087}
989e5b96
JR
1088
1089module_init(sit_init);
1090module_exit(sit_cleanup);
39c85086 1091MODULE_LICENSE("GPL");
daccff02 1092MODULE_ALIAS("sit0");