public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: Stefano Brivio <sbrivio@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: passt-dev@passt.top
Subject: Re: [PATCH v2 16/23] conf: Move "all" handling to port specifier
Date: Thu, 16 Apr 2026 00:04:43 +0200 (CEST)	[thread overview]
Message-ID: <20260416000443.5372dc46@elisabeth> (raw)
In-Reply-To: <20260410010309.736855-17-david@gibson.dropbear.id.au>

On Fri, 10 Apr 2026 11:03:02 +1000
David Gibson <david@gibson.dropbear.id.au> wrote:

> Currently -[tTuU] all is handled separately in conf_ports() before calling
> conf_ports_spec().  Earlier changes mean we can now move this handling to
> conf_ports_spec().  This makes the code slightly simpler, but more
> importantly it allows some useful combinations we couldn't previously do,
> such as
> 	-t 127.0.0.1/all
> or
> 	-u %eth2/all
> 
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> ---
>  conf.c  | 25 ++++++++++---------------
>  passt.1 | 28 ++++++++++++++++++++--------
>  2 files changed, 30 insertions(+), 23 deletions(-)
> 
> diff --git a/conf.c b/conf.c
> index 5d6517c3..f62109b5 100644
> --- a/conf.c
> +++ b/conf.c
> @@ -251,6 +251,11 @@ static void conf_ports_spec(const struct ctx *c,
>  	const char *p, *ep;
>  	unsigned i;
>  
> +	if (!strcmp(spec, "all")) {
> +		/* Treat "all" as equivalent to "": all non-ephemeral ports */
> +		spec = "";
> +	}
> +
>  	/* Mark all exclusions first, they might be given after base ranges */
>  	for_each_chunk(p, ep, spec, ",") {
>  		struct port_range xrange;
> @@ -372,19 +377,6 @@ static void conf_ports(const struct ctx *c, char optname, const char *optarg,
>  		return;
>  	}
>  
> -	if (!strcmp(optarg, "all")) {
> -		uint8_t exclude[PORT_BITMAP_SIZE] = { 0 };
> -
> -		/* Exclude ephemeral ports */
> -		fwd_port_map_ephemeral(exclude);
> -
> -		conf_ports_range_except(c, optname, optarg, fwd,
> -					proto, NULL, NULL,
> -					1, NUM_PORTS - 1, exclude,
> -					1, FWD_WEAK);
> -		return;
> -	}
> -
>  	strncpy(buf, optarg, sizeof(buf) - 1);
>  
>  	if ((spec = strchr(buf, '/'))) {
> @@ -1039,14 +1031,17 @@ static void usage(const char *name, FILE *f, int status)
>  		"    can be specified multiple times\n"
>  		"    SPEC can be:\n"
>  		"      'none': don't forward any ports\n"
> -		"      'all': forward all unbound, non-ephemeral ports\n"
>  		"%s"
>  		"      [ADDR[%%IFACE]/]PORTS: forward specific ports\n"
> -		"        PORTS is a comma-separated list of ports, optionally\n"
> +		"        PORTS is either 'all' (forward all unbound, non-ephemeral\n"
> +		"        ports), or a comma-separated list of ports, optionally\n"
>  		"        ranged with '-' and optional target ports after ':'.\n"
>  		"        Ranges can be reduced by excluding ports or ranges\n"
>  		"        prefixed by '~'\n"
>  		"        Examples:\n"
> +		"        -t all         Forward all ports\n"

Nit: the examples below have a tab as a separator, which makes it
slightly easier to ensure we indent them properly.

> +		"        -t 127.0.0.1/all Forward all ports from local address\n"
> +		"                         127.0.0.1\n"

This makes things pretty hard on eyes as it's not consistent with the
rest of the "table". Could we perhaps do:

		"        -t ::1/all	Forward all ports from ::1\n"

?

>  		"        -t 22		Forward local port 22 to 22 on %s\n"
>  		"        -t 22:23	Forward local port 22 to 23 on %s\n"
>  		"        -t 22,25	Forward ports 22, 25 to ports 22, 25\n"
> diff --git a/passt.1 b/passt.1
> index d329f8f0..3ba447d5 100644
> --- a/passt.1
> +++ b/passt.1
> @@ -434,12 +434,6 @@ Configure TCP port forwarding to guest or namespace. \fIspec\fR can be one of:
>  .BR none
>  Don't forward any ports
>  
> -.TP
> -.BR all
> -Forward all unbound, non-ephemeral ports, as permitted by current capabilities.
> -For low (< 1024) ports, see \fBNOTES\fR. No failures are reported for
> -unavailable ports, unless no ports could be forwarded at all.
> -
>  .TP
>  .BR auto " " (\fBpasta\fR " " only)
>  Dynamically forward ports bound in the namespace. The list of ports is
> @@ -449,10 +443,20 @@ periodically derived (every second) from listening sockets reported by
>  .TP
>  [\fIaddress\fR[\fB%\fR\fIinterface\fR]\fB/\fR]\fIports\fR ...
>  Specific ports to forward.  Optionally, a specific listening address
> -and interface name (since Linux 5.7) can be specified.  \fIports\fR is
> -a comma-separated list of entries which may be any of:
> +and interface name (since Linux 5.7) can be specified.  \fIports\fR
> +may be either:
>  .RS
>  .TP
> +\fBall\fR
> +Forward all unbound, non-ephemeral ports, as permitted by current
> +capabilities.  For low (< 1024) ports, see \fBNOTES\fR. No failures
> +are reported for unavailable ports, unless no ports could be forwarded
> +at all.
> +.RE
> +
> +.RS
> +or a comma-separated list of entries which may be any of:
> +.TP
>  \fIfirst\fR[\fB-\fR\fIlast\fR][\fB:\fR\fItofirst\fR[\fB-\fR\fItolast\fR]]
>  Include range. Forward port numbers between \fIfirst\fR and \fIlast\fR
>  (inclusive) to ports between \fItofirst\fR and \fItolast\fR.  If
> @@ -473,6 +477,14 @@ unavailable ports, unless no ports could be forwarded at all.
>  Examples:
>  .RS
>  .TP
> +-t all
> +Forward all unbound, non-ephemeral ports as permitted by current
> +capabilities to the corresponding port on the guest or namespace
> +.TP
> +-t 127.0.0.1/all
> +For the local address 127.0.0.1, forward all unbound, non-ephemeral
> +ports as permitted by current capabilities.

Nit: all the other examples have no dot at the end (I tend to think
it fits better this type of list, but all I care about is that it's
consistent).

> +.TP
>  -t 22
>  Forward local port 22 to port 22 on the guest or namespace
>  .TP

-- 
Stefano


  reply	other threads:[~2026-04-15 22:04 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-10  1:02 [PATCH v2 00/23] Rework forwarding option parsing David Gibson
2026-04-10  1:02 ` [PATCH v2 01/23] conf: Split parsing of port specifiers from the rest of -[tuTU] parsing David Gibson
2026-04-10  1:02 ` [PATCH v2 02/23] conf: Simplify handling of default forwarding mode David Gibson
2026-04-10  1:02 ` [PATCH v2 03/23] conf: Move first pass handling of -[TU] next to handling of -[tu] David Gibson
2026-04-10  1:02 ` [PATCH v2 04/23] doc: Consolidate -[tu] option descriptions for passt and pasta David Gibson
2026-04-10  1:02 ` [PATCH v2 05/23] conf: Permit -[tTuU] all in pasta mode David Gibson
2026-04-10  1:02 ` [PATCH v2 06/23] fwd: Better split forwarding rule specification from associated sockets David Gibson
2026-04-10  1:02 ` [PATCH v2 07/23] fwd_rule: Move forwarding rule formatting David Gibson
2026-04-10  1:02 ` [PATCH v2 08/23] conf: Pass protocol explicitly to conf_ports_range_except() David Gibson
2026-04-10  1:02 ` [PATCH v2 09/23] fwd: Split rule building from rule adding David Gibson
2026-04-10  1:02 ` [PATCH v2 10/23] fwd_rule: Move rule conflict checking from fwd_rule_add() to caller David Gibson
2026-04-15 22:04   ` Stefano Brivio
2026-04-16  1:19     ` David Gibson
2026-04-10  1:02 ` [PATCH v2 11/23] fwd: Improve error handling in fwd_rule_add() David Gibson
2026-04-15 22:04   ` Stefano Brivio
2026-04-16  1:21     ` David Gibson
2026-04-10  1:02 ` [PATCH v2 12/23] conf: Don't be strict about exclusivity of forwarding mode David Gibson
2026-04-10  1:02 ` [PATCH v2 13/23] conf: Rework stepping through chunks of port specifiers David Gibson
2026-04-10  1:03 ` [PATCH v2 14/23] conf: Rework checking for garbage after a range David Gibson
2026-04-10  1:03 ` [PATCH v2 15/23] doc: Rework man page description of port specifiers David Gibson
2026-04-15 22:04   ` Stefano Brivio
2026-04-16  1:34     ` David Gibson
2026-04-10  1:03 ` [PATCH v2 16/23] conf: Move "all" handling to port specifier David Gibson
2026-04-15 22:04   ` Stefano Brivio [this message]
2026-04-16  1:37     ` David Gibson
2026-04-10  1:03 ` [PATCH v2 17/23] conf: Allow user-specified auto-scanned port forwarding ranges David Gibson
2026-04-15 22:04   ` Stefano Brivio
2026-04-16  1:44     ` David Gibson
2026-04-10  1:03 ` [PATCH v2 18/23] conf: Move SO_BINDTODEVICE workaround to conf_ports() David Gibson
2026-04-10  1:03 ` [PATCH v2 19/23] conf: Don't pass raw commandline argument to conf_ports_spec() David Gibson
2026-04-10  1:03 ` [PATCH v2 20/23] fwd, conf: Add capabilities bits to each forwarding table David Gibson
2026-04-10  1:03 ` [PATCH v2 21/23] conf, fwd: Stricter rule checking in fwd_rule_add() David Gibson
2026-04-15 22:04   ` Stefano Brivio
2026-04-16  1:46     ` David Gibson
2026-04-10  1:03 ` [PATCH v2 22/23] fwd_rule: Move ephemeral port probing to fwd_rule.c David Gibson
2026-04-10  1:03 ` [PATCH v2 23/23] fwd, conf: Move rule parsing code to fwd_rule.[ch] David Gibson
2026-04-15 22:05 ` [PATCH v2 00/23] Rework forwarding option parsing Stefano Brivio

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=20260416000443.5372dc46@elisabeth \
    --to=sbrivio@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=passt-dev@passt.top \
    /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.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

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 IMAP folder(s).