diff options
| author | Jose Quaresma <quaresma.jose@gmail.com> | 2023-08-08 16:08:28 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-09 21:43:33 +0100 |
| commit | c558fddff7a2c95c7bb770e5ea8b928d7eb6f800 (patch) | |
| tree | 5de1d7c6f0b0ca3e94df6cf23ef126f79470e624 | |
| parent | 1bdcd76d2968c3cc6ec2815afceba1cf98efd6d5 (diff) | |
| download | poky-c558fddff7a2c95c7bb770e5ea8b928d7eb6f800.tar.gz | |
systemd: fix efi stubs
Before the patch:
| $ objdump -h deploy/images/intel-corei7-64/linuxx64.efi.stub
| objdump: deploy/images/intel-corei7-64/linuxx64.efi.stub (.reloc): section flag STYP_GROUP (0x4) ignored
| objdump: deploy/images/intel-corei7-64/linuxx64.efi.stub (.reloc): section flag STYP_GROUP (0x4) ignored
| objdump: deploy/images/intel-corei7-64/linuxx64.efi.stub: file format not recognized
After the patch:
| $objdump -h deploy/images/intel-corei7-64/linuxx64.efi.stub
|
| deploy/images/intel-corei7-64/linuxx64.efi.stub: file format pei-x86-64
|
| Sections:
| Idx Name Size VMA LMA File off Algn
| 0 .text 0000f99f 000000014df91000 000000014df91000 00000400 2**4
| CONTENTS, ALLOC, LOAD, READONLY, CODE
| 1 .rodata 00002c40 000000014dfa1000 000000014dfa1000 0000fe00 2**2
| CONTENTS, ALLOC, LOAD, READONLY, DATA
| 2 .data 000002d8 000000014dfa4000 000000014dfa4000 00012c00 2**4
| CONTENTS, ALLOC, LOAD, DATA
| 3 .sdmagic 00000032 000000014dfa5000 000000014dfa5000 00013000 2**2
| CONTENTS, ALLOC, LOAD, READONLY, DATA
| 4 .reloc 00000080 000000014dfa6000 000000014dfa6000 00013200 2**2
| CONTENTS, ALLOC, LOAD, READONLY, DATA
(From OE-Core rev: 2d4a5305c8b7a5fb15086a86dfdc64630c686602)
Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-core/systemd/systemd.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-core/systemd/systemd/0001-elf2efi-Fix-header-size-calculation.patch | 70 |
2 files changed, 71 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd.inc b/meta/recipes-core/systemd/systemd.inc index b00a49884b..e5686fbe44 100644 --- a/meta/recipes-core/systemd/systemd.inc +++ b/meta/recipes-core/systemd/systemd.inc | |||
| @@ -17,6 +17,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe \ | |||
| 17 | SRCREV = "994c7978608a0bd9b317f4f74ff266dd50a3e74e" | 17 | SRCREV = "994c7978608a0bd9b317f4f74ff266dd50a3e74e" |
| 18 | SRCBRANCH = "v254-stable" | 18 | SRCBRANCH = "v254-stable" |
| 19 | SRC_URI = "git://github.com/systemd/systemd-stable.git;protocol=https;branch=${SRCBRANCH} \ | 19 | SRC_URI = "git://github.com/systemd/systemd-stable.git;protocol=https;branch=${SRCBRANCH} \ |
| 20 | file://0001-elf2efi-Fix-header-size-calculation.patch \ | ||
| 20 | " | 21 | " |
| 21 | 22 | ||
| 22 | S = "${WORKDIR}/git" | 23 | S = "${WORKDIR}/git" |
diff --git a/meta/recipes-core/systemd/systemd/0001-elf2efi-Fix-header-size-calculation.patch b/meta/recipes-core/systemd/systemd/0001-elf2efi-Fix-header-size-calculation.patch new file mode 100644 index 0000000000..0e8924d27d --- /dev/null +++ b/meta/recipes-core/systemd/systemd/0001-elf2efi-Fix-header-size-calculation.patch | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | From d082d6502fa86e08dda858933838dde0406b824f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Jan Janssen <medhefgo@web.de> | ||
| 3 | Date: Sun, 30 Jul 2023 20:59:04 +0200 | ||
| 4 | Subject: [PATCH] elf2efi: Fix header size calculation | ||
| 5 | |||
| 6 | The PE header size calculation failed to take the PE magic and coff | ||
| 7 | header size into account, which will lead to header truncation if we are | ||
| 8 | writing only 5 sections. | ||
| 9 | |||
| 10 | Upstream-Status: Backport [https://github.com/systemd/systemd/commit/ee91e06a5841c30bc7306260528ef407e0ebbab3] | ||
| 11 | |||
| 12 | Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> | ||
| 13 | --- | ||
| 14 | tools/elf2efi.py | 12 ++++++++++-- | ||
| 15 | 1 file changed, 10 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/tools/elf2efi.py b/tools/elf2efi.py | ||
| 18 | index e233c8e3ab..2e478940f5 100755 | ||
| 19 | --- a/tools/elf2efi.py | ||
| 20 | +++ b/tools/elf2efi.py | ||
| 21 | @@ -210,6 +210,7 @@ FILE_ALIGNMENT = 512 | ||
| 22 | |||
| 23 | # Nobody cares about DOS headers, so put the PE header right after. | ||
| 24 | PE_OFFSET = 64 | ||
| 25 | +PE_MAGIC = b"PE\0\0" | ||
| 26 | |||
| 27 | |||
| 28 | def align_to(x: int, align: int) -> int: | ||
| 29 | @@ -304,7 +305,10 @@ def copy_sections(elf: ELFFile, opt: PeOptionalHeader) -> typing.List[PeSection] | ||
| 30 | |||
| 31 | |||
| 32 | def apply_elf_relative_relocation( | ||
| 33 | - reloc: ElfRelocation, image_base: int, sections: typing.List[PeSection], addend_size: int | ||
| 34 | + reloc: ElfRelocation, | ||
| 35 | + image_base: int, | ||
| 36 | + sections: typing.List[PeSection], | ||
| 37 | + addend_size: int, | ||
| 38 | ): | ||
| 39 | # fmt: off | ||
| 40 | [target] = [ | ||
| 41 | @@ -439,7 +443,7 @@ def write_pe( | ||
| 42 | file.seek(0x3C, io.SEEK_SET) | ||
| 43 | file.write(PE_OFFSET.to_bytes(2, byteorder="little")) | ||
| 44 | file.seek(PE_OFFSET, io.SEEK_SET) | ||
| 45 | - file.write(b"PE\0\0") | ||
| 46 | + file.write(PE_MAGIC) | ||
| 47 | file.write(coff) | ||
| 48 | file.write(opt) | ||
| 49 | |||
| 50 | @@ -453,6 +457,8 @@ def write_pe( | ||
| 51 | file.write(pe_s) | ||
| 52 | offset = align_to(offset + len(pe_s.data), FILE_ALIGNMENT) | ||
| 53 | |||
| 54 | + assert file.tell() <= opt.SizeOfHeaders | ||
| 55 | + | ||
| 56 | for pe_s in sections: | ||
| 57 | file.seek(pe_s.PointerToRawData, io.SEEK_SET) | ||
| 58 | file.write(pe_s.data) | ||
| 59 | @@ -515,6 +521,8 @@ def elf2efi(args: argparse.Namespace): | ||
| 60 | |||
| 61 | opt.SizeOfHeaders = align_to( | ||
| 62 | PE_OFFSET | ||
| 63 | + + len(PE_MAGIC) | ||
| 64 | + + sizeof(PeCoffHeader) | ||
| 65 | + coff.SizeOfOptionalHeader | ||
| 66 | + sizeof(PeSection) * max(coff.NumberOfSections, args.minimum_sections), | ||
| 67 | FILE_ALIGNMENT, | ||
| 68 | -- | ||
| 69 | 2.34.1 | ||
| 70 | |||
