a2ea441692
- Install an improved sample config - Fix permissions of osf-related configs - rule: Fix for potential off-by-one in cmd_add_loc() - netlink_delinearize: Fix suspicious calloc() call - netlink: Avoid memleak in error path of netlink_delinearize_obj() - netlink: Avoid memleak in error path of netlink_delinearize_table() - netlink: Avoid memleak in error path of netlink_delinearize_chain() - netlink: Avoid memleak in error path of netlink_delinearize_set() - json: Drop pointless assignment in exthdr_expr_json() - evaluate: Mark fall through case in str2hooknum() - parser_json: Fix for memleak in tcp option error path - parser_bison: Fix for implicit declaration of isalnum - main: fix nft --help output fallout from 719e4427 - tests: add icmp/6 test where dependency should be left alone - payload: check icmp dependency before removing previous icmp expression Resolves: rhbz#1933117, rhbz#1938823, rhbz#1931790, rhbz#1964987, rhbz#1971600
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From c47e6d3b1ccb166b807d19fd585d6b5b3cd0b7f7 Mon Sep 17 00:00:00 2001
|
|
From: Phil Sutter <phil@nwl.cc>
|
|
Date: Fri, 11 Jun 2021 18:33:44 +0200
|
|
Subject: [PATCH] netlink: Avoid memleak in error path of
|
|
netlink_delinearize_table()
|
|
|
|
If parsing udata fails, 'table' has to be freed before returning to
|
|
caller.
|
|
|
|
Fixes: c156232a530b3 ("src: add comment support when adding tables")
|
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
|
(cherry picked from commit 47640634cff9932784a1a96836d6c5809cc8264d)
|
|
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
|
---
|
|
src/netlink.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/netlink.c b/src/netlink.c
|
|
index 22140afc3fd7e..fd82b16cb9f6e 100644
|
|
--- a/src/netlink.c
|
|
+++ b/src/netlink.c
|
|
@@ -620,6 +620,7 @@ struct table *netlink_delinearize_table(struct netlink_ctx *ctx,
|
|
udata = nftnl_table_get_data(nlt, NFTNL_TABLE_USERDATA, &ulen);
|
|
if (nftnl_udata_parse(udata, ulen, table_parse_udata_cb, ud) < 0) {
|
|
netlink_io_error(ctx, NULL, "Cannot parse userdata");
|
|
+ table_free(table);
|
|
return NULL;
|
|
}
|
|
if (ud[NFTNL_UDATA_TABLE_COMMENT])
|
|
--
|
|
2.31.1
|
|
|