arm64: lds: move .got section out of .text
authorFangrui Song <maskray@google.com>
Tue, 2 May 2023 07:41:05 +0000 (07:41 +0000)
committerWill Deacon <will@kernel.org>
Tue, 2 May 2023 12:12:45 +0000 (13:12 +0100)
commit0fddb79bf283a561eb81f09d01f5ac8f61bf8966
tree07d6471e07776fabb3ed9f10261500859a205cf3
parent4df69e0df295822cdf816442fe4897f214cccb08
arm64: lds: move .got section out of .text

Currently, the .got section is placed within the output section .text.
However, when .got is non-empty, the SHF_WRITE flag is set for .text
when linked by lld. GNU ld recognizes .text as a special section and
ignores the SHF_WRITE flag. By renaming .text, we can also get the
SHF_WRITE flag.

The kernel has performed R_AARCH64_RELATIVE resolving very early, and can
then assume that .got is read-only. Let's move .got to the vmlinux_rodata
pseudo-segment.

As Ard Biesheuvel notes:

"This matters to consumers of the vmlinux ELF representation of the
kernel image, such as syzkaller, which disregards writable PT_LOAD
segments when resolving code symbols. The kernel itself does not care
about this distinction, but given that the GOT contains data and not
code, it does not require executable permissions, and therefore does
not belong in .text to begin with."

Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Fangrui Song <maskray@google.com>
Link: https://lore.kernel.org/r/20230502074105.1541926-1-maskray@google.com
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/kernel/vmlinux.lds.S