2 * IPv6 over IPv6 tunnel device
3 * Linux INET6 implementation
6 * Ville Nuorvala <vnuorval@tcs.hut.fi>
11 * linux/net/ipv6/sit.c
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
22 #include <linux/config.h>
23 #include <linux/module.h>
24 #include <linux/errno.h>
25 #include <linux/types.h>
26 #include <linux/sockios.h>
30 #include <linux/if_tunnel.h>
31 #include <linux/net.h>
32 #include <linux/in6.h>
33 #include <linux/netdevice.h>
34 #include <linux/if_arp.h>
35 #include <linux/icmpv6.h>
36 #include <linux/init.h>
37 #include <linux/route.h>
38 #include <linux/rtnetlink.h>
39 #include <linux/netfilter_ipv6.h>
41 #include <asm/uaccess.h>
42 #include <asm/atomic.h>
46 #include <net/protocol.h>
47 #include <net/ip6_route.h>
48 #include <net/addrconf.h>
49 #include <net/ip6_tunnel.h>
51 #include <net/dsfield.h>
52 #include <net/inet_ecn.h>
54 MODULE_AUTHOR("Ville Nuorvala");
55 MODULE_DESCRIPTION("IPv6-in-IPv6 tunnel");
56 MODULE_LICENSE("GPL");
58 #define IPV6_TLV_TEL_DST_SIZE 8
61 #define IP6_TNL_TRACE(x...) printk(KERN_DEBUG "%s:" x "\n", __FUNCTION__)
63 #define IP6_TNL_TRACE(x...) do {;} while(0)
66 #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
70 #define HASH(addr) (((addr)->s6_addr32[0] ^ (addr)->s6_addr32[1] ^ \
71 (addr)->s6_addr32[2] ^ (addr)->s6_addr32[3]) & \
74 static int ip6ip6_fb_tnl_dev_init(struct net_device
*dev
);
75 static int ip6ip6_tnl_dev_init(struct net_device
*dev
);
76 static void ip6ip6_tnl_dev_setup(struct net_device
*dev
);
78 /* the IPv6 tunnel fallback device */
79 static struct net_device
*ip6ip6_fb_tnl_dev
;
82 /* lists for storing tunnels in use */
83 static struct ip6_tnl
*tnls_r_l
[HASH_SIZE
];
84 static struct ip6_tnl
*tnls_wc
[1];
85 static struct ip6_tnl
**tnls
[2] = { tnls_wc
, tnls_r_l
};
87 /* lock for the tunnel lists */
88 static DEFINE_RWLOCK(ip6ip6_lock
);
90 static inline struct dst_entry
*ip6_tnl_dst_check(struct ip6_tnl
*t
)
92 struct dst_entry
*dst
= t
->dst_cache
;
94 if (dst
&& dst
->obsolete
&&
95 dst
->ops
->check(dst
, t
->dst_cookie
) == NULL
) {
104 static inline void ip6_tnl_dst_reset(struct ip6_tnl
*t
)
106 dst_release(t
->dst_cache
);
110 static inline void ip6_tnl_dst_store(struct ip6_tnl
*t
, struct dst_entry
*dst
)
112 struct rt6_info
*rt
= (struct rt6_info
*) dst
;
113 t
->dst_cookie
= rt
->rt6i_node
? rt
->rt6i_node
->fn_sernum
: 0;
114 dst_release(t
->dst_cache
);
119 * ip6ip6_tnl_lookup - fetch tunnel matching the end-point addresses
120 * @remote: the address of the tunnel exit-point
121 * @local: the address of the tunnel entry-point
124 * tunnel matching given end-points if found,
125 * else fallback tunnel if its device is up,
129 static struct ip6_tnl
*
130 ip6ip6_tnl_lookup(struct in6_addr
*remote
, struct in6_addr
*local
)
132 unsigned h0
= HASH(remote
);
133 unsigned h1
= HASH(local
);
136 for (t
= tnls_r_l
[h0
^ h1
]; t
; t
= t
->next
) {
137 if (ipv6_addr_equal(local
, &t
->parms
.laddr
) &&
138 ipv6_addr_equal(remote
, &t
->parms
.raddr
) &&
139 (t
->dev
->flags
& IFF_UP
))
142 if ((t
= tnls_wc
[0]) != NULL
&& (t
->dev
->flags
& IFF_UP
))
149 * ip6ip6_bucket - get head of list matching given tunnel parameters
150 * @p: parameters containing tunnel end-points
153 * ip6ip6_bucket() returns the head of the list matching the
154 * &struct in6_addr entries laddr and raddr in @p.
156 * Return: head of IPv6 tunnel list
159 static struct ip6_tnl
**
160 ip6ip6_bucket(struct ip6_tnl_parm
*p
)
162 struct in6_addr
*remote
= &p
->raddr
;
163 struct in6_addr
*local
= &p
->laddr
;
167 if (!ipv6_addr_any(remote
) || !ipv6_addr_any(local
)) {
169 h
= HASH(remote
) ^ HASH(local
);
171 return &tnls
[prio
][h
];
175 * ip6ip6_tnl_link - add tunnel to hash table
176 * @t: tunnel to be added
180 ip6ip6_tnl_link(struct ip6_tnl
*t
)
182 struct ip6_tnl
**tp
= ip6ip6_bucket(&t
->parms
);
185 write_lock_bh(&ip6ip6_lock
);
187 write_unlock_bh(&ip6ip6_lock
);
191 * ip6ip6_tnl_unlink - remove tunnel from hash table
192 * @t: tunnel to be removed
196 ip6ip6_tnl_unlink(struct ip6_tnl
*t
)
200 for (tp
= ip6ip6_bucket(&t
->parms
); *tp
; tp
= &(*tp
)->next
) {
202 write_lock_bh(&ip6ip6_lock
);
204 write_unlock_bh(&ip6ip6_lock
);
211 * ip6_tnl_create() - create a new tunnel
212 * @p: tunnel parameters
213 * @pt: pointer to new tunnel
216 * Create tunnel matching given parameters.
223 ip6_tnl_create(struct ip6_tnl_parm
*p
, struct ip6_tnl
**pt
)
225 struct net_device
*dev
;
231 strlcpy(name
, p
->name
, IFNAMSIZ
);
234 for (i
= 1; i
< IP6_TNL_MAX
; i
++) {
235 sprintf(name
, "ip6tnl%d", i
);
236 if (__dev_get_by_name(name
) == NULL
)
239 if (i
== IP6_TNL_MAX
)
242 dev
= alloc_netdev(sizeof (*t
), name
, ip6ip6_tnl_dev_setup
);
247 dev
->init
= ip6ip6_tnl_dev_init
;
250 if ((err
= register_netdevice(dev
)) < 0) {
262 * ip6ip6_tnl_locate - find or create tunnel matching given parameters
263 * @p: tunnel parameters
264 * @create: != 0 if allowed to create new tunnel if no match found
267 * ip6ip6_tnl_locate() first tries to locate an existing tunnel
268 * based on @parms. If this is unsuccessful, but @create is set a new
269 * tunnel device is created and registered for use.
272 * 0 if tunnel located or created,
273 * -EINVAL if parameters incorrect,
274 * -ENODEV if no matching tunnel available
278 ip6ip6_tnl_locate(struct ip6_tnl_parm
*p
, struct ip6_tnl
**pt
, int create
)
280 struct in6_addr
*remote
= &p
->raddr
;
281 struct in6_addr
*local
= &p
->laddr
;
284 if (p
->proto
!= IPPROTO_IPV6
)
287 for (t
= *ip6ip6_bucket(p
); t
; t
= t
->next
) {
288 if (ipv6_addr_equal(local
, &t
->parms
.laddr
) &&
289 ipv6_addr_equal(remote
, &t
->parms
.raddr
)) {
291 return (create
? -EEXIST
: 0);
297 return ip6_tnl_create(p
, pt
);
301 * ip6ip6_tnl_dev_uninit - tunnel device uninitializer
302 * @dev: the device to be destroyed
305 * ip6ip6_tnl_dev_uninit() removes tunnel from its list
309 ip6ip6_tnl_dev_uninit(struct net_device
*dev
)
311 struct ip6_tnl
*t
= dev
->priv
;
313 if (dev
== ip6ip6_fb_tnl_dev
) {
314 write_lock_bh(&ip6ip6_lock
);
316 write_unlock_bh(&ip6ip6_lock
);
318 ip6ip6_tnl_unlink(t
);
320 ip6_tnl_dst_reset(t
);
325 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
326 * @skb: received socket buffer
329 * 0 if none was found,
330 * else index to encapsulation limit
334 parse_tlv_tnl_enc_lim(struct sk_buff
*skb
, __u8
* raw
)
336 struct ipv6hdr
*ipv6h
= (struct ipv6hdr
*) raw
;
337 __u8 nexthdr
= ipv6h
->nexthdr
;
338 __u16 off
= sizeof (*ipv6h
);
340 while (ipv6_ext_hdr(nexthdr
) && nexthdr
!= NEXTHDR_NONE
) {
342 struct ipv6_opt_hdr
*hdr
;
343 if (raw
+ off
+ sizeof (*hdr
) > skb
->data
&&
344 !pskb_may_pull(skb
, raw
- skb
->data
+ off
+ sizeof (*hdr
)))
347 hdr
= (struct ipv6_opt_hdr
*) (raw
+ off
);
348 if (nexthdr
== NEXTHDR_FRAGMENT
) {
349 struct frag_hdr
*frag_hdr
= (struct frag_hdr
*) hdr
;
350 if (frag_hdr
->frag_off
)
353 } else if (nexthdr
== NEXTHDR_AUTH
) {
354 optlen
= (hdr
->hdrlen
+ 2) << 2;
356 optlen
= ipv6_optlen(hdr
);
358 if (nexthdr
== NEXTHDR_DEST
) {
361 struct ipv6_tlv_tnl_enc_lim
*tel
;
363 /* No more room for encapsulation limit */
364 if (i
+ sizeof (*tel
) > off
+ optlen
)
367 tel
= (struct ipv6_tlv_tnl_enc_lim
*) &raw
[i
];
368 /* return index of option if found and valid */
369 if (tel
->type
== IPV6_TLV_TNL_ENCAP_LIMIT
&&
372 /* else jump to next option */
374 i
+= tel
->length
+ 2;
379 nexthdr
= hdr
->nexthdr
;
386 * ip6ip6_err - tunnel error handler
389 * ip6ip6_err() should handle errors in the tunnel according
390 * to the specifications in RFC 2473.
394 ip6ip6_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
395 int type
, int code
, int offset
, __u32 info
)
397 struct ipv6hdr
*ipv6h
= (struct ipv6hdr
*) skb
->data
;
400 int rel_type
= ICMPV6_DEST_UNREACH
;
401 int rel_code
= ICMPV6_ADDR_UNREACH
;
405 /* If the packet doesn't contain the original IPv6 header we are
406 in trouble since we might need the source address for further
407 processing of the error. */
409 read_lock(&ip6ip6_lock
);
410 if ((t
= ip6ip6_tnl_lookup(&ipv6h
->daddr
, &ipv6h
->saddr
)) == NULL
)
415 struct ipv6_tlv_tnl_enc_lim
*tel
;
417 case ICMPV6_DEST_UNREACH
:
420 "%s: Path to destination invalid "
421 "or inactive!\n", t
->parms
.name
);
424 case ICMPV6_TIME_EXCEED
:
425 if (code
== ICMPV6_EXC_HOPLIMIT
) {
428 "%s: Too small hop limit or "
429 "routing loop in tunnel!\n",
434 case ICMPV6_PARAMPROB
:
435 /* ignore if parameter problem not caused by a tunnel
436 encapsulation limit sub-option */
437 if (code
!= ICMPV6_HDR_FIELD
) {
440 teli
= parse_tlv_tnl_enc_lim(skb
, skb
->data
);
442 if (teli
&& teli
== ntohl(info
) - 2) {
443 tel
= (struct ipv6_tlv_tnl_enc_lim
*) &skb
->data
[teli
];
444 if (tel
->encap_limit
== 0) {
447 "%s: Too small encapsulation "
448 "limit or routing loop in "
449 "tunnel!\n", t
->parms
.name
);
454 case ICMPV6_PKT_TOOBIG
:
455 mtu
= ntohl(info
) - offset
;
456 if (mtu
< IPV6_MIN_MTU
)
460 if ((len
= sizeof (*ipv6h
) + ipv6h
->payload_len
) > mtu
) {
461 rel_type
= ICMPV6_PKT_TOOBIG
;
468 if (rel_msg
&& pskb_may_pull(skb
, offset
+ sizeof (*ipv6h
))) {
470 struct sk_buff
*skb2
= skb_clone(skb
, GFP_ATOMIC
);
474 dst_release(skb2
->dst
);
476 skb_pull(skb2
, offset
);
477 skb2
->nh
.raw
= skb2
->data
;
479 /* Try to guess incoming interface */
480 rt
= rt6_lookup(&skb2
->nh
.ipv6h
->saddr
, NULL
, 0, 0);
482 if (rt
&& rt
->rt6i_dev
)
483 skb2
->dev
= rt
->rt6i_dev
;
485 icmpv6_send(skb2
, rel_type
, rel_code
, rel_info
, skb2
->dev
);
488 dst_release(&rt
->u
.dst
);
493 read_unlock(&ip6ip6_lock
);
496 static inline void ip6ip6_ecn_decapsulate(struct ipv6hdr
*outer_iph
,
499 struct ipv6hdr
*inner_iph
= skb
->nh
.ipv6h
;
501 if (INET_ECN_is_ce(ipv6_get_dsfield(outer_iph
)))
502 IP6_ECN_set_ce(inner_iph
);
506 * ip6ip6_rcv - decapsulate IPv6 packet and retransmit it locally
507 * @skb: received socket buffer
513 ip6ip6_rcv(struct sk_buff
**pskb
, unsigned int *nhoffp
)
515 struct sk_buff
*skb
= *pskb
;
516 struct ipv6hdr
*ipv6h
;
519 if (!pskb_may_pull(skb
, sizeof (*ipv6h
)))
522 ipv6h
= skb
->nh
.ipv6h
;
524 read_lock(&ip6ip6_lock
);
526 if ((t
= ip6ip6_tnl_lookup(&ipv6h
->saddr
, &ipv6h
->daddr
)) != NULL
) {
527 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
)) {
532 if (!(t
->parms
.flags
& IP6_TNL_F_CAP_RCV
)) {
533 t
->stat
.rx_dropped
++;
534 read_unlock(&ip6ip6_lock
);
538 skb
->mac
.raw
= skb
->nh
.raw
;
539 skb
->nh
.raw
= skb
->data
;
540 skb
->protocol
= htons(ETH_P_IPV6
);
541 skb
->pkt_type
= PACKET_HOST
;
542 memset(skb
->cb
, 0, sizeof(struct inet6_skb_parm
));
544 dst_release(skb
->dst
);
546 if (t
->parms
.flags
& IP6_TNL_F_RCV_DSCP_COPY
)
547 ipv6_copy_dscp(ipv6h
, skb
->nh
.ipv6h
);
548 ip6ip6_ecn_decapsulate(ipv6h
, skb
);
549 t
->stat
.rx_packets
++;
550 t
->stat
.rx_bytes
+= skb
->len
;
552 read_unlock(&ip6ip6_lock
);
555 read_unlock(&ip6ip6_lock
);
556 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_ADDR_UNREACH
, 0, skb
->dev
);
561 static inline struct ipv6_txoptions
*create_tel(__u8 encap_limit
)
563 struct ipv6_tlv_tnl_enc_lim
*tel
;
564 struct ipv6_txoptions
*opt
;
567 int opt_len
= sizeof(*opt
) + 8;
569 if (!(opt
= kmalloc(opt_len
, GFP_ATOMIC
))) {
572 memset(opt
, 0, opt_len
);
573 opt
->tot_len
= opt_len
;
574 opt
->dst0opt
= (struct ipv6_opt_hdr
*) (opt
+ 1);
577 tel
= (struct ipv6_tlv_tnl_enc_lim
*) (opt
->dst0opt
+ 1);
578 tel
->type
= IPV6_TLV_TNL_ENCAP_LIMIT
;
580 tel
->encap_limit
= encap_limit
;
582 raw
= (__u8
*) opt
->dst0opt
;
583 raw
[5] = IPV6_TLV_PADN
;
590 * ip6ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
591 * @t: the outgoing tunnel device
592 * @hdr: IPv6 header from the incoming packet
595 * Avoid trivial tunneling loop by checking that tunnel exit-point
596 * doesn't match source of incoming packet.
604 ip6ip6_tnl_addr_conflict(struct ip6_tnl
*t
, struct ipv6hdr
*hdr
)
606 return ipv6_addr_equal(&t
->parms
.raddr
, &hdr
->saddr
);
610 * ip6ip6_tnl_xmit - encapsulate packet and send
611 * @skb: the outgoing socket buffer
612 * @dev: the outgoing tunnel device
615 * Build new header and do some sanity checks on the packet before sending
623 ip6ip6_tnl_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
625 struct ip6_tnl
*t
= (struct ip6_tnl
*) dev
->priv
;
626 struct net_device_stats
*stats
= &t
->stat
;
627 struct ipv6hdr
*ipv6h
= skb
->nh
.ipv6h
;
628 struct ipv6_txoptions
*opt
= NULL
;
629 int encap_limit
= -1;
632 struct dst_entry
*dst
;
633 struct net_device
*tdev
;
635 int max_headroom
= sizeof(struct ipv6hdr
);
641 if (t
->recursion
++) {
645 if (skb
->protocol
!= htons(ETH_P_IPV6
) ||
646 !(t
->parms
.flags
& IP6_TNL_F_CAP_XMIT
) ||
647 ip6ip6_tnl_addr_conflict(t
, ipv6h
)) {
650 if ((offset
= parse_tlv_tnl_enc_lim(skb
, skb
->nh
.raw
)) > 0) {
651 struct ipv6_tlv_tnl_enc_lim
*tel
;
652 tel
= (struct ipv6_tlv_tnl_enc_lim
*) &skb
->nh
.raw
[offset
];
653 if (tel
->encap_limit
== 0) {
654 icmpv6_send(skb
, ICMPV6_PARAMPROB
,
655 ICMPV6_HDR_FIELD
, offset
+ 2, skb
->dev
);
658 encap_limit
= tel
->encap_limit
- 1;
659 } else if (!(t
->parms
.flags
& IP6_TNL_F_IGN_ENCAP_LIMIT
)) {
660 encap_limit
= t
->parms
.encap_limit
;
662 memcpy(&fl
, &t
->fl
, sizeof (fl
));
665 dsfield
= ipv6_get_dsfield(ipv6h
);
666 if ((t
->parms
.flags
& IP6_TNL_F_USE_ORIG_TCLASS
))
667 fl
.fl6_flowlabel
|= (*(__u32
*) ipv6h
& IPV6_TCLASS_MASK
);
668 if ((t
->parms
.flags
& IP6_TNL_F_USE_ORIG_FLOWLABEL
))
669 fl
.fl6_flowlabel
|= (*(__u32
*) ipv6h
& IPV6_FLOWLABEL_MASK
);
671 if (encap_limit
>= 0 && (opt
= create_tel(encap_limit
)) == NULL
)
674 if ((dst
= ip6_tnl_dst_check(t
)) != NULL
)
677 dst
= ip6_route_output(NULL
, &fl
);
679 if (dst
->error
|| xfrm_lookup(&dst
, &fl
, NULL
, 0) < 0)
680 goto tx_err_link_failure
;
688 "%s: Local routing loop detected!\n",
690 goto tx_err_dst_release
;
692 mtu
= dst_mtu(dst
) - sizeof (*ipv6h
);
697 if (mtu
< IPV6_MIN_MTU
)
699 if (skb
->dst
&& mtu
< dst_mtu(skb
->dst
)) {
700 struct rt6_info
*rt
= (struct rt6_info
*) skb
->dst
;
701 rt
->rt6i_flags
|= RTF_MODIFIED
;
702 rt
->u
.dst
.metrics
[RTAX_MTU
-1] = mtu
;
704 if (skb
->len
> mtu
) {
705 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
, dev
);
706 goto tx_err_dst_release
;
710 * Okay, now see if we can stuff it in the buffer as-is.
712 max_headroom
+= LL_RESERVED_SPACE(tdev
);
714 if (skb_headroom(skb
) < max_headroom
||
715 skb_cloned(skb
) || skb_shared(skb
)) {
716 struct sk_buff
*new_skb
;
718 if (!(new_skb
= skb_realloc_headroom(skb
, max_headroom
)))
719 goto tx_err_dst_release
;
722 skb_set_owner_w(new_skb
, skb
->sk
);
726 dst_release(skb
->dst
);
727 skb
->dst
= dst_clone(dst
);
729 skb
->h
.raw
= skb
->nh
.raw
;
732 ipv6_push_nfrag_opts(skb
, opt
, &proto
, NULL
);
734 skb
->nh
.raw
= skb_push(skb
, sizeof(struct ipv6hdr
));
735 ipv6h
= skb
->nh
.ipv6h
;
736 *(u32
*)ipv6h
= fl
.fl6_flowlabel
| htonl(0x60000000);
737 dsfield
= INET_ECN_encapsulate(0, dsfield
);
738 ipv6_change_dsfield(ipv6h
, ~INET_ECN_MASK
, dsfield
);
739 ipv6h
->payload_len
= htons(skb
->len
- sizeof(struct ipv6hdr
));
740 ipv6h
->hop_limit
= t
->parms
.hop_limit
;
741 ipv6h
->nexthdr
= proto
;
742 ipv6_addr_copy(&ipv6h
->saddr
, &fl
.fl6_src
);
743 ipv6_addr_copy(&ipv6h
->daddr
, &fl
.fl6_dst
);
746 err
= NF_HOOK(PF_INET6
, NF_IP6_LOCAL_OUT
, skb
, NULL
,
747 skb
->dst
->dev
, dst_output
);
749 if (err
== NET_XMIT_SUCCESS
|| err
== NET_XMIT_CN
) {
750 stats
->tx_bytes
+= pkt_len
;
754 stats
->tx_aborted_errors
++;
756 ip6_tnl_dst_store(t
, dst
);
764 stats
->tx_carrier_errors
++;
765 dst_link_failure(skb
);
778 static void ip6_tnl_set_cap(struct ip6_tnl
*t
)
780 struct ip6_tnl_parm
*p
= &t
->parms
;
781 struct in6_addr
*laddr
= &p
->laddr
;
782 struct in6_addr
*raddr
= &p
->raddr
;
783 int ltype
= ipv6_addr_type(laddr
);
784 int rtype
= ipv6_addr_type(raddr
);
786 p
->flags
&= ~(IP6_TNL_F_CAP_XMIT
|IP6_TNL_F_CAP_RCV
);
788 if (ltype
!= IPV6_ADDR_ANY
&& rtype
!= IPV6_ADDR_ANY
&&
791 IPV6_ADDR_LOOPBACK
|IPV6_ADDR_LINKLOCAL
|
792 IPV6_ADDR_MAPPED
|IPV6_ADDR_RESERVED
)) == IPV6_ADDR_UNICAST
) {
793 struct net_device
*ldev
= NULL
;
798 ldev
= dev_get_by_index(p
->link
);
800 if (ltype
&IPV6_ADDR_UNICAST
&& !ipv6_chk_addr(laddr
, ldev
, 0))
803 if (rtype
&IPV6_ADDR_UNICAST
&& ipv6_chk_addr(raddr
, NULL
, 0))
807 if (ltype
&IPV6_ADDR_UNICAST
)
808 p
->flags
|= IP6_TNL_F_CAP_XMIT
;
809 if (rtype
&IPV6_ADDR_UNICAST
)
810 p
->flags
|= IP6_TNL_F_CAP_RCV
;
817 static void ip6ip6_tnl_link_config(struct ip6_tnl
*t
)
819 struct net_device
*dev
= t
->dev
;
820 struct ip6_tnl_parm
*p
= &t
->parms
;
821 struct flowi
*fl
= &t
->fl
;
823 memcpy(&dev
->dev_addr
, &p
->laddr
, sizeof(struct in6_addr
));
824 memcpy(&dev
->broadcast
, &p
->raddr
, sizeof(struct in6_addr
));
826 /* Set up flowi template */
827 ipv6_addr_copy(&fl
->fl6_src
, &p
->laddr
);
828 ipv6_addr_copy(&fl
->fl6_dst
, &p
->raddr
);
830 fl
->fl6_flowlabel
= 0;
832 if (!(p
->flags
&IP6_TNL_F_USE_ORIG_TCLASS
))
833 fl
->fl6_flowlabel
|= IPV6_TCLASS_MASK
& p
->flowinfo
;
834 if (!(p
->flags
&IP6_TNL_F_USE_ORIG_FLOWLABEL
))
835 fl
->fl6_flowlabel
|= IPV6_FLOWLABEL_MASK
& p
->flowinfo
;
839 if (p
->flags
&IP6_TNL_F_CAP_XMIT
&& p
->flags
&IP6_TNL_F_CAP_RCV
)
840 dev
->flags
|= IFF_POINTOPOINT
;
842 dev
->flags
&= ~IFF_POINTOPOINT
;
844 dev
->iflink
= p
->link
;
846 if (p
->flags
& IP6_TNL_F_CAP_XMIT
) {
847 struct rt6_info
*rt
= rt6_lookup(&p
->raddr
, &p
->laddr
,
854 dev
->hard_header_len
= rt
->rt6i_dev
->hard_header_len
+
855 sizeof (struct ipv6hdr
);
857 dev
->mtu
= rt
->rt6i_dev
->mtu
- sizeof (struct ipv6hdr
);
859 if (dev
->mtu
< IPV6_MIN_MTU
)
860 dev
->mtu
= IPV6_MIN_MTU
;
862 dst_release(&rt
->u
.dst
);
867 * ip6ip6_tnl_change - update the tunnel parameters
868 * @t: tunnel to be changed
869 * @p: tunnel configuration parameters
870 * @active: != 0 if tunnel is ready for use
873 * ip6ip6_tnl_change() updates the tunnel parameters
877 ip6ip6_tnl_change(struct ip6_tnl
*t
, struct ip6_tnl_parm
*p
)
879 ipv6_addr_copy(&t
->parms
.laddr
, &p
->laddr
);
880 ipv6_addr_copy(&t
->parms
.raddr
, &p
->raddr
);
881 t
->parms
.flags
= p
->flags
;
882 t
->parms
.hop_limit
= p
->hop_limit
;
883 t
->parms
.encap_limit
= p
->encap_limit
;
884 t
->parms
.flowinfo
= p
->flowinfo
;
885 t
->parms
.link
= p
->link
;
886 ip6ip6_tnl_link_config(t
);
891 * ip6ip6_tnl_ioctl - configure ipv6 tunnels from userspace
892 * @dev: virtual device associated with tunnel
893 * @ifr: parameters passed from userspace
894 * @cmd: command to be performed
897 * ip6ip6_tnl_ioctl() is used for managing IPv6 tunnels
900 * The possible commands are the following:
901 * %SIOCGETTUNNEL: get tunnel parameters for device
902 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
903 * %SIOCCHGTUNNEL: change tunnel parameters to those given
904 * %SIOCDELTUNNEL: delete tunnel
906 * The fallback device "ip6tnl0", created during module
907 * initialization, can be used for creating other tunnel devices.
911 * %-EFAULT if unable to copy data to or from userspace,
912 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
913 * %-EINVAL if passed tunnel parameters are invalid,
914 * %-EEXIST if changing a tunnel's parameters would cause a conflict
915 * %-ENODEV if attempting to change or delete a nonexisting device
919 ip6ip6_tnl_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
923 struct ip6_tnl_parm p
;
924 struct ip6_tnl
*t
= NULL
;
928 if (dev
== ip6ip6_fb_tnl_dev
) {
929 if (copy_from_user(&p
,
930 ifr
->ifr_ifru
.ifru_data
,
935 if ((err
= ip6ip6_tnl_locate(&p
, &t
, 0)) == -ENODEV
)
936 t
= (struct ip6_tnl
*) dev
->priv
;
940 t
= (struct ip6_tnl
*) dev
->priv
;
942 memcpy(&p
, &t
->parms
, sizeof (p
));
943 if (copy_to_user(ifr
->ifr_ifru
.ifru_data
, &p
, sizeof (p
))) {
950 create
= (cmd
== SIOCADDTUNNEL
);
951 if (!capable(CAP_NET_ADMIN
))
953 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof (p
))) {
957 if (!create
&& dev
!= ip6ip6_fb_tnl_dev
) {
958 t
= (struct ip6_tnl
*) dev
->priv
;
960 if (!t
&& (err
= ip6ip6_tnl_locate(&p
, &t
, create
))) {
963 if (cmd
== SIOCCHGTUNNEL
) {
968 ip6ip6_tnl_unlink(t
);
969 err
= ip6ip6_tnl_change(t
, &p
);
971 netdev_state_change(dev
);
973 if (copy_to_user(ifr
->ifr_ifru
.ifru_data
,
974 &t
->parms
, sizeof (p
))) {
982 if (!capable(CAP_NET_ADMIN
))
985 if (dev
== ip6ip6_fb_tnl_dev
) {
986 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
,
991 err
= ip6ip6_tnl_locate(&p
, &t
, 0);
994 if (t
== ip6ip6_fb_tnl_dev
->priv
) {
999 t
= (struct ip6_tnl
*) dev
->priv
;
1001 err
= unregister_netdevice(t
->dev
);
1010 * ip6ip6_tnl_get_stats - return the stats for tunnel device
1011 * @dev: virtual device associated with tunnel
1013 * Return: stats for device
1016 static struct net_device_stats
*
1017 ip6ip6_tnl_get_stats(struct net_device
*dev
)
1019 return &(((struct ip6_tnl
*) dev
->priv
)->stat
);
1023 * ip6ip6_tnl_change_mtu - change mtu manually for tunnel device
1024 * @dev: virtual device associated with tunnel
1025 * @new_mtu: the new mtu
1029 * %-EINVAL if mtu too small
1033 ip6ip6_tnl_change_mtu(struct net_device
*dev
, int new_mtu
)
1035 if (new_mtu
< IPV6_MIN_MTU
) {
1043 * ip6ip6_tnl_dev_setup - setup virtual tunnel device
1044 * @dev: virtual device associated with tunnel
1047 * Initialize function pointers and device parameters
1050 static void ip6ip6_tnl_dev_setup(struct net_device
*dev
)
1052 SET_MODULE_OWNER(dev
);
1053 dev
->uninit
= ip6ip6_tnl_dev_uninit
;
1054 dev
->destructor
= free_netdev
;
1055 dev
->hard_start_xmit
= ip6ip6_tnl_xmit
;
1056 dev
->get_stats
= ip6ip6_tnl_get_stats
;
1057 dev
->do_ioctl
= ip6ip6_tnl_ioctl
;
1058 dev
->change_mtu
= ip6ip6_tnl_change_mtu
;
1060 dev
->type
= ARPHRD_TUNNEL6
;
1061 dev
->hard_header_len
= LL_MAX_HEADER
+ sizeof (struct ipv6hdr
);
1062 dev
->mtu
= ETH_DATA_LEN
- sizeof (struct ipv6hdr
);
1063 dev
->flags
|= IFF_NOARP
;
1064 dev
->addr_len
= sizeof(struct in6_addr
);
1069 * ip6ip6_tnl_dev_init_gen - general initializer for all tunnel devices
1070 * @dev: virtual device associated with tunnel
1074 ip6ip6_tnl_dev_init_gen(struct net_device
*dev
)
1076 struct ip6_tnl
*t
= (struct ip6_tnl
*) dev
->priv
;
1077 t
->fl
.proto
= IPPROTO_IPV6
;
1079 strcpy(t
->parms
.name
, dev
->name
);
1083 * ip6ip6_tnl_dev_init - initializer for all non fallback tunnel devices
1084 * @dev: virtual device associated with tunnel
1088 ip6ip6_tnl_dev_init(struct net_device
*dev
)
1090 struct ip6_tnl
*t
= (struct ip6_tnl
*) dev
->priv
;
1091 ip6ip6_tnl_dev_init_gen(dev
);
1092 ip6ip6_tnl_link_config(t
);
1097 * ip6ip6_fb_tnl_dev_init - initializer for fallback tunnel device
1098 * @dev: fallback device
1104 ip6ip6_fb_tnl_dev_init(struct net_device
*dev
)
1106 struct ip6_tnl
*t
= dev
->priv
;
1107 ip6ip6_tnl_dev_init_gen(dev
);
1113 #ifdef CONFIG_INET6_TUNNEL
1114 static struct xfrm6_tunnel ip6ip6_handler
= {
1115 .handler
= ip6ip6_rcv
,
1116 .err_handler
= ip6ip6_err
,
1119 static inline int ip6ip6_register(void)
1121 return xfrm6_tunnel_register(&ip6ip6_handler
);
1124 static inline int ip6ip6_unregister(void)
1126 return xfrm6_tunnel_deregister(&ip6ip6_handler
);
1129 static struct inet6_protocol xfrm6_tunnel_protocol
= {
1130 .handler
= ip6ip6_rcv
,
1131 .err_handler
= ip6ip6_err
,
1132 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
1135 static inline int ip6ip6_register(void)
1137 return inet6_add_protocol(&xfrm6_tunnel_protocol
, IPPROTO_IPV6
);
1140 static inline int ip6ip6_unregister(void)
1142 return inet6_del_protocol(&xfrm6_tunnel_protocol
, IPPROTO_IPV6
);
1147 * ip6_tunnel_init - register protocol and reserve needed resources
1149 * Return: 0 on success
1152 static int __init
ip6_tunnel_init(void)
1156 if (ip6ip6_register() < 0) {
1157 printk(KERN_ERR
"ip6ip6 init: can't register tunnel\n");
1160 ip6ip6_fb_tnl_dev
= alloc_netdev(sizeof(struct ip6_tnl
), "ip6tnl0",
1161 ip6ip6_tnl_dev_setup
);
1163 if (!ip6ip6_fb_tnl_dev
) {
1167 ip6ip6_fb_tnl_dev
->init
= ip6ip6_fb_tnl_dev_init
;
1169 if ((err
= register_netdev(ip6ip6_fb_tnl_dev
))) {
1170 free_netdev(ip6ip6_fb_tnl_dev
);
1175 ip6ip6_unregister();
1180 * ip6_tunnel_cleanup - free resources and unregister protocol
1183 static void __exit
ip6_tunnel_cleanup(void)
1185 if (ip6ip6_unregister() < 0)
1186 printk(KERN_INFO
"ip6ip6 close: can't deregister tunnel\n");
1188 unregister_netdev(ip6ip6_fb_tnl_dev
);
1191 module_init(ip6_tunnel_init
);
1192 module_exit(ip6_tunnel_cleanup
);