2 * IPv6 over IPv4 tunnel device - Simple Internet Transition (SIT)
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
7 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
9 * $Id: sit.c,v 1.53 2001/09/25 05:09:53 davem Exp $
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 * Roger Venning <r.venning@telstra.com>: 6to4 support
18 * Nate Thompson <nate@thebog.net>: 6to4 support
19 * Fred Templin <fred.l.templin@boeing.com>: isatap support
22 #include <linux/module.h>
23 #include <linux/capability.h>
24 #include <linux/errno.h>
25 #include <linux/types.h>
26 #include <linux/socket.h>
27 #include <linux/sockios.h>
28 #include <linux/net.h>
29 #include <linux/in6.h>
30 #include <linux/netdevice.h>
31 #include <linux/if_arp.h>
32 #include <linux/icmp.h>
33 #include <asm/uaccess.h>
34 #include <linux/init.h>
35 #include <linux/netfilter_ipv4.h>
36 #include <linux/if_ether.h>
42 #include <net/protocol.h>
43 #include <net/transp_v6.h>
44 #include <net/ip6_fib.h>
45 #include <net/ip6_route.h>
46 #include <net/ndisc.h>
47 #include <net/addrconf.h>
52 #include <net/inet_ecn.h>
54 #include <net/dsfield.h>
55 #include <net/net_namespace.h>
56 #include <net/netns/generic.h>
59 This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
61 For comments look at net/ipv4/ip_gre.c --ANK
65 #define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
67 static int ipip6_fb_tunnel_init(struct net_device
*dev
);
68 static int ipip6_tunnel_init(struct net_device
*dev
);
69 static void ipip6_tunnel_setup(struct net_device
*dev
);
71 static int sit_net_id
;
73 struct ip_tunnel
*tunnels_r_l
[HASH_SIZE
];
74 struct ip_tunnel
*tunnels_r
[HASH_SIZE
];
75 struct ip_tunnel
*tunnels_l
[HASH_SIZE
];
76 struct ip_tunnel
*tunnels_wc
[1];
77 struct ip_tunnel
**tunnels
[4];
79 struct net_device
*fb_tunnel_dev
;
82 static DEFINE_RWLOCK(ipip6_lock
);
84 static struct ip_tunnel
* ipip6_tunnel_lookup(struct net
*net
,
85 __be32 remote
, __be32 local
)
87 unsigned h0
= HASH(remote
);
88 unsigned h1
= HASH(local
);
90 struct sit_net
*sitn
= net_generic(net
, sit_net_id
);
92 for (t
= sitn
->tunnels_r_l
[h0
^h1
]; t
; t
= t
->next
) {
93 if (local
== t
->parms
.iph
.saddr
&&
94 remote
== t
->parms
.iph
.daddr
&& (t
->dev
->flags
&IFF_UP
))
97 for (t
= sitn
->tunnels_r
[h0
]; t
; t
= t
->next
) {
98 if (remote
== t
->parms
.iph
.daddr
&& (t
->dev
->flags
&IFF_UP
))
101 for (t
= sitn
->tunnels_l
[h1
]; t
; t
= t
->next
) {
102 if (local
== t
->parms
.iph
.saddr
&& (t
->dev
->flags
&IFF_UP
))
105 if ((t
= sitn
->tunnels_wc
[0]) != NULL
&& (t
->dev
->flags
&IFF_UP
))
110 static struct ip_tunnel
**__ipip6_bucket(struct sit_net
*sitn
,
111 struct ip_tunnel_parm
*parms
)
113 __be32 remote
= parms
->iph
.daddr
;
114 __be32 local
= parms
->iph
.saddr
;
126 return &sitn
->tunnels
[prio
][h
];
129 static inline struct ip_tunnel
**ipip6_bucket(struct sit_net
*sitn
,
132 return __ipip6_bucket(sitn
, &t
->parms
);
135 static void ipip6_tunnel_unlink(struct sit_net
*sitn
, struct ip_tunnel
*t
)
137 struct ip_tunnel
**tp
;
139 for (tp
= ipip6_bucket(sitn
, t
); *tp
; tp
= &(*tp
)->next
) {
141 write_lock_bh(&ipip6_lock
);
143 write_unlock_bh(&ipip6_lock
);
149 static void ipip6_tunnel_link(struct sit_net
*sitn
, struct ip_tunnel
*t
)
151 struct ip_tunnel
**tp
= ipip6_bucket(sitn
, t
);
154 write_lock_bh(&ipip6_lock
);
156 write_unlock_bh(&ipip6_lock
);
159 static struct ip_tunnel
* ipip6_tunnel_locate(struct net
*net
,
160 struct ip_tunnel_parm
*parms
, int create
)
162 __be32 remote
= parms
->iph
.daddr
;
163 __be32 local
= parms
->iph
.saddr
;
164 struct ip_tunnel
*t
, **tp
, *nt
;
165 struct net_device
*dev
;
167 struct sit_net
*sitn
= net_generic(net
, sit_net_id
);
169 for (tp
= __ipip6_bucket(sitn
, parms
); (t
= *tp
) != NULL
; tp
= &t
->next
) {
170 if (local
== t
->parms
.iph
.saddr
&& remote
== t
->parms
.iph
.daddr
)
177 strlcpy(name
, parms
->name
, IFNAMSIZ
);
179 sprintf(name
, "sit%%d");
181 dev
= alloc_netdev(sizeof(*t
), name
, ipip6_tunnel_setup
);
185 dev_net_set(dev
, net
);
187 if (strchr(name
, '%')) {
188 if (dev_alloc_name(dev
, name
) < 0)
192 nt
= netdev_priv(dev
);
193 dev
->init
= ipip6_tunnel_init
;
196 if (parms
->i_flags
& SIT_ISATAP
)
197 dev
->priv_flags
|= IFF_ISATAP
;
199 if (register_netdevice(dev
) < 0)
204 ipip6_tunnel_link(sitn
, nt
);
213 static struct ip_tunnel_prl_entry
*
214 __ipip6_tunnel_locate_prl(struct ip_tunnel
*t
, __be32 addr
)
216 struct ip_tunnel_prl_entry
*p
= (struct ip_tunnel_prl_entry
*)NULL
;
218 for (p
= t
->prl
; p
; p
= p
->next
)
225 static int ipip6_tunnel_get_prl(struct ip_tunnel
*t
,
226 struct ip_tunnel_prl __user
*a
)
228 struct ip_tunnel_prl kprl
, *kp
;
229 struct ip_tunnel_prl_entry
*prl
;
230 unsigned int cmax
, c
= 0, ca
, len
;
233 if (copy_from_user(&kprl
, a
, sizeof(kprl
)))
235 cmax
= kprl
.datalen
/ sizeof(kprl
);
236 if (cmax
> 1 && kprl
.addr
!= htonl(INADDR_ANY
))
239 /* For simple GET or for root users,
240 * we try harder to allocate.
242 kp
= (cmax
<= 1 || capable(CAP_NET_ADMIN
)) ?
243 kcalloc(cmax
, sizeof(*kp
), GFP_KERNEL
) :
246 read_lock(&ipip6_lock
);
248 ca
= t
->prl_count
< cmax
? t
->prl_count
: cmax
;
251 /* We don't try hard to allocate much memory for
253 * For root users, retry allocating enough memory for
256 kp
= kcalloc(ca
, sizeof(*kp
), GFP_ATOMIC
);
264 for (prl
= t
->prl
; prl
; prl
= prl
->next
) {
267 if (kprl
.addr
!= htonl(INADDR_ANY
) && prl
->addr
!= kprl
.addr
)
269 kp
[c
].addr
= prl
->addr
;
270 kp
[c
].flags
= prl
->flags
;
272 if (kprl
.addr
!= htonl(INADDR_ANY
))
276 read_unlock(&ipip6_lock
);
278 len
= sizeof(*kp
) * c
;
280 if ((len
&& copy_to_user(a
+ 1, kp
, len
)) || put_user(len
, &a
->datalen
))
289 ipip6_tunnel_add_prl(struct ip_tunnel
*t
, struct ip_tunnel_prl
*a
, int chg
)
291 struct ip_tunnel_prl_entry
*p
;
294 if (a
->addr
== htonl(INADDR_ANY
))
297 write_lock(&ipip6_lock
);
299 for (p
= t
->prl
; p
; p
= p
->next
) {
300 if (p
->addr
== a
->addr
) {
313 p
= kzalloc(sizeof(struct ip_tunnel_prl_entry
), GFP_KERNEL
);
326 write_unlock(&ipip6_lock
);
331 ipip6_tunnel_del_prl(struct ip_tunnel
*t
, struct ip_tunnel_prl
*a
)
333 struct ip_tunnel_prl_entry
*x
, **p
;
336 write_lock(&ipip6_lock
);
338 if (a
&& a
->addr
!= htonl(INADDR_ANY
)) {
339 for (p
= &t
->prl
; *p
; p
= &(*p
)->next
) {
340 if ((*p
)->addr
== a
->addr
) {
352 t
->prl
= t
->prl
->next
;
358 write_unlock(&ipip6_lock
);
363 isatap_chksrc(struct sk_buff
*skb
, struct iphdr
*iph
, struct ip_tunnel
*t
)
365 struct ip_tunnel_prl_entry
*p
;
368 read_lock(&ipip6_lock
);
369 p
= __ipip6_tunnel_locate_prl(t
, iph
->saddr
);
371 if (p
->flags
& PRL_DEFAULT
)
372 skb
->ndisc_nodetype
= NDISC_NODETYPE_DEFAULT
;
374 skb
->ndisc_nodetype
= NDISC_NODETYPE_NODEFAULT
;
376 struct in6_addr
*addr6
= &ipv6_hdr(skb
)->saddr
;
377 if (ipv6_addr_is_isatap(addr6
) &&
378 (addr6
->s6_addr32
[3] == iph
->saddr
) &&
379 ipv6_chk_prefix(addr6
, t
->dev
))
380 skb
->ndisc_nodetype
= NDISC_NODETYPE_HOST
;
384 read_unlock(&ipip6_lock
);
388 static void ipip6_tunnel_uninit(struct net_device
*dev
)
390 struct net
*net
= dev_net(dev
);
391 struct sit_net
*sitn
= net_generic(net
, sit_net_id
);
393 if (dev
== sitn
->fb_tunnel_dev
) {
394 write_lock_bh(&ipip6_lock
);
395 sitn
->tunnels_wc
[0] = NULL
;
396 write_unlock_bh(&ipip6_lock
);
399 ipip6_tunnel_unlink(sitn
, netdev_priv(dev
));
400 ipip6_tunnel_del_prl(netdev_priv(dev
), NULL
);
406 static int ipip6_err(struct sk_buff
*skb
, u32 info
)
409 /* All the routers (except for Linux) return only
410 8 bytes of packet payload. It means, that precise relaying of
411 ICMP in the real Internet is absolutely infeasible.
413 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
414 const int type
= icmp_hdr(skb
)->type
;
415 const int code
= icmp_hdr(skb
)->code
;
421 case ICMP_PARAMETERPROB
:
424 case ICMP_DEST_UNREACH
:
427 case ICMP_PORT_UNREACH
:
428 /* Impossible event. */
430 case ICMP_FRAG_NEEDED
:
431 /* Soft state for pmtu is maintained by IP core. */
434 /* All others are translated to HOST_UNREACH.
435 rfc2003 contains "deep thoughts" about NET_UNREACH,
436 I believe they are just ether pollution. --ANK
441 case ICMP_TIME_EXCEEDED
:
442 if (code
!= ICMP_EXC_TTL
)
449 read_lock(&ipip6_lock
);
450 t
= ipip6_tunnel_lookup(dev_net(skb
->dev
), iph
->daddr
, iph
->saddr
);
451 if (t
== NULL
|| t
->parms
.iph
.daddr
== 0)
455 if (t
->parms
.iph
.ttl
== 0 && type
== ICMP_TIME_EXCEEDED
)
458 if (jiffies
- t
->err_time
< IPTUNNEL_ERR_TIMEO
)
462 t
->err_time
= jiffies
;
464 read_unlock(&ipip6_lock
);
468 static inline void ipip6_ecn_decapsulate(struct iphdr
*iph
, struct sk_buff
*skb
)
470 if (INET_ECN_is_ce(iph
->tos
))
471 IP6_ECN_set_ce(ipv6_hdr(skb
));
474 static int ipip6_rcv(struct sk_buff
*skb
)
477 struct ip_tunnel
*tunnel
;
479 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
484 read_lock(&ipip6_lock
);
485 if ((tunnel
= ipip6_tunnel_lookup(dev_net(skb
->dev
),
486 iph
->saddr
, iph
->daddr
)) != NULL
) {
488 skb
->mac_header
= skb
->network_header
;
489 skb_reset_network_header(skb
);
490 IPCB(skb
)->flags
= 0;
491 skb
->protocol
= htons(ETH_P_IPV6
);
492 skb
->pkt_type
= PACKET_HOST
;
494 if ((tunnel
->dev
->priv_flags
& IFF_ISATAP
) &&
495 !isatap_chksrc(skb
, iph
, tunnel
)) {
496 tunnel
->stat
.rx_errors
++;
497 read_unlock(&ipip6_lock
);
501 tunnel
->stat
.rx_packets
++;
502 tunnel
->stat
.rx_bytes
+= skb
->len
;
503 skb
->dev
= tunnel
->dev
;
504 dst_release(skb
->dst
);
507 ipip6_ecn_decapsulate(iph
, skb
);
509 read_unlock(&ipip6_lock
);
513 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_PORT_UNREACH
, 0);
514 read_unlock(&ipip6_lock
);
520 /* Returns the embedded IPv4 address if the IPv6 address
521 comes from 6to4 (RFC 3056) addr space */
523 static inline __be32
try_6to4(struct in6_addr
*v6dst
)
527 if (v6dst
->s6_addr16
[0] == htons(0x2002)) {
528 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
529 memcpy(&dst
, &v6dst
->s6_addr16
[1], 4);
535 * This function assumes it is being called from dev_queue_xmit()
536 * and that skb is filled properly by that function.
539 static int ipip6_tunnel_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
541 struct ip_tunnel
*tunnel
= netdev_priv(dev
);
542 struct net_device_stats
*stats
= &tunnel
->stat
;
543 struct iphdr
*tiph
= &tunnel
->parms
.iph
;
544 struct ipv6hdr
*iph6
= ipv6_hdr(skb
);
545 u8 tos
= tunnel
->parms
.iph
.tos
;
546 struct rtable
*rt
; /* Route to the other host */
547 struct net_device
*tdev
; /* Device to other host */
548 struct iphdr
*iph
; /* Our new IP header */
549 unsigned int max_headroom
; /* The extra header space needed */
550 __be32 dst
= tiph
->daddr
;
552 struct in6_addr
*addr6
;
555 if (tunnel
->recursion
++) {
556 tunnel
->stat
.collisions
++;
560 if (skb
->protocol
!= htons(ETH_P_IPV6
))
563 /* ISATAP (RFC4214) - must come before 6to4 */
564 if (dev
->priv_flags
& IFF_ISATAP
) {
565 struct neighbour
*neigh
= NULL
;
568 neigh
= skb
->dst
->neighbour
;
572 printk(KERN_DEBUG
"sit: nexthop == NULL\n");
576 addr6
= (struct in6_addr
*)&neigh
->primary_key
;
577 addr_type
= ipv6_addr_type(addr6
);
579 if ((addr_type
& IPV6_ADDR_UNICAST
) &&
580 ipv6_addr_is_isatap(addr6
))
581 dst
= addr6
->s6_addr32
[3];
587 dst
= try_6to4(&iph6
->daddr
);
590 struct neighbour
*neigh
= NULL
;
593 neigh
= skb
->dst
->neighbour
;
597 printk(KERN_DEBUG
"sit: nexthop == NULL\n");
601 addr6
= (struct in6_addr
*)&neigh
->primary_key
;
602 addr_type
= ipv6_addr_type(addr6
);
604 if (addr_type
== IPV6_ADDR_ANY
) {
605 addr6
= &ipv6_hdr(skb
)->daddr
;
606 addr_type
= ipv6_addr_type(addr6
);
609 if ((addr_type
& IPV6_ADDR_COMPATv4
) == 0)
612 dst
= addr6
->s6_addr32
[3];
616 struct flowi fl
= { .nl_u
= { .ip4_u
=
618 .saddr
= tiph
->saddr
,
619 .tos
= RT_TOS(tos
) } },
620 .oif
= tunnel
->parms
.link
,
621 .proto
= IPPROTO_IPV6
};
622 if (ip_route_output_key(dev_net(dev
), &rt
, &fl
)) {
623 tunnel
->stat
.tx_carrier_errors
++;
627 if (rt
->rt_type
!= RTN_UNICAST
) {
629 tunnel
->stat
.tx_carrier_errors
++;
632 tdev
= rt
->u
.dst
.dev
;
636 tunnel
->stat
.collisions
++;
641 mtu
= dst_mtu(&rt
->u
.dst
) - sizeof(struct iphdr
);
643 mtu
= skb
->dst
? dst_mtu(skb
->dst
) : dev
->mtu
;
646 tunnel
->stat
.collisions
++;
650 if (mtu
< IPV6_MIN_MTU
)
652 if (tunnel
->parms
.iph
.daddr
&& skb
->dst
)
653 skb
->dst
->ops
->update_pmtu(skb
->dst
, mtu
);
655 if (skb
->len
> mtu
) {
656 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
, dev
);
661 if (tunnel
->err_count
> 0) {
662 if (jiffies
- tunnel
->err_time
< IPTUNNEL_ERR_TIMEO
) {
664 dst_link_failure(skb
);
666 tunnel
->err_count
= 0;
670 * Okay, now see if we can stuff it in the buffer as-is.
672 max_headroom
= LL_RESERVED_SPACE(tdev
)+sizeof(struct iphdr
);
674 if (skb_headroom(skb
) < max_headroom
|| skb_shared(skb
) ||
675 (skb_cloned(skb
) && !skb_clone_writable(skb
, 0))) {
676 struct sk_buff
*new_skb
= skb_realloc_headroom(skb
, max_headroom
);
685 skb_set_owner_w(new_skb
, skb
->sk
);
688 iph6
= ipv6_hdr(skb
);
691 skb
->transport_header
= skb
->network_header
;
692 skb_push(skb
, sizeof(struct iphdr
));
693 skb_reset_network_header(skb
);
694 memset(&(IPCB(skb
)->opt
), 0, sizeof(IPCB(skb
)->opt
));
695 IPCB(skb
)->flags
= 0;
696 dst_release(skb
->dst
);
697 skb
->dst
= &rt
->u
.dst
;
700 * Push down and install the IPIP header.
705 iph
->ihl
= sizeof(struct iphdr
)>>2;
706 if (mtu
> IPV6_MIN_MTU
)
707 iph
->frag_off
= htons(IP_DF
);
711 iph
->protocol
= IPPROTO_IPV6
;
712 iph
->tos
= INET_ECN_encapsulate(tos
, ipv6_get_dsfield(iph6
));
713 iph
->daddr
= rt
->rt_dst
;
714 iph
->saddr
= rt
->rt_src
;
716 if ((iph
->ttl
= tiph
->ttl
) == 0)
717 iph
->ttl
= iph6
->hop_limit
;
726 dst_link_failure(skb
);
734 static void ipip6_tunnel_bind_dev(struct net_device
*dev
)
736 struct net_device
*tdev
= NULL
;
737 struct ip_tunnel
*tunnel
;
740 tunnel
= netdev_priv(dev
);
741 iph
= &tunnel
->parms
.iph
;
744 struct flowi fl
= { .nl_u
= { .ip4_u
=
745 { .daddr
= iph
->daddr
,
747 .tos
= RT_TOS(iph
->tos
) } },
748 .oif
= tunnel
->parms
.link
,
749 .proto
= IPPROTO_IPV6
};
751 if (!ip_route_output_key(dev_net(dev
), &rt
, &fl
)) {
752 tdev
= rt
->u
.dst
.dev
;
755 dev
->flags
|= IFF_POINTOPOINT
;
758 if (!tdev
&& tunnel
->parms
.link
)
759 tdev
= __dev_get_by_index(dev_net(dev
), tunnel
->parms
.link
);
762 dev
->hard_header_len
= tdev
->hard_header_len
+ sizeof(struct iphdr
);
763 dev
->mtu
= tdev
->mtu
- sizeof(struct iphdr
);
764 if (dev
->mtu
< IPV6_MIN_MTU
)
765 dev
->mtu
= IPV6_MIN_MTU
;
767 dev
->iflink
= tunnel
->parms
.link
;
771 ipip6_tunnel_ioctl (struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
774 struct ip_tunnel_parm p
;
775 struct ip_tunnel_prl prl
;
777 struct net
*net
= dev_net(dev
);
778 struct sit_net
*sitn
= net_generic(net
, sit_net_id
);
783 if (dev
== sitn
->fb_tunnel_dev
) {
784 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof(p
))) {
788 t
= ipip6_tunnel_locate(net
, &p
, 0);
791 t
= netdev_priv(dev
);
792 memcpy(&p
, &t
->parms
, sizeof(p
));
793 if (copy_to_user(ifr
->ifr_ifru
.ifru_data
, &p
, sizeof(p
)))
800 if (!capable(CAP_NET_ADMIN
))
804 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof(p
)))
808 if (p
.iph
.version
!= 4 || p
.iph
.protocol
!= IPPROTO_IPV6
||
809 p
.iph
.ihl
!= 5 || (p
.iph
.frag_off
&htons(~IP_DF
)))
812 p
.iph
.frag_off
|= htons(IP_DF
);
814 t
= ipip6_tunnel_locate(net
, &p
, cmd
== SIOCADDTUNNEL
);
816 if (dev
!= sitn
->fb_tunnel_dev
&& cmd
== SIOCCHGTUNNEL
) {
823 if (((dev
->flags
&IFF_POINTOPOINT
) && !p
.iph
.daddr
) ||
824 (!(dev
->flags
&IFF_POINTOPOINT
) && p
.iph
.daddr
)) {
828 t
= netdev_priv(dev
);
829 ipip6_tunnel_unlink(sitn
, t
);
830 t
->parms
.iph
.saddr
= p
.iph
.saddr
;
831 t
->parms
.iph
.daddr
= p
.iph
.daddr
;
832 memcpy(dev
->dev_addr
, &p
.iph
.saddr
, 4);
833 memcpy(dev
->broadcast
, &p
.iph
.daddr
, 4);
834 ipip6_tunnel_link(sitn
, t
);
835 netdev_state_change(dev
);
841 if (cmd
== SIOCCHGTUNNEL
) {
842 t
->parms
.iph
.ttl
= p
.iph
.ttl
;
843 t
->parms
.iph
.tos
= p
.iph
.tos
;
844 if (t
->parms
.link
!= p
.link
) {
845 t
->parms
.link
= p
.link
;
846 ipip6_tunnel_bind_dev(dev
);
847 netdev_state_change(dev
);
850 if (copy_to_user(ifr
->ifr_ifru
.ifru_data
, &t
->parms
, sizeof(p
)))
853 err
= (cmd
== SIOCADDTUNNEL
? -ENOBUFS
: -ENOENT
);
858 if (!capable(CAP_NET_ADMIN
))
861 if (dev
== sitn
->fb_tunnel_dev
) {
863 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof(p
)))
866 if ((t
= ipip6_tunnel_locate(net
, &p
, 0)) == NULL
)
869 if (t
== netdev_priv(sitn
->fb_tunnel_dev
))
873 unregister_netdevice(dev
);
879 if (dev
== sitn
->fb_tunnel_dev
)
882 if (!(t
= netdev_priv(dev
)))
884 err
= ipip6_tunnel_get_prl(t
, ifr
->ifr_ifru
.ifru_data
);
891 if (!capable(CAP_NET_ADMIN
))
894 if (dev
== sitn
->fb_tunnel_dev
)
897 if (copy_from_user(&prl
, ifr
->ifr_ifru
.ifru_data
, sizeof(prl
)))
900 if (!(t
= netdev_priv(dev
)))
905 err
= ipip6_tunnel_del_prl(t
, &prl
);
909 err
= ipip6_tunnel_add_prl(t
, &prl
, cmd
== SIOCCHGPRL
);
912 netdev_state_change(dev
);
923 static struct net_device_stats
*ipip6_tunnel_get_stats(struct net_device
*dev
)
925 return &(((struct ip_tunnel
*)netdev_priv(dev
))->stat
);
928 static int ipip6_tunnel_change_mtu(struct net_device
*dev
, int new_mtu
)
930 if (new_mtu
< IPV6_MIN_MTU
|| new_mtu
> 0xFFF8 - sizeof(struct iphdr
))
936 static void ipip6_tunnel_setup(struct net_device
*dev
)
938 dev
->uninit
= ipip6_tunnel_uninit
;
939 dev
->destructor
= free_netdev
;
940 dev
->hard_start_xmit
= ipip6_tunnel_xmit
;
941 dev
->get_stats
= ipip6_tunnel_get_stats
;
942 dev
->do_ioctl
= ipip6_tunnel_ioctl
;
943 dev
->change_mtu
= ipip6_tunnel_change_mtu
;
945 dev
->type
= ARPHRD_SIT
;
946 dev
->hard_header_len
= LL_MAX_HEADER
+ sizeof(struct iphdr
);
947 dev
->mtu
= ETH_DATA_LEN
- sizeof(struct iphdr
);
948 dev
->flags
= IFF_NOARP
;
951 dev
->features
|= NETIF_F_NETNS_LOCAL
;
954 static int ipip6_tunnel_init(struct net_device
*dev
)
956 struct ip_tunnel
*tunnel
;
958 tunnel
= netdev_priv(dev
);
961 strcpy(tunnel
->parms
.name
, dev
->name
);
963 memcpy(dev
->dev_addr
, &tunnel
->parms
.iph
.saddr
, 4);
964 memcpy(dev
->broadcast
, &tunnel
->parms
.iph
.daddr
, 4);
966 ipip6_tunnel_bind_dev(dev
);
971 static int ipip6_fb_tunnel_init(struct net_device
*dev
)
973 struct ip_tunnel
*tunnel
= netdev_priv(dev
);
974 struct iphdr
*iph
= &tunnel
->parms
.iph
;
975 struct net
*net
= dev_net(dev
);
976 struct sit_net
*sitn
= net_generic(net
, sit_net_id
);
979 strcpy(tunnel
->parms
.name
, dev
->name
);
982 iph
->protocol
= IPPROTO_IPV6
;
987 sitn
->tunnels_wc
[0] = tunnel
;
991 static struct xfrm_tunnel sit_handler
= {
992 .handler
= ipip6_rcv
,
993 .err_handler
= ipip6_err
,
997 static void sit_destroy_tunnels(struct sit_net
*sitn
)
1001 for (prio
= 1; prio
< 4; prio
++) {
1003 for (h
= 0; h
< HASH_SIZE
; h
++) {
1004 struct ip_tunnel
*t
;
1005 while ((t
= sitn
->tunnels
[prio
][h
]) != NULL
)
1006 unregister_netdevice(t
->dev
);
1011 static int sit_init_net(struct net
*net
)
1014 struct sit_net
*sitn
;
1017 sitn
= kzalloc(sizeof(struct sit_net
), GFP_KERNEL
);
1021 err
= net_assign_generic(net
, sit_net_id
, sitn
);
1025 sitn
->tunnels
[0] = sitn
->tunnels_wc
;
1026 sitn
->tunnels
[1] = sitn
->tunnels_l
;
1027 sitn
->tunnels
[2] = sitn
->tunnels_r
;
1028 sitn
->tunnels
[3] = sitn
->tunnels_r_l
;
1030 sitn
->fb_tunnel_dev
= alloc_netdev(sizeof(struct ip_tunnel
), "sit0",
1031 ipip6_tunnel_setup
);
1032 if (!sitn
->fb_tunnel_dev
) {
1037 sitn
->fb_tunnel_dev
->init
= ipip6_fb_tunnel_init
;
1038 dev_net_set(sitn
->fb_tunnel_dev
, net
);
1040 if ((err
= register_netdev(sitn
->fb_tunnel_dev
)))
1046 free_netdev(sitn
->fb_tunnel_dev
);
1055 static void sit_exit_net(struct net
*net
)
1057 struct sit_net
*sitn
;
1059 sitn
= net_generic(net
, sit_net_id
);
1061 sit_destroy_tunnels(sitn
);
1062 unregister_netdevice(sitn
->fb_tunnel_dev
);
1067 static struct pernet_operations sit_net_ops
= {
1068 .init
= sit_init_net
,
1069 .exit
= sit_exit_net
,
1072 static void __exit
sit_cleanup(void)
1074 xfrm4_tunnel_deregister(&sit_handler
, AF_INET6
);
1076 unregister_pernet_gen_device(sit_net_id
, &sit_net_ops
);
1079 static int __init
sit_init(void)
1083 printk(KERN_INFO
"IPv6 over IPv4 tunneling driver\n");
1085 if (xfrm4_tunnel_register(&sit_handler
, AF_INET6
) < 0) {
1086 printk(KERN_INFO
"sit init: Can't add protocol\n");
1090 err
= register_pernet_gen_device(&sit_net_id
, &sit_net_ops
);
1092 xfrm4_tunnel_deregister(&sit_handler
, AF_INET6
);
1097 module_init(sit_init
);
1098 module_exit(sit_cleanup
);
1099 MODULE_LICENSE("GPL");
1100 MODULE_ALIAS("sit0");