Linux Netfilter development
 help / color / mirror / Atom feed
* [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains
@ 2023-03-09 13:52 Phil Sutter
  2023-03-09 15:23 ` Pablo Neira Ayuso
  2023-03-10 11:46 ` Phil Sutter
  0 siblings, 2 replies; 5+ messages in thread
From: Phil Sutter @ 2023-03-09 13:52 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

Users can't know the magic limit.

Signed-off-by: Phil Sutter <phil@nwl.cc>
---
 doc/nft.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/doc/nft.txt b/doc/nft.txt
index 7de4935b4b375..0d60c7520d31e 100644
--- a/doc/nft.txt
+++ b/doc/nft.txt
@@ -439,6 +439,9 @@ name which specifies the order in which chains with the same *hook* value are
 traversed. The ordering is ascending, i.e. lower priority values have precedence
 over higher ones.
 
+With *nat* type chains, there's a lower excluding limit of -200 for *priority*
+values, because conntrack hooks at this priority and NAT requires it.
+
 Standard priority values can be replaced with easily memorizable names.  Not all
 names make sense in every family with every hook (see the compatibility matrices
 below) but their numerical value can still be used for prioritizing chains.
-- 
2.38.0


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

* Re: [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains
  2023-03-09 13:52 [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains Phil Sutter
@ 2023-03-09 15:23 ` Pablo Neira Ayuso
  2023-03-09 15:32   ` Phil Sutter
  2023-03-10 11:46 ` Phil Sutter
  1 sibling, 1 reply; 5+ messages in thread
From: Pablo Neira Ayuso @ 2023-03-09 15:23 UTC (permalink / raw)
  To: Phil Sutter; +Cc: netfilter-devel

On Thu, Mar 09, 2023 at 02:52:46PM +0100, Phil Sutter wrote:
> Users can't know the magic limit.
>
> Signed-off-by: Phil Sutter <phil@nwl.cc>
> ---
>  doc/nft.txt | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/doc/nft.txt b/doc/nft.txt
> index 7de4935b4b375..0d60c7520d31e 100644
> --- a/doc/nft.txt
> +++ b/doc/nft.txt
> @@ -439,6 +439,9 @@ name which specifies the order in which chains with the same *hook* value are
>  traversed. The ordering is ascending, i.e. lower priority values have precedence
>  over higher ones.
>  
> +With *nat* type chains, there's a lower excluding limit of -200 for *priority*
> +values, because conntrack hooks at this priority and NAT requires it.

prerouting, output 		-200 	NF_IP_PRI_CONNTRACK

this should only apply in these two hooks, it should be possible to
relax this in input and postrouting in the kernel.

> +
>  Standard priority values can be replaced with easily memorizable names.  Not all
>  names make sense in every family with every hook (see the compatibility matrices
>  below) but their numerical value can still be used for prioritizing chains.
> -- 
> 2.38.0
> 

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

* Re: [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains
  2023-03-09 15:23 ` Pablo Neira Ayuso
@ 2023-03-09 15:32   ` Phil Sutter
  2023-03-09 17:34     ` Pablo Neira Ayuso
  0 siblings, 1 reply; 5+ messages in thread
From: Phil Sutter @ 2023-03-09 15:32 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

On Thu, Mar 09, 2023 at 04:23:25PM +0100, Pablo Neira Ayuso wrote:
> On Thu, Mar 09, 2023 at 02:52:46PM +0100, Phil Sutter wrote:
> > Users can't know the magic limit.
> >
> > Signed-off-by: Phil Sutter <phil@nwl.cc>
> > ---
> >  doc/nft.txt | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/doc/nft.txt b/doc/nft.txt
> > index 7de4935b4b375..0d60c7520d31e 100644
> > --- a/doc/nft.txt
> > +++ b/doc/nft.txt
> > @@ -439,6 +439,9 @@ name which specifies the order in which chains with the same *hook* value are
> >  traversed. The ordering is ascending, i.e. lower priority values have precedence
> >  over higher ones.
> >  
> > +With *nat* type chains, there's a lower excluding limit of -200 for *priority*
> > +values, because conntrack hooks at this priority and NAT requires it.
> 
> prerouting, output 		-200 	NF_IP_PRI_CONNTRACK
> 
> this should only apply in these two hooks, it should be possible to
> relax this in input and postrouting in the kernel.

So far nobody has complained, right? Motivation for my patch came from a
question in IRC, I don't think there was a real need for more priority
"space" in nat type chains. So while we may relax the restriction, I
don't see the motivation to do so. :)

Cheers, Phil

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

* Re: [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains
  2023-03-09 15:32   ` Phil Sutter
@ 2023-03-09 17:34     ` Pablo Neira Ayuso
  0 siblings, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2023-03-09 17:34 UTC (permalink / raw)
  To: Phil Sutter, netfilter-devel

On Thu, Mar 09, 2023 at 04:32:39PM +0100, Phil Sutter wrote:
> On Thu, Mar 09, 2023 at 04:23:25PM +0100, Pablo Neira Ayuso wrote:
> > On Thu, Mar 09, 2023 at 02:52:46PM +0100, Phil Sutter wrote:
> > > Users can't know the magic limit.
> > >
> > > Signed-off-by: Phil Sutter <phil@nwl.cc>
> > > ---
> > >  doc/nft.txt | 3 +++
> > >  1 file changed, 3 insertions(+)
> > > 
> > > diff --git a/doc/nft.txt b/doc/nft.txt
> > > index 7de4935b4b375..0d60c7520d31e 100644
> > > --- a/doc/nft.txt
> > > +++ b/doc/nft.txt
> > > @@ -439,6 +439,9 @@ name which specifies the order in which chains with the same *hook* value are
> > >  traversed. The ordering is ascending, i.e. lower priority values have precedence
> > >  over higher ones.
> > >  
> > > +With *nat* type chains, there's a lower excluding limit of -200 for *priority*
> > > +values, because conntrack hooks at this priority and NAT requires it.
> > 
> > prerouting, output 		-200 	NF_IP_PRI_CONNTRACK
> > 
> > this should only apply in these two hooks, it should be possible to
> > relax this in input and postrouting in the kernel.
> 
> So far nobody has complained, right? Motivation for my patch came from a
> question in IRC, I don't think there was a real need for more priority
> "space" in nat type chains. So while we may relax the restriction, I
> don't see the motivation to do so. :)

It is fine, this can be updated later. Please push it out because
release is coming.

It should be also possible to warn user via error reporting from
userspace.

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

* Re: [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains
  2023-03-09 13:52 [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains Phil Sutter
  2023-03-09 15:23 ` Pablo Neira Ayuso
@ 2023-03-10 11:46 ` Phil Sutter
  1 sibling, 0 replies; 5+ messages in thread
From: Phil Sutter @ 2023-03-10 11:46 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

On Thu, Mar 09, 2023 at 02:52:46PM +0100, Phil Sutter wrote:
> Users can't know the magic limit.
> 
> Signed-off-by: Phil Sutter <phil@nwl.cc>

Patch applied.

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

end of thread, other threads:[~2023-03-10 11:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-09 13:52 [nft PATCH] doc: nft.8: Document lower priority limit for nat type chains Phil Sutter
2023-03-09 15:23 ` Pablo Neira Ayuso
2023-03-09 15:32   ` Phil Sutter
2023-03-09 17:34     ` Pablo Neira Ayuso
2023-03-10 11:46 ` Phil Sutter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox