blob: 392386a693fed4f84bf570ab01a5c4870ab7f86d [file] [log] [blame]
Catalin Marinas1d18c472012-03-05 11:49:27 +00001/*
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
James Morsed44f1b82019-01-29 18:48:50 +000021#include <linux/acpi.h>
Paul Gortmaker0edfa832016-09-19 17:38:55 -040022#include <linux/extable.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000023#include <linux/signal.h>
24#include <linux/mm.h>
25#include <linux/hardirq.h>
26#include <linux/init.h>
27#include <linux/kprobes.h>
28#include <linux/uaccess.h>
29#include <linux/page-flags.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010030#include <linux/sched/signal.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010031#include <linux/sched/debug.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000032#include <linux/highmem.h>
33#include <linux/perf_event.h>
James Morse7209c862016-10-18 11:27:47 +010034#include <linux/preempt.h>
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +010035#include <linux/hugetlb.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000036
James Morsed44f1b82019-01-29 18:48:50 +000037#include <asm/acpi.h>
James Morse7209c862016-10-18 11:27:47 +010038#include <asm/bug.h>
Catalin Marinas3bbf7152017-06-26 14:27:36 +010039#include <asm/cmpxchg.h>
James Morse338d4f42015-07-22 19:05:54 +010040#include <asm/cpufeature.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000041#include <asm/exception.h>
Julien Thierry9a0c0322018-08-28 16:51:15 +010042#include <asm/daifflags.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000043#include <asm/debug-monitors.h>
Catalin Marinas91413002014-04-06 23:04:12 +010044#include <asm/esr.h>
Andrey Konovalov356607f2018-12-28 00:30:27 -080045#include <asm/kasan.h>
James Morse338d4f42015-07-22 19:05:54 +010046#include <asm/sysreg.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000047#include <asm/system_misc.h>
48#include <asm/pgtable.h>
49#include <asm/tlbflush.h>
Will Deacon92ff0672018-02-20 14:53:22 +000050#include <asm/traps.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000051
Victor Kamensky09a6adf2017-04-03 22:51:01 -070052struct fault_info {
53 int (*fn)(unsigned long addr, unsigned int esr,
54 struct pt_regs *regs);
55 int sig;
56 int code;
57 const char *name;
58};
59
60static const struct fault_info fault_info[];
Anshuman Khandual359048f2018-09-22 21:09:54 +053061static struct fault_info debug_fault_info[];
Victor Kamensky09a6adf2017-04-03 22:51:01 -070062
63static inline const struct fault_info *esr_to_fault_info(unsigned int esr)
64{
Anshuman Khandual00bbd5d2018-09-22 21:09:52 +053065 return fault_info + (esr & ESR_ELx_FSC);
Victor Kamensky09a6adf2017-04-03 22:51:01 -070066}
Catalin Marinas3495386b2012-10-24 16:34:02 +010067
Anshuman Khandual359048f2018-09-22 21:09:54 +053068static inline const struct fault_info *esr_to_debug_fault_info(unsigned int esr)
69{
70 return debug_fault_info + DBG_ESR_EVT(esr);
71}
72
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -040073#ifdef CONFIG_KPROBES
74static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr)
75{
76 int ret = 0;
77
78 /* kprobe_running() needs smp_processor_id() */
79 if (!user_mode(regs)) {
80 preempt_disable();
81 if (kprobe_running() && kprobe_fault_handler(regs, esr))
82 ret = 1;
83 preempt_enable();
84 }
85
86 return ret;
87}
88#else
89static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr)
90{
91 return 0;
92}
93#endif
94
Julien Thierry1f9b8932017-08-04 09:31:42 +010095static void data_abort_decode(unsigned int esr)
96{
97 pr_alert("Data abort info:\n");
98
99 if (esr & ESR_ELx_ISV) {
100 pr_alert(" Access size = %u byte(s)\n",
101 1U << ((esr & ESR_ELx_SAS) >> ESR_ELx_SAS_SHIFT));
102 pr_alert(" SSE = %lu, SRT = %lu\n",
103 (esr & ESR_ELx_SSE) >> ESR_ELx_SSE_SHIFT,
104 (esr & ESR_ELx_SRT_MASK) >> ESR_ELx_SRT_SHIFT);
105 pr_alert(" SF = %lu, AR = %lu\n",
106 (esr & ESR_ELx_SF) >> ESR_ELx_SF_SHIFT,
107 (esr & ESR_ELx_AR) >> ESR_ELx_AR_SHIFT);
108 } else {
Mark Rutland0a6de8b2017-10-02 12:42:00 +0100109 pr_alert(" ISV = 0, ISS = 0x%08lx\n", esr & ESR_ELx_ISS_MASK);
Julien Thierry1f9b8932017-08-04 09:31:42 +0100110 }
111
112 pr_alert(" CM = %lu, WnR = %lu\n",
113 (esr & ESR_ELx_CM) >> ESR_ELx_CM_SHIFT,
114 (esr & ESR_ELx_WNR) >> ESR_ELx_WNR_SHIFT);
115}
116
Julien Thierry1f9b8932017-08-04 09:31:42 +0100117static void mem_abort_decode(unsigned int esr)
118{
119 pr_alert("Mem abort info:\n");
120
Mark Rutland42dbf542017-10-19 11:19:55 +0100121 pr_alert(" ESR = 0x%08x\n", esr);
Julien Thierry1f9b8932017-08-04 09:31:42 +0100122 pr_alert(" Exception class = %s, IL = %u bits\n",
123 esr_get_class_string(esr),
124 (esr & ESR_ELx_IL) ? 32 : 16);
125 pr_alert(" SET = %lu, FnV = %lu\n",
126 (esr & ESR_ELx_SET_MASK) >> ESR_ELx_SET_SHIFT,
127 (esr & ESR_ELx_FnV) >> ESR_ELx_FnV_SHIFT);
128 pr_alert(" EA = %lu, S1PTW = %lu\n",
129 (esr & ESR_ELx_EA) >> ESR_ELx_EA_SHIFT,
130 (esr & ESR_ELx_S1PTW) >> ESR_ELx_S1PTW_SHIFT);
131
132 if (esr_is_data_abort(esr))
133 data_abort_decode(esr);
134}
135
Andrey Konovalov356607f2018-12-28 00:30:27 -0800136static inline bool is_ttbr0_addr(unsigned long addr)
137{
138 /* entry assembly clears tags for TTBR0 addrs */
139 return addr < TASK_SIZE;
140}
141
142static inline bool is_ttbr1_addr(unsigned long addr)
143{
144 /* TTBR1 addresses may have a tag if KASAN_SW_TAGS is in use */
145 return arch_kasan_reset_tag(addr) >= VA_START;
146}
147
Catalin Marinas1d18c472012-03-05 11:49:27 +0000148/*
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100149 * Dump out the page tables associated with 'addr' in the currently active mm.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000150 */
Will Deacon7048a592019-04-03 13:36:54 +0100151static void show_pte(unsigned long addr)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000152{
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100153 struct mm_struct *mm;
Will Deacon20a004e2018-02-15 11:14:56 +0000154 pgd_t *pgdp;
155 pgd_t pgd;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000156
Andrey Konovalov356607f2018-12-28 00:30:27 -0800157 if (is_ttbr0_addr(addr)) {
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100158 /* TTBR0 */
159 mm = current->active_mm;
160 if (mm == &init_mm) {
161 pr_alert("[%016lx] user address but active_mm is swapper\n",
162 addr);
163 return;
164 }
Andrey Konovalov356607f2018-12-28 00:30:27 -0800165 } else if (is_ttbr1_addr(addr)) {
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100166 /* TTBR1 */
Catalin Marinas1d18c472012-03-05 11:49:27 +0000167 mm = &init_mm;
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100168 } else {
169 pr_alert("[%016lx] address between user and kernel address ranges\n",
170 addr);
171 return;
172 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000173
Will Deacon48caebf2019-05-14 12:25:28 +0100174 pr_alert("%s pgtable: %luk pages, %u-bit VAs, pgdp=%016lx\n",
Will Deacon1eb34b62017-05-15 15:23:58 +0100175 mm == &init_mm ? "swapper" : "user", PAGE_SIZE / SZ_1K,
Will Deacon48caebf2019-05-14 12:25:28 +0100176 mm == &init_mm ? VA_BITS : (int)vabits_user,
177 (unsigned long)virt_to_phys(mm->pgd));
Will Deacon20a004e2018-02-15 11:14:56 +0000178 pgdp = pgd_offset(mm, addr);
179 pgd = READ_ONCE(*pgdp);
180 pr_alert("[%016lx] pgd=%016llx", addr, pgd_val(pgd));
Catalin Marinas1d18c472012-03-05 11:49:27 +0000181
182 do {
Will Deacon20a004e2018-02-15 11:14:56 +0000183 pud_t *pudp, pud;
184 pmd_t *pmdp, pmd;
185 pte_t *ptep, pte;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000186
Will Deacon20a004e2018-02-15 11:14:56 +0000187 if (pgd_none(pgd) || pgd_bad(pgd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000188 break;
189
Will Deacon20a004e2018-02-15 11:14:56 +0000190 pudp = pud_offset(pgdp, addr);
191 pud = READ_ONCE(*pudp);
192 pr_cont(", pud=%016llx", pud_val(pud));
193 if (pud_none(pud) || pud_bad(pud))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000194 break;
195
Will Deacon20a004e2018-02-15 11:14:56 +0000196 pmdp = pmd_offset(pudp, addr);
197 pmd = READ_ONCE(*pmdp);
198 pr_cont(", pmd=%016llx", pmd_val(pmd));
199 if (pmd_none(pmd) || pmd_bad(pmd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000200 break;
201
Will Deacon20a004e2018-02-15 11:14:56 +0000202 ptep = pte_offset_map(pmdp, addr);
203 pte = READ_ONCE(*ptep);
204 pr_cont(", pte=%016llx", pte_val(pte));
205 pte_unmap(ptep);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000206 } while(0);
207
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000208 pr_cont("\n");
Catalin Marinas1d18c472012-03-05 11:49:27 +0000209}
210
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100211/*
212 * This function sets the access flags (dirty, accessed), as well as write
213 * permission, and only to a more permissive setting.
214 *
215 * It needs to cope with hardware update of the accessed/dirty state by other
216 * agents in the system and can safely skip the __sync_icache_dcache() call as,
217 * like set_pte_at(), the PTE is never changed from no-exec to exec here.
218 *
219 * Returns whether or not the PTE actually changed.
220 */
221int ptep_set_access_flags(struct vm_area_struct *vma,
222 unsigned long address, pte_t *ptep,
223 pte_t entry, int dirty)
224{
Catalin Marinas3bbf7152017-06-26 14:27:36 +0100225 pteval_t old_pteval, pteval;
Will Deacon20a004e2018-02-15 11:14:56 +0000226 pte_t pte = READ_ONCE(*ptep);
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100227
Will Deacon20a004e2018-02-15 11:14:56 +0000228 if (pte_same(pte, entry))
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100229 return 0;
230
231 /* only preserve the access flags and write permission */
Catalin Marinas73e86cb2017-07-04 19:04:18 +0100232 pte_val(entry) &= PTE_RDONLY | PTE_AF | PTE_WRITE | PTE_DIRTY;
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100233
234 /*
235 * Setting the flags must be done atomically to avoid racing with the
Catalin Marinas6d332742017-07-25 14:53:03 +0100236 * hardware update of the access/dirty state. The PTE_RDONLY bit must
237 * be set to the most permissive (lowest value) of *ptep and entry
238 * (calculated as: a & b == ~(~a | ~b)).
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100239 */
Catalin Marinas6d332742017-07-25 14:53:03 +0100240 pte_val(entry) ^= PTE_RDONLY;
Will Deacon20a004e2018-02-15 11:14:56 +0000241 pteval = pte_val(pte);
Catalin Marinas3bbf7152017-06-26 14:27:36 +0100242 do {
243 old_pteval = pteval;
244 pteval ^= PTE_RDONLY;
245 pteval |= pte_val(entry);
246 pteval ^= PTE_RDONLY;
247 pteval = cmpxchg_relaxed(&pte_val(*ptep), old_pteval, pteval);
248 } while (pteval != old_pteval);
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100249
250 flush_tlb_fix_spurious_fault(vma, address);
251 return 1;
252}
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100253
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700254static bool is_el1_instruction_abort(unsigned int esr)
255{
256 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_CUR;
257}
258
Anshuman Khandualdbfe3822018-09-22 21:09:53 +0530259static inline bool is_el1_permission_fault(unsigned long addr, unsigned int esr,
260 struct pt_regs *regs)
Stephen Boydb824b932017-04-05 12:18:31 -0700261{
262 unsigned int ec = ESR_ELx_EC(esr);
263 unsigned int fsc_type = esr & ESR_ELx_FSC_TYPE;
264
265 if (ec != ESR_ELx_EC_DABT_CUR && ec != ESR_ELx_EC_IABT_CUR)
266 return false;
267
268 if (fsc_type == ESR_ELx_FSC_PERM)
269 return true;
270
Andrey Konovalov356607f2018-12-28 00:30:27 -0800271 if (is_ttbr0_addr(addr) && system_uses_ttbr0_pan())
Stephen Boydb824b932017-04-05 12:18:31 -0700272 return fsc_type == ESR_ELx_FSC_FAULT &&
273 (regs->pstate & PSR_PAN_BIT);
274
275 return false;
276}
277
Mark Rutlandc870f142018-05-21 14:14:51 +0100278static void die_kernel_fault(const char *msg, unsigned long addr,
279 unsigned int esr, struct pt_regs *regs)
280{
281 bust_spinlocks(1);
282
283 pr_alert("Unable to handle kernel %s at virtual address %016lx\n", msg,
284 addr);
285
286 mem_abort_decode(esr);
287
288 show_pte(addr);
289 die("Oops", regs, esr);
290 bust_spinlocks(0);
291 do_exit(SIGKILL);
292}
293
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100294static void __do_kernel_fault(unsigned long addr, unsigned int esr,
295 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000296{
Stephen Boydb824b932017-04-05 12:18:31 -0700297 const char *msg;
298
Catalin Marinas1d18c472012-03-05 11:49:27 +0000299 /*
300 * Are we prepared to handle this kernel fault?
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700301 * We are almost certainly not prepared to handle instruction faults.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000302 */
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700303 if (!is_el1_instruction_abort(esr) && fixup_exception(regs))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000304 return;
305
Anshuman Khandualdbfe3822018-09-22 21:09:53 +0530306 if (is_el1_permission_fault(addr, esr, regs)) {
Stephen Boydb824b932017-04-05 12:18:31 -0700307 if (esr & ESR_ELx_WNR)
308 msg = "write to read-only memory";
309 else
310 msg = "read from unreadable memory";
311 } else if (addr < PAGE_SIZE) {
312 msg = "NULL pointer dereference";
313 } else {
314 msg = "paging request";
315 }
316
Mark Rutlandc870f142018-05-21 14:14:51 +0100317 die_kernel_fault(msg, addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000318}
319
Eric W. Biedermanf29ad202018-09-22 09:37:55 +0200320static void set_thread_esr(unsigned long address, unsigned int esr)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000321{
Eric W. Biedermanf29ad202018-09-22 09:37:55 +0200322 current->thread.fault_address = address;
Peter Maydellcc198462018-05-22 17:11:20 +0100323
324 /*
325 * If the faulting address is in the kernel, we must sanitize the ESR.
326 * From userspace's point of view, kernel-only mappings don't exist
327 * at all, so we report them as level 0 translation faults.
328 * (This is not quite the way that "no mapping there at all" behaves:
329 * an alignment fault not caused by the memory type would take
330 * precedence over translation fault for a real access to empty
331 * space. Unfortunately we can't easily distinguish "alignment fault
332 * not caused by memory type" from "alignment fault caused by memory
333 * type", so we ignore this wrinkle and just return the translation
334 * fault.)
335 */
Andrey Konovalov356607f2018-12-28 00:30:27 -0800336 if (!is_ttbr0_addr(current->thread.fault_address)) {
Peter Maydellcc198462018-05-22 17:11:20 +0100337 switch (ESR_ELx_EC(esr)) {
338 case ESR_ELx_EC_DABT_LOW:
339 /*
340 * These bits provide only information about the
341 * faulting instruction, which userspace knows already.
342 * We explicitly clear bits which are architecturally
343 * RES0 in case they are given meanings in future.
344 * We always report the ESR as if the fault was taken
345 * to EL1 and so ISV and the bits in ISS[23:14] are
346 * clear. (In fact it always will be a fault to EL1.)
347 */
348 esr &= ESR_ELx_EC_MASK | ESR_ELx_IL |
349 ESR_ELx_CM | ESR_ELx_WNR;
350 esr |= ESR_ELx_FSC_FAULT;
351 break;
352 case ESR_ELx_EC_IABT_LOW:
353 /*
354 * Claim a level 0 translation fault.
355 * All other bits are architecturally RES0 for faults
356 * reported with that DFSC value, so we clear them.
357 */
358 esr &= ESR_ELx_EC_MASK | ESR_ELx_IL;
359 esr |= ESR_ELx_FSC_FAULT;
360 break;
361 default:
362 /*
363 * This should never happen (entry.S only brings us
364 * into this code for insn and data aborts from a lower
365 * exception level). Fail safe by not providing an ESR
366 * context record at all.
367 */
368 WARN(1, "ESR 0x%x is not DABT or IABT from EL0\n", esr);
369 esr = 0;
370 break;
371 }
372 }
373
Will Deacon92ff0672018-02-20 14:53:22 +0000374 current->thread.fault_code = esr;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000375}
376
Catalin Marinas59f67e12013-09-16 15:18:28 +0100377static void do_bad_area(unsigned long addr, unsigned int esr, struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000378{
Catalin Marinas1d18c472012-03-05 11:49:27 +0000379 /*
380 * If we are in kernel mode at this point, we have no context to
381 * handle this fault with.
382 */
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700383 if (user_mode(regs)) {
Will Deacon92ff0672018-02-20 14:53:22 +0000384 const struct fault_info *inf = esr_to_fault_info(esr);
Eric W. Biederman3eb0f512018-04-17 15:26:37 -0500385
Eric W. Biedermaneffb0932018-09-22 10:05:41 +0200386 set_thread_esr(addr, esr);
Eric W. Biedermanfeca3552018-09-22 10:26:57 +0200387 arm64_force_sig_fault(inf->sig, inf->code, (void __user *)addr,
388 inf->name);
Will Deacon92ff0672018-02-20 14:53:22 +0000389 } else {
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100390 __do_kernel_fault(addr, esr, regs);
Will Deacon92ff0672018-02-20 14:53:22 +0000391 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000392}
393
394#define VM_FAULT_BADMAP 0x010000
395#define VM_FAULT_BADACCESS 0x020000
396
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700397static vm_fault_t __do_page_fault(struct mm_struct *mm, unsigned long addr,
Will Deacondb6f4102013-07-19 15:37:12 +0100398 unsigned int mm_flags, unsigned long vm_flags,
Catalin Marinas1d18c472012-03-05 11:49:27 +0000399 struct task_struct *tsk)
400{
401 struct vm_area_struct *vma;
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700402 vm_fault_t fault;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000403
404 vma = find_vma(mm, addr);
405 fault = VM_FAULT_BADMAP;
406 if (unlikely(!vma))
407 goto out;
408 if (unlikely(vma->vm_start > addr))
409 goto check_stack;
410
411 /*
412 * Ok, we have a good vm_area for this memory access, so we can handle
413 * it.
414 */
415good_area:
Will Deacondb6f4102013-07-19 15:37:12 +0100416 /*
417 * Check that the permissions on the VMA allow for the fault which
Catalin Marinascab15ce2016-08-11 18:44:50 +0100418 * occurred.
Will Deacondb6f4102013-07-19 15:37:12 +0100419 */
420 if (!(vma->vm_flags & vm_flags)) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000421 fault = VM_FAULT_BADACCESS;
422 goto out;
423 }
424
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700425 return handle_mm_fault(vma, addr & PAGE_MASK, mm_flags);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000426
427check_stack:
428 if (vma->vm_flags & VM_GROWSDOWN && !expand_stack(vma, addr))
429 goto good_area;
430out:
431 return fault;
432}
433
Mark Rutland541ec872016-05-31 12:33:03 +0100434static bool is_el0_instruction_abort(unsigned int esr)
435{
436 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_LOW;
437}
438
Catalin Marinas1d18c472012-03-05 11:49:27 +0000439static int __kprobes do_page_fault(unsigned long addr, unsigned int esr,
440 struct pt_regs *regs)
441{
Eric W. Biederman2d2837f2018-09-22 10:16:42 +0200442 const struct fault_info *inf;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000443 struct task_struct *tsk;
444 struct mm_struct *mm;
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700445 vm_fault_t fault, major = 0;
Catalin Marinascab15ce2016-08-11 18:44:50 +0100446 unsigned long vm_flags = VM_READ | VM_WRITE;
Will Deacondb6f4102013-07-19 15:37:12 +0100447 unsigned int mm_flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
448
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400449 if (notify_page_fault(regs, esr))
450 return 0;
451
Catalin Marinas1d18c472012-03-05 11:49:27 +0000452 tsk = current;
453 mm = tsk->mm;
454
Catalin Marinas1d18c472012-03-05 11:49:27 +0000455 /*
456 * If we're in an interrupt or have no user context, we must not take
457 * the fault.
458 */
David Hildenbrand70ffdb92015-05-11 17:52:11 +0200459 if (faulthandler_disabled() || !mm)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000460 goto no_context;
461
Johannes Weiner759496b2013-09-12 15:13:39 -0700462 if (user_mode(regs))
463 mm_flags |= FAULT_FLAG_USER;
464
Mark Rutland541ec872016-05-31 12:33:03 +0100465 if (is_el0_instruction_abort(esr)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700466 vm_flags = VM_EXEC;
Anshuman Khandual01de1772019-05-05 09:45:12 +0530467 mm_flags |= FAULT_FLAG_INSTRUCTION;
Mark Rutlandaed40e02014-11-24 12:31:40 +0000468 } else if ((esr & ESR_ELx_WNR) && !(esr & ESR_ELx_CM)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700469 vm_flags = VM_WRITE;
470 mm_flags |= FAULT_FLAG_WRITE;
471 }
472
Andrey Konovalov356607f2018-12-28 00:30:27 -0800473 if (is_ttbr0_addr(addr) && is_el1_permission_fault(addr, esr, regs)) {
James Morsee19a6ee2016-06-20 18:28:01 +0100474 /* regs->orig_addr_limit may be 0 if we entered from EL0 */
475 if (regs->orig_addr_limit == KERNEL_DS)
Mark Rutlandc870f142018-05-21 14:14:51 +0100476 die_kernel_fault("access to user memory with fs=KERNEL_DS",
477 addr, esr, regs);
James Morse70544192016-02-05 14:58:50 +0000478
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700479 if (is_el1_instruction_abort(esr))
Mark Rutlandc870f142018-05-21 14:14:51 +0100480 die_kernel_fault("execution of user memory",
481 addr, esr, regs);
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700482
James Morse57f49592016-02-05 14:58:48 +0000483 if (!search_exception_tables(regs->pc))
Mark Rutlandc870f142018-05-21 14:14:51 +0100484 die_kernel_fault("access to user memory outside uaccess routines",
485 addr, esr, regs);
James Morse57f49592016-02-05 14:58:48 +0000486 }
James Morse338d4f42015-07-22 19:05:54 +0100487
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100488 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
489
James Morse338d4f42015-07-22 19:05:54 +0100490 /*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000491 * As per x86, we may deadlock here. However, since the kernel only
492 * validly references user space from well defined areas of the code,
493 * we can bug out early if this is from code which shouldn't.
494 */
495 if (!down_read_trylock(&mm->mmap_sem)) {
496 if (!user_mode(regs) && !search_exception_tables(regs->pc))
497 goto no_context;
498retry:
499 down_read(&mm->mmap_sem);
500 } else {
501 /*
502 * The above down_read_trylock() might have succeeded in which
503 * case, we'll have missed the might_sleep() from down_read().
504 */
505 might_sleep();
506#ifdef CONFIG_DEBUG_VM
507 if (!user_mode(regs) && !search_exception_tables(regs->pc))
508 goto no_context;
509#endif
510 }
511
Will Deacondb6f4102013-07-19 15:37:12 +0100512 fault = __do_page_fault(mm, addr, mm_flags, vm_flags, tsk);
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100513 major |= fault & VM_FAULT_MAJOR;
514
515 if (fault & VM_FAULT_RETRY) {
516 /*
517 * If we need to retry but a fatal signal is pending,
518 * handle the signal first. We do not need to release
519 * the mmap_sem because it would already be released
520 * in __lock_page_or_retry in mm/filemap.c.
521 */
Mark Rutland289d07a2017-07-11 15:19:22 +0100522 if (fatal_signal_pending(current)) {
523 if (!user_mode(regs))
524 goto no_context;
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100525 return 0;
Mark Rutland289d07a2017-07-11 15:19:22 +0100526 }
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100527
528 /*
529 * Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk of
530 * starvation.
531 */
532 if (mm_flags & FAULT_FLAG_ALLOW_RETRY) {
533 mm_flags &= ~FAULT_FLAG_ALLOW_RETRY;
534 mm_flags |= FAULT_FLAG_TRIED;
535 goto retry;
536 }
537 }
538 up_read(&mm->mmap_sem);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000539
540 /*
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100541 * Handle the "normal" (no error) case first.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000542 */
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100543 if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP |
544 VM_FAULT_BADACCESS)))) {
545 /*
546 * Major/minor page fault accounting is only done
547 * once. If we go through a retry, it is extremely
548 * likely that the page will be found in page cache at
549 * that point.
550 */
551 if (major) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000552 tsk->maj_flt++;
553 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs,
554 addr);
555 } else {
556 tsk->min_flt++;
557 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs,
558 addr);
559 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000560
Catalin Marinas1d18c472012-03-05 11:49:27 +0000561 return 0;
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100562 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000563
Johannes Weiner87134102013-09-12 15:13:38 -0700564 /*
565 * If we are in kernel mode at this point, we have no context to
566 * handle this fault with.
567 */
568 if (!user_mode(regs))
569 goto no_context;
570
Catalin Marinas1d18c472012-03-05 11:49:27 +0000571 if (fault & VM_FAULT_OOM) {
572 /*
573 * We ran out of memory, call the OOM killer, and return to
574 * userspace (which will retry the fault, or kill us if we got
575 * oom-killed).
576 */
577 pagefault_out_of_memory();
578 return 0;
579 }
580
Eric W. Biederman2d2837f2018-09-22 10:16:42 +0200581 inf = esr_to_fault_info(esr);
Eric W. Biederman559d8d92018-09-22 10:18:42 +0200582 set_thread_esr(addr, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000583 if (fault & VM_FAULT_SIGBUS) {
584 /*
585 * We had some memory, but were unable to successfully fix up
586 * this page fault.
587 */
Eric W. Biedermanfeca3552018-09-22 10:26:57 +0200588 arm64_force_sig_fault(SIGBUS, BUS_ADRERR, (void __user *)addr,
589 inf->name);
Eric W. Biederman9ea3a972018-09-22 09:46:39 +0200590 } else if (fault & (VM_FAULT_HWPOISON_LARGE | VM_FAULT_HWPOISON)) {
591 unsigned int lsb;
Will Deacon92ff0672018-02-20 14:53:22 +0000592
Eric W. Biederman9ea3a972018-09-22 09:46:39 +0200593 lsb = PAGE_SHIFT;
594 if (fault & VM_FAULT_HWPOISON_LARGE)
595 lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault));
Will Deacon92ff0672018-02-20 14:53:22 +0000596
Eric W. Biedermanb4d55572018-09-22 10:37:15 +0200597 arm64_force_sig_mceerr(BUS_MCEERR_AR, (void __user *)addr, lsb,
598 inf->name);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000599 } else {
600 /*
601 * Something tried to access memory that isn't in our memory
602 * map.
603 */
Eric W. Biedermanfeca3552018-09-22 10:26:57 +0200604 arm64_force_sig_fault(SIGSEGV,
605 fault == VM_FAULT_BADACCESS ? SEGV_ACCERR : SEGV_MAPERR,
606 (void __user *)addr,
607 inf->name);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000608 }
609
Catalin Marinas1d18c472012-03-05 11:49:27 +0000610 return 0;
611
612no_context:
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100613 __do_kernel_fault(addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000614 return 0;
615}
616
Catalin Marinas1d18c472012-03-05 11:49:27 +0000617static int __kprobes do_translation_fault(unsigned long addr,
618 unsigned int esr,
619 struct pt_regs *regs)
620{
Andrey Konovalov356607f2018-12-28 00:30:27 -0800621 if (is_ttbr0_addr(addr))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000622 return do_page_fault(addr, esr, regs);
623
624 do_bad_area(addr, esr, regs);
625 return 0;
626}
627
EunTaik Lee52d75232016-02-16 04:44:35 +0000628static int do_alignment_fault(unsigned long addr, unsigned int esr,
629 struct pt_regs *regs)
630{
631 do_bad_area(addr, esr, regs);
632 return 0;
633}
634
Catalin Marinas1d18c472012-03-05 11:49:27 +0000635static int do_bad(unsigned long addr, unsigned int esr, struct pt_regs *regs)
636{
Will Deaconf67d5c42017-09-22 11:01:26 +0100637 return 1; /* "fault" */
Catalin Marinas1d18c472012-03-05 11:49:27 +0000638}
639
Tyler Baicar32015c22017-06-21 12:17:08 -0600640static int do_sea(unsigned long addr, unsigned int esr, struct pt_regs *regs)
641{
Tyler Baicar32015c22017-06-21 12:17:08 -0600642 const struct fault_info *inf;
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200643 void __user *siaddr;
Tyler Baicar32015c22017-06-21 12:17:08 -0600644
645 inf = esr_to_fault_info(esr);
Tyler Baicar32015c22017-06-21 12:17:08 -0600646
Tyler Baicar7edda082017-06-21 12:17:09 -0600647 /*
James Morsed44f1b82019-01-29 18:48:50 +0000648 * Return value ignored as we rely on signal merging.
649 * Future patches will make this more robust.
Tyler Baicar7edda082017-06-21 12:17:09 -0600650 */
James Morsed44f1b82019-01-29 18:48:50 +0000651 apei_claim_sea(regs);
Tyler Baicar7edda082017-06-21 12:17:09 -0600652
Tyler Baicar32015c22017-06-21 12:17:08 -0600653 if (esr & ESR_ELx_FnV)
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200654 siaddr = NULL;
Tyler Baicar32015c22017-06-21 12:17:08 -0600655 else
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200656 siaddr = (void __user *)addr;
657 arm64_notify_die(inf->name, regs, inf->sig, inf->code, siaddr, esr);
Tyler Baicar32015c22017-06-21 12:17:08 -0600658
Dongjiu Gengfaa75e12017-12-13 18:36:47 +0800659 return 0;
Tyler Baicar32015c22017-06-21 12:17:08 -0600660}
661
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700662static const struct fault_info fault_info[] = {
Dave Martinaf40ff62018-03-08 17:41:05 +0000663 { do_bad, SIGKILL, SI_KERNEL, "ttbr address size fault" },
664 { do_bad, SIGKILL, SI_KERNEL, "level 1 address size fault" },
665 { do_bad, SIGKILL, SI_KERNEL, "level 2 address size fault" },
666 { do_bad, SIGKILL, SI_KERNEL, "level 3 address size fault" },
Will Deacon7f73f7a2014-11-21 14:22:22 +0000667 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000668 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" },
669 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" },
Will Deacon760bfb42017-09-29 12:27:41 +0100670 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000671 { do_bad, SIGKILL, SI_KERNEL, "unknown 8" },
Steve Capper084bd292013-04-10 13:48:00 +0100672 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" },
673 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000674 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 access flag fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000675 { do_bad, SIGKILL, SI_KERNEL, "unknown 12" },
Steve Capper084bd292013-04-10 13:48:00 +0100676 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 permission fault" },
677 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 permission fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000678 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 permission fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000679 { do_sea, SIGBUS, BUS_OBJERR, "synchronous external abort" },
680 { do_bad, SIGKILL, SI_KERNEL, "unknown 17" },
681 { do_bad, SIGKILL, SI_KERNEL, "unknown 18" },
682 { do_bad, SIGKILL, SI_KERNEL, "unknown 19" },
683 { do_sea, SIGKILL, SI_KERNEL, "level 0 (translation table walk)" },
684 { do_sea, SIGKILL, SI_KERNEL, "level 1 (translation table walk)" },
685 { do_sea, SIGKILL, SI_KERNEL, "level 2 (translation table walk)" },
686 { do_sea, SIGKILL, SI_KERNEL, "level 3 (translation table walk)" },
687 { do_sea, SIGBUS, BUS_OBJERR, "synchronous parity or ECC error" }, // Reserved when RAS is implemented
688 { do_bad, SIGKILL, SI_KERNEL, "unknown 25" },
689 { do_bad, SIGKILL, SI_KERNEL, "unknown 26" },
690 { do_bad, SIGKILL, SI_KERNEL, "unknown 27" },
691 { do_sea, SIGKILL, SI_KERNEL, "level 0 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
692 { do_sea, SIGKILL, SI_KERNEL, "level 1 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
693 { do_sea, SIGKILL, SI_KERNEL, "level 2 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
694 { do_sea, SIGKILL, SI_KERNEL, "level 3 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
695 { do_bad, SIGKILL, SI_KERNEL, "unknown 32" },
EunTaik Lee52d75232016-02-16 04:44:35 +0000696 { do_alignment_fault, SIGBUS, BUS_ADRALN, "alignment fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000697 { do_bad, SIGKILL, SI_KERNEL, "unknown 34" },
698 { do_bad, SIGKILL, SI_KERNEL, "unknown 35" },
699 { do_bad, SIGKILL, SI_KERNEL, "unknown 36" },
700 { do_bad, SIGKILL, SI_KERNEL, "unknown 37" },
701 { do_bad, SIGKILL, SI_KERNEL, "unknown 38" },
702 { do_bad, SIGKILL, SI_KERNEL, "unknown 39" },
703 { do_bad, SIGKILL, SI_KERNEL, "unknown 40" },
704 { do_bad, SIGKILL, SI_KERNEL, "unknown 41" },
705 { do_bad, SIGKILL, SI_KERNEL, "unknown 42" },
706 { do_bad, SIGKILL, SI_KERNEL, "unknown 43" },
707 { do_bad, SIGKILL, SI_KERNEL, "unknown 44" },
708 { do_bad, SIGKILL, SI_KERNEL, "unknown 45" },
709 { do_bad, SIGKILL, SI_KERNEL, "unknown 46" },
710 { do_bad, SIGKILL, SI_KERNEL, "unknown 47" },
711 { do_bad, SIGKILL, SI_KERNEL, "TLB conflict abort" },
712 { do_bad, SIGKILL, SI_KERNEL, "Unsupported atomic hardware update fault" },
713 { do_bad, SIGKILL, SI_KERNEL, "unknown 50" },
714 { do_bad, SIGKILL, SI_KERNEL, "unknown 51" },
715 { do_bad, SIGKILL, SI_KERNEL, "implementation fault (lockdown abort)" },
716 { do_bad, SIGBUS, BUS_OBJERR, "implementation fault (unsupported exclusive)" },
717 { do_bad, SIGKILL, SI_KERNEL, "unknown 54" },
718 { do_bad, SIGKILL, SI_KERNEL, "unknown 55" },
719 { do_bad, SIGKILL, SI_KERNEL, "unknown 56" },
720 { do_bad, SIGKILL, SI_KERNEL, "unknown 57" },
721 { do_bad, SIGKILL, SI_KERNEL, "unknown 58" },
722 { do_bad, SIGKILL, SI_KERNEL, "unknown 59" },
723 { do_bad, SIGKILL, SI_KERNEL, "unknown 60" },
724 { do_bad, SIGKILL, SI_KERNEL, "section domain fault" },
725 { do_bad, SIGKILL, SI_KERNEL, "page domain fault" },
726 { do_bad, SIGKILL, SI_KERNEL, "unknown 63" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000727};
728
Catalin Marinas1d18c472012-03-05 11:49:27 +0000729asmlinkage void __exception do_mem_abort(unsigned long addr, unsigned int esr,
730 struct pt_regs *regs)
731{
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700732 const struct fault_info *inf = esr_to_fault_info(esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000733
734 if (!inf->fn(addr, esr, regs))
735 return;
736
Will Deacon1049c302018-02-20 14:41:02 +0000737 if (!user_mode(regs)) {
738 pr_alert("Unhandled fault at 0x%016lx\n", addr);
739 mem_abort_decode(esr);
Will Deacon80b6eb02017-10-31 15:56:11 +0000740 show_pte(addr);
Will Deacon1049c302018-02-20 14:41:02 +0000741 }
Mark Rutland42dbf542017-10-19 11:19:55 +0100742
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200743 arm64_notify_die(inf->name, regs,
744 inf->sig, inf->code, (void __user *)addr, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000745}
746
Will Deacon30d88c02018-02-02 17:31:40 +0000747asmlinkage void __exception do_el0_irq_bp_hardening(void)
748{
749 /* PC has already been checked in entry.S */
750 arm64_apply_bp_hardening();
751}
752
Will Deacon0f15adb2018-01-03 11:17:58 +0000753asmlinkage void __exception do_el0_ia_bp_hardening(unsigned long addr,
754 unsigned int esr,
755 struct pt_regs *regs)
756{
757 /*
758 * We've taken an instruction abort from userspace and not yet
759 * re-enabled IRQs. If the address is a kernel address, apply
760 * BP hardening prior to enabling IRQs and pre-emption.
761 */
Andrey Konovalov356607f2018-12-28 00:30:27 -0800762 if (!is_ttbr0_addr(addr))
Will Deacon0f15adb2018-01-03 11:17:58 +0000763 arm64_apply_bp_hardening();
764
Julien Thierry9a0c0322018-08-28 16:51:15 +0100765 local_daif_restore(DAIF_PROCCTX);
Will Deacon0f15adb2018-01-03 11:17:58 +0000766 do_mem_abort(addr, esr, regs);
767}
768
769
Catalin Marinas1d18c472012-03-05 11:49:27 +0000770asmlinkage void __exception do_sp_pc_abort(unsigned long addr,
771 unsigned int esr,
772 struct pt_regs *regs)
773{
Will Deacon5dfc6ed2018-02-02 17:31:39 +0000774 if (user_mode(regs)) {
Andrey Konovalov356607f2018-12-28 00:30:27 -0800775 if (!is_ttbr0_addr(instruction_pointer(regs)))
Will Deacon5dfc6ed2018-02-02 17:31:39 +0000776 arm64_apply_bp_hardening();
Julien Thierry9a0c0322018-08-28 16:51:15 +0100777 local_daif_restore(DAIF_PROCCTX);
Will Deacon5dfc6ed2018-02-02 17:31:39 +0000778 }
779
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200780 arm64_notify_die("SP/PC alignment exception", regs,
781 SIGBUS, BUS_ADRALN, (void __user *)addr, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000782}
783
Dave P Martin9fb74102015-07-24 16:37:48 +0100784int __init early_brk64(unsigned long addr, unsigned int esr,
785 struct pt_regs *regs);
786
787/*
788 * __refdata because early_brk64 is __init, but the reference to it is
789 * clobbered at arch_initcall time.
790 * See traps.c and debug-monitors.c:debug_traps_init().
791 */
792static struct fault_info __refdata debug_fault_info[] = {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000793 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware breakpoint" },
794 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware single-step" },
795 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware watchpoint" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000796 { do_bad, SIGKILL, SI_KERNEL, "unknown 3" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000797 { do_bad, SIGTRAP, TRAP_BRKPT, "aarch32 BKPT" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000798 { do_bad, SIGKILL, SI_KERNEL, "aarch32 vector catch" },
Dave P Martin9fb74102015-07-24 16:37:48 +0100799 { early_brk64, SIGTRAP, TRAP_BRKPT, "aarch64 BRK" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000800 { do_bad, SIGKILL, SI_KERNEL, "unknown 7" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000801};
802
803void __init hook_debug_fault_code(int nr,
804 int (*fn)(unsigned long, unsigned int, struct pt_regs *),
805 int sig, int code, const char *name)
806{
807 BUG_ON(nr < 0 || nr >= ARRAY_SIZE(debug_fault_info));
808
809 debug_fault_info[nr].fn = fn;
810 debug_fault_info[nr].sig = sig;
811 debug_fault_info[nr].code = code;
812 debug_fault_info[nr].name = name;
813}
814
Will Deacon969f5ea2019-04-29 13:03:57 +0100815#ifdef CONFIG_ARM64_ERRATUM_1463225
816DECLARE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
817
818static int __exception
819cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
820{
821 if (user_mode(regs))
822 return 0;
823
824 if (!__this_cpu_read(__in_cortex_a76_erratum_1463225_wa))
825 return 0;
826
827 /*
828 * We've taken a dummy step exception from the kernel to ensure
829 * that interrupts are re-enabled on the syscall path. Return back
830 * to cortex_a76_erratum_1463225_svc_handler() with debug exceptions
831 * masked so that we can safely restore the mdscr and get on with
832 * handling the syscall.
833 */
834 regs->pstate |= PSR_D_BIT;
835 return 1;
836}
837#else
838static int __exception
839cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
840{
841 return 0;
842}
843#endif /* CONFIG_ARM64_ERRATUM_1463225 */
844
Will Deacon52c6d142019-02-25 12:06:43 +0000845asmlinkage void __exception do_debug_exception(unsigned long addr_if_watchpoint,
846 unsigned int esr,
847 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000848{
Anshuman Khandual359048f2018-09-22 21:09:54 +0530849 const struct fault_info *inf = esr_to_debug_fault_info(esr);
Will Deaconb9a4b9d2019-03-01 13:28:00 +0000850 unsigned long pc = instruction_pointer(regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000851
Will Deacon969f5ea2019-04-29 13:03:57 +0100852 if (cortex_a76_erratum_1463225_debug_handler(regs))
853 return;
854
James Morse6afedcd2016-04-13 13:40:00 +0100855 /*
856 * Tell lockdep we disabled irqs in entry.S. Do nothing if they were
857 * already disabled to preserve the last enabled/disabled addresses.
858 */
859 if (interrupts_enabled(regs))
860 trace_hardirqs_off();
Catalin Marinas1d18c472012-03-05 11:49:27 +0000861
Will Deaconb9a4b9d2019-03-01 13:28:00 +0000862 if (user_mode(regs) && !is_ttbr0_addr(pc))
Will Deacon5dfc6ed2018-02-02 17:31:39 +0000863 arm64_apply_bp_hardening();
864
Will Deacon52c6d142019-02-25 12:06:43 +0000865 if (inf->fn(addr_if_watchpoint, esr, regs)) {
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200866 arm64_notify_die(inf->name, regs,
Will Deaconb9a4b9d2019-03-01 13:28:00 +0000867 inf->sig, inf->code, (void __user *)pc, esr);
James Morse6afedcd2016-04-13 13:40:00 +0100868 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000869
James Morse6afedcd2016-04-13 13:40:00 +0100870 if (interrupts_enabled(regs))
871 trace_hardirqs_on();
Catalin Marinas1d18c472012-03-05 11:49:27 +0000872}
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400873NOKPROBE_SYMBOL(do_debug_exception);