All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH nft] scanner: enable verdicts in rate scope too
@ 2026-05-05 10:37 Florian Westphal
  2026-05-05 14:14 ` Phil Sutter
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Westphal @ 2026-05-05 10:37 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Phil Sutter, Florian Westphal

Blamed commit added first use of exclusive start conditions in the
nftables parser.

Inclusive start conditions extend the grammar:
 - token NEW_COND will start to match in scanner.l
 - all other known tokens remain valid
 - bison calls back into scanner.l (via scanner_pop_start_cond())
   when it has parsed a complete rule.

Exclusive start conditions work in the same way, but with a slight
difference: Once we enter SCANSTATE_RATE, ALL OTHER tokens that are
not SCANSTATE_RATE or tagged as <*>, will stop matching.

This was done to allow something like 1 mbytes/second get handled
via NUM MBYTES SLASH SECOND rather than STRING (which is no longer
in scope).

This is a problem: in nftables, there is no end-token for
the 'rate' keyword.  The scanstate is popped the same way as for
the inclusive start conditions.  But flex is greedy.  By the time
we call scanner_pop_start_cond(), next token has already been parsed
according to RATE rules.

This breaks following rule:
  nft add rule .. limit rate over 1 mbytes/second drop
  Error: syntax error, unexpected junk
  expected any of: end of file, newline, semicolon, [..] drop, continue ...

Problem is that flex parsed 'd'(rop) while in SCANSTATE_RATE.

There is no good solution for this problem (aside from altering the
grammar to be explicitly scoped, e.g. limit rate { over ... }

Another alternative might be to add some string-alike catchall rule to
<SCANSTATE_RATE> in scanner.l and use that to pop state + rescan via
yyless(0).  But it feels even more gross than this.

Technially we'd have to <*> a lot more keywords, e.g.

 rate over 1 mbytes/second ip saddr 1.2.3.4

is valid (or should be).  Its not allowed anymore either.
It makes a bit less sense to add expressions after a rate limiter, however.

Fixes: 9d105581b5f1 ("scanner: Introduce SCANSTATE_RATE")
Signed-off-by: Florian Westphal <fw@strlen.de>
---
 src/scanner.l | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/scanner.l b/src/scanner.l
index 1b4eb1cf13a4..bd66cf7bbfa1 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -348,12 +348,15 @@ addrstring	({macaddr}|{ip4addr}|{ip6addr})
 }
 "tproxy"		{ scanner_push_start_cond(yyscanner, SCANSTATE_STMT_TPROXY); return TPROXY; }
 
+<*>{
 "accept"		{ return ACCEPT; }
 "drop"			{ return DROP; }
 "continue"		{ return CONTINUE; }
 "jump"			{ return JUMP; }
 "goto"			{ return GOTO; }
 "return"		{ return RETURN; }
+}
+
 <SCANSTATE_EXPR_QUEUE,SCANSTATE_STMT_DUP,SCANSTATE_STMT_FWD,SCANSTATE_STMT_NAT,SCANSTATE_STMT_TPROXY,SCANSTATE_IP,SCANSTATE_IP6>"to"			{ return TO; } /* XXX: SCANSTATE_IP is a workaround */
 
 "inet"			{ return INET; }
-- 
2.53.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-05-06  7:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-05 10:37 [PATCH nft] scanner: enable verdicts in rate scope too Florian Westphal
2026-05-05 14:14 ` Phil Sutter
2026-05-06  7:24   ` Florian Westphal

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.