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

Andrey V. Elsukov ae at FreeBSD.org
Fri Jan 18 09:57:04 UTC 2019


Author: ae
Date: Fri Jan 18 09:57:03 2019
New Revision: 343142
URL: https://svnweb.freebsd.org/changeset/base/343142

Log:
  MFC 342925:
    Relax requirement to packet size of CARP protocol and remove version check.
  
    CARP shares protocol number 112 with VRRP (RFC 5798). And the size of
    VRRP packet may be smaller than CARP. ipfw_chk() does m_pullup() to at
    least sizeof(struct carp_header) and can fail when packet is VRRP. This
    leads to packet drop and message about failed pullup attempt.
    Also, RFC 5798 defines version 3 of VRRP protocol, this version number
    also unsupported by CARP and such check leads to packet drop.
  
    carp_input() does its own checks for protocol version and packet size,
    so we can remove these checks to be able pass VRRP packets.
  
    PR:		234207

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	Fri Jan 18 09:54:28 2019	(r343141)
+++ stable/11/sys/netpfil/ipfw/ip_fw2.c	Fri Jan 18 09:57:03 2019	(r343142)
@@ -1595,12 +1595,10 @@ do {								\
 				break;
 
 			case IPPROTO_CARP:
-				PULLUP_TO(hlen, ulp, struct carp_header);
-				if (((struct carp_header *)ulp)->carp_version !=
-				    CARP_VERSION) 
-					return (IP_FW_DENY);
-				if (((struct carp_header *)ulp)->carp_type !=
-				    CARP_ADVERTISEMENT) 
+				PULLUP_TO(hlen, ulp, offsetof(
+				    struct carp_header, carp_counter));
+				if (CARP_ADVERTISEMENT !=
+				    ((struct carp_header *)ulp)->carp_type)
 					return (IP_FW_DENY);
 				break;
 


More information about the svn-src-all mailing list