diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2020-05-07 18:30:12 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2020-07-08 15:02:38 +0100 |
commit | 9e1751e6d693b73b95db2f6d8438dd80f1aeffe0 (patch) | |
tree | 40ece1a3b2681b7152ec3e7352e97bcd340e17b8 /sysdeps/aarch64/configure.ac | |
parent | de9301c02e898fb20a609b459d81afda42f39c61 (diff) | |
download | glibc-9e1751e6d693b73b95db2f6d8438dd80f1aeffe0.zip glibc-9e1751e6d693b73b95db2f6d8438dd80f1aeffe0.tar.gz glibc-9e1751e6d693b73b95db2f6d8438dd80f1aeffe0.tar.bz2 |
aarch64: configure check for pac-ret code generation
Return address signing requires unwinder support, which is
present in libgcc since >=gcc-7, however due to bugs the
support may be broken in <gcc-10 (and similarly there may
be issues in custom unwinders), so pac-ret is not always
safe to use. So in assembly code glibc should only use
pac-ret if the compiler uses it too. Unfortunately there
is no predefined feature macro for it set by the compiler
so pac-ret is inferred from the code generation.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/aarch64/configure.ac')
-rw-r--r-- | sysdeps/aarch64/configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sysdeps/aarch64/configure.ac b/sysdeps/aarch64/configure.ac index 2c28175..8b042d6 100644 --- a/sysdeps/aarch64/configure.ac +++ b/sysdeps/aarch64/configure.ac @@ -40,3 +40,24 @@ LIBC_CONFIG_VAR([aarch64-bti], [$libc_cv_aarch64_bti]) if test $libc_cv_aarch64_bti = yes; then AC_DEFINE(HAVE_AARCH64_BTI) fi + +# Check if glibc is built with return address signing, i.e. +# if -mbranch-protection=pac-ret is on. We need this because +# pac-ret relies on unwinder support so it's not safe to use +# it in assembly code unconditionally, but there is no +# feature test macro for it in gcc. +AC_CACHE_CHECK([if pac-ret is enabled], [libc_cv_aarch64_pac_ret], [dnl + cat > conftest.c <<EOF +int bar (void); +int foo (void) { return bar () + 1; } +EOF + libc_cv_aarch64_pac_ret=no + if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -o conftest.s conftest.c]) \ + && AC_TRY_COMMAND([grep -q -E '\''(hint( | )+25|paciasp)'\'' conftest.s]) + then + libc_cv_aarch64_pac_ret=yes + fi + rm -rf conftest.*]) +if test $libc_cv_aarch64_pac_ret = yes; then + AC_DEFINE(HAVE_AARCH64_PAC_RET) +fi |