2 * IPv6 tunneling device
3 * Linux INET6 implementation
6 * Ville Nuorvala <vnuorval@tcs.hut.fi>
7 * Yasuyuki Kozakai <kozakai@linux-ipv6.org>
10 * linux/net/ipv6/sit.c and linux/net/ipv4/ipip.c
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/module.h>
24 #include <linux/capability.h>
25 #include <linux/errno.h>
26 #include <linux/types.h>
27 #include <linux/sockios.h>
28 #include <linux/icmp.h>
32 #include <linux/if_tunnel.h>
33 #include <linux/net.h>
34 #include <linux/in6.h>
35 #include <linux/netdevice.h>
36 #include <linux/if_arp.h>
37 #include <linux/icmpv6.h>
38 #include <linux/init.h>
39 #include <linux/route.h>
40 #include <linux/rtnetlink.h>
41 #include <linux/netfilter_ipv6.h>
42 #include <linux/slab.h>
43 #include <linux/hash.h>
45 #include <asm/uaccess.h>
46 #include <linux/atomic.h>
51 #include <net/ip6_route.h>
52 #include <net/addrconf.h>
53 #include <net/ip6_tunnel.h>
55 #include <net/dsfield.h>
56 #include <net/inet_ecn.h>
57 #include <net/net_namespace.h>
58 #include <net/netns/generic.h>
60 MODULE_AUTHOR("Ville Nuorvala");
61 MODULE_DESCRIPTION("IPv6 tunneling device");
62 MODULE_LICENSE("GPL");
63 MODULE_ALIAS_NETDEV("ip6tnl0");
66 #define IP6_TNL_TRACE(x...) pr_debug("%s:" x "\n", __func__)
68 #define IP6_TNL_TRACE(x...) do {;} while(0)
71 #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
72 #define IPV6_TCLASS_SHIFT 20
74 #define HASH_SIZE_SHIFT 5
75 #define HASH_SIZE (1 << HASH_SIZE_SHIFT)
77 static bool log_ecn_error
= true;
78 module_param(log_ecn_error
, bool, 0644);
79 MODULE_PARM_DESC(log_ecn_error
, "Log packets received with corrupted ECN");
81 static u32
HASH(const struct in6_addr
*addr1
, const struct in6_addr
*addr2
)
83 u32 hash
= ipv6_addr_hash(addr1
) ^ ipv6_addr_hash(addr2
);
85 return hash_32(hash
, HASH_SIZE_SHIFT
);
88 static int ip6_tnl_dev_init(struct net_device
*dev
);
89 static void ip6_tnl_dev_setup(struct net_device
*dev
);
90 static struct rtnl_link_ops ip6_link_ops __read_mostly
;
92 static int ip6_tnl_net_id __read_mostly
;
94 /* the IPv6 tunnel fallback device */
95 struct net_device
*fb_tnl_dev
;
96 /* lists for storing tunnels in use */
97 struct ip6_tnl __rcu
*tnls_r_l
[HASH_SIZE
];
98 struct ip6_tnl __rcu
*tnls_wc
[1];
99 struct ip6_tnl __rcu
**tnls
[2];
102 static struct net_device_stats
*ip6_get_stats(struct net_device
*dev
)
104 struct pcpu_tstats sum
= { 0 };
107 for_each_possible_cpu(i
) {
108 const struct pcpu_tstats
*tstats
= per_cpu_ptr(dev
->tstats
, i
);
110 sum
.rx_packets
+= tstats
->rx_packets
;
111 sum
.rx_bytes
+= tstats
->rx_bytes
;
112 sum
.tx_packets
+= tstats
->tx_packets
;
113 sum
.tx_bytes
+= tstats
->tx_bytes
;
115 dev
->stats
.rx_packets
= sum
.rx_packets
;
116 dev
->stats
.rx_bytes
= sum
.rx_bytes
;
117 dev
->stats
.tx_packets
= sum
.tx_packets
;
118 dev
->stats
.tx_bytes
= sum
.tx_bytes
;
123 * Locking : hash tables are protected by RCU and RTNL
126 struct dst_entry
*ip6_tnl_dst_check(struct ip6_tnl
*t
)
128 struct dst_entry
*dst
= t
->dst_cache
;
130 if (dst
&& dst
->obsolete
&&
131 dst
->ops
->check(dst
, t
->dst_cookie
) == NULL
) {
139 EXPORT_SYMBOL_GPL(ip6_tnl_dst_check
);
141 void ip6_tnl_dst_reset(struct ip6_tnl
*t
)
143 dst_release(t
->dst_cache
);
146 EXPORT_SYMBOL_GPL(ip6_tnl_dst_reset
);
148 void ip6_tnl_dst_store(struct ip6_tnl
*t
, struct dst_entry
*dst
)
150 struct rt6_info
*rt
= (struct rt6_info
*) dst
;
151 t
->dst_cookie
= rt
->rt6i_node
? rt
->rt6i_node
->fn_sernum
: 0;
152 dst_release(t
->dst_cache
);
155 EXPORT_SYMBOL_GPL(ip6_tnl_dst_store
);
158 * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
159 * @remote: the address of the tunnel exit-point
160 * @local: the address of the tunnel entry-point
163 * tunnel matching given end-points if found,
164 * else fallback tunnel if its device is up,
168 #define for_each_ip6_tunnel_rcu(start) \
169 for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
171 static struct ip6_tnl
*
172 ip6_tnl_lookup(struct net
*net
, const struct in6_addr
*remote
, const struct in6_addr
*local
)
174 unsigned int hash
= HASH(remote
, local
);
176 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
178 for_each_ip6_tunnel_rcu(ip6n
->tnls_r_l
[hash
]) {
179 if (ipv6_addr_equal(local
, &t
->parms
.laddr
) &&
180 ipv6_addr_equal(remote
, &t
->parms
.raddr
) &&
181 (t
->dev
->flags
& IFF_UP
))
184 t
= rcu_dereference(ip6n
->tnls_wc
[0]);
185 if (t
&& (t
->dev
->flags
& IFF_UP
))
192 * ip6_tnl_bucket - get head of list matching given tunnel parameters
193 * @p: parameters containing tunnel end-points
196 * ip6_tnl_bucket() returns the head of the list matching the
197 * &struct in6_addr entries laddr and raddr in @p.
199 * Return: head of IPv6 tunnel list
202 static struct ip6_tnl __rcu
**
203 ip6_tnl_bucket(struct ip6_tnl_net
*ip6n
, const struct __ip6_tnl_parm
*p
)
205 const struct in6_addr
*remote
= &p
->raddr
;
206 const struct in6_addr
*local
= &p
->laddr
;
210 if (!ipv6_addr_any(remote
) || !ipv6_addr_any(local
)) {
212 h
= HASH(remote
, local
);
214 return &ip6n
->tnls
[prio
][h
];
218 * ip6_tnl_link - add tunnel to hash table
219 * @t: tunnel to be added
223 ip6_tnl_link(struct ip6_tnl_net
*ip6n
, struct ip6_tnl
*t
)
225 struct ip6_tnl __rcu
**tp
= ip6_tnl_bucket(ip6n
, &t
->parms
);
227 rcu_assign_pointer(t
->next
, rtnl_dereference(*tp
));
228 rcu_assign_pointer(*tp
, t
);
232 * ip6_tnl_unlink - remove tunnel from hash table
233 * @t: tunnel to be removed
237 ip6_tnl_unlink(struct ip6_tnl_net
*ip6n
, struct ip6_tnl
*t
)
239 struct ip6_tnl __rcu
**tp
;
240 struct ip6_tnl
*iter
;
242 for (tp
= ip6_tnl_bucket(ip6n
, &t
->parms
);
243 (iter
= rtnl_dereference(*tp
)) != NULL
;
246 rcu_assign_pointer(*tp
, t
->next
);
252 static void ip6_dev_free(struct net_device
*dev
)
254 free_percpu(dev
->tstats
);
258 static int ip6_tnl_create2(struct net_device
*dev
)
260 struct ip6_tnl
*t
= netdev_priv(dev
);
261 struct net
*net
= dev_net(dev
);
262 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
265 t
= netdev_priv(dev
);
266 err
= ip6_tnl_dev_init(dev
);
270 err
= register_netdevice(dev
);
274 strcpy(t
->parms
.name
, dev
->name
);
275 dev
->rtnl_link_ops
= &ip6_link_ops
;
278 ip6_tnl_link(ip6n
, t
);
286 * ip6_tnl_create - create a new tunnel
287 * @p: tunnel parameters
288 * @pt: pointer to new tunnel
291 * Create tunnel matching given parameters.
294 * created tunnel or NULL
297 static struct ip6_tnl
*ip6_tnl_create(struct net
*net
, struct __ip6_tnl_parm
*p
)
299 struct net_device
*dev
;
305 strlcpy(name
, p
->name
, IFNAMSIZ
);
307 sprintf(name
, "ip6tnl%%d");
309 dev
= alloc_netdev(sizeof (*t
), name
, ip6_tnl_dev_setup
);
313 dev_net_set(dev
, net
);
315 t
= netdev_priv(dev
);
317 err
= ip6_tnl_create2(dev
);
330 * ip6_tnl_locate - find or create tunnel matching given parameters
331 * @p: tunnel parameters
332 * @create: != 0 if allowed to create new tunnel if no match found
335 * ip6_tnl_locate() first tries to locate an existing tunnel
336 * based on @parms. If this is unsuccessful, but @create is set a new
337 * tunnel device is created and registered for use.
340 * matching tunnel or NULL
343 static struct ip6_tnl
*ip6_tnl_locate(struct net
*net
,
344 struct __ip6_tnl_parm
*p
, int create
)
346 const struct in6_addr
*remote
= &p
->raddr
;
347 const struct in6_addr
*local
= &p
->laddr
;
348 struct ip6_tnl __rcu
**tp
;
350 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
352 for (tp
= ip6_tnl_bucket(ip6n
, p
);
353 (t
= rtnl_dereference(*tp
)) != NULL
;
355 if (ipv6_addr_equal(local
, &t
->parms
.laddr
) &&
356 ipv6_addr_equal(remote
, &t
->parms
.raddr
))
361 return ip6_tnl_create(net
, p
);
365 * ip6_tnl_dev_uninit - tunnel device uninitializer
366 * @dev: the device to be destroyed
369 * ip6_tnl_dev_uninit() removes tunnel from its list
373 ip6_tnl_dev_uninit(struct net_device
*dev
)
375 struct ip6_tnl
*t
= netdev_priv(dev
);
376 struct net
*net
= dev_net(dev
);
377 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
379 if (dev
== ip6n
->fb_tnl_dev
)
380 RCU_INIT_POINTER(ip6n
->tnls_wc
[0], NULL
);
382 ip6_tnl_unlink(ip6n
, t
);
383 ip6_tnl_dst_reset(t
);
388 * parse_tvl_tnl_enc_lim - handle encapsulation limit option
389 * @skb: received socket buffer
392 * 0 if none was found,
393 * else index to encapsulation limit
396 __u16
ip6_tnl_parse_tlv_enc_lim(struct sk_buff
*skb
, __u8
*raw
)
398 const struct ipv6hdr
*ipv6h
= (const struct ipv6hdr
*) raw
;
399 __u8 nexthdr
= ipv6h
->nexthdr
;
400 __u16 off
= sizeof (*ipv6h
);
402 while (ipv6_ext_hdr(nexthdr
) && nexthdr
!= NEXTHDR_NONE
) {
404 struct ipv6_opt_hdr
*hdr
;
405 if (raw
+ off
+ sizeof (*hdr
) > skb
->data
&&
406 !pskb_may_pull(skb
, raw
- skb
->data
+ off
+ sizeof (*hdr
)))
409 hdr
= (struct ipv6_opt_hdr
*) (raw
+ off
);
410 if (nexthdr
== NEXTHDR_FRAGMENT
) {
411 struct frag_hdr
*frag_hdr
= (struct frag_hdr
*) hdr
;
412 if (frag_hdr
->frag_off
)
415 } else if (nexthdr
== NEXTHDR_AUTH
) {
416 optlen
= (hdr
->hdrlen
+ 2) << 2;
418 optlen
= ipv6_optlen(hdr
);
420 if (nexthdr
== NEXTHDR_DEST
) {
423 struct ipv6_tlv_tnl_enc_lim
*tel
;
425 /* No more room for encapsulation limit */
426 if (i
+ sizeof (*tel
) > off
+ optlen
)
429 tel
= (struct ipv6_tlv_tnl_enc_lim
*) &raw
[i
];
430 /* return index of option if found and valid */
431 if (tel
->type
== IPV6_TLV_TNL_ENCAP_LIMIT
&&
434 /* else jump to next option */
436 i
+= tel
->length
+ 2;
441 nexthdr
= hdr
->nexthdr
;
446 EXPORT_SYMBOL(ip6_tnl_parse_tlv_enc_lim
);
449 * ip6_tnl_err - tunnel error handler
452 * ip6_tnl_err() should handle errors in the tunnel according
453 * to the specifications in RFC 2473.
457 ip6_tnl_err(struct sk_buff
*skb
, __u8 ipproto
, struct inet6_skb_parm
*opt
,
458 u8
*type
, u8
*code
, int *msg
, __u32
*info
, int offset
)
460 const struct ipv6hdr
*ipv6h
= (const struct ipv6hdr
*) skb
->data
;
463 u8 rel_type
= ICMPV6_DEST_UNREACH
;
464 u8 rel_code
= ICMPV6_ADDR_UNREACH
;
469 /* If the packet doesn't contain the original IPv6 header we are
470 in trouble since we might need the source address for further
471 processing of the error. */
474 if ((t
= ip6_tnl_lookup(dev_net(skb
->dev
), &ipv6h
->daddr
,
475 &ipv6h
->saddr
)) == NULL
)
478 if (t
->parms
.proto
!= ipproto
&& t
->parms
.proto
!= 0)
485 struct ipv6_tlv_tnl_enc_lim
*tel
;
487 case ICMPV6_DEST_UNREACH
:
488 net_warn_ratelimited("%s: Path to destination invalid or inactive!\n",
492 case ICMPV6_TIME_EXCEED
:
493 if ((*code
) == ICMPV6_EXC_HOPLIMIT
) {
494 net_warn_ratelimited("%s: Too small hop limit or routing loop in tunnel!\n",
499 case ICMPV6_PARAMPROB
:
501 if ((*code
) == ICMPV6_HDR_FIELD
)
502 teli
= ip6_tnl_parse_tlv_enc_lim(skb
, skb
->data
);
504 if (teli
&& teli
== *info
- 2) {
505 tel
= (struct ipv6_tlv_tnl_enc_lim
*) &skb
->data
[teli
];
506 if (tel
->encap_limit
== 0) {
507 net_warn_ratelimited("%s: Too small encapsulation limit or routing loop in tunnel!\n",
512 net_warn_ratelimited("%s: Recipient unable to parse tunneled packet!\n",
516 case ICMPV6_PKT_TOOBIG
:
517 mtu
= *info
- offset
;
518 if (mtu
< IPV6_MIN_MTU
)
522 if ((len
= sizeof (*ipv6h
) + ntohs(ipv6h
->payload_len
)) > mtu
) {
523 rel_type
= ICMPV6_PKT_TOOBIG
;
542 ip4ip6_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
543 u8 type
, u8 code
, int offset
, __be32 info
)
548 __u32 rel_info
= ntohl(info
);
550 struct sk_buff
*skb2
;
551 const struct iphdr
*eiph
;
555 err
= ip6_tnl_err(skb
, IPPROTO_IPIP
, opt
, &rel_type
, &rel_code
,
556 &rel_msg
, &rel_info
, offset
);
564 case ICMPV6_DEST_UNREACH
:
565 if (rel_code
!= ICMPV6_ADDR_UNREACH
)
567 rel_type
= ICMP_DEST_UNREACH
;
568 rel_code
= ICMP_HOST_UNREACH
;
570 case ICMPV6_PKT_TOOBIG
:
573 rel_type
= ICMP_DEST_UNREACH
;
574 rel_code
= ICMP_FRAG_NEEDED
;
577 rel_type
= ICMP_REDIRECT
;
578 rel_code
= ICMP_REDIR_HOST
;
583 if (!pskb_may_pull(skb
, offset
+ sizeof(struct iphdr
)))
586 skb2
= skb_clone(skb
, GFP_ATOMIC
);
592 skb_pull(skb2
, offset
);
593 skb_reset_network_header(skb2
);
596 /* Try to guess incoming interface */
597 rt
= ip_route_output_ports(dev_net(skb
->dev
), &fl4
, NULL
,
600 IPPROTO_IPIP
, RT_TOS(eiph
->tos
), 0);
604 skb2
->dev
= rt
->dst
.dev
;
606 /* route "incoming" packet */
607 if (rt
->rt_flags
& RTCF_LOCAL
) {
610 rt
= ip_route_output_ports(dev_net(skb
->dev
), &fl4
, NULL
,
611 eiph
->daddr
, eiph
->saddr
,
614 RT_TOS(eiph
->tos
), 0);
616 rt
->dst
.dev
->type
!= ARPHRD_TUNNEL
) {
621 skb_dst_set(skb2
, &rt
->dst
);
624 if (ip_route_input(skb2
, eiph
->daddr
, eiph
->saddr
, eiph
->tos
,
626 skb_dst(skb2
)->dev
->type
!= ARPHRD_TUNNEL
)
630 /* change mtu on this route */
631 if (rel_type
== ICMP_DEST_UNREACH
&& rel_code
== ICMP_FRAG_NEEDED
) {
632 if (rel_info
> dst_mtu(skb_dst(skb2
)))
635 skb_dst(skb2
)->ops
->update_pmtu(skb_dst(skb2
), NULL
, skb2
, rel_info
);
637 if (rel_type
== ICMP_REDIRECT
)
638 skb_dst(skb2
)->ops
->redirect(skb_dst(skb2
), NULL
, skb2
);
640 icmp_send(skb2
, rel_type
, rel_code
, htonl(rel_info
));
648 ip6ip6_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
649 u8 type
, u8 code
, int offset
, __be32 info
)
654 __u32 rel_info
= ntohl(info
);
657 err
= ip6_tnl_err(skb
, IPPROTO_IPV6
, opt
, &rel_type
, &rel_code
,
658 &rel_msg
, &rel_info
, offset
);
662 if (rel_msg
&& pskb_may_pull(skb
, offset
+ sizeof(struct ipv6hdr
))) {
664 struct sk_buff
*skb2
= skb_clone(skb
, GFP_ATOMIC
);
670 skb_pull(skb2
, offset
);
671 skb_reset_network_header(skb2
);
673 /* Try to guess incoming interface */
674 rt
= rt6_lookup(dev_net(skb
->dev
), &ipv6_hdr(skb2
)->saddr
,
677 if (rt
&& rt
->dst
.dev
)
678 skb2
->dev
= rt
->dst
.dev
;
680 icmpv6_send(skb2
, rel_type
, rel_code
, rel_info
);
690 static int ip4ip6_dscp_ecn_decapsulate(const struct ip6_tnl
*t
,
691 const struct ipv6hdr
*ipv6h
,
694 __u8 dsfield
= ipv6_get_dsfield(ipv6h
) & ~INET_ECN_MASK
;
696 if (t
->parms
.flags
& IP6_TNL_F_RCV_DSCP_COPY
)
697 ipv4_change_dsfield(ip_hdr(skb
), INET_ECN_MASK
, dsfield
);
699 return IP6_ECN_decapsulate(ipv6h
, skb
);
702 static int ip6ip6_dscp_ecn_decapsulate(const struct ip6_tnl
*t
,
703 const struct ipv6hdr
*ipv6h
,
706 if (t
->parms
.flags
& IP6_TNL_F_RCV_DSCP_COPY
)
707 ipv6_copy_dscp(ipv6_get_dsfield(ipv6h
), ipv6_hdr(skb
));
709 return IP6_ECN_decapsulate(ipv6h
, skb
);
712 __u32
ip6_tnl_get_cap(struct ip6_tnl
*t
,
713 const struct in6_addr
*laddr
,
714 const struct in6_addr
*raddr
)
716 struct __ip6_tnl_parm
*p
= &t
->parms
;
717 int ltype
= ipv6_addr_type(laddr
);
718 int rtype
= ipv6_addr_type(raddr
);
721 if (ltype
== IPV6_ADDR_ANY
|| rtype
== IPV6_ADDR_ANY
) {
722 flags
= IP6_TNL_F_CAP_PER_PACKET
;
723 } else if (ltype
& (IPV6_ADDR_UNICAST
|IPV6_ADDR_MULTICAST
) &&
724 rtype
& (IPV6_ADDR_UNICAST
|IPV6_ADDR_MULTICAST
) &&
725 !((ltype
|rtype
) & IPV6_ADDR_LOOPBACK
) &&
726 (!((ltype
|rtype
) & IPV6_ADDR_LINKLOCAL
) || p
->link
)) {
727 if (ltype
&IPV6_ADDR_UNICAST
)
728 flags
|= IP6_TNL_F_CAP_XMIT
;
729 if (rtype
&IPV6_ADDR_UNICAST
)
730 flags
|= IP6_TNL_F_CAP_RCV
;
734 EXPORT_SYMBOL(ip6_tnl_get_cap
);
736 /* called with rcu_read_lock() */
737 int ip6_tnl_rcv_ctl(struct ip6_tnl
*t
,
738 const struct in6_addr
*laddr
,
739 const struct in6_addr
*raddr
)
741 struct __ip6_tnl_parm
*p
= &t
->parms
;
743 struct net
*net
= dev_net(t
->dev
);
745 if ((p
->flags
& IP6_TNL_F_CAP_RCV
) ||
746 ((p
->flags
& IP6_TNL_F_CAP_PER_PACKET
) &&
747 (ip6_tnl_get_cap(t
, laddr
, raddr
) & IP6_TNL_F_CAP_RCV
))) {
748 struct net_device
*ldev
= NULL
;
751 ldev
= dev_get_by_index_rcu(net
, p
->link
);
753 if ((ipv6_addr_is_multicast(laddr
) ||
754 likely(ipv6_chk_addr(net
, laddr
, ldev
, 0))) &&
755 likely(!ipv6_chk_addr(net
, raddr
, NULL
, 0)))
760 EXPORT_SYMBOL_GPL(ip6_tnl_rcv_ctl
);
763 * ip6_tnl_rcv - decapsulate IPv6 packet and retransmit it locally
764 * @skb: received socket buffer
765 * @protocol: ethernet protocol ID
766 * @dscp_ecn_decapsulate: the function to decapsulate DSCP code and ECN
771 static int ip6_tnl_rcv(struct sk_buff
*skb
, __u16 protocol
,
773 int (*dscp_ecn_decapsulate
)(const struct ip6_tnl
*t
,
774 const struct ipv6hdr
*ipv6h
,
775 struct sk_buff
*skb
))
778 const struct ipv6hdr
*ipv6h
= ipv6_hdr(skb
);
783 if ((t
= ip6_tnl_lookup(dev_net(skb
->dev
), &ipv6h
->saddr
,
784 &ipv6h
->daddr
)) != NULL
) {
785 struct pcpu_tstats
*tstats
;
787 if (t
->parms
.proto
!= ipproto
&& t
->parms
.proto
!= 0) {
792 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
)) {
797 if (!ip6_tnl_rcv_ctl(t
, &ipv6h
->daddr
, &ipv6h
->saddr
)) {
798 t
->dev
->stats
.rx_dropped
++;
803 skb
->mac_header
= skb
->network_header
;
804 skb_reset_network_header(skb
);
805 skb
->protocol
= htons(protocol
);
806 skb
->pkt_type
= PACKET_HOST
;
807 memset(skb
->cb
, 0, sizeof(struct inet6_skb_parm
));
809 __skb_tunnel_rx(skb
, t
->dev
);
811 err
= dscp_ecn_decapsulate(t
, ipv6h
, skb
);
814 net_info_ratelimited("non-ECT from %pI6 with dsfield=%#x\n",
816 ipv6_get_dsfield(ipv6h
));
818 ++t
->dev
->stats
.rx_frame_errors
;
819 ++t
->dev
->stats
.rx_errors
;
825 tstats
= this_cpu_ptr(t
->dev
->tstats
);
826 tstats
->rx_packets
++;
827 tstats
->rx_bytes
+= skb
->len
;
842 static int ip4ip6_rcv(struct sk_buff
*skb
)
844 return ip6_tnl_rcv(skb
, ETH_P_IP
, IPPROTO_IPIP
,
845 ip4ip6_dscp_ecn_decapsulate
);
848 static int ip6ip6_rcv(struct sk_buff
*skb
)
850 return ip6_tnl_rcv(skb
, ETH_P_IPV6
, IPPROTO_IPV6
,
851 ip6ip6_dscp_ecn_decapsulate
);
854 struct ipv6_tel_txoption
{
855 struct ipv6_txoptions ops
;
859 static void init_tel_txopt(struct ipv6_tel_txoption
*opt
, __u8 encap_limit
)
861 memset(opt
, 0, sizeof(struct ipv6_tel_txoption
));
863 opt
->dst_opt
[2] = IPV6_TLV_TNL_ENCAP_LIMIT
;
865 opt
->dst_opt
[4] = encap_limit
;
866 opt
->dst_opt
[5] = IPV6_TLV_PADN
;
869 opt
->ops
.dst0opt
= (struct ipv6_opt_hdr
*) opt
->dst_opt
;
870 opt
->ops
.opt_nflen
= 8;
874 * ip6_tnl_addr_conflict - compare packet addresses to tunnel's own
875 * @t: the outgoing tunnel device
876 * @hdr: IPv6 header from the incoming packet
879 * Avoid trivial tunneling loop by checking that tunnel exit-point
880 * doesn't match source of incoming packet.
888 ip6_tnl_addr_conflict(const struct ip6_tnl
*t
, const struct ipv6hdr
*hdr
)
890 return ipv6_addr_equal(&t
->parms
.raddr
, &hdr
->saddr
);
893 int ip6_tnl_xmit_ctl(struct ip6_tnl
*t
)
895 struct __ip6_tnl_parm
*p
= &t
->parms
;
897 struct net
*net
= dev_net(t
->dev
);
899 if (p
->flags
& IP6_TNL_F_CAP_XMIT
) {
900 struct net_device
*ldev
= NULL
;
904 ldev
= dev_get_by_index_rcu(net
, p
->link
);
906 if (unlikely(!ipv6_chk_addr(net
, &p
->laddr
, ldev
, 0)))
907 pr_warn("%s xmit: Local address not yet configured!\n",
909 else if (!ipv6_addr_is_multicast(&p
->raddr
) &&
910 unlikely(ipv6_chk_addr(net
, &p
->raddr
, NULL
, 0)))
911 pr_warn("%s xmit: Routing loop! Remote address found on this node!\n",
919 EXPORT_SYMBOL_GPL(ip6_tnl_xmit_ctl
);
922 * ip6_tnl_xmit2 - encapsulate packet and send
923 * @skb: the outgoing socket buffer
924 * @dev: the outgoing tunnel device
925 * @dsfield: dscp code for outer header
926 * @fl: flow of tunneled packet
927 * @encap_limit: encapsulation limit
928 * @pmtu: Path MTU is stored if packet is too big
931 * Build new header and do some sanity checks on the packet before sending
937 * %-EMSGSIZE message too big. return mtu in this case.
940 static int ip6_tnl_xmit2(struct sk_buff
*skb
,
941 struct net_device
*dev
,
947 struct net
*net
= dev_net(dev
);
948 struct ip6_tnl
*t
= netdev_priv(dev
);
949 struct net_device_stats
*stats
= &t
->dev
->stats
;
950 struct ipv6hdr
*ipv6h
= ipv6_hdr(skb
);
951 struct ipv6_tel_txoption opt
;
952 struct dst_entry
*dst
= NULL
, *ndst
= NULL
;
953 struct net_device
*tdev
;
955 unsigned int max_headroom
= sizeof(struct ipv6hdr
);
960 if (!fl6
->flowi6_mark
)
961 dst
= ip6_tnl_dst_check(t
);
963 ndst
= ip6_route_output(net
, NULL
, fl6
);
966 goto tx_err_link_failure
;
967 ndst
= xfrm_lookup(net
, ndst
, flowi6_to_flowi(fl6
), NULL
, 0);
971 goto tx_err_link_failure
;
980 net_warn_ratelimited("%s: Local routing loop detected!\n",
982 goto tx_err_dst_release
;
984 mtu
= dst_mtu(dst
) - sizeof (*ipv6h
);
985 if (encap_limit
>= 0) {
989 if (mtu
< IPV6_MIN_MTU
)
992 skb_dst(skb
)->ops
->update_pmtu(skb_dst(skb
), NULL
, skb
, mtu
);
993 if (skb
->len
> mtu
) {
996 goto tx_err_dst_release
;
1000 * Okay, now see if we can stuff it in the buffer as-is.
1002 max_headroom
+= LL_RESERVED_SPACE(tdev
);
1004 if (skb_headroom(skb
) < max_headroom
|| skb_shared(skb
) ||
1005 (skb_cloned(skb
) && !skb_clone_writable(skb
, 0))) {
1006 struct sk_buff
*new_skb
;
1008 if (!(new_skb
= skb_realloc_headroom(skb
, max_headroom
)))
1009 goto tx_err_dst_release
;
1012 skb_set_owner_w(new_skb
, skb
->sk
);
1017 if (fl6
->flowi6_mark
) {
1018 skb_dst_set(skb
, dst
);
1021 skb_dst_set_noref(skb
, dst
);
1023 skb
->transport_header
= skb
->network_header
;
1025 proto
= fl6
->flowi6_proto
;
1026 if (encap_limit
>= 0) {
1027 init_tel_txopt(&opt
, encap_limit
);
1028 ipv6_push_nfrag_opts(skb
, &opt
.ops
, &proto
, NULL
);
1030 skb_push(skb
, sizeof(struct ipv6hdr
));
1031 skb_reset_network_header(skb
);
1032 ipv6h
= ipv6_hdr(skb
);
1033 *(__be32
*)ipv6h
= fl6
->flowlabel
| htonl(0x60000000);
1034 dsfield
= INET_ECN_encapsulate(0, dsfield
);
1035 ipv6_change_dsfield(ipv6h
, ~INET_ECN_MASK
, dsfield
);
1036 ipv6h
->hop_limit
= t
->parms
.hop_limit
;
1037 ipv6h
->nexthdr
= proto
;
1038 ipv6h
->saddr
= fl6
->saddr
;
1039 ipv6h
->daddr
= fl6
->daddr
;
1042 err
= ip6_local_out(skb
);
1044 if (net_xmit_eval(err
) == 0) {
1045 struct pcpu_tstats
*tstats
= this_cpu_ptr(t
->dev
->tstats
);
1047 tstats
->tx_bytes
+= pkt_len
;
1048 tstats
->tx_packets
++;
1051 stats
->tx_aborted_errors
++;
1054 ip6_tnl_dst_store(t
, ndst
);
1056 tx_err_link_failure
:
1057 stats
->tx_carrier_errors
++;
1058 dst_link_failure(skb
);
1065 ip4ip6_tnl_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1067 struct ip6_tnl
*t
= netdev_priv(dev
);
1068 const struct iphdr
*iph
= ip_hdr(skb
);
1069 int encap_limit
= -1;
1075 if ((t
->parms
.proto
!= IPPROTO_IPIP
&& t
->parms
.proto
!= 0) ||
1076 !ip6_tnl_xmit_ctl(t
))
1079 if (!(t
->parms
.flags
& IP6_TNL_F_IGN_ENCAP_LIMIT
))
1080 encap_limit
= t
->parms
.encap_limit
;
1082 memcpy(&fl6
, &t
->fl
.u
.ip6
, sizeof (fl6
));
1083 fl6
.flowi6_proto
= IPPROTO_IPIP
;
1085 dsfield
= ipv4_get_dsfield(iph
);
1087 if (t
->parms
.flags
& IP6_TNL_F_USE_ORIG_TCLASS
)
1088 fl6
.flowlabel
|= htonl((__u32
)iph
->tos
<< IPV6_TCLASS_SHIFT
)
1090 if (t
->parms
.flags
& IP6_TNL_F_USE_ORIG_FWMARK
)
1091 fl6
.flowi6_mark
= skb
->mark
;
1093 err
= ip6_tnl_xmit2(skb
, dev
, dsfield
, &fl6
, encap_limit
, &mtu
);
1095 /* XXX: send ICMP error even if DF is not set. */
1096 if (err
== -EMSGSIZE
)
1097 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_FRAG_NEEDED
,
1106 ip6ip6_tnl_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1108 struct ip6_tnl
*t
= netdev_priv(dev
);
1109 struct ipv6hdr
*ipv6h
= ipv6_hdr(skb
);
1110 int encap_limit
= -1;
1117 if ((t
->parms
.proto
!= IPPROTO_IPV6
&& t
->parms
.proto
!= 0) ||
1118 !ip6_tnl_xmit_ctl(t
) || ip6_tnl_addr_conflict(t
, ipv6h
))
1121 offset
= ip6_tnl_parse_tlv_enc_lim(skb
, skb_network_header(skb
));
1123 struct ipv6_tlv_tnl_enc_lim
*tel
;
1124 tel
= (struct ipv6_tlv_tnl_enc_lim
*)&skb_network_header(skb
)[offset
];
1125 if (tel
->encap_limit
== 0) {
1126 icmpv6_send(skb
, ICMPV6_PARAMPROB
,
1127 ICMPV6_HDR_FIELD
, offset
+ 2);
1130 encap_limit
= tel
->encap_limit
- 1;
1131 } else if (!(t
->parms
.flags
& IP6_TNL_F_IGN_ENCAP_LIMIT
))
1132 encap_limit
= t
->parms
.encap_limit
;
1134 memcpy(&fl6
, &t
->fl
.u
.ip6
, sizeof (fl6
));
1135 fl6
.flowi6_proto
= IPPROTO_IPV6
;
1137 dsfield
= ipv6_get_dsfield(ipv6h
);
1138 if (t
->parms
.flags
& IP6_TNL_F_USE_ORIG_TCLASS
)
1139 fl6
.flowlabel
|= (*(__be32
*) ipv6h
& IPV6_TCLASS_MASK
);
1140 if (t
->parms
.flags
& IP6_TNL_F_USE_ORIG_FLOWLABEL
)
1141 fl6
.flowlabel
|= (*(__be32
*) ipv6h
& IPV6_FLOWLABEL_MASK
);
1142 if (t
->parms
.flags
& IP6_TNL_F_USE_ORIG_FWMARK
)
1143 fl6
.flowi6_mark
= skb
->mark
;
1145 err
= ip6_tnl_xmit2(skb
, dev
, dsfield
, &fl6
, encap_limit
, &mtu
);
1147 if (err
== -EMSGSIZE
)
1148 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
);
1156 ip6_tnl_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1158 struct ip6_tnl
*t
= netdev_priv(dev
);
1159 struct net_device_stats
*stats
= &t
->dev
->stats
;
1162 switch (skb
->protocol
) {
1163 case htons(ETH_P_IP
):
1164 ret
= ip4ip6_tnl_xmit(skb
, dev
);
1166 case htons(ETH_P_IPV6
):
1167 ret
= ip6ip6_tnl_xmit(skb
, dev
);
1176 return NETDEV_TX_OK
;
1180 stats
->tx_dropped
++;
1182 return NETDEV_TX_OK
;
1185 static void ip6_tnl_link_config(struct ip6_tnl
*t
)
1187 struct net_device
*dev
= t
->dev
;
1188 struct __ip6_tnl_parm
*p
= &t
->parms
;
1189 struct flowi6
*fl6
= &t
->fl
.u
.ip6
;
1191 memcpy(dev
->dev_addr
, &p
->laddr
, sizeof(struct in6_addr
));
1192 memcpy(dev
->broadcast
, &p
->raddr
, sizeof(struct in6_addr
));
1194 /* Set up flowi template */
1195 fl6
->saddr
= p
->laddr
;
1196 fl6
->daddr
= p
->raddr
;
1197 fl6
->flowi6_oif
= p
->link
;
1200 if (!(p
->flags
&IP6_TNL_F_USE_ORIG_TCLASS
))
1201 fl6
->flowlabel
|= IPV6_TCLASS_MASK
& p
->flowinfo
;
1202 if (!(p
->flags
&IP6_TNL_F_USE_ORIG_FLOWLABEL
))
1203 fl6
->flowlabel
|= IPV6_FLOWLABEL_MASK
& p
->flowinfo
;
1205 p
->flags
&= ~(IP6_TNL_F_CAP_XMIT
|IP6_TNL_F_CAP_RCV
|IP6_TNL_F_CAP_PER_PACKET
);
1206 p
->flags
|= ip6_tnl_get_cap(t
, &p
->laddr
, &p
->raddr
);
1208 if (p
->flags
&IP6_TNL_F_CAP_XMIT
&& p
->flags
&IP6_TNL_F_CAP_RCV
)
1209 dev
->flags
|= IFF_POINTOPOINT
;
1211 dev
->flags
&= ~IFF_POINTOPOINT
;
1213 dev
->iflink
= p
->link
;
1215 if (p
->flags
& IP6_TNL_F_CAP_XMIT
) {
1216 int strict
= (ipv6_addr_type(&p
->raddr
) &
1217 (IPV6_ADDR_MULTICAST
|IPV6_ADDR_LINKLOCAL
));
1219 struct rt6_info
*rt
= rt6_lookup(dev_net(dev
),
1220 &p
->raddr
, &p
->laddr
,
1227 dev
->hard_header_len
= rt
->dst
.dev
->hard_header_len
+
1228 sizeof (struct ipv6hdr
);
1230 dev
->mtu
= rt
->dst
.dev
->mtu
- sizeof (struct ipv6hdr
);
1231 if (!(t
->parms
.flags
& IP6_TNL_F_IGN_ENCAP_LIMIT
))
1234 if (dev
->mtu
< IPV6_MIN_MTU
)
1235 dev
->mtu
= IPV6_MIN_MTU
;
1242 * ip6_tnl_change - update the tunnel parameters
1243 * @t: tunnel to be changed
1244 * @p: tunnel configuration parameters
1247 * ip6_tnl_change() updates the tunnel parameters
1251 ip6_tnl_change(struct ip6_tnl
*t
, const struct __ip6_tnl_parm
*p
)
1253 t
->parms
.laddr
= p
->laddr
;
1254 t
->parms
.raddr
= p
->raddr
;
1255 t
->parms
.flags
= p
->flags
;
1256 t
->parms
.hop_limit
= p
->hop_limit
;
1257 t
->parms
.encap_limit
= p
->encap_limit
;
1258 t
->parms
.flowinfo
= p
->flowinfo
;
1259 t
->parms
.link
= p
->link
;
1260 t
->parms
.proto
= p
->proto
;
1261 ip6_tnl_dst_reset(t
);
1262 ip6_tnl_link_config(t
);
1266 static int ip6_tnl_update(struct ip6_tnl
*t
, struct __ip6_tnl_parm
*p
)
1268 struct net
*net
= dev_net(t
->dev
);
1269 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
1272 ip6_tnl_unlink(ip6n
, t
);
1274 err
= ip6_tnl_change(t
, p
);
1275 ip6_tnl_link(ip6n
, t
);
1276 netdev_state_change(t
->dev
);
1281 ip6_tnl_parm_from_user(struct __ip6_tnl_parm
*p
, const struct ip6_tnl_parm
*u
)
1283 p
->laddr
= u
->laddr
;
1284 p
->raddr
= u
->raddr
;
1285 p
->flags
= u
->flags
;
1286 p
->hop_limit
= u
->hop_limit
;
1287 p
->encap_limit
= u
->encap_limit
;
1288 p
->flowinfo
= u
->flowinfo
;
1290 p
->proto
= u
->proto
;
1291 memcpy(p
->name
, u
->name
, sizeof(u
->name
));
1295 ip6_tnl_parm_to_user(struct ip6_tnl_parm
*u
, const struct __ip6_tnl_parm
*p
)
1297 u
->laddr
= p
->laddr
;
1298 u
->raddr
= p
->raddr
;
1299 u
->flags
= p
->flags
;
1300 u
->hop_limit
= p
->hop_limit
;
1301 u
->encap_limit
= p
->encap_limit
;
1302 u
->flowinfo
= p
->flowinfo
;
1304 u
->proto
= p
->proto
;
1305 memcpy(u
->name
, p
->name
, sizeof(u
->name
));
1309 * ip6_tnl_ioctl - configure ipv6 tunnels from userspace
1310 * @dev: virtual device associated with tunnel
1311 * @ifr: parameters passed from userspace
1312 * @cmd: command to be performed
1315 * ip6_tnl_ioctl() is used for managing IPv6 tunnels
1318 * The possible commands are the following:
1319 * %SIOCGETTUNNEL: get tunnel parameters for device
1320 * %SIOCADDTUNNEL: add tunnel matching given tunnel parameters
1321 * %SIOCCHGTUNNEL: change tunnel parameters to those given
1322 * %SIOCDELTUNNEL: delete tunnel
1324 * The fallback device "ip6tnl0", created during module
1325 * initialization, can be used for creating other tunnel devices.
1329 * %-EFAULT if unable to copy data to or from userspace,
1330 * %-EPERM if current process hasn't %CAP_NET_ADMIN set
1331 * %-EINVAL if passed tunnel parameters are invalid,
1332 * %-EEXIST if changing a tunnel's parameters would cause a conflict
1333 * %-ENODEV if attempting to change or delete a nonexisting device
1337 ip6_tnl_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1340 struct ip6_tnl_parm p
;
1341 struct __ip6_tnl_parm p1
;
1342 struct ip6_tnl
*t
= NULL
;
1343 struct net
*net
= dev_net(dev
);
1344 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
1348 if (dev
== ip6n
->fb_tnl_dev
) {
1349 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof (p
))) {
1353 ip6_tnl_parm_from_user(&p1
, &p
);
1354 t
= ip6_tnl_locate(net
, &p1
, 0);
1356 memset(&p
, 0, sizeof(p
));
1359 t
= netdev_priv(dev
);
1360 ip6_tnl_parm_to_user(&p
, &t
->parms
);
1361 if (copy_to_user(ifr
->ifr_ifru
.ifru_data
, &p
, sizeof (p
))) {
1368 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
1371 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof (p
)))
1374 if (p
.proto
!= IPPROTO_IPV6
&& p
.proto
!= IPPROTO_IPIP
&&
1377 ip6_tnl_parm_from_user(&p1
, &p
);
1378 t
= ip6_tnl_locate(net
, &p1
, cmd
== SIOCADDTUNNEL
);
1379 if (dev
!= ip6n
->fb_tnl_dev
&& cmd
== SIOCCHGTUNNEL
) {
1381 if (t
->dev
!= dev
) {
1386 t
= netdev_priv(dev
);
1388 err
= ip6_tnl_update(t
, &p1
);
1392 ip6_tnl_parm_to_user(&p
, &t
->parms
);
1393 if (copy_to_user(ifr
->ifr_ifru
.ifru_data
, &p
, sizeof(p
)))
1397 err
= (cmd
== SIOCADDTUNNEL
? -ENOBUFS
: -ENOENT
);
1401 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
1404 if (dev
== ip6n
->fb_tnl_dev
) {
1406 if (copy_from_user(&p
, ifr
->ifr_ifru
.ifru_data
, sizeof (p
)))
1409 ip6_tnl_parm_from_user(&p1
, &p
);
1410 t
= ip6_tnl_locate(net
, &p1
, 0);
1414 if (t
->dev
== ip6n
->fb_tnl_dev
)
1419 unregister_netdevice(dev
);
1428 * ip6_tnl_change_mtu - change mtu manually for tunnel device
1429 * @dev: virtual device associated with tunnel
1430 * @new_mtu: the new mtu
1434 * %-EINVAL if mtu too small
1438 ip6_tnl_change_mtu(struct net_device
*dev
, int new_mtu
)
1440 if (new_mtu
< IPV6_MIN_MTU
) {
1448 static const struct net_device_ops ip6_tnl_netdev_ops
= {
1449 .ndo_uninit
= ip6_tnl_dev_uninit
,
1450 .ndo_start_xmit
= ip6_tnl_xmit
,
1451 .ndo_do_ioctl
= ip6_tnl_ioctl
,
1452 .ndo_change_mtu
= ip6_tnl_change_mtu
,
1453 .ndo_get_stats
= ip6_get_stats
,
1458 * ip6_tnl_dev_setup - setup virtual tunnel device
1459 * @dev: virtual device associated with tunnel
1462 * Initialize function pointers and device parameters
1465 static void ip6_tnl_dev_setup(struct net_device
*dev
)
1469 dev
->netdev_ops
= &ip6_tnl_netdev_ops
;
1470 dev
->destructor
= ip6_dev_free
;
1472 dev
->type
= ARPHRD_TUNNEL6
;
1473 dev
->hard_header_len
= LL_MAX_HEADER
+ sizeof (struct ipv6hdr
);
1474 dev
->mtu
= ETH_DATA_LEN
- sizeof (struct ipv6hdr
);
1475 t
= netdev_priv(dev
);
1476 if (!(t
->parms
.flags
& IP6_TNL_F_IGN_ENCAP_LIMIT
))
1478 dev
->flags
|= IFF_NOARP
;
1479 dev
->addr_len
= sizeof(struct in6_addr
);
1480 dev
->features
|= NETIF_F_NETNS_LOCAL
;
1481 dev
->priv_flags
&= ~IFF_XMIT_DST_RELEASE
;
1486 * ip6_tnl_dev_init_gen - general initializer for all tunnel devices
1487 * @dev: virtual device associated with tunnel
1491 ip6_tnl_dev_init_gen(struct net_device
*dev
)
1493 struct ip6_tnl
*t
= netdev_priv(dev
);
1496 dev
->tstats
= alloc_percpu(struct pcpu_tstats
);
1503 * ip6_tnl_dev_init - initializer for all non fallback tunnel devices
1504 * @dev: virtual device associated with tunnel
1507 static int ip6_tnl_dev_init(struct net_device
*dev
)
1509 struct ip6_tnl
*t
= netdev_priv(dev
);
1510 int err
= ip6_tnl_dev_init_gen(dev
);
1514 ip6_tnl_link_config(t
);
1519 * ip6_fb_tnl_dev_init - initializer for fallback tunnel device
1520 * @dev: fallback device
1525 static int __net_init
ip6_fb_tnl_dev_init(struct net_device
*dev
)
1527 struct ip6_tnl
*t
= netdev_priv(dev
);
1528 struct net
*net
= dev_net(dev
);
1529 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
1530 int err
= ip6_tnl_dev_init_gen(dev
);
1535 t
->parms
.proto
= IPPROTO_IPV6
;
1538 ip6_tnl_link_config(t
);
1540 rcu_assign_pointer(ip6n
->tnls_wc
[0], t
);
1544 static int ip6_tnl_validate(struct nlattr
*tb
[], struct nlattr
*data
[])
1551 proto
= nla_get_u8(data
[IFLA_IPTUN_PROTO
]);
1552 if (proto
!= IPPROTO_IPV6
&&
1553 proto
!= IPPROTO_IPIP
&&
1560 static void ip6_tnl_netlink_parms(struct nlattr
*data
[],
1561 struct __ip6_tnl_parm
*parms
)
1563 memset(parms
, 0, sizeof(*parms
));
1568 if (data
[IFLA_IPTUN_LINK
])
1569 parms
->link
= nla_get_u32(data
[IFLA_IPTUN_LINK
]);
1571 if (data
[IFLA_IPTUN_LOCAL
])
1572 nla_memcpy(&parms
->laddr
, data
[IFLA_IPTUN_LOCAL
],
1573 sizeof(struct in6_addr
));
1575 if (data
[IFLA_IPTUN_REMOTE
])
1576 nla_memcpy(&parms
->raddr
, data
[IFLA_IPTUN_REMOTE
],
1577 sizeof(struct in6_addr
));
1579 if (data
[IFLA_IPTUN_TTL
])
1580 parms
->hop_limit
= nla_get_u8(data
[IFLA_IPTUN_TTL
]);
1582 if (data
[IFLA_IPTUN_ENCAP_LIMIT
])
1583 parms
->encap_limit
= nla_get_u8(data
[IFLA_IPTUN_ENCAP_LIMIT
]);
1585 if (data
[IFLA_IPTUN_FLOWINFO
])
1586 parms
->flowinfo
= nla_get_be32(data
[IFLA_IPTUN_FLOWINFO
]);
1588 if (data
[IFLA_IPTUN_FLAGS
])
1589 parms
->flags
= nla_get_u32(data
[IFLA_IPTUN_FLAGS
]);
1591 if (data
[IFLA_IPTUN_PROTO
])
1592 parms
->proto
= nla_get_u8(data
[IFLA_IPTUN_PROTO
]);
1595 static int ip6_tnl_newlink(struct net
*src_net
, struct net_device
*dev
,
1596 struct nlattr
*tb
[], struct nlattr
*data
[])
1598 struct net
*net
= dev_net(dev
);
1601 nt
= netdev_priv(dev
);
1602 ip6_tnl_netlink_parms(data
, &nt
->parms
);
1604 if (ip6_tnl_locate(net
, &nt
->parms
, 0))
1607 return ip6_tnl_create2(dev
);
1610 static int ip6_tnl_changelink(struct net_device
*dev
, struct nlattr
*tb
[],
1611 struct nlattr
*data
[])
1614 struct __ip6_tnl_parm p
;
1615 struct net
*net
= dev_net(dev
);
1616 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
1618 if (dev
== ip6n
->fb_tnl_dev
)
1621 ip6_tnl_netlink_parms(data
, &p
);
1623 t
= ip6_tnl_locate(net
, &p
, 0);
1629 t
= netdev_priv(dev
);
1631 return ip6_tnl_update(t
, &p
);
1634 static size_t ip6_tnl_get_size(const struct net_device
*dev
)
1637 /* IFLA_IPTUN_LINK */
1639 /* IFLA_IPTUN_LOCAL */
1640 nla_total_size(sizeof(struct in6_addr
)) +
1641 /* IFLA_IPTUN_REMOTE */
1642 nla_total_size(sizeof(struct in6_addr
)) +
1643 /* IFLA_IPTUN_TTL */
1645 /* IFLA_IPTUN_ENCAP_LIMIT */
1647 /* IFLA_IPTUN_FLOWINFO */
1649 /* IFLA_IPTUN_FLAGS */
1651 /* IFLA_IPTUN_PROTO */
1656 static int ip6_tnl_fill_info(struct sk_buff
*skb
, const struct net_device
*dev
)
1658 struct ip6_tnl
*tunnel
= netdev_priv(dev
);
1659 struct __ip6_tnl_parm
*parm
= &tunnel
->parms
;
1661 if (nla_put_u32(skb
, IFLA_IPTUN_LINK
, parm
->link
) ||
1662 nla_put(skb
, IFLA_IPTUN_LOCAL
, sizeof(struct in6_addr
),
1664 nla_put(skb
, IFLA_IPTUN_REMOTE
, sizeof(struct in6_addr
),
1666 nla_put_u8(skb
, IFLA_IPTUN_TTL
, parm
->hop_limit
) ||
1667 nla_put_u8(skb
, IFLA_IPTUN_ENCAP_LIMIT
, parm
->encap_limit
) ||
1668 nla_put_be32(skb
, IFLA_IPTUN_FLOWINFO
, parm
->flowinfo
) ||
1669 nla_put_u32(skb
, IFLA_IPTUN_FLAGS
, parm
->flags
) ||
1670 nla_put_u8(skb
, IFLA_IPTUN_PROTO
, parm
->proto
))
1671 goto nla_put_failure
;
1678 static const struct nla_policy ip6_tnl_policy
[IFLA_IPTUN_MAX
+ 1] = {
1679 [IFLA_IPTUN_LINK
] = { .type
= NLA_U32
},
1680 [IFLA_IPTUN_LOCAL
] = { .len
= sizeof(struct in6_addr
) },
1681 [IFLA_IPTUN_REMOTE
] = { .len
= sizeof(struct in6_addr
) },
1682 [IFLA_IPTUN_TTL
] = { .type
= NLA_U8
},
1683 [IFLA_IPTUN_ENCAP_LIMIT
] = { .type
= NLA_U8
},
1684 [IFLA_IPTUN_FLOWINFO
] = { .type
= NLA_U32
},
1685 [IFLA_IPTUN_FLAGS
] = { .type
= NLA_U32
},
1686 [IFLA_IPTUN_PROTO
] = { .type
= NLA_U8
},
1689 static struct rtnl_link_ops ip6_link_ops __read_mostly
= {
1691 .maxtype
= IFLA_IPTUN_MAX
,
1692 .policy
= ip6_tnl_policy
,
1693 .priv_size
= sizeof(struct ip6_tnl
),
1694 .setup
= ip6_tnl_dev_setup
,
1695 .validate
= ip6_tnl_validate
,
1696 .newlink
= ip6_tnl_newlink
,
1697 .changelink
= ip6_tnl_changelink
,
1698 .get_size
= ip6_tnl_get_size
,
1699 .fill_info
= ip6_tnl_fill_info
,
1702 static struct xfrm6_tunnel ip4ip6_handler __read_mostly
= {
1703 .handler
= ip4ip6_rcv
,
1704 .err_handler
= ip4ip6_err
,
1708 static struct xfrm6_tunnel ip6ip6_handler __read_mostly
= {
1709 .handler
= ip6ip6_rcv
,
1710 .err_handler
= ip6ip6_err
,
1714 static void __net_exit
ip6_tnl_destroy_tunnels(struct ip6_tnl_net
*ip6n
)
1720 for (h
= 0; h
< HASH_SIZE
; h
++) {
1721 t
= rtnl_dereference(ip6n
->tnls_r_l
[h
]);
1723 unregister_netdevice_queue(t
->dev
, &list
);
1724 t
= rtnl_dereference(t
->next
);
1728 t
= rtnl_dereference(ip6n
->tnls_wc
[0]);
1729 unregister_netdevice_queue(t
->dev
, &list
);
1730 unregister_netdevice_many(&list
);
1733 static int __net_init
ip6_tnl_init_net(struct net
*net
)
1735 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
1736 struct ip6_tnl
*t
= NULL
;
1739 ip6n
->tnls
[0] = ip6n
->tnls_wc
;
1740 ip6n
->tnls
[1] = ip6n
->tnls_r_l
;
1743 ip6n
->fb_tnl_dev
= alloc_netdev(sizeof(struct ip6_tnl
), "ip6tnl0",
1746 if (!ip6n
->fb_tnl_dev
)
1748 dev_net_set(ip6n
->fb_tnl_dev
, net
);
1750 err
= ip6_fb_tnl_dev_init(ip6n
->fb_tnl_dev
);
1754 err
= register_netdev(ip6n
->fb_tnl_dev
);
1758 t
= netdev_priv(ip6n
->fb_tnl_dev
);
1760 strcpy(t
->parms
.name
, ip6n
->fb_tnl_dev
->name
);
1764 ip6_dev_free(ip6n
->fb_tnl_dev
);
1769 static void __net_exit
ip6_tnl_exit_net(struct net
*net
)
1771 struct ip6_tnl_net
*ip6n
= net_generic(net
, ip6_tnl_net_id
);
1774 ip6_tnl_destroy_tunnels(ip6n
);
1778 static struct pernet_operations ip6_tnl_net_ops
= {
1779 .init
= ip6_tnl_init_net
,
1780 .exit
= ip6_tnl_exit_net
,
1781 .id
= &ip6_tnl_net_id
,
1782 .size
= sizeof(struct ip6_tnl_net
),
1786 * ip6_tunnel_init - register protocol and reserve needed resources
1788 * Return: 0 on success
1791 static int __init
ip6_tunnel_init(void)
1795 err
= register_pernet_device(&ip6_tnl_net_ops
);
1799 err
= xfrm6_tunnel_register(&ip4ip6_handler
, AF_INET
);
1801 pr_err("%s: can't register ip4ip6\n", __func__
);
1805 err
= xfrm6_tunnel_register(&ip6ip6_handler
, AF_INET6
);
1807 pr_err("%s: can't register ip6ip6\n", __func__
);
1810 err
= rtnl_link_register(&ip6_link_ops
);
1812 goto rtnl_link_failed
;
1817 xfrm6_tunnel_deregister(&ip6ip6_handler
, AF_INET6
);
1819 xfrm6_tunnel_deregister(&ip4ip6_handler
, AF_INET
);
1821 unregister_pernet_device(&ip6_tnl_net_ops
);
1827 * ip6_tunnel_cleanup - free resources and unregister protocol
1830 static void __exit
ip6_tunnel_cleanup(void)
1832 rtnl_link_unregister(&ip6_link_ops
);
1833 if (xfrm6_tunnel_deregister(&ip4ip6_handler
, AF_INET
))
1834 pr_info("%s: can't deregister ip4ip6\n", __func__
);
1836 if (xfrm6_tunnel_deregister(&ip6ip6_handler
, AF_INET6
))
1837 pr_info("%s: can't deregister ip6ip6\n", __func__
);
1839 unregister_pernet_device(&ip6_tnl_net_ops
);
1842 module_init(ip6_tunnel_init
);
1843 module_exit(ip6_tunnel_cleanup
);