]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
parser_bison: fix memory leak when parsing flowtable hook declaration
authorFlorian Westphal <fw@strlen.de>
Wed, 23 Jul 2025 15:00:11 +0000 (17:00 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 13 Aug 2025 18:55:27 +0000 (20:55 +0200)
commit 7265bf1252f66d5ca5b5dc4aa06df43f60f551a6 upstream.

When the hook location is invalid we error out but we do leak both
the priority expression and the flowtable name.  Example:

valgrind --leak-check=full nft -f flowtable-parser-err-memleak
[..] Error: unknown chain hook
hook enoent priority filter + 10
     ^^^^^^
[..]
2 bytes in 1 blocks are definitely lost in loss record 1 of 3
   at: malloc (vg_replace_malloc.c:446)
   by: strdup (in libc.so.6)
   by: xstrdup (in libnftables.so.1.1.0)
   by: nft_lex (in libnftables.so.1.1.0)
   by: nft_parse (in libnftables.so.1.1.0)
   by: __nft_run_cmd_from_filename (in libnftables.so.1.1.0)
   by: nft_run_cmd_from_filename (in libnftables.so.1.1.0)

First two reports are due to the priority expression: this needs to call
expr_free().  Third report is due to the flowtable name, the destructor
was missing so add one.

After fix:
All heap blocks were freed -- no leaks are possible

Signed-off-by: Florian Westphal <fw@strlen.de>
Reviewed-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/parser_bison.y
tests/shell/testcases/bogons/nft-f/flowtable-parser-err-memleak [new file with mode: 0644]

index cefae1043c895a94983fa227b521b2a60e3df8e3..b12dad5b001238635332acf7bd5cce1e95b3ce64 100644 (file)
@@ -705,7 +705,7 @@ int nft_lex(void *, void *, void *);
 %destructor { handle_free(&$$); } obj_spec objid_spec obj_or_id_spec
 
 %type <handle>                 set_identifier flowtableid_spec flowtable_identifier obj_identifier
-%destructor { handle_free(&$$); } set_identifier flowtableid_spec obj_identifier
+%destructor { handle_free(&$$); } set_identifier flowtableid_spec flowtable_identifier obj_identifier
 
 %type <handle>                 basehook_spec
 %destructor { handle_free(&$$); } basehook_spec
@@ -2281,6 +2281,7 @@ flowtable_block           :       /* empty */     { $$ = $<flowtable>-1; }
                                        erec_queue(error(&@3, "unknown chain hook"),
                                                   state->msgs);
                                        xfree($3);
+                                       expr_free($4.expr);
                                        YYERROR;
                                }
                                xfree($3);
diff --git a/tests/shell/testcases/bogons/nft-f/flowtable-parser-err-memleak b/tests/shell/testcases/bogons/nft-f/flowtable-parser-err-memleak
new file mode 100644 (file)
index 0000000..ca0480b
--- /dev/null
@@ -0,0 +1,5 @@
+table ip t {
+        flowtable f {
+                hook enoent priority filter + 10
+        }
+}