]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/breakpoint.c
[aarch64] Fix removal of non-address bits for PAuth
authorLuis Machado <luis.machado@arm.com>
Tue, 24 May 2022 22:31:09 +0000 (23:31 +0100)
committerLuis Machado <luis.machado@arm.com>
Fri, 16 Dec 2022 11:18:32 +0000 (11:18 +0000)
commitd88cb738e6a7a7179dfaff8af78d69250c852af1
treec34f73f06cea5177a4763afb73baf2e8a41c68f6
parent22a8433e00fd33efcb1fa4961eb826cd97f2cd8b
[aarch64] Fix removal of non-address bits for PAuth

PR gdb/28947

The address_significant gdbarch setting was introduced as a way to remove
non-address bits from pointers, and it is specified by a constant.  This
constant represents the number of address bits in a pointer.

Right now AArch64 is the only architecture that uses it, and 56 was a
correct option so far.

But if we are using Pointer Authentication (PAuth), we might use up to 2 bytes
from the address space to store the required information.  We could also have
cases where we're using both PAuth and MTE.

We could adjust the constant to 48 to cover those cases, but this doesn't
cover the case where GDB needs to sign-extend kernel addresses after removal
of the non-address bits.

This has worked so far because bit 55 is used to select between kernel-space
and user-space addresses.  But trying to clear a range of bits crossing the
bit 55 boundary requires the hook to be smarter.

The following patch renames the gdbarch hook from significant_addr_bit to
remove_non_address_bits and passes a pointer as opposed to the number of
bits.  The hook is now responsible for removing the required non-address bits
and sign-extending the address if needed.

While at it, make GDB and GDBServer share some more code for aarch64 and add a
new arch-specific testcase gdb.arch/aarch64-non-address-bits.exp.

Bug-url: https://sourceware.org/bugzilla/show_bug.cgi?id=28947

Approved-By: Simon Marchi <simon.marchi@efficios.com>
16 files changed:
gdb/aarch64-linux-nat.c
gdb/aarch64-linux-tdep.c
gdb/arch-utils.c
gdb/arch-utils.h
gdb/arch/aarch64.c
gdb/arch/aarch64.h
gdb/breakpoint.c
gdb/gdbarch-components.py
gdb/gdbarch-gen.h
gdb/gdbarch.c
gdb/target.c
gdb/testsuite/gdb.arch/aarch64-non-address-bits.c [new file with mode: 0644]
gdb/testsuite/gdb.arch/aarch64-non-address-bits.exp [new file with mode: 0644]
gdb/utils.c
gdb/utils.h
gdbserver/linux-aarch64-low.cc