All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marek Marczykowski-Górecki" <marmarek@invisiblethingslab.com>
To: Frediano Ziglio <frediano.ziglio@cloud.com>
Cc: xen-devel@lists.xenproject.org,
	"Daniel P. Smith" <dpsmith@apertussolutions.com>,
	Jan Beulich <jbeulich@suse.com>
Subject: Re: [PATCH 0/2] xen/efi: Make boot more flexible, especially with GRUB2
Date: Thu, 26 Jun 2025 17:02:54 +0200	[thread overview]
Message-ID: <aF1hIARPp6a0wWmi@mail-itl> (raw)
In-Reply-To: <CACHz=Zj=LsfbUVMkuKHx-xpy+NMQh13NUJ_-sPSq3OMwSurHPA@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4304 bytes --]

On Thu, Jun 26, 2025 at 09:12:53AM +0100, Frediano Ziglio wrote:
> On Wed, Jun 25, 2025 at 9:26 PM Marek Marczykowski-Górecki
> <marmarek@invisiblethingslab.com> wrote:
> >
> > On Tue, Jun 24, 2025 at 09:38:42AM +0100, Frediano Ziglio wrote:
> > > On Tue, Jun 24, 2025 at 9:32 AM Frediano Ziglio
> > > <frediano.ziglio@cloud.com> wrote:
> > > >
> > > > The combination of GRUB2, EFI and UKI allows potentially more flexibility.
> > > > For instance is possible to load xen.efi from a no ESP partition leaving
> > > > a boot loader like GRUB2 taking care of the file loading.
> > > > This however requires some changes in Xen to be less restrictive.
> > > > Specifically for GRUB2 these changes allows the usage of "chainloader"
> > > > command with UKI and reading xen.efi from no ESP (so no DeviceHandle
> > > > set) and usage of "linux" and "initrd" commands to load separately
> > > > the kernel (embedding using UKI) and initrd (using LoadFile2 protocol).
> > >
> > > I was forgetting. If somebody wants to test "linux" and "initrd"
> > > command with these changes be aware that GRUB currently has a problem
> > > passing arguments, I posted a patch, see
> > > https://lists.gnu.org/archive/html/grub-devel/2025-06/msg00156.html.
> > > I also have a workaround for this issue in xen but it would be better
> > > to have a fix in GRUB.
> >
> > Can you tell more how to test this, especially the second variant? When
> > trying to use GRUB linux or linuxefi commands on xen.efi, I get "invalid
> > magic number" error.
> >
> 
> That's weird.
> 
> Be the way. As usual I have a super complicated script that does everything.
> 
> But to simplify:
> - I compile xen (plain upstream plus my patches) with "make -C
> ~/work/xen/xen -j O=normal MAP"

Is there any that would be related to the "invalid magic" error? IIUC
without your patches options will be mangled, but I don't think I get
this far.

> - output xen.efi in "~/work/xen/xen/normal/xen.efi"
> - add configuration and kernel with "./add_sections xen.efi
> xen.unified.efi .config xen.cfg .kernel vmlinuz-xen"
> - boot using patched Grub (or patched Xen, to handle command line, if
> you don't care about command line you can use a stock one), the menu
> entry is
> 
> menuentry 'XenServer (Serial)' {
>         search --label --set root EFI-BOOT
>         linux /boot/xen.unified.efi -- com1=115200,8n1
> console=com1,vga dom0_mem=1232M,max:1232M watchdog dom0_max_vcpus=1-4
> crashkernel=256M,below=4G -- root=LABEL=root-qjhppe ro nolvm
> hpet=disable console=tty0 console=hvc0
>         initrd /boot/initrd.img
> }

All looks quite similar. FWIW my setup is:
https://gitlab.com/xen-project/people/marmarek/xen/-/blob/test-uki/automation/scripts/qemu-smoke-x86-64-efi-uki.sh?ref_type=heads

Booting such UKI from OVMF directly works, as well as with
"chainloader" grub command:

https://gitlab.com/xen-project/people/marmarek/xen/-/pipelines/1891308263

CI uses Grub 2.06 from Debian, but I get the same result with 2.12 from
Fedora too.

> 
> xen.cfg file:
> ----------
> [global]
> default=xen
> 
> [xen]
> ----------
> 
> add_sections file:
> ----------
> #!/usr/bin/env perl
> use strict;
> 
> die if $#ARGV < 1;
> my $in = shift @ARGV;
> my $out = shift @ARGV;
> 
> my $max = 0;
> open(IN, "objdump -h $in |") or die;
> while (<IN>) {
>         next if !/^\s*\d+\s+\S+\s+([0-9a-f]+)\s+([0-9a-f]+)\s+/;
>         my $val = hex($1) + hex($2);
>         $max = $val if $val > $max;
> }
> close(IN);
> 
> sub up($) {
>         my $n = shift;
>         return ($n + 4095) & -4096;
> }
> 
> my @args = ('objcopy');
> 
> my $start = up($max);
> while ($#ARGV >= 1) {
>         my $name = shift;
>         my $fn = shift;
>         push @args, '--add-section', "$name=$fn";
>         push @args, '--change-section-vma', sprintf("%s=%#x", $name, $start);
>         $start += -s $fn;
>         $start = up($start);
> }
> push @args, $in, $out;
> print "Executing @args\n";
> system(@args) == 0 || die "Error!";
> ----------
> 
> My script creates the initrd, builds a full disk for Qemu and launches
> Qemu too with specific options.
> 
> Frediano

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2025-06-26 15:03 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-24  8:31 [PATCH 0/2] xen/efi: Make boot more flexible, especially with GRUB2 Frediano Ziglio
2025-06-24  8:31 ` [PATCH 1/2] xen/efi: Handle cases where file didn't come from ESP Frediano Ziglio
2025-06-24 12:38   ` Marek Marczykowski-Górecki
2025-06-24 14:05     ` Frediano Ziglio
2025-06-24 14:35       ` Marek Marczykowski-Górecki
2025-06-24 15:12         ` Frediano Ziglio
2025-06-24 15:28           ` Marek Marczykowski-Górecki
2025-06-24 16:18         ` Jan Beulich
2025-06-24  8:31 ` [PATCH 2/2] xen/efi: Support loading initrd using GRUB2 LoadFile2 protocol Frediano Ziglio
2025-06-24 12:46   ` Marek Marczykowski-Górecki
2025-06-24  8:38 ` [PATCH 0/2] xen/efi: Make boot more flexible, especially with GRUB2 Frediano Ziglio
2025-06-25 20:26   ` Marek Marczykowski-Górecki
2025-06-26  8:12     ` Frediano Ziglio
2025-06-26 15:02       ` Marek Marczykowski-Górecki [this message]
2025-06-27 12:29         ` Frediano Ziglio
2025-06-27 14:20           ` Marek Marczykowski-Górecki
2025-06-27 15:58             ` Frediano Ziglio
2025-06-27 16:19               ` Marek Marczykowski-Górecki
2025-07-01 14:31                 ` Frediano Ziglio
2025-07-01 15:18                   ` Marek Marczykowski-Górecki
2025-07-09  9:33                     ` Frediano Ziglio

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=aF1hIARPp6a0wWmi@mail-itl \
    --to=marmarek@invisiblethingslab.com \
    --cc=dpsmith@apertussolutions.com \
    --cc=frediano.ziglio@cloud.com \
    --cc=jbeulich@suse.com \
    --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.