Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Based on arch/arm/mm/fault.c |
| 3 | * |
| 4 | * Copyright (C) 1995 Linus Torvalds |
| 5 | * Copyright (C) 1995-2004 Russell King |
| 6 | * Copyright (C) 2012 ARM Ltd. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 19 | */ |
| 20 | |
Paul Gortmaker | 0edfa83 | 2016-09-19 17:38:55 -0400 | [diff] [blame] | 21 | #include <linux/extable.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 22 | #include <linux/signal.h> |
| 23 | #include <linux/mm.h> |
| 24 | #include <linux/hardirq.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/kprobes.h> |
| 27 | #include <linux/uaccess.h> |
| 28 | #include <linux/page-flags.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 29 | #include <linux/sched/signal.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 30 | #include <linux/sched/debug.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 31 | #include <linux/highmem.h> |
| 32 | #include <linux/perf_event.h> |
James Morse | 7209c86 | 2016-10-18 11:27:47 +0100 | [diff] [blame] | 33 | #include <linux/preempt.h> |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 34 | #include <linux/hugetlb.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 35 | |
James Morse | 7209c86 | 2016-10-18 11:27:47 +0100 | [diff] [blame] | 36 | #include <asm/bug.h> |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 37 | #include <asm/cpufeature.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 38 | #include <asm/exception.h> |
| 39 | #include <asm/debug-monitors.h> |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 40 | #include <asm/esr.h> |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 41 | #include <asm/sysreg.h> |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 42 | #include <asm/system_misc.h> |
| 43 | #include <asm/pgtable.h> |
| 44 | #include <asm/tlbflush.h> |
| 45 | |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 46 | struct fault_info { |
| 47 | int (*fn)(unsigned long addr, unsigned int esr, |
| 48 | struct pt_regs *regs); |
| 49 | int sig; |
| 50 | int code; |
| 51 | const char *name; |
| 52 | }; |
| 53 | |
| 54 | static const struct fault_info fault_info[]; |
| 55 | |
| 56 | static inline const struct fault_info *esr_to_fault_info(unsigned int esr) |
| 57 | { |
| 58 | return fault_info + (esr & 63); |
| 59 | } |
Catalin Marinas | 3495386b | 2012-10-24 16:34:02 +0100 | [diff] [blame] | 60 | |
Sandeepa Prabhu | 2dd0e8d | 2016-07-08 12:35:48 -0400 | [diff] [blame] | 61 | #ifdef CONFIG_KPROBES |
| 62 | static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr) |
| 63 | { |
| 64 | int ret = 0; |
| 65 | |
| 66 | /* kprobe_running() needs smp_processor_id() */ |
| 67 | if (!user_mode(regs)) { |
| 68 | preempt_disable(); |
| 69 | if (kprobe_running() && kprobe_fault_handler(regs, esr)) |
| 70 | ret = 1; |
| 71 | preempt_enable(); |
| 72 | } |
| 73 | |
| 74 | return ret; |
| 75 | } |
| 76 | #else |
| 77 | static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr) |
| 78 | { |
| 79 | return 0; |
| 80 | } |
| 81 | #endif |
| 82 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 83 | /* |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 84 | * Dump out the page tables associated with 'addr' in the currently active mm. |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 85 | */ |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 86 | void show_pte(unsigned long addr) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 87 | { |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 88 | struct mm_struct *mm; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 89 | pgd_t *pgd; |
| 90 | |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 91 | if (addr < TASK_SIZE) { |
| 92 | /* TTBR0 */ |
| 93 | mm = current->active_mm; |
| 94 | if (mm == &init_mm) { |
| 95 | pr_alert("[%016lx] user address but active_mm is swapper\n", |
| 96 | addr); |
| 97 | return; |
| 98 | } |
| 99 | } else if (addr >= VA_START) { |
| 100 | /* TTBR1 */ |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 101 | mm = &init_mm; |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 102 | } else { |
| 103 | pr_alert("[%016lx] address between user and kernel address ranges\n", |
| 104 | addr); |
| 105 | return; |
| 106 | } |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 107 | |
Will Deacon | 1eb34b6 | 2017-05-15 15:23:58 +0100 | [diff] [blame] | 108 | pr_alert("%s pgtable: %luk pages, %u-bit VAs, pgd = %p\n", |
| 109 | mm == &init_mm ? "swapper" : "user", PAGE_SIZE / SZ_1K, |
| 110 | VA_BITS, mm->pgd); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 111 | pgd = pgd_offset(mm, addr); |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 112 | pr_alert("[%016lx] *pgd=%016llx", addr, pgd_val(*pgd)); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 113 | |
| 114 | do { |
| 115 | pud_t *pud; |
| 116 | pmd_t *pmd; |
| 117 | pte_t *pte; |
| 118 | |
Steve Capper | 4339e3f3 | 2013-04-19 15:49:31 +0100 | [diff] [blame] | 119 | if (pgd_none(*pgd) || pgd_bad(*pgd)) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 120 | break; |
| 121 | |
| 122 | pud = pud_offset(pgd, addr); |
Mark Rutland | 6ef4fb3 | 2017-01-03 14:27:26 +0000 | [diff] [blame] | 123 | pr_cont(", *pud=%016llx", pud_val(*pud)); |
Steve Capper | 4339e3f3 | 2013-04-19 15:49:31 +0100 | [diff] [blame] | 124 | if (pud_none(*pud) || pud_bad(*pud)) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 125 | break; |
| 126 | |
| 127 | pmd = pmd_offset(pud, addr); |
Mark Rutland | 6ef4fb3 | 2017-01-03 14:27:26 +0000 | [diff] [blame] | 128 | pr_cont(", *pmd=%016llx", pmd_val(*pmd)); |
Steve Capper | 4339e3f3 | 2013-04-19 15:49:31 +0100 | [diff] [blame] | 129 | if (pmd_none(*pmd) || pmd_bad(*pmd)) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 130 | break; |
| 131 | |
| 132 | pte = pte_offset_map(pmd, addr); |
Mark Rutland | 6ef4fb3 | 2017-01-03 14:27:26 +0000 | [diff] [blame] | 133 | pr_cont(", *pte=%016llx", pte_val(*pte)); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 134 | pte_unmap(pte); |
| 135 | } while(0); |
| 136 | |
Mark Rutland | 6ef4fb3 | 2017-01-03 14:27:26 +0000 | [diff] [blame] | 137 | pr_cont("\n"); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Catalin Marinas | 66dbd6e | 2016-04-13 16:01:22 +0100 | [diff] [blame] | 140 | #ifdef CONFIG_ARM64_HW_AFDBM |
| 141 | /* |
| 142 | * This function sets the access flags (dirty, accessed), as well as write |
| 143 | * permission, and only to a more permissive setting. |
| 144 | * |
| 145 | * It needs to cope with hardware update of the accessed/dirty state by other |
| 146 | * agents in the system and can safely skip the __sync_icache_dcache() call as, |
| 147 | * like set_pte_at(), the PTE is never changed from no-exec to exec here. |
| 148 | * |
| 149 | * Returns whether or not the PTE actually changed. |
| 150 | */ |
| 151 | int ptep_set_access_flags(struct vm_area_struct *vma, |
| 152 | unsigned long address, pte_t *ptep, |
| 153 | pte_t entry, int dirty) |
| 154 | { |
| 155 | pteval_t old_pteval; |
| 156 | unsigned int tmp; |
| 157 | |
| 158 | if (pte_same(*ptep, entry)) |
| 159 | return 0; |
| 160 | |
| 161 | /* only preserve the access flags and write permission */ |
| 162 | pte_val(entry) &= PTE_AF | PTE_WRITE | PTE_DIRTY; |
| 163 | |
| 164 | /* |
| 165 | * PTE_RDONLY is cleared by default in the asm below, so set it in |
| 166 | * back if necessary (read-only or clean PTE). |
| 167 | */ |
Will Deacon | 0106d45 | 2016-06-07 17:55:15 +0100 | [diff] [blame] | 168 | if (!pte_write(entry) || !pte_sw_dirty(entry)) |
Catalin Marinas | 66dbd6e | 2016-04-13 16:01:22 +0100 | [diff] [blame] | 169 | pte_val(entry) |= PTE_RDONLY; |
| 170 | |
| 171 | /* |
| 172 | * Setting the flags must be done atomically to avoid racing with the |
| 173 | * hardware update of the access/dirty state. |
| 174 | */ |
| 175 | asm volatile("// ptep_set_access_flags\n" |
| 176 | " prfm pstl1strm, %2\n" |
| 177 | "1: ldxr %0, %2\n" |
| 178 | " and %0, %0, %3 // clear PTE_RDONLY\n" |
| 179 | " orr %0, %0, %4 // set flags\n" |
| 180 | " stxr %w1, %0, %2\n" |
| 181 | " cbnz %w1, 1b\n" |
| 182 | : "=&r" (old_pteval), "=&r" (tmp), "+Q" (pte_val(*ptep)) |
| 183 | : "L" (~PTE_RDONLY), "r" (pte_val(entry))); |
| 184 | |
| 185 | flush_tlb_fix_spurious_fault(vma, address); |
| 186 | return 1; |
| 187 | } |
| 188 | #endif |
| 189 | |
Laura Abbott | 9adeb8e | 2016-08-09 18:25:26 -0700 | [diff] [blame] | 190 | static bool is_el1_instruction_abort(unsigned int esr) |
| 191 | { |
| 192 | return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_CUR; |
| 193 | } |
| 194 | |
Stephen Boyd | b824b93 | 2017-04-05 12:18:31 -0700 | [diff] [blame] | 195 | static inline bool is_permission_fault(unsigned int esr, struct pt_regs *regs, |
| 196 | unsigned long addr) |
| 197 | { |
| 198 | unsigned int ec = ESR_ELx_EC(esr); |
| 199 | unsigned int fsc_type = esr & ESR_ELx_FSC_TYPE; |
| 200 | |
| 201 | if (ec != ESR_ELx_EC_DABT_CUR && ec != ESR_ELx_EC_IABT_CUR) |
| 202 | return false; |
| 203 | |
| 204 | if (fsc_type == ESR_ELx_FSC_PERM) |
| 205 | return true; |
| 206 | |
| 207 | if (addr < USER_DS && system_uses_ttbr0_pan()) |
| 208 | return fsc_type == ESR_ELx_FSC_FAULT && |
| 209 | (regs->pstate & PSR_PAN_BIT); |
| 210 | |
| 211 | return false; |
| 212 | } |
| 213 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 214 | /* |
| 215 | * The kernel tried to access some page that wasn't present. |
| 216 | */ |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 217 | static void __do_kernel_fault(unsigned long addr, unsigned int esr, |
| 218 | struct pt_regs *regs) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 219 | { |
Stephen Boyd | b824b93 | 2017-04-05 12:18:31 -0700 | [diff] [blame] | 220 | const char *msg; |
| 221 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 222 | /* |
| 223 | * Are we prepared to handle this kernel fault? |
Laura Abbott | 9adeb8e | 2016-08-09 18:25:26 -0700 | [diff] [blame] | 224 | * We are almost certainly not prepared to handle instruction faults. |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 225 | */ |
Laura Abbott | 9adeb8e | 2016-08-09 18:25:26 -0700 | [diff] [blame] | 226 | if (!is_el1_instruction_abort(esr) && fixup_exception(regs)) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 227 | return; |
| 228 | |
| 229 | /* |
| 230 | * No handler, we'll have to terminate things with extreme prejudice. |
| 231 | */ |
| 232 | bust_spinlocks(1); |
Stephen Boyd | b824b93 | 2017-04-05 12:18:31 -0700 | [diff] [blame] | 233 | |
| 234 | if (is_permission_fault(esr, regs, addr)) { |
| 235 | if (esr & ESR_ELx_WNR) |
| 236 | msg = "write to read-only memory"; |
| 237 | else |
| 238 | msg = "read from unreadable memory"; |
| 239 | } else if (addr < PAGE_SIZE) { |
| 240 | msg = "NULL pointer dereference"; |
| 241 | } else { |
| 242 | msg = "paging request"; |
| 243 | } |
| 244 | |
| 245 | pr_alert("Unable to handle kernel %s at virtual address %08lx\n", msg, |
| 246 | addr); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 247 | |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 248 | show_pte(addr); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 249 | die("Oops", regs, esr); |
| 250 | bust_spinlocks(0); |
| 251 | do_exit(SIGKILL); |
| 252 | } |
| 253 | |
| 254 | /* |
| 255 | * Something tried to access memory that isn't in our memory map. User mode |
| 256 | * accesses just cause a SIGSEGV |
| 257 | */ |
| 258 | static void __do_user_fault(struct task_struct *tsk, unsigned long addr, |
| 259 | unsigned int esr, unsigned int sig, int code, |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 260 | struct pt_regs *regs, int fault) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 261 | { |
| 262 | struct siginfo si; |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 263 | const struct fault_info *inf; |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 264 | unsigned int lsb = 0; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 265 | |
Suzuki K. Poulose | f871d26 | 2015-07-03 15:08:08 +0100 | [diff] [blame] | 266 | if (unhandled_signal(tsk, sig) && show_unhandled_signals_ratelimited()) { |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 267 | inf = esr_to_fault_info(esr); |
Kristina Martsenko | 83016b2 | 2017-06-09 16:35:54 +0100 | [diff] [blame] | 268 | pr_info("%s[%d]: unhandled %s (%d) at 0x%08lx, esr 0x%03x", |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 269 | tsk->comm, task_pid_nr(tsk), inf->name, sig, |
Catalin Marinas | 3495386b | 2012-10-24 16:34:02 +0100 | [diff] [blame] | 270 | addr, esr); |
Kristina Martsenko | 83016b2 | 2017-06-09 16:35:54 +0100 | [diff] [blame] | 271 | print_vma_addr(KERN_CONT ", in ", regs->pc); |
| 272 | pr_cont("\n"); |
Kefeng Wang | c07ab95 | 2017-05-09 09:53:36 +0800 | [diff] [blame] | 273 | __show_regs(regs); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | tsk->thread.fault_address = addr; |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 277 | tsk->thread.fault_code = esr; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 278 | si.si_signo = sig; |
| 279 | si.si_errno = 0; |
| 280 | si.si_code = code; |
| 281 | si.si_addr = (void __user *)addr; |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 282 | /* |
| 283 | * Either small page or large page may be poisoned. |
| 284 | * In other words, VM_FAULT_HWPOISON_LARGE and |
| 285 | * VM_FAULT_HWPOISON are mutually exclusive. |
| 286 | */ |
| 287 | if (fault & VM_FAULT_HWPOISON_LARGE) |
| 288 | lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault)); |
| 289 | else if (fault & VM_FAULT_HWPOISON) |
| 290 | lsb = PAGE_SHIFT; |
| 291 | si.si_addr_lsb = lsb; |
| 292 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 293 | force_sig_info(sig, &si, tsk); |
| 294 | } |
| 295 | |
Catalin Marinas | 59f67e1 | 2013-09-16 15:18:28 +0100 | [diff] [blame] | 296 | static void do_bad_area(unsigned long addr, unsigned int esr, struct pt_regs *regs) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 297 | { |
| 298 | struct task_struct *tsk = current; |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 299 | const struct fault_info *inf; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 300 | |
| 301 | /* |
| 302 | * If we are in kernel mode at this point, we have no context to |
| 303 | * handle this fault with. |
| 304 | */ |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 305 | if (user_mode(regs)) { |
| 306 | inf = esr_to_fault_info(esr); |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 307 | __do_user_fault(tsk, addr, esr, inf->sig, inf->code, regs, 0); |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 308 | } else |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 309 | __do_kernel_fault(addr, esr, regs); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | #define VM_FAULT_BADMAP 0x010000 |
| 313 | #define VM_FAULT_BADACCESS 0x020000 |
| 314 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 315 | static int __do_page_fault(struct mm_struct *mm, unsigned long addr, |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 316 | unsigned int mm_flags, unsigned long vm_flags, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 317 | struct task_struct *tsk) |
| 318 | { |
| 319 | struct vm_area_struct *vma; |
| 320 | int fault; |
| 321 | |
| 322 | vma = find_vma(mm, addr); |
| 323 | fault = VM_FAULT_BADMAP; |
| 324 | if (unlikely(!vma)) |
| 325 | goto out; |
| 326 | if (unlikely(vma->vm_start > addr)) |
| 327 | goto check_stack; |
| 328 | |
| 329 | /* |
| 330 | * Ok, we have a good vm_area for this memory access, so we can handle |
| 331 | * it. |
| 332 | */ |
| 333 | good_area: |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 334 | /* |
| 335 | * Check that the permissions on the VMA allow for the fault which |
Catalin Marinas | cab15ce | 2016-08-11 18:44:50 +0100 | [diff] [blame] | 336 | * occurred. |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 337 | */ |
| 338 | if (!(vma->vm_flags & vm_flags)) { |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 339 | fault = VM_FAULT_BADACCESS; |
| 340 | goto out; |
| 341 | } |
| 342 | |
Kirill A. Shutemov | dcddffd | 2016-07-26 15:25:18 -0700 | [diff] [blame] | 343 | return handle_mm_fault(vma, addr & PAGE_MASK, mm_flags); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 344 | |
| 345 | check_stack: |
| 346 | if (vma->vm_flags & VM_GROWSDOWN && !expand_stack(vma, addr)) |
| 347 | goto good_area; |
| 348 | out: |
| 349 | return fault; |
| 350 | } |
| 351 | |
Mark Rutland | 541ec87 | 2016-05-31 12:33:03 +0100 | [diff] [blame] | 352 | static bool is_el0_instruction_abort(unsigned int esr) |
| 353 | { |
| 354 | return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_LOW; |
| 355 | } |
| 356 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 357 | static int __kprobes do_page_fault(unsigned long addr, unsigned int esr, |
| 358 | struct pt_regs *regs) |
| 359 | { |
| 360 | struct task_struct *tsk; |
| 361 | struct mm_struct *mm; |
| 362 | int fault, sig, code; |
Catalin Marinas | cab15ce | 2016-08-11 18:44:50 +0100 | [diff] [blame] | 363 | unsigned long vm_flags = VM_READ | VM_WRITE; |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 364 | unsigned int mm_flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE; |
| 365 | |
Sandeepa Prabhu | 2dd0e8d | 2016-07-08 12:35:48 -0400 | [diff] [blame] | 366 | if (notify_page_fault(regs, esr)) |
| 367 | return 0; |
| 368 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 369 | tsk = current; |
| 370 | mm = tsk->mm; |
| 371 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 372 | /* |
| 373 | * If we're in an interrupt or have no user context, we must not take |
| 374 | * the fault. |
| 375 | */ |
David Hildenbrand | 70ffdb9 | 2015-05-11 17:52:11 +0200 | [diff] [blame] | 376 | if (faulthandler_disabled() || !mm) |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 377 | goto no_context; |
| 378 | |
Johannes Weiner | 759496b | 2013-09-12 15:13:39 -0700 | [diff] [blame] | 379 | if (user_mode(regs)) |
| 380 | mm_flags |= FAULT_FLAG_USER; |
| 381 | |
Mark Rutland | 541ec87 | 2016-05-31 12:33:03 +0100 | [diff] [blame] | 382 | if (is_el0_instruction_abort(esr)) { |
Johannes Weiner | 759496b | 2013-09-12 15:13:39 -0700 | [diff] [blame] | 383 | vm_flags = VM_EXEC; |
Mark Rutland | aed40e0 | 2014-11-24 12:31:40 +0000 | [diff] [blame] | 384 | } else if ((esr & ESR_ELx_WNR) && !(esr & ESR_ELx_CM)) { |
Johannes Weiner | 759496b | 2013-09-12 15:13:39 -0700 | [diff] [blame] | 385 | vm_flags = VM_WRITE; |
| 386 | mm_flags |= FAULT_FLAG_WRITE; |
| 387 | } |
| 388 | |
Stephen Boyd | b824b93 | 2017-04-05 12:18:31 -0700 | [diff] [blame] | 389 | if (addr < USER_DS && is_permission_fault(esr, regs, addr)) { |
James Morse | e19a6ee | 2016-06-20 18:28:01 +0100 | [diff] [blame] | 390 | /* regs->orig_addr_limit may be 0 if we entered from EL0 */ |
| 391 | if (regs->orig_addr_limit == KERNEL_DS) |
Catalin Marinas | 70c8abc | 2016-02-19 14:28:58 +0000 | [diff] [blame] | 392 | die("Accessing user space memory with fs=KERNEL_DS", regs, esr); |
James Morse | 7054419 | 2016-02-05 14:58:50 +0000 | [diff] [blame] | 393 | |
Laura Abbott | 9adeb8e | 2016-08-09 18:25:26 -0700 | [diff] [blame] | 394 | if (is_el1_instruction_abort(esr)) |
| 395 | die("Attempting to execute userspace memory", regs, esr); |
| 396 | |
James Morse | 57f4959 | 2016-02-05 14:58:48 +0000 | [diff] [blame] | 397 | if (!search_exception_tables(regs->pc)) |
Catalin Marinas | 70c8abc | 2016-02-19 14:28:58 +0000 | [diff] [blame] | 398 | die("Accessing user space memory outside uaccess.h routines", regs, esr); |
James Morse | 57f4959 | 2016-02-05 14:58:48 +0000 | [diff] [blame] | 399 | } |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 400 | |
| 401 | /* |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 402 | * As per x86, we may deadlock here. However, since the kernel only |
| 403 | * validly references user space from well defined areas of the code, |
| 404 | * we can bug out early if this is from code which shouldn't. |
| 405 | */ |
| 406 | if (!down_read_trylock(&mm->mmap_sem)) { |
| 407 | if (!user_mode(regs) && !search_exception_tables(regs->pc)) |
| 408 | goto no_context; |
| 409 | retry: |
| 410 | down_read(&mm->mmap_sem); |
| 411 | } else { |
| 412 | /* |
| 413 | * The above down_read_trylock() might have succeeded in which |
| 414 | * case, we'll have missed the might_sleep() from down_read(). |
| 415 | */ |
| 416 | might_sleep(); |
| 417 | #ifdef CONFIG_DEBUG_VM |
| 418 | if (!user_mode(regs) && !search_exception_tables(regs->pc)) |
| 419 | goto no_context; |
| 420 | #endif |
| 421 | } |
| 422 | |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 423 | fault = __do_page_fault(mm, addr, mm_flags, vm_flags, tsk); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 424 | |
| 425 | /* |
| 426 | * If we need to retry but a fatal signal is pending, handle the |
| 427 | * signal first. We do not need to release the mmap_sem because it |
| 428 | * would already be released in __lock_page_or_retry in mm/filemap.c. |
| 429 | */ |
| 430 | if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) |
| 431 | return 0; |
| 432 | |
| 433 | /* |
| 434 | * Major/minor page fault accounting is only done on the initial |
| 435 | * attempt. If we go through a retry, it is extremely likely that the |
| 436 | * page will be found in page cache at that point. |
| 437 | */ |
| 438 | |
| 439 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr); |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 440 | if (mm_flags & FAULT_FLAG_ALLOW_RETRY) { |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 441 | if (fault & VM_FAULT_MAJOR) { |
| 442 | tsk->maj_flt++; |
| 443 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs, |
| 444 | addr); |
| 445 | } else { |
| 446 | tsk->min_flt++; |
| 447 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, |
| 448 | addr); |
| 449 | } |
| 450 | if (fault & VM_FAULT_RETRY) { |
| 451 | /* |
| 452 | * Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk of |
| 453 | * starvation. |
| 454 | */ |
Will Deacon | db6f410 | 2013-07-19 15:37:12 +0100 | [diff] [blame] | 455 | mm_flags &= ~FAULT_FLAG_ALLOW_RETRY; |
Mark Salyzyn | 569ba74 | 2015-09-21 21:39:50 +0100 | [diff] [blame] | 456 | mm_flags |= FAULT_FLAG_TRIED; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 457 | goto retry; |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | up_read(&mm->mmap_sem); |
| 462 | |
| 463 | /* |
Jan Kara | 0e8fb93 | 2016-03-17 14:19:55 -0700 | [diff] [blame] | 464 | * Handle the "normal" case first - VM_FAULT_MAJOR |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 465 | */ |
| 466 | if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP | |
| 467 | VM_FAULT_BADACCESS)))) |
| 468 | return 0; |
| 469 | |
Johannes Weiner | 8713410 | 2013-09-12 15:13:38 -0700 | [diff] [blame] | 470 | /* |
| 471 | * If we are in kernel mode at this point, we have no context to |
| 472 | * handle this fault with. |
| 473 | */ |
| 474 | if (!user_mode(regs)) |
| 475 | goto no_context; |
| 476 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 477 | if (fault & VM_FAULT_OOM) { |
| 478 | /* |
| 479 | * We ran out of memory, call the OOM killer, and return to |
| 480 | * userspace (which will retry the fault, or kill us if we got |
| 481 | * oom-killed). |
| 482 | */ |
| 483 | pagefault_out_of_memory(); |
| 484 | return 0; |
| 485 | } |
| 486 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 487 | if (fault & VM_FAULT_SIGBUS) { |
| 488 | /* |
| 489 | * We had some memory, but were unable to successfully fix up |
| 490 | * this page fault. |
| 491 | */ |
| 492 | sig = SIGBUS; |
| 493 | code = BUS_ADRERR; |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 494 | } else if (fault & (VM_FAULT_HWPOISON | VM_FAULT_HWPOISON_LARGE)) { |
| 495 | sig = SIGBUS; |
| 496 | code = BUS_MCEERR_AR; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 497 | } else { |
| 498 | /* |
| 499 | * Something tried to access memory that isn't in our memory |
| 500 | * map. |
| 501 | */ |
| 502 | sig = SIGSEGV; |
| 503 | code = fault == VM_FAULT_BADACCESS ? |
| 504 | SEGV_ACCERR : SEGV_MAPERR; |
| 505 | } |
| 506 | |
Jonathan (Zhixiong) Zhang | e7c600f | 2017-06-08 18:25:27 +0100 | [diff] [blame^] | 507 | __do_user_fault(tsk, addr, esr, sig, code, regs, fault); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 508 | return 0; |
| 509 | |
| 510 | no_context: |
Kristina Martsenko | 67ce16e | 2017-06-09 16:35:52 +0100 | [diff] [blame] | 511 | __do_kernel_fault(addr, esr, regs); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 512 | return 0; |
| 513 | } |
| 514 | |
| 515 | /* |
| 516 | * First Level Translation Fault Handler |
| 517 | * |
| 518 | * We enter here because the first level page table doesn't contain a valid |
| 519 | * entry for the address. |
| 520 | * |
| 521 | * If the address is in kernel space (>= TASK_SIZE), then we are probably |
| 522 | * faulting in the vmalloc() area. |
| 523 | * |
| 524 | * If the init_task's first level page tables contains the relevant entry, we |
| 525 | * copy the it to this task. If not, we send the process a signal, fixup the |
| 526 | * exception, or oops the kernel. |
| 527 | * |
| 528 | * NOTE! We MUST NOT take any locks for this case. We may be in an interrupt |
| 529 | * or a critical region, and should only copy the information from the master |
| 530 | * page table, nothing more. |
| 531 | */ |
| 532 | static int __kprobes do_translation_fault(unsigned long addr, |
| 533 | unsigned int esr, |
| 534 | struct pt_regs *regs) |
| 535 | { |
| 536 | if (addr < TASK_SIZE) |
| 537 | return do_page_fault(addr, esr, regs); |
| 538 | |
| 539 | do_bad_area(addr, esr, regs); |
| 540 | return 0; |
| 541 | } |
| 542 | |
EunTaik Lee | 52d7523 | 2016-02-16 04:44:35 +0000 | [diff] [blame] | 543 | static int do_alignment_fault(unsigned long addr, unsigned int esr, |
| 544 | struct pt_regs *regs) |
| 545 | { |
| 546 | do_bad_area(addr, esr, regs); |
| 547 | return 0; |
| 548 | } |
| 549 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 550 | /* |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 551 | * This abort handler always returns "fault". |
| 552 | */ |
| 553 | static int do_bad(unsigned long addr, unsigned int esr, struct pt_regs *regs) |
| 554 | { |
| 555 | return 1; |
| 556 | } |
| 557 | |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 558 | static const struct fault_info fault_info[] = { |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 559 | { do_bad, SIGBUS, 0, "ttbr address size fault" }, |
| 560 | { do_bad, SIGBUS, 0, "level 1 address size fault" }, |
| 561 | { do_bad, SIGBUS, 0, "level 2 address size fault" }, |
| 562 | { do_bad, SIGBUS, 0, "level 3 address size fault" }, |
Will Deacon | 7f73f7a | 2014-11-21 14:22:22 +0000 | [diff] [blame] | 563 | { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 564 | { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" }, |
| 565 | { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" }, |
| 566 | { do_page_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 567 | { do_bad, SIGBUS, 0, "unknown 8" }, |
Steve Capper | 084bd29 | 2013-04-10 13:48:00 +0100 | [diff] [blame] | 568 | { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" }, |
| 569 | { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 570 | { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 access flag fault" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 571 | { do_bad, SIGBUS, 0, "unknown 12" }, |
Steve Capper | 084bd29 | 2013-04-10 13:48:00 +0100 | [diff] [blame] | 572 | { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 permission fault" }, |
| 573 | { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 permission fault" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 574 | { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 permission fault" }, |
| 575 | { do_bad, SIGBUS, 0, "synchronous external abort" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 576 | { do_bad, SIGBUS, 0, "unknown 17" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 577 | { do_bad, SIGBUS, 0, "unknown 18" }, |
| 578 | { do_bad, SIGBUS, 0, "unknown 19" }, |
Catalin Marinas | a8ada14 | 2016-10-28 18:07:37 +0100 | [diff] [blame] | 579 | { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" }, |
| 580 | { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" }, |
| 581 | { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" }, |
| 582 | { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 583 | { do_bad, SIGBUS, 0, "synchronous parity error" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 584 | { do_bad, SIGBUS, 0, "unknown 25" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 585 | { do_bad, SIGBUS, 0, "unknown 26" }, |
| 586 | { do_bad, SIGBUS, 0, "unknown 27" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 587 | { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" }, |
| 588 | { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" }, |
| 589 | { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" }, |
| 590 | { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 591 | { do_bad, SIGBUS, 0, "unknown 32" }, |
EunTaik Lee | 52d7523 | 2016-02-16 04:44:35 +0000 | [diff] [blame] | 592 | { do_alignment_fault, SIGBUS, BUS_ADRALN, "alignment fault" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 593 | { do_bad, SIGBUS, 0, "unknown 34" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 594 | { do_bad, SIGBUS, 0, "unknown 35" }, |
| 595 | { do_bad, SIGBUS, 0, "unknown 36" }, |
| 596 | { do_bad, SIGBUS, 0, "unknown 37" }, |
| 597 | { do_bad, SIGBUS, 0, "unknown 38" }, |
| 598 | { do_bad, SIGBUS, 0, "unknown 39" }, |
| 599 | { do_bad, SIGBUS, 0, "unknown 40" }, |
| 600 | { do_bad, SIGBUS, 0, "unknown 41" }, |
| 601 | { do_bad, SIGBUS, 0, "unknown 42" }, |
| 602 | { do_bad, SIGBUS, 0, "unknown 43" }, |
| 603 | { do_bad, SIGBUS, 0, "unknown 44" }, |
| 604 | { do_bad, SIGBUS, 0, "unknown 45" }, |
| 605 | { do_bad, SIGBUS, 0, "unknown 46" }, |
| 606 | { do_bad, SIGBUS, 0, "unknown 47" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 607 | { do_bad, SIGBUS, 0, "TLB conflict abort" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 608 | { do_bad, SIGBUS, 0, "unknown 49" }, |
| 609 | { do_bad, SIGBUS, 0, "unknown 50" }, |
| 610 | { do_bad, SIGBUS, 0, "unknown 51" }, |
| 611 | { do_bad, SIGBUS, 0, "implementation fault (lockdown abort)" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 612 | { do_bad, SIGBUS, 0, "implementation fault (unsupported exclusive)" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 613 | { do_bad, SIGBUS, 0, "unknown 54" }, |
| 614 | { do_bad, SIGBUS, 0, "unknown 55" }, |
| 615 | { do_bad, SIGBUS, 0, "unknown 56" }, |
| 616 | { do_bad, SIGBUS, 0, "unknown 57" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 617 | { do_bad, SIGBUS, 0, "unknown 58" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 618 | { do_bad, SIGBUS, 0, "unknown 59" }, |
| 619 | { do_bad, SIGBUS, 0, "unknown 60" }, |
Mark Rutland | c03784ee8 | 2015-11-23 15:09:36 +0000 | [diff] [blame] | 620 | { do_bad, SIGBUS, 0, "section domain fault" }, |
| 621 | { do_bad, SIGBUS, 0, "page domain fault" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 622 | { do_bad, SIGBUS, 0, "unknown 63" }, |
| 623 | }; |
| 624 | |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 625 | /* |
| 626 | * Dispatch a data abort to the relevant handler. |
| 627 | */ |
| 628 | asmlinkage void __exception do_mem_abort(unsigned long addr, unsigned int esr, |
| 629 | struct pt_regs *regs) |
| 630 | { |
Victor Kamensky | 09a6adf | 2017-04-03 22:51:01 -0700 | [diff] [blame] | 631 | const struct fault_info *inf = esr_to_fault_info(esr); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 632 | struct siginfo info; |
| 633 | |
| 634 | if (!inf->fn(addr, esr, regs)) |
| 635 | return; |
| 636 | |
| 637 | pr_alert("Unhandled fault: %s (0x%08x) at 0x%016lx\n", |
| 638 | inf->name, esr, addr); |
| 639 | |
| 640 | info.si_signo = inf->sig; |
| 641 | info.si_errno = 0; |
| 642 | info.si_code = inf->code; |
| 643 | info.si_addr = (void __user *)addr; |
| 644 | arm64_notify_die("", regs, &info, esr); |
| 645 | } |
| 646 | |
| 647 | /* |
| 648 | * Handle stack alignment exceptions. |
| 649 | */ |
| 650 | asmlinkage void __exception do_sp_pc_abort(unsigned long addr, |
| 651 | unsigned int esr, |
| 652 | struct pt_regs *regs) |
| 653 | { |
| 654 | struct siginfo info; |
Vladimir Murzin | 9e793ab | 2015-06-19 15:28:16 +0100 | [diff] [blame] | 655 | struct task_struct *tsk = current; |
| 656 | |
| 657 | if (show_unhandled_signals && unhandled_signal(tsk, SIGBUS)) |
| 658 | pr_info_ratelimited("%s[%d]: %s exception: pc=%p sp=%p\n", |
| 659 | tsk->comm, task_pid_nr(tsk), |
| 660 | esr_get_class_string(esr), (void *)regs->pc, |
| 661 | (void *)regs->sp); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 662 | |
| 663 | info.si_signo = SIGBUS; |
| 664 | info.si_errno = 0; |
| 665 | info.si_code = BUS_ADRALN; |
| 666 | info.si_addr = (void __user *)addr; |
Vladimir Murzin | 9e793ab | 2015-06-19 15:28:16 +0100 | [diff] [blame] | 667 | arm64_notify_die("Oops - SP/PC alignment exception", regs, &info, esr); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 668 | } |
| 669 | |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 670 | int __init early_brk64(unsigned long addr, unsigned int esr, |
| 671 | struct pt_regs *regs); |
| 672 | |
| 673 | /* |
| 674 | * __refdata because early_brk64 is __init, but the reference to it is |
| 675 | * clobbered at arch_initcall time. |
| 676 | * See traps.c and debug-monitors.c:debug_traps_init(). |
| 677 | */ |
| 678 | static struct fault_info __refdata debug_fault_info[] = { |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 679 | { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware breakpoint" }, |
| 680 | { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware single-step" }, |
| 681 | { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware watchpoint" }, |
| 682 | { do_bad, SIGBUS, 0, "unknown 3" }, |
| 683 | { do_bad, SIGTRAP, TRAP_BRKPT, "aarch32 BKPT" }, |
| 684 | { do_bad, SIGTRAP, 0, "aarch32 vector catch" }, |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 685 | { early_brk64, SIGTRAP, TRAP_BRKPT, "aarch64 BRK" }, |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 686 | { do_bad, SIGBUS, 0, "unknown 7" }, |
| 687 | }; |
| 688 | |
| 689 | void __init hook_debug_fault_code(int nr, |
| 690 | int (*fn)(unsigned long, unsigned int, struct pt_regs *), |
| 691 | int sig, int code, const char *name) |
| 692 | { |
| 693 | BUG_ON(nr < 0 || nr >= ARRAY_SIZE(debug_fault_info)); |
| 694 | |
| 695 | debug_fault_info[nr].fn = fn; |
| 696 | debug_fault_info[nr].sig = sig; |
| 697 | debug_fault_info[nr].code = code; |
| 698 | debug_fault_info[nr].name = name; |
| 699 | } |
| 700 | |
| 701 | asmlinkage int __exception do_debug_exception(unsigned long addr, |
| 702 | unsigned int esr, |
| 703 | struct pt_regs *regs) |
| 704 | { |
| 705 | const struct fault_info *inf = debug_fault_info + DBG_ESR_EVT(esr); |
| 706 | struct siginfo info; |
James Morse | 6afedcd | 2016-04-13 13:40:00 +0100 | [diff] [blame] | 707 | int rv; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 708 | |
James Morse | 6afedcd | 2016-04-13 13:40:00 +0100 | [diff] [blame] | 709 | /* |
| 710 | * Tell lockdep we disabled irqs in entry.S. Do nothing if they were |
| 711 | * already disabled to preserve the last enabled/disabled addresses. |
| 712 | */ |
| 713 | if (interrupts_enabled(regs)) |
| 714 | trace_hardirqs_off(); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 715 | |
James Morse | 6afedcd | 2016-04-13 13:40:00 +0100 | [diff] [blame] | 716 | if (!inf->fn(addr, esr, regs)) { |
| 717 | rv = 1; |
| 718 | } else { |
| 719 | pr_alert("Unhandled debug exception: %s (0x%08x) at 0x%016lx\n", |
| 720 | inf->name, esr, addr); |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 721 | |
James Morse | 6afedcd | 2016-04-13 13:40:00 +0100 | [diff] [blame] | 722 | info.si_signo = inf->sig; |
| 723 | info.si_errno = 0; |
| 724 | info.si_code = inf->code; |
| 725 | info.si_addr = (void __user *)addr; |
| 726 | arm64_notify_die("", regs, &info, 0); |
| 727 | rv = 0; |
| 728 | } |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 729 | |
James Morse | 6afedcd | 2016-04-13 13:40:00 +0100 | [diff] [blame] | 730 | if (interrupts_enabled(regs)) |
| 731 | trace_hardirqs_on(); |
| 732 | |
| 733 | return rv; |
Catalin Marinas | 1d18c47 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 734 | } |
Sandeepa Prabhu | 2dd0e8d | 2016-07-08 12:35:48 -0400 | [diff] [blame] | 735 | NOKPROBE_SYMBOL(do_debug_exception); |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 736 | |
| 737 | #ifdef CONFIG_ARM64_PAN |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 738 | int cpu_enable_pan(void *__unused) |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 739 | { |
James Morse | 7209c86 | 2016-10-18 11:27:47 +0100 | [diff] [blame] | 740 | /* |
| 741 | * We modify PSTATE. This won't work from irq context as the PSTATE |
| 742 | * is discarded once we return from the exception. |
| 743 | */ |
| 744 | WARN_ON_ONCE(in_interrupt()); |
| 745 | |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 746 | config_sctlr_el1(SCTLR_EL1_SPAN, 0); |
James Morse | 7209c86 | 2016-10-18 11:27:47 +0100 | [diff] [blame] | 747 | asm(SET_PSTATE_PAN(1)); |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 748 | return 0; |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 749 | } |
| 750 | #endif /* CONFIG_ARM64_PAN */ |