blob: 35d75c60e2b8df0ed065e6090082c498d25897f7 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Catalin Marinas1d18c472012-03-05 11:49:27 +00002/*
3 * Based on arch/arm/mm/fault.c
4 *
5 * Copyright (C) 1995 Linus Torvalds
6 * Copyright (C) 1995-2004 Russell King
7 * Copyright (C) 2012 ARM Ltd.
Catalin Marinas1d18c472012-03-05 11:49:27 +00008 */
9
James Morsed44f1b82019-01-29 18:48:50 +000010#include <linux/acpi.h>
Will Deacon42f91092019-08-22 17:22:14 +010011#include <linux/bitfield.h>
Paul Gortmaker0edfa832016-09-19 17:38:55 -040012#include <linux/extable.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000013#include <linux/signal.h>
14#include <linux/mm.h>
15#include <linux/hardirq.h>
16#include <linux/init.h>
Andrey Konovalov4291e9e2020-12-22 12:02:13 -080017#include <linux/kasan.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000018#include <linux/kprobes.h>
19#include <linux/uaccess.h>
20#include <linux/page-flags.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010021#include <linux/sched/signal.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010022#include <linux/sched/debug.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000023#include <linux/highmem.h>
24#include <linux/perf_event.h>
James Morse7209c862016-10-18 11:27:47 +010025#include <linux/preempt.h>
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +010026#include <linux/hugetlb.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000027
James Morsed44f1b82019-01-29 18:48:50 +000028#include <asm/acpi.h>
James Morse7209c862016-10-18 11:27:47 +010029#include <asm/bug.h>
Catalin Marinas3bbf7152017-06-26 14:27:36 +010030#include <asm/cmpxchg.h>
James Morse338d4f42015-07-22 19:05:54 +010031#include <asm/cpufeature.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000032#include <asm/exception.h>
Julien Thierry9a0c0322018-08-28 16:51:15 +010033#include <asm/daifflags.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000034#include <asm/debug-monitors.h>
Catalin Marinas91413002014-04-06 23:04:12 +010035#include <asm/esr.h>
James Morseb6e43c02019-10-25 17:42:10 +010036#include <asm/kprobes.h>
Vincenzo Frascino98c970d2020-12-22 12:01:35 -080037#include <asm/mte.h>
James Morsebfe29872019-10-25 17:42:16 +010038#include <asm/processor.h>
James Morse338d4f42015-07-22 19:05:54 +010039#include <asm/sysreg.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000040#include <asm/system_misc.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000041#include <asm/tlbflush.h>
Will Deacon92ff0672018-02-20 14:53:22 +000042#include <asm/traps.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000043
Victor Kamensky09a6adf2017-04-03 22:51:01 -070044struct fault_info {
Peter Collingbournedceec3f2020-11-20 12:33:46 -080045 int (*fn)(unsigned long far, unsigned int esr,
Victor Kamensky09a6adf2017-04-03 22:51:01 -070046 struct pt_regs *regs);
47 int sig;
48 int code;
49 const char *name;
50};
51
52static const struct fault_info fault_info[];
Anshuman Khandual359048f2018-09-22 21:09:54 +053053static struct fault_info debug_fault_info[];
Victor Kamensky09a6adf2017-04-03 22:51:01 -070054
55static inline const struct fault_info *esr_to_fault_info(unsigned int esr)
56{
Anshuman Khandual00bbd5d2018-09-22 21:09:52 +053057 return fault_info + (esr & ESR_ELx_FSC);
Victor Kamensky09a6adf2017-04-03 22:51:01 -070058}
Catalin Marinas3495386b2012-10-24 16:34:02 +010059
Anshuman Khandual359048f2018-09-22 21:09:54 +053060static inline const struct fault_info *esr_to_debug_fault_info(unsigned int esr)
61{
62 return debug_fault_info + DBG_ESR_EVT(esr);
63}
64
Julien Thierry1f9b8932017-08-04 09:31:42 +010065static void data_abort_decode(unsigned int esr)
66{
67 pr_alert("Data abort info:\n");
68
69 if (esr & ESR_ELx_ISV) {
70 pr_alert(" Access size = %u byte(s)\n",
71 1U << ((esr & ESR_ELx_SAS) >> ESR_ELx_SAS_SHIFT));
72 pr_alert(" SSE = %lu, SRT = %lu\n",
73 (esr & ESR_ELx_SSE) >> ESR_ELx_SSE_SHIFT,
74 (esr & ESR_ELx_SRT_MASK) >> ESR_ELx_SRT_SHIFT);
75 pr_alert(" SF = %lu, AR = %lu\n",
76 (esr & ESR_ELx_SF) >> ESR_ELx_SF_SHIFT,
77 (esr & ESR_ELx_AR) >> ESR_ELx_AR_SHIFT);
78 } else {
Mark Rutland0a6de8b2017-10-02 12:42:00 +010079 pr_alert(" ISV = 0, ISS = 0x%08lx\n", esr & ESR_ELx_ISS_MASK);
Julien Thierry1f9b8932017-08-04 09:31:42 +010080 }
81
82 pr_alert(" CM = %lu, WnR = %lu\n",
83 (esr & ESR_ELx_CM) >> ESR_ELx_CM_SHIFT,
84 (esr & ESR_ELx_WNR) >> ESR_ELx_WNR_SHIFT);
85}
86
Julien Thierry1f9b8932017-08-04 09:31:42 +010087static void mem_abort_decode(unsigned int esr)
88{
89 pr_alert("Mem abort info:\n");
90
Mark Rutland42dbf542017-10-19 11:19:55 +010091 pr_alert(" ESR = 0x%08x\n", esr);
Miles Chen2951d5e2019-08-07 08:33:36 +080092 pr_alert(" EC = 0x%02lx: %s, IL = %u bits\n",
93 ESR_ELx_EC(esr), esr_get_class_string(esr),
Julien Thierry1f9b8932017-08-04 09:31:42 +010094 (esr & ESR_ELx_IL) ? 32 : 16);
95 pr_alert(" SET = %lu, FnV = %lu\n",
96 (esr & ESR_ELx_SET_MASK) >> ESR_ELx_SET_SHIFT,
97 (esr & ESR_ELx_FnV) >> ESR_ELx_FnV_SHIFT);
98 pr_alert(" EA = %lu, S1PTW = %lu\n",
99 (esr & ESR_ELx_EA) >> ESR_ELx_EA_SHIFT,
100 (esr & ESR_ELx_S1PTW) >> ESR_ELx_S1PTW_SHIFT);
101
102 if (esr_is_data_abort(esr))
103 data_abort_decode(esr);
104}
105
Mark Rutlande4365f92019-10-03 10:49:32 +0100106static inline unsigned long mm_to_pgd_phys(struct mm_struct *mm)
107{
108 /* Either init_pg_dir or swapper_pg_dir */
109 if (mm == &init_mm)
110 return __pa_symbol(mm->pgd);
111
112 return (unsigned long)virt_to_phys(mm->pgd);
113}
114
Catalin Marinas1d18c472012-03-05 11:49:27 +0000115/*
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100116 * Dump out the page tables associated with 'addr' in the currently active mm.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000117 */
Will Deacon7048a592019-04-03 13:36:54 +0100118static void show_pte(unsigned long addr)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000119{
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100120 struct mm_struct *mm;
Will Deacon20a004e2018-02-15 11:14:56 +0000121 pgd_t *pgdp;
122 pgd_t pgd;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000123
Andrey Konovalov356607f2018-12-28 00:30:27 -0800124 if (is_ttbr0_addr(addr)) {
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100125 /* TTBR0 */
126 mm = current->active_mm;
127 if (mm == &init_mm) {
128 pr_alert("[%016lx] user address but active_mm is swapper\n",
129 addr);
130 return;
131 }
Andrey Konovalov356607f2018-12-28 00:30:27 -0800132 } else if (is_ttbr1_addr(addr)) {
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100133 /* TTBR1 */
Catalin Marinas1d18c472012-03-05 11:49:27 +0000134 mm = &init_mm;
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100135 } else {
136 pr_alert("[%016lx] address between user and kernel address ranges\n",
137 addr);
138 return;
139 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000140
Steve Capper5383cc62019-08-07 16:55:18 +0100141 pr_alert("%s pgtable: %luk pages, %llu-bit VAs, pgdp=%016lx\n",
Will Deacon1eb34b62017-05-15 15:23:58 +0100142 mm == &init_mm ? "swapper" : "user", PAGE_SIZE / SZ_1K,
Mark Rutlande4365f92019-10-03 10:49:32 +0100143 vabits_actual, mm_to_pgd_phys(mm));
Will Deacon20a004e2018-02-15 11:14:56 +0000144 pgdp = pgd_offset(mm, addr);
145 pgd = READ_ONCE(*pgdp);
146 pr_alert("[%016lx] pgd=%016llx", addr, pgd_val(pgd));
Catalin Marinas1d18c472012-03-05 11:49:27 +0000147
148 do {
Mike Rapoporte9f63762020-06-04 16:46:23 -0700149 p4d_t *p4dp, p4d;
Will Deacon20a004e2018-02-15 11:14:56 +0000150 pud_t *pudp, pud;
151 pmd_t *pmdp, pmd;
152 pte_t *ptep, pte;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000153
Will Deacon20a004e2018-02-15 11:14:56 +0000154 if (pgd_none(pgd) || pgd_bad(pgd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000155 break;
156
Mike Rapoporte9f63762020-06-04 16:46:23 -0700157 p4dp = p4d_offset(pgdp, addr);
158 p4d = READ_ONCE(*p4dp);
159 pr_cont(", p4d=%016llx", p4d_val(p4d));
160 if (p4d_none(p4d) || p4d_bad(p4d))
161 break;
162
163 pudp = pud_offset(p4dp, addr);
Will Deacon20a004e2018-02-15 11:14:56 +0000164 pud = READ_ONCE(*pudp);
165 pr_cont(", pud=%016llx", pud_val(pud));
166 if (pud_none(pud) || pud_bad(pud))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000167 break;
168
Will Deacon20a004e2018-02-15 11:14:56 +0000169 pmdp = pmd_offset(pudp, addr);
170 pmd = READ_ONCE(*pmdp);
171 pr_cont(", pmd=%016llx", pmd_val(pmd));
172 if (pmd_none(pmd) || pmd_bad(pmd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000173 break;
174
Will Deacon20a004e2018-02-15 11:14:56 +0000175 ptep = pte_offset_map(pmdp, addr);
176 pte = READ_ONCE(*ptep);
177 pr_cont(", pte=%016llx", pte_val(pte));
178 pte_unmap(ptep);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000179 } while(0);
180
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000181 pr_cont("\n");
Catalin Marinas1d18c472012-03-05 11:49:27 +0000182}
183
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100184/*
185 * This function sets the access flags (dirty, accessed), as well as write
186 * permission, and only to a more permissive setting.
187 *
188 * It needs to cope with hardware update of the accessed/dirty state by other
189 * agents in the system and can safely skip the __sync_icache_dcache() call as,
190 * like set_pte_at(), the PTE is never changed from no-exec to exec here.
191 *
192 * Returns whether or not the PTE actually changed.
193 */
194int ptep_set_access_flags(struct vm_area_struct *vma,
195 unsigned long address, pte_t *ptep,
196 pte_t entry, int dirty)
197{
Catalin Marinas3bbf7152017-06-26 14:27:36 +0100198 pteval_t old_pteval, pteval;
Will Deacon20a004e2018-02-15 11:14:56 +0000199 pte_t pte = READ_ONCE(*ptep);
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100200
Will Deacon20a004e2018-02-15 11:14:56 +0000201 if (pte_same(pte, entry))
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100202 return 0;
203
204 /* only preserve the access flags and write permission */
Catalin Marinas73e86cb2017-07-04 19:04:18 +0100205 pte_val(entry) &= PTE_RDONLY | PTE_AF | PTE_WRITE | PTE_DIRTY;
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100206
207 /*
208 * Setting the flags must be done atomically to avoid racing with the
Catalin Marinas6d332742017-07-25 14:53:03 +0100209 * hardware update of the access/dirty state. The PTE_RDONLY bit must
210 * be set to the most permissive (lowest value) of *ptep and entry
211 * (calculated as: a & b == ~(~a | ~b)).
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100212 */
Catalin Marinas6d332742017-07-25 14:53:03 +0100213 pte_val(entry) ^= PTE_RDONLY;
Will Deacon20a004e2018-02-15 11:14:56 +0000214 pteval = pte_val(pte);
Catalin Marinas3bbf7152017-06-26 14:27:36 +0100215 do {
216 old_pteval = pteval;
217 pteval ^= PTE_RDONLY;
218 pteval |= pte_val(entry);
219 pteval ^= PTE_RDONLY;
220 pteval = cmpxchg_relaxed(&pte_val(*ptep), old_pteval, pteval);
221 } while (pteval != old_pteval);
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100222
Will Deacon6a1bdb12020-09-30 13:20:40 +0100223 /* Invalidate a stale read-only entry */
224 if (dirty)
225 flush_tlb_page(vma, address);
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100226 return 1;
227}
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100228
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700229static bool is_el1_instruction_abort(unsigned int esr)
230{
231 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_CUR;
232}
233
Anshuman Khandualdbfe3822018-09-22 21:09:53 +0530234static inline bool is_el1_permission_fault(unsigned long addr, unsigned int esr,
235 struct pt_regs *regs)
Stephen Boydb824b932017-04-05 12:18:31 -0700236{
237 unsigned int ec = ESR_ELx_EC(esr);
238 unsigned int fsc_type = esr & ESR_ELx_FSC_TYPE;
239
240 if (ec != ESR_ELx_EC_DABT_CUR && ec != ESR_ELx_EC_IABT_CUR)
241 return false;
242
243 if (fsc_type == ESR_ELx_FSC_PERM)
244 return true;
245
Andrey Konovalov356607f2018-12-28 00:30:27 -0800246 if (is_ttbr0_addr(addr) && system_uses_ttbr0_pan())
Stephen Boydb824b932017-04-05 12:18:31 -0700247 return fsc_type == ESR_ELx_FSC_FAULT &&
248 (regs->pstate & PSR_PAN_BIT);
249
250 return false;
251}
252
Will Deacon42f91092019-08-22 17:22:14 +0100253static bool __kprobes is_spurious_el1_translation_fault(unsigned long addr,
254 unsigned int esr,
255 struct pt_regs *regs)
256{
257 unsigned long flags;
258 u64 par, dfsc;
259
260 if (ESR_ELx_EC(esr) != ESR_ELx_EC_DABT_CUR ||
261 (esr & ESR_ELx_FSC_TYPE) != ESR_ELx_FSC_FAULT)
262 return false;
263
264 local_irq_save(flags);
265 asm volatile("at s1e1r, %0" :: "r" (addr));
266 isb();
Rob Herring96d389ca2020-10-28 13:28:39 -0500267 par = read_sysreg_par();
Will Deacon42f91092019-08-22 17:22:14 +0100268 local_irq_restore(flags);
269
Mark Rutland38137332019-10-16 12:03:04 +0100270 /*
271 * If we now have a valid translation, treat the translation fault as
272 * spurious.
273 */
Will Deacon42f91092019-08-22 17:22:14 +0100274 if (!(par & SYS_PAR_EL1_F))
Mark Rutland38137332019-10-16 12:03:04 +0100275 return true;
Will Deacon42f91092019-08-22 17:22:14 +0100276
277 /*
278 * If we got a different type of fault from the AT instruction,
279 * treat the translation fault as spurious.
280 */
Mark Rutland308c5152019-10-04 14:58:47 +0100281 dfsc = FIELD_GET(SYS_PAR_EL1_FST, par);
Will Deacon42f91092019-08-22 17:22:14 +0100282 return (dfsc & ESR_ELx_FSC_TYPE) != ESR_ELx_FSC_FAULT;
283}
284
Mark Rutlandc870f142018-05-21 14:14:51 +0100285static void die_kernel_fault(const char *msg, unsigned long addr,
286 unsigned int esr, struct pt_regs *regs)
287{
288 bust_spinlocks(1);
289
290 pr_alert("Unable to handle kernel %s at virtual address %016lx\n", msg,
291 addr);
292
293 mem_abort_decode(esr);
294
295 show_pte(addr);
296 die("Oops", regs, esr);
297 bust_spinlocks(0);
298 do_exit(SIGKILL);
299}
300
Andrey Konovalov4291e9e2020-12-22 12:02:13 -0800301#ifdef CONFIG_KASAN_HW_TAGS
Vincenzo Frascino98c970d2020-12-22 12:01:35 -0800302static void report_tag_fault(unsigned long addr, unsigned int esr,
303 struct pt_regs *regs)
304{
Andrey Konovalov4291e9e2020-12-22 12:02:13 -0800305 bool is_write = ((esr & ESR_ELx_WNR) >> ESR_ELx_WNR_SHIFT) != 0;
306
307 /*
308 * SAS bits aren't set for all faults reported in EL1, so we can't
309 * find out access size.
310 */
311 kasan_report(addr, 0, is_write, regs->pc);
Vincenzo Frascino98c970d2020-12-22 12:01:35 -0800312}
Andrey Konovalov4291e9e2020-12-22 12:02:13 -0800313#else
314/* Tag faults aren't enabled without CONFIG_KASAN_HW_TAGS. */
315static inline void report_tag_fault(unsigned long addr, unsigned int esr,
316 struct pt_regs *regs) { }
317#endif
Vincenzo Frascino98c970d2020-12-22 12:01:35 -0800318
319static void do_tag_recovery(unsigned long addr, unsigned int esr,
320 struct pt_regs *regs)
321{
322 static bool reported;
323
324 if (!READ_ONCE(reported)) {
325 report_tag_fault(addr, esr, regs);
326 WRITE_ONCE(reported, true);
327 }
328
329 /*
330 * Disable MTE Tag Checking on the local CPU for the current EL.
331 * It will be done lazily on the other CPUs when they will hit a
332 * tag fault.
333 */
334 sysreg_clear_set(sctlr_el1, SCTLR_ELx_TCF_MASK, SCTLR_ELx_TCF_NONE);
335 isb();
336}
337
338static bool is_el1_mte_sync_tag_check_fault(unsigned int esr)
339{
340 unsigned int ec = ESR_ELx_EC(esr);
341 unsigned int fsc = esr & ESR_ELx_FSC;
342
343 if (ec != ESR_ELx_EC_DABT_CUR)
344 return false;
345
346 if (fsc == ESR_ELx_FSC_MTE)
347 return true;
348
349 return false;
350}
351
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100352static void __do_kernel_fault(unsigned long addr, unsigned int esr,
353 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000354{
Stephen Boydb824b932017-04-05 12:18:31 -0700355 const char *msg;
356
Catalin Marinas1d18c472012-03-05 11:49:27 +0000357 /*
358 * Are we prepared to handle this kernel fault?
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700359 * We are almost certainly not prepared to handle instruction faults.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000360 */
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700361 if (!is_el1_instruction_abort(esr) && fixup_exception(regs))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000362 return;
363
Will Deacon42f91092019-08-22 17:22:14 +0100364 if (WARN_RATELIMIT(is_spurious_el1_translation_fault(addr, esr, regs),
365 "Ignoring spurious kernel translation fault at virtual address %016lx\n", addr))
366 return;
367
Vincenzo Frascino98c970d2020-12-22 12:01:35 -0800368 if (is_el1_mte_sync_tag_check_fault(esr)) {
369 do_tag_recovery(addr, esr, regs);
370
371 return;
372 }
373
Anshuman Khandualdbfe3822018-09-22 21:09:53 +0530374 if (is_el1_permission_fault(addr, esr, regs)) {
Stephen Boydb824b932017-04-05 12:18:31 -0700375 if (esr & ESR_ELx_WNR)
376 msg = "write to read-only memory";
Xiang Zhenge44ec4a2019-10-29 20:41:31 +0800377 else if (is_el1_instruction_abort(esr))
378 msg = "execute from non-executable memory";
Stephen Boydb824b932017-04-05 12:18:31 -0700379 else
380 msg = "read from unreadable memory";
381 } else if (addr < PAGE_SIZE) {
382 msg = "NULL pointer dereference";
383 } else {
384 msg = "paging request";
385 }
386
Mark Rutlandc870f142018-05-21 14:14:51 +0100387 die_kernel_fault(msg, addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000388}
389
Eric W. Biedermanf29ad202018-09-22 09:37:55 +0200390static void set_thread_esr(unsigned long address, unsigned int esr)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000391{
Eric W. Biedermanf29ad202018-09-22 09:37:55 +0200392 current->thread.fault_address = address;
Peter Maydellcc198462018-05-22 17:11:20 +0100393
394 /*
395 * If the faulting address is in the kernel, we must sanitize the ESR.
396 * From userspace's point of view, kernel-only mappings don't exist
397 * at all, so we report them as level 0 translation faults.
398 * (This is not quite the way that "no mapping there at all" behaves:
399 * an alignment fault not caused by the memory type would take
400 * precedence over translation fault for a real access to empty
401 * space. Unfortunately we can't easily distinguish "alignment fault
402 * not caused by memory type" from "alignment fault caused by memory
403 * type", so we ignore this wrinkle and just return the translation
404 * fault.)
405 */
Andrey Konovalov356607f2018-12-28 00:30:27 -0800406 if (!is_ttbr0_addr(current->thread.fault_address)) {
Peter Maydellcc198462018-05-22 17:11:20 +0100407 switch (ESR_ELx_EC(esr)) {
408 case ESR_ELx_EC_DABT_LOW:
409 /*
410 * These bits provide only information about the
411 * faulting instruction, which userspace knows already.
412 * We explicitly clear bits which are architecturally
413 * RES0 in case they are given meanings in future.
414 * We always report the ESR as if the fault was taken
415 * to EL1 and so ISV and the bits in ISS[23:14] are
416 * clear. (In fact it always will be a fault to EL1.)
417 */
418 esr &= ESR_ELx_EC_MASK | ESR_ELx_IL |
419 ESR_ELx_CM | ESR_ELx_WNR;
420 esr |= ESR_ELx_FSC_FAULT;
421 break;
422 case ESR_ELx_EC_IABT_LOW:
423 /*
424 * Claim a level 0 translation fault.
425 * All other bits are architecturally RES0 for faults
426 * reported with that DFSC value, so we clear them.
427 */
428 esr &= ESR_ELx_EC_MASK | ESR_ELx_IL;
429 esr |= ESR_ELx_FSC_FAULT;
430 break;
431 default:
432 /*
433 * This should never happen (entry.S only brings us
434 * into this code for insn and data aborts from a lower
435 * exception level). Fail safe by not providing an ESR
436 * context record at all.
437 */
438 WARN(1, "ESR 0x%x is not DABT or IABT from EL0\n", esr);
439 esr = 0;
440 break;
441 }
442 }
443
Will Deacon92ff0672018-02-20 14:53:22 +0000444 current->thread.fault_code = esr;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000445}
446
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800447static void do_bad_area(unsigned long far, unsigned int esr,
448 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000449{
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800450 unsigned long addr = untagged_addr(far);
451
Catalin Marinas1d18c472012-03-05 11:49:27 +0000452 /*
453 * If we are in kernel mode at this point, we have no context to
454 * handle this fault with.
455 */
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700456 if (user_mode(regs)) {
Will Deacon92ff0672018-02-20 14:53:22 +0000457 const struct fault_info *inf = esr_to_fault_info(esr);
Eric W. Biederman3eb0f512018-04-17 15:26:37 -0500458
Eric W. Biedermaneffb0932018-09-22 10:05:41 +0200459 set_thread_esr(addr, esr);
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800460 arm64_force_sig_fault(inf->sig, inf->code, far, inf->name);
Will Deacon92ff0672018-02-20 14:53:22 +0000461 } else {
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100462 __do_kernel_fault(addr, esr, regs);
Will Deacon92ff0672018-02-20 14:53:22 +0000463 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000464}
465
466#define VM_FAULT_BADMAP 0x010000
467#define VM_FAULT_BADACCESS 0x020000
468
Souptick Joarder50a7ca32018-08-17 15:44:47 -0700469static vm_fault_t __do_page_fault(struct mm_struct *mm, unsigned long addr,
Peter Xu6a1bb022020-08-11 18:37:57 -0700470 unsigned int mm_flags, unsigned long vm_flags,
471 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000472{
Anshuman Khandual47452242019-06-07 14:43:06 +0530473 struct vm_area_struct *vma = find_vma(mm, addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000474
Catalin Marinas1d18c472012-03-05 11:49:27 +0000475 if (unlikely(!vma))
Anshuman Khandual47452242019-06-07 14:43:06 +0530476 return VM_FAULT_BADMAP;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000477
478 /*
479 * Ok, we have a good vm_area for this memory access, so we can handle
480 * it.
481 */
Anshuman Khandual47452242019-06-07 14:43:06 +0530482 if (unlikely(vma->vm_start > addr)) {
483 if (!(vma->vm_flags & VM_GROWSDOWN))
484 return VM_FAULT_BADMAP;
485 if (expand_stack(vma, addr))
486 return VM_FAULT_BADMAP;
487 }
488
Will Deacondb6f4102013-07-19 15:37:12 +0100489 /*
490 * Check that the permissions on the VMA allow for the fault which
Catalin Marinascab15ce2016-08-11 18:44:50 +0100491 * occurred.
Will Deacondb6f4102013-07-19 15:37:12 +0100492 */
Anshuman Khandual47452242019-06-07 14:43:06 +0530493 if (!(vma->vm_flags & vm_flags))
494 return VM_FAULT_BADACCESS;
Peter Xu6a1bb022020-08-11 18:37:57 -0700495 return handle_mm_fault(vma, addr & PAGE_MASK, mm_flags, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000496}
497
Mark Rutland541ec872016-05-31 12:33:03 +0100498static bool is_el0_instruction_abort(unsigned int esr)
499{
500 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_LOW;
501}
502
Anshuman Khandualc49bd022019-06-07 14:43:05 +0530503/*
504 * Note: not valid for EL1 DC IVAC, but we never use that such that it
505 * should fault. EL0 cannot issue DC IVAC (undef).
506 */
507static bool is_write_abort(unsigned int esr)
508{
509 return (esr & ESR_ELx_WNR) && !(esr & ESR_ELx_CM);
510}
511
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800512static int __kprobes do_page_fault(unsigned long far, unsigned int esr,
Catalin Marinas1d18c472012-03-05 11:49:27 +0000513 struct pt_regs *regs)
514{
Eric W. Biederman2d2837f2018-09-22 10:16:42 +0200515 const struct fault_info *inf;
Anshuman Khandual61681032019-06-03 12:11:23 +0530516 struct mm_struct *mm = current->mm;
Peter Xu6a1bb022020-08-11 18:37:57 -0700517 vm_fault_t fault;
Anshuman Khandual6cb4d9a2020-04-10 14:33:09 -0700518 unsigned long vm_flags = VM_ACCESS_FLAGS;
Peter Xudde16072020-04-01 21:08:37 -0700519 unsigned int mm_flags = FAULT_FLAG_DEFAULT;
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800520 unsigned long addr = untagged_addr(far);
Will Deacondb6f4102013-07-19 15:37:12 +0100521
Anshuman Khandualb98cca42019-07-16 16:28:00 -0700522 if (kprobe_page_fault(regs, esr))
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400523 return 0;
524
Catalin Marinas1d18c472012-03-05 11:49:27 +0000525 /*
526 * If we're in an interrupt or have no user context, we must not take
527 * the fault.
528 */
David Hildenbrand70ffdb92015-05-11 17:52:11 +0200529 if (faulthandler_disabled() || !mm)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000530 goto no_context;
531
Johannes Weiner759496b2013-09-12 15:13:39 -0700532 if (user_mode(regs))
533 mm_flags |= FAULT_FLAG_USER;
534
Mark Rutland541ec872016-05-31 12:33:03 +0100535 if (is_el0_instruction_abort(esr)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700536 vm_flags = VM_EXEC;
Anshuman Khandual01de1772019-05-05 09:45:12 +0530537 mm_flags |= FAULT_FLAG_INSTRUCTION;
Anshuman Khandualc49bd022019-06-07 14:43:05 +0530538 } else if (is_write_abort(esr)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700539 vm_flags = VM_WRITE;
540 mm_flags |= FAULT_FLAG_WRITE;
541 }
542
Andrey Konovalov356607f2018-12-28 00:30:27 -0800543 if (is_ttbr0_addr(addr) && is_el1_permission_fault(addr, esr, regs)) {
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700544 if (is_el1_instruction_abort(esr))
Mark Rutlandc870f142018-05-21 14:14:51 +0100545 die_kernel_fault("execution of user memory",
546 addr, esr, regs);
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700547
James Morse57f49592016-02-05 14:58:48 +0000548 if (!search_exception_tables(regs->pc))
Mark Rutlandc870f142018-05-21 14:14:51 +0100549 die_kernel_fault("access to user memory outside uaccess routines",
550 addr, esr, regs);
James Morse57f49592016-02-05 14:58:48 +0000551 }
James Morse338d4f42015-07-22 19:05:54 +0100552
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100553 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
554
James Morse338d4f42015-07-22 19:05:54 +0100555 /*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000556 * As per x86, we may deadlock here. However, since the kernel only
557 * validly references user space from well defined areas of the code,
558 * we can bug out early if this is from code which shouldn't.
559 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700560 if (!mmap_read_trylock(mm)) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000561 if (!user_mode(regs) && !search_exception_tables(regs->pc))
562 goto no_context;
563retry:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700564 mmap_read_lock(mm);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000565 } else {
566 /*
567 * The above down_read_trylock() might have succeeded in which
568 * case, we'll have missed the might_sleep() from down_read().
569 */
570 might_sleep();
571#ifdef CONFIG_DEBUG_VM
Anshuman Khanduala0509312019-06-03 12:11:22 +0530572 if (!user_mode(regs) && !search_exception_tables(regs->pc)) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700573 mmap_read_unlock(mm);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000574 goto no_context;
Anshuman Khanduala0509312019-06-03 12:11:22 +0530575 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000576#endif
577 }
578
Peter Xu6a1bb022020-08-11 18:37:57 -0700579 fault = __do_page_fault(mm, addr, mm_flags, vm_flags, regs);
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100580
Peter Xub502f032020-04-01 21:08:18 -0700581 /* Quick path to respond to signals */
582 if (fault_signal_pending(fault, regs)) {
583 if (!user_mode(regs))
584 goto no_context;
585 return 0;
586 }
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100587
Peter Xub502f032020-04-01 21:08:18 -0700588 if (fault & VM_FAULT_RETRY) {
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100589 if (mm_flags & FAULT_FLAG_ALLOW_RETRY) {
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100590 mm_flags |= FAULT_FLAG_TRIED;
591 goto retry;
592 }
593 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700594 mmap_read_unlock(mm);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000595
596 /*
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100597 * Handle the "normal" (no error) case first.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000598 */
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100599 if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP |
Peter Xu6a1bb022020-08-11 18:37:57 -0700600 VM_FAULT_BADACCESS))))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000601 return 0;
602
Johannes Weiner87134102013-09-12 15:13:38 -0700603 /*
604 * If we are in kernel mode at this point, we have no context to
605 * handle this fault with.
606 */
607 if (!user_mode(regs))
608 goto no_context;
609
Catalin Marinas1d18c472012-03-05 11:49:27 +0000610 if (fault & VM_FAULT_OOM) {
611 /*
612 * We ran out of memory, call the OOM killer, and return to
613 * userspace (which will retry the fault, or kill us if we got
614 * oom-killed).
615 */
616 pagefault_out_of_memory();
617 return 0;
618 }
619
Eric W. Biederman2d2837f2018-09-22 10:16:42 +0200620 inf = esr_to_fault_info(esr);
Eric W. Biederman559d8d92018-09-22 10:18:42 +0200621 set_thread_esr(addr, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000622 if (fault & VM_FAULT_SIGBUS) {
623 /*
624 * We had some memory, but were unable to successfully fix up
625 * this page fault.
626 */
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800627 arm64_force_sig_fault(SIGBUS, BUS_ADRERR, far, inf->name);
Eric W. Biederman9ea3a972018-09-22 09:46:39 +0200628 } else if (fault & (VM_FAULT_HWPOISON_LARGE | VM_FAULT_HWPOISON)) {
629 unsigned int lsb;
Will Deacon92ff0672018-02-20 14:53:22 +0000630
Eric W. Biederman9ea3a972018-09-22 09:46:39 +0200631 lsb = PAGE_SHIFT;
632 if (fault & VM_FAULT_HWPOISON_LARGE)
633 lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault));
Will Deacon92ff0672018-02-20 14:53:22 +0000634
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800635 arm64_force_sig_mceerr(BUS_MCEERR_AR, far, lsb, inf->name);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000636 } else {
637 /*
638 * Something tried to access memory that isn't in our memory
639 * map.
640 */
Eric W. Biedermanfeca3552018-09-22 10:26:57 +0200641 arm64_force_sig_fault(SIGSEGV,
642 fault == VM_FAULT_BADACCESS ? SEGV_ACCERR : SEGV_MAPERR,
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800643 far, inf->name);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000644 }
645
Catalin Marinas1d18c472012-03-05 11:49:27 +0000646 return 0;
647
648no_context:
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100649 __do_kernel_fault(addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000650 return 0;
651}
652
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800653static int __kprobes do_translation_fault(unsigned long far,
Catalin Marinas1d18c472012-03-05 11:49:27 +0000654 unsigned int esr,
655 struct pt_regs *regs)
656{
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800657 unsigned long addr = untagged_addr(far);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000658
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800659 if (is_ttbr0_addr(addr))
660 return do_page_fault(far, esr, regs);
661
662 do_bad_area(far, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000663 return 0;
664}
665
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800666static int do_alignment_fault(unsigned long far, unsigned int esr,
EunTaik Lee52d75232016-02-16 04:44:35 +0000667 struct pt_regs *regs)
668{
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800669 do_bad_area(far, esr, regs);
EunTaik Lee52d75232016-02-16 04:44:35 +0000670 return 0;
671}
672
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800673static int do_bad(unsigned long far, unsigned int esr, struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000674{
Will Deaconf67d5c42017-09-22 11:01:26 +0100675 return 1; /* "fault" */
Catalin Marinas1d18c472012-03-05 11:49:27 +0000676}
677
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800678static int do_sea(unsigned long far, unsigned int esr, struct pt_regs *regs)
Tyler Baicar32015c22017-06-21 12:17:08 -0600679{
Tyler Baicar32015c22017-06-21 12:17:08 -0600680 const struct fault_info *inf;
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800681 unsigned long siaddr;
Tyler Baicar32015c22017-06-21 12:17:08 -0600682
683 inf = esr_to_fault_info(esr);
Tyler Baicar32015c22017-06-21 12:17:08 -0600684
James Morse8fcc4ae2020-05-01 17:45:43 +0100685 if (user_mode(regs) && apei_claim_sea(regs) == 0) {
686 /*
687 * APEI claimed this as a firmware-first notification.
688 * Some processing deferred to task_work before ret_to_user().
689 */
690 return 0;
691 }
Tyler Baicar7edda082017-06-21 12:17:09 -0600692
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800693 if (esr & ESR_ELx_FnV) {
694 siaddr = 0;
695 } else {
696 /*
697 * The architecture specifies that the tag bits of FAR_EL1 are
698 * UNKNOWN for synchronous external aborts. Mask them out now
699 * so that userspace doesn't see them.
700 */
701 siaddr = untagged_addr(far);
702 }
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200703 arm64_notify_die(inf->name, regs, inf->sig, inf->code, siaddr, esr);
Tyler Baicar32015c22017-06-21 12:17:08 -0600704
Dongjiu Gengfaa75e12017-12-13 18:36:47 +0800705 return 0;
Tyler Baicar32015c22017-06-21 12:17:08 -0600706}
707
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800708static int do_tag_check_fault(unsigned long far, unsigned int esr,
Vincenzo Frascino637ec832019-09-16 11:51:17 +0100709 struct pt_regs *regs)
710{
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800711 /*
Andrey Konovalov3ed86b92021-01-15 18:41:53 +0100712 * The architecture specifies that bits 63:60 of FAR_EL1 are UNKNOWN
713 * for tag check faults. Set them to corresponding bits in the untagged
714 * address.
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800715 */
Andrey Konovalov3ed86b92021-01-15 18:41:53 +0100716 far = (__untagged_addr(far) & ~MTE_TAG_MASK) | (far & MTE_TAG_MASK);
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800717 do_bad_area(far, esr, regs);
Vincenzo Frascino637ec832019-09-16 11:51:17 +0100718 return 0;
719}
720
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700721static const struct fault_info fault_info[] = {
Dave Martinaf40ff62018-03-08 17:41:05 +0000722 { do_bad, SIGKILL, SI_KERNEL, "ttbr address size fault" },
723 { do_bad, SIGKILL, SI_KERNEL, "level 1 address size fault" },
724 { do_bad, SIGKILL, SI_KERNEL, "level 2 address size fault" },
725 { do_bad, SIGKILL, SI_KERNEL, "level 3 address size fault" },
Will Deacon7f73f7a2014-11-21 14:22:22 +0000726 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000727 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" },
728 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" },
Will Deacon760bfb42017-09-29 12:27:41 +0100729 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000730 { do_bad, SIGKILL, SI_KERNEL, "unknown 8" },
Steve Capper084bd292013-04-10 13:48:00 +0100731 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" },
732 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000733 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 access flag fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000734 { do_bad, SIGKILL, SI_KERNEL, "unknown 12" },
Steve Capper084bd292013-04-10 13:48:00 +0100735 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 permission fault" },
736 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 permission fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000737 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 permission fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000738 { do_sea, SIGBUS, BUS_OBJERR, "synchronous external abort" },
Vincenzo Frascino637ec832019-09-16 11:51:17 +0100739 { do_tag_check_fault, SIGSEGV, SEGV_MTESERR, "synchronous tag check fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000740 { do_bad, SIGKILL, SI_KERNEL, "unknown 18" },
741 { do_bad, SIGKILL, SI_KERNEL, "unknown 19" },
742 { do_sea, SIGKILL, SI_KERNEL, "level 0 (translation table walk)" },
743 { do_sea, SIGKILL, SI_KERNEL, "level 1 (translation table walk)" },
744 { do_sea, SIGKILL, SI_KERNEL, "level 2 (translation table walk)" },
745 { do_sea, SIGKILL, SI_KERNEL, "level 3 (translation table walk)" },
746 { do_sea, SIGBUS, BUS_OBJERR, "synchronous parity or ECC error" }, // Reserved when RAS is implemented
747 { do_bad, SIGKILL, SI_KERNEL, "unknown 25" },
748 { do_bad, SIGKILL, SI_KERNEL, "unknown 26" },
749 { do_bad, SIGKILL, SI_KERNEL, "unknown 27" },
750 { do_sea, SIGKILL, SI_KERNEL, "level 0 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
751 { do_sea, SIGKILL, SI_KERNEL, "level 1 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
752 { do_sea, SIGKILL, SI_KERNEL, "level 2 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
753 { do_sea, SIGKILL, SI_KERNEL, "level 3 synchronous parity error (translation table walk)" }, // Reserved when RAS is implemented
754 { do_bad, SIGKILL, SI_KERNEL, "unknown 32" },
EunTaik Lee52d75232016-02-16 04:44:35 +0000755 { do_alignment_fault, SIGBUS, BUS_ADRALN, "alignment fault" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000756 { do_bad, SIGKILL, SI_KERNEL, "unknown 34" },
757 { do_bad, SIGKILL, SI_KERNEL, "unknown 35" },
758 { do_bad, SIGKILL, SI_KERNEL, "unknown 36" },
759 { do_bad, SIGKILL, SI_KERNEL, "unknown 37" },
760 { do_bad, SIGKILL, SI_KERNEL, "unknown 38" },
761 { do_bad, SIGKILL, SI_KERNEL, "unknown 39" },
762 { do_bad, SIGKILL, SI_KERNEL, "unknown 40" },
763 { do_bad, SIGKILL, SI_KERNEL, "unknown 41" },
764 { do_bad, SIGKILL, SI_KERNEL, "unknown 42" },
765 { do_bad, SIGKILL, SI_KERNEL, "unknown 43" },
766 { do_bad, SIGKILL, SI_KERNEL, "unknown 44" },
767 { do_bad, SIGKILL, SI_KERNEL, "unknown 45" },
768 { do_bad, SIGKILL, SI_KERNEL, "unknown 46" },
769 { do_bad, SIGKILL, SI_KERNEL, "unknown 47" },
770 { do_bad, SIGKILL, SI_KERNEL, "TLB conflict abort" },
771 { do_bad, SIGKILL, SI_KERNEL, "Unsupported atomic hardware update fault" },
772 { do_bad, SIGKILL, SI_KERNEL, "unknown 50" },
773 { do_bad, SIGKILL, SI_KERNEL, "unknown 51" },
774 { do_bad, SIGKILL, SI_KERNEL, "implementation fault (lockdown abort)" },
775 { do_bad, SIGBUS, BUS_OBJERR, "implementation fault (unsupported exclusive)" },
776 { do_bad, SIGKILL, SI_KERNEL, "unknown 54" },
777 { do_bad, SIGKILL, SI_KERNEL, "unknown 55" },
778 { do_bad, SIGKILL, SI_KERNEL, "unknown 56" },
779 { do_bad, SIGKILL, SI_KERNEL, "unknown 57" },
780 { do_bad, SIGKILL, SI_KERNEL, "unknown 58" },
781 { do_bad, SIGKILL, SI_KERNEL, "unknown 59" },
782 { do_bad, SIGKILL, SI_KERNEL, "unknown 60" },
783 { do_bad, SIGKILL, SI_KERNEL, "section domain fault" },
784 { do_bad, SIGKILL, SI_KERNEL, "page domain fault" },
785 { do_bad, SIGKILL, SI_KERNEL, "unknown 63" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000786};
787
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800788void do_mem_abort(unsigned long far, unsigned int esr, struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000789{
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700790 const struct fault_info *inf = esr_to_fault_info(esr);
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800791 unsigned long addr = untagged_addr(far);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000792
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800793 if (!inf->fn(far, esr, regs))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000794 return;
795
Will Deacon1049c302018-02-20 14:41:02 +0000796 if (!user_mode(regs)) {
797 pr_alert("Unhandled fault at 0x%016lx\n", addr);
798 mem_abort_decode(esr);
Will Deacon80b6eb02017-10-31 15:56:11 +0000799 show_pte(addr);
Will Deacon1049c302018-02-20 14:41:02 +0000800 }
Mark Rutland42dbf542017-10-19 11:19:55 +0100801
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800802 /*
803 * At this point we have an unrecognized fault type whose tag bits may
804 * have been defined as UNKNOWN. Therefore we only expose the untagged
805 * address to the signal handler.
806 */
807 arm64_notify_die(inf->name, regs, inf->sig, inf->code, addr, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000808}
James Morseb6e43c02019-10-25 17:42:10 +0100809NOKPROBE_SYMBOL(do_mem_abort);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000810
James Morseafa7c0e2019-10-25 17:42:15 +0100811void do_el0_irq_bp_hardening(void)
Will Deacon30d88c02018-02-02 17:31:40 +0000812{
813 /* PC has already been checked in entry.S */
814 arm64_apply_bp_hardening();
815}
James Morseb6e43c02019-10-25 17:42:10 +0100816NOKPROBE_SYMBOL(do_el0_irq_bp_hardening);
Will Deacon30d88c02018-02-02 17:31:40 +0000817
James Morseafa7c0e2019-10-25 17:42:15 +0100818void do_sp_pc_abort(unsigned long addr, unsigned int esr, struct pt_regs *regs)
Will Deacon0f15adb2018-01-03 11:17:58 +0000819{
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800820 arm64_notify_die("SP/PC alignment exception", regs, SIGBUS, BUS_ADRALN,
821 addr, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000822}
James Morseb6e43c02019-10-25 17:42:10 +0100823NOKPROBE_SYMBOL(do_sp_pc_abort);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000824
Dave P Martin9fb74102015-07-24 16:37:48 +0100825int __init early_brk64(unsigned long addr, unsigned int esr,
826 struct pt_regs *regs);
827
828/*
829 * __refdata because early_brk64 is __init, but the reference to it is
830 * clobbered at arch_initcall time.
831 * See traps.c and debug-monitors.c:debug_traps_init().
832 */
833static struct fault_info __refdata debug_fault_info[] = {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000834 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware breakpoint" },
835 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware single-step" },
836 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware watchpoint" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000837 { do_bad, SIGKILL, SI_KERNEL, "unknown 3" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000838 { do_bad, SIGTRAP, TRAP_BRKPT, "aarch32 BKPT" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000839 { do_bad, SIGKILL, SI_KERNEL, "aarch32 vector catch" },
Dave P Martin9fb74102015-07-24 16:37:48 +0100840 { early_brk64, SIGTRAP, TRAP_BRKPT, "aarch64 BRK" },
Dave Martinaf40ff62018-03-08 17:41:05 +0000841 { do_bad, SIGKILL, SI_KERNEL, "unknown 7" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000842};
843
844void __init hook_debug_fault_code(int nr,
845 int (*fn)(unsigned long, unsigned int, struct pt_regs *),
846 int sig, int code, const char *name)
847{
848 BUG_ON(nr < 0 || nr >= ARRAY_SIZE(debug_fault_info));
849
850 debug_fault_info[nr].fn = fn;
851 debug_fault_info[nr].sig = sig;
852 debug_fault_info[nr].code = code;
853 debug_fault_info[nr].name = name;
854}
855
Masami Hiramatsud8bb6712019-08-01 23:36:14 +0900856/*
857 * In debug exception context, we explicitly disable preemption despite
858 * having interrupts disabled.
859 * This serves two purposes: it makes it much less likely that we would
860 * accidentally schedule in exception context and it will force a warning
861 * if we somehow manage to schedule by accident.
862 */
863static void debug_exception_enter(struct pt_regs *regs)
864{
Masami Hiramatsud8bb6712019-08-01 23:36:14 +0900865 preempt_disable();
866
867 /* This code is a bit fragile. Test it. */
868 RCU_LOCKDEP_WARN(!rcu_is_watching(), "exception_enter didn't work");
869}
870NOKPROBE_SYMBOL(debug_exception_enter);
871
872static void debug_exception_exit(struct pt_regs *regs)
873{
874 preempt_enable_no_resched();
Masami Hiramatsud8bb6712019-08-01 23:36:14 +0900875}
876NOKPROBE_SYMBOL(debug_exception_exit);
877
Will Deacon969f5ea2019-04-29 13:03:57 +0100878#ifdef CONFIG_ARM64_ERRATUM_1463225
879DECLARE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
880
James Morseb6e43c02019-10-25 17:42:10 +0100881static int cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
Will Deacon969f5ea2019-04-29 13:03:57 +0100882{
883 if (user_mode(regs))
884 return 0;
885
886 if (!__this_cpu_read(__in_cortex_a76_erratum_1463225_wa))
887 return 0;
888
889 /*
890 * We've taken a dummy step exception from the kernel to ensure
891 * that interrupts are re-enabled on the syscall path. Return back
892 * to cortex_a76_erratum_1463225_svc_handler() with debug exceptions
893 * masked so that we can safely restore the mdscr and get on with
894 * handling the syscall.
895 */
896 regs->pstate |= PSR_D_BIT;
897 return 1;
898}
899#else
James Morseb6e43c02019-10-25 17:42:10 +0100900static int cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
Will Deacon969f5ea2019-04-29 13:03:57 +0100901{
902 return 0;
903}
904#endif /* CONFIG_ARM64_ERRATUM_1463225 */
James Morseb6e43c02019-10-25 17:42:10 +0100905NOKPROBE_SYMBOL(cortex_a76_erratum_1463225_debug_handler);
Will Deacon969f5ea2019-04-29 13:03:57 +0100906
James Morseafa7c0e2019-10-25 17:42:15 +0100907void do_debug_exception(unsigned long addr_if_watchpoint, unsigned int esr,
908 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000909{
Anshuman Khandual359048f2018-09-22 21:09:54 +0530910 const struct fault_info *inf = esr_to_debug_fault_info(esr);
Will Deaconb9a4b9d2019-03-01 13:28:00 +0000911 unsigned long pc = instruction_pointer(regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000912
Will Deacon969f5ea2019-04-29 13:03:57 +0100913 if (cortex_a76_erratum_1463225_debug_handler(regs))
914 return;
915
Masami Hiramatsud8bb6712019-08-01 23:36:14 +0900916 debug_exception_enter(regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000917
Will Deaconb9a4b9d2019-03-01 13:28:00 +0000918 if (user_mode(regs) && !is_ttbr0_addr(pc))
Will Deacon5dfc6ed2018-02-02 17:31:39 +0000919 arm64_apply_bp_hardening();
920
Will Deacon52c6d142019-02-25 12:06:43 +0000921 if (inf->fn(addr_if_watchpoint, esr, regs)) {
Peter Collingbournedceec3f2020-11-20 12:33:46 -0800922 arm64_notify_die(inf->name, regs, inf->sig, inf->code, pc, esr);
James Morse6afedcd2016-04-13 13:40:00 +0100923 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000924
Masami Hiramatsud8bb6712019-08-01 23:36:14 +0900925 debug_exception_exit(regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000926}
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400927NOKPROBE_SYMBOL(do_debug_exception);