blob: fd72c269cdb43ff0c5b1a4e2fbf03771f692be4d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/pgtable.h>
Heiko Carstens29b08d22006-12-04 15:40:40 +010035#include <asm/s390_ext.h>
Martin Schwidefsky6252d702008-02-09 18:24:37 +010036#include <asm/mmu_context.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020037#include "../kernel/entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080039#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define __FAIL_ADDR_MASK 0x7ffff000
41#define __FIXUP_MASK 0x7fffffff
42#define __SUBCODE_MASK 0x0200
43#define __PF_RES_FIELD 0ULL
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080044#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define __FAIL_ADDR_MASK -4096L
46#define __FIXUP_MASK ~0L
47#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
51#ifdef CONFIG_SYSCTL
52extern int sysctl_userprocess_debug;
53#endif
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
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +010059#ifdef CONFIG_KPROBES
Christoph Hellwig33464e32007-05-04 18:47:46 +020060 /* kprobe_running() needs smp_processor_id() */
61 if (!user_mode(regs)) {
62 preempt_disable();
63 if (kprobe_running() && kprobe_fault_handler(regs, 14))
64 ret = 1;
65 preempt_enable();
66 }
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +010067#endif
Christoph Hellwig33464e32007-05-04 18:47:46 +020068 return ret;
Michael Grundy4ba069b2006-09-20 15:58:39 +020069}
Michael Grundy4ba069b2006-09-20 15:58:39 +020070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/*
73 * Unlock any spinlocks which will prevent us from getting the
Kirill Korotaevcefc8be2007-02-10 01:46:18 -080074 * message out.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
76void bust_spinlocks(int yes)
77{
78 if (yes) {
79 oops_in_progress = 1;
80 } else {
81 int loglevel_save = console_loglevel;
82 console_unblank();
83 oops_in_progress = 0;
84 /*
85 * OK, the message is on the console. Now we call printk()
86 * without oops_in_progress set so that printk will give klogd
87 * a poke. Hold onto your hats...
88 */
89 console_loglevel = 15;
90 printk(" ");
91 console_loglevel = loglevel_save;
92 }
93}
94
95/*
Gerald Schaefer482b05d2007-03-05 23:35:54 +010096 * Returns the address space associated with the fault.
Martin Schwidefsky61365e12009-12-07 12:51:42 +010097 * Returns 0 for kernel space and 1 for user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +010099static inline int user_space_fault(unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 /*
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100102 * The lowest two bits of the translation exception
103 * identification indicate which paging table was used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100105 trans_exc_code &= 3;
106 if (trans_exc_code == 2)
107 /* Access via secondary space, set_fs setting decides */
108 return current->thread.mm_segment.ar4;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100109 if (user_mode == HOME_SPACE_MODE)
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100110 /* User space if the access has been done via home space. */
111 return trans_exc_code == 3;
112 /*
113 * If the user space is not the home space the kernel runs in home
114 * space. Access via secondary space has already been covered,
115 * access via primary space or access register is from user space
116 * and access via home space is from the kernel.
117 */
118 return trans_exc_code != 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121/*
122 * Send SIGSEGV to task. This is an external routine
123 * to keep the stack usage of do_page_fault small.
124 */
125static void do_sigsegv(struct pt_regs *regs, unsigned long error_code,
126 int si_code, unsigned long address)
127{
128 struct siginfo si;
129
130#if defined(CONFIG_SYSCTL) || defined(CONFIG_PROCESS_DEBUG)
131#if defined(CONFIG_SYSCTL)
132 if (sysctl_userprocess_debug)
133#endif
134 {
135 printk("User process fault: interruption code 0x%lX\n",
136 error_code);
137 printk("failing address: %lX\n", address);
138 show_regs(regs);
139 }
140#endif
141 si.si_signo = SIGSEGV;
142 si.si_code = si_code;
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200143 si.si_addr = (void __user *) address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 force_sig_info(SIGSEGV, &si, current);
145}
146
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200147static void do_no_context(struct pt_regs *regs, unsigned long error_code,
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100148 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200149{
150 const struct exception_table_entry *fixup;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100151 unsigned long address;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200152
153 /* Are we prepared to handle this kernel fault? */
154 fixup = search_exception_tables(regs->psw.addr & __FIXUP_MASK);
155 if (fixup) {
156 regs->psw.addr = fixup->fixup | PSW_ADDR_AMODE;
157 return;
158 }
159
160 /*
161 * Oops. The kernel tried to access some bad page. We'll have to
162 * terminate things with extreme prejudice.
163 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100164 address = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefskyb11b5332009-12-07 12:51:43 +0100165 if (!user_space_fault(trans_exc_code))
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200166 printk(KERN_ALERT "Unable to handle kernel pointer dereference"
167 " at virtual kernel address %p\n", (void *)address);
168 else
169 printk(KERN_ALERT "Unable to handle kernel paging request"
170 " at virtual user address %p\n", (void *)address);
171
172 die("Oops", regs, error_code);
173 do_exit(SIGKILL);
174}
175
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100176static void do_low_address(struct pt_regs *regs, unsigned long error_code,
177 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200178{
179 /* Low-address protection hit in kernel mode means
180 NULL pointer write access in kernel mode. */
181 if (regs->psw.mask & PSW_MASK_PSTATE) {
182 /* Low-address protection hit in user mode 'cannot happen'. */
183 die ("Low-address protection", regs, error_code);
184 do_exit(SIGKILL);
185 }
186
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100187 do_no_context(regs, error_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200188}
189
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200190static void do_sigbus(struct pt_regs *regs, unsigned long error_code,
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100191 unsigned long trans_exc_code)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200192{
193 struct task_struct *tsk = current;
194 struct mm_struct *mm = tsk->mm;
195
196 up_read(&mm->mmap_sem);
197 /*
198 * Send a sigbus, regardless of whether we were in kernel
199 * or user mode.
200 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100201 tsk->thread.prot_addr = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200202 tsk->thread.trap_no = error_code;
203 force_sig(SIGBUS, tsk);
204
205 /* Kernel mode? Handle exceptions or die */
206 if (!(regs->psw.mask & PSW_MASK_PSTATE))
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100207 do_no_context(regs, error_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200208}
209
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100210#ifdef CONFIG_S390_EXEC_PROTECT
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100211static int signal_return(struct mm_struct *mm, struct pt_regs *regs,
212 unsigned long address, unsigned long error_code)
213{
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200214 u16 instruction;
Heiko Carstens490f03d2007-05-10 15:45:48 +0200215 int rc;
216#ifdef CONFIG_COMPAT
217 int compat;
218#endif
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100219
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200220 pagefault_disable();
221 rc = __get_user(instruction, (u16 __user *) regs->psw.addr);
222 pagefault_enable();
223 if (rc)
224 return -EFAULT;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100225
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200226 up_read(&mm->mmap_sem);
227 clear_tsk_thread_flag(current, TIF_SINGLE_STEP);
228#ifdef CONFIG_COMPAT
Heiko Carstens77575912009-06-12 10:26:25 +0200229 compat = is_compat_task();
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200230 if (compat && instruction == 0x0a77)
Heiko Carstensc2e8b852008-04-17 07:46:07 +0200231 sys32_sigreturn();
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200232 else if (compat && instruction == 0x0aad)
Heiko Carstensc2e8b852008-04-17 07:46:07 +0200233 sys32_rt_sigreturn();
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200234 else
235#endif
236 if (instruction == 0x0a77)
Heiko Carstensc2e8b852008-04-17 07:46:07 +0200237 sys_sigreturn();
Martin Schwidefskybe5ec362007-04-27 16:01:44 +0200238 else if (instruction == 0x0aad)
Heiko Carstensc2e8b852008-04-17 07:46:07 +0200239 sys_rt_sigreturn();
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100240 else {
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100241 current->thread.prot_addr = address;
242 current->thread.trap_no = error_code;
243 do_sigsegv(regs, error_code, SEGV_MAPERR, address);
244 }
245 return 0;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100246}
247#endif /* CONFIG_S390_EXEC_PROTECT */
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * This routine handles page faults. It determines the address,
251 * and the problem, and then passes it off to one of the appropriate
252 * routines.
253 *
254 * error_code:
255 * 04 Protection -> Write-Protection (suprression)
256 * 10 Segment translation -> Not present (nullification)
257 * 11 Page translation -> Not present (nullification)
258 * 3b Region third trans. -> Not present (nullification)
259 */
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100260static inline void
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100261do_exception(struct pt_regs *regs, unsigned long error_code, int write,
262 unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200264 struct task_struct *tsk;
265 struct mm_struct *mm;
266 struct vm_area_struct *vma;
267 unsigned long address;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200268 int si_code;
Nick Piggin83c54072007-07-19 01:47:05 -0700269 int fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +0100271 if (notify_page_fault(regs))
Michael Grundy4ba069b2006-09-20 15:58:39 +0200272 return;
273
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200274 tsk = current;
275 mm = tsk->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
278 * Verify that the fault happened in user space, that
279 * we are not in an interrupt and that there is a
280 * user context.
281 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100282 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100283 goto no_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100285 address = trans_exc_code & __FAIL_ADDR_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * When we get here, the fault happened in the current
288 * task's user address space, so we can switch on the
289 * interrupts again and then search the VMAs
290 */
291 local_irq_enable();
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200292 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200293 down_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100295 si_code = SEGV_MAPERR;
296 vma = find_vma(mm, address);
297 if (!vma)
298 goto bad_area;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100299
300#ifdef CONFIG_S390_EXEC_PROTECT
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100301 if (unlikely((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY &&
302 (trans_exc_code & 3) == 0 && !(vma->vm_flags & VM_EXEC)))
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100303 if (!signal_return(mm, regs, address, error_code))
304 /*
305 * signal_return() has done an up_read(&mm->mmap_sem)
306 * if it returns 0.
307 */
308 return;
309#endif
310
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200311 if (vma->vm_start <= address)
312 goto good_area;
313 if (!(vma->vm_flags & VM_GROWSDOWN))
314 goto bad_area;
315 if (expand_stack(vma, address))
316 goto bad_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
318 * Ok, we have a good vm_area for this memory access, so
319 * we can handle it..
320 */
321good_area:
322 si_code = SEGV_ACCERR;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200323 if (!write) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* page not present, check vm flags */
325 if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
326 goto bad_area;
327 } else {
328 if (!(vma->vm_flags & VM_WRITE))
329 goto bad_area;
330 }
331
Gerald Schaefer53492b12008-04-30 13:38:46 +0200332 if (is_vm_hugetlb_page(vma))
333 address &= HPAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /*
335 * If for any reason at all we couldn't handle the fault,
336 * make sure we exit gracefully rather than endlessly redo
337 * the fault.
338 */
Linus Torvaldsd06063c2009-04-10 09:01:23 -0700339 fault = handle_mm_fault(mm, vma, address, write ? FAULT_FLAG_WRITE : 0);
Nick Piggin83c54072007-07-19 01:47:05 -0700340 if (unlikely(fault & VM_FAULT_ERROR)) {
341 if (fault & VM_FAULT_OOM) {
Heiko Carstens59fa4392009-03-26 15:23:44 +0100342 up_read(&mm->mmap_sem);
343 pagefault_out_of_memory();
Nick Piggin83c54072007-07-19 01:47:05 -0700344 return;
345 } else if (fault & VM_FAULT_SIGBUS) {
346 do_sigbus(regs, error_code, address);
347 return;
348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 BUG();
350 }
Heiko Carstensbde69af2009-09-11 10:29:06 +0200351 if (fault & VM_FAULT_MAJOR) {
Nick Piggin83c54072007-07-19 01:47:05 -0700352 tsk->maj_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200353 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200354 regs, address);
355 } else {
Nick Piggin83c54072007-07-19 01:47:05 -0700356 tsk->min_flt++;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200357 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0,
Heiko Carstensbde69af2009-09-11 10:29:06 +0200358 regs, address);
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 up_read(&mm->mmap_sem);
361 /*
362 * The instruction that caused the program check will
363 * be repeated. Don't signal single step via SIGTRAP.
364 */
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100365 clear_tsk_thread_flag(tsk, TIF_SINGLE_STEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return;
367
368/*
369 * Something tried to access memory that isn't in our memory map..
370 * Fix it, but check if it's kernel or user first..
371 */
372bad_area:
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200373 up_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200375 /* User mode accesses just cause a SIGSEGV */
376 if (regs->psw.mask & PSW_MASK_PSTATE) {
377 tsk->thread.prot_addr = address;
378 tsk->thread.trap_no = error_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 do_sigsegv(regs, error_code, si_code, address);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383no_context:
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100384 do_no_context(regs, error_code, trans_exc_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100387void __kprobes do_protection_exception(struct pt_regs *regs,
Heiko Carstensa8061702008-04-17 07:46:26 +0200388 long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100390 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
391
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200392 /* Protection exception is supressing, decrement psw address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 regs->psw.addr -= (error_code >> 16);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200394 /*
395 * Check for low-address protection. This needs to be treated
396 * as a special case because the translation exception code
397 * field is not guaranteed to contain valid data in this case.
398 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100399 if (unlikely(!(trans_exc_code & 4))) {
400 do_low_address(regs, error_code, trans_exc_code);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200401 return;
402 }
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100403 do_exception(regs, 4, 1, trans_exc_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Heiko Carstensa8061702008-04-17 07:46:26 +0200406void __kprobes do_dat_exception(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100408 do_exception(regs, error_code & 0xff, 0, S390_lowcore.trans_exc_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100411#ifdef CONFIG_64BIT
412void __kprobes do_asce_exception(struct pt_regs *regs, unsigned long error_code)
413{
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100414 unsigned long trans_exc_code = S390_lowcore.trans_exc_code;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100415 struct mm_struct *mm;
416 struct vm_area_struct *vma;
417 unsigned long address;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100418
419 mm = current->mm;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100420 address = trans_exc_code & __FAIL_ADDR_MASK;
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100421
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100422 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100423 goto no_context;
424
425 local_irq_enable();
426
427 down_read(&mm->mmap_sem);
428 vma = find_vma(mm, address);
429 up_read(&mm->mmap_sem);
430
431 if (vma) {
432 update_mm(mm, current);
433 return;
434 }
435
436 /* User mode accesses just cause a SIGSEGV */
437 if (regs->psw.mask & PSW_MASK_PSTATE) {
438 current->thread.prot_addr = address;
439 current->thread.trap_no = error_code;
440 do_sigsegv(regs, error_code, SEGV_MAPERR, address);
441 return;
442 }
443
444no_context:
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100445 do_no_context(regs, error_code, trans_exc_code);
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100446}
447#endif
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#ifdef CONFIG_PFAULT
450/*
451 * 'pfault' pseudo page faults routines.
452 */
Heiko Carstens29b08d22006-12-04 15:40:40 +0100453static ext_int_info_t ext_int_pfault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static int pfault_disable = 0;
455
456static int __init nopfault(char *str)
457{
458 pfault_disable = 1;
459 return 1;
460}
461
462__setup("nopfault", nopfault);
463
464typedef struct {
465 __u16 refdiagc;
466 __u16 reffcode;
467 __u16 refdwlen;
468 __u16 refversn;
469 __u64 refgaddr;
470 __u64 refselmk;
471 __u64 refcmpmk;
472 __u64 reserved;
Heiko Carstensc41fbc62007-10-12 16:11:51 +0200473} __attribute__ ((packed, aligned(8))) pfault_refbk_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475int pfault_init(void)
476{
477 pfault_refbk_t refbk =
478 { 0x258, 0, 5, 2, __LC_CURRENT, 1ULL << 48, 1ULL << 48,
479 __PF_RES_FIELD };
480 int rc;
481
Heiko Carstens29b08d22006-12-04 15:40:40 +0100482 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return -1;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200484 asm volatile(
485 " diag %1,%0,0x258\n"
486 "0: j 2f\n"
487 "1: la %0,8\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 "2:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200489 EX_TABLE(0b,1b)
490 : "=d" (rc) : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 __ctl_set_bit(0, 9);
492 return rc;
493}
494
495void pfault_fini(void)
496{
497 pfault_refbk_t refbk =
498 { 0x258, 1, 5, 2, 0ULL, 0ULL, 0ULL, 0ULL };
499
Heiko Carstens29b08d22006-12-04 15:40:40 +0100500 if (!MACHINE_IS_VM || pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return;
502 __ctl_clear_bit(0,9);
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200503 asm volatile(
504 " diag %0,0,0x258\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 "0:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200506 EX_TABLE(0b,0b)
507 : : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100510static void pfault_interrupt(__u16 error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 struct task_struct *tsk;
513 __u16 subcode;
514
515 /*
516 * Get the external interruption subcode & pfault
517 * initial/completion signal bit. VM stores this
518 * in the 'cpu address' field associated with the
519 * external interrupt.
520 */
521 subcode = S390_lowcore.cpu_addr;
522 if ((subcode & 0xff00) != __SUBCODE_MASK)
523 return;
524
525 /*
526 * Get the token (= address of the task structure of the affected task).
527 */
528 tsk = *(struct task_struct **) __LC_PFAULT_INTPARM;
529
530 if (subcode & 0x0080) {
531 /* signal bit is set -> a page has been swapped in by VM */
532 if (xchg(&tsk->thread.pfault_wait, -1) != 0) {
533 /* Initial interrupt was faster than the completion
534 * interrupt. pfault_wait is valid. Set pfault_wait
535 * back to zero and wake up the process. This can
536 * safely be done because the task is still sleeping
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700537 * and can't produce new pfaults. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 tsk->thread.pfault_wait = 0;
539 wake_up_process(tsk);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700540 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542 } else {
543 /* signal bit not set -> a real page is missing. */
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700544 get_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
546 if (xchg(&tsk->thread.pfault_wait, 1) != 0) {
547 /* Completion interrupt was faster than the initial
548 * interrupt (swapped in a -1 for pfault_wait). Set
549 * pfault_wait back to zero and exit. This can be
550 * done safely because tsk is running in kernel
551 * mode and can't produce new pfaults. */
552 tsk->thread.pfault_wait = 0;
553 set_task_state(tsk, TASK_RUNNING);
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700554 put_task_struct(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 } else
556 set_tsk_need_resched(tsk);
557 }
558}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Heiko Carstens29b08d22006-12-04 15:40:40 +0100560void __init pfault_irq_init(void)
561{
562 if (!MACHINE_IS_VM)
563 return;
564
565 /*
566 * Try to get pfault pseudo page faults going.
567 */
568 if (register_early_external_interrupt(0x2603, pfault_interrupt,
569 &ext_int_pfault) != 0)
570 panic("Couldn't request external interrupt 0x2603");
571
572 if (pfault_init() == 0)
573 return;
574
575 /* Tough luck, no pfault. */
576 pfault_disable = 1;
577 unregister_early_external_interrupt(0x2603, pfault_interrupt,
578 &ext_int_pfault);
579}
580#endif