svn commit: r272554 - head/sys/contrib/ipfilter/netinet

Cy Schubert cy at FreeBSD.org
Sun Oct 5 03:52:10 UTC 2014


Author: cy
Date: Sun Oct  5 03:52:09 2014
New Revision: 272554
URL: https://svnweb.freebsd.org/changeset/base/272554

Log:
  ipfilter bug #534 destination list hashing not endian neutral
  
  Obtained from:	ipfilter CVS repo (r1.26), NetBSD CVS repo (r1.8)

Modified:
  head/sys/contrib/ipfilter/netinet/ip_dstlist.c

Modified: head/sys/contrib/ipfilter/netinet/ip_dstlist.c
==============================================================================
--- head/sys/contrib/ipfilter/netinet/ip_dstlist.c	Sun Oct  5 03:48:09 2014	(r272553)
+++ head/sys/contrib/ipfilter/netinet/ip_dstlist.c	Sun Oct  5 03:52:09 2014	(r272554)
@@ -1193,7 +1193,7 @@ ipf_dstlist_select(fin, d)
 		MD5Update(&ctx, (u_char *)&fin->fin_dst6,
 			  sizeof(fin->fin_dst6));
 		MD5Final((u_char *)hash, &ctx);
-		x = hash[0] % d->ipld_nodes;
+		x = ntohl(hash[0]) % d->ipld_nodes;
 		sel = d->ipld_dests[x];
 		break;
 
@@ -1203,7 +1203,7 @@ ipf_dstlist_select(fin, d)
 		MD5Update(&ctx, (u_char *)&fin->fin_src6,
 			  sizeof(fin->fin_src6));
 		MD5Final((u_char *)hash, &ctx);
-		x = hash[0] % d->ipld_nodes;
+		x = ntohl(hash[0]) % d->ipld_nodes;
 		sel = d->ipld_dests[x];
 		break;
 
@@ -1213,7 +1213,7 @@ ipf_dstlist_select(fin, d)
 		MD5Update(&ctx, (u_char *)&fin->fin_dst6,
 			  sizeof(fin->fin_dst6));
 		MD5Final((u_char *)hash, &ctx);
-		x = hash[0] % d->ipld_nodes;
+		x = ntohl(hash[0]) % d->ipld_nodes;
 		sel = d->ipld_dests[x];
 		break;
 


More information about the svn-src-head mailing list