svn commit: r324047 - stable/11/sys/netpfil/ipfw

Andrey V. Elsukov ae at FreeBSD.org
Wed Sep 27 01:47:55 UTC 2017


Author: ae
Date: Wed Sep 27 01:47:54 2017
New Revision: 324047
URL: https://svnweb.freebsd.org/changeset/base/324047

Log:
  MFC r323839:
    Use in_localip() function instead of unlocked access to addresses hash
    to determine that an address is our local.
  
    PR:		220078

Modified:
  stable/11/sys/netpfil/ipfw/ip_fw2.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/netpfil/ipfw/ip_fw2.c
==============================================================================
--- stable/11/sys/netpfil/ipfw/ip_fw2.c	Wed Sep 27 01:46:14 2017	(r324046)
+++ stable/11/sys/netpfil/ipfw/ip_fw2.c	Wed Sep 27 01:47:54 2017	(r324047)
@@ -1609,10 +1609,7 @@ do {								\
 
 			case O_IP_SRC_ME:
 				if (is_ipv4) {
-					struct ifnet *tif;
-
-					INADDR_TO_IFP(src_ip, tif);
-					match = (tif != NULL);
+					match = in_localip(src_ip);
 					break;
 				}
 #ifdef INET6
@@ -1648,10 +1645,7 @@ do {								\
 
 			case O_IP_DST_ME:
 				if (is_ipv4) {
-					struct ifnet *tif;
-
-					INADDR_TO_IFP(dst_ip, tif);
-					match = (tif != NULL);
+					match = in_localip(dst_ip);
 					break;
 				}
 #ifdef INET6


More information about the svn-src-stable-11 mailing list