* Fāng-ruì Sòng: >> I *think* you can get what you need via existing GLIBC_PRIVATE >> interfaces. But in order to describe how to caox the data out of glibc, >> I need to know what you need. > > Unfortunate no, not reliably. Currently _dl_get_tls_static_info > (https://github.com/llvm/llvm-project/blob/main/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp#L207) > is used. It has the size information but not the start address, so the > sanitizer runtime is doing very ugly/error-prone probing of the start > address by reading the thread pointer and hard coding the `struct > pthread` size for various glibc versions. > Every time `struct pthreads` increases in glibc, sanitizer runtime has to > adapt. > > __libc_get_static_tls_bounds if supported by glibc, can replace > _dl_get_tls_static_info and the existing glibc specific GetTls hacks, > and provide a bit more compatibility when glibc struct pthreads > increases.
We already export the size of struct pthread, though, as a GLIBC_PRIVATE symbol. const unsigned int *psize = dlvsym("_thread_db_sizeof_pthread", "GLIBC_PRIVATE"); if (psize != nullptr) { val = *psize; atomic_store_relaxed(&thread_descriptor_size, val); return val; } in ThreadDescriptorSize() in compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp should work with any further glibc changes today. It definitely beats hard-coding the architecture-specific struct pthread size. Using _thread_db_sizeof_pthread does not remove all magic constants from the code, and there is of course the _dl_get_tls_static_info symbol usage. This is a fairly recent change (glibc 2.34, I believe) that was introduced to improve thread debugging without debuginfo present in the glibc objects (which is why it's a GLIBC_PRIVATE symbol). libthread_db is bundled with glibc, so the _thread_db_* symbols are not gurantueed to be stable, but there are no immediate plans to change this interface. Thanks, Florian