From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Florian Westphal <fw@strlen.de>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nft] parser_bison: reject non-serializeable typeof expressions
Date: Thu, 20 Mar 2025 00:50:28 +0100 [thread overview]
Message-ID: <Z9tYRHnNO6SvjMQK@calendula> (raw)
In-Reply-To: <20250319162244.884-1-fw@strlen.de>
On Wed, Mar 19, 2025 at 05:22:40PM +0100, Florian Westphal wrote:
> Included bogon asserts with:
> BUG: unhandled key type 13
> nft: src/intervals.c:73: setelem_expr_to_range: Assertion `0' failed.
>
> This should be rejected at parser stage, but the check for udata
> support was only done on the first item in a concatenation.
>
> After fix, parser rejects this with:
> Error: primary expression type 'symbol' lacks typeof serialization
Maybe... otherwise, please correct me.
Fixes: 4ab1e5e60779 ("src: allow use of 'verdict' in typeof definitions")
> Signed-off-by: Florian Westphal <fw@strlen.de>
Thanks.
> ---
> src/parser_bison.y | 14 ++++++++++----
> .../nft-f/typeof_map_with_plain_integer_assert | 7 +++++++
> 2 files changed, 17 insertions(+), 4 deletions(-)
> create mode 100644 tests/shell/testcases/bogons/nft-f/typeof_map_with_plain_integer_assert
>
> diff --git a/src/parser_bison.y b/src/parser_bison.y
> index 4d4d39342bf7..cc3c908593a0 100644
> --- a/src/parser_bison.y
> +++ b/src/parser_bison.y
> @@ -816,8 +816,8 @@ int nft_lex(void *, void *, void *);
>
> %type <expr> symbol_expr verdict_expr integer_expr variable_expr chain_expr policy_expr
> %destructor { expr_free($$); } symbol_expr verdict_expr integer_expr variable_expr chain_expr policy_expr
> -%type <expr> primary_expr shift_expr and_expr typeof_expr typeof_data_expr typeof_key_expr typeof_verdict_expr
> -%destructor { expr_free($$); } primary_expr shift_expr and_expr typeof_expr typeof_data_expr typeof_key_expr typeof_verdict_expr
> +%type <expr> primary_expr shift_expr and_expr primary_typeof_expr typeof_expr typeof_data_expr typeof_key_expr typeof_verdict_expr
> +%destructor { expr_free($$); } primary_expr shift_expr and_expr primary_typeof_expr typeof_expr typeof_data_expr typeof_key_expr typeof_verdict_expr
> %type <expr> exclusive_or_expr inclusive_or_expr
> %destructor { expr_free($$); } exclusive_or_expr inclusive_or_expr
> %type <expr> basic_expr
> @@ -2142,7 +2142,7 @@ typeof_data_expr : INTERVAL typeof_expr
> }
> ;
>
> -typeof_expr : primary_expr
> +primary_typeof_expr : primary_expr
> {
> if (expr_ops($1)->build_udata == NULL) {
> erec_queue(error(&@1, "primary expression type '%s' lacks typeof serialization", expr_ops($1)->name),
> @@ -2153,7 +2153,13 @@ typeof_expr : primary_expr
>
> $$ = $1;
> }
> - | typeof_expr DOT primary_expr
> + ;
> +
> +typeof_expr : primary_typeof_expr
> + {
> + $$ = $1;
> + }
> + | typeof_expr DOT primary_typeof_expr
> {
> struct location rhs[] = {
> [1] = @2,
> diff --git a/tests/shell/testcases/bogons/nft-f/typeof_map_with_plain_integer_assert b/tests/shell/testcases/bogons/nft-f/typeof_map_with_plain_integer_assert
> new file mode 100644
> index 000000000000..f1dc12f699ec
> --- /dev/null
> +++ b/tests/shell/testcases/bogons/nft-f/typeof_map_with_plain_integer_assert
> @@ -0,0 +1,7 @@
> +table ip t {
> + map m {
> + typeof ip saddr . meta mark . 0: verdict
> + flags interval
> + elements = { 127.0.0.1-127.0.0.4 . 0x00123434-0x00b00122 : accept }
> + }
> +}
> --
> 2.48.1
>
>
next prev parent reply other threads:[~2025-03-19 23:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-19 16:22 [PATCH nft] parser_bison: reject non-serializeable typeof expressions Florian Westphal
2025-03-19 23:50 ` Pablo Neira Ayuso [this message]
2025-03-20 8:20 ` Florian Westphal
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=Z9tYRHnNO6SvjMQK@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).