blob: f75ed5c4b9945a8d321b8a7028b0b4e59afe68e8 [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
Paul Gortmaker0edfa832016-09-19 17:38:55 -040021#include <linux/extable.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000022#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 Molnar3f07c012017-02-08 18:51:30 +010029#include <linux/sched/signal.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010030#include <linux/sched/debug.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000031#include <linux/highmem.h>
32#include <linux/perf_event.h>
James Morse7209c862016-10-18 11:27:47 +010033#include <linux/preempt.h>
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +010034#include <linux/hugetlb.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000035
James Morse7209c862016-10-18 11:27:47 +010036#include <asm/bug.h>
Catalin Marinas3bbf7152017-06-26 14:27:36 +010037#include <asm/cmpxchg.h>
James Morse338d4f42015-07-22 19:05:54 +010038#include <asm/cpufeature.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000039#include <asm/exception.h>
40#include <asm/debug-monitors.h>
Catalin Marinas91413002014-04-06 23:04:12 +010041#include <asm/esr.h>
James Morse338d4f42015-07-22 19:05:54 +010042#include <asm/sysreg.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000043#include <asm/system_misc.h>
44#include <asm/pgtable.h>
45#include <asm/tlbflush.h>
46
Tyler Baicar7edda082017-06-21 12:17:09 -060047#include <acpi/ghes.h>
48
Victor Kamensky09a6adf2017-04-03 22:51:01 -070049struct fault_info {
50 int (*fn)(unsigned long addr, unsigned int esr,
51 struct pt_regs *regs);
52 int sig;
53 int code;
54 const char *name;
55};
56
57static const struct fault_info fault_info[];
58
59static inline const struct fault_info *esr_to_fault_info(unsigned int esr)
60{
61 return fault_info + (esr & 63);
62}
Catalin Marinas3495386b2012-10-24 16:34:02 +010063
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -040064#ifdef CONFIG_KPROBES
65static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr)
66{
67 int ret = 0;
68
69 /* kprobe_running() needs smp_processor_id() */
70 if (!user_mode(regs)) {
71 preempt_disable();
72 if (kprobe_running() && kprobe_fault_handler(regs, esr))
73 ret = 1;
74 preempt_enable();
75 }
76
77 return ret;
78}
79#else
80static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr)
81{
82 return 0;
83}
84#endif
85
Julien Thierry1f9b8932017-08-04 09:31:42 +010086static void data_abort_decode(unsigned int esr)
87{
88 pr_alert("Data abort info:\n");
89
90 if (esr & ESR_ELx_ISV) {
91 pr_alert(" Access size = %u byte(s)\n",
92 1U << ((esr & ESR_ELx_SAS) >> ESR_ELx_SAS_SHIFT));
93 pr_alert(" SSE = %lu, SRT = %lu\n",
94 (esr & ESR_ELx_SSE) >> ESR_ELx_SSE_SHIFT,
95 (esr & ESR_ELx_SRT_MASK) >> ESR_ELx_SRT_SHIFT);
96 pr_alert(" SF = %lu, AR = %lu\n",
97 (esr & ESR_ELx_SF) >> ESR_ELx_SF_SHIFT,
98 (esr & ESR_ELx_AR) >> ESR_ELx_AR_SHIFT);
99 } else {
100 pr_alert(" ISV = 0, ISS = 0x%08lu\n", esr & ESR_ELx_ISS_MASK);
101 }
102
103 pr_alert(" CM = %lu, WnR = %lu\n",
104 (esr & ESR_ELx_CM) >> ESR_ELx_CM_SHIFT,
105 (esr & ESR_ELx_WNR) >> ESR_ELx_WNR_SHIFT);
106}
107
108/*
109 * Decode mem abort information
110 */
111static void mem_abort_decode(unsigned int esr)
112{
113 pr_alert("Mem abort info:\n");
114
115 pr_alert(" Exception class = %s, IL = %u bits\n",
116 esr_get_class_string(esr),
117 (esr & ESR_ELx_IL) ? 32 : 16);
118 pr_alert(" SET = %lu, FnV = %lu\n",
119 (esr & ESR_ELx_SET_MASK) >> ESR_ELx_SET_SHIFT,
120 (esr & ESR_ELx_FnV) >> ESR_ELx_FnV_SHIFT);
121 pr_alert(" EA = %lu, S1PTW = %lu\n",
122 (esr & ESR_ELx_EA) >> ESR_ELx_EA_SHIFT,
123 (esr & ESR_ELx_S1PTW) >> ESR_ELx_S1PTW_SHIFT);
124
125 if (esr_is_data_abort(esr))
126 data_abort_decode(esr);
127}
128
Catalin Marinas1d18c472012-03-05 11:49:27 +0000129/*
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100130 * Dump out the page tables associated with 'addr' in the currently active mm.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000131 */
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100132void show_pte(unsigned long addr)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000133{
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100134 struct mm_struct *mm;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000135 pgd_t *pgd;
136
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100137 if (addr < TASK_SIZE) {
138 /* TTBR0 */
139 mm = current->active_mm;
140 if (mm == &init_mm) {
141 pr_alert("[%016lx] user address but active_mm is swapper\n",
142 addr);
143 return;
144 }
145 } else if (addr >= VA_START) {
146 /* TTBR1 */
Catalin Marinas1d18c472012-03-05 11:49:27 +0000147 mm = &init_mm;
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100148 } else {
149 pr_alert("[%016lx] address between user and kernel address ranges\n",
150 addr);
151 return;
152 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000153
Will Deacon1eb34b62017-05-15 15:23:58 +0100154 pr_alert("%s pgtable: %luk pages, %u-bit VAs, pgd = %p\n",
155 mm == &init_mm ? "swapper" : "user", PAGE_SIZE / SZ_1K,
156 VA_BITS, mm->pgd);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000157 pgd = pgd_offset(mm, addr);
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100158 pr_alert("[%016lx] *pgd=%016llx", addr, pgd_val(*pgd));
Catalin Marinas1d18c472012-03-05 11:49:27 +0000159
160 do {
161 pud_t *pud;
162 pmd_t *pmd;
163 pte_t *pte;
164
Steve Capper4339e3f32013-04-19 15:49:31 +0100165 if (pgd_none(*pgd) || pgd_bad(*pgd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000166 break;
167
168 pud = pud_offset(pgd, addr);
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000169 pr_cont(", *pud=%016llx", pud_val(*pud));
Steve Capper4339e3f32013-04-19 15:49:31 +0100170 if (pud_none(*pud) || pud_bad(*pud))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000171 break;
172
173 pmd = pmd_offset(pud, addr);
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000174 pr_cont(", *pmd=%016llx", pmd_val(*pmd));
Steve Capper4339e3f32013-04-19 15:49:31 +0100175 if (pmd_none(*pmd) || pmd_bad(*pmd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000176 break;
177
178 pte = pte_offset_map(pmd, addr);
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000179 pr_cont(", *pte=%016llx", pte_val(*pte));
Catalin Marinas1d18c472012-03-05 11:49:27 +0000180 pte_unmap(pte);
181 } while(0);
182
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000183 pr_cont("\n");
Catalin Marinas1d18c472012-03-05 11:49:27 +0000184}
185
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100186#ifdef CONFIG_ARM64_HW_AFDBM
187/*
188 * This function sets the access flags (dirty, accessed), as well as write
189 * permission, and only to a more permissive setting.
190 *
191 * It needs to cope with hardware update of the accessed/dirty state by other
192 * agents in the system and can safely skip the __sync_icache_dcache() call as,
193 * like set_pte_at(), the PTE is never changed from no-exec to exec here.
194 *
195 * Returns whether or not the PTE actually changed.
196 */
197int ptep_set_access_flags(struct vm_area_struct *vma,
198 unsigned long address, pte_t *ptep,
199 pte_t entry, int dirty)
200{
Catalin Marinas3bbf7152017-06-26 14:27:36 +0100201 pteval_t old_pteval, pteval;
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100202
203 if (pte_same(*ptep, entry))
204 return 0;
205
206 /* only preserve the access flags and write permission */
Catalin Marinas73e86cb2017-07-04 19:04:18 +0100207 pte_val(entry) &= PTE_RDONLY | PTE_AF | PTE_WRITE | PTE_DIRTY;
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100208
209 /*
210 * Setting the flags must be done atomically to avoid racing with the
Catalin Marinas6d332742017-07-25 14:53:03 +0100211 * hardware update of the access/dirty state. The PTE_RDONLY bit must
212 * be set to the most permissive (lowest value) of *ptep and entry
213 * (calculated as: a & b == ~(~a | ~b)).
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100214 */
Catalin Marinas6d332742017-07-25 14:53:03 +0100215 pte_val(entry) ^= PTE_RDONLY;
Catalin Marinas3bbf7152017-06-26 14:27:36 +0100216 pteval = READ_ONCE(pte_val(*ptep));
217 do {
218 old_pteval = pteval;
219 pteval ^= PTE_RDONLY;
220 pteval |= pte_val(entry);
221 pteval ^= PTE_RDONLY;
222 pteval = cmpxchg_relaxed(&pte_val(*ptep), old_pteval, pteval);
223 } while (pteval != old_pteval);
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100224
225 flush_tlb_fix_spurious_fault(vma, address);
226 return 1;
227}
228#endif
229
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700230static bool is_el1_instruction_abort(unsigned int esr)
231{
232 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_CUR;
233}
234
Stephen Boydb824b932017-04-05 12:18:31 -0700235static inline bool is_permission_fault(unsigned int esr, struct pt_regs *regs,
236 unsigned long addr)
237{
238 unsigned int ec = ESR_ELx_EC(esr);
239 unsigned int fsc_type = esr & ESR_ELx_FSC_TYPE;
240
241 if (ec != ESR_ELx_EC_DABT_CUR && ec != ESR_ELx_EC_IABT_CUR)
242 return false;
243
244 if (fsc_type == ESR_ELx_FSC_PERM)
245 return true;
246
247 if (addr < USER_DS && system_uses_ttbr0_pan())
248 return fsc_type == ESR_ELx_FSC_FAULT &&
249 (regs->pstate & PSR_PAN_BIT);
250
251 return false;
252}
253
Catalin Marinas1d18c472012-03-05 11:49:27 +0000254/*
255 * The kernel tried to access some page that wasn't present.
256 */
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100257static void __do_kernel_fault(unsigned long addr, unsigned int esr,
258 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000259{
Stephen Boydb824b932017-04-05 12:18:31 -0700260 const char *msg;
261
Catalin Marinas1d18c472012-03-05 11:49:27 +0000262 /*
263 * Are we prepared to handle this kernel fault?
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700264 * We are almost certainly not prepared to handle instruction faults.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000265 */
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700266 if (!is_el1_instruction_abort(esr) && fixup_exception(regs))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000267 return;
268
269 /*
270 * No handler, we'll have to terminate things with extreme prejudice.
271 */
272 bust_spinlocks(1);
Stephen Boydb824b932017-04-05 12:18:31 -0700273
274 if (is_permission_fault(esr, regs, addr)) {
275 if (esr & ESR_ELx_WNR)
276 msg = "write to read-only memory";
277 else
278 msg = "read from unreadable memory";
279 } else if (addr < PAGE_SIZE) {
280 msg = "NULL pointer dereference";
281 } else {
282 msg = "paging request";
283 }
284
285 pr_alert("Unable to handle kernel %s at virtual address %08lx\n", msg,
286 addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000287
Julien Thierry1f9b8932017-08-04 09:31:42 +0100288 mem_abort_decode(esr);
289
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100290 show_pte(addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000291 die("Oops", regs, esr);
292 bust_spinlocks(0);
293 do_exit(SIGKILL);
294}
295
296/*
297 * Something tried to access memory that isn't in our memory map. User mode
298 * accesses just cause a SIGSEGV
299 */
300static void __do_user_fault(struct task_struct *tsk, unsigned long addr,
301 unsigned int esr, unsigned int sig, int code,
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100302 struct pt_regs *regs, int fault)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000303{
304 struct siginfo si;
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700305 const struct fault_info *inf;
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100306 unsigned int lsb = 0;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000307
Suzuki K. Poulosef871d262015-07-03 15:08:08 +0100308 if (unhandled_signal(tsk, sig) && show_unhandled_signals_ratelimited()) {
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700309 inf = esr_to_fault_info(esr);
Kristina Martsenko83016b22017-06-09 16:35:54 +0100310 pr_info("%s[%d]: unhandled %s (%d) at 0x%08lx, esr 0x%03x",
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700311 tsk->comm, task_pid_nr(tsk), inf->name, sig,
Catalin Marinas3495386b2012-10-24 16:34:02 +0100312 addr, esr);
Kristina Martsenko83016b22017-06-09 16:35:54 +0100313 print_vma_addr(KERN_CONT ", in ", regs->pc);
314 pr_cont("\n");
Kefeng Wangc07ab952017-05-09 09:53:36 +0800315 __show_regs(regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000316 }
317
318 tsk->thread.fault_address = addr;
Catalin Marinas91413002014-04-06 23:04:12 +0100319 tsk->thread.fault_code = esr;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000320 si.si_signo = sig;
321 si.si_errno = 0;
322 si.si_code = code;
323 si.si_addr = (void __user *)addr;
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100324 /*
325 * Either small page or large page may be poisoned.
326 * In other words, VM_FAULT_HWPOISON_LARGE and
327 * VM_FAULT_HWPOISON are mutually exclusive.
328 */
329 if (fault & VM_FAULT_HWPOISON_LARGE)
330 lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault));
331 else if (fault & VM_FAULT_HWPOISON)
332 lsb = PAGE_SHIFT;
333 si.si_addr_lsb = lsb;
334
Catalin Marinas1d18c472012-03-05 11:49:27 +0000335 force_sig_info(sig, &si, tsk);
336}
337
Catalin Marinas59f67e12013-09-16 15:18:28 +0100338static void do_bad_area(unsigned long addr, unsigned int esr, struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000339{
340 struct task_struct *tsk = current;
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700341 const struct fault_info *inf;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000342
343 /*
344 * If we are in kernel mode at this point, we have no context to
345 * handle this fault with.
346 */
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700347 if (user_mode(regs)) {
348 inf = esr_to_fault_info(esr);
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100349 __do_user_fault(tsk, addr, esr, inf->sig, inf->code, regs, 0);
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700350 } else
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100351 __do_kernel_fault(addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000352}
353
354#define VM_FAULT_BADMAP 0x010000
355#define VM_FAULT_BADACCESS 0x020000
356
Catalin Marinas1d18c472012-03-05 11:49:27 +0000357static int __do_page_fault(struct mm_struct *mm, unsigned long addr,
Will Deacondb6f4102013-07-19 15:37:12 +0100358 unsigned int mm_flags, unsigned long vm_flags,
Catalin Marinas1d18c472012-03-05 11:49:27 +0000359 struct task_struct *tsk)
360{
361 struct vm_area_struct *vma;
362 int fault;
363
364 vma = find_vma(mm, addr);
365 fault = VM_FAULT_BADMAP;
366 if (unlikely(!vma))
367 goto out;
368 if (unlikely(vma->vm_start > addr))
369 goto check_stack;
370
371 /*
372 * Ok, we have a good vm_area for this memory access, so we can handle
373 * it.
374 */
375good_area:
Will Deacondb6f4102013-07-19 15:37:12 +0100376 /*
377 * Check that the permissions on the VMA allow for the fault which
Catalin Marinascab15ce2016-08-11 18:44:50 +0100378 * occurred.
Will Deacondb6f4102013-07-19 15:37:12 +0100379 */
380 if (!(vma->vm_flags & vm_flags)) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000381 fault = VM_FAULT_BADACCESS;
382 goto out;
383 }
384
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700385 return handle_mm_fault(vma, addr & PAGE_MASK, mm_flags);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000386
387check_stack:
388 if (vma->vm_flags & VM_GROWSDOWN && !expand_stack(vma, addr))
389 goto good_area;
390out:
391 return fault;
392}
393
Mark Rutland541ec872016-05-31 12:33:03 +0100394static bool is_el0_instruction_abort(unsigned int esr)
395{
396 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_LOW;
397}
398
Catalin Marinas1d18c472012-03-05 11:49:27 +0000399static int __kprobes do_page_fault(unsigned long addr, unsigned int esr,
400 struct pt_regs *regs)
401{
402 struct task_struct *tsk;
403 struct mm_struct *mm;
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100404 int fault, sig, code, major = 0;
Catalin Marinascab15ce2016-08-11 18:44:50 +0100405 unsigned long vm_flags = VM_READ | VM_WRITE;
Will Deacondb6f4102013-07-19 15:37:12 +0100406 unsigned int mm_flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
407
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400408 if (notify_page_fault(regs, esr))
409 return 0;
410
Catalin Marinas1d18c472012-03-05 11:49:27 +0000411 tsk = current;
412 mm = tsk->mm;
413
Catalin Marinas1d18c472012-03-05 11:49:27 +0000414 /*
415 * If we're in an interrupt or have no user context, we must not take
416 * the fault.
417 */
David Hildenbrand70ffdb92015-05-11 17:52:11 +0200418 if (faulthandler_disabled() || !mm)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000419 goto no_context;
420
Johannes Weiner759496b2013-09-12 15:13:39 -0700421 if (user_mode(regs))
422 mm_flags |= FAULT_FLAG_USER;
423
Mark Rutland541ec872016-05-31 12:33:03 +0100424 if (is_el0_instruction_abort(esr)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700425 vm_flags = VM_EXEC;
Mark Rutlandaed40e02014-11-24 12:31:40 +0000426 } else if ((esr & ESR_ELx_WNR) && !(esr & ESR_ELx_CM)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700427 vm_flags = VM_WRITE;
428 mm_flags |= FAULT_FLAG_WRITE;
429 }
430
Stephen Boydb824b932017-04-05 12:18:31 -0700431 if (addr < USER_DS && is_permission_fault(esr, regs, addr)) {
James Morsee19a6ee2016-06-20 18:28:01 +0100432 /* regs->orig_addr_limit may be 0 if we entered from EL0 */
433 if (regs->orig_addr_limit == KERNEL_DS)
Catalin Marinas70c8abc2016-02-19 14:28:58 +0000434 die("Accessing user space memory with fs=KERNEL_DS", regs, esr);
James Morse70544192016-02-05 14:58:50 +0000435
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700436 if (is_el1_instruction_abort(esr))
437 die("Attempting to execute userspace memory", regs, esr);
438
James Morse57f49592016-02-05 14:58:48 +0000439 if (!search_exception_tables(regs->pc))
Catalin Marinas70c8abc2016-02-19 14:28:58 +0000440 die("Accessing user space memory outside uaccess.h routines", regs, esr);
James Morse57f49592016-02-05 14:58:48 +0000441 }
James Morse338d4f42015-07-22 19:05:54 +0100442
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100443 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
444
James Morse338d4f42015-07-22 19:05:54 +0100445 /*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000446 * As per x86, we may deadlock here. However, since the kernel only
447 * validly references user space from well defined areas of the code,
448 * we can bug out early if this is from code which shouldn't.
449 */
450 if (!down_read_trylock(&mm->mmap_sem)) {
451 if (!user_mode(regs) && !search_exception_tables(regs->pc))
452 goto no_context;
453retry:
454 down_read(&mm->mmap_sem);
455 } else {
456 /*
457 * The above down_read_trylock() might have succeeded in which
458 * case, we'll have missed the might_sleep() from down_read().
459 */
460 might_sleep();
461#ifdef CONFIG_DEBUG_VM
462 if (!user_mode(regs) && !search_exception_tables(regs->pc))
463 goto no_context;
464#endif
465 }
466
Will Deacondb6f4102013-07-19 15:37:12 +0100467 fault = __do_page_fault(mm, addr, mm_flags, vm_flags, tsk);
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100468 major |= fault & VM_FAULT_MAJOR;
469
470 if (fault & VM_FAULT_RETRY) {
471 /*
472 * If we need to retry but a fatal signal is pending,
473 * handle the signal first. We do not need to release
474 * the mmap_sem because it would already be released
475 * in __lock_page_or_retry in mm/filemap.c.
476 */
477 if (fatal_signal_pending(current))
478 return 0;
479
480 /*
481 * Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk of
482 * starvation.
483 */
484 if (mm_flags & FAULT_FLAG_ALLOW_RETRY) {
485 mm_flags &= ~FAULT_FLAG_ALLOW_RETRY;
486 mm_flags |= FAULT_FLAG_TRIED;
487 goto retry;
488 }
489 }
490 up_read(&mm->mmap_sem);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000491
492 /*
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100493 * Handle the "normal" (no error) case first.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000494 */
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100495 if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP |
496 VM_FAULT_BADACCESS)))) {
497 /*
498 * Major/minor page fault accounting is only done
499 * once. If we go through a retry, it is extremely
500 * likely that the page will be found in page cache at
501 * that point.
502 */
503 if (major) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000504 tsk->maj_flt++;
505 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs,
506 addr);
507 } else {
508 tsk->min_flt++;
509 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs,
510 addr);
511 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000512
Catalin Marinas1d18c472012-03-05 11:49:27 +0000513 return 0;
Punit Agrawal0e3a9022017-06-08 18:25:28 +0100514 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000515
Johannes Weiner87134102013-09-12 15:13:38 -0700516 /*
517 * If we are in kernel mode at this point, we have no context to
518 * handle this fault with.
519 */
520 if (!user_mode(regs))
521 goto no_context;
522
Catalin Marinas1d18c472012-03-05 11:49:27 +0000523 if (fault & VM_FAULT_OOM) {
524 /*
525 * We ran out of memory, call the OOM killer, and return to
526 * userspace (which will retry the fault, or kill us if we got
527 * oom-killed).
528 */
529 pagefault_out_of_memory();
530 return 0;
531 }
532
Catalin Marinas1d18c472012-03-05 11:49:27 +0000533 if (fault & VM_FAULT_SIGBUS) {
534 /*
535 * We had some memory, but were unable to successfully fix up
536 * this page fault.
537 */
538 sig = SIGBUS;
539 code = BUS_ADRERR;
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100540 } else if (fault & (VM_FAULT_HWPOISON | VM_FAULT_HWPOISON_LARGE)) {
541 sig = SIGBUS;
542 code = BUS_MCEERR_AR;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000543 } else {
544 /*
545 * Something tried to access memory that isn't in our memory
546 * map.
547 */
548 sig = SIGSEGV;
549 code = fault == VM_FAULT_BADACCESS ?
550 SEGV_ACCERR : SEGV_MAPERR;
551 }
552
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100553 __do_user_fault(tsk, addr, esr, sig, code, regs, fault);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000554 return 0;
555
556no_context:
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100557 __do_kernel_fault(addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000558 return 0;
559}
560
561/*
562 * First Level Translation Fault Handler
563 *
564 * We enter here because the first level page table doesn't contain a valid
565 * entry for the address.
566 *
567 * If the address is in kernel space (>= TASK_SIZE), then we are probably
568 * faulting in the vmalloc() area.
569 *
570 * If the init_task's first level page tables contains the relevant entry, we
571 * copy the it to this task. If not, we send the process a signal, fixup the
572 * exception, or oops the kernel.
573 *
574 * NOTE! We MUST NOT take any locks for this case. We may be in an interrupt
575 * or a critical region, and should only copy the information from the master
576 * page table, nothing more.
577 */
578static int __kprobes do_translation_fault(unsigned long addr,
579 unsigned int esr,
580 struct pt_regs *regs)
581{
582 if (addr < TASK_SIZE)
583 return do_page_fault(addr, esr, regs);
584
585 do_bad_area(addr, esr, regs);
586 return 0;
587}
588
EunTaik Lee52d75232016-02-16 04:44:35 +0000589static int do_alignment_fault(unsigned long addr, unsigned int esr,
590 struct pt_regs *regs)
591{
592 do_bad_area(addr, esr, regs);
593 return 0;
594}
595
Catalin Marinas1d18c472012-03-05 11:49:27 +0000596/*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000597 * This abort handler always returns "fault".
598 */
599static int do_bad(unsigned long addr, unsigned int esr, struct pt_regs *regs)
600{
601 return 1;
602}
603
Tyler Baicar32015c22017-06-21 12:17:08 -0600604/*
605 * This abort handler deals with Synchronous External Abort.
606 * It calls notifiers, and then returns "fault".
607 */
608static int do_sea(unsigned long addr, unsigned int esr, struct pt_regs *regs)
609{
610 struct siginfo info;
611 const struct fault_info *inf;
Tyler Baicar621f48e2017-06-21 12:17:14 -0600612 int ret = 0;
Tyler Baicar32015c22017-06-21 12:17:08 -0600613
614 inf = esr_to_fault_info(esr);
615 pr_err("Synchronous External Abort: %s (0x%08x) at 0x%016lx\n",
616 inf->name, esr, addr);
617
Tyler Baicar7edda082017-06-21 12:17:09 -0600618 /*
619 * Synchronous aborts may interrupt code which had interrupts masked.
620 * Before calling out into the wider kernel tell the interested
621 * subsystems.
622 */
623 if (IS_ENABLED(CONFIG_ACPI_APEI_SEA)) {
624 if (interrupts_enabled(regs))
625 nmi_enter();
626
Tyler Baicar621f48e2017-06-21 12:17:14 -0600627 ret = ghes_notify_sea();
Tyler Baicar7edda082017-06-21 12:17:09 -0600628
629 if (interrupts_enabled(regs))
630 nmi_exit();
631 }
632
Tyler Baicar32015c22017-06-21 12:17:08 -0600633 info.si_signo = SIGBUS;
634 info.si_errno = 0;
635 info.si_code = 0;
636 if (esr & ESR_ELx_FnV)
637 info.si_addr = NULL;
638 else
639 info.si_addr = (void __user *)addr;
640 arm64_notify_die("", regs, &info, esr);
641
Tyler Baicar621f48e2017-06-21 12:17:14 -0600642 return ret;
Tyler Baicar32015c22017-06-21 12:17:08 -0600643}
644
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700645static const struct fault_info fault_info[] = {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000646 { do_bad, SIGBUS, 0, "ttbr address size fault" },
647 { do_bad, SIGBUS, 0, "level 1 address size fault" },
648 { do_bad, SIGBUS, 0, "level 2 address size fault" },
649 { do_bad, SIGBUS, 0, "level 3 address size fault" },
Will Deacon7f73f7a2014-11-21 14:22:22 +0000650 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000651 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" },
652 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" },
653 { do_page_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000654 { do_bad, SIGBUS, 0, "unknown 8" },
Steve Capper084bd292013-04-10 13:48:00 +0100655 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" },
656 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000657 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 access flag fault" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000658 { do_bad, SIGBUS, 0, "unknown 12" },
Steve Capper084bd292013-04-10 13:48:00 +0100659 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 permission fault" },
660 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 permission fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000661 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 permission fault" },
Tyler Baicar32015c22017-06-21 12:17:08 -0600662 { do_sea, SIGBUS, 0, "synchronous external abort" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000663 { do_bad, SIGBUS, 0, "unknown 17" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000664 { do_bad, SIGBUS, 0, "unknown 18" },
665 { do_bad, SIGBUS, 0, "unknown 19" },
Tyler Baicar32015c22017-06-21 12:17:08 -0600666 { do_sea, SIGBUS, 0, "level 0 (translation table walk)" },
667 { do_sea, SIGBUS, 0, "level 1 (translation table walk)" },
668 { do_sea, SIGBUS, 0, "level 2 (translation table walk)" },
669 { do_sea, SIGBUS, 0, "level 3 (translation table walk)" },
670 { do_sea, SIGBUS, 0, "synchronous parity or ECC error" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000671 { do_bad, SIGBUS, 0, "unknown 25" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000672 { do_bad, SIGBUS, 0, "unknown 26" },
673 { do_bad, SIGBUS, 0, "unknown 27" },
Tyler Baicar32015c22017-06-21 12:17:08 -0600674 { do_sea, SIGBUS, 0, "level 0 synchronous parity error (translation table walk)" },
675 { do_sea, SIGBUS, 0, "level 1 synchronous parity error (translation table walk)" },
676 { do_sea, SIGBUS, 0, "level 2 synchronous parity error (translation table walk)" },
677 { do_sea, SIGBUS, 0, "level 3 synchronous parity error (translation table walk)" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000678 { do_bad, SIGBUS, 0, "unknown 32" },
EunTaik Lee52d75232016-02-16 04:44:35 +0000679 { do_alignment_fault, SIGBUS, BUS_ADRALN, "alignment fault" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000680 { do_bad, SIGBUS, 0, "unknown 34" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000681 { do_bad, SIGBUS, 0, "unknown 35" },
682 { do_bad, SIGBUS, 0, "unknown 36" },
683 { do_bad, SIGBUS, 0, "unknown 37" },
684 { do_bad, SIGBUS, 0, "unknown 38" },
685 { do_bad, SIGBUS, 0, "unknown 39" },
686 { do_bad, SIGBUS, 0, "unknown 40" },
687 { do_bad, SIGBUS, 0, "unknown 41" },
688 { do_bad, SIGBUS, 0, "unknown 42" },
689 { do_bad, SIGBUS, 0, "unknown 43" },
690 { do_bad, SIGBUS, 0, "unknown 44" },
691 { do_bad, SIGBUS, 0, "unknown 45" },
692 { do_bad, SIGBUS, 0, "unknown 46" },
693 { do_bad, SIGBUS, 0, "unknown 47" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000694 { do_bad, SIGBUS, 0, "TLB conflict abort" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000695 { do_bad, SIGBUS, 0, "unknown 49" },
696 { do_bad, SIGBUS, 0, "unknown 50" },
697 { do_bad, SIGBUS, 0, "unknown 51" },
698 { do_bad, SIGBUS, 0, "implementation fault (lockdown abort)" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000699 { do_bad, SIGBUS, 0, "implementation fault (unsupported exclusive)" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000700 { do_bad, SIGBUS, 0, "unknown 54" },
701 { do_bad, SIGBUS, 0, "unknown 55" },
702 { do_bad, SIGBUS, 0, "unknown 56" },
703 { do_bad, SIGBUS, 0, "unknown 57" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000704 { do_bad, SIGBUS, 0, "unknown 58" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000705 { do_bad, SIGBUS, 0, "unknown 59" },
706 { do_bad, SIGBUS, 0, "unknown 60" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000707 { do_bad, SIGBUS, 0, "section domain fault" },
708 { do_bad, SIGBUS, 0, "page domain fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000709 { do_bad, SIGBUS, 0, "unknown 63" },
710};
711
Catalin Marinas1d18c472012-03-05 11:49:27 +0000712/*
Tyler Baicar621f48e2017-06-21 12:17:14 -0600713 * Handle Synchronous External Aborts that occur in a guest kernel.
714 *
715 * The return value will be zero if the SEA was successfully handled
716 * and non-zero if there was an error processing the error or there was
717 * no error to process.
718 */
719int handle_guest_sea(phys_addr_t addr, unsigned int esr)
720{
721 int ret = -ENOENT;
722
723 if (IS_ENABLED(CONFIG_ACPI_APEI_SEA))
724 ret = ghes_notify_sea();
725
726 return ret;
727}
728
729/*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000730 * Dispatch a data abort to the relevant handler.
731 */
732asmlinkage void __exception do_mem_abort(unsigned long addr, unsigned int esr,
733 struct pt_regs *regs)
734{
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700735 const struct fault_info *inf = esr_to_fault_info(esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000736 struct siginfo info;
737
738 if (!inf->fn(addr, esr, regs))
739 return;
740
741 pr_alert("Unhandled fault: %s (0x%08x) at 0x%016lx\n",
742 inf->name, esr, addr);
743
Julien Thierry1f9b8932017-08-04 09:31:42 +0100744 mem_abort_decode(esr);
745
Catalin Marinas1d18c472012-03-05 11:49:27 +0000746 info.si_signo = inf->sig;
747 info.si_errno = 0;
748 info.si_code = inf->code;
749 info.si_addr = (void __user *)addr;
750 arm64_notify_die("", regs, &info, esr);
751}
752
753/*
754 * Handle stack alignment exceptions.
755 */
756asmlinkage void __exception do_sp_pc_abort(unsigned long addr,
757 unsigned int esr,
758 struct pt_regs *regs)
759{
760 struct siginfo info;
Vladimir Murzin9e793ab2015-06-19 15:28:16 +0100761 struct task_struct *tsk = current;
762
763 if (show_unhandled_signals && unhandled_signal(tsk, SIGBUS))
764 pr_info_ratelimited("%s[%d]: %s exception: pc=%p sp=%p\n",
765 tsk->comm, task_pid_nr(tsk),
766 esr_get_class_string(esr), (void *)regs->pc,
767 (void *)regs->sp);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000768
769 info.si_signo = SIGBUS;
770 info.si_errno = 0;
771 info.si_code = BUS_ADRALN;
772 info.si_addr = (void __user *)addr;
Vladimir Murzin9e793ab2015-06-19 15:28:16 +0100773 arm64_notify_die("Oops - SP/PC alignment exception", regs, &info, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000774}
775
Dave P Martin9fb74102015-07-24 16:37:48 +0100776int __init early_brk64(unsigned long addr, unsigned int esr,
777 struct pt_regs *regs);
778
779/*
780 * __refdata because early_brk64 is __init, but the reference to it is
781 * clobbered at arch_initcall time.
782 * See traps.c and debug-monitors.c:debug_traps_init().
783 */
784static struct fault_info __refdata debug_fault_info[] = {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000785 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware breakpoint" },
786 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware single-step" },
787 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware watchpoint" },
788 { do_bad, SIGBUS, 0, "unknown 3" },
789 { do_bad, SIGTRAP, TRAP_BRKPT, "aarch32 BKPT" },
790 { do_bad, SIGTRAP, 0, "aarch32 vector catch" },
Dave P Martin9fb74102015-07-24 16:37:48 +0100791 { early_brk64, SIGTRAP, TRAP_BRKPT, "aarch64 BRK" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000792 { do_bad, SIGBUS, 0, "unknown 7" },
793};
794
795void __init hook_debug_fault_code(int nr,
796 int (*fn)(unsigned long, unsigned int, struct pt_regs *),
797 int sig, int code, const char *name)
798{
799 BUG_ON(nr < 0 || nr >= ARRAY_SIZE(debug_fault_info));
800
801 debug_fault_info[nr].fn = fn;
802 debug_fault_info[nr].sig = sig;
803 debug_fault_info[nr].code = code;
804 debug_fault_info[nr].name = name;
805}
806
807asmlinkage int __exception do_debug_exception(unsigned long addr,
808 unsigned int esr,
809 struct pt_regs *regs)
810{
811 const struct fault_info *inf = debug_fault_info + DBG_ESR_EVT(esr);
812 struct siginfo info;
James Morse6afedcd2016-04-13 13:40:00 +0100813 int rv;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000814
James Morse6afedcd2016-04-13 13:40:00 +0100815 /*
816 * Tell lockdep we disabled irqs in entry.S. Do nothing if they were
817 * already disabled to preserve the last enabled/disabled addresses.
818 */
819 if (interrupts_enabled(regs))
820 trace_hardirqs_off();
Catalin Marinas1d18c472012-03-05 11:49:27 +0000821
James Morse6afedcd2016-04-13 13:40:00 +0100822 if (!inf->fn(addr, esr, regs)) {
823 rv = 1;
824 } else {
825 pr_alert("Unhandled debug exception: %s (0x%08x) at 0x%016lx\n",
826 inf->name, esr, addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000827
James Morse6afedcd2016-04-13 13:40:00 +0100828 info.si_signo = inf->sig;
829 info.si_errno = 0;
830 info.si_code = inf->code;
831 info.si_addr = (void __user *)addr;
832 arm64_notify_die("", regs, &info, 0);
833 rv = 0;
834 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000835
James Morse6afedcd2016-04-13 13:40:00 +0100836 if (interrupts_enabled(regs))
837 trace_hardirqs_on();
838
839 return rv;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000840}
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400841NOKPROBE_SYMBOL(do_debug_exception);
James Morse338d4f42015-07-22 19:05:54 +0100842
843#ifdef CONFIG_ARM64_PAN
James Morse2a6dcb22016-10-18 11:27:46 +0100844int cpu_enable_pan(void *__unused)
James Morse338d4f42015-07-22 19:05:54 +0100845{
James Morse7209c862016-10-18 11:27:47 +0100846 /*
847 * We modify PSTATE. This won't work from irq context as the PSTATE
848 * is discarded once we return from the exception.
849 */
850 WARN_ON_ONCE(in_interrupt());
851
James Morse338d4f42015-07-22 19:05:54 +0100852 config_sctlr_el1(SCTLR_EL1_SPAN, 0);
James Morse7209c862016-10-18 11:27:47 +0100853 asm(SET_PSTATE_PAN(1));
James Morse2a6dcb22016-10-18 11:27:46 +0100854 return 0;
James Morse338d4f42015-07-22 19:05:54 +0100855}
856#endif /* CONFIG_ARM64_PAN */