blob: fe5701e9efbfb95392328a389b1baae49e897844 [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{
Martin Schwidefsky14375bc2010-10-25 16:10:51 +020059 if (test_facility(2) && test_facility(75))
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020060 store_indication = 0xc00;
61}
62
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +010063static inline int notify_page_fault(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +020064{
Christoph Hellwig33464e32007-05-04 18:47:46 +020065 int ret = 0;
66
67 /* kprobe_running() needs smp_processor_id() */
Heiko Carstens22e0a042010-02-26 22:37:45 +010068 if (kprobes_built_in() && !user_mode(regs)) {
Christoph Hellwig33464e32007-05-04 18:47:46 +020069 preempt_disable();
70 if (kprobe_running() && kprobe_fault_handler(regs, 14))
71 ret = 1;
72 preempt_enable();
73 }
Christoph Hellwig33464e32007-05-04 18:47:46 +020074 return ret;
Michael Grundy4ba069b2006-09-20 15:58:39 +020075}
Michael Grundy4ba069b2006-09-20 15:58:39 +020076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * Unlock any spinlocks which will prevent us from getting the
Kirill Korotaevcefc8be2007-02-10 01:46:18 -080080 * message out.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82void bust_spinlocks(int yes)
83{
84 if (yes) {
85 oops_in_progress = 1;
86 } else {
87 int loglevel_save = console_loglevel;
88 console_unblank();
89 oops_in_progress = 0;
90 /*
91 * OK, the message is on the console. Now we call printk()
92 * without oops_in_progress set so that printk will give klogd
93 * a poke. Hold onto your hats...
94 */
95 console_loglevel = 15;
96 printk(" ");
97 console_loglevel = loglevel_save;
98 }
99}
100
101/*
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100102 * Returns the address space associated with the fault.
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100103 * Returns 0 for kernel space and 1 for user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100105static inline int user_space_fault(unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 /*
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100108 * The lowest two bits of the translation exception
109 * identification indicate which paging table was used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100111 trans_exc_code &= 3;
112 if (trans_exc_code == 2)
113 /* Access via secondary space, set_fs setting decides */
114 return current->thread.mm_segment.ar4;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100115 if (user_mode == HOME_SPACE_MODE)
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100116 /* User space if the access has been done via home space. */
117 return trans_exc_code == 3;
118 /*
119 * If the user space is not the home space the kernel runs in home
120 * space. Access via secondary space has already been covered,
121 * access via primary space or access register is from user space
122 * and access via home space is from the kernel.
123 */
124 return trans_exc_code != 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200127static inline void report_user_fault(struct pt_regs *regs, long int_code,
128 int signr, unsigned long address)
129{
130 if ((task_pid_nr(current) > 1) && !show_unhandled_signals)
131 return;
132 if (!unhandled_signal(current, signr))
133 return;
134 if (!printk_ratelimit())
135 return;
136 printk("User process fault: interruption code 0x%lX ", int_code);
137 print_vma_addr(KERN_CONT "in ", regs->psw.addr & PSW_ADDR_INSN);
138 printk("\n");
139 printk("failing address: %lX\n", address);
140 show_regs(regs);
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
144 * Send SIGSEGV to task. This is an external routine
145 * to keep the stack usage of do_page_fault small.
146 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100147static noinline void do_sigsegv(struct pt_regs *regs, long int_code,
148 int si_code, unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct siginfo si;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100151 unsigned long address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100153 address = trans_exc_code & __FAIL_ADDR_MASK;
154 current->thread.prot_addr = address;
155 current->thread.trap_no = int_code;
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200156 report_user_fault(regs, int_code, SIGSEGV, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 si.si_signo = SIGSEGV;
158 si.si_code = si_code;
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200159 si.si_addr = (void __user *) address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 force_sig_info(SIGSEGV, &si, current);
161}
162
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100163static noinline void do_no_context(struct pt_regs *regs, long int_code,
164 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200165{
166 const struct exception_table_entry *fixup;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100167 unsigned long address;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200168
169 /* Are we prepared to handle this kernel fault? */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100170 fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200171 if (fixup) {
172 regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
173 return;
174 }
175
176 /*
177 * Oops. The kernel tried to access some bad page. We'll have to
178 * terminate things with extreme prejudice.
179 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100180 address = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100181 if (!user_space_fault(trans_exc_code))
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200182 printk(KERN_ALERT "Unable to handle kernel pointer dereference"
183 " at virtual kernel address %p\n", (void *)address);
184 else
185 printk(KERN_ALERT "Unable to handle kernel paging request"
186 " at virtual user address %p\n", (void *)address);
187
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100188 die("Oops", regs, int_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200189 do_exit(SIGKILL);
190}
191
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100192static noinline void do_low_address(struct pt_regs *regs, long int_code,
193 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200194{
195 /* Low-address protection hit in kernel mode means
196 NULL pointer write access in kernel mode. */
197 if (regs->psw.mask & PSW_MASK_PSTATE) {
198 /* Low-address protection hit in user mode 'cannot happen'. */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100199 die ("Low-address protection", regs, int_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200200 do_exit(SIGKILL);
201 }
202
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100203 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200204}
205
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100206static noinline void do_sigbus(struct pt_regs *regs, long int_code,
207 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200208{
209 struct task_struct *tsk = current;
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200210 unsigned long address;
211 struct siginfo si;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200212
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200213 /*
214 * Send a sigbus, regardless of whether we were in kernel
215 * or user mode.
216 */
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200217 address = trans_exc_code & __FAIL_ADDR_MASK;
218 tsk->thread.prot_addr = address;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100219 tsk->thread.trap_no = int_code;
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200220 si.si_signo = SIGBUS;
221 si.si_errno = 0;
222 si.si_code = BUS_ADRERR;
223 si.si_addr = (void __user *) address;
224 force_sig_info(SIGBUS, &si, tsk);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200225}
226
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100227#ifdef CONFIG_S390_EXEC_PROTECT
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100228static noinline int signal_return(struct pt_regs *regs, long int_code,
229 unsigned long trans_exc_code)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100230{
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200231 u16 instruction;
Heiko Carstens490f03d2007-05-10 15:45:48 +0200232 int rc;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100233
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200234 rc = __get_user(instruction, (u16 __user *) regs->psw.addr);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100235
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100236 if (!rc && instruction == 0x0a77) {
237 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
238 if (is_compat_task())
239 sys32_sigreturn();
240 else
241 sys_sigreturn();
242 } else if (!rc && instruction == 0x0aad) {
243 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
244 if (is_compat_task())
245 sys32_rt_sigreturn();
246 else
247 sys_rt_sigreturn();
248 } else
249 do_sigsegv(regs, int_code, SEGV_MAPERR, trans_exc_code);
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100250 return 0;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100251}
252#endif /* CONFIG_S390_EXEC_PROTECT */
253
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100254static noinline void do_fault_error(struct pt_regs *regs, long int_code,
255 unsigned long trans_exc_code, int fault)
256{
257 int si_code;
258
259 switch (fault) {
260 case VM_FAULT_BADACCESS:
261#ifdef CONFIG_S390_EXEC_PROTECT
262 if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
263 (trans_exc_code & 3) == 0) {
264 signal_return(regs, int_code, trans_exc_code);
265 break;
266 }
267#endif /* CONFIG_S390_EXEC_PROTECT */
268 case VM_FAULT_BADMAP:
269 /* Bad memory access. Check if it is kernel or user space. */
270 if (regs->psw.mask & PSW_MASK_PSTATE) {
271 /* User mode accesses just cause a SIGSEGV */
272 si_code = (fault == VM_FAULT_BADMAP) ?
273 SEGV_MAPERR : SEGV_ACCERR;
274 do_sigsegv(regs, int_code, si_code, trans_exc_code);
275 return;
276 }
277 case VM_FAULT_BADCONTEXT:
278 do_no_context(regs, int_code, trans_exc_code);
279 break;
280 default: /* fault & VM_FAULT_ERROR */
281 if (fault & VM_FAULT_OOM)
282 pagefault_out_of_memory();
283 else if (fault & VM_FAULT_SIGBUS) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100284 /* Kernel mode? Handle exceptions or die */
285 if (!(regs->psw.mask & PSW_MASK_PSTATE))
286 do_no_context(regs, int_code, trans_exc_code);
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200287 else
288 do_sigbus(regs, int_code, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100289 } else
290 BUG();
291 break;
292 }
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/*
296 * This routine handles page faults. It determines the address,
297 * and the problem, and then passes it off to one of the appropriate
298 * routines.
299 *
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100300 * interruption code (int_code):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * 04 Protection -> Write-Protection (suprression)
302 * 10 Segment translation -> Not present (nullification)
303 * 11 Page translation -> Not present (nullification)
304 * 3b Region third trans. -> Not present (nullification)
305 */
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100306static inline int do_exception(struct pt_regs *regs, int access,
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100307 unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200309 struct task_struct *tsk;
310 struct mm_struct *mm;
311 struct vm_area_struct *vma;
312 unsigned long address;
Martin Schwidefsky92f842e2010-10-25 16:10:13 +0200313 int fault, write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +0100315 if (notify_page_fault(regs))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100316 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200317
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200318 tsk = current;
319 mm = tsk->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /*
322 * Verify that the fault happened in user space, that
323 * we are not in an interrupt and that there is a
324 * user context.
325 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100326 fault = VM_FAULT_BADCONTEXT;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100327 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100328 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100330 address = trans_exc_code & __FAIL_ADDR_MASK;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200331 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200332 down_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100334 fault = VM_FAULT_BADMAP;
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100335 vma = find_vma(mm, address);
336 if (!vma)
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100337 goto out_up;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100338
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100339 if (unlikely(vma->vm_start > address)) {
340 if (!(vma->vm_flags & VM_GROWSDOWN))
341 goto out_up;
342 if (expand_stack(vma, address))
343 goto out_up;
344 }
345
346 /*
347 * Ok, we have a good vm_area for this memory access, so
348 * we can handle it..
349 */
350 fault = VM_FAULT_BADACCESS;
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100351 if (unlikely(!(vma->vm_flags & access)))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100352 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Gerald Schaefer53492b12008-04-30 13:38:46 +0200354 if (is_vm_hugetlb_page(vma))
355 address &= HPAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /*
357 * If for any reason at all we couldn't handle the fault,
358 * make sure we exit gracefully rather than endlessly redo
359 * the fault.
360 */
Martin Schwidefsky92f842e2010-10-25 16:10:13 +0200361 write = (access == VM_WRITE ||
362 (trans_exc_code & store_indication) == 0x400) ?
363 FAULT_FLAG_WRITE : 0;
364 fault = handle_mm_fault(mm, vma, address, write);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100365 if (unlikely(fault & VM_FAULT_ERROR))
366 goto out_up;
367
Heiko Carstensbde69af2009-09-11 10:29:06 +0200368 if (fault & VM_FAULT_MAJOR) {
Nick Piggin83c54072007-07-19 01:47:05 -0700369 tsk->maj_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200370 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200371 regs, address);
372 } else {
Nick Piggin83c54072007-07-19 01:47:05 -0700373 tsk->min_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200374 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200375 regs, address);
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * The instruction that caused the program check will
379 * be repeated. Don't signal single step via SIGTRAP.
380 */
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100381 clear_tsk_thread_flag(tsk, TIF_SINGLE_STEP);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100382 fault = 0;
383out_up:
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200384 up_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100385out:
386 return fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200389void __kprobes do_protection_exception(struct pt_regs *regs, long pgm_int_code,
390 unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100392 int fault;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100393
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200394 /* Protection exception is supressing, decrement psw address. */
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200395 regs->psw.addr -= (pgm_int_code >> 16);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200396 /*
397 * Check for low-address protection. This needs to be treated
398 * as a special case because the translation exception code
399 * field is not guaranteed to contain valid data in this case.
400 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100401 if (unlikely(!(trans_exc_code & 4))) {
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200402 do_low_address(regs, pgm_int_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200403 return;
404 }
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100405 fault = do_exception(regs, VM_WRITE, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100406 if (unlikely(fault))
407 do_fault_error(regs, 4, trans_exc_code, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200410void __kprobes do_dat_exception(struct pt_regs *regs, long pgm_int_code,
411 unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100413 int access, fault;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100414
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100415 access = VM_READ | VM_EXEC | VM_WRITE;
416#ifdef CONFIG_S390_EXEC_PROTECT
417 if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
418 (trans_exc_code & 3) == 0)
419 access = VM_EXEC;
420#endif
421 fault = do_exception(regs, access, trans_exc_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100422 if (unlikely(fault))
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200423 do_fault_error(regs, pgm_int_code & 255, trans_exc_code, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100426#ifdef CONFIG_64BIT
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200427void __kprobes do_asce_exception(struct pt_regs *regs, long pgm_int_code,
428 unsigned long trans_exc_code)
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100429{
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100430 struct mm_struct *mm = current->mm;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100431 struct vm_area_struct *vma;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100432
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100433 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100434 goto no_context;
435
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100436 down_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100437 vma = find_vma(mm, trans_exc_code & __FAIL_ADDR_MASK);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100438 up_read(&mm->mmap_sem);
439
440 if (vma) {
441 update_mm(mm, current);
442 return;
443 }
444
445 /* User mode accesses just cause a SIGSEGV */
446 if (regs->psw.mask & PSW_MASK_PSTATE) {
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200447 do_sigsegv(regs, pgm_int_code, SEGV_MAPERR, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100448 return;
449 }
450
451no_context:
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200452 do_no_context(regs, pgm_int_code, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100453}
454#endif
455
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200456int __handle_fault(unsigned long uaddr, unsigned long pgm_int_code, int write)
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100457{
458 struct pt_regs regs;
459 int access, fault;
460
461 regs.psw.mask = psw_kernel_bits;
462 if (!irqs_disabled())
463 regs.psw.mask |= PSW_MASK_IO | PSW_MASK_EXT;
464 regs.psw.addr = (unsigned long) __builtin_return_address(0);
465 regs.psw.addr |= PSW_ADDR_AMODE;
466 uaddr &= PAGE_MASK;
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200467 access = write ? VM_WRITE : VM_READ;
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100468 fault = do_exception(&regs, access, uaddr | 2);
469 if (unlikely(fault)) {
470 if (fault & VM_FAULT_OOM) {
471 pagefault_out_of_memory();
472 fault = 0;
473 } else if (fault & VM_FAULT_SIGBUS)
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200474 do_sigbus(&regs, pgm_int_code, uaddr);
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100475 }
476 return fault ? -EFAULT : 0;
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifdef CONFIG_PFAULT
480/*
481 * 'pfault' pseudo page faults routines.
482 */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100483static ext_int_info_t ext_int_pfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484static int pfault_disable = 0;
485
486static int __init nopfault(char *str)
487{
488 pfault_disable = 1;
489 return 1;
490}
491
492__setup("nopfault", nopfault);
493
494typedef struct {
495 __u16 refdiagc;
496 __u16 reffcode;
497 __u16 refdwlen;
498 __u16 refversn;
499 __u64 refgaddr;
500 __u64 refselmk;
501 __u64 refcmpmk;
502 __u64 reserved;
Heiko Carstensc41fbc62007-10-12 16:11:51 +0200503} __attribute__ ((packed, aligned(8))) pfault_refbk_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505int pfault_init(void)
506{
507 pfault_refbk_t refbk =
508 { 0x258, 0, 5, 2, __LC_CURRENT, 1ULL << 48, 1ULL << 48,
509 __PF_RES_FIELD };
510 int rc;
511
Heiko Carstens29b08d22006-12-04 15:40:40 +0100512 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return -1;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200514 asm volatile(
515 " diag %1,%0,0x258\n"
516 "0: j 2f\n"
517 "1: la %0,8\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 "2:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200519 EX_TABLE(0b,1b)
520 : "=d" (rc) : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 __ctl_set_bit(0, 9);
522 return rc;
523}
524
525void pfault_fini(void)
526{
527 pfault_refbk_t refbk =
528 { 0x258, 1, 5, 2, 0ULL, 0ULL, 0ULL, 0ULL };
529
Heiko Carstens29b08d22006-12-04 15:40:40 +0100530 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return;
532 __ctl_clear_bit(0,9);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200533 asm volatile(
534 " diag %0,0,0x258\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 "0:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200536 EX_TABLE(0b,0b)
537 : : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200540static void pfault_interrupt(unsigned int ext_int_code,
541 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 struct task_struct *tsk;
544 __u16 subcode;
545
546 /*
547 * Get the external interruption subcode & pfault
548 * initial/completion signal bit. VM stores this
549 * in the 'cpu address' field associated with the
550 * external interrupt.
551 */
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200552 subcode = ext_int_code >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if ((subcode & 0xff00) != __SUBCODE_MASK)
554 return;
555
556 /*
557 * Get the token (= address of the task structure of the affected task).
558 */
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200559#ifdef CONFIG_64BIT
560 tsk = *(struct task_struct **) param64;
561#else
562 tsk = *(struct task_struct **) param32;
563#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (subcode & 0x0080) {
566 /* signal bit is set -> a page has been swapped in by VM */
567 if (xchg(&tsk->thread.pfault_wait, -1) != 0) {
568 /* Initial interrupt was faster than the completion
569 * interrupt. pfault_wait is valid. Set pfault_wait
570 * back to zero and wake up the process. This can
571 * safely be done because the task is still sleeping
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700572 * and can't produce new pfaults. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 tsk->thread.pfault_wait = 0;
574 wake_up_process(tsk);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700575 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 } else {
578 /* signal bit not set -> a real page is missing. */
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700579 get_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
581 if (xchg(&tsk->thread.pfault_wait, 1) != 0) {
582 /* Completion interrupt was faster than the initial
583 * interrupt (swapped in a -1 for pfault_wait). Set
584 * pfault_wait back to zero and exit. This can be
585 * done safely because tsk is running in kernel
586 * mode and can't produce new pfaults. */
587 tsk->thread.pfault_wait = 0;
588 set_task_state(tsk, TASK_RUNNING);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700589 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 } else
591 set_tsk_need_resched(tsk);
592 }
593}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Heiko Carstens29b08d22006-12-04 15:40:40 +0100595void __init pfault_irq_init(void)
596{
597 if (!MACHINE_IS_VM)
598 return;
599
600 /*
601 * Try to get pfault pseudo page faults going.
602 */
603 if (register_early_external_interrupt(0x2603, pfault_interrupt,
604 &ext_int_pfault) != 0)
605 panic("Couldn't request external interrupt 0x2603");
606
607 if (pfault_init() == 0)
608 return;
609
610 /* Tough luck, no pfault. */
611 pfault_disable = 1;
612 unregister_early_external_interrupt(0x2603, pfault_interrupt,
613 &ext_int_pfault);
614}
615#endif