public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: Laurent Vivier <lvivier@redhat.com>
To: Anshu Kumari <anskuma@redhat.com>,
	sbrivio@redhat.com, passt-dev@passt.top
Cc: david@gibson.dropbear.id.au, jmaloy@redhat.com
Subject: Re: [PATCH v6 5/6] dhcp: Add --dhcp-boot command-line option
Date: Wed, 26 Aug 2026 10:09:12 +0200	[thread overview]
Message-ID: <d95589c3-f349-48d6-a878-1cadb26444e9@redhat.com> (raw)
In-Reply-To: <20260824134436.282300-6-anskuma@redhat.com>

On 8/24/26 15:44, Anshu Kumari wrote:
> Add a convenience shorthand --dhcp-boot FILE that sets the boot file
> name (DHCP option 67) for network boot.  This is equivalent to
> --dhcp-opt 67,FILE.
> 
> Link: https://bugs.passt.top/show_bug.cgi?id=192
> Signed-off-by: Anshu Kumari <anskuma@redhat.com>
> ---
> v6:
>    - no changes.
> 
> v5:
>    - replaced conf_dhcp_option() to dhcp_set_opt().
> 
> v4:
>    - Changed argument name from URL to FILE in usage and man page.
>    - Fixed UEFI HTTP boot wording in man page
> 
> v3:
>    - case 32 now calls dhcp_add_option(c, 67, optarg).
>    - Handles duplicate codes: --dhcp-boot and --dhcp-opt 67 coexist
>      correctly, last value wins.
> 
> v2:
>    - Removed separate dhcp_boot[PATH_MAX] field — --dhcp-boot foo
>      now stores into custom_opts[] as code 67 (same as --dhcp-opt 67,foo)
> ---
>   conf.c  | 5 +++++
>   passt.1 | 7 +++++++
>   2 files changed, 12 insertions(+)

You should move in this patch the change from PATCH 3 (and move PATCH 3 after this patch):

+	has_bootfile = opts[67].slen > 0 &&
+		       (size_t)opts[67].slen < sizeof(reply.file);
+	if (has_bootfile)
+		memcpy(reply.file, opts[67].s, opts[67].slen);

except that:

Reviewed-by: Laurent Vivier <lvivier@redhat.com>

> 
> diff --git a/conf.c b/conf.c
> index e5f1108..04e9f6e 100644
> --- a/conf.c
> +++ b/conf.c
> @@ -634,6 +634,7 @@ static void usage(const char *name, FILE *f, int status)
>   		"    a single, empty option disables the DNS search list\n"
>   		"  -H, --hostname NAME 	Hostname to configure client with\n"
>   		"  --fqdn NAME		FQDN to configure client with\n"
> +		"  --dhcp-boot FILE	Boot file name for network boot\n"
>   		"  --dhcp-opt CODE,VAL	Set DHCP option CODE to VAL\n");
>   	if (strstr(name, "pasta"))
>   		FPRINTF(f, "    default: don't use any search list\n");
> @@ -1353,6 +1354,7 @@ void conf(struct ctx *c, int argc, char **argv)
>   		{"stats", required_argument,		NULL,		31 },
>   		{"conf-path",	required_argument,	NULL,		'c' },
>   		{"chroot-fallback", no_argument,	NULL, 		32 },
> +		{"dhcp-boot", required_argument,	NULL,		33 },
>   		{"dhcp-opt", required_argument,		NULL,		34 },
>   		{ 0 },
>   	};
> @@ -1595,6 +1597,9 @@ void conf(struct ctx *c, int argc, char **argv)
>   		case 32:
>   			c->chroot_fallback = true;
>   			break;
> +		case 33:
> +			dhcp_set_opt(67, optarg);
> +			break;
>   		case 34: {
>   			unsigned long optcode;
>   
> diff --git a/passt.1 b/passt.1
> index b4a44c5..989d92b 100644
> --- a/passt.1
> +++ b/passt.1
> @@ -440,6 +440,13 @@ Send \fIname\fR as DHCP option 12 (hostname).
>   FQDN to configure the client with.
>   Send \fIname\fR as Client FQDN: DHCP option 81 and DHCPv6 option 39.
>   
> +.TP
> +.BR \-\-dhcp-boot " " \fIfile
> +Convenience shorthand for \fB\-\-dhcp-opt\fR 67,\fIfile\fR.
> +Sets the boot file name (DHCP option 67) for network boot.
> +For UEFI HTTP boot, the vendor class identifier also needs to be set using
> +\fB\-\-dhcp-opt\fR 60,HTTPClient.
> +
>   .TP
>   .BR \-\-dhcp-opt " " \fICODE\fR,\fIVALUE\fR
>   Set DHCP option \fICODE\fR (1\-254) to \fIVALUE\fR. The value format depends


  reply	other threads:[~2026-08-26  8:09 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-24 13:44 [PATCH v6 0/6] Add --dhcp-boot and --dhcp-opt options Anshu Kumari
2026-08-24 13:44 ` [PATCH v6 1/6] dhcp: Refactor fill_one() to operate on a generic buffer Anshu Kumari
2026-08-25 15:13   ` Laurent Vivier
2026-08-24 13:44 ` [PATCH v6 2/6] dhcp: Add option state management with enum opt_state Anshu Kumari
2026-08-25 15:35   ` Laurent Vivier
2026-08-24 13:44 ` [PATCH v6 3/6] dhcp: Add option overload Anshu Kumari
2026-08-26  7:56   ` Laurent Vivier
2026-08-24 13:44 ` [PATCH v6 4/6] dhcp: Add --dhcp-opt with option table and value parser Anshu Kumari
2026-08-26 10:00   ` Laurent Vivier
2026-08-24 13:44 ` [PATCH v6 5/6] dhcp: Add --dhcp-boot command-line option Anshu Kumari
2026-08-26  8:09   ` Laurent Vivier [this message]
2026-08-24 13:44 ` [PATCH v6 6/6] dhcp: Add RFC 3396 option splitting for concatenation-requiring options Anshu Kumari
2026-08-26 14:11   ` Laurent Vivier

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=d95589c3-f349-48d6-a878-1cadb26444e9@redhat.com \
    --to=lvivier@redhat.com \
    --cc=anskuma@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=jmaloy@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).