1 /* 2 * host-signal.h: signal info dependent on the host architecture 3 * 4 * Copyright (c) 2003-2005 Fabrice Bellard 5 * Copyright (c) 2021 Linaro Limited 6 * 7 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. 8 * See the COPYING file in the top-level directory. 9 */ 10 11 #ifndef AARCH64_HOST_SIGNAL_H 12 #define AARCH64_HOST_SIGNAL_H 13 14 /* Pre-3.16 kernel headers don't have these, so provide fallback definitions */ 15 #ifndef ESR_MAGIC 16 #define ESR_MAGIC 0x45535201 17 struct esr_context { 18 struct _aarch64_ctx head; 19 uint64_t esr; 20 }; 21 #endif 22 23 static inline struct _aarch64_ctx *first_ctx(ucontext_t *uc) 24 { 25 return (struct _aarch64_ctx *)&uc->uc_mcontext.__reserved; 26 } 27 28 static inline struct _aarch64_ctx *next_ctx(struct _aarch64_ctx *hdr) 29 { 30 return (struct _aarch64_ctx *)((char *)hdr + hdr->size); 31 } 32 33 static inline uintptr_t host_signal_pc(ucontext_t *uc) 34 { 35 return uc->uc_mcontext.pc; 36 } 37 38 static inline void host_signal_set_pc(ucontext_t *uc, uintptr_t pc) 39 { 40 uc->uc_mcontext.pc = pc; 41 } 42 43 static inline void *host_signal_mask(ucontext_t *uc) 44 { 45 return &uc->uc_sigmask; 46 } 47 48 static inline bool host_signal_write(siginfo_t *info, ucontext_t *uc) 49 { 50 struct _aarch64_ctx *hdr; 51 uint32_t insn; 52 53 /* Find the esr_context, which has the WnR bit in it */ 54 for (hdr = first_ctx(uc); hdr->magic; hdr = next_ctx(hdr)) { 55 if (hdr->magic == ESR_MAGIC) { 56 struct esr_context const *ec = (struct esr_context const *)hdr; 57 uint64_t esr = ec->esr; 58 59 /* For data aborts ESR.EC is 0b10010x: then bit 6 is the WnR bit */ 60 return extract32(esr, 27, 5) == 0x12 && extract32(esr, 6, 1) == 1; 61 } 62 } 63 64 /* 65 * Fall back to parsing instructions; will only be needed 66 * for really ancient (pre-3.16) kernels. 67 */ 68 insn = *(uint32_t *)host_signal_pc(uc); 69 70 return (insn & 0xbfff0000) == 0x0c000000 /* C3.3.1 */ 71 || (insn & 0xbfe00000) == 0x0c800000 /* C3.3.2 */ 72 || (insn & 0xbfdf0000) == 0x0d000000 /* C3.3.3 */ 73 || (insn & 0xbfc00000) == 0x0d800000 /* C3.3.4 */ 74 || (insn & 0x3f400000) == 0x08000000 /* C3.3.6 */ 75 || (insn & 0x3bc00000) == 0x39000000 /* C3.3.13 */ 76 || (insn & 0x3fc00000) == 0x3d800000 /* ... 128bit */ 77 /* Ignore bits 10, 11 & 21, controlling indexing. */ 78 || (insn & 0x3bc00000) == 0x38000000 /* C3.3.8-12 */ 79 || (insn & 0x3fe00000) == 0x3c800000 /* ... 128bit */ 80 /* Ignore bits 23 & 24, controlling indexing. */ 81 || (insn & 0x3a400000) == 0x28000000; /* C3.3.7,14-16 */ 82 } 83 84 #endif 85