mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Toolchain: Load x64 executables at a higher address
Serenity defines a protected range of memory that must not be mmapped, and is apparently reserved for kernel tasks. In this case, the protected range is anything below 0x800000. However, in its default setting, binutils chooses the memory address 0x400000 as the mapping address for executables that do not have PIE enabled, resulting in mmap being unable to map the file unless the load address has been overwritten at link time or if it's a PIE. To mitigate this, move the default base address somewhere outside of that range (and preferably not anywhere close near the beginning of the useable virtual memory space, to avoid running into it during sequential allocations).
This commit is contained in:
parent
4d79ab6866
commit
292398b585
Notes:
sideshowbarker
2024-07-18 01:08:47 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/292398b5857 Pull-request: https://github.com/SerenityOS/serenity/pull/10912
1 changed files with 12 additions and 0 deletions
|
@ -179,3 +179,15 @@ index df09b7b8..21566f5f 100644
|
|||
|
||||
uint64_t bound_lifetime_depth;
|
||||
};
|
||||
diff -ur a/ld/emulparams/elf_x86_64.sh b/ld/emulparams/elf_x86_64.sh
|
||||
--- a/ld/emulparams/elf_x86_64.sh 2021-07-08 13:37:20.000000000 +0200
|
||||
+++ b/ld/emulparams/elf_x86_64.sh 2021-11-13 17:52:50.396490742 +0100
|
||||
@@ -12,7 +12,7 @@
|
||||
ELFSIZE=64
|
||||
OUTPUT_FORMAT="elf64-x86-64"
|
||||
NO_REL_RELOCS=yes
|
||||
-TEXT_START_ADDR=0x400000
|
||||
+TEXT_START_ADDR=0x08200000
|
||||
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
||||
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
||||
ARCH="i386:x86-64"
|
||||
|
|
Loading…
Reference in a new issue