mirror of
git://git.musl-libc.org/musl
synced 2024-12-18 04:34:50 +00:00
9ec4283b28
despite documentation that makes it sound a lot different, the only ABI-constraint difference between TLS variants II and I seems to be that variant II stores the initial TLS segment immediately below the thread pointer (i.e. the thread pointer points to the end of it) and variant I stores the initial TLS segment above the thread pointer, requiring the thread descriptor to be stored below. the actual value stored in the thread pointer register also tends to have per-arch random offsets applied to it for silly micro-optimization purposes. with these changes applied, TLS should be basically working on all supported archs except microblaze. I'm still working on getting the necessary information and a working toolchain that can build TLS binaries for microblaze, but in theory, static-linked programs with TLS and dynamic-linked programs where only the main executable uses TLS should already work on microblaze. alignment constraints have not yet been heavily tested, so it's possible that this code does not always align TLS segments correctly on archs that need TLS variant I.
42 lines
953 B
C
42 lines
953 B
C
#include <string.h>
|
|
#include <elf.h>
|
|
|
|
#define ETC_LDSO_PATH "/etc/ld-musl-arm.path"
|
|
|
|
#define IS_COPY(x) ((x)==R_ARM_COPY)
|
|
#define IS_PLT(x) ((x)==R_ARM_JUMP_SLOT)
|
|
|
|
static inline void do_single_reloc(
|
|
struct dso *self, unsigned char *base_addr,
|
|
size_t *reloc_addr, int type, size_t addend,
|
|
Sym *sym, size_t sym_size,
|
|
struct symdef def, size_t sym_val)
|
|
{
|
|
switch(type) {
|
|
case R_ARM_ABS32:
|
|
*reloc_addr += sym_val;
|
|
break;
|
|
case R_ARM_GLOB_DAT:
|
|
case R_ARM_JUMP_SLOT:
|
|
*reloc_addr = sym_val;
|
|
break;
|
|
case R_ARM_RELATIVE:
|
|
*reloc_addr += (size_t)base_addr;
|
|
break;
|
|
case R_ARM_COPY:
|
|
memcpy(reloc_addr, (void *)sym_val, sym_size);
|
|
break;
|
|
case R_ARM_TLS_DTPMOD32:
|
|
*reloc_addr = def.dso ? def.dso->tls_id : self->tls_id;
|
|
break;
|
|
case R_ARM_TLS_DTPOFF32:
|
|
*reloc_addr += def.sym->st_value;
|
|
break;
|
|
case R_ARM_TLS_TPOFF32:
|
|
*reloc_addr += def.sym
|
|
? def.sym->st_value + def.dso->tls_offset + 8
|
|
: self->tls_offset + 8;
|
|
break;
|
|
}
|
|
}
|