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 * 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.
15 * Roger Venning <r.venning@telstra.com>: 6to4 support
16 * Nate Thompson <nate@thebog.net>: 6to4 support
17 * Fred Templin <fred.l.templin@boeing.com>: isatap support
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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 <linux/slab.h>
34 #include <asm/uaccess.h>
35 #include <linux/init.h>
36 #include <linux/netfilter_ipv4.h>
37 #include <linux/if_ether.h>
43 #include <net/protocol.h>
44 #include <net/transp_v6.h>
45 #include <net/ip6_fib.h>
46 #include <net/ip6_route.h>
47 #include <net/ndisc.h>
48 #include <net/addrconf.h>
53 #include <net/inet_ecn.h>
55 #include <net/dsfield.h>
56 #include <net/net_namespace.h>
57 #include <net/netns/generic.h>
60 This version of net/ipv6/sit.c is cloned of net/ipv4/ip_gre.c
62 For comments look at net/ipv4/ip_gre.c --ANK
66 #define HASH(addr) (((__force u32)addr^((__force u32)addr>>4))&0xF)
68 static bool log_ecn_error = true;
69 module_param(log_ecn_error, bool, 0644);
70 MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");
72 static int ipip6_tunnel_init(struct net_device *dev);
73 static void ipip6_tunnel_setup(struct net_device *dev);
74 static void ipip6_dev_free(struct net_device *dev);
75 static struct rtnl_link_ops sit_link_ops __read_mostly;
77 static int sit_net_id __read_mostly;
79 struct ip_tunnel __rcu *tunnels_r_l[HASH_SIZE];
80 struct ip_tunnel __rcu *tunnels_r[HASH_SIZE];
81 struct ip_tunnel __rcu *tunnels_l[HASH_SIZE];
82 struct ip_tunnel __rcu *tunnels_wc[1];
83 struct ip_tunnel __rcu **tunnels[4];
85 struct net_device *fb_tunnel_dev;
88 static struct rtnl_link_stats64 *ipip6_get_stats64(struct net_device *dev,
89 struct rtnl_link_stats64 *tot)
93 for_each_possible_cpu(i) {
94 const struct pcpu_tstats *tstats = per_cpu_ptr(dev->tstats, i);
95 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
99 start = u64_stats_fetch_begin_bh(&tstats->syncp);
100 rx_packets = tstats->rx_packets;
101 tx_packets = tstats->tx_packets;
102 rx_bytes = tstats->rx_bytes;
103 tx_bytes = tstats->tx_bytes;
104 } while (u64_stats_fetch_retry_bh(&tstats->syncp, start));
106 tot->rx_packets += rx_packets;
107 tot->tx_packets += tx_packets;
108 tot->rx_bytes += rx_bytes;
109 tot->tx_bytes += tx_bytes;
112 tot->rx_errors = dev->stats.rx_errors;
113 tot->rx_frame_errors = dev->stats.rx_frame_errors;
114 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
115 tot->tx_carrier_errors = dev->stats.tx_carrier_errors;
116 tot->tx_dropped = dev->stats.tx_dropped;
117 tot->tx_aborted_errors = dev->stats.tx_aborted_errors;
118 tot->tx_errors = dev->stats.tx_errors;
124 * Must be invoked with rcu_read_lock
126 static struct ip_tunnel *ipip6_tunnel_lookup(struct net *net,
127 struct net_device *dev, __be32 remote, __be32 local)
129 unsigned int h0 = HASH(remote);
130 unsigned int h1 = HASH(local);
132 struct sit_net *sitn = net_generic(net, sit_net_id);
134 for_each_ip_tunnel_rcu(t, sitn->tunnels_r_l[h0 ^ h1]) {
135 if (local == t->parms.iph.saddr &&
136 remote == t->parms.iph.daddr &&
137 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
138 (t->dev->flags & IFF_UP))
141 for_each_ip_tunnel_rcu(t, sitn->tunnels_r[h0]) {
142 if (remote == t->parms.iph.daddr &&
143 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
144 (t->dev->flags & IFF_UP))
147 for_each_ip_tunnel_rcu(t, sitn->tunnels_l[h1]) {
148 if (local == t->parms.iph.saddr &&
149 (!dev || !t->parms.link || dev->iflink == t->parms.link) &&
150 (t->dev->flags & IFF_UP))
153 t = rcu_dereference(sitn->tunnels_wc[0]);
154 if ((t != NULL) && (t->dev->flags & IFF_UP))
159 static struct ip_tunnel __rcu **__ipip6_bucket(struct sit_net *sitn,
160 struct ip_tunnel_parm *parms)
162 __be32 remote = parms->iph.daddr;
163 __be32 local = parms->iph.saddr;
175 return &sitn->tunnels[prio][h];
178 static inline struct ip_tunnel __rcu **ipip6_bucket(struct sit_net *sitn,
181 return __ipip6_bucket(sitn, &t->parms);
184 static void ipip6_tunnel_unlink(struct sit_net *sitn, struct ip_tunnel *t)
186 struct ip_tunnel __rcu **tp;
187 struct ip_tunnel *iter;
189 for (tp = ipip6_bucket(sitn, t);
190 (iter = rtnl_dereference(*tp)) != NULL;
193 rcu_assign_pointer(*tp, t->next);
199 static void ipip6_tunnel_link(struct sit_net *sitn, struct ip_tunnel *t)
201 struct ip_tunnel __rcu **tp = ipip6_bucket(sitn, t);
203 rcu_assign_pointer(t->next, rtnl_dereference(*tp));
204 rcu_assign_pointer(*tp, t);
207 static void ipip6_tunnel_clone_6rd(struct net_device *dev, struct sit_net *sitn)
209 #ifdef CONFIG_IPV6_SIT_6RD
210 struct ip_tunnel *t = netdev_priv(dev);
212 if (t->dev == sitn->fb_tunnel_dev) {
213 ipv6_addr_set(&t->ip6rd.prefix, htonl(0x20020000), 0, 0, 0);
214 t->ip6rd.relay_prefix = 0;
215 t->ip6rd.prefixlen = 16;
216 t->ip6rd.relay_prefixlen = 0;
218 struct ip_tunnel *t0 = netdev_priv(sitn->fb_tunnel_dev);
219 memcpy(&t->ip6rd, &t0->ip6rd, sizeof(t->ip6rd));
224 static int ipip6_tunnel_create(struct net_device *dev)
226 struct ip_tunnel *t = netdev_priv(dev);
227 struct net *net = dev_net(dev);
228 struct sit_net *sitn = net_generic(net, sit_net_id);
231 err = ipip6_tunnel_init(dev);
234 ipip6_tunnel_clone_6rd(dev, sitn);
236 if ((__force u16)t->parms.i_flags & SIT_ISATAP)
237 dev->priv_flags |= IFF_ISATAP;
239 err = register_netdevice(dev);
243 strcpy(t->parms.name, dev->name);
244 dev->rtnl_link_ops = &sit_link_ops;
248 ipip6_tunnel_link(sitn, t);
255 static struct ip_tunnel *ipip6_tunnel_locate(struct net *net,
256 struct ip_tunnel_parm *parms, int create)
258 __be32 remote = parms->iph.daddr;
259 __be32 local = parms->iph.saddr;
260 struct ip_tunnel *t, *nt;
261 struct ip_tunnel __rcu **tp;
262 struct net_device *dev;
264 struct sit_net *sitn = net_generic(net, sit_net_id);
266 for (tp = __ipip6_bucket(sitn, parms);
267 (t = rtnl_dereference(*tp)) != NULL;
269 if (local == t->parms.iph.saddr &&
270 remote == t->parms.iph.daddr &&
271 parms->link == t->parms.link) {
282 strlcpy(name, parms->name, IFNAMSIZ);
284 strcpy(name, "sit%d");
286 dev = alloc_netdev(sizeof(*t), name, ipip6_tunnel_setup);
290 dev_net_set(dev, net);
292 nt = netdev_priv(dev);
295 if (ipip6_tunnel_create(dev) < 0)
306 #define for_each_prl_rcu(start) \
307 for (prl = rcu_dereference(start); \
309 prl = rcu_dereference(prl->next))
311 static struct ip_tunnel_prl_entry *
312 __ipip6_tunnel_locate_prl(struct ip_tunnel *t, __be32 addr)
314 struct ip_tunnel_prl_entry *prl;
316 for_each_prl_rcu(t->prl)
317 if (prl->addr == addr)
323 static int ipip6_tunnel_get_prl(struct ip_tunnel *t,
324 struct ip_tunnel_prl __user *a)
326 struct ip_tunnel_prl kprl, *kp;
327 struct ip_tunnel_prl_entry *prl;
328 unsigned int cmax, c = 0, ca, len;
331 if (copy_from_user(&kprl, a, sizeof(kprl)))
333 cmax = kprl.datalen / sizeof(kprl);
334 if (cmax > 1 && kprl.addr != htonl(INADDR_ANY))
337 /* For simple GET or for root users,
338 * we try harder to allocate.
340 kp = (cmax <= 1 || capable(CAP_NET_ADMIN)) ?
341 kcalloc(cmax, sizeof(*kp), GFP_KERNEL) :
346 ca = t->prl_count < cmax ? t->prl_count : cmax;
349 /* We don't try hard to allocate much memory for
351 * For root users, retry allocating enough memory for
354 kp = kcalloc(ca, sizeof(*kp), GFP_ATOMIC);
362 for_each_prl_rcu(t->prl) {
365 if (kprl.addr != htonl(INADDR_ANY) && prl->addr != kprl.addr)
367 kp[c].addr = prl->addr;
368 kp[c].flags = prl->flags;
370 if (kprl.addr != htonl(INADDR_ANY))
376 len = sizeof(*kp) * c;
378 if ((len && copy_to_user(a + 1, kp, len)) || put_user(len, &a->datalen))
387 ipip6_tunnel_add_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a, int chg)
389 struct ip_tunnel_prl_entry *p;
392 if (a->addr == htonl(INADDR_ANY))
397 for (p = rtnl_dereference(t->prl); p; p = rtnl_dereference(p->next)) {
398 if (p->addr == a->addr) {
413 p = kzalloc(sizeof(struct ip_tunnel_prl_entry), GFP_KERNEL);
423 rcu_assign_pointer(t->prl, p);
428 static void prl_list_destroy_rcu(struct rcu_head *head)
430 struct ip_tunnel_prl_entry *p, *n;
432 p = container_of(head, struct ip_tunnel_prl_entry, rcu_head);
434 n = rcu_dereference_protected(p->next, 1);
441 ipip6_tunnel_del_prl(struct ip_tunnel *t, struct ip_tunnel_prl *a)
443 struct ip_tunnel_prl_entry *x;
444 struct ip_tunnel_prl_entry __rcu **p;
449 if (a && a->addr != htonl(INADDR_ANY)) {
451 (x = rtnl_dereference(*p)) != NULL;
453 if (x->addr == a->addr) {
455 kfree_rcu(x, rcu_head);
462 x = rtnl_dereference(t->prl);
465 call_rcu(&x->rcu_head, prl_list_destroy_rcu);
474 isatap_chksrc(struct sk_buff *skb, const struct iphdr *iph, struct ip_tunnel *t)
476 struct ip_tunnel_prl_entry *p;
480 p = __ipip6_tunnel_locate_prl(t, iph->saddr);
482 if (p->flags & PRL_DEFAULT)
483 skb->ndisc_nodetype = NDISC_NODETYPE_DEFAULT;
485 skb->ndisc_nodetype = NDISC_NODETYPE_NODEFAULT;
487 const struct in6_addr *addr6 = &ipv6_hdr(skb)->saddr;
489 if (ipv6_addr_is_isatap(addr6) &&
490 (addr6->s6_addr32[3] == iph->saddr) &&
491 ipv6_chk_prefix(addr6, t->dev))
492 skb->ndisc_nodetype = NDISC_NODETYPE_HOST;
500 static void ipip6_tunnel_uninit(struct net_device *dev)
502 struct net *net = dev_net(dev);
503 struct sit_net *sitn = net_generic(net, sit_net_id);
505 if (dev == sitn->fb_tunnel_dev) {
506 RCU_INIT_POINTER(sitn->tunnels_wc[0], NULL);
508 ipip6_tunnel_unlink(sitn, netdev_priv(dev));
509 ipip6_tunnel_del_prl(netdev_priv(dev), NULL);
515 static int ipip6_err(struct sk_buff *skb, u32 info)
518 /* All the routers (except for Linux) return only
519 8 bytes of packet payload. It means, that precise relaying of
520 ICMP in the real Internet is absolutely infeasible.
522 const struct iphdr *iph = (const struct iphdr *)skb->data;
523 const int type = icmp_hdr(skb)->type;
524 const int code = icmp_hdr(skb)->code;
530 case ICMP_PARAMETERPROB:
533 case ICMP_DEST_UNREACH:
536 case ICMP_PORT_UNREACH:
537 /* Impossible event. */
540 /* All others are translated to HOST_UNREACH.
541 rfc2003 contains "deep thoughts" about NET_UNREACH,
542 I believe they are just ether pollution. --ANK
547 case ICMP_TIME_EXCEEDED:
548 if (code != ICMP_EXC_TTL)
557 t = ipip6_tunnel_lookup(dev_net(skb->dev),
564 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) {
565 ipv4_update_pmtu(skb, dev_net(skb->dev), info,
566 t->dev->ifindex, 0, IPPROTO_IPV6, 0);
570 if (type == ICMP_REDIRECT) {
571 ipv4_redirect(skb, dev_net(skb->dev), t->dev->ifindex, 0,
577 if (t->parms.iph.daddr == 0)
581 if (t->parms.iph.ttl == 0 && type == ICMP_TIME_EXCEEDED)
584 if (time_before(jiffies, t->err_time + IPTUNNEL_ERR_TIMEO))
588 t->err_time = jiffies;
593 static int ipip6_rcv(struct sk_buff *skb)
595 const struct iphdr *iph;
596 struct ip_tunnel *tunnel;
599 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
604 tunnel = ipip6_tunnel_lookup(dev_net(skb->dev), skb->dev,
605 iph->saddr, iph->daddr);
606 if (tunnel != NULL) {
607 struct pcpu_tstats *tstats;
610 skb->mac_header = skb->network_header;
611 skb_reset_network_header(skb);
612 IPCB(skb)->flags = 0;
613 skb->protocol = htons(ETH_P_IPV6);
614 skb->pkt_type = PACKET_HOST;
616 if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
617 !isatap_chksrc(skb, iph, tunnel)) {
618 tunnel->dev->stats.rx_errors++;
622 __skb_tunnel_rx(skb, tunnel->dev);
624 err = IP_ECN_decapsulate(iph, skb);
627 net_info_ratelimited("non-ECT from %pI4 with TOS=%#x\n",
628 &iph->saddr, iph->tos);
630 ++tunnel->dev->stats.rx_frame_errors;
631 ++tunnel->dev->stats.rx_errors;
636 tstats = this_cpu_ptr(tunnel->dev->tstats);
637 tstats->rx_packets++;
638 tstats->rx_bytes += skb->len;
645 /* no tunnel matched, let upstream know, ipsec may handle it */
653 * Returns the embedded IPv4 address if the IPv6 address
654 * comes from 6rd / 6to4 (RFC 3056) addr space.
657 __be32 try_6rd(const struct in6_addr *v6dst, struct ip_tunnel *tunnel)
661 #ifdef CONFIG_IPV6_SIT_6RD
662 if (ipv6_prefix_equal(v6dst, &tunnel->ip6rd.prefix,
663 tunnel->ip6rd.prefixlen)) {
664 unsigned int pbw0, pbi0;
668 pbw0 = tunnel->ip6rd.prefixlen >> 5;
669 pbi0 = tunnel->ip6rd.prefixlen & 0x1f;
671 d = (ntohl(v6dst->s6_addr32[pbw0]) << pbi0) >>
672 tunnel->ip6rd.relay_prefixlen;
674 pbi1 = pbi0 - tunnel->ip6rd.relay_prefixlen;
676 d |= ntohl(v6dst->s6_addr32[pbw0 + 1]) >>
679 dst = tunnel->ip6rd.relay_prefix | htonl(d);
682 if (v6dst->s6_addr16[0] == htons(0x2002)) {
683 /* 6to4 v6 addr has 16 bits prefix, 32 v4addr, 16 SLA, ... */
684 memcpy(&dst, &v6dst->s6_addr16[1], 4);
691 * This function assumes it is being called from dev_queue_xmit()
692 * and that skb is filled properly by that function.
695 static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
696 struct net_device *dev)
698 struct ip_tunnel *tunnel = netdev_priv(dev);
699 const struct iphdr *tiph = &tunnel->parms.iph;
700 const struct ipv6hdr *iph6 = ipv6_hdr(skb);
701 u8 tos = tunnel->parms.iph.tos;
702 __be16 df = tiph->frag_off;
703 struct rtable *rt; /* Route to the other host */
704 struct net_device *tdev; /* Device to other host */
705 struct iphdr *iph; /* Our new IP header */
706 unsigned int max_headroom; /* The extra header space needed */
707 __be32 dst = tiph->daddr;
710 const struct in6_addr *addr6;
713 if (skb->protocol != htons(ETH_P_IPV6))
717 tos = ipv6_get_dsfield(iph6);
719 /* ISATAP (RFC4214) - must come before 6to4 */
720 if (dev->priv_flags & IFF_ISATAP) {
721 struct neighbour *neigh = NULL;
722 bool do_tx_error = false;
725 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
728 net_dbg_ratelimited("sit: nexthop == NULL\n");
732 addr6 = (const struct in6_addr *)&neigh->primary_key;
733 addr_type = ipv6_addr_type(addr6);
735 if ((addr_type & IPV6_ADDR_UNICAST) &&
736 ipv6_addr_is_isatap(addr6))
737 dst = addr6->s6_addr32[3];
741 neigh_release(neigh);
747 dst = try_6rd(&iph6->daddr, tunnel);
750 struct neighbour *neigh = NULL;
751 bool do_tx_error = false;
754 neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);
757 net_dbg_ratelimited("sit: nexthop == NULL\n");
761 addr6 = (const struct in6_addr *)&neigh->primary_key;
762 addr_type = ipv6_addr_type(addr6);
764 if (addr_type == IPV6_ADDR_ANY) {
765 addr6 = &ipv6_hdr(skb)->daddr;
766 addr_type = ipv6_addr_type(addr6);
769 if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
770 dst = addr6->s6_addr32[3];
774 neigh_release(neigh);
779 rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
782 IPPROTO_IPV6, RT_TOS(tos),
785 dev->stats.tx_carrier_errors++;
788 if (rt->rt_type != RTN_UNICAST) {
790 dev->stats.tx_carrier_errors++;
797 dev->stats.collisions++;
802 mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
805 dev->stats.collisions++;
810 if (mtu < IPV6_MIN_MTU) {
815 if (tunnel->parms.iph.daddr && skb_dst(skb))
816 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), NULL, skb, mtu);
818 if (skb->len > mtu) {
819 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
825 if (tunnel->err_count > 0) {
826 if (time_before(jiffies,
827 tunnel->err_time + IPTUNNEL_ERR_TIMEO)) {
829 dst_link_failure(skb);
831 tunnel->err_count = 0;
835 * Okay, now see if we can stuff it in the buffer as-is.
837 max_headroom = LL_RESERVED_SPACE(tdev)+sizeof(struct iphdr);
839 if (skb_headroom(skb) < max_headroom || skb_shared(skb) ||
840 (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
841 struct sk_buff *new_skb = skb_realloc_headroom(skb, max_headroom);
844 dev->stats.tx_dropped++;
849 skb_set_owner_w(new_skb, skb->sk);
852 iph6 = ipv6_hdr(skb);
855 skb->transport_header = skb->network_header;
856 skb_push(skb, sizeof(struct iphdr));
857 skb_reset_network_header(skb);
858 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
859 IPCB(skb)->flags = 0;
861 skb_dst_set(skb, &rt->dst);
864 * Push down and install the IPIP header.
869 iph->ihl = sizeof(struct iphdr)>>2;
871 iph->protocol = IPPROTO_IPV6;
872 iph->tos = INET_ECN_encapsulate(tos, ipv6_get_dsfield(iph6));
873 iph->daddr = fl4.daddr;
874 iph->saddr = fl4.saddr;
876 if ((iph->ttl = tiph->ttl) == 0)
877 iph->ttl = iph6->hop_limit;
879 iptunnel_xmit(skb, dev);
883 dst_link_failure(skb);
885 dev->stats.tx_errors++;
890 static void ipip6_tunnel_bind_dev(struct net_device *dev)
892 struct net_device *tdev = NULL;
893 struct ip_tunnel *tunnel;
894 const struct iphdr *iph;
897 tunnel = netdev_priv(dev);
898 iph = &tunnel->parms.iph;
901 struct rtable *rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
902 iph->daddr, iph->saddr,
912 dev->flags |= IFF_POINTOPOINT;
915 if (!tdev && tunnel->parms.link)
916 tdev = __dev_get_by_index(dev_net(dev), tunnel->parms.link);
919 dev->hard_header_len = tdev->hard_header_len + sizeof(struct iphdr);
920 dev->mtu = tdev->mtu - sizeof(struct iphdr);
921 if (dev->mtu < IPV6_MIN_MTU)
922 dev->mtu = IPV6_MIN_MTU;
924 dev->iflink = tunnel->parms.link;
927 static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p)
929 struct net *net = dev_net(t->dev);
930 struct sit_net *sitn = net_generic(net, sit_net_id);
932 ipip6_tunnel_unlink(sitn, t);
934 t->parms.iph.saddr = p->iph.saddr;
935 t->parms.iph.daddr = p->iph.daddr;
936 memcpy(t->dev->dev_addr, &p->iph.saddr, 4);
937 memcpy(t->dev->broadcast, &p->iph.daddr, 4);
938 ipip6_tunnel_link(sitn, t);
939 t->parms.iph.ttl = p->iph.ttl;
940 t->parms.iph.tos = p->iph.tos;
941 if (t->parms.link != p->link) {
942 t->parms.link = p->link;
943 ipip6_tunnel_bind_dev(t->dev);
945 netdev_state_change(t->dev);
948 #ifdef CONFIG_IPV6_SIT_6RD
949 static int ipip6_tunnel_update_6rd(struct ip_tunnel *t,
950 struct ip_tunnel_6rd *ip6rd)
952 struct in6_addr prefix;
955 if (ip6rd->relay_prefixlen > 32 ||
956 ip6rd->prefixlen + (32 - ip6rd->relay_prefixlen) > 64)
959 ipv6_addr_prefix(&prefix, &ip6rd->prefix, ip6rd->prefixlen);
960 if (!ipv6_addr_equal(&prefix, &ip6rd->prefix))
962 if (ip6rd->relay_prefixlen)
963 relay_prefix = ip6rd->relay_prefix &
964 htonl(0xffffffffUL <<
965 (32 - ip6rd->relay_prefixlen));
968 if (relay_prefix != ip6rd->relay_prefix)
971 t->ip6rd.prefix = prefix;
972 t->ip6rd.relay_prefix = relay_prefix;
973 t->ip6rd.prefixlen = ip6rd->prefixlen;
974 t->ip6rd.relay_prefixlen = ip6rd->relay_prefixlen;
975 netdev_state_change(t->dev);
981 ipip6_tunnel_ioctl (struct net_device *dev, struct ifreq *ifr, int cmd)
984 struct ip_tunnel_parm p;
985 struct ip_tunnel_prl prl;
987 struct net *net = dev_net(dev);
988 struct sit_net *sitn = net_generic(net, sit_net_id);
989 #ifdef CONFIG_IPV6_SIT_6RD
990 struct ip_tunnel_6rd ip6rd;
995 #ifdef CONFIG_IPV6_SIT_6RD
999 if (dev == sitn->fb_tunnel_dev) {
1000 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p))) {
1004 t = ipip6_tunnel_locate(net, &p, 0);
1007 t = netdev_priv(dev);
1010 if (cmd == SIOCGETTUNNEL) {
1011 memcpy(&p, &t->parms, sizeof(p));
1012 if (copy_to_user(ifr->ifr_ifru.ifru_data, &p,
1015 #ifdef CONFIG_IPV6_SIT_6RD
1017 ip6rd.prefix = t->ip6rd.prefix;
1018 ip6rd.relay_prefix = t->ip6rd.relay_prefix;
1019 ip6rd.prefixlen = t->ip6rd.prefixlen;
1020 ip6rd.relay_prefixlen = t->ip6rd.relay_prefixlen;
1021 if (copy_to_user(ifr->ifr_ifru.ifru_data, &ip6rd,
1032 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1036 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1040 if (p.iph.version != 4 || p.iph.protocol != IPPROTO_IPV6 ||
1041 p.iph.ihl != 5 || (p.iph.frag_off&htons(~IP_DF)))
1044 p.iph.frag_off |= htons(IP_DF);
1046 t = ipip6_tunnel_locate(net, &p, cmd == SIOCADDTUNNEL);
1048 if (dev != sitn->fb_tunnel_dev && cmd == SIOCCHGTUNNEL) {
1050 if (t->dev != dev) {
1055 if (((dev->flags&IFF_POINTOPOINT) && !p.iph.daddr) ||
1056 (!(dev->flags&IFF_POINTOPOINT) && p.iph.daddr)) {
1060 t = netdev_priv(dev);
1063 ipip6_tunnel_update(t, &p);
1068 if (copy_to_user(ifr->ifr_ifru.ifru_data, &t->parms, sizeof(p)))
1071 err = (cmd == SIOCADDTUNNEL ? -ENOBUFS : -ENOENT);
1076 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1079 if (dev == sitn->fb_tunnel_dev) {
1081 if (copy_from_user(&p, ifr->ifr_ifru.ifru_data, sizeof(p)))
1084 if ((t = ipip6_tunnel_locate(net, &p, 0)) == NULL)
1087 if (t == netdev_priv(sitn->fb_tunnel_dev))
1091 unregister_netdevice(dev);
1097 if (dev == sitn->fb_tunnel_dev)
1100 if (!(t = netdev_priv(dev)))
1102 err = ipip6_tunnel_get_prl(t, ifr->ifr_ifru.ifru_data);
1109 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1112 if (dev == sitn->fb_tunnel_dev)
1115 if (copy_from_user(&prl, ifr->ifr_ifru.ifru_data, sizeof(prl)))
1118 if (!(t = netdev_priv(dev)))
1123 err = ipip6_tunnel_del_prl(t, &prl);
1127 err = ipip6_tunnel_add_prl(t, &prl, cmd == SIOCCHGPRL);
1130 netdev_state_change(dev);
1133 #ifdef CONFIG_IPV6_SIT_6RD
1138 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1142 if (copy_from_user(&ip6rd, ifr->ifr_ifru.ifru_data,
1146 t = netdev_priv(dev);
1148 if (cmd != SIOCDEL6RD) {
1149 err = ipip6_tunnel_update_6rd(t, &ip6rd);
1153 ipip6_tunnel_clone_6rd(dev, sitn);
1167 static int ipip6_tunnel_change_mtu(struct net_device *dev, int new_mtu)
1169 if (new_mtu < IPV6_MIN_MTU || new_mtu > 0xFFF8 - sizeof(struct iphdr))
1175 static const struct net_device_ops ipip6_netdev_ops = {
1176 .ndo_uninit = ipip6_tunnel_uninit,
1177 .ndo_start_xmit = ipip6_tunnel_xmit,
1178 .ndo_do_ioctl = ipip6_tunnel_ioctl,
1179 .ndo_change_mtu = ipip6_tunnel_change_mtu,
1180 .ndo_get_stats64= ipip6_get_stats64,
1183 static void ipip6_dev_free(struct net_device *dev)
1185 free_percpu(dev->tstats);
1189 static void ipip6_tunnel_setup(struct net_device *dev)
1191 dev->netdev_ops = &ipip6_netdev_ops;
1192 dev->destructor = ipip6_dev_free;
1194 dev->type = ARPHRD_SIT;
1195 dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr);
1196 dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr);
1197 dev->flags = IFF_NOARP;
1198 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
1201 dev->features |= NETIF_F_NETNS_LOCAL;
1202 dev->features |= NETIF_F_LLTX;
1205 static int ipip6_tunnel_init(struct net_device *dev)
1207 struct ip_tunnel *tunnel = netdev_priv(dev);
1211 memcpy(dev->dev_addr, &tunnel->parms.iph.saddr, 4);
1212 memcpy(dev->broadcast, &tunnel->parms.iph.daddr, 4);
1214 ipip6_tunnel_bind_dev(dev);
1215 dev->tstats = alloc_percpu(struct pcpu_tstats);
1222 static int __net_init ipip6_fb_tunnel_init(struct net_device *dev)
1224 struct ip_tunnel *tunnel = netdev_priv(dev);
1225 struct iphdr *iph = &tunnel->parms.iph;
1226 struct net *net = dev_net(dev);
1227 struct sit_net *sitn = net_generic(net, sit_net_id);
1230 strcpy(tunnel->parms.name, dev->name);
1233 iph->protocol = IPPROTO_IPV6;
1237 dev->tstats = alloc_percpu(struct pcpu_tstats);
1241 rcu_assign_pointer(sitn->tunnels_wc[0], tunnel);
1245 static void ipip6_netlink_parms(struct nlattr *data[],
1246 struct ip_tunnel_parm *parms)
1248 memset(parms, 0, sizeof(*parms));
1250 parms->iph.version = 4;
1251 parms->iph.protocol = IPPROTO_IPV6;
1253 parms->iph.ttl = 64;
1258 if (data[IFLA_IPTUN_LINK])
1259 parms->link = nla_get_u32(data[IFLA_IPTUN_LINK]);
1261 if (data[IFLA_IPTUN_LOCAL])
1262 parms->iph.saddr = nla_get_be32(data[IFLA_IPTUN_LOCAL]);
1264 if (data[IFLA_IPTUN_REMOTE])
1265 parms->iph.daddr = nla_get_be32(data[IFLA_IPTUN_REMOTE]);
1267 if (data[IFLA_IPTUN_TTL]) {
1268 parms->iph.ttl = nla_get_u8(data[IFLA_IPTUN_TTL]);
1270 parms->iph.frag_off = htons(IP_DF);
1273 if (data[IFLA_IPTUN_TOS])
1274 parms->iph.tos = nla_get_u8(data[IFLA_IPTUN_TOS]);
1276 if (!data[IFLA_IPTUN_PMTUDISC] || nla_get_u8(data[IFLA_IPTUN_PMTUDISC]))
1277 parms->iph.frag_off = htons(IP_DF);
1279 if (data[IFLA_IPTUN_FLAGS])
1280 parms->i_flags = nla_get_be16(data[IFLA_IPTUN_FLAGS]);
1283 #ifdef CONFIG_IPV6_SIT_6RD
1284 /* This function returns true when 6RD attributes are present in the nl msg */
1285 static bool ipip6_netlink_6rd_parms(struct nlattr *data[],
1286 struct ip_tunnel_6rd *ip6rd)
1289 memset(ip6rd, 0, sizeof(*ip6rd));
1294 if (data[IFLA_IPTUN_6RD_PREFIX]) {
1296 nla_memcpy(&ip6rd->prefix, data[IFLA_IPTUN_6RD_PREFIX],
1297 sizeof(struct in6_addr));
1300 if (data[IFLA_IPTUN_6RD_RELAY_PREFIX]) {
1302 ip6rd->relay_prefix =
1303 nla_get_be32(data[IFLA_IPTUN_6RD_RELAY_PREFIX]);
1306 if (data[IFLA_IPTUN_6RD_PREFIXLEN]) {
1308 ip6rd->prefixlen = nla_get_u16(data[IFLA_IPTUN_6RD_PREFIXLEN]);
1311 if (data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]) {
1313 ip6rd->relay_prefixlen =
1314 nla_get_u16(data[IFLA_IPTUN_6RD_RELAY_PREFIXLEN]);
1321 static int ipip6_newlink(struct net *src_net, struct net_device *dev,
1322 struct nlattr *tb[], struct nlattr *data[])
1324 struct net *net = dev_net(dev);
1325 struct ip_tunnel *nt;
1326 #ifdef CONFIG_IPV6_SIT_6RD
1327 struct ip_tunnel_6rd ip6rd;
1331 nt = netdev_priv(dev);
1332 ipip6_netlink_parms(data, &nt->parms);
1334 if (ipip6_tunnel_locate(net, &nt->parms, 0))
1337 err = ipip6_tunnel_create(dev);
1341 #ifdef CONFIG_IPV6_SIT_6RD
1342 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1343 err = ipip6_tunnel_update_6rd(nt, &ip6rd);
1349 static int ipip6_changelink(struct net_device *dev, struct nlattr *tb[],
1350 struct nlattr *data[])
1352 struct ip_tunnel *t;
1353 struct ip_tunnel_parm p;
1354 struct net *net = dev_net(dev);
1355 struct sit_net *sitn = net_generic(net, sit_net_id);
1356 #ifdef CONFIG_IPV6_SIT_6RD
1357 struct ip_tunnel_6rd ip6rd;
1360 if (dev == sitn->fb_tunnel_dev)
1363 ipip6_netlink_parms(data, &p);
1365 if (((dev->flags & IFF_POINTOPOINT) && !p.iph.daddr) ||
1366 (!(dev->flags & IFF_POINTOPOINT) && p.iph.daddr))
1369 t = ipip6_tunnel_locate(net, &p, 0);
1375 t = netdev_priv(dev);
1377 ipip6_tunnel_update(t, &p);
1379 #ifdef CONFIG_IPV6_SIT_6RD
1380 if (ipip6_netlink_6rd_parms(data, &ip6rd))
1381 return ipip6_tunnel_update_6rd(t, &ip6rd);
1387 static size_t ipip6_get_size(const struct net_device *dev)
1390 /* IFLA_IPTUN_LINK */
1392 /* IFLA_IPTUN_LOCAL */
1394 /* IFLA_IPTUN_REMOTE */
1396 /* IFLA_IPTUN_TTL */
1398 /* IFLA_IPTUN_TOS */
1400 /* IFLA_IPTUN_PMTUDISC */
1402 /* IFLA_IPTUN_FLAGS */
1404 #ifdef CONFIG_IPV6_SIT_6RD
1405 /* IFLA_IPTUN_6RD_PREFIX */
1406 nla_total_size(sizeof(struct in6_addr)) +
1407 /* IFLA_IPTUN_6RD_RELAY_PREFIX */
1409 /* IFLA_IPTUN_6RD_PREFIXLEN */
1411 /* IFLA_IPTUN_6RD_RELAY_PREFIXLEN */
1417 static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1419 struct ip_tunnel *tunnel = netdev_priv(dev);
1420 struct ip_tunnel_parm *parm = &tunnel->parms;
1422 if (nla_put_u32(skb, IFLA_IPTUN_LINK, parm->link) ||
1423 nla_put_be32(skb, IFLA_IPTUN_LOCAL, parm->iph.saddr) ||
1424 nla_put_be32(skb, IFLA_IPTUN_REMOTE, parm->iph.daddr) ||
1425 nla_put_u8(skb, IFLA_IPTUN_TTL, parm->iph.ttl) ||
1426 nla_put_u8(skb, IFLA_IPTUN_TOS, parm->iph.tos) ||
1427 nla_put_u8(skb, IFLA_IPTUN_PMTUDISC,
1428 !!(parm->iph.frag_off & htons(IP_DF))) ||
1429 nla_put_be16(skb, IFLA_IPTUN_FLAGS, parm->i_flags))
1430 goto nla_put_failure;
1432 #ifdef CONFIG_IPV6_SIT_6RD
1433 if (nla_put(skb, IFLA_IPTUN_6RD_PREFIX, sizeof(struct in6_addr),
1434 &tunnel->ip6rd.prefix) ||
1435 nla_put_be32(skb, IFLA_IPTUN_6RD_RELAY_PREFIX,
1436 tunnel->ip6rd.relay_prefix) ||
1437 nla_put_u16(skb, IFLA_IPTUN_6RD_PREFIXLEN,
1438 tunnel->ip6rd.prefixlen) ||
1439 nla_put_u16(skb, IFLA_IPTUN_6RD_RELAY_PREFIXLEN,
1440 tunnel->ip6rd.relay_prefixlen))
1441 goto nla_put_failure;
1450 static const struct nla_policy ipip6_policy[IFLA_IPTUN_MAX + 1] = {
1451 [IFLA_IPTUN_LINK] = { .type = NLA_U32 },
1452 [IFLA_IPTUN_LOCAL] = { .type = NLA_U32 },
1453 [IFLA_IPTUN_REMOTE] = { .type = NLA_U32 },
1454 [IFLA_IPTUN_TTL] = { .type = NLA_U8 },
1455 [IFLA_IPTUN_TOS] = { .type = NLA_U8 },
1456 [IFLA_IPTUN_PMTUDISC] = { .type = NLA_U8 },
1457 [IFLA_IPTUN_FLAGS] = { .type = NLA_U16 },
1458 #ifdef CONFIG_IPV6_SIT_6RD
1459 [IFLA_IPTUN_6RD_PREFIX] = { .len = sizeof(struct in6_addr) },
1460 [IFLA_IPTUN_6RD_RELAY_PREFIX] = { .type = NLA_U32 },
1461 [IFLA_IPTUN_6RD_PREFIXLEN] = { .type = NLA_U16 },
1462 [IFLA_IPTUN_6RD_RELAY_PREFIXLEN] = { .type = NLA_U16 },
1466 static struct rtnl_link_ops sit_link_ops __read_mostly = {
1468 .maxtype = IFLA_IPTUN_MAX,
1469 .policy = ipip6_policy,
1470 .priv_size = sizeof(struct ip_tunnel),
1471 .setup = ipip6_tunnel_setup,
1472 .newlink = ipip6_newlink,
1473 .changelink = ipip6_changelink,
1474 .get_size = ipip6_get_size,
1475 .fill_info = ipip6_fill_info,
1478 static struct xfrm_tunnel sit_handler __read_mostly = {
1479 .handler = ipip6_rcv,
1480 .err_handler = ipip6_err,
1484 static void __net_exit sit_destroy_tunnels(struct sit_net *sitn, struct list_head *head)
1488 for (prio = 1; prio < 4; prio++) {
1490 for (h = 0; h < HASH_SIZE; h++) {
1491 struct ip_tunnel *t;
1493 t = rtnl_dereference(sitn->tunnels[prio][h]);
1495 unregister_netdevice_queue(t->dev, head);
1496 t = rtnl_dereference(t->next);
1502 static int __net_init sit_init_net(struct net *net)
1504 struct sit_net *sitn = net_generic(net, sit_net_id);
1505 struct ip_tunnel *t;
1508 sitn->tunnels[0] = sitn->tunnels_wc;
1509 sitn->tunnels[1] = sitn->tunnels_l;
1510 sitn->tunnels[2] = sitn->tunnels_r;
1511 sitn->tunnels[3] = sitn->tunnels_r_l;
1513 sitn->fb_tunnel_dev = alloc_netdev(sizeof(struct ip_tunnel), "sit0",
1514 ipip6_tunnel_setup);
1515 if (!sitn->fb_tunnel_dev) {
1519 dev_net_set(sitn->fb_tunnel_dev, net);
1521 err = ipip6_fb_tunnel_init(sitn->fb_tunnel_dev);
1525 ipip6_tunnel_clone_6rd(sitn->fb_tunnel_dev, sitn);
1527 if ((err = register_netdev(sitn->fb_tunnel_dev)))
1530 t = netdev_priv(sitn->fb_tunnel_dev);
1532 strcpy(t->parms.name, sitn->fb_tunnel_dev->name);
1536 dev_put(sitn->fb_tunnel_dev);
1538 ipip6_dev_free(sitn->fb_tunnel_dev);
1543 static void __net_exit sit_exit_net(struct net *net)
1545 struct sit_net *sitn = net_generic(net, sit_net_id);
1549 sit_destroy_tunnels(sitn, &list);
1550 unregister_netdevice_queue(sitn->fb_tunnel_dev, &list);
1551 unregister_netdevice_many(&list);
1555 static struct pernet_operations sit_net_ops = {
1556 .init = sit_init_net,
1557 .exit = sit_exit_net,
1559 .size = sizeof(struct sit_net),
1562 static void __exit sit_cleanup(void)
1564 rtnl_link_unregister(&sit_link_ops);
1565 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1567 unregister_pernet_device(&sit_net_ops);
1568 rcu_barrier(); /* Wait for completion of call_rcu()'s */
1571 static int __init sit_init(void)
1575 pr_info("IPv6 over IPv4 tunneling driver\n");
1577 err = register_pernet_device(&sit_net_ops);
1580 err = xfrm4_tunnel_register(&sit_handler, AF_INET6);
1582 pr_info("%s: can't add protocol\n", __func__);
1583 goto xfrm_tunnel_failed;
1585 err = rtnl_link_register(&sit_link_ops);
1587 goto rtnl_link_failed;
1593 xfrm4_tunnel_deregister(&sit_handler, AF_INET6);
1595 unregister_pernet_device(&sit_net_ops);
1599 module_init(sit_init);
1600 module_exit(sit_cleanup);
1601 MODULE_LICENSE("GPL");
1602 MODULE_ALIAS_NETDEV("sit0");