From: Florian Westphal Date: Sun, 16 Mar 2025 21:39:10 +0000 (+0100) Subject: parser_bison: reject non-serializeable typeof expressions X-Git-Tag: v1.1.2~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a1bb1814148c5011d50cb566a92b3b30fff118b0;p=thirdparty%2Fnftables.git parser_bison: reject non-serializeable typeof expressions 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 Fixes: 6e48df5329ea ("src: add "typeof" build/parse/print support") Signed-off-by: Florian Westphal --- diff --git a/src/parser_bison.y b/src/parser_bison.y index 4d4d3934..cc3c9085 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -816,8 +816,8 @@ int nft_lex(void *, void *, void *); %type 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 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 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 exclusive_or_expr inclusive_or_expr %destructor { expr_free($$); } exclusive_or_expr inclusive_or_expr %type 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 00000000..f1dc12f6 --- /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 } + } +}