From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Florian Westphal <fw@strlen.de>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nft] rule: return error if table does not exist
Date: Thu, 20 Mar 2025 18:37:30 +0100 [thread overview]
Message-ID: <Z9xSWqE-2S_SX52I@calendula> (raw)
In-Reply-To: <20250320133145.31833-1-fw@strlen.de>
On Thu, Mar 20, 2025 at 02:31:42PM +0100, Florian Westphal wrote:
> 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>
Thanks.
> ---
> src/rule.c | 8 +++++++-
> .../testcases/bogons/nft-f/list_a_deleted_table_crash | 3 +++
> 2 files changed, 10 insertions(+), 1 deletion(-)
> create mode 100644 tests/shell/testcases/bogons/nft-f/list_a_deleted_table_crash
>
> diff --git a/src/rule.c b/src/rule.c
> index 3edfa4715853..00fbbc4c080a 100644
> --- a/src/rule.c
> +++ b/src/rule.c
> @@ -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
> index 000000000000..b802430bb6cc
> --- /dev/null
> +++ b/tests/shell/testcases/bogons/nft-f/list_a_deleted_table_crash
> @@ -0,0 +1,3 @@
> +table inet p
> +list table inet p
> +delete table inet p
> --
> 2.48.1
>
>
prev parent reply other threads:[~2025-03-20 17:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-20 13:31 [PATCH nft] rule: return error if table does not exist Florian Westphal
2025-03-20 17:37 ` Pablo Neira Ayuso [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Z9xSWqE-2S_SX52I@calendula \
--to=pablo@netfilter.org \
--cc=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.