* [PATCH nft] parser_bison: fix memory leaks on hookspec error processing
@ 2023-12-13 10:18 Florian Westphal
0 siblings, 0 replies; only message in thread
From: Florian Westphal @ 2023-12-13 10:18 UTC (permalink / raw)
To: netfilter-devel; +Cc: Florian Westphal
prio_spec may contain an embedded expression, release it.
We also need to release the device expr and the hook string.
Signed-off-by: Florian Westphal <fw@strlen.de>
---
src/parser_bison.y | 7 +++++++
.../bogons/nft-f/memleak_on_hookspec_error | 21 +++++++++++++++++++
2 files changed, 28 insertions(+)
create mode 100644 tests/shell/testcases/bogons/nft-f/memleak_on_hookspec_error
diff --git a/src/parser_bison.y b/src/parser_bison.y
index 2796e4387e03..e1addc26d20d 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -727,6 +727,8 @@ int nft_lex(void *, void *, void *);
%type <val> family_spec family_spec_explicit
%type <val32> int_num chain_policy
%type <prio_spec> extended_prio_spec prio_spec
+%destructor { expr_free($$.expr); } extended_prio_spec prio_spec
+
%type <string> extended_prio_name quota_unit basehook_device_name
%destructor { free_const($$); } extended_prio_name quota_unit basehook_device_name
@@ -2636,6 +2638,9 @@ hook_spec : TYPE close_scope_type STRING HOOK STRING dev_spec prio_spec
erec_queue(error(&@3, "unknown chain type"),
state->msgs);
free_const($3);
+ free_const($5);
+ expr_free($6);
+ expr_free($7.expr);
YYERROR;
}
$<chain>0->type.loc = @3;
@@ -2649,6 +2654,8 @@ hook_spec : TYPE close_scope_type STRING HOOK STRING dev_spec prio_spec
erec_queue(error(&@5, "unknown chain hook"),
state->msgs);
free_const($5);
+ expr_free($6);
+ expr_free($7.expr);
YYERROR;
}
free_const($5);
diff --git a/tests/shell/testcases/bogons/nft-f/memleak_on_hookspec_error b/tests/shell/testcases/bogons/nft-f/memleak_on_hookspec_error
new file mode 100644
index 000000000000..6f52658fb986
--- /dev/null
+++ b/tests/shell/testcases/bogons/nft-f/memleak_on_hookspec_error
@@ -0,0 +1,21 @@
+table ip filter {
+ ct expectation ctexpect {
+ protocol tcp
+ size 12
+ l3proto ip
+ } . inet_proto : mark
+ flags interval,timeout
+ }
+
+ chain output {
+ type gilter hook output priori
+
+ chain c {
+ cttable inet filter {
+ map test {
+ type mark . inet_service . inet_proto : mark
+ flags interval,timeout
+ }
+
+ chain output {
+ type gilter hook output priority filuer; policy
\ No newline at end of file
--
2.41.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-12-13 10:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-13 10:18 [PATCH nft] parser_bison: fix memory leaks on hookspec error processing Florian Westphal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox