[PATCH] netfilter: unfold two loops in ip6_packet_match()

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Eric Dumazet
Date: Thursday, February 19, 2009 - 1:14 am

ip6_tables netfilter module can use an ifname_compare() helper
so that two loops are unfolded.

Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
---
 net/ipv6/netfilter/ip6_tables.c |   33 +++++++++++++++++++-----------
 1 files changed, 21 insertions(+), 12 deletions(-)
diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c
index a33485d..d64594b 100644
--- a/net/ipv6/netfilter/ip6_tables.c
+++ b/net/ipv6/netfilter/ip6_tables.c
@@ -89,6 +89,25 @@ ip6t_ext_hdr(u8 nexthdr)
 		 (nexthdr == IPPROTO_DSTOPTS) );
 }
 
+static unsigned long ifname_compare(const char *_a, const char *_b,
+				    const unsigned char *_mask)
+{
+	const unsigned long *a = (const unsigned long *)_a;
+	const unsigned long *b = (const unsigned long *)_b;
+	const unsigned long *mask = (const unsigned long *)_mask;
+	unsigned long ret;
+
+	ret = (a[0] ^ b[0]) & mask[0];
+	if (IFNAMSIZ > sizeof(unsigned long))
+		ret |= (a[1] ^ b[1]) & mask[1];
+	if (IFNAMSIZ > 2 * sizeof(unsigned long))
+		ret |= (a[2] ^ b[2]) & mask[2];
+	if (IFNAMSIZ > 3 * sizeof(unsigned long))
+		ret |= (a[3] ^ b[3]) & mask[3];
+	BUILD_BUG_ON(IFNAMSIZ > 4 * sizeof(unsigned long));
+	return ret;
+}
+
 /* Returns whether matches rule or not. */
 /* Performance critical - called for every packet */
 static inline bool
@@ -99,7 +118,6 @@ ip6_packet_match(const struct sk_buff *skb,
 		 unsigned int *protoff,
 		 int *fragoff, bool *hotdrop)
 {
-	size_t i;
 	unsigned long ret;
 	const struct ipv6hdr *ipv6 = ipv6_hdr(skb);
 
@@ -120,12 +138,7 @@ ip6_packet_match(const struct sk_buff *skb,
 		return false;
 	}
 
-	/* Look for ifname matches; this should unroll nicely. */
-	for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
-		ret |= (((const unsigned long *)indev)[i]
-			^ ((const unsigned long *)ip6info->iniface)[i])
-			& ((const unsigned long *)ip6info->iniface_mask)[i];
-	}
+	ret = ifname_compare(indev, ip6info->iniface, ip6info->iniface_mask);
 
 	if (FWINV(ret != 0, IP6T_INV_VIA_IN)) {
 		dprintf("VIA in mismatch (%s vs %s).%s\n",
@@ -134,11 +147,7 @@ ip6_packet_match(const struct sk_buff *skb,
 		return false;
 	}
 
-	for (i = 0, ret = 0; i < IFNAMSIZ/sizeof(unsigned long); i++) {
-		ret |= (((const unsigned long *)outdev)[i]
-			^ ((const unsigned long *)ip6info->outiface)[i])
-			& ((const unsigned long *)ip6info->outiface_mask)[i];
-	}
+	ret = ifname_compare(outdev, ip6info->outiface, ip6info->outiface_mask);
 
 	if (FWINV(ret != 0, IP6T_INV_VIA_OUT)) {
 		dprintf("VIA out mismatch (%s vs %s).%s\n",

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
32 core net-next stack/netfilter &quot;scaling&quot;, Rick Jones, (Mon Jan 26, 3:15 pm)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Stephen Hemminger, (Mon Jan 26, 4:14 pm)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Patrick McHardy, (Tue Jan 27, 2:15 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Patrick McHardy, (Tue Jan 27, 4:37 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Patrick McHardy, (Tue Jan 27, 10:33 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Patrick McHardy, (Wed Jan 28, 9:25 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Eric Dumazet, (Wed Jan 28, 10:07 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Eric Dumazet, (Wed Jan 28, 10:34 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Patrick McHardy, (Mon Feb 9, 7:57 am)
Re: 32 core net-next stack/netfilter &quot;scaling&quot;, Stephen Hemminger, (Tue Feb 10, 11:44 am)
[PATCH] netfilter: xt_physdev fixes, Eric Dumazet, (Wed Feb 18, 10:36 am)
Re: [PATCH] netfilter: xt_physdev fixes, Patrick McHardy, (Wed Feb 18, 11:14 am)
[PATCH] netfilter: unfold two loops in physdev_mt(), Eric Dumazet, (Thu Feb 19, 1:00 am)
[PATCH] netfilter: unfold two loops in ip6_packet_match(), Eric Dumazet, (Thu Feb 19, 1:14 am)
Re: [PATCH] netfilter: unfold two loops in physdev_mt(), Patrick McHardy, (Thu Feb 19, 3:17 am)