]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/sparc/mm/fault_64.c
Merge tag 'efi-urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi into...
[mirror_ubuntu-artful-kernel.git] / arch / sparc / mm / fault_64.c
CommitLineData
b00dc837 1/*
1da177e4
LT
2 * arch/sparc64/mm/fault.c: Page fault handlers for the 64-bit Sparc.
3 *
4fe3ebec 4 * Copyright (C) 1996, 2008 David S. Miller (davem@davemloft.net)
1da177e4
LT
5 * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
6 */
7
8#include <asm/head.h>
9
10#include <linux/string.h>
11#include <linux/types.h>
12#include <linux/sched.h>
b17b0153 13#include <linux/sched/debug.h>
1da177e4
LT
14#include <linux/ptrace.h>
15#include <linux/mman.h>
16#include <linux/signal.h>
17#include <linux/mm.h>
cdd4f4c7 18#include <linux/extable.h>
1da177e4 19#include <linux/init.h>
a084b667 20#include <linux/perf_event.h>
1da177e4 21#include <linux/interrupt.h>
05e14cb3 22#include <linux/kprobes.h>
1eeb66a1 23#include <linux/kdebug.h>
eeabac73 24#include <linux/percpu.h>
812cb83a 25#include <linux/context_tracking.h>
70ffdb93 26#include <linux/uaccess.h>
1da177e4
LT
27
28#include <asm/page.h>
29#include <asm/pgtable.h>
30#include <asm/openprom.h>
31#include <asm/oplib.h>
1da177e4
LT
32#include <asm/asi.h>
33#include <asm/lsu.h>
34#include <asm/sections.h>
7a1ac526 35#include <asm/mmu_context.h>
8df52620 36#include <asm/setup.h>
1da177e4 37
4b177647
DM
38int show_unhandled_signals = 1;
39
4ed5d5e4 40static inline __kprobes int notify_page_fault(struct pt_regs *regs)
d98f8f05 41{
127cda1e
DM
42 int ret = 0;
43
44 /* kprobe_running() needs smp_processor_id() */
135d0821 45 if (kprobes_built_in() && !user_mode(regs)) {
127cda1e
DM
46 preempt_disable();
47 if (kprobe_running() && kprobe_fault_handler(regs, 0))
48 ret = 1;
49 preempt_enable();
50 }
51 return ret;
d98f8f05 52}
d98f8f05 53
05e14cb3
PP
54static void __kprobes unhandled_fault(unsigned long address,
55 struct task_struct *tsk,
56 struct pt_regs *regs)
1da177e4
LT
57{
58 if ((unsigned long) address < PAGE_SIZE) {
59 printk(KERN_ALERT "Unable to handle kernel NULL "
60 "pointer dereference\n");
61 } else {
62 printk(KERN_ALERT "Unable to handle kernel paging request "
63 "at virtual address %016lx\n", (unsigned long)address);
64 }
65 printk(KERN_ALERT "tsk->{mm,active_mm}->context = %016lx\n",
66 (tsk->mm ?
67 CTX_HWBITS(tsk->mm->context) :
68 CTX_HWBITS(tsk->active_mm->context)));
69 printk(KERN_ALERT "tsk->{mm,active_mm}->pgd = %016lx\n",
70 (tsk->mm ? (unsigned long) tsk->mm->pgd :
71 (unsigned long) tsk->active_mm->pgd));
1da177e4
LT
72 die_if_kernel("Oops", regs);
73}
74
4ed5d5e4 75static void __kprobes bad_kernel_pc(struct pt_regs *regs, unsigned long vaddr)
1da177e4 76{
1da177e4
LT
77 printk(KERN_CRIT "OOPS: Bogus kernel PC [%016lx] in fault handler\n",
78 regs->tpc);
eb398d10 79 printk(KERN_CRIT "OOPS: RPC [%016lx]\n", regs->u_regs[15]);
4fe3ebec 80 printk("OOPS: RPC <%pS>\n", (void *) regs->u_regs[15]);
bf941d6c 81 printk(KERN_CRIT "OOPS: Fault was to vaddr[%lx]\n", vaddr);
c1f193a7 82 dump_stack();
1da177e4
LT
83 unhandled_fault(regs->tpc, current, regs);
84}
85
86/*
87 * We now make sure that mmap_sem is held in all paths that call
88 * this. Additionally, to prevent kswapd from ripping ptes from
89 * under us, raise interrupts around the time that we look at the
90 * pte, kswapd will have to wait to get his smp ipi response from
da160546 91 * us. vmtruncate likewise. This saves us having to get pte lock.
1da177e4
LT
92 */
93static unsigned int get_user_insn(unsigned long tpc)
94{
95 pgd_t *pgdp = pgd_offset(current->mm, tpc);
96 pud_t *pudp;
97 pmd_t *pmdp;
98 pte_t *ptep, pte;
99 unsigned long pa;
100 u32 insn = 0;
1da177e4 101
70ffc6eb
DM
102 if (pgd_none(*pgdp) || unlikely(pgd_bad(*pgdp)))
103 goto out;
1da177e4 104 pudp = pud_offset(pgdp, tpc);
70ffc6eb
DM
105 if (pud_none(*pudp) || unlikely(pud_bad(*pudp)))
106 goto out;
1da177e4
LT
107
108 /* This disables preemption for us as well. */
70ffc6eb 109 local_irq_disable();
1da177e4 110
70ffc6eb
DM
111 pmdp = pmd_offset(pudp, tpc);
112 if (pmd_none(*pmdp) || unlikely(pmd_bad(*pmdp)))
113 goto out_irq_enable;
114
7bc3777c
NG
115#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
116 if (is_hugetlb_pmd(*pmdp)) {
70ffc6eb
DM
117 pa = pmd_pfn(*pmdp) << PAGE_SHIFT;
118 pa += tpc & ~HPAGE_MASK;
1da177e4 119
70ffc6eb
DM
120 /* Use phys bypass so we don't pollute dtlb/dcache. */
121 __asm__ __volatile__("lduwa [%1] %2, %0"
122 : "=r" (insn)
123 : "r" (pa), "i" (ASI_PHYS_USE_EC));
124 } else
125#endif
126 {
127 ptep = pte_offset_map(pmdp, tpc);
128 pte = *ptep;
129 if (pte_present(pte)) {
130 pa = (pte_pfn(pte) << PAGE_SHIFT);
131 pa += (tpc & ~PAGE_MASK);
132
133 /* Use phys bypass so we don't pollute dtlb/dcache. */
134 __asm__ __volatile__("lduwa [%1] %2, %0"
135 : "=r" (insn)
136 : "r" (pa), "i" (ASI_PHYS_USE_EC));
137 }
138 pte_unmap(ptep);
139 }
140out_irq_enable:
141 local_irq_enable();
1da177e4 142out:
1da177e4
LT
143 return insn;
144}
145
4b177647
DM
146static inline void
147show_signal_msg(struct pt_regs *regs, int sig, int code,
148 unsigned long address, struct task_struct *tsk)
149{
150 if (!unhandled_signal(tsk, sig))
151 return;
152
153 if (!printk_ratelimit())
154 return;
155
156 printk("%s%s[%d]: segfault at %lx ip %p (rpc %p) sp %p error %x",
157 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
158 tsk->comm, task_pid_nr(tsk), address,
159 (void *)regs->tpc, (void *)regs->u_regs[UREG_I7],
160 (void *)regs->u_regs[UREG_FP], code);
161
162 print_vma_addr(KERN_CONT " in ", regs->tpc);
163
164 printk(KERN_CONT "\n");
165}
166
1da177e4 167static void do_fault_siginfo(int code, int sig, struct pt_regs *regs,
70ffc6eb
DM
168 unsigned long fault_addr, unsigned int insn,
169 int fault_code)
1da177e4 170{
4b177647 171 unsigned long addr;
1da177e4
LT
172 siginfo_t info;
173
174 info.si_code = code;
175 info.si_signo = sig;
176 info.si_errno = 0;
70ffc6eb 177 if (fault_code & FAULT_CODE_ITLB) {
4b177647 178 addr = regs->tpc;
70ffc6eb
DM
179 } else {
180 /* If we were able to probe the faulting instruction, use it
181 * to compute a precise fault address. Otherwise use the fault
182 * time provided address which may only have page granularity.
183 */
184 if (insn)
185 addr = compute_effective_address(regs, insn, 0);
186 else
187 addr = fault_addr;
188 }
4b177647 189 info.si_addr = (void __user *) addr;
1da177e4 190 info.si_trapno = 0;
4b177647
DM
191
192 if (unlikely(show_unhandled_signals))
193 show_signal_msg(regs, sig, code, addr, current);
194
1da177e4
LT
195 force_sig_info(sig, &info, current);
196}
197
1da177e4
LT
198static unsigned int get_fault_insn(struct pt_regs *regs, unsigned int insn)
199{
200 if (!insn) {
201 if (!regs->tpc || (regs->tpc & 0x3))
202 return 0;
203 if (regs->tstate & TSTATE_PRIV) {
204 insn = *(unsigned int *) regs->tpc;
205 } else {
206 insn = get_user_insn(regs->tpc);
207 }
208 }
209 return insn;
210}
211
4ed5d5e4
DM
212static void __kprobes do_kernel_fault(struct pt_regs *regs, int si_code,
213 int fault_code, unsigned int insn,
214 unsigned long address)
1da177e4 215{
1da177e4
LT
216 unsigned char asi = ASI_P;
217
218 if ((!insn) && (regs->tstate & TSTATE_PRIV))
219 goto cannot_handle;
220
221 /* If user insn could be read (thus insn is zero), that
222 * is fine. We will just gun down the process with a signal
223 * in that case.
224 */
225
226 if (!(fault_code & (FAULT_CODE_WRITE|FAULT_CODE_ITLB)) &&
227 (insn & 0xc0800000) == 0xc0800000) {
228 if (insn & 0x2000)
229 asi = (regs->tstate >> 24);
230 else
231 asi = (insn >> 5);
232 if ((asi & 0xf2) == 0x82) {
233 if (insn & 0x1000000) {
234 handle_ldf_stq(insn, regs);
235 } else {
236 /* This was a non-faulting load. Just clear the
237 * destination register(s) and continue with the next
238 * instruction. -jj
239 */
240 handle_ld_nf(insn, regs);
241 }
242 return;
243 }
244 }
245
1da177e4
LT
246 /* Is this in ex_table? */
247 if (regs->tstate & TSTATE_PRIV) {
8cf14af0 248 const struct exception_table_entry *entry;
1da177e4 249
622eaec6
DM
250 entry = search_exception_tables(regs->tpc);
251 if (entry) {
8cf14af0 252 regs->tpc = entry->fixup;
1da177e4 253 regs->tnpc = regs->tpc + 4;
1da177e4
LT
254 return;
255 }
256 } else {
257 /* The si_code was set to make clear whether
258 * this was a SEGV_MAPERR or SEGV_ACCERR fault.
259 */
70ffc6eb 260 do_fault_siginfo(si_code, SIGSEGV, regs, address, insn, fault_code);
1da177e4
LT
261 return;
262 }
263
264cannot_handle:
265 unhandled_fault (address, current, regs);
266}
267
4ed5d5e4 268static void noinline __kprobes bogus_32bit_fault_tpc(struct pt_regs *regs)
9b026058
DM
269{
270 static int times;
271
272 if (times++ < 10)
273 printk(KERN_ERR "FAULT[%s:%d]: 32-bit process reports "
274 "64-bit TPC [%lx]\n",
275 current->comm, current->pid,
276 regs->tpc);
277 show_regs(regs);
278}
279
05e14cb3 280asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs)
1da177e4 281{
812cb83a 282 enum ctx_state prev_state = exception_enter();
1da177e4
LT
283 struct mm_struct *mm = current->mm;
284 struct vm_area_struct *vma;
285 unsigned int insn = 0;
83c54070 286 int si_code, fault_code, fault;
7a1ac526 287 unsigned long address, mm_rss;
7358e510 288 unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
1da177e4
LT
289
290 fault_code = get_thread_fault_code();
291
127cda1e 292 if (notify_page_fault(regs))
812cb83a 293 goto exit_exception;
1da177e4
LT
294
295 si_code = SEGV_MAPERR;
296 address = current_thread_info()->fault_address;
297
298 if ((fault_code & FAULT_CODE_ITLB) &&
299 (fault_code & FAULT_CODE_DTLB))
300 BUG();
301
eeabac73 302 if (test_thread_flag(TIF_32BIT)) {
9b026058
DM
303 if (!(regs->tstate & TSTATE_PRIV)) {
304 if (unlikely((regs->tpc >> 32) != 0)) {
305 bogus_32bit_fault_tpc(regs);
306 goto intr_or_no_mm;
307 }
308 }
e5c460f4 309 if (unlikely((address >> 32) != 0))
9b026058 310 goto intr_or_no_mm;
eeabac73
DM
311 }
312
1da177e4 313 if (regs->tstate & TSTATE_PRIV) {
9b026058 314 unsigned long tpc = regs->tpc;
1da177e4
LT
315
316 /* Sanity check the PC. */
be71716e 317 if ((tpc >= KERNBASE && tpc < (unsigned long) __init_end) ||
1da177e4
LT
318 (tpc >= MODULES_VADDR && tpc < MODULES_END)) {
319 /* Valid, no problems... */
320 } else {
bf941d6c 321 bad_kernel_pc(regs, address);
812cb83a 322 goto exit_exception;
1da177e4 323 }
759496ba
JW
324 } else
325 flags |= FAULT_FLAG_USER;
1da177e4
LT
326
327 /*
328 * If we're in an interrupt or have no user
329 * context, we must not take the fault..
330 */
70ffdb93 331 if (faulthandler_disabled() || !mm)
1da177e4
LT
332 goto intr_or_no_mm;
333
a8b0ca17 334 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address);
a084b667 335
1da177e4
LT
336 if (!down_read_trylock(&mm->mmap_sem)) {
337 if ((regs->tstate & TSTATE_PRIV) &&
338 !search_exception_tables(regs->tpc)) {
339 insn = get_fault_insn(regs, insn);
340 goto handle_kernel_fault;
341 }
7358e510
KC
342
343retry:
1da177e4
LT
344 down_read(&mm->mmap_sem);
345 }
346
4ccb9272 347 if (fault_code & FAULT_CODE_BAD_RA)
348 goto do_sigbus;
349
1da177e4
LT
350 vma = find_vma(mm, address);
351 if (!vma)
352 goto bad_area;
353
354 /* Pure DTLB misses do not tell us whether the fault causing
355 * load/store/atomic was a write or not, it only says that there
356 * was no match. So in such a case we (carefully) read the
357 * instruction to try and figure this out. It's an optimization
358 * so it's ok if we can't do this.
359 *
360 * Special hack, window spill/fill knows the exact fault type.
361 */
362 if (((fault_code &
363 (FAULT_CODE_DTLB | FAULT_CODE_WRITE | FAULT_CODE_WINFIXUP)) == FAULT_CODE_DTLB) &&
364 (vma->vm_flags & VM_WRITE) != 0) {
365 insn = get_fault_insn(regs, 0);
366 if (!insn)
367 goto continue_fault;
73c50a27
DM
368 /* All loads, stores and atomics have bits 30 and 31 both set
369 * in the instruction. Bit 21 is set in all stores, but we
370 * have to avoid prefetches which also have bit 21 set.
371 */
1da177e4 372 if ((insn & 0xc0200000) == 0xc0200000 &&
73c50a27 373 (insn & 0x01780000) != 0x01680000) {
1da177e4
LT
374 /* Don't bother updating thread struct value,
375 * because update_mmu_cache only cares which tlb
376 * the access came from.
377 */
378 fault_code |= FAULT_CODE_WRITE;
379 }
380 }
381continue_fault:
382
383 if (vma->vm_start <= address)
384 goto good_area;
385 if (!(vma->vm_flags & VM_GROWSDOWN))
386 goto bad_area;
387 if (!(fault_code & FAULT_CODE_WRITE)) {
388 /* Non-faulting loads shouldn't expand stack. */
389 insn = get_fault_insn(regs, insn);
390 if ((insn & 0xc0800000) == 0xc0800000) {
391 unsigned char asi;
392
393 if (insn & 0x2000)
394 asi = (regs->tstate >> 24);
395 else
396 asi = (insn >> 5);
397 if ((asi & 0xf2) == 0x82)
398 goto bad_area;
399 }
400 }
401 if (expand_stack(vma, address))
402 goto bad_area;
403 /*
404 * Ok, we have a good vm_area for this memory access, so
405 * we can handle it..
406 */
407good_area:
408 si_code = SEGV_ACCERR;
409
410 /* If we took a ITLB miss on a non-executable page, catch
411 * that here.
412 */
413 if ((fault_code & FAULT_CODE_ITLB) && !(vma->vm_flags & VM_EXEC)) {
2bf7c3ef
DA
414 WARN(address != regs->tpc,
415 "address (%lx) != regs->tpc (%lx)\n", address, regs->tpc);
416 WARN_ON(regs->tstate & TSTATE_PRIV);
1da177e4
LT
417 goto bad_area;
418 }
419
420 if (fault_code & FAULT_CODE_WRITE) {
421 if (!(vma->vm_flags & VM_WRITE))
422 goto bad_area;
423
424 /* Spitfire has an icache which does not snoop
425 * processor stores. Later processors do...
426 */
427 if (tlb_type == spitfire &&
428 (vma->vm_flags & VM_EXEC) != 0 &&
429 vma->vm_file != NULL)
430 set_thread_fault_code(fault_code |
431 FAULT_CODE_BLKCOMMIT);
759496ba
JW
432
433 flags |= FAULT_FLAG_WRITE;
1da177e4
LT
434 } else {
435 /* Allow reads even for write-only mappings */
436 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
437 goto bad_area;
438 }
439
dcddffd4 440 fault = handle_mm_fault(vma, address, flags);
7358e510
KC
441
442 if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current))
812cb83a 443 goto exit_exception;
7358e510 444
83c54070
NP
445 if (unlikely(fault & VM_FAULT_ERROR)) {
446 if (fault & VM_FAULT_OOM)
447 goto out_of_memory;
33692f27
LT
448 else if (fault & VM_FAULT_SIGSEGV)
449 goto bad_area;
83c54070
NP
450 else if (fault & VM_FAULT_SIGBUS)
451 goto do_sigbus;
1da177e4
LT
452 BUG();
453 }
7358e510
KC
454
455 if (flags & FAULT_FLAG_ALLOW_RETRY) {
456 if (fault & VM_FAULT_MAJOR) {
457 current->maj_flt++;
458 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ,
459 1, regs, address);
460 } else {
461 current->min_flt++;
462 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN,
463 1, regs, address);
464 }
465 if (fault & VM_FAULT_RETRY) {
466 flags &= ~FAULT_FLAG_ALLOW_RETRY;
45cac65b 467 flags |= FAULT_FLAG_TRIED;
7358e510
KC
468
469 /* No need to up_read(&mm->mmap_sem) as we would
470 * have already released it in __lock_page_or_retry
471 * in mm/filemap.c.
472 */
473
474 goto retry;
475 }
a084b667 476 }
1da177e4 477 up_read(&mm->mmap_sem);
7a1ac526
DM
478
479 mm_rss = get_mm_rss(mm);
af1b1a9b
MK
480#if defined(CONFIG_TRANSPARENT_HUGEPAGE)
481 mm_rss -= (mm->context.thp_pte_count * (HPAGE_SIZE / PAGE_SIZE));
dcc1e8dd 482#endif
7bebd83d 483 if (unlikely(mm_rss >
dcc1e8dd
DM
484 mm->context.tsb_block[MM_TSB_BASE].tsb_rss_limit))
485 tsb_grow(mm, MM_TSB_BASE, mm_rss);
9e695d2e 486#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
af1b1a9b 487 mm_rss = mm->context.hugetlb_pte_count + mm->context.thp_pte_count;
1e953d84 488 mm_rss *= REAL_HPAGE_PER_HPAGE;
7bebd83d 489 if (unlikely(mm_rss >
0fbebed6
DM
490 mm->context.tsb_block[MM_TSB_HUGE].tsb_rss_limit)) {
491 if (mm->context.tsb_block[MM_TSB_HUGE].tsb)
492 tsb_grow(mm, MM_TSB_HUGE, mm_rss);
493 else
494 hugetlb_setup(regs);
495
496 }
dcc1e8dd 497#endif
812cb83a
KT
498exit_exception:
499 exception_exit(prev_state);
efdc1e20 500 return;
1da177e4
LT
501
502 /*
503 * Something tried to access memory that isn't in our memory map..
504 * Fix it, but check if it's kernel or user first..
505 */
506bad_area:
507 insn = get_fault_insn(regs, insn);
508 up_read(&mm->mmap_sem);
509
510handle_kernel_fault:
511 do_kernel_fault(regs, si_code, fault_code, insn, address);
812cb83a 512 goto exit_exception;
1da177e4
LT
513
514/*
515 * We ran out of memory, or some other thing happened to us that made
516 * us unable to handle the page fault gracefully.
517 */
518out_of_memory:
519 insn = get_fault_insn(regs, insn);
520 up_read(&mm->mmap_sem);
a923c28f
DM
521 if (!(regs->tstate & TSTATE_PRIV)) {
522 pagefault_out_of_memory();
812cb83a 523 goto exit_exception;
a923c28f 524 }
1da177e4
LT
525 goto handle_kernel_fault;
526
527intr_or_no_mm:
528 insn = get_fault_insn(regs, 0);
529 goto handle_kernel_fault;
530
531do_sigbus:
532 insn = get_fault_insn(regs, insn);
533 up_read(&mm->mmap_sem);
534
535 /*
536 * Send a sigbus, regardless of whether we were in kernel
537 * or user mode.
538 */
70ffc6eb 539 do_fault_siginfo(BUS_ADRERR, SIGBUS, regs, address, insn, fault_code);
1da177e4
LT
540
541 /* Kernel mode? Handle exceptions or die */
542 if (regs->tstate & TSTATE_PRIV)
543 goto handle_kernel_fault;
1da177e4 544}