-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libc] Fix start up crash on 32 bit systems #66210
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This patch changes the default types of argc/argv so it's no longer a uint64_t in all systems, instead it's now a uintptr_t, which fixes crashes in 32-bit systems that expect 32-bit types. This patch also adds two uintptr_t types (EnvironType and AuxEntryType) for the same reason. The patch also a PgrHdrTableType type behind an ifdef that's Elf64_Phdr in 64-bit systems and Elf32_Phdr in 32-bit systems.
mikhailramalho
requested review from
sivachandra,
lntue and
michaelrj-google
September 13, 2023 14:01
@llvm/pr-subscribers-libc ChangesThis patch changes the default types of argc/argv so it's no longer a uint64_t in all systems, instead, it's now a uintptr_t, which fixes crashes in 32-bit systems that expect 32-bit types. This patch also adds two uintptr_t types (EnvironType and AuxEntryType) for the same reason.The patch also adds a PgrHdrTableType type behind an ifdef that's Elf64_Phdr in 64-bit systems and Elf32_Phdr in 32-bit systems.Full diff: https://github.com/llvm/llvm-project/pull/66210.diff 2 Files Affected:
diff --git a/libc/config/linux/app.h b/libc/config/linux/app.h index ffd0e01f7b5a457..40a45078f6c8f35 100644 --- a/libc/config/linux/app.h +++ b/libc/config/linux/app.h @@ -42,11 +42,14 @@ struct TLSImage { // ABI specifies it as an 8 byte value. Likewise, in the ARM64 ABI, arguments // are usually passed in registers. x0 is a doubleword register, so this is // 64 bit for aarch64 as well. -typedef uint64_t ArgcType; +typedef uintptr_t ArgcType; // At the language level, argv is a char** value. However, we use uint64_t as // ABIs specify the argv vector be an |argc| long array of 8-byte values. -typedef uint64_t ArgVEntryType; +typedef uintptr_t ArgVEntryType; + +typedef uintptr_t EnvironType; +typedef uintptr_t AuxEntryType; #else #error "argc and argv types are not defined for the target platform." #endif @@ -74,7 +77,7 @@ struct AppProperties { TLSImage tls; // Environment data. - uint64_t *envPtr; + EnvironType *envPtr; }; extern AppProperties app; diff --git a/libc/startup/linux/riscv64/start.cpp b/libc/startup/linux/riscv64/start.cpp index d68cc9219ecce7e..1bf05b94ad5acfe 100644 --- a/libc/startup/linux/riscv64/start.cpp +++ b/libc/startup/linux/riscv64/start.cpp @@ -118,10 +118,20 @@ using __llvm_libc::app; // TODO: Would be nice to use the aux entry structure from elf.h when available. struct AuxEntry { - uint64_t type; - uint64_t value; + __llvm_libc::AuxEntryType type; + __llvm_libc::AuxEntryType value; }; +#if defined(LIBC_TARGET_ARCH_IS_X86_64) || \ + defined(LIBC_TARGET_ARCH_IS_AARCH64) || \ + defined(LIBC_TARGET_ARCH_IS_RISCV64) +typedef Elf64_Phdr PgrHdrTableType; +#elif defined(LIBC_TARGET_ARCH_IS_RISCV32) +typedef Elf32_Phdr PgrHdrTableType; +#else +#error "Program header table type is not defined for the target platform." +#endif + __attribute__((noinline)) static void do_start() { LIBC_INLINE_ASM(".option push\n\t" ".option norelax\n\t" @@ -135,8 +145,8 @@ __attribute__((noinline)) static void do_start() { // After the argv array, is a 8-byte long NULL value before the array of env // values. The end of the env values is marked by another 8-byte long NULL // value. We step over it (the "+ 1" below) to get to the env values. - uint64_t *env_ptr = app.args->argv + app.args->argc + 1; - uint64_t *env_end_marker = env_ptr; + __llvm_libc::ArgVEntryType *env_ptr = app.args->argv + app.args->argc + 1; + __llvm_libc::ArgVEntryType *env_end_marker = env_ptr; app.envPtr = env_ptr; while (*env_end_marker) ++env_end_marker; @@ -146,13 +156,13 @@ __attribute__((noinline)) static void do_start() { // After the env array, is the aux-vector. The end of the aux-vector is // denoted by an AT_NULL entry. - Elf64_Phdr *programHdrTable = nullptr; + PgrHdrTableType *programHdrTable = nullptr; uintptr_t programHdrCount; for (AuxEntry *aux_entry = reinterpret_cast<AuxEntry *>(env_end_marker + 1); aux_entry->type != AT_NULL; ++aux_entry) { switch (aux_entry->type) { case AT_PHDR: - programHdrTable = reinterpret_cast<Elf64_Phdr *>(aux_entry->value); + programHdrTable = reinterpret_cast<PgrHdrTableType *>(aux_entry->value); break; case AT_PHNUM: programHdrCount = aux_entry->value; @@ -167,7 +177,7 @@ __attribute__((noinline)) static void do_start() { app.tls.size = 0; for (uintptr_t i = 0; i < programHdrCount; ++i) { - Elf64_Phdr *phdr = programHdrTable + i; + PgrHdrTableType *phdr = programHdrTable + i; if (phdr->p_type != PT_TLS) continue; // TODO: p_vaddr value has to be adjusted for static-pie executables. |
sivachandra
approved these changes
Sep 13, 2023
kstoimenov
pushed a commit
to kstoimenov/llvm-project
that referenced
this pull request
Sep 14, 2023
This patch changes the default types of argc/argv so it's no longer a uint64_t in all systems, instead, it's now a uintptr_t, which fixes crashes in 32-bit systems that expect 32-bit types. This patch also adds two uintptr_t types (EnvironType and AuxEntryType) for the same reason. The patch also adds a PgrHdrTableType type behind an ifdef that's Elf64_Phdr in 64-bit systems and Elf32_Phdr in 32-bit systems.
This was referenced Sep 14, 2023
ZijunZhaoCCK
pushed a commit
to ZijunZhaoCCK/llvm-project
that referenced
this pull request
Sep 19, 2023
This patch changes the default types of argc/argv so it's no longer a uint64_t in all systems, instead, it's now a uintptr_t, which fixes crashes in 32-bit systems that expect 32-bit types. This patch also adds two uintptr_t types (EnvironType and AuxEntryType) for the same reason. The patch also adds a PgrHdrTableType type behind an ifdef that's Elf64_Phdr in 64-bit systems and Elf32_Phdr in 32-bit systems.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch changes the default types of argc/argv so it's no longer a uint64_t in all systems, instead, it's now a uintptr_t, which fixes crashes in 32-bit systems that expect 32-bit types. This patch also adds two uintptr_t types (EnvironType and AuxEntryType) for the same reason.
The patch also adds a PgrHdrTableType type behind an ifdef that's Elf64_Phdr in 64-bit systems and Elf32_Phdr in 32-bit systems.