[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH] xen/arm: skip first 32 bytes of zimage32
Hi, On 21/03/2022 19:29, Stefano Stabellini wrote: On Sun, 20 Mar 2022, Julien Grall wrote:On 20/03/2022 07:47, Julien Grall wrote:On 20/03/2022 01:05, Stefano Stabellini wrote:From: Stefano Stabellini <stefano.stabellini@xxxxxxxxxx> The first 32 bytes of zImage32 are NOPs, not useful just there for compatibility. The reason is that some bootloaders skip the first 32 bytes when starting the kernel. See the comment in Linux arch/arm/boot/compressed/head.S.Please mention the Linux verson.Since the introduction of CONFIG_EFI in Linux arm32, those NOPs operations have changed implementation from: mov r0, r0 to: .inst MZ_MAGIC | (0x1310 << 16) @ tstne r0, #0x4d000I have duplicated the comment and the instructions below: @ This is a two-instruction NOP, which happens to bear the @ PE/COFF signature "MZ" in the first two bytes, so the kernel @ is accepted as an EFI binary. Booting via the UEFI stub @ will not execute those instructions, but the ARM/Linux @ boot protocol does, so we need some NOPs here. .inst MZ_MAGIC | (0xe225 << 16) @ eor r5, r5, 0x4d000 eor r5, r5, 0x4d000 @ undo previous insn I read this as they are NOPs and this change should not break the ARM/Linux boot protocol (we are using it in Xen). BTW, the instruction decoding is different compare to me. Which version of Linux are you using?See arch/arm/boot/compressed/efi-header.S. The new implementation doesn't work on Xen (at least on all versions of QEMU I tried).As I wrote above, they are NOPs. So why is this breaking?I have tried to boot the latest Linux (commit 14702b3b2438) with CONFIG_EFI=y on QEMU (commit fa435db8ce1d). This booted for me. As I wrote earlier today, the instruction used as NOPs is slightly different. So I had a look at the git history and found the following commit: commit a92882a4d270 Author: Andre Przywara <andre.przywara@xxxxxxx> Date: Mon Nov 22 16:28:43 2021 +0100 ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding In the decompressor's head.S we need to start with an instruction that is some kind of NOP, but also mimics as the PE/COFF header, when the kernel is linked as an UEFI application. The clever solution here is "tstne r0, #0x4d000", which in the worst case just clobbers the condition flags, and bears the magic "MZ" signature in the lowest 16 bits. However the encoding used (0x13105a4d) is actually not valid, since bits [15:12] are supposed to be 0 (written as "(0)" in the ARM ARM). Violating this is UNPREDICTABLE, and *can* trigger an UNDEFINED exception. Common Cortex cores seem to ignore those bits, but QEMU chooses to trap, so the code goes fishing because of a missing exception handler at this point. We are just saved by the fact that commonly (with -kernel or when running from U-Boot) the "Z" bit is set, so the instruction is never executed. See [0] for more details. To make things more robust and avoid UNPREDICTABLE behaviour in the kernel code, lets replace this with a "two-instruction NOP": The first instruction is an exclusive OR, the effect of which the second instruction reverts. This does not leave any trace, neither in a register nor in the condition flags. Also it's a perfectly valid encoding. Kudos to Peter Maydell for coming up with this gem. [0] https://lore.kernel.org/qemu-devel/YTPIdbUCmwagL5%2FD@xxxxxxxxxxxxxxxxxxxx/T/ Link: https://lore.kernel.org/linux-arm-kernel/20210908162617.104962-1-andre.przywara@xxxxxxx/T/ So this is a bug in the kernel that has nothing to do with Xen. Therefore, I am not in favor to workaround it in Xen. Where did you get your kernel from? If this from a distro, then please work with them to ingest the above patch.Unfortunately all the kernels I tried failed without the Xen fix. This is the list of kernels that I tried and failed: - Debian Buster - Debian Bullseye - vanilla 4.9 - vanilla 4.10 Does this mean you where using v4.{9,10}.0 rather than the stable branch?Note that AFAICT, 4.10 is not even supported by the kernel communinty (see [1]). The latest Alpine Linux kernel also doesn't boot, but that one doesn't boot even with the fix for other reason. (More in the other email.) From a Xen gitlab-ci perspective, we just need a kernel that works. Ideally, we wouldn't rebuild our own but reuse an existing kernel because that is one less things to maintain in the gitlab-ci build. We have a couple of options to make progress on the QEMU32 gitlab-ci test: 1) use Debian Jessie in gitlab-ci and do not commit the Xen-side fix, file a Debian bug and revisit the situation in a couple of months (Debian might get the fix in the meantime) Why do we need to use Debian here? Couldn't we use Ubuntu (or any distros that have a newer kernel)? 2) commit the Xen fix and use Debian Bullseye right now 3) do not commit the Xen fix and build our own kernel now All of these options work. My preference is 1) or 2). Between 1) and 2) I have a slight preference for 2) for this reason: I know that in Open Source we try to fix bugs wherever they are (kernel project, QEMU project, Debian project) rather than working around them, but in this case it looks like there is a significant amount of binariesout there that require an update before they can boot on Xen. My problem here is the bug is not Xen specific. You would exactly have the same problem if you were booting on baremetal. But as Andre wrote in his commit message, this is only working by luck. So we are setting another bad precendence by preserving the luck.I appreciate we recently agreed to merge the code to emulate ldr/str. But this was based on the fact the Arm Arm doesn't clearly forbid such access. This is quite different here as the instructions are UNDEFINED. So I am not willing to accept a lot of code in Xen just to workaround a software bug (see more below). I think it is one of those times where it is worth considering the Xen fix, or should I say workaround, if it is considered harmless. The problem with your workaround is now the zImage will be loaded in a different aligned. For instance, if the symbol <foo> was 2MB aligned, now, it will be aligned to 2MB - 32. See kernel_zimage_load(). The booting protocol (see Documentation/arm/booting.rst). Doesn't look to impose an alignment. But I wouldn't be surprised if there is an assumption here. Furthermore, there are some problem if the kernel is expected to be loaded a specific address. I do expect the code to become more convoluted. This would also have to be duplicated in the tools side. Overall, this will likely be more than I am willing to accept for this issue. Therefore I would like to suggest a more simple workaround. Per the commit message of the Linux bug fix, U-boot and direct loading are not affected because the bit "Z" is set. So how about updating PSR_GUEST32_INIT to set Z? Cheers, -- Julien Grall
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |