Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Oct 2014 17:13:15 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r272994 - stable/10/sys/contrib/ipfilter/netinet
Message-ID:  <201410121713.s9CHDFsF063064@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Sun Oct 12 17:13:14 2014
New Revision: 272994
URL: https://svnweb.freebsd.org/changeset/base/272994

Log:
  MFC r272551
  
  ipfiler bug #550 filter rule list corrupted with inserted rules
  
  Obtained from:	ipfilter CVS repo (r1.128); NetBSD CVS repo (r1.15)

Modified:
  stable/10/sys/contrib/ipfilter/netinet/fil.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/contrib/ipfilter/netinet/fil.c
==============================================================================
--- stable/10/sys/contrib/ipfilter/netinet/fil.c	Sun Oct 12 17:10:44 2014	(r272993)
+++ stable/10/sys/contrib/ipfilter/netinet/fil.c	Sun Oct 12 17:13:14 2014	(r272994)
@@ -4496,7 +4496,15 @@ frrequest(softc, unit, req, data, set, m
 
 		fp = f;
 		f = NULL;
+		fp->fr_next = NULL;
 		fp->fr_dnext = NULL;
+		fp->fr_pnext = NULL;
+		fp->fr_pdnext = NULL;
+		fp->fr_grp = NULL;
+		fp->fr_grphead = NULL;
+		fp->fr_icmpgrp = NULL;
+		fp->fr_isc = (void *)-1;
+		fp->fr_ptr = NULL;
 		fp->fr_ref = 0;
 		fp->fr_flags |= FR_COPIED;
 	} else {
@@ -5000,7 +5008,9 @@ frrequest(softc, unit, req, data, set, m
 				if (f->fr_collect > fp->fr_collect)
 					break;
 				ftail = &f->fr_next;
+				fprev = ftail;
 			}
+			ftail = fprev;
 			f = NULL;
 			ptr = NULL;
 		} else if (req == (ioctlcmd_t)SIOCINAFR ||
@@ -5091,6 +5101,8 @@ frrequest(softc, unit, req, data, set, m
 			fp->fr_ref = 1;
 		fp->fr_pnext = ftail;
 		fp->fr_next = *ftail;
+		if (fp->fr_next != NULL)
+			fp->fr_next->fr_pnext = &fp->fr_next;
 		*ftail = fp;
 		if (addrem == 0)
 			ipf_fixskip(ftail, fp, 1);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410121713.s9CHDFsF063064>