From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: passt.top; dmarc=pass (p=quarantine dis=none) header.from=redhat.com Authentication-Results: passt.top; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=f7Ig3xyo; dkim-atps=neutral Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by passt.top (Postfix) with ESMTPS id 7D7615A061C for ; Mon, 13 Apr 2026 02:53:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1776041616; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4RLYcunNXEGCGh7EEL484oht+Ii8oRRriYR7CcoLrb0=; b=f7Ig3xyoyiT+/r06dK0FXG3/xS1IVcbjnBsoYegSz+HVVU20+0Zhnl2z5KH+8svZO8/hvr QRfOT3E6G1qbJt+a6WPrUCk/8H/vAt+uPTKy9H9/llfiMlUaqsqasxUiYzkD5qX0qeQjK0 w2UH0VF9wuz5wCTGPmeE8+FttbLnX4U= Received: from mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (ec2-35-165-154-97.us-west-2.compute.amazonaws.com [35.165.154.97]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-609-pOH2L1NlMbqS-MjMQcSrrg-1; Sun, 12 Apr 2026 20:53:35 -0400 X-MC-Unique: pOH2L1NlMbqS-MjMQcSrrg-1 X-Mimecast-MFC-AGG-ID: pOH2L1NlMbqS-MjMQcSrrg_1776041614 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id C0D721800454; Mon, 13 Apr 2026 00:53:33 +0000 (UTC) Received: from jmaloy-thinkpadp16vgen1.rmtcaqc.csb (unknown [10.22.64.70]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 0CEA330001A1; Mon, 13 Apr 2026 00:53:32 +0000 (UTC) From: Jon Maloy To: sbrivio@redhat.com, david@gibson.dropbear.id.au, jmaloy@redhat.com, passt-dev@passt.top Subject: [PATCH v7 11/13] dhcp: Select address for DHCP distribution Date: Sun, 12 Apr 2026 20:53:17 -0400 Message-ID: <20260413005319.3295910-12-jmaloy@redhat.com> In-Reply-To: <20260413005319.3295910-1-jmaloy@redhat.com> References: <20260413005319.3295910-1-jmaloy@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: jLkNqjwSfz1IE85Nhky1aGlyztS8KgMSySolh_POeN4_1776041614 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true Message-ID-Hash: GEBUSNBT4OQNZHK2PTNXWW7VFC6KTPZP X-Message-ID-Hash: GEBUSNBT4OQNZHK2PTNXWW7VFC6KTPZP X-MailFrom: jmaloy@redhat.com 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 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: We introduce a CONF_ADDR_DHCP flag to mark if an added address is eligible for DHCP advertisement. By doing this once and for all in the fwd_set_addr() function, the DHCP code only needs to check for this flag to know that all criteria for advertisement are fulfilled. Hence, we update the code in dhcp.c correspondingly. We also let the conf_print() function use this flag to determine and print the selected address. Signed-off-by: Jon Maloy --- v6: -Split off from a commit handling both DHCP and DHCPv6 v7: -Modified DHCP advertisement eligibility criteria IPv4 addresses: We now permit link local addresses to be eligible if they were configured by the user. -Adapted to previous changes in this series --- conf.c | 5 +++-- dhcp.c | 14 +++++++++----- fwd.c | 8 ++++++++ migrate.c | 5 +++++ passt.h | 1 + 5 files changed, 26 insertions(+), 7 deletions(-) diff --git a/conf.c b/conf.c index 3cb3553..612df07 100644 --- a/conf.c +++ b/conf.c @@ -46,6 +46,7 @@ #include "lineread.h" #include "isolation.h" #include "log.h" +#include "fwd.h" #include "vhost_user.h" #define NETNS_RUN_DIR "/run/netns" @@ -1181,8 +1182,8 @@ static void conf_print(const struct ctx *c) inet_ntop(AF_INET, &c->ip4.map_host_loopback, buf, sizeof(buf))); - a = fwd_get_addr(c, AF_INET, 0, 0); - if (a && !c->no_dhcp) { + a = fwd_get_addr(c, AF_INET, CONF_ADDR_DHCP, 0); + if (a) { uint32_t mask; mask = IN4_MASK(inany_prefix_len(&a->addr, diff --git a/dhcp.c b/dhcp.c index f0fa212..0f98cfc 100644 --- a/dhcp.c +++ b/dhcp.c @@ -31,6 +31,8 @@ #include "passt.h" #include "tap.h" #include "log.h" +#include "fwd.h" +#include "conf.h" #include "dhcp.h" /** @@ -302,19 +304,18 @@ static void opt_set_dns_search(const struct ctx *c, size_t max_len) */ int dhcp(const struct ctx *c, struct iov_tail *data) { + struct in_addr addr, mask, dst; char macstr[ETH_ADDRSTRLEN]; const struct guest_addr *a; size_t mlen, dlen, opt_len; - struct in_addr mask, dst; struct ethhdr eh_storage; struct iphdr iph_storage; struct udphdr uh_storage; + const struct udphdr *uh; const struct ethhdr *eh; const struct iphdr *iph; - const struct udphdr *uh; struct msg m_storage; struct msg const *m; - struct in_addr addr; struct msg reply; unsigned int i; @@ -346,8 +347,11 @@ int dhcp(const struct ctx *c, struct iov_tail *data) m->op != BOOTREQUEST) return -1; - a = fwd_get_addr(c, AF_INET, 0, 0); - assert(a); + /* Select address to offer */ + a = fwd_get_addr(c, AF_INET, CONF_ADDR_DHCP, 0); + if (!a) + return -1; + addr = *inany_v4(&a->addr); reply.op = BOOTREPLY; diff --git a/fwd.c b/fwd.c index b177be9..39e52c4 100644 --- a/fwd.c +++ b/fwd.c @@ -293,6 +293,14 @@ void fwd_set_addr(struct ctx *c, const union inany_addr *addr, return; } + /* Determine advertisement eligibility */ + if (inany_v4(addr)) { + if ((flags & CONF_ADDR_USER) || + (flags & CONF_ADDR_HOST && !(flags & CONF_ADDR_LINKLOCAL))) + if (!c->no_dhcp) + flags |= CONF_ADDR_DHCP; + } + /* Add to head or tail, depending on flag */ if (flags & CONF_ADDR_OBSERVED) { a = &arr[0]; diff --git a/migrate.c b/migrate.c index 93f67ae..afdc8b4 100644 --- a/migrate.c +++ b/migrate.c @@ -52,6 +52,7 @@ struct migrate_seen_addrs_v2 { #define MIGRATE_ADDR_HOST BIT(1) #define MIGRATE_ADDR_LINKLOCAL BIT(2) #define MIGRATE_ADDR_OBSERVED BIT(3) +#define MIGRATE_ADDR_DHCP BIT(4) /** * struct migrate_addr_v3 - Migration format for a single address entry @@ -83,6 +84,8 @@ static uint8_t flags_to_migration(uint8_t flags) migration |= MIGRATE_ADDR_LINKLOCAL; if (flags & CONF_ADDR_OBSERVED) migration |= MIGRATE_ADDR_OBSERVED; + if (flags & CONF_ADDR_DHCP) + migration |= MIGRATE_ADDR_DHCP; return migration; } @@ -105,6 +108,8 @@ static uint8_t flags_from_migration(uint8_t migration) flags |= CONF_ADDR_LINKLOCAL; if (migration & MIGRATE_ADDR_OBSERVED) flags |= CONF_ADDR_OBSERVED; + if (migration & MIGRATE_ADDR_DHCP) + flags |= CONF_ADDR_DHCP; return flags; } diff --git a/passt.h b/passt.h index 3ef84eb..9508c2a 100644 --- a/passt.h +++ b/passt.h @@ -83,6 +83,7 @@ struct guest_addr { #define CONF_ADDR_GENERATED BIT(2) /* Generated by PASST/PASTA */ #define CONF_ADDR_LINKLOCAL BIT(3) /* Link-local address */ #define CONF_ADDR_OBSERVED BIT(4) /* Seen in guest traffic */ +#define CONF_ADDR_DHCP BIT(5) /* Advertise via DHCP (IPv4) */ }; /** -- 2.52.0