blob: 2505b2ea0ef187803033c096bab3cff8eac45f02 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/mm/fault.c
3 *
4 * S390 version
5 * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Hartmut Penner (hp@de.ibm.com)
7 * Ulrich Weigand (uweigand@de.ibm.com)
8 *
9 * Derived from "arch/i386/mm/fault.c"
10 * Copyright (C) 1995 Linus Torvalds
11 */
12
Ingo Molnarcdd6c482009-09-21 12:02:48 +020013#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/signal.h>
15#include <linux/sched.h>
16#include <linux/kernel.h>
17#include <linux/errno.h>
18#include <linux/string.h>
19#include <linux/types.h>
20#include <linux/ptrace.h>
21#include <linux/mman.h>
22#include <linux/mm.h>
Heiko Carstens77575912009-06-12 10:26:25 +020023#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/smp.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070025#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/console.h>
28#include <linux/module.h>
29#include <linux/hardirq.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020030#include <linux/kprobes.h>
Martin Schwidefskybe5ec362007-04-27 16:01:44 +020031#include <linux/uaccess.h>
Gerald Schaefer53492b12008-04-30 13:38:46 +020032#include <linux/hugetlb.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010033#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/pgtable.h>
Heiko Carstens29b08d22006-12-04 15:40:40 +010036#include <asm/s390_ext.h>
Martin Schwidefsky6252d702008-02-09 18:24:37 +010037#include <asm/mmu_context.h>
Martin Schwidefsky50d72802009-12-07 12:51:45 +010038#include <asm/compat.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020039#include "../kernel/entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080041#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define __FAIL_ADDR_MASK 0x7ffff000
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define __SUBCODE_MASK 0x0200
44#define __PF_RES_FIELD 0ULL
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080045#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define __FAIL_ADDR_MASK -4096L
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define __SUBCODE_MASK 0x0600
48#define __PF_RES_FIELD 0x8000000000000000ULL
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080049#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Martin Schwidefsky50d72802009-12-07 12:51:45 +010051#define VM_FAULT_BADCONTEXT 0x010000
52#define VM_FAULT_BADMAP 0x020000
53#define VM_FAULT_BADACCESS 0x040000
54
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +010055static inline int notify_page_fault(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +020056{
Christoph Hellwig33464e32007-05-04 18:47:46 +020057 int ret = 0;
58
59 /* kprobe_running() needs smp_processor_id() */
Heiko Carstens22e0a042010-02-26 22:37:45 +010060 if (kprobes_built_in() && !user_mode(regs)) {
Christoph Hellwig33464e32007-05-04 18:47:46 +020061 preempt_disable();
62 if (kprobe_running() && kprobe_fault_handler(regs, 14))
63 ret = 1;
64 preempt_enable();
65 }
Christoph Hellwig33464e32007-05-04 18:47:46 +020066 return ret;
Michael Grundy4ba069b2006-09-20 15:58:39 +020067}
Michael Grundy4ba069b2006-09-20 15:58:39 +020068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*
71 * Unlock any spinlocks which will prevent us from getting the
Kirill Korotaevcefc8be2007-02-10 01:46:18 -080072 * message out.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74void bust_spinlocks(int yes)
75{
76 if (yes) {
77 oops_in_progress = 1;
78 } else {
79 int loglevel_save = console_loglevel;
80 console_unblank();
81 oops_in_progress = 0;
82 /*
83 * OK, the message is on the console. Now we call printk()
84 * without oops_in_progress set so that printk will give klogd
85 * a poke. Hold onto your hats...
86 */
87 console_loglevel = 15;
88 printk(" ");
89 console_loglevel = loglevel_save;
90 }
91}
92
93/*
Gerald Schaefer482b05d2007-03-05 23:35:54 +010094 * Returns the address space associated with the fault.
Martin Schwidefsky61365e12009-12-07 12:51:42 +010095 * Returns 0 for kernel space and 1 for user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +010097static inline int user_space_fault(unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 /*
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100100 * The lowest two bits of the translation exception
101 * identification indicate which paging table was used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100103 trans_exc_code &= 3;
104 if (trans_exc_code == 2)
105 /* Access via secondary space, set_fs setting decides */
106 return current->thread.mm_segment.ar4;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100107 if (user_mode == HOME_SPACE_MODE)
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100108 /* User space if the access has been done via home space. */
109 return trans_exc_code == 3;
110 /*
111 * If the user space is not the home space the kernel runs in home
112 * space. Access via secondary space has already been covered,
113 * access via primary space or access register is from user space
114 * and access via home space is from the kernel.
115 */
116 return trans_exc_code != 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200119static inline void report_user_fault(struct pt_regs *regs, long int_code,
120 int signr, unsigned long address)
121{
122 if ((task_pid_nr(current) > 1) && !show_unhandled_signals)
123 return;
124 if (!unhandled_signal(current, signr))
125 return;
126 if (!printk_ratelimit())
127 return;
128 printk("User process fault: interruption code 0x%lX ", int_code);
129 print_vma_addr(KERN_CONT "in ", regs->psw.addr & PSW_ADDR_INSN);
130 printk("\n");
131 printk("failing address: %lX\n", address);
132 show_regs(regs);
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/*
136 * Send SIGSEGV to task. This is an external routine
137 * to keep the stack usage of do_page_fault small.
138 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100139static noinline void do_sigsegv(struct pt_regs *regs, long int_code,
140 int si_code, unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct siginfo si;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100143 unsigned long address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100145 address = trans_exc_code & __FAIL_ADDR_MASK;
146 current->thread.prot_addr = address;
147 current->thread.trap_no = int_code;
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200148 report_user_fault(regs, int_code, SIGSEGV, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 si.si_signo = SIGSEGV;
150 si.si_code = si_code;
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200151 si.si_addr = (void __user *) address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 force_sig_info(SIGSEGV, &si, current);
153}
154
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100155static noinline void do_no_context(struct pt_regs *regs, long int_code,
156 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200157{
158 const struct exception_table_entry *fixup;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100159 unsigned long address;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200160
161 /* Are we prepared to handle this kernel fault? */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100162 fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200163 if (fixup) {
164 regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
165 return;
166 }
167
168 /*
169 * Oops. The kernel tried to access some bad page. We'll have to
170 * terminate things with extreme prejudice.
171 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100172 address = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100173 if (!user_space_fault(trans_exc_code))
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200174 printk(KERN_ALERT "Unable to handle kernel pointer dereference"
175 " at virtual kernel address %p\n", (void *)address);
176 else
177 printk(KERN_ALERT "Unable to handle kernel paging request"
178 " at virtual user address %p\n", (void *)address);
179
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100180 die("Oops", regs, int_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200181 do_exit(SIGKILL);
182}
183
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100184static noinline void do_low_address(struct pt_regs *regs, long int_code,
185 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200186{
187 /* Low-address protection hit in kernel mode means
188 NULL pointer write access in kernel mode. */
189 if (regs->psw.mask & PSW_MASK_PSTATE) {
190 /* Low-address protection hit in user mode 'cannot happen'. */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100191 die ("Low-address protection", regs, int_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200192 do_exit(SIGKILL);
193 }
194
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100195 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200196}
197
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100198static noinline void do_sigbus(struct pt_regs *regs, long int_code,
199 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200200{
201 struct task_struct *tsk = current;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200202
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200203 /*
204 * Send a sigbus, regardless of whether we were in kernel
205 * or user mode.
206 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100207 tsk->thread.prot_addr = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100208 tsk->thread.trap_no = int_code;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200209 force_sig(SIGBUS, tsk);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200210}
211
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100212#ifdef CONFIG_S390_EXEC_PROTECT
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100213static noinline int signal_return(struct pt_regs *regs, long int_code,
214 unsigned long trans_exc_code)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100215{
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200216 u16 instruction;
Heiko Carstens490f03d2007-05-10 15:45:48 +0200217 int rc;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100218
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200219 rc = __get_user(instruction, (u16 __user *) regs->psw.addr);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100220
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100221 if (!rc && instruction == 0x0a77) {
222 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
223 if (is_compat_task())
224 sys32_sigreturn();
225 else
226 sys_sigreturn();
227 } else if (!rc && instruction == 0x0aad) {
228 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
229 if (is_compat_task())
230 sys32_rt_sigreturn();
231 else
232 sys_rt_sigreturn();
233 } else
234 do_sigsegv(regs, int_code, SEGV_MAPERR, trans_exc_code);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100235 return 0;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100236}
237#endif /* CONFIG_S390_EXEC_PROTECT */
238
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100239static noinline void do_fault_error(struct pt_regs *regs, long int_code,
240 unsigned long trans_exc_code, int fault)
241{
242 int si_code;
243
244 switch (fault) {
245 case VM_FAULT_BADACCESS:
246#ifdef CONFIG_S390_EXEC_PROTECT
247 if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
248 (trans_exc_code & 3) == 0) {
249 signal_return(regs, int_code, trans_exc_code);
250 break;
251 }
252#endif /* CONFIG_S390_EXEC_PROTECT */
253 case VM_FAULT_BADMAP:
254 /* Bad memory access. Check if it is kernel or user space. */
255 if (regs->psw.mask & PSW_MASK_PSTATE) {
256 /* User mode accesses just cause a SIGSEGV */
257 si_code = (fault == VM_FAULT_BADMAP) ?
258 SEGV_MAPERR : SEGV_ACCERR;
259 do_sigsegv(regs, int_code, si_code, trans_exc_code);
260 return;
261 }
262 case VM_FAULT_BADCONTEXT:
263 do_no_context(regs, int_code, trans_exc_code);
264 break;
265 default: /* fault & VM_FAULT_ERROR */
266 if (fault & VM_FAULT_OOM)
267 pagefault_out_of_memory();
268 else if (fault & VM_FAULT_SIGBUS) {
269 do_sigbus(regs, int_code, trans_exc_code);
270 /* Kernel mode? Handle exceptions or die */
271 if (!(regs->psw.mask & PSW_MASK_PSTATE))
272 do_no_context(regs, int_code, trans_exc_code);
273 } else
274 BUG();
275 break;
276 }
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/*
280 * This routine handles page faults. It determines the address,
281 * and the problem, and then passes it off to one of the appropriate
282 * routines.
283 *
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100284 * interruption code (int_code):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * 04 Protection -> Write-Protection (suprression)
286 * 10 Segment translation -> Not present (nullification)
287 * 11 Page translation -> Not present (nullification)
288 * 3b Region third trans. -> Not present (nullification)
289 */
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100290static inline int do_exception(struct pt_regs *regs, int access,
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100291 unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200293 struct task_struct *tsk;
294 struct mm_struct *mm;
295 struct vm_area_struct *vma;
296 unsigned long address;
Nick Piggin83c54072007-07-19 01:47:05 -0700297 int fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +0100299 if (notify_page_fault(regs))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100300 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200301
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200302 tsk = current;
303 mm = tsk->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /*
306 * Verify that the fault happened in user space, that
307 * we are not in an interrupt and that there is a
308 * user context.
309 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100310 fault = VM_FAULT_BADCONTEXT;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100311 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100312 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100314 address = trans_exc_code & __FAIL_ADDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /*
316 * When we get here, the fault happened in the current
317 * task's user address space, so we can switch on the
318 * interrupts again and then search the VMAs
319 */
320 local_irq_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200321 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200322 down_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100324 fault = VM_FAULT_BADMAP;
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100325 vma = find_vma(mm, address);
326 if (!vma)
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100327 goto out_up;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100328
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100329 if (unlikely(vma->vm_start > address)) {
330 if (!(vma->vm_flags & VM_GROWSDOWN))
331 goto out_up;
332 if (expand_stack(vma, address))
333 goto out_up;
334 }
335
336 /*
337 * Ok, we have a good vm_area for this memory access, so
338 * we can handle it..
339 */
340 fault = VM_FAULT_BADACCESS;
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100341 if (unlikely(!(vma->vm_flags & access)))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100342 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Gerald Schaefer53492b12008-04-30 13:38:46 +0200344 if (is_vm_hugetlb_page(vma))
345 address &= HPAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /*
347 * If for any reason at all we couldn't handle the fault,
348 * make sure we exit gracefully rather than endlessly redo
349 * the fault.
350 */
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100351 fault = handle_mm_fault(mm, vma, address,
352 (access == VM_WRITE) ? FAULT_FLAG_WRITE : 0);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100353 if (unlikely(fault & VM_FAULT_ERROR))
354 goto out_up;
355
Heiko Carstensbde69af2009-09-11 10:29:06 +0200356 if (fault & VM_FAULT_MAJOR) {
Nick Piggin83c54072007-07-19 01:47:05 -0700357 tsk->maj_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200358 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200359 regs, address);
360 } else {
Nick Piggin83c54072007-07-19 01:47:05 -0700361 tsk->min_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200362 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200363 regs, address);
364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 /*
366 * The instruction that caused the program check will
367 * be repeated. Don't signal single step via SIGTRAP.
368 */
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100369 clear_tsk_thread_flag(tsk, TIF_SINGLE_STEP);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100370 fault = 0;
371out_up:
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200372 up_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100373out:
374 return fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100377void __kprobes do_protection_exception(struct pt_regs *regs, long int_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100379 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100380 int fault;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100381
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200382 /* Protection exception is supressing, decrement psw address. */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100383 regs->psw.addr -= (int_code >> 16);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200384 /*
385 * Check for low-address protection. This needs to be treated
386 * as a special case because the translation exception code
387 * field is not guaranteed to contain valid data in this case.
388 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100389 if (unlikely(!(trans_exc_code & 4))) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100390 do_low_address(regs, int_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200391 return;
392 }
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100393 fault = do_exception(regs, VM_WRITE, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100394 if (unlikely(fault))
395 do_fault_error(regs, 4, trans_exc_code, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100398void __kprobes do_dat_exception(struct pt_regs *regs, long int_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100400 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100401 int access, fault;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100402
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100403 access = VM_READ | VM_EXEC | VM_WRITE;
404#ifdef CONFIG_S390_EXEC_PROTECT
405 if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
406 (trans_exc_code & 3) == 0)
407 access = VM_EXEC;
408#endif
409 fault = do_exception(regs, access, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100410 if (unlikely(fault))
411 do_fault_error(regs, int_code & 255, trans_exc_code, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100414#ifdef CONFIG_64BIT
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100415void __kprobes do_asce_exception(struct pt_regs *regs, long int_code)
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100416{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100417 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100418 struct mm_struct *mm = current->mm;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100419 struct vm_area_struct *vma;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100420
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100421 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100422 goto no_context;
423
424 local_irq_enable();
425
426 down_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100427 vma = find_vma(mm, trans_exc_code & __FAIL_ADDR_MASK);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100428 up_read(&mm->mmap_sem);
429
430 if (vma) {
431 update_mm(mm, current);
432 return;
433 }
434
435 /* User mode accesses just cause a SIGSEGV */
436 if (regs->psw.mask & PSW_MASK_PSTATE) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100437 do_sigsegv(regs, int_code, SEGV_MAPERR, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100438 return;
439 }
440
441no_context:
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100442 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100443}
444#endif
445
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100446int __handle_fault(unsigned long uaddr, unsigned long int_code, int write_user)
447{
448 struct pt_regs regs;
449 int access, fault;
450
451 regs.psw.mask = psw_kernel_bits;
452 if (!irqs_disabled())
453 regs.psw.mask |= PSW_MASK_IO | PSW_MASK_EXT;
454 regs.psw.addr = (unsigned long) __builtin_return_address(0);
455 regs.psw.addr |= PSW_ADDR_AMODE;
456 uaddr &= PAGE_MASK;
457 access = write_user ? VM_WRITE : VM_READ;
458 fault = do_exception(&regs, access, uaddr | 2);
459 if (unlikely(fault)) {
460 if (fault & VM_FAULT_OOM) {
461 pagefault_out_of_memory();
462 fault = 0;
463 } else if (fault & VM_FAULT_SIGBUS)
464 do_sigbus(&regs, int_code, uaddr);
465 }
466 return fault ? -EFAULT : 0;
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#ifdef CONFIG_PFAULT
470/*
471 * 'pfault' pseudo page faults routines.
472 */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100473static ext_int_info_t ext_int_pfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474static int pfault_disable = 0;
475
476static int __init nopfault(char *str)
477{
478 pfault_disable = 1;
479 return 1;
480}
481
482__setup("nopfault", nopfault);
483
484typedef struct {
485 __u16 refdiagc;
486 __u16 reffcode;
487 __u16 refdwlen;
488 __u16 refversn;
489 __u64 refgaddr;
490 __u64 refselmk;
491 __u64 refcmpmk;
492 __u64 reserved;
Heiko Carstensc41fbc62007-10-12 16:11:51 +0200493} __attribute__ ((packed, aligned(8))) pfault_refbk_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495int pfault_init(void)
496{
497 pfault_refbk_t refbk =
498 { 0x258, 0, 5, 2, __LC_CURRENT, 1ULL << 48, 1ULL << 48,
499 __PF_RES_FIELD };
500 int rc;
501
Heiko Carstens29b08d22006-12-04 15:40:40 +0100502 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return -1;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200504 asm volatile(
505 " diag %1,%0,0x258\n"
506 "0: j 2f\n"
507 "1: la %0,8\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 "2:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200509 EX_TABLE(0b,1b)
510 : "=d" (rc) : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 __ctl_set_bit(0, 9);
512 return rc;
513}
514
515void pfault_fini(void)
516{
517 pfault_refbk_t refbk =
518 { 0x258, 1, 5, 2, 0ULL, 0ULL, 0ULL, 0ULL };
519
Heiko Carstens29b08d22006-12-04 15:40:40 +0100520 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return;
522 __ctl_clear_bit(0,9);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200523 asm volatile(
524 " diag %0,0,0x258\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 "0:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200526 EX_TABLE(0b,0b)
527 : : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100530static void pfault_interrupt(__u16 int_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 struct task_struct *tsk;
533 __u16 subcode;
534
535 /*
536 * Get the external interruption subcode & pfault
537 * initial/completion signal bit. VM stores this
538 * in the 'cpu address' field associated with the
539 * external interrupt.
540 */
541 subcode = S390_lowcore.cpu_addr;
542 if ((subcode & 0xff00) != __SUBCODE_MASK)
543 return;
544
545 /*
546 * Get the token (= address of the task structure of the affected task).
547 */
548 tsk = *(struct task_struct **) __LC_PFAULT_INTPARM;
549
550 if (subcode & 0x0080) {
551 /* signal bit is set -> a page has been swapped in by VM */
552 if (xchg(&tsk->thread.pfault_wait, -1) != 0) {
553 /* Initial interrupt was faster than the completion
554 * interrupt. pfault_wait is valid. Set pfault_wait
555 * back to zero and wake up the process. This can
556 * safely be done because the task is still sleeping
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700557 * and can't produce new pfaults. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 tsk->thread.pfault_wait = 0;
559 wake_up_process(tsk);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700560 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562 } else {
563 /* signal bit not set -> a real page is missing. */
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700564 get_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
566 if (xchg(&tsk->thread.pfault_wait, 1) != 0) {
567 /* Completion interrupt was faster than the initial
568 * interrupt (swapped in a -1 for pfault_wait). Set
569 * pfault_wait back to zero and exit. This can be
570 * done safely because tsk is running in kernel
571 * mode and can't produce new pfaults. */
572 tsk->thread.pfault_wait = 0;
573 set_task_state(tsk, TASK_RUNNING);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700574 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 } else
576 set_tsk_need_resched(tsk);
577 }
578}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Heiko Carstens29b08d22006-12-04 15:40:40 +0100580void __init pfault_irq_init(void)
581{
582 if (!MACHINE_IS_VM)
583 return;
584
585 /*
586 * Try to get pfault pseudo page faults going.
587 */
588 if (register_early_external_interrupt(0x2603, pfault_interrupt,
589 &ext_int_pfault) != 0)
590 panic("Couldn't request external interrupt 0x2603");
591
592 if (pfault_init() == 0)
593 return;
594
595 /* Tough luck, no pfault. */
596 pfault_disable = 1;
597 unregister_early_external_interrupt(0x2603, pfault_interrupt,
598 &ext_int_pfault);
599}
600#endif