From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=none (p=none dis=none) header.from=gibson.dropbear.id.au Authentication-Results: passt.top; dkim=pass (2048-bit key; secure) header.d=gibson.dropbear.id.au header.i=@gibson.dropbear.id.au header.a=rsa-sha256 header.s=202512 header.b=lJMO1E/J; dkim-atps=neutral Received: from mail.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id EB8445A065C for ; Fri, 12 Dec 2025 08:10:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=202512; t=1765523440; bh=4ml3pGwsuFhKytBB60ZNAyvvwV4S9EKF1IzEV28FQsY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lJMO1E/J0LsAUev9aYKKEkA5Z6UYa6JQDHdpgHHWWDvNPee1fdES6bpnLpuLv6u9S kxmZdDGPnX7MBTyg+1dgBdK1FNQF9h8DB8YLhGqV2vjXWwRQBKt04ubQFvHf0bw+3S hslXsBaWHmc9odW7dR7X55CRGx1xOm8yxCIaXgka4AYJmNqMt93FK+gGUhFUovXhOc zr1M3E5O+vwwrLDnTFAmqlrE613AjYM1173OiwHvmfDZIWF47kO1mpnP1WWxfkn8Zz XxI9E951CWZKF1ahZ/THhoFMsPqVFVk3iRtqcUxWx9uI6fzMyr9oKTUXB3YmXF5oCP TaloCBnmLG6Hw== Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4dSLFr2HL8z4wQb; Fri, 12 Dec 2025 18:10:40 +1100 (AEDT) From: David Gibson To: passt-dev@passt.top, Stefano Brivio Subject: [PATCH 5/5] conf, fwd: Record "auto" port forwards in forwarding table Date: Fri, 12 Dec 2025 18:10:38 +1100 Message-ID: <20251212071038.3943933-6-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251212071038.3943933-1-david@gibson.dropbear.id.au> References: <20251212071038.3943933-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: EY5SE2KQYFJPGTBHBFAUXCJI6MFCVZJV X-Message-ID-Hash: EY5SE2KQYFJPGTBHBFAUXCJI6MFCVZJV X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.8 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Currently the forwarding table records details of explicit port forwards, but nothing for -[tTuU] auto. That looks a little odd on the debug output, and will be a problem for future changes. Extend the forward table to have entries for auto-scanned forwards, using a new FWD_SCAN flag. For now the mechanism of auto port forwarding isn't updated, and we can only create a single FWD_SCAN entry per protocol and direction. We'll better integrate auto scanning with other forward table mechanics in future. Signed-off-by: David Gibson --- conf.c | 31 ++++++++++++++++++++++++++----- fwd.c | 12 +++++++----- fwd.h | 2 ++ 3 files changed, 35 insertions(+), 10 deletions(-) diff --git a/conf.c b/conf.c index b24ab407..36f5d448 100644 --- a/conf.c +++ b/conf.c @@ -135,7 +135,7 @@ static int parse_port_range(const char *s, char **endptr, * @ifname: Listening interface * @first: First port to forward * @last: Last port to forward - * @exclude: Bitmap of ports to exclude + * @exclude: Bitmap of ports to exclude (may be NULL) * @to: Port to translate @first to when forwarding * @flags: Flags for forwarding entries */ @@ -158,11 +158,11 @@ static void conf_ports_range_except(const struct ctx *c, char optname, } for (base = first; base <= last; base++) { - if (bitmap_isset(exclude, base)) + if (exclude && bitmap_isset(exclude, base)) continue; for (i = base; i <= last; i++) { - if (bitmap_isset(exclude, i)) + if (exclude && bitmap_isset(exclude, i)) break; if (bitmap_isset(fwd->map, i)) { @@ -173,10 +173,10 @@ static void conf_ports_range_except(const struct ctx *c, char optname, bitmap_set(fwd->map, i); fwd->delta[i] = delta; - if (optname == 't') + if (!(flags & FWD_SCAN) && optname == 't') ret = tcp_sock_init(c, PIF_HOST, addr, ifname, i); - else if (optname == 'u') + else if (!(flags & FWD_SCAN) && optname == 'u') ret = udp_sock_init(c, PIF_HOST, addr, ifname, i); else @@ -2191,6 +2191,27 @@ void conf(struct ctx *c, int argc, char **argv) if (!c->udp.fwd_out.mode) c->udp.fwd_out.mode = fwd_default; + if (c->tcp.fwd_in.mode == FWD_AUTO) { + conf_ports_range_except(c, 't', "auto", &c->tcp.fwd_in, + NULL, NULL, 1, NUM_PORTS - 1, + NULL, 1, FWD_SCAN); + } + if (c->tcp.fwd_out.mode == FWD_AUTO) { + conf_ports_range_except(c, 'T', "auto", &c->tcp.fwd_out, + NULL, "lo", 1, NUM_PORTS - 1, + NULL, 1, FWD_SCAN); + } + if (c->udp.fwd_in.mode == FWD_AUTO) { + conf_ports_range_except(c, 'u', "auto", &c->udp.fwd_in, + NULL, NULL, 1, NUM_PORTS - 1, + NULL, 1, FWD_SCAN); + } + if (c->udp.fwd_out.mode == FWD_AUTO) { + conf_ports_range_except(c, 'U', "auto", &c->udp.fwd_out, + NULL, "lo", 1, NUM_PORTS - 1, + NULL, 1, FWD_SCAN); + } + if (!c->quiet) conf_print(c); } diff --git a/fwd.c b/fwd.c index f4b6c492..4e54f5ce 100644 --- a/fwd.c +++ b/fwd.c @@ -331,7 +331,7 @@ void fwd_table_add(struct fwd_ports *tab, uint8_t flags, in_port_t first, in_port_t last, in_port_t to) { /* Flags which can be set from the caller */ - const uint8_t allowed_flags = FWD_WEAK; + const uint8_t allowed_flags = FWD_WEAK | FWD_SCAN; struct fwd_entry *new; ASSERT(!(flags & ~allowed_flags)); @@ -371,6 +371,7 @@ void fwd_table_print(const struct fwd_ports *tab) for (i = 0; i < tab->count; i++) { const struct fwd_entry *fwd = &tab->tab[i]; const char *weak = fwd->flags & FWD_WEAK ? " WEAK" : ""; + const char *scan = fwd->flags & FWD_SCAN ? " AUTO" : ""; const char *percent = *fwd->ifname ? "%" : ""; char addr[INANY_ADDRSTRLEN] = "*"; @@ -378,13 +379,14 @@ void fwd_table_print(const struct fwd_ports *tab) inany_ntop(&fwd->addr, addr, sizeof(addr)); if (fwd->first == fwd->last) { - info(" [%s]%s%s:%hu => %hu %s", + info(" [%s]%s%s:%hu => %hu %s%s", addr, percent, fwd->ifname, - fwd->first, fwd->to, weak); + fwd->first, fwd->to, weak, scan); } else { - info(" [%s]%s%s:%hu-%hu => %hu-%hu %s", + info(" [%s]%s%s:%hu-%hu => %hu-%hu %s%s", addr, percent, fwd->ifname, fwd->first, fwd->last, - fwd->to, fwd->last - fwd->first + fwd->to, weak); + fwd->to, fwd->last - fwd->first + fwd->to, + weak, scan); } } } diff --git a/fwd.h b/fwd.h index 07222f41..7a9bc3ed 100644 --- a/fwd.h +++ b/fwd.h @@ -26,6 +26,7 @@ bool fwd_port_is_ephemeral(in_port_t port); * @flags: Flag mask * FWD_DUAL_STACK - forward both IPv4 and IPv6 (requires @addr be ::) * FWD_WEAK - Don't give an error if binds fail for some forwards + * FWD_SCAN - Only forward if we scan a listener on the target * * FIXME: @addr and @ifname currently ignored for outbound tables */ @@ -35,6 +36,7 @@ struct fwd_entry { in_port_t first, last, to; #define FWD_DUAL_STACK BIT(0) #define FWD_WEAK BIT(1) +#define FWD_SCAN BIT(2) uint8_t flags; }; -- 2.52.0