elf: Add ELF_DYNAMIC_AFTER_RELOC to rewrite PLT
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 5 Jan 2024 04:19:39 +0000 (20:19 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 5 Jan 2024 13:49:49 +0000 (05:49 -0800)
commit848746e88ec2aa22e8dea25f2110e2b2c59c712e
tree33db2fa3d1b4dc68fec06609cb6bacc4d680a38e
parent520b1df08de68a3de328b65a25b86300a7ddf512
elf: Add ELF_DYNAMIC_AFTER_RELOC to rewrite PLT

Add ELF_DYNAMIC_AFTER_RELOC to allow target specific processing after
relocation.

For x86-64, add

 #define DT_X86_64_PLT     (DT_LOPROC + 0)
 #define DT_X86_64_PLTSZ   (DT_LOPROC + 1)
 #define DT_X86_64_PLTENT  (DT_LOPROC + 3)

1. DT_X86_64_PLT: The address of the procedure linkage table.
2. DT_X86_64_PLTSZ: The total size, in bytes, of the procedure linkage
table.
3. DT_X86_64_PLTENT: The size, in bytes, of a procedure linkage table
entry.

With the r_addend field of the R_X86_64_JUMP_SLOT relocation set to the
memory offset of the indirect branch instruction.

Define ELF_DYNAMIC_AFTER_RELOC for x86-64 to rewrite the PLT section
with direct branch after relocation when the lazy binding is disabled.

PLT rewrite is disabled by default since SELinux may disallow modifying
code pages and ld.so can't detect it in all cases.  Use

$ export GLIBC_TUNABLES=glibc.cpu.plt_rewrite=1

to enable PLT rewrite with 32-bit direct jump at run-time or

$ export GLIBC_TUNABLES=glibc.cpu.plt_rewrite=2

to enable PLT rewrite with 32-bit direct jump and on APX processors with
64-bit absolute jump at run-time.

Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com>
17 files changed:
elf/dynamic-link.h
elf/elf.h
elf/tst-glibcelf.py
manual/tunables.texi
scripts/glibcelf.py
sysdeps/x86/cet-control.h
sysdeps/x86/cpu-features.c
sysdeps/x86/dl-procruntime.c
sysdeps/x86/dl-tunables.list
sysdeps/x86_64/Makefile
sysdeps/x86_64/configure
sysdeps/x86_64/configure.ac
sysdeps/x86_64/dl-dtprocnum.h [new file with mode: 0644]
sysdeps/x86_64/dl-machine.h
sysdeps/x86_64/link_map.h [new file with mode: 0644]
sysdeps/x86_64/tst-plt-rewrite1.c [new file with mode: 0644]
sysdeps/x86_64/tst-plt-rewritemod1.c [new file with mode: 0644]