From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: xen-devel@lists.xenproject.org,
Andrew Cooper <andrew.cooper3@citrix.com>, Wei Liu <wl@xen.org>,
George Dunlap <george.dunlap@citrix.com>,
Julien Grall <julien@xen.org>,
Stefano Stabellini <sstabellini@kernel.org>,
Jason Andryuk <jason.andryuk@amd.com>
Subject: Re: [PATCH v2 3/3] x86/PVH: Support relocatable dom0 kernels
Date: Thu, 14 Mar 2024 17:48:53 +0100 [thread overview]
Message-ID: <ZfMqdUS2Rfv7iooq@macbook> (raw)
In-Reply-To: <a531578e-ade0-45bb-b916-e195e51e97cf@suse.com>
On Thu, Mar 14, 2024 at 04:30:05PM +0100, Jan Beulich wrote:
> On 14.03.2024 15:33, Roger Pau Monné wrote:
> > On Thu, Mar 14, 2024 at 09:51:22AM -0400, Jason Andryuk wrote:
> >> On 2024-03-14 05:48, Roger Pau Monné wrote:
> >>> On Wed, Mar 13, 2024 at 03:30:21PM -0400, Jason Andryuk wrote:
> >>>> @@ -234,6 +235,17 @@ elf_errorstatus elf_xen_parse_note(struct elf_binary *elf,
> >>>> elf_note_numeric_array(elf, note, 8, 0),
> >>>> elf_note_numeric_array(elf, note, 8, 1));
> >>>> break;
> >>>> +
> >>>> + case XEN_ELFNOTE_PVH_RELOCATION:
> >>>> + if ( elf_uval(elf, note, descsz) != 3 * sizeof(uint64_t) )
> >>>> + return -1;
> >>>> +
> >>>> + parms->phys_min = elf_note_numeric_array(elf, note, 8, 0);
> >>>> + parms->phys_max = elf_note_numeric_array(elf, note, 8, 1);
> >>>> + parms->phys_align = elf_note_numeric_array(elf, note, 8, 2);
> >>>
> >>> Size for those needs to be 4 (32bits) as the entry point is in 32bit
> >>> mode? I don't see how we can start past the 4GB boundary.
> >>
> >> I specified the note as 3x 64bit values. It seemed simpler than trying to
> >> support both 32bit and 64bit depending on the kernel arch. Also, just using
> >> 64bit provides room in case it is needed in the future.
> >
> > Why do you say depending on the kernel arch?
> >
> > PVH doesn't know the bitness of the kernel, as the kernel entry point
> > is always started in protected 32bit mode. We should just support
> > 32bit values, regardless of the kernel bitness, because that's the
> > only range that's suitable in order to jump into the entry point.
> >
> > Note how XEN_ELFNOTE_PHYS32_ENTRY is also unconditionally a 32bit
> > integer.
> >
> >> Do you want the note to be changed to 3x 32bit values?
> >
> > Unless anyone objects, yes, that's would be my preference.
>
> As mentioned elsewhere, unless the entire note is meant to be x86-specific,
> this fixed-32-bit property then would want limiting to x86.
Elfnotes are used only on x86 so far. I don't see why if/when another
architecture wants to use the same elfnotes names with different field
sizes that would be an issue. When such a need arises we could
clarify that 32-bit size is only for x86 and also specify the size for
the other architecture.
Thanks, Roger.
next prev parent reply other threads:[~2024-03-14 16:49 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-13 19:30 [PATCH v2 0/3] x86/pvh: Support relocating dom0 kernel Jason Andryuk
2024-03-13 19:30 ` [PATCH v2 1/3] Revert "xen/x86: bzImage parse kernel_alignment" Jason Andryuk
2024-03-14 7:11 ` Jan Beulich
2024-03-14 13:01 ` Jason Andryuk
2024-03-14 13:33 ` Jan Beulich
2024-03-13 19:30 ` [PATCH v2 2/3] libelf: Expand ELF note printing Jason Andryuk
2024-03-14 13:16 ` Jan Beulich
2024-03-14 20:36 ` Jason Andryuk
2024-03-13 19:30 ` [PATCH v2 3/3] x86/PVH: Support relocatable dom0 kernels Jason Andryuk
2024-03-13 21:02 ` Jason Andryuk
2024-03-14 7:12 ` Jan Beulich
2024-03-14 12:46 ` Jason Andryuk
2024-03-14 9:48 ` Roger Pau Monné
2024-03-14 13:51 ` Jason Andryuk
2024-03-14 14:33 ` Roger Pau Monné
2024-03-14 15:30 ` Jan Beulich
2024-03-14 16:48 ` Roger Pau Monné [this message]
2024-03-14 16:59 ` Jason Andryuk
2024-03-14 17:02 ` Jan Beulich
2024-03-15 8:45 ` Roger Pau Monné
2024-03-14 13:21 ` Jan Beulich
2024-03-14 14:13 ` Jason Andryuk
2024-03-14 14:19 ` Jan Beulich
2024-03-18 21:19 ` Jason Andryuk
2024-03-19 8:11 ` Jan Beulich
2024-03-14 13:31 ` Jan Beulich
2024-03-14 19:19 ` Jason Andryuk
2024-03-15 9:48 ` Jan Beulich
2024-03-18 21:21 ` Jason Andryuk
2024-03-19 8:15 ` Jan Beulich
2024-03-19 13:50 ` Jason Andryuk
2024-03-13 19:46 ` [PATCH] RFC: x86/pvh: Make Xen PVH entrypoint PIC for x86-64 Jason Andryuk
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=ZfMqdUS2Rfv7iooq@macbook \
--to=roger.pau@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=george.dunlap@citrix.com \
--cc=jason.andryuk@amd.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=sstabellini@kernel.org \
--cc=wl@xen.org \
--cc=xen-devel@lists.xenproject.org \
/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.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.