]> git.ipfire.org Git - thirdparty/glibc.git/commit
aarch64: Add BTI support to assembly files
authorSudakshina Das <sudi.das@arm.com>
Tue, 17 Mar 2020 15:44:18 +0000 (15:44 +0000)
committerSzabolcs Nagy <szabolcs.nagy@arm.com>
Wed, 8 Jul 2020 14:02:37 +0000 (15:02 +0100)
commit91181954f94917b1e1ae591c60cbadf0321d35af
tree8496a8e4cb39e210eea7f8ed9e5bb208ff8556bc
parent2a4c2dde4918c2c4e443e8328eab97db2c26e327
aarch64: Add BTI support to assembly files

To enable building glibc with branch protection, assembly code
needs BTI landing pads and ELF object file markings in the form
of a GNU property note.

The landing pads are unconditionally added to all functions that
may be indirectly called. When the code segment is not mapped
with PROT_BTI these instructions are nops. They are kept in the
code when BTI is not supported so that the layout of performance
critical code is unchanged across configurations.

The GNU property notes are only added when there is support for
BTI in the toolchain, because old binutils does not handle the
notes right. (Does not know how to merge them nor to put them in
PT_GNU_PROPERTY segment instead of PT_NOTE, and some versions
of binutils emit warnings about the unknown GNU property. In
such cases the produced libc binaries would not have valid
ELF marking so BTI would not be enabled.)

Note: functions using ENTRY or ENTRY_ALIGN now start with an
additional BTI c, so alignment of the following code changes,
but ENTRY_ALIGN_AND_PAD was fixed so there is no change to the
existing code layout. Some string functions may need to be
tuned for optimal performance after this commit.

Co-authored-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
sysdeps/aarch64/crti.S
sysdeps/aarch64/crtn.S
sysdeps/aarch64/dl-tlsdesc.S
sysdeps/aarch64/dl-trampoline.S
sysdeps/aarch64/multiarch/memset_emag.S
sysdeps/aarch64/multiarch/memset_falkor.S
sysdeps/aarch64/multiarch/memset_generic.S
sysdeps/aarch64/multiarch/rtld-memset.S
sysdeps/aarch64/start.S
sysdeps/aarch64/sysdep.h