From: Pedro Alves <palves@redhat.com>
To: Alan Hayward <Alan.Hayward@arm.com>,
"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Cc: nd <nd@arm.com>
Subject: Re: [PATCH V2] AArch64 pauth: Indicate unmasked addresses in backtrace
Date: Wed, 07 Aug 2019 19:24:00 -0000 [thread overview]
Message-ID: <728af5fa-8e3d-845c-d72f-60b1d2067643@redhat.com> (raw)
In-Reply-To: <20190730144123.11135-1-alan.hayward@arm.com>
On 7/30/19 3:41 PM, Alan Hayward wrote:
> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> index 0fcd131f71..b7dba2f918 100644
> --- a/gdb/doc/gdb.texinfo
> +++ b/gdb/doc/gdb.texinfo
> @@ -24380,6 +24380,14 @@ but the lengths of the @code{z} and @code{p} registers will not change. This
> is a known limitation of @value{GDBN} and does not affect the execution of the
> target process.
>
> +@subsubsection AArch64 Pointer Authentication.
> +@cindex AArch64 Pointer Authentication.
> +
> +When @value{GDBN} is debugging the AArch64 architecture, and the program is
> +using the v8.3-A feature Pointer Authentication (PAC), then whenever the link
> +register @code{$lr} is pointing to an PAC function it's value will be masked.
s/it's value/its value/
> +When GDB prints a backtrace, any addresses that required unmasking will be
> +postfixed with the marker [PAC].
>
> diff --git a/gdb/python/py-framefilter.c b/gdb/python/py-framefilter.c
> index a2a96ac0d3..d805ec68f2 100644
> --- a/gdb/python/py-framefilter.c
> +++ b/gdb/python/py-framefilter.c
> @@ -901,6 +901,8 @@ py_print_frame (PyObject *filter, frame_filter_flags flags,
> {
> annotate_frame_address ();
> out->field_core_addr ("addr", gdbarch, address);
> + if (get_frame_pc_masked (frame))
> + out->field_string ("pac", " [PAC]");
> annotate_frame_address_end ();
> out->text (" in ");
> }
> diff --git a/gdb/stack.c b/gdb/stack.c
> index 7833ca4aeb..9d49809895 100644
> --- a/gdb/stack.c
> +++ b/gdb/stack.c
> @@ -1298,7 +1298,11 @@ print_frame (const frame_print_options &fp_opts,
> {
> annotate_frame_address ();
> if (pc_p)
> - uiout->field_core_addr ("addr", gdbarch, pc);
> + {
> + uiout->field_core_addr ("addr", gdbarch, pc);
> + if (get_frame_pc_masked (frame))
> + uiout->field_string ("pac", " [PAC]");
Hmm, I had suggested considering MI in the previous iteration, but
I was just thinking of including the "[PAC]" text in the
"addr" field. If we're adding a new field, then a few extra
things need to be considered:
#1 - documentation, both manual and NEWS should mention this new MI field.
#2 - calling the attribute "pac" makes it architecture specific.
I.e., to make use of it, a frontend will have to have Aarch64 awareness?
Not sure that is a good thing.
#3 - The MI attribute is called "pac", and its content is
literally " [PAC]". I'd find that odd if I were a frontend author:
the content is right aligned with a space, making doing anything with
it other than appending it to the address text probably look odd,
unless you bake in awareness of the attribute's text... If I saw
an attribute named "pac", I'd expect it to be a boolean? At the
least, the left space should not be part of the field, I think?
Maybe we should rename the field to something else, like "addr_attr"
for "address attributes" or something.
Thanks,
Pedro Alves
next prev parent reply other threads:[~2019-08-07 19:24 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-30 14:41 Alan Hayward
2019-08-06 16:15 ` Tom Tromey
2019-08-07 12:35 ` Alan Hayward
2019-08-07 19:24 ` Pedro Alves [this message]
2019-08-08 8:55 ` Alan Hayward
2019-08-08 10:33 ` Pedro Alves
2019-08-09 13:22 ` Alan Hayward
2019-08-09 14:17 ` Pedro Alves
2019-08-09 14:46 ` Alan Hayward
2019-08-09 16:51 ` Pedro Alves
2019-08-08 16:58 ` Tom Tromey
2019-08-09 14:11 ` Pedro Alves
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=728af5fa-8e3d-845c-d72f-60b1d2067643@redhat.com \
--to=palves@redhat.com \
--cc=Alan.Hayward@arm.com \
--cc=gdb-patches@sourceware.org \
--cc=nd@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox