Date: Tue, 4 Dec 2018 15:12:28 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r341469 - head/sys/netpfil/ipfw Message-ID: <201812041512.wB4FCSHl078738@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ae Date: Tue Dec 4 15:12:28 2018 New Revision: 341469 URL: https://svnweb.freebsd.org/changeset/base/341469 Log: Add assertion to check that named object has correct type. Obtained from: Yandex LLC MFC after: 1 week Modified: head/sys/netpfil/ipfw/ip_fw_dynamic.c Modified: head/sys/netpfil/ipfw/ip_fw_dynamic.c ============================================================================== --- head/sys/netpfil/ipfw/ip_fw_dynamic.c Tue Dec 4 15:06:24 2018 (r341468) +++ head/sys/netpfil/ipfw/ip_fw_dynamic.c Tue Dec 4 15:12:28 2018 (r341469) @@ -708,6 +708,8 @@ dyn_destroy(struct ip_fw_chain *ch, struct named_objec IPFW_UH_WLOCK_ASSERT(ch); + KASSERT(no->etlv == IPFW_TLV_STATE_NAME, + ("%s: wrong object type %u", __func__, no->etlv)); KASSERT(no->refcnt == 1, ("Destroying object '%s' (type %u, idx %u) with refcnt %u", no->name, no->etlv, no->kidx, no->refcnt));
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812041512.wB4FCSHl078738>