GNU Linux-libre 4.4.288-gnu1
[releases.git] / arch / arm64 / mm / fault.c
1 /*
2  * Based on arch/arm/mm/fault.c
3  *
4  * Copyright (C) 1995  Linus Torvalds
5  * Copyright (C) 1995-2004 Russell King
6  * Copyright (C) 2012 ARM Ltd.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include <linux/module.h>
22 #include <linux/signal.h>
23 #include <linux/mm.h>
24 #include <linux/hardirq.h>
25 #include <linux/init.h>
26 #include <linux/kprobes.h>
27 #include <linux/uaccess.h>
28 #include <linux/page-flags.h>
29 #include <linux/sched.h>
30 #include <linux/highmem.h>
31 #include <linux/perf_event.h>
32 #include <linux/preempt.h>
33
34 #include <asm/bug.h>
35 #include <asm/cpufeature.h>
36 #include <asm/exception.h>
37 #include <asm/debug-monitors.h>
38 #include <asm/esr.h>
39 #include <asm/sysreg.h>
40 #include <asm/system_misc.h>
41 #include <asm/pgtable.h>
42 #include <asm/tlbflush.h>
43
44 static const char *fault_name(unsigned int esr);
45
46 /*
47  * Dump out the page tables associated with 'addr' in mm 'mm'.
48  */
49 void show_pte(struct mm_struct *mm, unsigned long addr)
50 {
51         pgd_t *pgd;
52
53         if (!mm)
54                 mm = &init_mm;
55
56         pr_alert("pgd = %p\n", mm->pgd);
57         pgd = pgd_offset(mm, addr);
58         pr_alert("[%08lx] *pgd=%016llx", addr, pgd_val(*pgd));
59
60         do {
61                 pud_t *pud;
62                 pmd_t *pmd;
63                 pte_t *pte;
64
65                 if (pgd_none(*pgd) || pgd_bad(*pgd))
66                         break;
67
68                 pud = pud_offset(pgd, addr);
69                 pr_cont(", *pud=%016llx", pud_val(*pud));
70                 if (pud_none(*pud) || pud_bad(*pud))
71                         break;
72
73                 pmd = pmd_offset(pud, addr);
74                 pr_cont(", *pmd=%016llx", pmd_val(*pmd));
75                 if (pmd_none(*pmd) || pmd_bad(*pmd))
76                         break;
77
78                 pte = pte_offset_map(pmd, addr);
79                 pr_cont(", *pte=%016llx", pte_val(*pte));
80                 pte_unmap(pte);
81         } while(0);
82
83         pr_cont("\n");
84 }
85
86 #ifdef CONFIG_ARM64_HW_AFDBM
87 /*
88  * This function sets the access flags (dirty, accessed), as well as write
89  * permission, and only to a more permissive setting.
90  *
91  * It needs to cope with hardware update of the accessed/dirty state by other
92  * agents in the system and can safely skip the __sync_icache_dcache() call as,
93  * like set_pte_at(), the PTE is never changed from no-exec to exec here.
94  *
95  * Returns whether or not the PTE actually changed.
96  */
97 int ptep_set_access_flags(struct vm_area_struct *vma,
98                           unsigned long address, pte_t *ptep,
99                           pte_t entry, int dirty)
100 {
101         pteval_t old_pteval;
102         unsigned int tmp;
103
104         if (pte_same(*ptep, entry))
105                 return 0;
106
107         /* only preserve the access flags and write permission */
108         pte_val(entry) &= PTE_AF | PTE_WRITE | PTE_DIRTY;
109
110         /* set PTE_RDONLY if actual read-only or clean PTE */
111         if (!pte_write(entry) || !pte_sw_dirty(entry))
112                 pte_val(entry) |= PTE_RDONLY;
113
114         /*
115          * Setting the flags must be done atomically to avoid racing with the
116          * hardware update of the access/dirty state. The PTE_RDONLY bit must
117          * be set to the most permissive (lowest value) of *ptep and entry
118          * (calculated as: a & b == ~(~a | ~b)).
119          */
120         pte_val(entry) ^= PTE_RDONLY;
121         asm volatile("//        ptep_set_access_flags\n"
122         "       prfm    pstl1strm, %2\n"
123         "1:     ldxr    %0, %2\n"
124         "       eor     %0, %0, %3              // negate PTE_RDONLY in *ptep\n"
125         "       orr     %0, %0, %4              // set flags\n"
126         "       eor     %0, %0, %3              // negate final PTE_RDONLY\n"
127         "       stxr    %w1, %0, %2\n"
128         "       cbnz    %w1, 1b\n"
129         : "=&r" (old_pteval), "=&r" (tmp), "+Q" (pte_val(*ptep))
130         : "L" (PTE_RDONLY), "r" (pte_val(entry)));
131
132         flush_tlb_fix_spurious_fault(vma, address);
133         return 1;
134 }
135 #endif
136
137 /*
138  * The kernel tried to access some page that wasn't present.
139  */
140 static void __do_kernel_fault(struct mm_struct *mm, unsigned long addr,
141                               unsigned int esr, struct pt_regs *regs)
142 {
143         /*
144          * Are we prepared to handle this kernel fault?
145          */
146         if (fixup_exception(regs))
147                 return;
148
149         /*
150          * No handler, we'll have to terminate things with extreme prejudice.
151          */
152         bust_spinlocks(1);
153         pr_alert("Unable to handle kernel %s at virtual address %08lx\n",
154                  (addr < PAGE_SIZE) ? "NULL pointer dereference" :
155                  "paging request", addr);
156
157         show_pte(mm, addr);
158         die("Oops", regs, esr);
159         bust_spinlocks(0);
160         do_exit(SIGKILL);
161 }
162
163 /*
164  * Something tried to access memory that isn't in our memory map. User mode
165  * accesses just cause a SIGSEGV
166  */
167 static void __do_user_fault(struct task_struct *tsk, unsigned long addr,
168                             unsigned int esr, unsigned int sig, int code,
169                             struct pt_regs *regs)
170 {
171         struct siginfo si;
172
173         if (unhandled_signal(tsk, sig) && show_unhandled_signals_ratelimited()) {
174                 pr_info("%s[%d]: unhandled %s (%d) at 0x%08lx, esr 0x%03x\n",
175                         tsk->comm, task_pid_nr(tsk), fault_name(esr), sig,
176                         addr, esr);
177                 show_pte(tsk->mm, addr);
178                 show_regs(regs);
179         }
180
181         tsk->thread.fault_address = addr;
182         tsk->thread.fault_code = esr;
183         si.si_signo = sig;
184         si.si_errno = 0;
185         si.si_code = code;
186         si.si_addr = (void __user *)addr;
187         force_sig_info(sig, &si, tsk);
188 }
189
190 static void do_bad_area(unsigned long addr, unsigned int esr, struct pt_regs *regs)
191 {
192         struct task_struct *tsk = current;
193         struct mm_struct *mm = tsk->active_mm;
194
195         /*
196          * If we are in kernel mode at this point, we have no context to
197          * handle this fault with.
198          */
199         if (user_mode(regs))
200                 __do_user_fault(tsk, addr, esr, SIGSEGV, SEGV_MAPERR, regs);
201         else
202                 __do_kernel_fault(mm, addr, esr, regs);
203 }
204
205 #define VM_FAULT_BADMAP         0x010000
206 #define VM_FAULT_BADACCESS      0x020000
207
208 #define ESR_LNX_EXEC            (1 << 24)
209
210 static int __do_page_fault(struct mm_struct *mm, unsigned long addr,
211                            unsigned int mm_flags, unsigned long vm_flags,
212                            struct task_struct *tsk)
213 {
214         struct vm_area_struct *vma;
215         int fault;
216
217         vma = find_vma(mm, addr);
218         fault = VM_FAULT_BADMAP;
219         if (unlikely(!vma))
220                 goto out;
221         if (unlikely(vma->vm_start > addr))
222                 goto check_stack;
223
224         /*
225          * Ok, we have a good vm_area for this memory access, so we can handle
226          * it.
227          */
228 good_area:
229         /*
230          * Check that the permissions on the VMA allow for the fault which
231          * occurred. If we encountered a write or exec fault, we must have
232          * appropriate permissions, otherwise we allow any permission.
233          */
234         if (!(vma->vm_flags & vm_flags)) {
235                 fault = VM_FAULT_BADACCESS;
236                 goto out;
237         }
238
239         return handle_mm_fault(mm, vma, addr & PAGE_MASK, mm_flags);
240
241 check_stack:
242         if (vma->vm_flags & VM_GROWSDOWN && !expand_stack(vma, addr))
243                 goto good_area;
244 out:
245         return fault;
246 }
247
248 static int __kprobes do_page_fault(unsigned long addr, unsigned int esr,
249                                    struct pt_regs *regs)
250 {
251         struct task_struct *tsk;
252         struct mm_struct *mm;
253         int fault, sig, code;
254         unsigned long vm_flags = VM_READ | VM_WRITE | VM_EXEC;
255         unsigned int mm_flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
256
257         tsk = current;
258         mm  = tsk->mm;
259
260         /* Enable interrupts if they were enabled in the parent context. */
261         if (interrupts_enabled(regs))
262                 local_irq_enable();
263
264         /*
265          * If we're in an interrupt or have no user context, we must not take
266          * the fault.
267          */
268         if (faulthandler_disabled() || !mm)
269                 goto no_context;
270
271         if (user_mode(regs))
272                 mm_flags |= FAULT_FLAG_USER;
273
274         if (esr & ESR_LNX_EXEC) {
275                 vm_flags = VM_EXEC;
276         } else if ((esr & ESR_ELx_WNR) && !(esr & ESR_ELx_CM)) {
277                 vm_flags = VM_WRITE;
278                 mm_flags |= FAULT_FLAG_WRITE;
279         }
280
281         /*
282          * PAN bit set implies the fault happened in kernel space, but not
283          * in the arch's user access functions.
284          */
285         if (IS_ENABLED(CONFIG_ARM64_PAN) && (regs->pstate & PSR_PAN_BIT))
286                 goto no_context;
287
288         /*
289          * As per x86, we may deadlock here. However, since the kernel only
290          * validly references user space from well defined areas of the code,
291          * we can bug out early if this is from code which shouldn't.
292          */
293         if (!down_read_trylock(&mm->mmap_sem)) {
294                 if (!user_mode(regs) && !search_exception_tables(regs->pc))
295                         goto no_context;
296 retry:
297                 down_read(&mm->mmap_sem);
298         } else {
299                 /*
300                  * The above down_read_trylock() might have succeeded in which
301                  * case, we'll have missed the might_sleep() from down_read().
302                  */
303                 might_sleep();
304 #ifdef CONFIG_DEBUG_VM
305                 if (!user_mode(regs) && !search_exception_tables(regs->pc))
306                         goto no_context;
307 #endif
308         }
309
310         fault = __do_page_fault(mm, addr, mm_flags, vm_flags, tsk);
311
312         /*
313          * If we need to retry but a fatal signal is pending, handle the
314          * signal first. We do not need to release the mmap_sem because it
315          * would already be released in __lock_page_or_retry in mm/filemap.c.
316          */
317         if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) {
318                 if (!user_mode(regs))
319                         goto no_context;
320                 return 0;
321         }
322
323         /*
324          * Major/minor page fault accounting is only done on the initial
325          * attempt. If we go through a retry, it is extremely likely that the
326          * page will be found in page cache at that point.
327          */
328
329         perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
330         if (mm_flags & FAULT_FLAG_ALLOW_RETRY) {
331                 if (fault & VM_FAULT_MAJOR) {
332                         tsk->maj_flt++;
333                         perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs,
334                                       addr);
335                 } else {
336                         tsk->min_flt++;
337                         perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs,
338                                       addr);
339                 }
340                 if (fault & VM_FAULT_RETRY) {
341                         /*
342                          * Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk of
343                          * starvation.
344                          */
345                         mm_flags &= ~FAULT_FLAG_ALLOW_RETRY;
346                         mm_flags |= FAULT_FLAG_TRIED;
347                         goto retry;
348                 }
349         }
350
351         up_read(&mm->mmap_sem);
352
353         /*
354          * Handle the "normal" case first - VM_FAULT_MAJOR / VM_FAULT_MINOR
355          */
356         if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP |
357                               VM_FAULT_BADACCESS))))
358                 return 0;
359
360         /*
361          * If we are in kernel mode at this point, we have no context to
362          * handle this fault with.
363          */
364         if (!user_mode(regs))
365                 goto no_context;
366
367         if (fault & VM_FAULT_OOM) {
368                 /*
369                  * We ran out of memory, call the OOM killer, and return to
370                  * userspace (which will retry the fault, or kill us if we got
371                  * oom-killed).
372                  */
373                 pagefault_out_of_memory();
374                 return 0;
375         }
376
377         if (fault & VM_FAULT_SIGBUS) {
378                 /*
379                  * We had some memory, but were unable to successfully fix up
380                  * this page fault.
381                  */
382                 sig = SIGBUS;
383                 code = BUS_ADRERR;
384         } else {
385                 /*
386                  * Something tried to access memory that isn't in our memory
387                  * map.
388                  */
389                 sig = SIGSEGV;
390                 code = fault == VM_FAULT_BADACCESS ?
391                         SEGV_ACCERR : SEGV_MAPERR;
392         }
393
394         __do_user_fault(tsk, addr, esr, sig, code, regs);
395         return 0;
396
397 no_context:
398         __do_kernel_fault(mm, addr, esr, regs);
399         return 0;
400 }
401
402 /*
403  * First Level Translation Fault Handler
404  *
405  * We enter here because the first level page table doesn't contain a valid
406  * entry for the address.
407  *
408  * If the address is in kernel space (>= TASK_SIZE), then we are probably
409  * faulting in the vmalloc() area.
410  *
411  * If the init_task's first level page tables contains the relevant entry, we
412  * copy the it to this task.  If not, we send the process a signal, fixup the
413  * exception, or oops the kernel.
414  *
415  * NOTE! We MUST NOT take any locks for this case. We may be in an interrupt
416  * or a critical region, and should only copy the information from the master
417  * page table, nothing more.
418  */
419 static int __kprobes do_translation_fault(unsigned long addr,
420                                           unsigned int esr,
421                                           struct pt_regs *regs)
422 {
423         if (addr < TASK_SIZE)
424                 return do_page_fault(addr, esr, regs);
425
426         do_bad_area(addr, esr, regs);
427         return 0;
428 }
429
430 /*
431  * This abort handler always returns "fault".
432  */
433 static int do_bad(unsigned long addr, unsigned int esr, struct pt_regs *regs)
434 {
435         return 1;
436 }
437
438 static struct fault_info {
439         int     (*fn)(unsigned long addr, unsigned int esr, struct pt_regs *regs);
440         int     sig;
441         int     code;
442         const char *name;
443 } fault_info[] = {
444         { do_bad,               SIGBUS,  0,             "ttbr address size fault"       },
445         { do_bad,               SIGBUS,  0,             "level 1 address size fault"    },
446         { do_bad,               SIGBUS,  0,             "level 2 address size fault"    },
447         { do_bad,               SIGBUS,  0,             "level 3 address size fault"    },
448         { do_translation_fault, SIGSEGV, SEGV_MAPERR,   "level 0 translation fault"     },
449         { do_translation_fault, SIGSEGV, SEGV_MAPERR,   "level 1 translation fault"     },
450         { do_translation_fault, SIGSEGV, SEGV_MAPERR,   "level 2 translation fault"     },
451         { do_translation_fault, SIGSEGV, SEGV_MAPERR,   "level 3 translation fault"     },
452         { do_bad,               SIGBUS,  0,             "unknown 8"                     },
453         { do_page_fault,        SIGSEGV, SEGV_ACCERR,   "level 1 access flag fault"     },
454         { do_page_fault,        SIGSEGV, SEGV_ACCERR,   "level 2 access flag fault"     },
455         { do_page_fault,        SIGSEGV, SEGV_ACCERR,   "level 3 access flag fault"     },
456         { do_bad,               SIGBUS,  0,             "unknown 12"                    },
457         { do_page_fault,        SIGSEGV, SEGV_ACCERR,   "level 1 permission fault"      },
458         { do_page_fault,        SIGSEGV, SEGV_ACCERR,   "level 2 permission fault"      },
459         { do_page_fault,        SIGSEGV, SEGV_ACCERR,   "level 3 permission fault"      },
460         { do_bad,               SIGBUS,  0,             "synchronous external abort"    },
461         { do_bad,               SIGBUS,  0,             "unknown 17"                    },
462         { do_bad,               SIGBUS,  0,             "unknown 18"                    },
463         { do_bad,               SIGBUS,  0,             "unknown 19"                    },
464         { do_bad,               SIGBUS,  0,             "synchronous abort (translation table walk)" },
465         { do_bad,               SIGBUS,  0,             "synchronous abort (translation table walk)" },
466         { do_bad,               SIGBUS,  0,             "synchronous abort (translation table walk)" },
467         { do_bad,               SIGBUS,  0,             "synchronous abort (translation table walk)" },
468         { do_bad,               SIGBUS,  0,             "synchronous parity error"      },
469         { do_bad,               SIGBUS,  0,             "unknown 25"                    },
470         { do_bad,               SIGBUS,  0,             "unknown 26"                    },
471         { do_bad,               SIGBUS,  0,             "unknown 27"                    },
472         { do_bad,               SIGBUS,  0,             "synchronous parity error (translation table walk)" },
473         { do_bad,               SIGBUS,  0,             "synchronous parity error (translation table walk)" },
474         { do_bad,               SIGBUS,  0,             "synchronous parity error (translation table walk)" },
475         { do_bad,               SIGBUS,  0,             "synchronous parity error (translation table walk)" },
476         { do_bad,               SIGBUS,  0,             "unknown 32"                    },
477         { do_bad,               SIGBUS,  BUS_ADRALN,    "alignment fault"               },
478         { do_bad,               SIGBUS,  0,             "unknown 34"                    },
479         { do_bad,               SIGBUS,  0,             "unknown 35"                    },
480         { do_bad,               SIGBUS,  0,             "unknown 36"                    },
481         { do_bad,               SIGBUS,  0,             "unknown 37"                    },
482         { do_bad,               SIGBUS,  0,             "unknown 38"                    },
483         { do_bad,               SIGBUS,  0,             "unknown 39"                    },
484         { do_bad,               SIGBUS,  0,             "unknown 40"                    },
485         { do_bad,               SIGBUS,  0,             "unknown 41"                    },
486         { do_bad,               SIGBUS,  0,             "unknown 42"                    },
487         { do_bad,               SIGBUS,  0,             "unknown 43"                    },
488         { do_bad,               SIGBUS,  0,             "unknown 44"                    },
489         { do_bad,               SIGBUS,  0,             "unknown 45"                    },
490         { do_bad,               SIGBUS,  0,             "unknown 46"                    },
491         { do_bad,               SIGBUS,  0,             "unknown 47"                    },
492         { do_bad,               SIGBUS,  0,             "TLB conflict abort"            },
493         { do_bad,               SIGBUS,  0,             "unknown 49"                    },
494         { do_bad,               SIGBUS,  0,             "unknown 50"                    },
495         { do_bad,               SIGBUS,  0,             "unknown 51"                    },
496         { do_bad,               SIGBUS,  0,             "implementation fault (lockdown abort)" },
497         { do_bad,               SIGBUS,  0,             "implementation fault (unsupported exclusive)" },
498         { do_bad,               SIGBUS,  0,             "unknown 54"                    },
499         { do_bad,               SIGBUS,  0,             "unknown 55"                    },
500         { do_bad,               SIGBUS,  0,             "unknown 56"                    },
501         { do_bad,               SIGBUS,  0,             "unknown 57"                    },
502         { do_bad,               SIGBUS,  0,             "unknown 58"                    },
503         { do_bad,               SIGBUS,  0,             "unknown 59"                    },
504         { do_bad,               SIGBUS,  0,             "unknown 60"                    },
505         { do_bad,               SIGBUS,  0,             "section domain fault"          },
506         { do_bad,               SIGBUS,  0,             "page domain fault"             },
507         { do_bad,               SIGBUS,  0,             "unknown 63"                    },
508 };
509
510 static const char *fault_name(unsigned int esr)
511 {
512         const struct fault_info *inf = fault_info + (esr & 63);
513         return inf->name;
514 }
515
516 /*
517  * Dispatch a data abort to the relevant handler.
518  */
519 asmlinkage void __exception do_mem_abort(unsigned long addr, unsigned int esr,
520                                          struct pt_regs *regs)
521 {
522         const struct fault_info *inf = fault_info + (esr & 63);
523         struct siginfo info;
524
525         if (!inf->fn(addr, esr, regs))
526                 return;
527
528         pr_alert("Unhandled fault: %s (0x%08x) at 0x%016lx\n",
529                  inf->name, esr, addr);
530
531         info.si_signo = inf->sig;
532         info.si_errno = 0;
533         info.si_code  = inf->code;
534         info.si_addr  = (void __user *)addr;
535         arm64_notify_die("", regs, &info, esr);
536 }
537
538 /*
539  * Handle stack alignment exceptions.
540  */
541 asmlinkage void __exception do_sp_pc_abort(unsigned long addr,
542                                            unsigned int esr,
543                                            struct pt_regs *regs)
544 {
545         struct siginfo info;
546         struct task_struct *tsk = current;
547
548         if (show_unhandled_signals && unhandled_signal(tsk, SIGBUS))
549                 pr_info_ratelimited("%s[%d]: %s exception: pc=%p sp=%p\n",
550                                     tsk->comm, task_pid_nr(tsk),
551                                     esr_get_class_string(esr), (void *)regs->pc,
552                                     (void *)regs->sp);
553
554         info.si_signo = SIGBUS;
555         info.si_errno = 0;
556         info.si_code  = BUS_ADRALN;
557         info.si_addr  = (void __user *)addr;
558         arm64_notify_die("Oops - SP/PC alignment exception", regs, &info, esr);
559 }
560
561 int __init early_brk64(unsigned long addr, unsigned int esr,
562                        struct pt_regs *regs);
563
564 /*
565  * __refdata because early_brk64 is __init, but the reference to it is
566  * clobbered at arch_initcall time.
567  * See traps.c and debug-monitors.c:debug_traps_init().
568  */
569 static struct fault_info __refdata debug_fault_info[] = {
570         { do_bad,       SIGTRAP,        TRAP_HWBKPT,    "hardware breakpoint"   },
571         { do_bad,       SIGTRAP,        TRAP_HWBKPT,    "hardware single-step"  },
572         { do_bad,       SIGTRAP,        TRAP_HWBKPT,    "hardware watchpoint"   },
573         { do_bad,       SIGBUS,         0,              "unknown 3"             },
574         { do_bad,       SIGTRAP,        TRAP_BRKPT,     "aarch32 BKPT"          },
575         { do_bad,       SIGTRAP,        0,              "aarch32 vector catch"  },
576         { early_brk64,  SIGTRAP,        TRAP_BRKPT,     "aarch64 BRK"           },
577         { do_bad,       SIGBUS,         0,              "unknown 7"             },
578 };
579
580 void __init hook_debug_fault_code(int nr,
581                                   int (*fn)(unsigned long, unsigned int, struct pt_regs *),
582                                   int sig, int code, const char *name)
583 {
584         BUG_ON(nr < 0 || nr >= ARRAY_SIZE(debug_fault_info));
585
586         debug_fault_info[nr].fn         = fn;
587         debug_fault_info[nr].sig        = sig;
588         debug_fault_info[nr].code       = code;
589         debug_fault_info[nr].name       = name;
590 }
591
592 asmlinkage int __exception do_debug_exception(unsigned long addr_if_watchpoint,
593                                               unsigned int esr,
594                                               struct pt_regs *regs)
595 {
596         const struct fault_info *inf = debug_fault_info + DBG_ESR_EVT(esr);
597         unsigned long pc = instruction_pointer(regs);
598         struct siginfo info;
599         int rv;
600
601         /*
602          * Tell lockdep we disabled irqs in entry.S. Do nothing if they were
603          * already disabled to preserve the last enabled/disabled addresses.
604          */
605         if (interrupts_enabled(regs))
606                 trace_hardirqs_off();
607
608         if (!inf->fn(addr_if_watchpoint, esr, regs)) {
609                 rv = 1;
610         } else {
611                 pr_alert("Unhandled debug exception: %s (0x%08x) at 0x%016lx\n",
612                          inf->name, esr, pc);
613
614                 info.si_signo = inf->sig;
615                 info.si_errno = 0;
616                 info.si_code  = inf->code;
617                 info.si_addr  = (void __user *)pc;
618                 arm64_notify_die("", regs, &info, 0);
619                 rv = 0;
620         }
621
622         if (interrupts_enabled(regs))
623                 trace_hardirqs_on();
624
625         return rv;
626 }
627
628 #ifdef CONFIG_ARM64_PAN
629 int cpu_enable_pan(void *__unused)
630 {
631         /*
632          * We modify PSTATE. This won't work from irq context as the PSTATE
633          * is discarded once we return from the exception.
634          */
635         WARN_ON_ONCE(in_interrupt());
636
637         config_sctlr_el1(SCTLR_EL1_SPAN, 0);
638         asm(SET_PSTATE_PAN(1));
639         return 0;
640 }
641 #endif /* CONFIG_ARM64_PAN */