浏览代码

[efi] Work around broken 32-bit PE executable parsing in ImageHlp.dll

The Microsoft PE/COFF specification defines the MajorLinkerVersion and
MinorLinkerVersion fields as "The linker major version number" and
"The linker minor version number" respectively, and has nothing more
to say on the matter.  These fields have no significance: they do not
affect the interpretation of the remainder of the file, but merely
provide diagnostic information for interested humans to read.

Apparently, versions 2.4 and earlier of the Microsoft linker produced
binaries so incorrigibly cursed that even to attempt to parse such a
binary would risk summoning a plague of enraged spiders.  To protect
users from unwanted arachnids, ImageHlp.dll's MapAndLoad() function
will helpfully fail to map and/or load a 32-bit binary unless the
linker version field indicates version 2.5 or later.  (64-bit binaries
are exempt from such helpfulness.)

Work around the broken Microsoft ImageHlp.dll library by providing a
linker version number that will satisfy the arbitrary whims of the
MapAndLoad() function.

This mirrors wimboot commit 670c7e2 ("[efi] Work around broken 32-bit
PE executable parsing in ImageHlp.dll").

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 8 年前
父节点
当前提交
7b976dd300
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      src/util/elf2efi.c

+ 2
- 0
src/util/elf2efi.c 查看文件

92
 #elif defined(EFI_TARGET_X64)
92
 #elif defined(EFI_TARGET_X64)
93
 			.Magic = EFI_IMAGE_NT_OPTIONAL_HDR64_MAGIC,
93
 			.Magic = EFI_IMAGE_NT_OPTIONAL_HDR64_MAGIC,
94
 #endif
94
 #endif
95
+			.MajorLinkerVersion = 42,
96
+			.MinorLinkerVersion = 42,
95
 			.SectionAlignment = EFI_FILE_ALIGN,
97
 			.SectionAlignment = EFI_FILE_ALIGN,
96
 			.FileAlignment = EFI_FILE_ALIGN,
98
 			.FileAlignment = EFI_FILE_ALIGN,
97
 			.SizeOfImage = sizeof ( efi_pe_header ),
99
 			.SizeOfImage = sizeof ( efi_pe_header ),

正在加载...
取消
保存