public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/94514] New: aarch64: unwinding across mixed pac-ret and non-pac-ret frames is broken
@ 2020-04-07 11:28 nsz at gcc dot gnu.org
  2020-04-21 16:50 ` [Bug target/94514] " cvs-commit at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: nsz at gcc dot gnu.org @ 2020-04-07 11:28 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94514

            Bug ID: 94514
           Summary: aarch64: unwinding across mixed pac-ret and
                    non-pac-ret frames is broken
           Product: gcc
           Version: 10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nsz at gcc dot gnu.org
  Target Milestone: ---

libgcc unwinder on aarch64 fails to keep track of pauth state and may try to
authenticate return addresses that were not signed causing a runtime crash.

example c++ code that segfaults in the unwinder on a pauth enabled system:

__attribute__((noinline, target("branch-protection=pac-ret")))
static void do_throw (void)
{
  throw 42;
  __builtin_abort ();
}

__attribute__((noinline, target("branch-protection=none")))
static void no_pac_ret (void)
{
  do_throw ();
  __builtin_abort ();
}

int main ()
{
  try {
    no_pac_ret ();
  } catch (...) {
    return 0;
  }
  __builtin_abort ();
}

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-05-14 15:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-07 11:28 [Bug target/94514] New: aarch64: unwinding across mixed pac-ret and non-pac-ret frames is broken nsz at gcc dot gnu.org
2020-04-21 16:50 ` [Bug target/94514] " cvs-commit at gcc dot gnu.org
2020-04-23 13:18 ` cvs-commit at gcc dot gnu.org
2020-05-14 15:17 ` cvs-commit at gcc dot gnu.org
2020-05-14 15:48 ` cvs-commit at gcc dot gnu.org
2020-05-14 15:51 ` nsz at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).