blob: bae2c282221cf14ed225e7037b85434d94c26c86 [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 Schwidefsky92f842e2010-10-25 16:10:13 +020055static unsigned long store_indication;
56
57void fault_init(void)
58{
59 unsigned long long facility_list[2];
60
61 if (stfle(facility_list, 2) < 2)
62 return;
63 if ((facility_list[0] & (1ULL << 61)) &&
64 (facility_list[1] & (1ULL << 52)))
65 store_indication = 0xc00;
66}
67
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +010068static inline int notify_page_fault(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +020069{
Christoph Hellwig33464e32007-05-04 18:47:46 +020070 int ret = 0;
71
72 /* kprobe_running() needs smp_processor_id() */
Heiko Carstens22e0a042010-02-26 22:37:45 +010073 if (kprobes_built_in() && !user_mode(regs)) {
Christoph Hellwig33464e32007-05-04 18:47:46 +020074 preempt_disable();
75 if (kprobe_running() && kprobe_fault_handler(regs, 14))
76 ret = 1;
77 preempt_enable();
78 }
Christoph Hellwig33464e32007-05-04 18:47:46 +020079 return ret;
Michael Grundy4ba069b2006-09-20 15:58:39 +020080}
Michael Grundy4ba069b2006-09-20 15:58:39 +020081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/*
84 * Unlock any spinlocks which will prevent us from getting the
Kirill Korotaevcefc8be2007-02-10 01:46:18 -080085 * message out.
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
87void bust_spinlocks(int yes)
88{
89 if (yes) {
90 oops_in_progress = 1;
91 } else {
92 int loglevel_save = console_loglevel;
93 console_unblank();
94 oops_in_progress = 0;
95 /*
96 * OK, the message is on the console. Now we call printk()
97 * without oops_in_progress set so that printk will give klogd
98 * a poke. Hold onto your hats...
99 */
100 console_loglevel = 15;
101 printk(" ");
102 console_loglevel = loglevel_save;
103 }
104}
105
106/*
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100107 * Returns the address space associated with the fault.
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100108 * Returns 0 for kernel space and 1 for user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100110static inline int user_space_fault(unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 /*
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100113 * The lowest two bits of the translation exception
114 * identification indicate which paging table was used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100116 trans_exc_code &= 3;
117 if (trans_exc_code == 2)
118 /* Access via secondary space, set_fs setting decides */
119 return current->thread.mm_segment.ar4;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100120 if (user_mode == HOME_SPACE_MODE)
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100121 /* User space if the access has been done via home space. */
122 return trans_exc_code == 3;
123 /*
124 * If the user space is not the home space the kernel runs in home
125 * space. Access via secondary space has already been covered,
126 * access via primary space or access register is from user space
127 * and access via home space is from the kernel.
128 */
129 return trans_exc_code != 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200132static inline void report_user_fault(struct pt_regs *regs, long int_code,
133 int signr, unsigned long address)
134{
135 if ((task_pid_nr(current) > 1) && !show_unhandled_signals)
136 return;
137 if (!unhandled_signal(current, signr))
138 return;
139 if (!printk_ratelimit())
140 return;
141 printk("User process fault: interruption code 0x%lX ", int_code);
142 print_vma_addr(KERN_CONT "in ", regs->psw.addr & PSW_ADDR_INSN);
143 printk("\n");
144 printk("failing address: %lX\n", address);
145 show_regs(regs);
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
149 * Send SIGSEGV to task. This is an external routine
150 * to keep the stack usage of do_page_fault small.
151 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100152static noinline void do_sigsegv(struct pt_regs *regs, long int_code,
153 int si_code, unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct siginfo si;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100156 unsigned long address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100158 address = trans_exc_code & __FAIL_ADDR_MASK;
159 current->thread.prot_addr = address;
160 current->thread.trap_no = int_code;
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200161 report_user_fault(regs, int_code, SIGSEGV, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 si.si_signo = SIGSEGV;
163 si.si_code = si_code;
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200164 si.si_addr = (void __user *) address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 force_sig_info(SIGSEGV, &si, current);
166}
167
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100168static noinline void do_no_context(struct pt_regs *regs, long int_code,
169 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200170{
171 const struct exception_table_entry *fixup;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100172 unsigned long address;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200173
174 /* Are we prepared to handle this kernel fault? */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100175 fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200176 if (fixup) {
177 regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
178 return;
179 }
180
181 /*
182 * Oops. The kernel tried to access some bad page. We'll have to
183 * terminate things with extreme prejudice.
184 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100185 address = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100186 if (!user_space_fault(trans_exc_code))
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200187 printk(KERN_ALERT "Unable to handle kernel pointer dereference"
188 " at virtual kernel address %p\n", (void *)address);
189 else
190 printk(KERN_ALERT "Unable to handle kernel paging request"
191 " at virtual user address %p\n", (void *)address);
192
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100193 die("Oops", regs, int_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200194 do_exit(SIGKILL);
195}
196
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100197static noinline void do_low_address(struct pt_regs *regs, long int_code,
198 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200199{
200 /* Low-address protection hit in kernel mode means
201 NULL pointer write access in kernel mode. */
202 if (regs->psw.mask & PSW_MASK_PSTATE) {
203 /* Low-address protection hit in user mode 'cannot happen'. */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100204 die ("Low-address protection", regs, int_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200205 do_exit(SIGKILL);
206 }
207
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100208 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200209}
210
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100211static noinline void do_sigbus(struct pt_regs *regs, long int_code,
212 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200213{
214 struct task_struct *tsk = current;
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200215 unsigned long address;
216 struct siginfo si;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200217
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200218 /*
219 * Send a sigbus, regardless of whether we were in kernel
220 * or user mode.
221 */
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200222 address = trans_exc_code & __FAIL_ADDR_MASK;
223 tsk->thread.prot_addr = address;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100224 tsk->thread.trap_no = int_code;
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200225 si.si_signo = SIGBUS;
226 si.si_errno = 0;
227 si.si_code = BUS_ADRERR;
228 si.si_addr = (void __user *) address;
229 force_sig_info(SIGBUS, &si, tsk);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200230}
231
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100232#ifdef CONFIG_S390_EXEC_PROTECT
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100233static noinline int signal_return(struct pt_regs *regs, long int_code,
234 unsigned long trans_exc_code)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100235{
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200236 u16 instruction;
Heiko Carstens490f03d2007-05-10 15:45:48 +0200237 int rc;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100238
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200239 rc = __get_user(instruction, (u16 __user *) regs->psw.addr);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100240
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100241 if (!rc && instruction == 0x0a77) {
242 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
243 if (is_compat_task())
244 sys32_sigreturn();
245 else
246 sys_sigreturn();
247 } else if (!rc && instruction == 0x0aad) {
248 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
249 if (is_compat_task())
250 sys32_rt_sigreturn();
251 else
252 sys_rt_sigreturn();
253 } else
254 do_sigsegv(regs, int_code, SEGV_MAPERR, trans_exc_code);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100255 return 0;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100256}
257#endif /* CONFIG_S390_EXEC_PROTECT */
258
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100259static noinline void do_fault_error(struct pt_regs *regs, long int_code,
260 unsigned long trans_exc_code, int fault)
261{
262 int si_code;
263
264 switch (fault) {
265 case VM_FAULT_BADACCESS:
266#ifdef CONFIG_S390_EXEC_PROTECT
267 if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
268 (trans_exc_code & 3) == 0) {
269 signal_return(regs, int_code, trans_exc_code);
270 break;
271 }
272#endif /* CONFIG_S390_EXEC_PROTECT */
273 case VM_FAULT_BADMAP:
274 /* Bad memory access. Check if it is kernel or user space. */
275 if (regs->psw.mask & PSW_MASK_PSTATE) {
276 /* User mode accesses just cause a SIGSEGV */
277 si_code = (fault == VM_FAULT_BADMAP) ?
278 SEGV_MAPERR : SEGV_ACCERR;
279 do_sigsegv(regs, int_code, si_code, trans_exc_code);
280 return;
281 }
282 case VM_FAULT_BADCONTEXT:
283 do_no_context(regs, int_code, trans_exc_code);
284 break;
285 default: /* fault & VM_FAULT_ERROR */
286 if (fault & VM_FAULT_OOM)
287 pagefault_out_of_memory();
288 else if (fault & VM_FAULT_SIGBUS) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100289 /* Kernel mode? Handle exceptions or die */
290 if (!(regs->psw.mask & PSW_MASK_PSTATE))
291 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200292 else
293 do_sigbus(regs, int_code, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100294 } else
295 BUG();
296 break;
297 }
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
301 * This routine handles page faults. It determines the address,
302 * and the problem, and then passes it off to one of the appropriate
303 * routines.
304 *
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100305 * interruption code (int_code):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 * 04 Protection -> Write-Protection (suprression)
307 * 10 Segment translation -> Not present (nullification)
308 * 11 Page translation -> Not present (nullification)
309 * 3b Region third trans. -> Not present (nullification)
310 */
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100311static inline int do_exception(struct pt_regs *regs, int access,
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100312 unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200314 struct task_struct *tsk;
315 struct mm_struct *mm;
316 struct vm_area_struct *vma;
317 unsigned long address;
Martin Schwidefsky92f842e2010-10-25 16:10:13 +0200318 int fault, write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +0100320 if (notify_page_fault(regs))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100321 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200322
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200323 tsk = current;
324 mm = tsk->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*
327 * Verify that the fault happened in user space, that
328 * we are not in an interrupt and that there is a
329 * user context.
330 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100331 fault = VM_FAULT_BADCONTEXT;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100332 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100333 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100335 address = trans_exc_code & __FAIL_ADDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /*
337 * When we get here, the fault happened in the current
338 * task's user address space, so we can switch on the
339 * interrupts again and then search the VMAs
340 */
341 local_irq_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200342 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200343 down_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100345 fault = VM_FAULT_BADMAP;
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100346 vma = find_vma(mm, address);
347 if (!vma)
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100348 goto out_up;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100349
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100350 if (unlikely(vma->vm_start > address)) {
351 if (!(vma->vm_flags & VM_GROWSDOWN))
352 goto out_up;
353 if (expand_stack(vma, address))
354 goto out_up;
355 }
356
357 /*
358 * Ok, we have a good vm_area for this memory access, so
359 * we can handle it..
360 */
361 fault = VM_FAULT_BADACCESS;
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100362 if (unlikely(!(vma->vm_flags & access)))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100363 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Gerald Schaefer53492b12008-04-30 13:38:46 +0200365 if (is_vm_hugetlb_page(vma))
366 address &= HPAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /*
368 * If for any reason at all we couldn't handle the fault,
369 * make sure we exit gracefully rather than endlessly redo
370 * the fault.
371 */
Martin Schwidefsky92f842e2010-10-25 16:10:13 +0200372 write = (access == VM_WRITE ||
373 (trans_exc_code & store_indication) == 0x400) ?
374 FAULT_FLAG_WRITE : 0;
375 fault = handle_mm_fault(mm, vma, address, write);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100376 if (unlikely(fault & VM_FAULT_ERROR))
377 goto out_up;
378
Heiko Carstensbde69af2009-09-11 10:29:06 +0200379 if (fault & VM_FAULT_MAJOR) {
Nick Piggin83c54072007-07-19 01:47:05 -0700380 tsk->maj_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200381 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200382 regs, address);
383 } else {
Nick Piggin83c54072007-07-19 01:47:05 -0700384 tsk->min_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200385 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200386 regs, address);
387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /*
389 * The instruction that caused the program check will
390 * be repeated. Don't signal single step via SIGTRAP.
391 */
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100392 clear_tsk_thread_flag(tsk, TIF_SINGLE_STEP);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100393 fault = 0;
394out_up:
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200395 up_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100396out:
397 return fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100400void __kprobes do_protection_exception(struct pt_regs *regs, long int_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100402 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100403 int fault;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100404
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200405 /* Protection exception is supressing, decrement psw address. */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100406 regs->psw.addr -= (int_code >> 16);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200407 /*
408 * Check for low-address protection. This needs to be treated
409 * as a special case because the translation exception code
410 * field is not guaranteed to contain valid data in this case.
411 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100412 if (unlikely(!(trans_exc_code & 4))) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100413 do_low_address(regs, int_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200414 return;
415 }
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100416 fault = do_exception(regs, VM_WRITE, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100417 if (unlikely(fault))
418 do_fault_error(regs, 4, trans_exc_code, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100421void __kprobes do_dat_exception(struct pt_regs *regs, long int_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100423 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100424 int access, fault;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100425
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100426 access = VM_READ | VM_EXEC | VM_WRITE;
427#ifdef CONFIG_S390_EXEC_PROTECT
428 if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
429 (trans_exc_code & 3) == 0)
430 access = VM_EXEC;
431#endif
432 fault = do_exception(regs, access, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100433 if (unlikely(fault))
434 do_fault_error(regs, int_code & 255, trans_exc_code, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100437#ifdef CONFIG_64BIT
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100438void __kprobes do_asce_exception(struct pt_regs *regs, long int_code)
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100439{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100440 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100441 struct mm_struct *mm = current->mm;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100442 struct vm_area_struct *vma;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100443
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100444 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100445 goto no_context;
446
447 local_irq_enable();
448
449 down_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100450 vma = find_vma(mm, trans_exc_code & __FAIL_ADDR_MASK);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100451 up_read(&mm->mmap_sem);
452
453 if (vma) {
454 update_mm(mm, current);
455 return;
456 }
457
458 /* User mode accesses just cause a SIGSEGV */
459 if (regs->psw.mask & PSW_MASK_PSTATE) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100460 do_sigsegv(regs, int_code, SEGV_MAPERR, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100461 return;
462 }
463
464no_context:
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100465 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100466}
467#endif
468
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100469int __handle_fault(unsigned long uaddr, unsigned long int_code, int write_user)
470{
471 struct pt_regs regs;
472 int access, fault;
473
474 regs.psw.mask = psw_kernel_bits;
475 if (!irqs_disabled())
476 regs.psw.mask |= PSW_MASK_IO | PSW_MASK_EXT;
477 regs.psw.addr = (unsigned long) __builtin_return_address(0);
478 regs.psw.addr |= PSW_ADDR_AMODE;
479 uaddr &= PAGE_MASK;
480 access = write_user ? VM_WRITE : VM_READ;
481 fault = do_exception(&regs, access, uaddr | 2);
482 if (unlikely(fault)) {
483 if (fault & VM_FAULT_OOM) {
484 pagefault_out_of_memory();
485 fault = 0;
486 } else if (fault & VM_FAULT_SIGBUS)
487 do_sigbus(&regs, int_code, uaddr);
488 }
489 return fault ? -EFAULT : 0;
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492#ifdef CONFIG_PFAULT
493/*
494 * 'pfault' pseudo page faults routines.
495 */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100496static ext_int_info_t ext_int_pfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497static int pfault_disable = 0;
498
499static int __init nopfault(char *str)
500{
501 pfault_disable = 1;
502 return 1;
503}
504
505__setup("nopfault", nopfault);
506
507typedef struct {
508 __u16 refdiagc;
509 __u16 reffcode;
510 __u16 refdwlen;
511 __u16 refversn;
512 __u64 refgaddr;
513 __u64 refselmk;
514 __u64 refcmpmk;
515 __u64 reserved;
Heiko Carstensc41fbc62007-10-12 16:11:51 +0200516} __attribute__ ((packed, aligned(8))) pfault_refbk_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518int pfault_init(void)
519{
520 pfault_refbk_t refbk =
521 { 0x258, 0, 5, 2, __LC_CURRENT, 1ULL << 48, 1ULL << 48,
522 __PF_RES_FIELD };
523 int rc;
524
Heiko Carstens29b08d22006-12-04 15:40:40 +0100525 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return -1;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200527 asm volatile(
528 " diag %1,%0,0x258\n"
529 "0: j 2f\n"
530 "1: la %0,8\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 "2:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200532 EX_TABLE(0b,1b)
533 : "=d" (rc) : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 __ctl_set_bit(0, 9);
535 return rc;
536}
537
538void pfault_fini(void)
539{
540 pfault_refbk_t refbk =
541 { 0x258, 1, 5, 2, 0ULL, 0ULL, 0ULL, 0ULL };
542
Heiko Carstens29b08d22006-12-04 15:40:40 +0100543 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return;
545 __ctl_clear_bit(0,9);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200546 asm volatile(
547 " diag %0,0,0x258\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 "0:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200549 EX_TABLE(0b,0b)
550 : : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100553static void pfault_interrupt(__u16 int_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 struct task_struct *tsk;
556 __u16 subcode;
557
558 /*
559 * Get the external interruption subcode & pfault
560 * initial/completion signal bit. VM stores this
561 * in the 'cpu address' field associated with the
562 * external interrupt.
563 */
564 subcode = S390_lowcore.cpu_addr;
565 if ((subcode & 0xff00) != __SUBCODE_MASK)
566 return;
567
568 /*
569 * Get the token (= address of the task structure of the affected task).
570 */
571 tsk = *(struct task_struct **) __LC_PFAULT_INTPARM;
572
573 if (subcode & 0x0080) {
574 /* signal bit is set -> a page has been swapped in by VM */
575 if (xchg(&tsk->thread.pfault_wait, -1) != 0) {
576 /* Initial interrupt was faster than the completion
577 * interrupt. pfault_wait is valid. Set pfault_wait
578 * back to zero and wake up the process. This can
579 * safely be done because the task is still sleeping
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700580 * and can't produce new pfaults. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 tsk->thread.pfault_wait = 0;
582 wake_up_process(tsk);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700583 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585 } else {
586 /* signal bit not set -> a real page is missing. */
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700587 get_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
589 if (xchg(&tsk->thread.pfault_wait, 1) != 0) {
590 /* Completion interrupt was faster than the initial
591 * interrupt (swapped in a -1 for pfault_wait). Set
592 * pfault_wait back to zero and exit. This can be
593 * done safely because tsk is running in kernel
594 * mode and can't produce new pfaults. */
595 tsk->thread.pfault_wait = 0;
596 set_task_state(tsk, TASK_RUNNING);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700597 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 } else
599 set_tsk_need_resched(tsk);
600 }
601}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Heiko Carstens29b08d22006-12-04 15:40:40 +0100603void __init pfault_irq_init(void)
604{
605 if (!MACHINE_IS_VM)
606 return;
607
608 /*
609 * Try to get pfault pseudo page faults going.
610 */
611 if (register_early_external_interrupt(0x2603, pfault_interrupt,
612 &ext_int_pfault) != 0)
613 panic("Couldn't request external interrupt 0x2603");
614
615 if (pfault_init() == 0)
616 return;
617
618 /* Tough luck, no pfault. */
619 pfault_disable = 1;
620 unregister_early_external_interrupt(0x2603, pfault_interrupt,
621 &ext_int_pfault);
622}
623#endif