In 2002, PI_STATIC_AND_HIDDEN
was introduced into glibc rtld (runtime loader). This macro indicates whether accesses to static variables and hidden variables need dynamic relocations.
The static and hidden conditions are to confine the discussion to compile-time non-preemptible symbols (non-local STV_DEFAULT
symbols may be preemptible). Only such variables are needed by rtld.
PI
in the macro name is an abbreviation for "position independent". Here the usage is wrong: a code sequence using GOT is typically position-independent as well, but the dynamic relocation does not satisfy the requirement. Instead, the actual condition here is a code sequence not needing dynamic relocations. Most modern architectures provide PC-relative instructions: aarch64, riscv, and x86-64. x86-32 provides this with a detour: compute PC, add _GLOBAL_OFFSET_TABLE_-PC
, then add S-_GLOBAL_OFFSET_TABLE_
.
1 | static int var; |
1 | # aarch64 |
Older architectures tend to use a GOT. See All about Global Offset Table.
The first task of rtld is to relocate itself and bind all symbols to itself. Afterward, non-preemptible functions and data can be freely accessed.
On architectures where a GOT entry is used to access a non-preemptible variable, rtld needs to be careful not to reference such variables before relative relocations are applied. In rtld.c
, _dl_start
has the following code:
1 | if (bootstrap_map.l_addr) |
_rtld_local_ro
is a hidden global variable. Taking its address may be reordered before ELF_DYNAMIC_RELOCATE
by the compiler. On an architecture using a GOT entry to load the address, the reordering will make the subsequent memory store (_rtld_local_ro.dl_find_object
) to crash, since the GOT address is incorrect: it's zero or the link-time address instead of the run-time address.
powerpc32
I recently cleaned up the bootstrap code a bit with elf: Move elf_dynamic_do_Rel RTLD_BOOTSTRAP branches outside
. Afterwards, GCC powerpc32 appears to reliably reorder _rtld_local_ro
, causing ld.so
to crash right away.
1 | mkdir -p out/ppc; cd out/ppc |
1 | % elf/ld.so |
I was pretty sure there is a relocation bug but was not immediately clear which piece of code may be at fault.
Void Linux ppc provides powerpc32 glibc and musl images. I downloaded one and fed it into qemu, booted it with qemu-system-ppc -machine mac99 -m 2047M -cdrom void-live-ppc-20210825.iso -net nic -net user,smb=$HOME/Dev -boot d
. Thankfully the live CD has a disk of about 1GiB and I can install cifs-utils and gdb. gdb aborts immediately with a 5.13.12 kernel. Daniel Kolesa told me that 4.x may work, so I tried 4.4.261. It would be nice if somebody can fix the gdb and kernel incompatibility.
1 | xbps-install -S |
gdb says stw r9,1168(r25)
triggers SIGSEGV.
1 | % powerpc-linux-gnu-objdump --disassemble=_dl_start -S elf/ld.so |
Then I confirm that the GOT entry corresponds to _rtld_local_ro
.
1 | % readelf -Ws elf/ld.so | grep 4ffb8 |
elf: Move post-relocation code of _dl_start into _dl_start_final shall fix the bug.
Note: in the absence of a powerpc32 system, qemu-ppc-static -d in_asm elf/ld.so
may provide some clue about the faulty basic block.
1 | ---------------- |
m68k
Last week I fixed a similar bug for m68k: m68k: Removal of ELF_DURING_STARTUP optimization broke ld.so.
ld.so
has 671 R_68K_RELATIVE
relocations and one R_68K_GLOB_DAT
for [email protected]@GLIBC_2.4
. The following function is used to apply a relocation. It is shared by self-relocation and relocation for other modules. The self-relocation code defines RTLD_BOOTSTRAP
and needs just R_68K_RELATIVE
, R_68K_GLOB_DAT
, and R_68K_JMP_SLOT
.
1 |
|
However, somehow many case labels were available for self-relocation. GCC compiles the switch statement into a jump table which requires loading an address from GOT. With some clean-up to generic relocation code, GCC decides to perform loop-invariant code motion and hoists the load of the jump table address. The hoisted load is before relative relocations are applied, so the jump table address is incorrect.
The foolproof approach is to add an optimization barrier (e.g. calling an non-inlinable function after relative relocations are resolved). That is non-trivial given the code structure. So Andreas Schwab suggested a simple approach by avoiding the jump table: handle just the essential relocations.
The faulty code concealed well and I could not have found it without a debugger. It took me a while to set up a m68k image using q800. The memory is limited to 1000MiB and the emulation is very slow. Linux 5.19 is expected to gain the support for a virtual Motorola 68000 machine. With qemu-system-m68k -M virt
things will become better.
1 |
|