]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
rule: return error if table does not exist
authorFlorian Westphal <fw@strlen.de>
Thu, 20 Mar 2025 13:31:42 +0000 (14:31 +0100)
committerFlorian Westphal <fw@strlen.de>
Thu, 20 Mar 2025 17:42:41 +0000 (18:42 +0100)
The bogon triggers segfault due to NULL dereference.  Error out and set
errno to ENOENT; caller uses strerror() in the errmsg.

After fix, loading reproducer results in:
/tmp/A:2:1-18: Error: Could not process rule: No such file or directory
list table inet p
^^^^^^^^^^^^^^^^^^

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

index 3edfa4715853d9fd4d25dac19b28c0e3f1dc1300..00fbbc4c080a5ebd44aa8804545e745fc26668f0 100644 (file)
@@ -2380,10 +2380,16 @@ static int do_command_list(struct netlink_ctx *ctx, struct cmd *cmd)
        if (nft_output_json(&ctx->nft->output))
                return do_command_list_json(ctx, cmd);
 
-       if (cmd->handle.table.name != NULL)
+       if (cmd->handle.table.name != NULL) {
                table = table_cache_find(&ctx->nft->cache.table_cache,
                                         cmd->handle.table.name,
                                         cmd->handle.family);
+               if (!table) {
+                       errno = ENOENT;
+                       return -1;
+               }
+       }
+
        switch (cmd->obj) {
        case CMD_OBJ_TABLE:
                if (!cmd->handle.table.name)
diff --git a/tests/shell/testcases/bogons/nft-f/list_a_deleted_table_crash b/tests/shell/testcases/bogons/nft-f/list_a_deleted_table_crash
new file mode 100644 (file)
index 0000000..b802430
--- /dev/null
@@ -0,0 +1,3 @@
+table inet p
+list table inet p
+delete  table inet p