blob: 88cef505453bfb14aa21fabb745dcd781906ee5e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Hartmut Penner (hp@de.ibm.com)
5 * Ulrich Weigand (uweigand@de.ibm.com)
6 *
7 * Derived from "arch/i386/mm/fault.c"
8 * Copyright (C) 1995 Linus Torvalds
9 */
10
Heiko Carstens052ff462011-01-05 12:47:28 +010011#include <linux/kernel_stat.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020012#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/signal.h>
14#include <linux/sched.h>
15#include <linux/kernel.h>
16#include <linux/errno.h>
17#include <linux/string.h>
18#include <linux/types.h>
19#include <linux/ptrace.h>
20#include <linux/mman.h>
21#include <linux/mm.h>
Heiko Carstens77575912009-06-12 10:26:25 +020022#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/smp.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070024#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/init.h>
26#include <linux/console.h>
27#include <linux/module.h>
28#include <linux/hardirq.h>
Michael Grundy4ba069b2006-09-20 15:58:39 +020029#include <linux/kprobes.h>
Martin Schwidefskybe5ec362007-04-27 16:01:44 +020030#include <linux/uaccess.h>
Gerald Schaefer53492b12008-04-30 13:38:46 +020031#include <linux/hugetlb.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010032#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/pgtable.h>
Heiko Carstensd7b250e2011-05-26 09:48:24 +020034#include <asm/irq.h>
Martin Schwidefsky6252d702008-02-09 18:24:37 +010035#include <asm/mmu_context.h>
David Howellsa0616cd2012-03-28 18:30:02 +010036#include <asm/facility.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
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define __SUBCODE_MASK 0x0200
42#define __PF_RES_FIELD 0ULL
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080043#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define __FAIL_ADDR_MASK -4096L
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define __SUBCODE_MASK 0x0600
46#define __PF_RES_FIELD 0x8000000000000000ULL
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -080047#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Martin Schwidefsky50d72802009-12-07 12:51:45 +010049#define VM_FAULT_BADCONTEXT 0x010000
50#define VM_FAULT_BADMAP 0x020000
51#define VM_FAULT_BADACCESS 0x040000
Heiko Carstensa4f32bd2012-10-30 14:49:37 +010052#define VM_FAULT_SIGNAL 0x080000
Dominik Dingel24eb3a82013-06-17 16:25:18 +020053#define VM_FAULT_PFAULT 0x100000
Martin Schwidefsky50d72802009-12-07 12:51:45 +010054
Heiko Carstensa4f32bd2012-10-30 14:49:37 +010055static unsigned long store_indication __read_mostly;
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020056
Heiko Carstensa4f32bd2012-10-30 14:49:37 +010057#ifdef CONFIG_64BIT
58static int __init fault_init(void)
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020059{
Heiko Carstensa4f32bd2012-10-30 14:49:37 +010060 if (test_facility(75))
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020061 store_indication = 0xc00;
Heiko Carstensa4f32bd2012-10-30 14:49:37 +010062 return 0;
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020063}
Heiko Carstensa4f32bd2012-10-30 14:49:37 +010064early_initcall(fault_init);
65#endif
Martin Schwidefsky92f842e2010-10-25 16:10:13 +020066
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +010067static inline int notify_page_fault(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +020068{
Christoph Hellwig33464e32007-05-04 18:47:46 +020069 int ret = 0;
70
71 /* kprobe_running() needs smp_processor_id() */
Heiko Carstens22e0a042010-02-26 22:37:45 +010072 if (kprobes_built_in() && !user_mode(regs)) {
Christoph Hellwig33464e32007-05-04 18:47:46 +020073 preempt_disable();
74 if (kprobe_running() && kprobe_fault_handler(regs, 14))
75 ret = 1;
76 preempt_enable();
77 }
Christoph Hellwig33464e32007-05-04 18:47:46 +020078 return ret;
Michael Grundy4ba069b2006-09-20 15:58:39 +020079}
Michael Grundy4ba069b2006-09-20 15:58:39 +020080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 * Unlock any spinlocks which will prevent us from getting the
Kirill Korotaevcefc8be2007-02-10 01:46:18 -080084 * message out.
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 */
86void bust_spinlocks(int yes)
87{
88 if (yes) {
89 oops_in_progress = 1;
90 } else {
91 int loglevel_save = console_loglevel;
92 console_unblank();
93 oops_in_progress = 0;
94 /*
95 * OK, the message is on the console. Now we call printk()
96 * without oops_in_progress set so that printk will give klogd
97 * a poke. Hold onto your hats...
98 */
99 console_loglevel = 15;
100 printk(" ");
101 console_loglevel = loglevel_save;
102 }
103}
104
105/*
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100106 * Returns the address space associated with the fault.
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100107 * Returns 0 for kernel space and 1 for user space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100109static inline int user_space_fault(unsigned long trans_exc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 /*
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100112 * The lowest two bits of the translation exception
113 * identification indicate which paging table was used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100115 trans_exc_code &= 3;
116 if (trans_exc_code == 2)
117 /* Access via secondary space, set_fs setting decides */
118 return current->thread.mm_segment.ar4;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100119 /*
Martin Schwidefskye258d712013-09-24 09:14:56 +0200120 * Access via primary space or access register is from user space
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100121 * and access via home space is from the kernel.
122 */
123 return trans_exc_code != 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100126static inline void report_user_fault(struct pt_regs *regs, long signr)
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200127{
128 if ((task_pid_nr(current) > 1) && !show_unhandled_signals)
129 return;
130 if (!unhandled_signal(current, signr))
131 return;
132 if (!printk_ratelimit())
133 return;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100134 printk(KERN_ALERT "User process fault: interruption code 0x%X ",
135 regs->int_code);
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200136 print_vma_addr(KERN_CONT "in ", regs->psw.addr & PSW_ADDR_INSN);
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100137 printk(KERN_CONT "\n");
138 printk(KERN_ALERT "failing address: %lX\n",
139 regs->int_parm_long & __FAIL_ADDR_MASK);
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200140 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 Schwidefskyaa33c8c2011-12-27 11:27:18 +0100147static noinline void do_sigsegv(struct pt_regs *regs, int si_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 struct siginfo si;
150
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100151 report_user_fault(regs, SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 si.si_signo = SIGSEGV;
153 si.si_code = si_code;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100154 si.si_addr = (void __user *)(regs->int_parm_long & __FAIL_ADDR_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 force_sig_info(SIGSEGV, &si, current);
156}
157
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100158static noinline void do_no_context(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200159{
160 const struct exception_table_entry *fixup;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100161 unsigned long address;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200162
163 /* Are we prepared to handle this kernel fault? */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100164 fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200165 if (fixup) {
Heiko Carstenseb608fb2012-09-05 13:26:11 +0200166 regs->psw.addr = extable_fixup(fixup) | PSW_ADDR_AMODE;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200167 return;
168 }
169
170 /*
171 * Oops. The kernel tried to access some bad page. We'll have to
172 * terminate things with extreme prejudice.
173 */
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100174 address = regs->int_parm_long & __FAIL_ADDR_MASK;
175 if (!user_space_fault(regs->int_parm_long))
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200176 printk(KERN_ALERT "Unable to handle kernel pointer dereference"
177 " at virtual kernel address %p\n", (void *)address);
178 else
179 printk(KERN_ALERT "Unable to handle kernel paging request"
180 " at virtual user address %p\n", (void *)address);
181
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100182 die(regs, "Oops");
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200183 do_exit(SIGKILL);
184}
185
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100186static noinline void do_low_address(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200187{
188 /* Low-address protection hit in kernel mode means
189 NULL pointer write access in kernel mode. */
190 if (regs->psw.mask & PSW_MASK_PSTATE) {
191 /* Low-address protection hit in user mode 'cannot happen'. */
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100192 die (regs, "Low-address protection");
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200193 do_exit(SIGKILL);
194 }
195
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100196 do_no_context(regs);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200197}
198
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100199static noinline void do_sigbus(struct pt_regs *regs)
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200200{
201 struct task_struct *tsk = current;
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200202 struct siginfo si;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200203
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200204 /*
205 * Send a sigbus, regardless of whether we were in kernel
206 * or user mode.
207 */
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200208 si.si_signo = SIGBUS;
209 si.si_errno = 0;
210 si.si_code = BUS_ADRERR;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100211 si.si_addr = (void __user *)(regs->int_parm_long & __FAIL_ADDR_MASK);
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200212 force_sig_info(SIGBUS, &si, tsk);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200213}
214
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100215static noinline void do_fault_error(struct pt_regs *regs, int fault)
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100216{
217 int si_code;
218
219 switch (fault) {
220 case VM_FAULT_BADACCESS:
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100221 case VM_FAULT_BADMAP:
222 /* Bad memory access. Check if it is kernel or user space. */
Heiko Carstens7d256172012-07-27 10:31:12 +0200223 if (user_mode(regs)) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100224 /* User mode accesses just cause a SIGSEGV */
225 si_code = (fault == VM_FAULT_BADMAP) ?
226 SEGV_MAPERR : SEGV_ACCERR;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100227 do_sigsegv(regs, si_code);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100228 return;
229 }
230 case VM_FAULT_BADCONTEXT:
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200231 case VM_FAULT_PFAULT:
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100232 do_no_context(regs);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100233 break;
Heiko Carstensf2c76e32012-07-27 08:54:20 +0200234 case VM_FAULT_SIGNAL:
235 if (!user_mode(regs))
236 do_no_context(regs);
237 break;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100238 default: /* fault & VM_FAULT_ERROR */
Heiko Carstens99583182011-05-26 09:48:29 +0200239 if (fault & VM_FAULT_OOM) {
Heiko Carstens7d256172012-07-27 10:31:12 +0200240 if (!user_mode(regs))
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100241 do_no_context(regs);
Heiko Carstens99583182011-05-26 09:48:29 +0200242 else
243 pagefault_out_of_memory();
244 } else if (fault & VM_FAULT_SIGBUS) {
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100245 /* Kernel mode? Handle exceptions or die */
Heiko Carstens7d256172012-07-27 10:31:12 +0200246 if (!user_mode(regs))
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100247 do_no_context(regs);
Martin Schwidefsky36bf9682010-10-25 16:10:35 +0200248 else
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100249 do_sigbus(regs);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100250 } else
251 BUG();
252 break;
253 }
254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*
257 * This routine handles page faults. It determines the address,
258 * and the problem, and then passes it off to one of the appropriate
259 * routines.
260 *
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100261 * interruption code (int_code):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 * 04 Protection -> Write-Protection (suprression)
263 * 10 Segment translation -> Not present (nullification)
264 * 11 Page translation -> Not present (nullification)
265 * 3b Region third trans. -> Not present (nullification)
266 */
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100267static inline int do_exception(struct pt_regs *regs, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200269#ifdef CONFIG_PGSTE
270 struct gmap *gmap;
271#endif
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200272 struct task_struct *tsk;
273 struct mm_struct *mm;
274 struct vm_area_struct *vma;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100275 unsigned long trans_exc_code;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200276 unsigned long address;
Heiko Carstens33ce6142011-05-26 09:48:30 +0200277 unsigned int flags;
278 int fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Martin Schwidefsky39efd4e2012-11-21 16:36:27 +0100280 tsk = current;
281 /*
282 * The instruction that caused the program check has
283 * been nullified. Don't signal single step via SIGTRAP.
284 */
285 clear_tsk_thread_flag(tsk, TIF_PER_TRAP);
286
Martin Schwidefsky7ecb3442009-12-07 12:51:44 +0100287 if (notify_page_fault(regs))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100288 return 0;
Michael Grundy4ba069b2006-09-20 15:58:39 +0200289
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200290 mm = tsk->mm;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100291 trans_exc_code = regs->int_parm_long;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /*
294 * Verify that the fault happened in user space, that
295 * we are not in an interrupt and that there is a
296 * user context.
297 */
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100298 fault = VM_FAULT_BADCONTEXT;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100299 if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100302 address = trans_exc_code & __FAIL_ADDR_MASK;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200303 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address);
Heiko Carstensf2c76e32012-07-27 08:54:20 +0200304 flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
Johannes Weiner759496b2013-09-12 15:13:39 -0700305 if (user_mode(regs))
306 flags |= FAULT_FLAG_USER;
Heiko Carstens33ce6142011-05-26 09:48:30 +0200307 if (access == VM_WRITE || (trans_exc_code & store_indication) == 0x400)
308 flags |= FAULT_FLAG_WRITE;
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200309 down_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200311#ifdef CONFIG_PGSTE
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200312 gmap = (struct gmap *)
313 ((current->flags & PF_VCPU) ? S390_lowcore.gmap : 0);
314 if (gmap) {
315 address = __gmap_fault(address, gmap);
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200316 if (address == -EFAULT) {
317 fault = VM_FAULT_BADMAP;
318 goto out_up;
319 }
320 if (address == -ENOMEM) {
321 fault = VM_FAULT_OOM;
322 goto out_up;
323 }
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200324 if (gmap->pfault_enabled)
325 flags |= FAULT_FLAG_RETRY_NOWAIT;
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200326 }
327#endif
328
329retry:
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100330 fault = VM_FAULT_BADMAP;
Gerald Schaefer482b05d2007-03-05 23:35:54 +0100331 vma = find_vma(mm, address);
332 if (!vma)
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100333 goto out_up;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100334
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100335 if (unlikely(vma->vm_start > address)) {
336 if (!(vma->vm_flags & VM_GROWSDOWN))
337 goto out_up;
338 if (expand_stack(vma, address))
339 goto out_up;
340 }
341
342 /*
343 * Ok, we have a good vm_area for this memory access, so
344 * we can handle it..
345 */
346 fault = VM_FAULT_BADACCESS;
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100347 if (unlikely(!(vma->vm_flags & access)))
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100348 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Gerald Schaefer53492b12008-04-30 13:38:46 +0200350 if (is_vm_hugetlb_page(vma))
351 address &= HPAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * If for any reason at all we couldn't handle the fault,
354 * make sure we exit gracefully rather than endlessly redo
355 * the fault.
356 */
Heiko Carstens33ce6142011-05-26 09:48:30 +0200357 fault = handle_mm_fault(mm, vma, address, flags);
Heiko Carstensf2c76e32012-07-27 08:54:20 +0200358 /* No reason to continue if interrupted by SIGKILL. */
359 if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) {
360 fault = VM_FAULT_SIGNAL;
361 goto out;
362 }
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100363 if (unlikely(fault & VM_FAULT_ERROR))
364 goto out_up;
365
Heiko Carstens33ce6142011-05-26 09:48:30 +0200366 /*
367 * Major/minor page fault accounting is only done on the
368 * initial attempt. If we go through a retry, it is extremely
369 * likely that the page will be found in page cache at that point.
370 */
371 if (flags & FAULT_FLAG_ALLOW_RETRY) {
372 if (fault & VM_FAULT_MAJOR) {
373 tsk->maj_flt++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200374 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1,
Heiko Carstens33ce6142011-05-26 09:48:30 +0200375 regs, address);
376 } else {
377 tsk->min_flt++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200378 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1,
Heiko Carstens33ce6142011-05-26 09:48:30 +0200379 regs, address);
380 }
381 if (fault & VM_FAULT_RETRY) {
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200382#ifdef CONFIG_PGSTE
383 if (gmap && (flags & FAULT_FLAG_RETRY_NOWAIT)) {
384 /* FAULT_FLAG_RETRY_NOWAIT has been set,
385 * mmap_sem has not been released */
386 current->thread.gmap_pfault = 1;
387 fault = VM_FAULT_PFAULT;
388 goto out_up;
389 }
390#endif
Heiko Carstens33ce6142011-05-26 09:48:30 +0200391 /* Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk
392 * of starvation. */
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200393 flags &= ~(FAULT_FLAG_ALLOW_RETRY |
394 FAULT_FLAG_RETRY_NOWAIT);
Shaohua Li45cac652012-10-08 16:32:19 -0700395 flags |= FAULT_FLAG_TRIED;
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200396 down_read(&mm->mmap_sem);
Heiko Carstens33ce6142011-05-26 09:48:30 +0200397 goto retry;
398 }
Heiko Carstensbde69af2009-09-11 10:29:06 +0200399 }
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100400 fault = 0;
401out_up:
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200402 up_read(&mm->mmap_sem);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100403out:
404 return fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100407void __kprobes do_protection_exception(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100409 unsigned long trans_exc_code;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100410 int fault;
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100411
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100412 trans_exc_code = regs->int_parm_long;
Martin Schwidefskyf752ac42013-04-16 13:25:06 +0200413 /*
414 * Protection exceptions are suppressing, decrement psw address.
415 * The exception to this rule are aborted transactions, for these
416 * the PSW already points to the correct location.
417 */
418 if (!(regs->int_code & 0x200))
419 regs->psw.addr = __rewind_psw(regs->psw, regs->int_code >> 16);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200420 /*
421 * Check for low-address protection. This needs to be treated
422 * as a special case because the translation exception code
423 * field is not guaranteed to contain valid data in this case.
424 */
Martin Schwidefsky61365e12009-12-07 12:51:42 +0100425 if (unlikely(!(trans_exc_code & 4))) {
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100426 do_low_address(regs);
Martin Schwidefsky10c10312007-04-27 16:01:43 +0200427 return;
428 }
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100429 fault = do_exception(regs, VM_WRITE);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100430 if (unlikely(fault))
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100431 do_fault_error(regs, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100434void __kprobes do_dat_exception(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100436 int access, fault;
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100437
Martin Schwidefsky1ab947d2009-12-07 12:51:46 +0100438 access = VM_READ | VM_EXEC | VM_WRITE;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100439 fault = do_exception(regs, access);
Martin Schwidefsky50d72802009-12-07 12:51:45 +0100440 if (unlikely(fault))
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100441 do_fault_error(regs, fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200444int __handle_fault(unsigned long uaddr, unsigned long pgm_int_code, int write)
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100445{
446 struct pt_regs regs;
447 int access, fault;
448
Heiko Carstens008c2e82012-07-27 09:45:39 +0200449 /* Emulate a uaccess fault from kernel mode. */
Martin Schwidefskye258d712013-09-24 09:14:56 +0200450 regs.psw.mask = PSW_KERNEL_BITS | PSW_MASK_DAT | PSW_MASK_MCHECK;
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100451 if (!irqs_disabled())
452 regs.psw.mask |= PSW_MASK_IO | PSW_MASK_EXT;
453 regs.psw.addr = (unsigned long) __builtin_return_address(0);
454 regs.psw.addr |= PSW_ADDR_AMODE;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100455 regs.int_code = pgm_int_code;
456 regs.int_parm_long = (uaddr & PAGE_MASK) | 2;
Martin Schwidefsky1e546222010-10-25 16:10:37 +0200457 access = write ? VM_WRITE : VM_READ;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100458 fault = do_exception(&regs, access);
Heiko Carstens008c2e82012-07-27 09:45:39 +0200459 /*
460 * Since the fault happened in kernel mode while performing a uaccess
461 * all we need to do now is emulating a fixup in case "fault" is not
462 * zero.
463 * For the calling uaccess functions this results always in -EFAULT.
464 */
Gerald Schaefer6c1e3e72009-12-07 12:51:47 +0100465 return fault ? -EFAULT : 0;
466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#ifdef CONFIG_PFAULT
469/*
470 * 'pfault' pseudo page faults routines.
471 */
Heiko Carstensfb0a9d72011-01-05 12:47:39 +0100472static int pfault_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474static int __init nopfault(char *str)
475{
476 pfault_disable = 1;
477 return 1;
478}
479
480__setup("nopfault", nopfault);
481
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200482struct pfault_refbk {
483 u16 refdiagc;
484 u16 reffcode;
485 u16 refdwlen;
486 u16 refversn;
487 u64 refgaddr;
488 u64 refselmk;
489 u64 refcmpmk;
490 u64 reserved;
491} __attribute__ ((packed, aligned(8)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493int pfault_init(void)
494{
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200495 struct pfault_refbk refbk = {
496 .refdiagc = 0x258,
497 .reffcode = 0,
498 .refdwlen = 5,
499 .refversn = 2,
500 .refgaddr = __LC_CURRENT_PID,
501 .refselmk = 1ULL << 48,
502 .refcmpmk = 1ULL << 48,
503 .reserved = __PF_RES_FIELD };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 int rc;
505
Carsten Ottef32269a2011-12-27 11:27:11 +0100506 if (pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return -1;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200508 asm volatile(
509 " diag %1,%0,0x258\n"
510 "0: j 2f\n"
511 "1: la %0,8\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 "2:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200513 EX_TABLE(0b,1b)
514 : "=d" (rc) : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return rc;
516}
517
518void pfault_fini(void)
519{
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200520 struct pfault_refbk refbk = {
521 .refdiagc = 0x258,
522 .reffcode = 1,
523 .refdwlen = 5,
524 .refversn = 2,
525 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Carsten Ottef32269a2011-12-27 11:27:11 +0100527 if (pfault_disable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200529 asm volatile(
530 " diag %0,0,0x258\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 "0:\n"
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200532 EX_TABLE(0b,0b)
533 : : "a" (&refbk), "m" (refbk) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200536static DEFINE_SPINLOCK(pfault_lock);
537static LIST_HEAD(pfault_list);
538
Heiko Carstensfde15c32012-03-11 11:59:31 -0400539static void pfault_interrupt(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200540 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct task_struct *tsk;
543 __u16 subcode;
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200544 pid_t pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
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 */
Heiko Carstensfde15c32012-03-11 11:59:31 -0400552 subcode = ext_code.subcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if ((subcode & 0xff00) != __SUBCODE_MASK)
554 return;
Heiko Carstens420f42e2013-01-02 15:18:18 +0100555 inc_irq_stat(IRQEXT_PFL);
Heiko Carstens54c27792012-05-10 09:44:35 +0200556 /* Get the token (= pid of the affected task). */
557 pid = sizeof(void *) == 4 ? param32 : param64;
558 rcu_read_lock();
559 tsk = find_task_by_pid_ns(pid, &init_pid_ns);
560 if (tsk)
561 get_task_struct(tsk);
562 rcu_read_unlock();
563 if (!tsk)
564 return;
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200565 spin_lock(&pfault_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (subcode & 0x0080) {
567 /* signal bit is set -> a page has been swapped in by VM */
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200568 if (tsk->thread.pfault_wait == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 /* Initial interrupt was faster than the completion
570 * interrupt. pfault_wait is valid. Set pfault_wait
571 * back to zero and wake up the process. This can
572 * safely be done because the task is still sleeping
Martin Schwidefskyb6d09442005-09-03 15:58:02 -0700573 * and can't produce new pfaults. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 tsk->thread.pfault_wait = 0;
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200575 list_del(&tsk->thread.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 wake_up_process(tsk);
Heiko Carstensd5e50a52012-05-09 09:37:30 +0200577 put_task_struct(tsk);
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200578 } else {
579 /* Completion interrupt was faster than initial
580 * interrupt. Set pfault_wait to -1 so the initial
Heiko Carstensfa2fb2f2011-11-14 11:19:01 +0100581 * interrupt doesn't put the task to sleep.
582 * If the task is not running, ignore the completion
583 * interrupt since it must be a leftover of a PFAULT
584 * CANCEL operation which didn't remove all pending
585 * completion interrupts. */
586 if (tsk->state == TASK_RUNNING)
587 tsk->thread.pfault_wait = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589 } else {
590 /* signal bit not set -> a real page is missing. */
Heiko Carstensd49f47f2012-05-10 10:47:21 +0200591 if (WARN_ON_ONCE(tsk != current))
592 goto out;
Heiko Carstensd5e50a52012-05-09 09:37:30 +0200593 if (tsk->thread.pfault_wait == 1) {
594 /* Already on the list with a reference: put to sleep */
Heiko Carstens0a16ba72012-05-10 09:56:34 +0200595 __set_task_state(tsk, TASK_UNINTERRUPTIBLE);
Heiko Carstensd5e50a52012-05-09 09:37:30 +0200596 set_tsk_need_resched(tsk);
597 } else if (tsk->thread.pfault_wait == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* Completion interrupt was faster than the initial
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200599 * interrupt (pfault_wait == -1). Set pfault_wait
600 * back to zero and exit. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 tsk->thread.pfault_wait = 0;
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200602 } else {
603 /* Initial interrupt arrived before completion
Heiko Carstensd5e50a52012-05-09 09:37:30 +0200604 * interrupt. Let the task sleep.
605 * An extra task reference is needed since a different
606 * cpu may set the task state to TASK_RUNNING again
607 * before the scheduler is reached. */
608 get_task_struct(tsk);
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200609 tsk->thread.pfault_wait = 1;
610 list_add(&tsk->thread.list, &pfault_list);
Heiko Carstens0a16ba72012-05-10 09:56:34 +0200611 __set_task_state(tsk, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 set_tsk_need_resched(tsk);
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
Heiko Carstensd49f47f2012-05-10 10:47:21 +0200615out:
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200616 spin_unlock(&pfault_lock);
Heiko Carstens54c27792012-05-10 09:44:35 +0200617 put_task_struct(tsk);
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200618}
619
Paul Gortmakere2741f12013-06-18 17:04:52 -0400620static int pfault_cpu_notify(struct notifier_block *self, unsigned long action,
621 void *hcpu)
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200622{
623 struct thread_struct *thread, *next;
624 struct task_struct *tsk;
625
Heiko Carstens1c725922012-08-27 15:43:49 +0200626 switch (action & ~CPU_TASKS_FROZEN) {
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200627 case CPU_DEAD:
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200628 spin_lock_irq(&pfault_lock);
629 list_for_each_entry_safe(thread, next, &pfault_list, list) {
630 thread->pfault_wait = 0;
631 list_del(&thread->list);
632 tsk = container_of(thread, struct task_struct, thread);
633 wake_up_process(tsk);
Heiko Carstensd5e50a52012-05-09 09:37:30 +0200634 put_task_struct(tsk);
Heiko Carstensf2db2e62011-05-23 10:24:34 +0200635 }
636 spin_unlock_irq(&pfault_lock);
637 break;
638 default:
639 break;
640 }
641 return NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Heiko Carstensfb0a9d72011-01-05 12:47:39 +0100644static int __init pfault_irq_init(void)
Heiko Carstens29b08d22006-12-04 15:40:40 +0100645{
Heiko Carstensfb0a9d72011-01-05 12:47:39 +0100646 int rc;
Heiko Carstens29b08d22006-12-04 15:40:40 +0100647
Heiko Carstensfb0a9d72011-01-05 12:47:39 +0100648 rc = register_external_interrupt(0x2603, pfault_interrupt);
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200649 if (rc)
650 goto out_extint;
651 rc = pfault_init() == 0 ? 0 : -EOPNOTSUPP;
652 if (rc)
653 goto out_pfault;
Heiko Carstens82003c32013-09-04 13:35:45 +0200654 irq_subclass_register(IRQ_SUBCLASS_SERVICE_SIGNAL);
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200655 hotcpu_notifier(pfault_cpu_notify, 0);
Heiko Carstensfb0a9d72011-01-05 12:47:39 +0100656 return 0;
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200657
658out_pfault:
659 unregister_external_interrupt(0x2603, pfault_interrupt);
660out_extint:
661 pfault_disable = 1;
662 return rc;
Heiko Carstens29b08d22006-12-04 15:40:40 +0100663}
Heiko Carstensfb0a9d72011-01-05 12:47:39 +0100664early_initcall(pfault_irq_init);
665
Heiko Carstens7dd8fe12011-05-23 10:24:35 +0200666#endif /* CONFIG_PFAULT */