1 // SPDX-License-Identifier: GPL-2.0
3 * fault.c: Page fault handlers for the Sparc.
5 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
6 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
7 * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
12 #include <linux/string.h>
13 #include <linux/types.h>
14 #include <linux/sched.h>
15 #include <linux/ptrace.h>
16 #include <linux/mman.h>
17 #include <linux/threads.h>
18 #include <linux/kernel.h>
19 #include <linux/signal.h>
21 #include <linux/smp.h>
22 #include <linux/perf_event.h>
23 #include <linux/interrupt.h>
24 #include <linux/kdebug.h>
25 #include <linux/uaccess.h>
28 #include <asm/openprom.h>
29 #include <asm/oplib.h>
30 #include <asm/setup.h>
32 #include <asm/traps.h>
36 int show_unhandled_signals
= 1;
38 static void __noreturn
unhandled_fault(unsigned long address
,
39 struct task_struct
*tsk
,
42 if ((unsigned long) address
< PAGE_SIZE
) {
44 "Unable to handle kernel NULL pointer dereference\n");
46 printk(KERN_ALERT
"Unable to handle kernel paging request at virtual address %08lx\n",
49 printk(KERN_ALERT
"tsk->{mm,active_mm}->context = %08lx\n",
50 (tsk
->mm
? tsk
->mm
->context
: tsk
->active_mm
->context
));
51 printk(KERN_ALERT
"tsk->{mm,active_mm}->pgd = %08lx\n",
52 (tsk
->mm
? (unsigned long) tsk
->mm
->pgd
:
53 (unsigned long) tsk
->active_mm
->pgd
));
54 die_if_kernel("Oops", regs
);
57 asmlinkage
int lookup_fault(unsigned long pc
, unsigned long ret_pc
,
58 unsigned long address
)
65 i
= search_extables_range(ret_pc
, &g2
);
68 /* load & store will be handled by fixup */
72 /* store will be handled by fixup, load will bump out */
74 insn
= *((unsigned int *) pc
);
80 /* load will be handled by fixup, store will bump out */
81 /* for _from_ macros */
82 insn
= *((unsigned int *) pc
);
83 if (!((insn
>> 21) & 1) || ((insn
>>19)&0x3f) == 15)
91 memset(®s
, 0, sizeof(regs
));
98 "nop\n" : "=r" (regs
.psr
));
99 unhandled_fault(address
, current
, ®s
);
106 show_signal_msg(struct pt_regs
*regs
, int sig
, int code
,
107 unsigned long address
, struct task_struct
*tsk
)
109 if (!unhandled_signal(tsk
, sig
))
112 if (!printk_ratelimit())
115 printk("%s%s[%d]: segfault at %lx ip %px (rpc %px) sp %px error %x",
116 task_pid_nr(tsk
) > 1 ? KERN_INFO
: KERN_EMERG
,
117 tsk
->comm
, task_pid_nr(tsk
), address
,
118 (void *)regs
->pc
, (void *)regs
->u_regs
[UREG_I7
],
119 (void *)regs
->u_regs
[UREG_FP
], code
);
121 print_vma_addr(KERN_CONT
" in ", regs
->pc
);
123 printk(KERN_CONT
"\n");
126 static void __do_fault_siginfo(int code
, int sig
, struct pt_regs
*regs
,
129 if (unlikely(show_unhandled_signals
))
130 show_signal_msg(regs
, sig
, code
,
133 force_sig_fault(sig
, code
, (void __user
*) addr
, 0);
136 static unsigned long compute_si_addr(struct pt_regs
*regs
, int text_fault
)
143 if (regs
->psr
& PSR_PS
)
144 insn
= *(unsigned int *) regs
->pc
;
146 __get_user(insn
, (unsigned int *) regs
->pc
);
148 return safe_compute_effective_address(regs
, insn
);
151 static noinline
void do_fault_siginfo(int code
, int sig
, struct pt_regs
*regs
,
154 unsigned long addr
= compute_si_addr(regs
, text_fault
);
156 __do_fault_siginfo(code
, sig
, regs
, addr
);
159 asmlinkage
void do_sparc_fault(struct pt_regs
*regs
, int text_fault
, int write
,
160 unsigned long address
)
162 struct vm_area_struct
*vma
;
163 struct task_struct
*tsk
= current
;
164 struct mm_struct
*mm
= tsk
->mm
;
167 int from_user
= !(regs
->psr
& PSR_PS
);
170 unsigned int flags
= FAULT_FLAG_DEFAULT
;
176 * We fault-in kernel-space virtual memory on-demand. The
177 * 'reference' page table is init_mm.pgd.
179 * NOTE! We MUST NOT take any locks for this case. We may
180 * be in an interrupt or a critical region, and should
181 * only copy the information from the master page table,
185 if (address
>= TASK_SIZE
)
189 * If we're in an interrupt or have no user
190 * context, we must not take the fault..
192 if (pagefault_disabled() || !mm
)
195 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS
, 1, regs
, address
);
200 if (!from_user
&& address
>= PAGE_OFFSET
)
203 vma
= find_vma(mm
, address
);
206 if (vma
->vm_start
<= address
)
208 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
210 if (expand_stack(vma
, address
))
213 * Ok, we have a good vm_area for this memory access, so
219 if (!(vma
->vm_flags
& VM_WRITE
))
222 /* Allow reads even for write-only mappings */
223 if (!(vma
->vm_flags
& (VM_READ
| VM_EXEC
)))
228 flags
|= FAULT_FLAG_USER
;
230 flags
|= FAULT_FLAG_WRITE
;
233 * If for any reason at all we couldn't handle the fault,
234 * make sure we exit gracefully rather than endlessly redo
237 fault
= handle_mm_fault(vma
, address
, flags
, regs
);
239 if (fault_signal_pending(fault
, regs
))
242 if (unlikely(fault
& VM_FAULT_ERROR
)) {
243 if (fault
& VM_FAULT_OOM
)
245 else if (fault
& VM_FAULT_SIGSEGV
)
247 else if (fault
& VM_FAULT_SIGBUS
)
252 if (flags
& FAULT_FLAG_ALLOW_RETRY
) {
253 if (fault
& VM_FAULT_RETRY
) {
254 flags
|= FAULT_FLAG_TRIED
;
256 /* No need to mmap_read_unlock(mm) as we would
257 * have already released it in __lock_page_or_retry
265 mmap_read_unlock(mm
);
269 * Something tried to access memory that isn't in our memory map..
270 * Fix it, but check if it's kernel or user first..
273 mmap_read_unlock(mm
);
275 bad_area_nosemaphore
:
276 /* User mode accesses just cause a SIGSEGV */
278 do_fault_siginfo(code
, SIGSEGV
, regs
, text_fault
);
282 /* Is this in ex_table? */
284 g2
= regs
->u_regs
[UREG_G2
];
286 fixup
= search_extables_range(regs
->pc
, &g2
);
287 /* Values below 10 are reserved for other things */
289 extern const unsigned int __memset_start
[];
290 extern const unsigned int __memset_end
[];
292 #ifdef DEBUG_EXCEPTIONS
293 printk("Exception: PC<%08lx> faddr<%08lx>\n",
295 printk("EX_TABLE: insn<%08lx> fixup<%08x> g2<%08lx>\n",
296 regs
->pc
, fixup
, g2
);
298 if ((regs
->pc
>= (unsigned long)__memset_start
&&
299 regs
->pc
< (unsigned long)__memset_end
)) {
300 regs
->u_regs
[UREG_I4
] = address
;
301 regs
->u_regs
[UREG_I5
] = regs
->pc
;
303 regs
->u_regs
[UREG_G2
] = g2
;
305 regs
->npc
= regs
->pc
+ 4;
310 unhandled_fault(address
, tsk
, regs
);
314 * We ran out of memory, or some other thing happened to us that made
315 * us unable to handle the page fault gracefully.
318 mmap_read_unlock(mm
);
320 pagefault_out_of_memory();
326 mmap_read_unlock(mm
);
327 do_fault_siginfo(BUS_ADRERR
, SIGBUS
, regs
, text_fault
);
334 * Synchronize this task's top level page-table
335 * with the 'reference' page table.
337 int offset
= pgd_index(address
);
343 pgd
= tsk
->active_mm
->pgd
+ offset
;
344 pgd_k
= init_mm
.pgd
+ offset
;
346 if (!pgd_present(*pgd
)) {
347 if (!pgd_present(*pgd_k
))
348 goto bad_area_nosemaphore
;
349 pgd_val(*pgd
) = pgd_val(*pgd_k
);
353 p4d
= p4d_offset(pgd
, address
);
354 pud
= pud_offset(p4d
, address
);
355 pmd
= pmd_offset(pud
, address
);
357 p4d_k
= p4d_offset(pgd_k
, address
);
358 pud_k
= pud_offset(p4d_k
, address
);
359 pmd_k
= pmd_offset(pud_k
, address
);
361 if (pmd_present(*pmd
) || !pmd_present(*pmd_k
))
362 goto bad_area_nosemaphore
;
369 /* This always deals with user addresses. */
370 static void force_user_fault(unsigned long address
, int write
)
372 struct vm_area_struct
*vma
;
373 struct task_struct
*tsk
= current
;
374 struct mm_struct
*mm
= tsk
->mm
;
375 unsigned int flags
= FAULT_FLAG_USER
;
381 vma
= find_vma(mm
, address
);
384 if (vma
->vm_start
<= address
)
386 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
388 if (expand_stack(vma
, address
))
393 if (!(vma
->vm_flags
& VM_WRITE
))
395 flags
|= FAULT_FLAG_WRITE
;
397 if (!(vma
->vm_flags
& (VM_READ
| VM_EXEC
)))
400 switch (handle_mm_fault(vma
, address
, flags
, NULL
)) {
401 case VM_FAULT_SIGBUS
:
405 mmap_read_unlock(mm
);
408 mmap_read_unlock(mm
);
409 __do_fault_siginfo(code
, SIGSEGV
, tsk
->thread
.kregs
, address
);
413 mmap_read_unlock(mm
);
414 __do_fault_siginfo(BUS_ADRERR
, SIGBUS
, tsk
->thread
.kregs
, address
);
417 static void check_stack_aligned(unsigned long sp
)
423 void window_overflow_fault(void)
427 sp
= current_thread_info()->rwbuf_stkptrs
[0];
428 if (((sp
+ 0x38) & PAGE_MASK
) != (sp
& PAGE_MASK
))
429 force_user_fault(sp
+ 0x38, 1);
430 force_user_fault(sp
, 1);
432 check_stack_aligned(sp
);
435 void window_underflow_fault(unsigned long sp
)
437 if (((sp
+ 0x38) & PAGE_MASK
) != (sp
& PAGE_MASK
))
438 force_user_fault(sp
+ 0x38, 0);
439 force_user_fault(sp
, 0);
441 check_stack_aligned(sp
);
444 void window_ret_fault(struct pt_regs
*regs
)
448 sp
= regs
->u_regs
[UREG_FP
];
449 if (((sp
+ 0x38) & PAGE_MASK
) != (sp
& PAGE_MASK
))
450 force_user_fault(sp
+ 0x38, 0);
451 force_user_fault(sp
, 0);
453 check_stack_aligned(sp
);