Blame SOURCES/0008-netlink-Fix-leak-in-unterminated-string-deserializer.patch

911625
From cc70f19e588a0a33ed86c4a059b56a8f5b0c7a82 Mon Sep 17 00:00:00 2001
911625
From: Phil Sutter <psutter@redhat.com>
911625
Date: Mon, 27 Jan 2020 16:11:41 +0100
911625
Subject: [PATCH] netlink: Fix leak in unterminated string deserializer
911625
911625
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1793030
911625
Upstream Status: nftables commit c3f6be3f2dced
911625
911625
commit c3f6be3f2dcedf6d79751c0b975315ebc3184364
911625
Author: Phil Sutter <phil@nwl.cc>
911625
Date:   Mon Jan 20 13:52:10 2020 +0100
911625
911625
    netlink: Fix leak in unterminated string deserializer
911625
911625
    Allocated 'mask' expression is not freed before returning to caller,
911625
    although it is used temporarily only.
911625
911625
    Fixes: b851ba4731d9f ("src: add interface wildcard matching")
911625
    Signed-off-by: Phil Sutter <phil@nwl.cc>
911625
    Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
911625
---
911625
 src/netlink_delinearize.c | 6 ++++--
911625
 1 file changed, 4 insertions(+), 2 deletions(-)
911625
911625
diff --git a/src/netlink_delinearize.c b/src/netlink_delinearize.c
911625
index 154353b..06a0312 100644
911625
--- a/src/netlink_delinearize.c
911625
+++ b/src/netlink_delinearize.c
911625
@@ -2030,7 +2030,7 @@ static bool __expr_postprocess_string(struct expr **exprp)
911625
 
911625
 static struct expr *expr_postprocess_string(struct expr *expr)
911625
 {
911625
-	struct expr *mask;
911625
+	struct expr *mask, *out;
911625
 
911625
 	assert(expr_basetype(expr)->type == TYPE_STRING);
911625
 	if (__expr_postprocess_string(&expr))
911625
@@ -2040,7 +2040,9 @@ static struct expr *expr_postprocess_string(struct expr *expr)
911625
 				   BYTEORDER_HOST_ENDIAN,
911625
 				   expr->len + BITS_PER_BYTE, NULL);
911625
 	mpz_init_bitmask(mask->value, expr->len);
911625
-	return string_wildcard_expr_alloc(&expr->location, mask, expr);
911625
+	out = string_wildcard_expr_alloc(&expr->location, mask, expr);
911625
+	expr_free(mask);
911625
+	return out;
911625
 }
911625
 
911625
 static void expr_postprocess(struct rule_pp_ctx *ctx, struct expr **exprp)
911625
-- 
8ff5ad
2.31.1
911625