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