public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Szabolcs Nagy <nsz@sourceware.org>
To: glibc-cvs@sourceware.org
Subject: [glibc/nsz/pacbti-v7] aarch64: fix pac-ret support in _mcount
Date: Wed,  8 Jul 2020 12:09:33 +0000 (GMT)	[thread overview]
Message-ID: <20200708120933.650B338618B4@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=a8601c3f0da98f7179288be1a9a2950aad5b2f5f

commit a8601c3f0da98f7179288be1a9a2950aad5b2f5f
Author: Szabolcs Nagy <szabolcs.nagy@arm.com>
Date:   Wed May 13 12:10:13 2020 +0100

    aarch64: fix pac-ret support in _mcount
    
    Currently gcc -pg -mbranch-protection=pac-ret passes signed return
    address to _mcount, so _mcount now has to always strip pac from the
    frompc since that's from user code that may be built with pac-ret.
    
    This is gcc PR target/94791: signed pointers should not escape and get
    passed across extern call boundaries, since that's an ABI break, but
    because existing gcc has this issue we work it around in glibc until
    that is resolved. This is compatible with a fixed gcc and it is a nop
    on systems without PAuth support. The bug was introduced in gcc-7 with
    -msign-return-address=non-leaf|all support which in gcc-9 got renamed
    to -mbranch-protection=pac-ret|pac-ret+leaf|standard.
    
    strip_pac uses inline asm instead of __builtin_aarch64_xpaclri since
    that is not a documented api and not available in all supported gccs.
    
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

Diff:
---
 sysdeps/aarch64/machine-gmon.h |  3 ++-
 sysdeps/aarch64/sysdep.h       | 11 +++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/sysdeps/aarch64/machine-gmon.h b/sysdeps/aarch64/machine-gmon.h
index 730a23b781..a687298b1c 100644
--- a/sysdeps/aarch64/machine-gmon.h
+++ b/sysdeps/aarch64/machine-gmon.h
@@ -27,8 +27,9 @@ static void mcount_internal (u_long frompc, u_long selfpc);
 #define _MCOUNT_DECL(frompc, selfpc) \
 static inline void mcount_internal (u_long frompc, u_long selfpc)
 
+/* Note: strip_pac is needed for frompc because of gcc PR target/94791.  */
 #define MCOUNT                                                    \
 void __mcount (void *frompc)                                      \
 {                                                                 \
-  mcount_internal ((u_long) frompc, (u_long) RETURN_ADDRESS (0)); \
+  mcount_internal ((u_long) strip_pac (frompc), (u_long) RETURN_ADDRESS (0)); \
 }
diff --git a/sysdeps/aarch64/sysdep.h b/sysdeps/aarch64/sysdep.h
index cd88023163..f442506952 100644
--- a/sysdeps/aarch64/sysdep.h
+++ b/sysdeps/aarch64/sysdep.h
@@ -35,6 +35,17 @@
 
 #define PTR_SIZE	(1<<PTR_LOG_SIZE)
 
+#ifndef __ASSEMBLER__
+/* Strip pointer authentication code from pointer p.  */
+static inline void *
+strip_pac (void *p)
+{
+  register void *ra asm ("x30") = (p);
+  asm ("hint 7 // xpaclri" : "+r"(ra));
+  return ra;
+}
+#endif
+
 #ifdef	__ASSEMBLER__
 
 /* Syntactic details of assembler.  */


                 reply	other threads:[~2020-07-08 12:09 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20200708120933.650B338618B4@sourceware.org \
    --to=nsz@sourceware.org \
    --cc=glibc-cvs@sourceware.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).