blob: d73e7f1fe184173c4067d524099f196cf1712725 [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>
James Morse338d4f42015-07-22 19:05:54 +010037#include <asm/cpufeature.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000038#include <asm/exception.h>
39#include <asm/debug-monitors.h>
Catalin Marinas91413002014-04-06 23:04:12 +010040#include <asm/esr.h>
James Morse338d4f42015-07-22 19:05:54 +010041#include <asm/sysreg.h>
Catalin Marinas1d18c472012-03-05 11:49:27 +000042#include <asm/system_misc.h>
43#include <asm/pgtable.h>
44#include <asm/tlbflush.h>
45
Victor Kamensky09a6adf2017-04-03 22:51:01 -070046struct fault_info {
47 int (*fn)(unsigned long addr, unsigned int esr,
48 struct pt_regs *regs);
49 int sig;
50 int code;
51 const char *name;
52};
53
54static const struct fault_info fault_info[];
55
56static inline const struct fault_info *esr_to_fault_info(unsigned int esr)
57{
58 return fault_info + (esr & 63);
59}
Catalin Marinas3495386b2012-10-24 16:34:02 +010060
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -040061#ifdef CONFIG_KPROBES
62static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr)
63{
64 int ret = 0;
65
66 /* kprobe_running() needs smp_processor_id() */
67 if (!user_mode(regs)) {
68 preempt_disable();
69 if (kprobe_running() && kprobe_fault_handler(regs, esr))
70 ret = 1;
71 preempt_enable();
72 }
73
74 return ret;
75}
76#else
77static inline int notify_page_fault(struct pt_regs *regs, unsigned int esr)
78{
79 return 0;
80}
81#endif
82
Catalin Marinas1d18c472012-03-05 11:49:27 +000083/*
Kristina Martsenko67ce16e2017-06-09 16:35:52 +010084 * Dump out the page tables associated with 'addr' in the currently active mm.
Catalin Marinas1d18c472012-03-05 11:49:27 +000085 */
Kristina Martsenko67ce16e2017-06-09 16:35:52 +010086void show_pte(unsigned long addr)
Catalin Marinas1d18c472012-03-05 11:49:27 +000087{
Kristina Martsenko67ce16e2017-06-09 16:35:52 +010088 struct mm_struct *mm;
Catalin Marinas1d18c472012-03-05 11:49:27 +000089 pgd_t *pgd;
90
Kristina Martsenko67ce16e2017-06-09 16:35:52 +010091 if (addr < TASK_SIZE) {
92 /* TTBR0 */
93 mm = current->active_mm;
94 if (mm == &init_mm) {
95 pr_alert("[%016lx] user address but active_mm is swapper\n",
96 addr);
97 return;
98 }
99 } else if (addr >= VA_START) {
100 /* TTBR1 */
Catalin Marinas1d18c472012-03-05 11:49:27 +0000101 mm = &init_mm;
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100102 } else {
103 pr_alert("[%016lx] address between user and kernel address ranges\n",
104 addr);
105 return;
106 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000107
Will Deacon1eb34b62017-05-15 15:23:58 +0100108 pr_alert("%s pgtable: %luk pages, %u-bit VAs, pgd = %p\n",
109 mm == &init_mm ? "swapper" : "user", PAGE_SIZE / SZ_1K,
110 VA_BITS, mm->pgd);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000111 pgd = pgd_offset(mm, addr);
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100112 pr_alert("[%016lx] *pgd=%016llx", addr, pgd_val(*pgd));
Catalin Marinas1d18c472012-03-05 11:49:27 +0000113
114 do {
115 pud_t *pud;
116 pmd_t *pmd;
117 pte_t *pte;
118
Steve Capper4339e3f32013-04-19 15:49:31 +0100119 if (pgd_none(*pgd) || pgd_bad(*pgd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000120 break;
121
122 pud = pud_offset(pgd, addr);
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000123 pr_cont(", *pud=%016llx", pud_val(*pud));
Steve Capper4339e3f32013-04-19 15:49:31 +0100124 if (pud_none(*pud) || pud_bad(*pud))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000125 break;
126
127 pmd = pmd_offset(pud, addr);
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000128 pr_cont(", *pmd=%016llx", pmd_val(*pmd));
Steve Capper4339e3f32013-04-19 15:49:31 +0100129 if (pmd_none(*pmd) || pmd_bad(*pmd))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000130 break;
131
132 pte = pte_offset_map(pmd, addr);
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000133 pr_cont(", *pte=%016llx", pte_val(*pte));
Catalin Marinas1d18c472012-03-05 11:49:27 +0000134 pte_unmap(pte);
135 } while(0);
136
Mark Rutland6ef4fb32017-01-03 14:27:26 +0000137 pr_cont("\n");
Catalin Marinas1d18c472012-03-05 11:49:27 +0000138}
139
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100140#ifdef CONFIG_ARM64_HW_AFDBM
141/*
142 * This function sets the access flags (dirty, accessed), as well as write
143 * permission, and only to a more permissive setting.
144 *
145 * It needs to cope with hardware update of the accessed/dirty state by other
146 * agents in the system and can safely skip the __sync_icache_dcache() call as,
147 * like set_pte_at(), the PTE is never changed from no-exec to exec here.
148 *
149 * Returns whether or not the PTE actually changed.
150 */
151int ptep_set_access_flags(struct vm_area_struct *vma,
152 unsigned long address, pte_t *ptep,
153 pte_t entry, int dirty)
154{
155 pteval_t old_pteval;
156 unsigned int tmp;
157
158 if (pte_same(*ptep, entry))
159 return 0;
160
161 /* only preserve the access flags and write permission */
162 pte_val(entry) &= PTE_AF | PTE_WRITE | PTE_DIRTY;
163
164 /*
165 * PTE_RDONLY is cleared by default in the asm below, so set it in
166 * back if necessary (read-only or clean PTE).
167 */
Will Deacon0106d452016-06-07 17:55:15 +0100168 if (!pte_write(entry) || !pte_sw_dirty(entry))
Catalin Marinas66dbd6e2016-04-13 16:01:22 +0100169 pte_val(entry) |= PTE_RDONLY;
170
171 /*
172 * Setting the flags must be done atomically to avoid racing with the
173 * hardware update of the access/dirty state.
174 */
175 asm volatile("// ptep_set_access_flags\n"
176 " prfm pstl1strm, %2\n"
177 "1: ldxr %0, %2\n"
178 " and %0, %0, %3 // clear PTE_RDONLY\n"
179 " orr %0, %0, %4 // set flags\n"
180 " stxr %w1, %0, %2\n"
181 " cbnz %w1, 1b\n"
182 : "=&r" (old_pteval), "=&r" (tmp), "+Q" (pte_val(*ptep))
183 : "L" (~PTE_RDONLY), "r" (pte_val(entry)));
184
185 flush_tlb_fix_spurious_fault(vma, address);
186 return 1;
187}
188#endif
189
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700190static bool is_el1_instruction_abort(unsigned int esr)
191{
192 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_CUR;
193}
194
Stephen Boydb824b932017-04-05 12:18:31 -0700195static inline bool is_permission_fault(unsigned int esr, struct pt_regs *regs,
196 unsigned long addr)
197{
198 unsigned int ec = ESR_ELx_EC(esr);
199 unsigned int fsc_type = esr & ESR_ELx_FSC_TYPE;
200
201 if (ec != ESR_ELx_EC_DABT_CUR && ec != ESR_ELx_EC_IABT_CUR)
202 return false;
203
204 if (fsc_type == ESR_ELx_FSC_PERM)
205 return true;
206
207 if (addr < USER_DS && system_uses_ttbr0_pan())
208 return fsc_type == ESR_ELx_FSC_FAULT &&
209 (regs->pstate & PSR_PAN_BIT);
210
211 return false;
212}
213
Catalin Marinas1d18c472012-03-05 11:49:27 +0000214/*
215 * The kernel tried to access some page that wasn't present.
216 */
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100217static void __do_kernel_fault(unsigned long addr, unsigned int esr,
218 struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000219{
Stephen Boydb824b932017-04-05 12:18:31 -0700220 const char *msg;
221
Catalin Marinas1d18c472012-03-05 11:49:27 +0000222 /*
223 * Are we prepared to handle this kernel fault?
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700224 * We are almost certainly not prepared to handle instruction faults.
Catalin Marinas1d18c472012-03-05 11:49:27 +0000225 */
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700226 if (!is_el1_instruction_abort(esr) && fixup_exception(regs))
Catalin Marinas1d18c472012-03-05 11:49:27 +0000227 return;
228
229 /*
230 * No handler, we'll have to terminate things with extreme prejudice.
231 */
232 bust_spinlocks(1);
Stephen Boydb824b932017-04-05 12:18:31 -0700233
234 if (is_permission_fault(esr, regs, addr)) {
235 if (esr & ESR_ELx_WNR)
236 msg = "write to read-only memory";
237 else
238 msg = "read from unreadable memory";
239 } else if (addr < PAGE_SIZE) {
240 msg = "NULL pointer dereference";
241 } else {
242 msg = "paging request";
243 }
244
245 pr_alert("Unable to handle kernel %s at virtual address %08lx\n", msg,
246 addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000247
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100248 show_pte(addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000249 die("Oops", regs, esr);
250 bust_spinlocks(0);
251 do_exit(SIGKILL);
252}
253
254/*
255 * Something tried to access memory that isn't in our memory map. User mode
256 * accesses just cause a SIGSEGV
257 */
258static void __do_user_fault(struct task_struct *tsk, unsigned long addr,
259 unsigned int esr, unsigned int sig, int code,
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100260 struct pt_regs *regs, int fault)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000261{
262 struct siginfo si;
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700263 const struct fault_info *inf;
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100264 unsigned int lsb = 0;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000265
Suzuki K. Poulosef871d262015-07-03 15:08:08 +0100266 if (unhandled_signal(tsk, sig) && show_unhandled_signals_ratelimited()) {
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700267 inf = esr_to_fault_info(esr);
Kristina Martsenko83016b22017-06-09 16:35:54 +0100268 pr_info("%s[%d]: unhandled %s (%d) at 0x%08lx, esr 0x%03x",
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700269 tsk->comm, task_pid_nr(tsk), inf->name, sig,
Catalin Marinas3495386b2012-10-24 16:34:02 +0100270 addr, esr);
Kristina Martsenko83016b22017-06-09 16:35:54 +0100271 print_vma_addr(KERN_CONT ", in ", regs->pc);
272 pr_cont("\n");
Kefeng Wangc07ab952017-05-09 09:53:36 +0800273 __show_regs(regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000274 }
275
276 tsk->thread.fault_address = addr;
Catalin Marinas91413002014-04-06 23:04:12 +0100277 tsk->thread.fault_code = esr;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000278 si.si_signo = sig;
279 si.si_errno = 0;
280 si.si_code = code;
281 si.si_addr = (void __user *)addr;
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100282 /*
283 * Either small page or large page may be poisoned.
284 * In other words, VM_FAULT_HWPOISON_LARGE and
285 * VM_FAULT_HWPOISON are mutually exclusive.
286 */
287 if (fault & VM_FAULT_HWPOISON_LARGE)
288 lsb = hstate_index_to_shift(VM_FAULT_GET_HINDEX(fault));
289 else if (fault & VM_FAULT_HWPOISON)
290 lsb = PAGE_SHIFT;
291 si.si_addr_lsb = lsb;
292
Catalin Marinas1d18c472012-03-05 11:49:27 +0000293 force_sig_info(sig, &si, tsk);
294}
295
Catalin Marinas59f67e12013-09-16 15:18:28 +0100296static void do_bad_area(unsigned long addr, unsigned int esr, struct pt_regs *regs)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000297{
298 struct task_struct *tsk = current;
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700299 const struct fault_info *inf;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000300
301 /*
302 * If we are in kernel mode at this point, we have no context to
303 * handle this fault with.
304 */
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700305 if (user_mode(regs)) {
306 inf = esr_to_fault_info(esr);
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100307 __do_user_fault(tsk, addr, esr, inf->sig, inf->code, regs, 0);
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700308 } else
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100309 __do_kernel_fault(addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000310}
311
312#define VM_FAULT_BADMAP 0x010000
313#define VM_FAULT_BADACCESS 0x020000
314
Catalin Marinas1d18c472012-03-05 11:49:27 +0000315static int __do_page_fault(struct mm_struct *mm, unsigned long addr,
Will Deacondb6f4102013-07-19 15:37:12 +0100316 unsigned int mm_flags, unsigned long vm_flags,
Catalin Marinas1d18c472012-03-05 11:49:27 +0000317 struct task_struct *tsk)
318{
319 struct vm_area_struct *vma;
320 int fault;
321
322 vma = find_vma(mm, addr);
323 fault = VM_FAULT_BADMAP;
324 if (unlikely(!vma))
325 goto out;
326 if (unlikely(vma->vm_start > addr))
327 goto check_stack;
328
329 /*
330 * Ok, we have a good vm_area for this memory access, so we can handle
331 * it.
332 */
333good_area:
Will Deacondb6f4102013-07-19 15:37:12 +0100334 /*
335 * Check that the permissions on the VMA allow for the fault which
Catalin Marinascab15ce2016-08-11 18:44:50 +0100336 * occurred.
Will Deacondb6f4102013-07-19 15:37:12 +0100337 */
338 if (!(vma->vm_flags & vm_flags)) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000339 fault = VM_FAULT_BADACCESS;
340 goto out;
341 }
342
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700343 return handle_mm_fault(vma, addr & PAGE_MASK, mm_flags);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000344
345check_stack:
346 if (vma->vm_flags & VM_GROWSDOWN && !expand_stack(vma, addr))
347 goto good_area;
348out:
349 return fault;
350}
351
Mark Rutland541ec872016-05-31 12:33:03 +0100352static bool is_el0_instruction_abort(unsigned int esr)
353{
354 return ESR_ELx_EC(esr) == ESR_ELx_EC_IABT_LOW;
355}
356
Catalin Marinas1d18c472012-03-05 11:49:27 +0000357static int __kprobes do_page_fault(unsigned long addr, unsigned int esr,
358 struct pt_regs *regs)
359{
360 struct task_struct *tsk;
361 struct mm_struct *mm;
362 int fault, sig, code;
Catalin Marinascab15ce2016-08-11 18:44:50 +0100363 unsigned long vm_flags = VM_READ | VM_WRITE;
Will Deacondb6f4102013-07-19 15:37:12 +0100364 unsigned int mm_flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
365
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400366 if (notify_page_fault(regs, esr))
367 return 0;
368
Catalin Marinas1d18c472012-03-05 11:49:27 +0000369 tsk = current;
370 mm = tsk->mm;
371
Catalin Marinas1d18c472012-03-05 11:49:27 +0000372 /*
373 * If we're in an interrupt or have no user context, we must not take
374 * the fault.
375 */
David Hildenbrand70ffdb92015-05-11 17:52:11 +0200376 if (faulthandler_disabled() || !mm)
Catalin Marinas1d18c472012-03-05 11:49:27 +0000377 goto no_context;
378
Johannes Weiner759496b2013-09-12 15:13:39 -0700379 if (user_mode(regs))
380 mm_flags |= FAULT_FLAG_USER;
381
Mark Rutland541ec872016-05-31 12:33:03 +0100382 if (is_el0_instruction_abort(esr)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700383 vm_flags = VM_EXEC;
Mark Rutlandaed40e02014-11-24 12:31:40 +0000384 } else if ((esr & ESR_ELx_WNR) && !(esr & ESR_ELx_CM)) {
Johannes Weiner759496b2013-09-12 15:13:39 -0700385 vm_flags = VM_WRITE;
386 mm_flags |= FAULT_FLAG_WRITE;
387 }
388
Stephen Boydb824b932017-04-05 12:18:31 -0700389 if (addr < USER_DS && is_permission_fault(esr, regs, addr)) {
James Morsee19a6ee2016-06-20 18:28:01 +0100390 /* regs->orig_addr_limit may be 0 if we entered from EL0 */
391 if (regs->orig_addr_limit == KERNEL_DS)
Catalin Marinas70c8abc2016-02-19 14:28:58 +0000392 die("Accessing user space memory with fs=KERNEL_DS", regs, esr);
James Morse70544192016-02-05 14:58:50 +0000393
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700394 if (is_el1_instruction_abort(esr))
395 die("Attempting to execute userspace memory", regs, esr);
396
James Morse57f49592016-02-05 14:58:48 +0000397 if (!search_exception_tables(regs->pc))
Catalin Marinas70c8abc2016-02-19 14:28:58 +0000398 die("Accessing user space memory outside uaccess.h routines", regs, esr);
James Morse57f49592016-02-05 14:58:48 +0000399 }
James Morse338d4f42015-07-22 19:05:54 +0100400
401 /*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000402 * As per x86, we may deadlock here. However, since the kernel only
403 * validly references user space from well defined areas of the code,
404 * we can bug out early if this is from code which shouldn't.
405 */
406 if (!down_read_trylock(&mm->mmap_sem)) {
407 if (!user_mode(regs) && !search_exception_tables(regs->pc))
408 goto no_context;
409retry:
410 down_read(&mm->mmap_sem);
411 } else {
412 /*
413 * The above down_read_trylock() might have succeeded in which
414 * case, we'll have missed the might_sleep() from down_read().
415 */
416 might_sleep();
417#ifdef CONFIG_DEBUG_VM
418 if (!user_mode(regs) && !search_exception_tables(regs->pc))
419 goto no_context;
420#endif
421 }
422
Will Deacondb6f4102013-07-19 15:37:12 +0100423 fault = __do_page_fault(mm, addr, mm_flags, vm_flags, tsk);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000424
425 /*
426 * If we need to retry but a fatal signal is pending, handle the
427 * signal first. We do not need to release the mmap_sem because it
428 * would already be released in __lock_page_or_retry in mm/filemap.c.
429 */
430 if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current))
431 return 0;
432
433 /*
434 * Major/minor page fault accounting is only done on the initial
435 * attempt. If we go through a retry, it is extremely likely that the
436 * page will be found in page cache at that point.
437 */
438
439 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
Will Deacondb6f4102013-07-19 15:37:12 +0100440 if (mm_flags & FAULT_FLAG_ALLOW_RETRY) {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000441 if (fault & VM_FAULT_MAJOR) {
442 tsk->maj_flt++;
443 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs,
444 addr);
445 } else {
446 tsk->min_flt++;
447 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs,
448 addr);
449 }
450 if (fault & VM_FAULT_RETRY) {
451 /*
452 * Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk of
453 * starvation.
454 */
Will Deacondb6f4102013-07-19 15:37:12 +0100455 mm_flags &= ~FAULT_FLAG_ALLOW_RETRY;
Mark Salyzyn569ba742015-09-21 21:39:50 +0100456 mm_flags |= FAULT_FLAG_TRIED;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000457 goto retry;
458 }
459 }
460
461 up_read(&mm->mmap_sem);
462
463 /*
Jan Kara0e8fb932016-03-17 14:19:55 -0700464 * Handle the "normal" case first - VM_FAULT_MAJOR
Catalin Marinas1d18c472012-03-05 11:49:27 +0000465 */
466 if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP |
467 VM_FAULT_BADACCESS))))
468 return 0;
469
Johannes Weiner87134102013-09-12 15:13:38 -0700470 /*
471 * If we are in kernel mode at this point, we have no context to
472 * handle this fault with.
473 */
474 if (!user_mode(regs))
475 goto no_context;
476
Catalin Marinas1d18c472012-03-05 11:49:27 +0000477 if (fault & VM_FAULT_OOM) {
478 /*
479 * We ran out of memory, call the OOM killer, and return to
480 * userspace (which will retry the fault, or kill us if we got
481 * oom-killed).
482 */
483 pagefault_out_of_memory();
484 return 0;
485 }
486
Catalin Marinas1d18c472012-03-05 11:49:27 +0000487 if (fault & VM_FAULT_SIGBUS) {
488 /*
489 * We had some memory, but were unable to successfully fix up
490 * this page fault.
491 */
492 sig = SIGBUS;
493 code = BUS_ADRERR;
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100494 } else if (fault & (VM_FAULT_HWPOISON | VM_FAULT_HWPOISON_LARGE)) {
495 sig = SIGBUS;
496 code = BUS_MCEERR_AR;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000497 } else {
498 /*
499 * Something tried to access memory that isn't in our memory
500 * map.
501 */
502 sig = SIGSEGV;
503 code = fault == VM_FAULT_BADACCESS ?
504 SEGV_ACCERR : SEGV_MAPERR;
505 }
506
Jonathan (Zhixiong) Zhange7c600f2017-06-08 18:25:27 +0100507 __do_user_fault(tsk, addr, esr, sig, code, regs, fault);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000508 return 0;
509
510no_context:
Kristina Martsenko67ce16e2017-06-09 16:35:52 +0100511 __do_kernel_fault(addr, esr, regs);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000512 return 0;
513}
514
515/*
516 * First Level Translation Fault Handler
517 *
518 * We enter here because the first level page table doesn't contain a valid
519 * entry for the address.
520 *
521 * If the address is in kernel space (>= TASK_SIZE), then we are probably
522 * faulting in the vmalloc() area.
523 *
524 * If the init_task's first level page tables contains the relevant entry, we
525 * copy the it to this task. If not, we send the process a signal, fixup the
526 * exception, or oops the kernel.
527 *
528 * NOTE! We MUST NOT take any locks for this case. We may be in an interrupt
529 * or a critical region, and should only copy the information from the master
530 * page table, nothing more.
531 */
532static int __kprobes do_translation_fault(unsigned long addr,
533 unsigned int esr,
534 struct pt_regs *regs)
535{
536 if (addr < TASK_SIZE)
537 return do_page_fault(addr, esr, regs);
538
539 do_bad_area(addr, esr, regs);
540 return 0;
541}
542
EunTaik Lee52d75232016-02-16 04:44:35 +0000543static int do_alignment_fault(unsigned long addr, unsigned int esr,
544 struct pt_regs *regs)
545{
546 do_bad_area(addr, esr, regs);
547 return 0;
548}
549
Catalin Marinas1d18c472012-03-05 11:49:27 +0000550/*
Catalin Marinas1d18c472012-03-05 11:49:27 +0000551 * This abort handler always returns "fault".
552 */
553static int do_bad(unsigned long addr, unsigned int esr, struct pt_regs *regs)
554{
555 return 1;
556}
557
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700558static const struct fault_info fault_info[] = {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000559 { do_bad, SIGBUS, 0, "ttbr address size fault" },
560 { do_bad, SIGBUS, 0, "level 1 address size fault" },
561 { do_bad, SIGBUS, 0, "level 2 address size fault" },
562 { do_bad, SIGBUS, 0, "level 3 address size fault" },
Will Deacon7f73f7a2014-11-21 14:22:22 +0000563 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 0 translation fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000564 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 1 translation fault" },
565 { do_translation_fault, SIGSEGV, SEGV_MAPERR, "level 2 translation fault" },
566 { do_page_fault, SIGSEGV, SEGV_MAPERR, "level 3 translation fault" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000567 { do_bad, SIGBUS, 0, "unknown 8" },
Steve Capper084bd292013-04-10 13:48:00 +0100568 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 access flag fault" },
569 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 access flag fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000570 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 access flag fault" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000571 { do_bad, SIGBUS, 0, "unknown 12" },
Steve Capper084bd292013-04-10 13:48:00 +0100572 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 1 permission fault" },
573 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 2 permission fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000574 { do_page_fault, SIGSEGV, SEGV_ACCERR, "level 3 permission fault" },
575 { do_bad, SIGBUS, 0, "synchronous external abort" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000576 { do_bad, SIGBUS, 0, "unknown 17" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000577 { do_bad, SIGBUS, 0, "unknown 18" },
578 { do_bad, SIGBUS, 0, "unknown 19" },
Catalin Marinasa8ada142016-10-28 18:07:37 +0100579 { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" },
580 { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" },
581 { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" },
582 { do_bad, SIGBUS, 0, "synchronous external abort (translation table walk)" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000583 { do_bad, SIGBUS, 0, "synchronous parity error" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000584 { do_bad, SIGBUS, 0, "unknown 25" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000585 { do_bad, SIGBUS, 0, "unknown 26" },
586 { do_bad, SIGBUS, 0, "unknown 27" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000587 { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" },
588 { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" },
589 { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" },
590 { do_bad, SIGBUS, 0, "synchronous parity error (translation table walk)" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000591 { do_bad, SIGBUS, 0, "unknown 32" },
EunTaik Lee52d75232016-02-16 04:44:35 +0000592 { do_alignment_fault, SIGBUS, BUS_ADRALN, "alignment fault" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000593 { do_bad, SIGBUS, 0, "unknown 34" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000594 { do_bad, SIGBUS, 0, "unknown 35" },
595 { do_bad, SIGBUS, 0, "unknown 36" },
596 { do_bad, SIGBUS, 0, "unknown 37" },
597 { do_bad, SIGBUS, 0, "unknown 38" },
598 { do_bad, SIGBUS, 0, "unknown 39" },
599 { do_bad, SIGBUS, 0, "unknown 40" },
600 { do_bad, SIGBUS, 0, "unknown 41" },
601 { do_bad, SIGBUS, 0, "unknown 42" },
602 { do_bad, SIGBUS, 0, "unknown 43" },
603 { do_bad, SIGBUS, 0, "unknown 44" },
604 { do_bad, SIGBUS, 0, "unknown 45" },
605 { do_bad, SIGBUS, 0, "unknown 46" },
606 { do_bad, SIGBUS, 0, "unknown 47" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000607 { do_bad, SIGBUS, 0, "TLB conflict abort" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000608 { do_bad, SIGBUS, 0, "unknown 49" },
609 { do_bad, SIGBUS, 0, "unknown 50" },
610 { do_bad, SIGBUS, 0, "unknown 51" },
611 { do_bad, SIGBUS, 0, "implementation fault (lockdown abort)" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000612 { do_bad, SIGBUS, 0, "implementation fault (unsupported exclusive)" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000613 { do_bad, SIGBUS, 0, "unknown 54" },
614 { do_bad, SIGBUS, 0, "unknown 55" },
615 { do_bad, SIGBUS, 0, "unknown 56" },
616 { do_bad, SIGBUS, 0, "unknown 57" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000617 { do_bad, SIGBUS, 0, "unknown 58" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000618 { do_bad, SIGBUS, 0, "unknown 59" },
619 { do_bad, SIGBUS, 0, "unknown 60" },
Mark Rutlandc03784ee82015-11-23 15:09:36 +0000620 { do_bad, SIGBUS, 0, "section domain fault" },
621 { do_bad, SIGBUS, 0, "page domain fault" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000622 { do_bad, SIGBUS, 0, "unknown 63" },
623};
624
Catalin Marinas1d18c472012-03-05 11:49:27 +0000625/*
626 * Dispatch a data abort to the relevant handler.
627 */
628asmlinkage void __exception do_mem_abort(unsigned long addr, unsigned int esr,
629 struct pt_regs *regs)
630{
Victor Kamensky09a6adf2017-04-03 22:51:01 -0700631 const struct fault_info *inf = esr_to_fault_info(esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000632 struct siginfo info;
633
634 if (!inf->fn(addr, esr, regs))
635 return;
636
637 pr_alert("Unhandled fault: %s (0x%08x) at 0x%016lx\n",
638 inf->name, esr, addr);
639
640 info.si_signo = inf->sig;
641 info.si_errno = 0;
642 info.si_code = inf->code;
643 info.si_addr = (void __user *)addr;
644 arm64_notify_die("", regs, &info, esr);
645}
646
647/*
648 * Handle stack alignment exceptions.
649 */
650asmlinkage void __exception do_sp_pc_abort(unsigned long addr,
651 unsigned int esr,
652 struct pt_regs *regs)
653{
654 struct siginfo info;
Vladimir Murzin9e793ab2015-06-19 15:28:16 +0100655 struct task_struct *tsk = current;
656
657 if (show_unhandled_signals && unhandled_signal(tsk, SIGBUS))
658 pr_info_ratelimited("%s[%d]: %s exception: pc=%p sp=%p\n",
659 tsk->comm, task_pid_nr(tsk),
660 esr_get_class_string(esr), (void *)regs->pc,
661 (void *)regs->sp);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000662
663 info.si_signo = SIGBUS;
664 info.si_errno = 0;
665 info.si_code = BUS_ADRALN;
666 info.si_addr = (void __user *)addr;
Vladimir Murzin9e793ab2015-06-19 15:28:16 +0100667 arm64_notify_die("Oops - SP/PC alignment exception", regs, &info, esr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000668}
669
Dave P Martin9fb74102015-07-24 16:37:48 +0100670int __init early_brk64(unsigned long addr, unsigned int esr,
671 struct pt_regs *regs);
672
673/*
674 * __refdata because early_brk64 is __init, but the reference to it is
675 * clobbered at arch_initcall time.
676 * See traps.c and debug-monitors.c:debug_traps_init().
677 */
678static struct fault_info __refdata debug_fault_info[] = {
Catalin Marinas1d18c472012-03-05 11:49:27 +0000679 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware breakpoint" },
680 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware single-step" },
681 { do_bad, SIGTRAP, TRAP_HWBKPT, "hardware watchpoint" },
682 { do_bad, SIGBUS, 0, "unknown 3" },
683 { do_bad, SIGTRAP, TRAP_BRKPT, "aarch32 BKPT" },
684 { do_bad, SIGTRAP, 0, "aarch32 vector catch" },
Dave P Martin9fb74102015-07-24 16:37:48 +0100685 { early_brk64, SIGTRAP, TRAP_BRKPT, "aarch64 BRK" },
Catalin Marinas1d18c472012-03-05 11:49:27 +0000686 { do_bad, SIGBUS, 0, "unknown 7" },
687};
688
689void __init hook_debug_fault_code(int nr,
690 int (*fn)(unsigned long, unsigned int, struct pt_regs *),
691 int sig, int code, const char *name)
692{
693 BUG_ON(nr < 0 || nr >= ARRAY_SIZE(debug_fault_info));
694
695 debug_fault_info[nr].fn = fn;
696 debug_fault_info[nr].sig = sig;
697 debug_fault_info[nr].code = code;
698 debug_fault_info[nr].name = name;
699}
700
701asmlinkage int __exception do_debug_exception(unsigned long addr,
702 unsigned int esr,
703 struct pt_regs *regs)
704{
705 const struct fault_info *inf = debug_fault_info + DBG_ESR_EVT(esr);
706 struct siginfo info;
James Morse6afedcd2016-04-13 13:40:00 +0100707 int rv;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000708
James Morse6afedcd2016-04-13 13:40:00 +0100709 /*
710 * Tell lockdep we disabled irqs in entry.S. Do nothing if they were
711 * already disabled to preserve the last enabled/disabled addresses.
712 */
713 if (interrupts_enabled(regs))
714 trace_hardirqs_off();
Catalin Marinas1d18c472012-03-05 11:49:27 +0000715
James Morse6afedcd2016-04-13 13:40:00 +0100716 if (!inf->fn(addr, esr, regs)) {
717 rv = 1;
718 } else {
719 pr_alert("Unhandled debug exception: %s (0x%08x) at 0x%016lx\n",
720 inf->name, esr, addr);
Catalin Marinas1d18c472012-03-05 11:49:27 +0000721
James Morse6afedcd2016-04-13 13:40:00 +0100722 info.si_signo = inf->sig;
723 info.si_errno = 0;
724 info.si_code = inf->code;
725 info.si_addr = (void __user *)addr;
726 arm64_notify_die("", regs, &info, 0);
727 rv = 0;
728 }
Catalin Marinas1d18c472012-03-05 11:49:27 +0000729
James Morse6afedcd2016-04-13 13:40:00 +0100730 if (interrupts_enabled(regs))
731 trace_hardirqs_on();
732
733 return rv;
Catalin Marinas1d18c472012-03-05 11:49:27 +0000734}
Sandeepa Prabhu2dd0e8d2016-07-08 12:35:48 -0400735NOKPROBE_SYMBOL(do_debug_exception);
James Morse338d4f42015-07-22 19:05:54 +0100736
737#ifdef CONFIG_ARM64_PAN
James Morse2a6dcb22016-10-18 11:27:46 +0100738int cpu_enable_pan(void *__unused)
James Morse338d4f42015-07-22 19:05:54 +0100739{
James Morse7209c862016-10-18 11:27:47 +0100740 /*
741 * We modify PSTATE. This won't work from irq context as the PSTATE
742 * is discarded once we return from the exception.
743 */
744 WARN_ON_ONCE(in_interrupt());
745
James Morse338d4f42015-07-22 19:05:54 +0100746 config_sctlr_el1(SCTLR_EL1_SPAN, 0);
James Morse7209c862016-10-18 11:27:47 +0100747 asm(SET_PSTATE_PAN(1));
James Morse2a6dcb22016-10-18 11:27:46 +0100748 return 0;
James Morse338d4f42015-07-22 19:05:54 +0100749}
750#endif /* CONFIG_ARM64_PAN */