public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top, Callum Parsey <callum@neoninteger.au>,
	me@yawnt.com, lemmi@nerd2nerd.org,
	Andrea Arcangeli <aarcange@redhat.com>
Subject: Re: [PATCH v2 07/10] conf: Don't exit if sourced default route has no gateway
Date: Mon, 22 May 2023 18:48:39 +1000	[thread overview]
Message-ID: <ZGssZ5vYyxXnerQQ@yekko> (raw)
In-Reply-To: <20230521234224.2770015-8-sbrivio@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 3732 bytes --]

On Mon, May 22, 2023 at 01:42:21AM +0200, Stefano Brivio wrote:
> If we use a template interface without a gateway on the default
> route, we can still offer almost complete functionality, except that,
> of course, we can't map the gateway address to the outer namespace or
> host, and that we have no obvious server address or identifier for
> use in DHCP's siaddr and option 54 (Server identifier, mandatory).
> 
> Continue, if we have a default route but no default gateway, and
> imply --no-map-gw and --no-dhcp in that case. NDP responder and
> DHCPv6 should be able to work as usual because we require a
> link-local address to be present, and we'll fall back to that.

Implying (rather than requiring) --no-map-gw and --no-dhcp does worry
me a bit.  I feel like it might violate the principle of least
surprise.

> Together with the previous commits implementing an actual copy of
> routes from the outer namespace, this should finally fix the
> operation of 'pasta --config-net' for cases where we have a default
> route on the host, but no default gateway, as it's the case for
> tap-style routes, including typical Wireguard endpoints.

Logic looks sound, though, so

Reviewed-by: David Gibson <david@gibson.dropbear.id.au>

> 
> Reported-by: me@yawnt.com
> Link: https://bugs.passt.top/show_bug.cgi?id=49
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
> ---
>  conf.c  | 10 +++++++---
>  passt.1 |  6 ++++--
>  2 files changed, 11 insertions(+), 5 deletions(-)
> 
> diff --git a/conf.c b/conf.c
> index 1392da5..c07b697 100644
> --- a/conf.c
> +++ b/conf.c
> @@ -665,8 +665,7 @@ static unsigned int conf_ip4(unsigned int ifi,
>  	if (MAC_IS_ZERO(mac))
>  		nl_link(0, ifi, mac, 0, 0);
>  
> -	if (IN4_IS_ADDR_UNSPECIFIED(&ip4->gw) ||
> -	    IN4_IS_ADDR_UNSPECIFIED(&ip4->addr) ||
> +	if (IN4_IS_ADDR_UNSPECIFIED(&ip4->addr) ||
>  	    MAC_IS_ZERO(mac))
>  		return 0;
>  
> @@ -708,7 +707,6 @@ static unsigned int conf_ip6(unsigned int ifi,
>  		nl_link(0, ifi, mac, 0, 0);
>  
>  	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->gw) ||
> -	    IN6_IS_ADDR_UNSPECIFIED(&ip6->addr) ||
>  	    IN6_IS_ADDR_UNSPECIFIED(&ip6->addr_ll) ||
>  	    MAC_IS_ZERO(mac))
>  		return 0;
> @@ -1658,6 +1656,12 @@ void conf(struct ctx *c, int argc, char **argv)
>  	    (*c->ip6.ifname_out && !c->ifi6))
>  		die("External interface not usable");
>  
> +	if (c->ifi4 && IN4_IS_ADDR_UNSPECIFIED(&c->ip4.gw))
> +		c->no_map_gw = c->no_dhcp = 1;
> +
> +	if (c->ifi6 && IN6_IS_ADDR_UNSPECIFIED(&c->ip6.gw))
> +		c->no_map_gw = 1;
> +
>  	/* Inbound port options can be parsed now (after IPv4/IPv6 settings) */
>  	optind = 1;
>  	do {
> diff --git a/passt.1 b/passt.1
> index 10c96ae..f965c34 100644
> --- a/passt.1
> +++ b/passt.1
> @@ -281,7 +281,8 @@ guest or target namespace will be silently dropped.
>  .TP
>  .BR \-\-no-dhcp
>  Disable the DHCP server. DHCP client requests coming from guest or target
> -namespace will be silently dropped.
> +namespace will be silently dropped. Implied if there is no gateway on the
> +selected IPv4 default route.
>  
>  .TP
>  .BR \-\-no-ndp
> @@ -301,7 +302,8 @@ namespace will be ignored.
>  .TP
>  .BR \-\-no-map-gw
>  Don't remap TCP connections and untracked UDP traffic, with the gateway address
> -as destination, to the host.
> +as destination, to the host. Implied if there is no gateway on the selected
> +default route for any of the enabled address families.
>  
>  .TP
>  .BR \-4 ", " \-\-ipv4-only

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2023-05-22  8:54 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-21 23:42 [PATCH v2 00/10] Optionally copy all routes and addresses for pasta, allow gateway-less routes Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 01/10] netlink: Fix comment about response buffer size for nl_req() Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 02/10] pasta: Improve error handling on failure to join network namespace Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 03/10] netlink: Add functionality to copy routes from outer namespace Stefano Brivio
2023-05-22  8:42   ` David Gibson
2023-05-22  9:58     ` Stefano Brivio
2023-05-23  3:08       ` David Gibson
2023-05-23  6:14         ` Stefano Brivio
2023-05-27  2:06           ` David Gibson
2023-05-21 23:42 ` [PATCH v2 04/10] conf: --config-net option is for pasta mode only Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 05/10] conf, pasta: With --config-net, copy all routes by default Stefano Brivio
2023-05-22  8:44   ` David Gibson
2023-05-22  9:59     ` Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 06/10] Revert "conf: Adjust netmask on mismatch between IPv4 address/netmask and gateway" Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 07/10] conf: Don't exit if sourced default route has no gateway Stefano Brivio
2023-05-22  8:48   ` David Gibson [this message]
2023-05-22 15:29     ` Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 08/10] netlink: Add functionality to copy addresses from outer namespace Stefano Brivio
2023-05-22  8:51   ` David Gibson
2023-05-21 23:42 ` [PATCH v2 09/10] conf, pasta: With --config-net, copy all addresses by default Stefano Brivio
2023-05-22  8:53   ` David Gibson
2023-05-22 15:30     ` Stefano Brivio
2023-05-21 23:42 ` [PATCH v2 10/10] passt.h: Fix description of pasta_ifi in struct ctx 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=ZGssZ5vYyxXnerQQ@yekko \
    --to=david@gibson.dropbear.id.au \
    --cc=aarcange@redhat.com \
    --cc=callum@neoninteger.au \
    --cc=lemmi@nerd2nerd.org \
    --cc=me@yawnt.com \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@redhat.com \
    /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).