Blame SOURCES/0009-netlink-Fix-leaks-in-netlink_parse_cmp.patch

911625
From 6ecccc872b9cbed921af10e32d1a628eb6a74c01 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 leaks in netlink_parse_cmp()
911625
911625
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1793030
911625
Upstream Status: nftables commit e957bd9f10d5e
911625
911625
commit e957bd9f10d5e36671a0b0398e2037fc6201275b
911625
Author: Phil Sutter <phil@nwl.cc>
911625
Date:   Mon Jan 20 14:48:26 2020 +0100
911625
911625
    netlink: Fix leaks in netlink_parse_cmp()
911625
911625
    This fixes several problems at once:
911625
911625
    * Err path would leak expr 'right' in two places and 'left' in one.
911625
    * Concat case would leak 'right' by overwriting the pointer. Introduce a
911625
      temporary variable to hold the new pointer.
911625
911625
    Fixes: 6377380bc265f ("netlink_delinearize: handle relational and lookup concat expressions")
911625
    Signed-off-by: Phil Sutter <phil@nwl.cc>
911625
    Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
911625
---
911625
 src/netlink_delinearize.c | 19 +++++++++++++------
911625
 1 file changed, 13 insertions(+), 6 deletions(-)
911625
911625
diff --git a/src/netlink_delinearize.c b/src/netlink_delinearize.c
911625
index 06a0312..88dbd5a 100644
911625
--- a/src/netlink_delinearize.c
911625
+++ b/src/netlink_delinearize.c
911625
@@ -274,7 +274,7 @@ static void netlink_parse_cmp(struct netlink_parse_ctx *ctx,
911625
 {
911625
 	struct nft_data_delinearize nld;
911625
 	enum nft_registers sreg;
911625
-	struct expr *expr, *left, *right;
911625
+	struct expr *expr, *left, *right, *tmp;
911625
 	enum ops op;
911625
 
911625
 	sreg = netlink_parse_register(nle, NFTNL_EXPR_CMP_SREG);
911625
@@ -291,19 +291,26 @@ static void netlink_parse_cmp(struct netlink_parse_ctx *ctx,
911625
 
911625
 	if (left->len > right->len &&
911625
 	    expr_basetype(left) != &string_type) {
911625
-		return netlink_error(ctx, loc, "Relational expression size mismatch");
911625
+		netlink_error(ctx, loc, "Relational expression size mismatch");
911625
+		goto err_free;
911625
 	} else if (left->len > 0 && left->len < right->len) {
911625
 		expr_free(left);
911625
 		left = netlink_parse_concat_expr(ctx, loc, sreg, right->len);
911625
 		if (left == NULL)
911625
-			return;
911625
-		right = netlink_parse_concat_data(ctx, loc, sreg, right->len, right);
911625
-		if (right == NULL)
911625
-			return;
911625
+			goto err_free;
911625
+		tmp = netlink_parse_concat_data(ctx, loc, sreg, right->len, right);
911625
+		if (tmp == NULL)
911625
+			goto err_free;
911625
+		expr_free(right);
911625
+		right = tmp;
911625
 	}
911625
 
911625
 	expr = relational_expr_alloc(loc, op, left, right);
911625
 	ctx->stmt = expr_stmt_alloc(loc, expr);
911625
+	return;
911625
+err_free:
911625
+	expr_free(left);
911625
+	expr_free(right);
911625
 }
911625
 
911625
 static void netlink_parse_lookup(struct netlink_parse_ctx *ctx,
911625
-- 
8ff5ad
2.31.1
911625