diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2020-06-11 18:19:40 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2020-06-22 15:21:14 +0100 |
commit | 3a5c93ce5ccdc70160e5117feab82f6b29179d89 (patch) | |
tree | ff42468074eba42d414fdfe4df0b800991da1676 | |
parent | 18e0807ab4771d243919f3b54b9439e6a09aec4b (diff) | |
download | glibc-nsz/pacbti-v5.zip glibc-nsz/pacbti-v5.tar.gz glibc-nsz/pacbti-v5.tar.bz2 |
aarch64: add NEWS entry about branch protection supportnsz/pacbti-v5
This is a new security feature that relies on architecture
extensions and needs glibc to be built with a gcc configured
with branch protection.
-rw-r--r-- | NEWS | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -31,6 +31,18 @@ Major new features: pthread_attr_getsigmask_np have been added. They allow applications to specify the signal mask of a thread created with pthread_create. +* AArch64 now supports standard branch protection security hardening + in glibc when it is built with a GCC that is configured with + --enable-standard-branch-protection. This includes branch target + identification (BTI) and pointer authentication for return addresses + (PAC-RET). They require armv8.5-a and armv8.3-a architecture + extensions respectively for the protection to be effective, + otherwise the used instructions are nops. User code can use PAC-RET + without libc support, but BTI requires a libc that is built with BTI + support, otherwise runtime objects linked into user code will not be + BTI compatible. It is recommended to use GCC 10 or newer when + building glibc with branch protection. + Deprecated and removed features, and other changes affecting compatibility: * The deprecated <sys/sysctl.h> header and the sysctl function have been |