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, Justin Jereza <justinjereza@gmail.com>
Subject: Re: [PATCH] conf: Fix erroneous check of ip6->gw
Date: Sat, 3 Jun 2023 08:46:12 +0200	[thread overview]
Message-ID: <20230603084612.5563f61f@elisabeth> (raw)
In-Reply-To: <20230602050202.1378178-1-david@gibson.dropbear.id.au>

On Fri,  2 Jun 2023 15:02:02 +1000
David Gibson <david@gibson.dropbear.id.au> wrote:

> a7359f094898 ("conf: Don't exit if sourced default route has no gateway")
> was supposed to allow passt/pasta to run even if given a template interface
> which has no default gateway.  However a mistake in the patch means it
> still requires the gateway, but doesn't require a global address for the
> guest which we really do need.
> 
> This is one part (but not the only part) of the problem seen in
> https://bugs.passt.top/show_bug.cgi?id=50.
>
> Fixes: a7359f094898

Thanks! Applied with:

Reported-by: Justin Jereza <justinjereza@gmail.com>
Fixes: a7359f094898 ("conf: Don't exit if sourced default route has no gateway")
Link: https://bugs.passt.top/show_bug.cgi?id=50
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>

If it helps (not that you need to care, really):
  git show -s --abbrev=12 --pretty=format:"Fixes: %h (\"%s\")" "${sha}"

or... scripts:
  https://lore.kernel.org/all/20190220205910.7bd7fd40@redhat.com/
  https://lore.kernel.org/all/20190220213729.49deb54f@redhat.com/

> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
>
> ---
>  conf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/conf.c b/conf.c
> index d8414fe7..ffff235b 100644
> --- a/conf.c
> +++ b/conf.c
> @@ -708,7 +708,7 @@ static unsigned int conf_ip6(unsigned int ifi,
>  	if (MAC_IS_ZERO(mac))
>  		nl_link(0, ifi, mac, 0, 0);
>  
> -	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->gw) ||
> +	if (IN6_IS_ADDR_UNSPECIFIED(&ip6->addr) ||
>  	    IN6_IS_ADDR_UNSPECIFIED(&ip6->addr_ll) ||
>  	    MAC_IS_ZERO(mac))
>  		return 0;

-- 
Stefano


      reply	other threads:[~2023-06-03  6:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-02  5:02 [PATCH] conf: Fix erroneous check of ip6->gw David Gibson
2023-06-03  6:46 ` Stefano Brivio [this message]

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=20230603084612.5563f61f@elisabeth \
    --to=sbrivio@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=justinjereza@gmail.com \
    --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).