mirror of
https://github.com/intel/llvm.git
synced 2026-01-14 11:57:39 +08:00
Closes https://github.com/llvm/llvm-project/issues/153666 This patch introduces a new centralized AUXV (auxiliary vector) handling mechanism for LLVM libc on Linux, replacing the previous scattered implementation across multiple files. ## Key Changes: ### New Files: - **libc/src/__support/OSUtil/linux/auxv.h**: New header library providing a clean interface for AUXV access with: - `auxv::Entry` struct for AUXV entries (type and value) - `auxv::Vector` class with iterator support for traversing AUXV - `auxv::get()` function for retrieving specific AUXV values - Thread-safe initialization with fallback mechanisms (prctl and /proc/self/auxv) ### Modified Files: 1. **libc/src/__support/OSUtil/linux/CMakeLists.txt**: - Added `auxv` header library declaration with proper dependencies: - libc.hdr.fcntl_macros - libc.src.__support.OSUtil.osutil - libc.src.__support.common - libc.src.__support.CPP.optional - libc.src.__support.threads.callonce 2. **libc/config/linux/app.h**: - Removed `AuxEntry` struct (moved to auxv.h as `auxv::Entry`) - Removed `auxv_ptr` from `AppProperties` struct - Simplified application properties structure 3. **libc/src/sys/auxv/linux/getauxval.cpp**: - Completely refactored to use new auxv.h interface - Removed ~200 lines of complex initialization code - Simplified to just call `auxv::get()` function - Removed dependencies to external symbols (mman, prctl, fcntl, read, close, open) 4. **libc/src/sys/auxv/linux/CMakeLists.txt**: - Updated dependencies to use new auxv header library - Removed dependencies to external symbols (prctl, mman, fcntl, unistd, etc.) 5. **libc/startup/linux/do_start.cpp**: - Updated to use new `auxv::Vector` interface - Changed from pointer-based to iterator-based AUXV traversal - Updated field names (`aux_entry->id` → `aux_entry.type`, `aux_entry->value` → `aux_entry.val`) - Added call to `auxv::Vector::initialize_unsafe()` for early AUXV setup 6. **libc/startup/linux/CMakeLists.txt**: - Added dependency on `libc.src.__support.OSUtil.linux.auxv`
159 lines
5.6 KiB
C++
159 lines
5.6 KiB
C++
//===-- Implementation file of do_start -----------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "startup/linux/do_start.h"
|
|
#include "config/linux/app.h"
|
|
#include "hdr/stdint_proxy.h"
|
|
#include "include/llvm-libc-macros/link-macros.h"
|
|
#include "src/__support/OSUtil/linux/auxv.h"
|
|
#include "src/__support/OSUtil/syscall.h"
|
|
#include "src/__support/macros/config.h"
|
|
#include "src/__support/threads/thread.h"
|
|
#include "src/stdlib/atexit.h"
|
|
#include "src/stdlib/exit.h"
|
|
#include "src/unistd/environ.h"
|
|
|
|
#include <linux/auxvec.h>
|
|
#include <linux/elf.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/syscall.h>
|
|
|
|
extern "C" int main(int argc, char **argv, char **envp);
|
|
|
|
extern "C" {
|
|
// These arrays are present in the .init_array and .fini_array sections.
|
|
// The symbols are inserted by linker when it sees references to them.
|
|
extern uintptr_t __preinit_array_start[];
|
|
extern uintptr_t __preinit_array_end[];
|
|
extern uintptr_t __init_array_start[];
|
|
extern uintptr_t __init_array_end[];
|
|
extern uintptr_t __fini_array_start[];
|
|
extern uintptr_t __fini_array_end[];
|
|
// https://refspecs.linuxbase.org/elf/gabi4+/ch5.dynamic.html#dynamic_section
|
|
// This symbol is provided by the dynamic linker. It can be undefined depending
|
|
// on how the program is loaded exactly.
|
|
[[gnu::weak,
|
|
gnu::visibility("hidden")]] extern const Elf64_Dyn _DYNAMIC[]; // NOLINT
|
|
}
|
|
|
|
namespace LIBC_NAMESPACE_DECL {
|
|
AppProperties app;
|
|
|
|
using InitCallback = void(int, char **, char **);
|
|
using FiniCallback = void(void);
|
|
|
|
static void call_init_array_callbacks(int argc, char **argv, char **env) {
|
|
size_t preinit_array_size = __preinit_array_end - __preinit_array_start;
|
|
for (size_t i = 0; i < preinit_array_size; ++i)
|
|
reinterpret_cast<InitCallback *>(__preinit_array_start[i])(argc, argv, env);
|
|
size_t init_array_size = __init_array_end - __init_array_start;
|
|
for (size_t i = 0; i < init_array_size; ++i)
|
|
reinterpret_cast<InitCallback *>(__init_array_start[i])(argc, argv, env);
|
|
}
|
|
|
|
static void call_fini_array_callbacks() {
|
|
size_t fini_array_size = __fini_array_end - __fini_array_start;
|
|
for (size_t i = fini_array_size; i > 0; --i)
|
|
reinterpret_cast<FiniCallback *>(__fini_array_start[i - 1])();
|
|
}
|
|
|
|
static ThreadAttributes main_thread_attrib;
|
|
static TLSDescriptor tls;
|
|
// We separate teardown_main_tls from callbacks as callback function themselves
|
|
// may require TLS.
|
|
void teardown_main_tls() { cleanup_tls(tls.addr, tls.size); }
|
|
|
|
[[noreturn]] void do_start() {
|
|
auto tid = syscall_impl<long>(SYS_gettid);
|
|
if (tid <= 0)
|
|
syscall_impl<long>(SYS_exit, 1);
|
|
main_thread_attrib.tid = static_cast<int>(tid);
|
|
|
|
// 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.
|
|
uintptr_t *env_ptr = app.args->argv + app.args->argc + 1;
|
|
uintptr_t *env_end_marker = env_ptr;
|
|
app.env_ptr = env_ptr;
|
|
while (*env_end_marker)
|
|
++env_end_marker;
|
|
|
|
// Initialize the POSIX global declared in unistd.h
|
|
environ = reinterpret_cast<char **>(env_ptr);
|
|
|
|
// After the env array, is the aux-vector. The end of the aux-vector is
|
|
// denoted by an AT_NULL entry.
|
|
ElfW(Phdr) *program_hdr_table = nullptr;
|
|
uintptr_t program_hdr_count = 0;
|
|
auxv::Vector::initialize_unsafe(
|
|
reinterpret_cast<const auxv::Entry *>(env_end_marker + 1));
|
|
auxv::Vector auxvec;
|
|
for (const auto &aux_entry : auxvec) {
|
|
switch (aux_entry.type) {
|
|
case AT_PHDR:
|
|
program_hdr_table = reinterpret_cast<ElfW(Phdr) *>(aux_entry.val);
|
|
break;
|
|
case AT_PHNUM:
|
|
program_hdr_count = aux_entry.val;
|
|
break;
|
|
case AT_PAGESZ:
|
|
app.page_size = aux_entry.val;
|
|
break;
|
|
default:
|
|
break; // TODO: Read other useful entries from the aux vector.
|
|
}
|
|
}
|
|
|
|
ptrdiff_t base = 0;
|
|
app.tls.size = 0;
|
|
ElfW(Phdr) *tls_phdr = nullptr;
|
|
|
|
for (uintptr_t i = 0; i < program_hdr_count; ++i) {
|
|
ElfW(Phdr) &phdr = program_hdr_table[i];
|
|
if (phdr.p_type == PT_PHDR)
|
|
base = reinterpret_cast<ptrdiff_t>(program_hdr_table) - phdr.p_vaddr;
|
|
if (phdr.p_type == PT_DYNAMIC && _DYNAMIC)
|
|
base = reinterpret_cast<ptrdiff_t>(_DYNAMIC) - phdr.p_vaddr;
|
|
if (phdr.p_type == PT_TLS)
|
|
tls_phdr = &phdr;
|
|
// TODO: adjust PT_GNU_STACK
|
|
}
|
|
|
|
app.tls.address = tls_phdr->p_vaddr + base;
|
|
app.tls.size = tls_phdr->p_memsz;
|
|
app.tls.init_size = tls_phdr->p_filesz;
|
|
app.tls.align = tls_phdr->p_align;
|
|
|
|
// This descriptor has to be static since its cleanup function cannot
|
|
// capture the context.
|
|
init_tls(tls);
|
|
if (tls.size != 0 && !set_thread_ptr(tls.tp))
|
|
syscall_impl<long>(SYS_exit, 1);
|
|
|
|
self.attrib = &main_thread_attrib;
|
|
main_thread_attrib.atexit_callback_mgr =
|
|
internal::get_thread_atexit_callback_mgr();
|
|
|
|
// We want the fini array callbacks to be run after other atexit
|
|
// callbacks are run. So, we register them before running the init
|
|
// array callbacks as they can potentially register their own atexit
|
|
// callbacks.
|
|
atexit(&call_fini_array_callbacks);
|
|
|
|
call_init_array_callbacks(static_cast<int>(app.args->argc),
|
|
reinterpret_cast<char **>(app.args->argv),
|
|
reinterpret_cast<char **>(env_ptr));
|
|
|
|
int retval = main(static_cast<int>(app.args->argc),
|
|
reinterpret_cast<char **>(app.args->argv),
|
|
reinterpret_cast<char **>(env_ptr));
|
|
|
|
exit(retval);
|
|
}
|
|
|
|
} // namespace LIBC_NAMESPACE_DECL
|