sframe.h: add support for .cfi_b_key_frame
authorIndu Bhagat <indu.bhagat@oracle.com>
Thu, 22 Dec 2022 17:57:02 +0000 (09:57 -0800)
committerIndu Bhagat <indu.bhagat@oracle.com>
Thu, 22 Dec 2022 17:57:02 +0000 (09:57 -0800)
commit41eed6e1878d93753ff82913d4577616c4778fa7
tree2e4142cd82b2dc6b93a377b60017fbdb39832896
parenta5ce326cfeb364a33d8ee9c806780347a92b5d18
sframe.h: add support for .cfi_b_key_frame

ARM 8.3 provides five separate keys that can be used to authenticate
pointers. There are two key for executable (instruction) pointers. The
enum pointer_auth_key in gas/config/tc-aarch64.h currently holds two keys:
  enum pointer_auth_key {
    AARCH64_PAUTH_KEY_A,
    AARCH64_PAUTH_KEY_B
  };

Analogous to the above, in SFrame format V1, a bit is reserved in the SFrame
FDE to indicate which key is used for signing the frame's return addresses:
  - SFRAME_AARCH64_PAUTH_KEY_A has a value of 0
  - SFRAME_AARCH64_PAUTH_KEY_B has a value of 1

Note that the information in this bit will always be used along with the
mangled_ra_p bit, the latter indicates whether the return addresses are
mangled/contain PAC auth bits.

include/ChangeLog:

* sframe.h (SFRAME_AARCH64_PAUTH_KEY_A): New definition.
(SFRAME_AARCH64_PAUTH_KEY_B): Likewise.
(SFRAME_V1_FUNC_INFO): Adjust to accommodate pauth_key.
(SFRAME_V1_FUNC_PAUTH_KEY): New macro.
(SFRAME_V1_FUNC_INFO_UPDATE_PAUTH_KEY): Likewise.
include/sframe.h