[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130117033258.GA23782@order.stressinduktion.org>
Date: Thu, 17 Jan 2013 04:32:58 +0100
From: Hannes Frederic Sowa <hannes@...essinduktion.org>
To: netdev@...r.kernel.org
Subject: [PATCH] ipv6: add anti-spoofing checks for 6to4 and 6rd
This patch adds anti-spoofing checks in sit.c as specified in RFC3964
section 5.2 for 6to4 and RFC5969 section 12 for 6rd. I left out the
checks which could easily be implemented with netfilter.
Signed-off-by: Hannes Frederic Sowa <hannes@...essinduktion.org>
---
net/ipv6/sit.c | 27 +++++++++++++++++++++++++--
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
index cfba99b..2b4c15a 100644
--- a/net/ipv6/sit.c
+++ b/net/ipv6/sit.c
@@ -590,6 +590,22 @@ out:
return err;
}
+static int sit_chksrc(struct ip_tunnel *tunnel, const __be32 *addr,
+ const struct in6_addr *addr6)
+{
+#ifdef CONFIG_IPV6_SIT_6RD
+ if (ipv6_prefix_equal(addr6, &tunnel->ip6rd.prefix,
+ tunnel->ip6rd.prefixlen) &&
+ memcmp(addr, &addr6->s6_addr16[1], 4))
+ return 0;
+#else
+ if (addr6->s6_addr16[0] == htons(0x2002) &&
+ memcmp(addr, &addr6->s6_addr16[1], 4))
+ return 0;
+#endif
+ return 1;
+}
+
static int ipip6_rcv(struct sk_buff *skb)
{
const struct iphdr *iph;
@@ -613,8 +629,15 @@ static int ipip6_rcv(struct sk_buff *skb)
skb->protocol = htons(ETH_P_IPV6);
skb->pkt_type = PACKET_HOST;
- if ((tunnel->dev->priv_flags & IFF_ISATAP) &&
- !isatap_chksrc(skb, iph, tunnel)) {
+ if (tunnel->dev->priv_flags & IFF_ISATAP) {
+ if (!isatap_chksrc(skb, iph, tunnel)) {
+ tunnel->dev->stats.rx_errors++;
+ goto out;
+ }
+ } else if (!sit_chksrc(tunnel, &iph->saddr,
+ &ipv6_hdr(skb)->saddr) ||
+ !sit_chksrc(tunnel, &iph->daddr,
+ &ipv6_hdr(skb)->daddr)) {
tunnel->dev->stats.rx_errors++;
goto out;
}
--
1.7.11.7
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists