From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top, Jelle van der Waa <jvanderwaa@redhat.com>,
Martin Pitt <mpitt@redhat.com>
Subject: Re: [PATCH] netlink: With no default route, pick the first interface with a route
Date: Wed, 19 Jun 2024 11:53:33 +1000 [thread overview]
Message-ID: <ZnI6HYhG6LrtdyKO@zatzit> (raw)
In-Reply-To: <20240618171803.1924322-1-sbrivio@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 3510 bytes --]
On Tue, Jun 18, 2024 at 07:18:03PM +0200, Stefano Brivio wrote:
> While commit f919dc7a4b1c ("conf, netlink: Don't require a default
> route to start") sounded reasonable in the assumption that, if we
> don't find default routes for a given address family, we can still
> proceed by selecting an interface with any route *iff it's the only
> one for that protocol family*, Jelle reported a further issue in a
> similar setup.
>
> There, multiple interfaces are present, and while remote container
> connectivity doesn't matter for the container, local connectivity is
> desired. There are no default routes, but those multiple interfaces
> all have non-default routes, so we should just pick one and start.
>
> Pick the first interface reported by the kernel with any route, if
> there are no default routes. There should be no harm in doing so.
>
> Reported-by: Jelle van der Waa <jvanderwaa@redhat.com>
> Reported-by: Martin Pitt <mpitt@redhat.com>
> Link: https://bugzilla.redhat.com/show_bug.cgi?id=2277954
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Seems reasonable until we can tackle this better.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> netlink.c | 16 ++++++++--------
> passt.1 | 4 ++--
> 2 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/netlink.c b/netlink.c
> index 0be4ea3..3aed7e5 100644
> --- a/netlink.c
> +++ b/netlink.c
> @@ -269,8 +269,7 @@ unsigned int nl_get_ext_if(int s, sa_family_t af)
> size_t na;
>
> /* Look for an interface with a default route first, failing that, look
> - * for any interface with a route, and pick it only if it's the only
> - * interface with a route.
> + * for any interface with a route, and pick the first one, if any.
> */
> seq = nl_send(s, &req, RTM_GETROUTE, NLM_F_DUMP, sizeof(req));
> nl_foreach_oftype(nh, status, s, buf, seq, RTM_NEWROUTE) {
> @@ -324,18 +323,19 @@ unsigned int nl_get_ext_if(int s, sa_family_t af)
> warn("netlink: RTM_GETROUTE failed: %s", strerror(-status));
>
> if (defifi) {
> - if (ndef > 1)
> + if (ndef > 1) {
> info("Multiple default %s routes, picked first",
> af_name(af));
> + }
> return defifi;
> }
>
> if (anyifi) {
> - if (nany == 1)
> - return anyifi;
> -
> - info("Multiple interfaces with %s routes, use -i to select one",
> - af_name(af));
> + if (nany > 1) {
> + info("Multiple interfaces with %s routes, picked first",
> + af_name(af));
> + }
> + return anyifi;
> }
>
> if (!nany)
> diff --git a/passt.1 b/passt.1
> index 6dfa670..6ee1e2e 100644
> --- a/passt.1
> +++ b/passt.1
> @@ -152,8 +152,8 @@ This option can be specified zero (for defaults) to two times (once for IPv4,
> once for IPv6).
> By default, assigned IPv4 and IPv6 addresses are taken from the host interfaces
> with the first default route, if any, for the corresponding IP version. If no
> -default routes are available and there is just one interface with any route,
> -that interface will be chosen instead.
> +default routes are available and there is any interface with any route for a
> +given IP version, the first of these interfaces will be chosen instead.
>
> .TP
> .BR \-n ", " \-\-netmask " " \fImask
--
David Gibson (he or they) | 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 --]
next prev parent reply other threads:[~2024-06-19 1:56 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-18 17:18 [PATCH] netlink: With no default route, pick the first interface with a route Stefano Brivio
2024-06-19 1:53 ` David Gibson [this message]
2024-06-19 8:31 ` Paul Holzinger
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=ZnI6HYhG6LrtdyKO@zatzit \
--to=david@gibson.dropbear.id.au \
--cc=jvanderwaa@redhat.com \
--cc=mpitt@redhat.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).