From: Julian Lettner Date: Wed, 29 Apr 2020 21:45:25 +0000 (-0700) Subject: [Darwin] Improve ASan diagnostics on arm64e with pointer auth X-Git-Tag: llvmorg-12-init~6773 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e4740c21284054a3e2905bfdcaadff1a9bd4bb0;p=platform%2Fupstream%2Fllvm.git [Darwin] Improve ASan diagnostics on arm64e with pointer auth When reporting diagnostics from ASan's (and other sanitizer's) signal handlers we should strip the "invalid signature" bit before printing addresses. This makes the report less confusing and let's the user focus on the real issue. rdar://62615826 Reviewed By: kubamracek, delcypher Differential Revision: https://reviews.llvm.org/D79132 --- diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp index a3a827c..eff970d1 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp +++ b/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp @@ -765,9 +765,16 @@ bool SignalContext::IsTrueFaultingAddress() const { return si->si_signo == SIGSEGV && si->si_code != 0; } +#if __has_feature(ptrauth_calls) +# include +#else +# define ptrauth_strip(value, key) (value) +#endif + #if defined(__aarch64__) && defined(arm_thread_state64_get_sp) #define AARCH64_GET_REG(r) \ - arm_thread_state64_get_##r(ucontext->uc_mcontext->__ss) + (uptr)ptrauth_strip( \ + (void *)arm_thread_state64_get_##r(ucontext->uc_mcontext->__ss), 0) #else #define AARCH64_GET_REG(r) ucontext->uc_mcontext->__ss.__##r #endif @@ -799,7 +806,10 @@ static void GetPcSpBp(void *context, uptr *pc, uptr *sp, uptr *bp) { # endif } -void SignalContext::InitPcSpBp() { GetPcSpBp(context, &pc, &sp, &bp); } +void SignalContext::InitPcSpBp() { + addr = (uptr)ptrauth_strip((void *)addr, 0); + GetPcSpBp(context, &pc, &sp, &bp); +} void InitializePlatformEarly() { // Only use xnu_fast_mmap when on x86_64 and the OS supports it. @@ -1136,7 +1146,7 @@ void SignalContext::DumpAllRegisters(void *context) { # define DUMPREG64(r) \ Printf("%s = 0x%016llx ", #r, ucontext->uc_mcontext->__ss.__ ## r); # define DUMPREGA64(r) \ - Printf("%s = 0x%016llx ", #r, AARCH64_GET_REG(r)); + Printf(" %s = 0x%016llx ", #r, AARCH64_GET_REG(r)); # define DUMPREG32(r) \ Printf("%s = 0x%08x ", #r, ucontext->uc_mcontext->__ss.__ ## r); # define DUMPREG_(r) Printf(" "); DUMPREG(r);