Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 13 | #include <linux/perf_event.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #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 Carstens | 7757591 | 2009-06-12 10:26:25 +0200 | [diff] [blame] | 23 | #include <linux/compat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/smp.h> |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 25 | #include <linux/kdebug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
| 27 | #include <linux/console.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/hardirq.h> |
Michael Grundy | 4ba069b | 2006-09-20 15:58:39 +0200 | [diff] [blame] | 30 | #include <linux/kprobes.h> |
Martin Schwidefsky | be5ec36 | 2007-04-27 16:01:44 +0200 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
Gerald Schaefer | 53492b1 | 2008-04-30 13:38:46 +0200 | [diff] [blame] | 32 | #include <linux/hugetlb.h> |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 33 | #include <asm/asm-offsets.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/system.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/pgtable.h> |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 36 | #include <asm/s390_ext.h> |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 37 | #include <asm/mmu_context.h> |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 38 | #include <asm/compat.h> |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 39 | #include "../kernel/entry.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 41 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #define __FAIL_ADDR_MASK 0x7ffff000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #define __SUBCODE_MASK 0x0200 |
| 44 | #define __PF_RES_FIELD 0ULL |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 45 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define __FAIL_ADDR_MASK -4096L |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define __SUBCODE_MASK 0x0600 |
| 48 | #define __PF_RES_FIELD 0x8000000000000000ULL |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 49 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 51 | #define VM_FAULT_BADCONTEXT 0x010000 |
| 52 | #define VM_FAULT_BADMAP 0x020000 |
| 53 | #define VM_FAULT_BADACCESS 0x040000 |
| 54 | |
Martin Schwidefsky | 92f842e | 2010-10-25 16:10:13 +0200 | [diff] [blame] | 55 | static unsigned long store_indication; |
| 56 | |
| 57 | void 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 Schwidefsky | 7ecb344 | 2009-12-07 12:51:44 +0100 | [diff] [blame] | 68 | static inline int notify_page_fault(struct pt_regs *regs) |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 69 | { |
Christoph Hellwig | 33464e3 | 2007-05-04 18:47:46 +0200 | [diff] [blame] | 70 | int ret = 0; |
| 71 | |
| 72 | /* kprobe_running() needs smp_processor_id() */ |
Heiko Carstens | 22e0a04 | 2010-02-26 22:37:45 +0100 | [diff] [blame] | 73 | if (kprobes_built_in() && !user_mode(regs)) { |
Christoph Hellwig | 33464e3 | 2007-05-04 18:47:46 +0200 | [diff] [blame] | 74 | preempt_disable(); |
| 75 | if (kprobe_running() && kprobe_fault_handler(regs, 14)) |
| 76 | ret = 1; |
| 77 | preempt_enable(); |
| 78 | } |
Christoph Hellwig | 33464e3 | 2007-05-04 18:47:46 +0200 | [diff] [blame] | 79 | return ret; |
Michael Grundy | 4ba069b | 2006-09-20 15:58:39 +0200 | [diff] [blame] | 80 | } |
Michael Grundy | 4ba069b | 2006-09-20 15:58:39 +0200 | [diff] [blame] | 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | /* |
| 84 | * Unlock any spinlocks which will prevent us from getting the |
Kirill Korotaev | cefc8be | 2007-02-10 01:46:18 -0800 | [diff] [blame] | 85 | * message out. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | */ |
| 87 | void 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 Schaefer | 482b05d | 2007-03-05 23:35:54 +0100 | [diff] [blame] | 107 | * Returns the address space associated with the fault. |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 108 | * Returns 0 for kernel space and 1 for user space. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | */ |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 110 | static inline int user_space_fault(unsigned long trans_exc_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
| 112 | /* |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 113 | * The lowest two bits of the translation exception |
| 114 | * identification indicate which paging table was used. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | */ |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 116 | 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 Schwidefsky | b11b533 | 2009-12-07 12:51:43 +0100 | [diff] [blame] | 120 | if (user_mode == HOME_SPACE_MODE) |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 121 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Heiko Carstens | ab3c68e | 2010-05-17 10:00:21 +0200 | [diff] [blame] | 132 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* |
| 149 | * Send SIGSEGV to task. This is an external routine |
| 150 | * to keep the stack usage of do_page_fault small. |
| 151 | */ |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 152 | static noinline void do_sigsegv(struct pt_regs *regs, long int_code, |
| 153 | int si_code, unsigned long trans_exc_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
| 155 | struct siginfo si; |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 156 | unsigned long address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 158 | address = trans_exc_code & __FAIL_ADDR_MASK; |
| 159 | current->thread.prot_addr = address; |
| 160 | current->thread.trap_no = int_code; |
Heiko Carstens | ab3c68e | 2010-05-17 10:00:21 +0200 | [diff] [blame] | 161 | report_user_fault(regs, int_code, SIGSEGV, address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | si.si_signo = SIGSEGV; |
| 163 | si.si_code = si_code; |
Heiko Carstens | d2c993d | 2006-07-12 16:41:55 +0200 | [diff] [blame] | 164 | si.si_addr = (void __user *) address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | force_sig_info(SIGSEGV, &si, current); |
| 166 | } |
| 167 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 168 | static noinline void do_no_context(struct pt_regs *regs, long int_code, |
| 169 | unsigned long trans_exc_code) |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 170 | { |
| 171 | const struct exception_table_entry *fixup; |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 172 | unsigned long address; |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 173 | |
| 174 | /* Are we prepared to handle this kernel fault? */ |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 175 | fixup = search_exception_tables(regs->psw.addr & PSW_ADDR_INSN); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 176 | 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 Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 185 | address = trans_exc_code & __FAIL_ADDR_MASK; |
Martin Schwidefsky | b11b533 | 2009-12-07 12:51:43 +0100 | [diff] [blame] | 186 | if (!user_space_fault(trans_exc_code)) |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 187 | 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 Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 193 | die("Oops", regs, int_code); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 194 | do_exit(SIGKILL); |
| 195 | } |
| 196 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 197 | static noinline void do_low_address(struct pt_regs *regs, long int_code, |
| 198 | unsigned long trans_exc_code) |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 199 | { |
| 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 Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 204 | die ("Low-address protection", regs, int_code); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 205 | do_exit(SIGKILL); |
| 206 | } |
| 207 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 208 | do_no_context(regs, int_code, trans_exc_code); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 209 | } |
| 210 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 211 | static noinline void do_sigbus(struct pt_regs *regs, long int_code, |
| 212 | unsigned long trans_exc_code) |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 213 | { |
| 214 | struct task_struct *tsk = current; |
Martin Schwidefsky | 36bf968 | 2010-10-25 16:10:35 +0200 | [diff] [blame] | 215 | unsigned long address; |
| 216 | struct siginfo si; |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 217 | |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 218 | /* |
| 219 | * Send a sigbus, regardless of whether we were in kernel |
| 220 | * or user mode. |
| 221 | */ |
Martin Schwidefsky | 36bf968 | 2010-10-25 16:10:35 +0200 | [diff] [blame] | 222 | address = trans_exc_code & __FAIL_ADDR_MASK; |
| 223 | tsk->thread.prot_addr = address; |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 224 | tsk->thread.trap_no = int_code; |
Martin Schwidefsky | 36bf968 | 2010-10-25 16:10:35 +0200 | [diff] [blame] | 225 | 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 Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 230 | } |
| 231 | |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 232 | #ifdef CONFIG_S390_EXEC_PROTECT |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 233 | static noinline int signal_return(struct pt_regs *regs, long int_code, |
| 234 | unsigned long trans_exc_code) |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 235 | { |
Martin Schwidefsky | be5ec36 | 2007-04-27 16:01:44 +0200 | [diff] [blame] | 236 | u16 instruction; |
Heiko Carstens | 490f03d | 2007-05-10 15:45:48 +0200 | [diff] [blame] | 237 | int rc; |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 238 | |
Martin Schwidefsky | be5ec36 | 2007-04-27 16:01:44 +0200 | [diff] [blame] | 239 | rc = __get_user(instruction, (u16 __user *) regs->psw.addr); |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 240 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 241 | 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 Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 255 | return 0; |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 256 | } |
| 257 | #endif /* CONFIG_S390_EXEC_PROTECT */ |
| 258 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 259 | static 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 Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 289 | /* 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 Schwidefsky | 36bf968 | 2010-10-25 16:10:35 +0200 | [diff] [blame] | 292 | else |
| 293 | do_sigbus(regs, int_code, trans_exc_code); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 294 | } else |
| 295 | BUG(); |
| 296 | break; |
| 297 | } |
| 298 | } |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | /* |
| 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 Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 305 | * interruption code (int_code): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | * 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 Schwidefsky | 1ab947d | 2009-12-07 12:51:46 +0100 | [diff] [blame] | 311 | static inline int do_exception(struct pt_regs *regs, int access, |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 312 | unsigned long trans_exc_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | { |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 314 | struct task_struct *tsk; |
| 315 | struct mm_struct *mm; |
| 316 | struct vm_area_struct *vma; |
| 317 | unsigned long address; |
Martin Schwidefsky | 92f842e | 2010-10-25 16:10:13 +0200 | [diff] [blame] | 318 | int fault, write; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Martin Schwidefsky | 7ecb344 | 2009-12-07 12:51:44 +0100 | [diff] [blame] | 320 | if (notify_page_fault(regs)) |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 321 | return 0; |
Michael Grundy | 4ba069b | 2006-09-20 15:58:39 +0200 | [diff] [blame] | 322 | |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 323 | tsk = current; |
| 324 | mm = tsk->mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | /* |
| 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 Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 331 | fault = VM_FAULT_BADCONTEXT; |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 332 | if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm)) |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 333 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 335 | address = trans_exc_code & __FAIL_ADDR_MASK; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 336 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, 0, regs, address); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 337 | down_read(&mm->mmap_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 339 | fault = VM_FAULT_BADMAP; |
Gerald Schaefer | 482b05d | 2007-03-05 23:35:54 +0100 | [diff] [blame] | 340 | vma = find_vma(mm, address); |
| 341 | if (!vma) |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 342 | goto out_up; |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 343 | |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 344 | if (unlikely(vma->vm_start > address)) { |
| 345 | if (!(vma->vm_flags & VM_GROWSDOWN)) |
| 346 | goto out_up; |
| 347 | if (expand_stack(vma, address)) |
| 348 | goto out_up; |
| 349 | } |
| 350 | |
| 351 | /* |
| 352 | * Ok, we have a good vm_area for this memory access, so |
| 353 | * we can handle it.. |
| 354 | */ |
| 355 | fault = VM_FAULT_BADACCESS; |
Martin Schwidefsky | 1ab947d | 2009-12-07 12:51:46 +0100 | [diff] [blame] | 356 | if (unlikely(!(vma->vm_flags & access))) |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 357 | goto out_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
Gerald Schaefer | 53492b1 | 2008-04-30 13:38:46 +0200 | [diff] [blame] | 359 | if (is_vm_hugetlb_page(vma)) |
| 360 | address &= HPAGE_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | /* |
| 362 | * If for any reason at all we couldn't handle the fault, |
| 363 | * make sure we exit gracefully rather than endlessly redo |
| 364 | * the fault. |
| 365 | */ |
Martin Schwidefsky | 92f842e | 2010-10-25 16:10:13 +0200 | [diff] [blame] | 366 | write = (access == VM_WRITE || |
| 367 | (trans_exc_code & store_indication) == 0x400) ? |
| 368 | FAULT_FLAG_WRITE : 0; |
| 369 | fault = handle_mm_fault(mm, vma, address, write); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 370 | if (unlikely(fault & VM_FAULT_ERROR)) |
| 371 | goto out_up; |
| 372 | |
Heiko Carstens | bde69af | 2009-09-11 10:29:06 +0200 | [diff] [blame] | 373 | if (fault & VM_FAULT_MAJOR) { |
Nick Piggin | 83c5407 | 2007-07-19 01:47:05 -0700 | [diff] [blame] | 374 | tsk->maj_flt++; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 375 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, 0, |
Heiko Carstens | bde69af | 2009-09-11 10:29:06 +0200 | [diff] [blame] | 376 | regs, address); |
| 377 | } else { |
Nick Piggin | 83c5407 | 2007-07-19 01:47:05 -0700 | [diff] [blame] | 378 | tsk->min_flt++; |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 379 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, 0, |
Heiko Carstens | bde69af | 2009-09-11 10:29:06 +0200 | [diff] [blame] | 380 | regs, address); |
| 381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | /* |
| 383 | * The instruction that caused the program check will |
| 384 | * be repeated. Don't signal single step via SIGTRAP. |
| 385 | */ |
Gerald Schaefer | 482b05d | 2007-03-05 23:35:54 +0100 | [diff] [blame] | 386 | clear_tsk_thread_flag(tsk, TIF_SINGLE_STEP); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 387 | fault = 0; |
| 388 | out_up: |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 389 | up_read(&mm->mmap_sem); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 390 | out: |
| 391 | return fault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 394 | void __kprobes do_protection_exception(struct pt_regs *regs, long pgm_int_code, |
| 395 | unsigned long trans_exc_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | { |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 397 | int fault; |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 398 | |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 399 | /* Protection exception is supressing, decrement psw address. */ |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 400 | regs->psw.addr -= (pgm_int_code >> 16); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 401 | /* |
| 402 | * Check for low-address protection. This needs to be treated |
| 403 | * as a special case because the translation exception code |
| 404 | * field is not guaranteed to contain valid data in this case. |
| 405 | */ |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 406 | if (unlikely(!(trans_exc_code & 4))) { |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 407 | do_low_address(regs, pgm_int_code, trans_exc_code); |
Martin Schwidefsky | 10c1031 | 2007-04-27 16:01:43 +0200 | [diff] [blame] | 408 | return; |
| 409 | } |
Martin Schwidefsky | 1ab947d | 2009-12-07 12:51:46 +0100 | [diff] [blame] | 410 | fault = do_exception(regs, VM_WRITE, trans_exc_code); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 411 | if (unlikely(fault)) |
| 412 | do_fault_error(regs, 4, trans_exc_code, fault); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 415 | void __kprobes do_dat_exception(struct pt_regs *regs, long pgm_int_code, |
| 416 | unsigned long trans_exc_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | { |
Martin Schwidefsky | 1ab947d | 2009-12-07 12:51:46 +0100 | [diff] [blame] | 418 | int access, fault; |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 419 | |
Martin Schwidefsky | 1ab947d | 2009-12-07 12:51:46 +0100 | [diff] [blame] | 420 | access = VM_READ | VM_EXEC | VM_WRITE; |
| 421 | #ifdef CONFIG_S390_EXEC_PROTECT |
| 422 | if ((regs->psw.mask & PSW_MASK_ASC) == PSW_ASC_SECONDARY && |
| 423 | (trans_exc_code & 3) == 0) |
| 424 | access = VM_EXEC; |
| 425 | #endif |
| 426 | fault = do_exception(regs, access, trans_exc_code); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 427 | if (unlikely(fault)) |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 428 | do_fault_error(regs, pgm_int_code & 255, trans_exc_code, fault); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
| 430 | |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 431 | #ifdef CONFIG_64BIT |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 432 | void __kprobes do_asce_exception(struct pt_regs *regs, long pgm_int_code, |
| 433 | unsigned long trans_exc_code) |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 434 | { |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 435 | struct mm_struct *mm = current->mm; |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 436 | struct vm_area_struct *vma; |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 437 | |
Martin Schwidefsky | 61365e1 | 2009-12-07 12:51:42 +0100 | [diff] [blame] | 438 | if (unlikely(!user_space_fault(trans_exc_code) || in_atomic() || !mm)) |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 439 | goto no_context; |
| 440 | |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 441 | down_read(&mm->mmap_sem); |
Martin Schwidefsky | 50d7280 | 2009-12-07 12:51:45 +0100 | [diff] [blame] | 442 | vma = find_vma(mm, trans_exc_code & __FAIL_ADDR_MASK); |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 443 | up_read(&mm->mmap_sem); |
| 444 | |
| 445 | if (vma) { |
| 446 | update_mm(mm, current); |
| 447 | return; |
| 448 | } |
| 449 | |
| 450 | /* User mode accesses just cause a SIGSEGV */ |
| 451 | if (regs->psw.mask & PSW_MASK_PSTATE) { |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 452 | do_sigsegv(regs, pgm_int_code, SEGV_MAPERR, trans_exc_code); |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 453 | return; |
| 454 | } |
| 455 | |
| 456 | no_context: |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 457 | do_no_context(regs, pgm_int_code, trans_exc_code); |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 458 | } |
| 459 | #endif |
| 460 | |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 461 | int __handle_fault(unsigned long uaddr, unsigned long pgm_int_code, int write) |
Gerald Schaefer | 6c1e3e7 | 2009-12-07 12:51:47 +0100 | [diff] [blame] | 462 | { |
| 463 | struct pt_regs regs; |
| 464 | int access, fault; |
| 465 | |
| 466 | regs.psw.mask = psw_kernel_bits; |
| 467 | if (!irqs_disabled()) |
| 468 | regs.psw.mask |= PSW_MASK_IO | PSW_MASK_EXT; |
| 469 | regs.psw.addr = (unsigned long) __builtin_return_address(0); |
| 470 | regs.psw.addr |= PSW_ADDR_AMODE; |
| 471 | uaddr &= PAGE_MASK; |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 472 | access = write ? VM_WRITE : VM_READ; |
Gerald Schaefer | 6c1e3e7 | 2009-12-07 12:51:47 +0100 | [diff] [blame] | 473 | fault = do_exception(®s, access, uaddr | 2); |
| 474 | if (unlikely(fault)) { |
| 475 | if (fault & VM_FAULT_OOM) { |
| 476 | pagefault_out_of_memory(); |
| 477 | fault = 0; |
| 478 | } else if (fault & VM_FAULT_SIGBUS) |
Martin Schwidefsky | 1e54622 | 2010-10-25 16:10:37 +0200 | [diff] [blame] | 479 | do_sigbus(®s, pgm_int_code, uaddr); |
Gerald Schaefer | 6c1e3e7 | 2009-12-07 12:51:47 +0100 | [diff] [blame] | 480 | } |
| 481 | return fault ? -EFAULT : 0; |
| 482 | } |
| 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | #ifdef CONFIG_PFAULT |
| 485 | /* |
| 486 | * 'pfault' pseudo page faults routines. |
| 487 | */ |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 488 | static ext_int_info_t ext_int_pfault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | static int pfault_disable = 0; |
| 490 | |
| 491 | static int __init nopfault(char *str) |
| 492 | { |
| 493 | pfault_disable = 1; |
| 494 | return 1; |
| 495 | } |
| 496 | |
| 497 | __setup("nopfault", nopfault); |
| 498 | |
| 499 | typedef struct { |
| 500 | __u16 refdiagc; |
| 501 | __u16 reffcode; |
| 502 | __u16 refdwlen; |
| 503 | __u16 refversn; |
| 504 | __u64 refgaddr; |
| 505 | __u64 refselmk; |
| 506 | __u64 refcmpmk; |
| 507 | __u64 reserved; |
Heiko Carstens | c41fbc6 | 2007-10-12 16:11:51 +0200 | [diff] [blame] | 508 | } __attribute__ ((packed, aligned(8))) pfault_refbk_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | int pfault_init(void) |
| 511 | { |
| 512 | pfault_refbk_t refbk = |
| 513 | { 0x258, 0, 5, 2, __LC_CURRENT, 1ULL << 48, 1ULL << 48, |
| 514 | __PF_RES_FIELD }; |
| 515 | int rc; |
| 516 | |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 517 | if (!MACHINE_IS_VM || pfault_disable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | return -1; |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 519 | asm volatile( |
| 520 | " diag %1,%0,0x258\n" |
| 521 | "0: j 2f\n" |
| 522 | "1: la %0,8\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | "2:\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 524 | EX_TABLE(0b,1b) |
| 525 | : "=d" (rc) : "a" (&refbk), "m" (refbk) : "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | __ctl_set_bit(0, 9); |
| 527 | return rc; |
| 528 | } |
| 529 | |
| 530 | void pfault_fini(void) |
| 531 | { |
| 532 | pfault_refbk_t refbk = |
| 533 | { 0x258, 1, 5, 2, 0ULL, 0ULL, 0ULL, 0ULL }; |
| 534 | |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 535 | if (!MACHINE_IS_VM || pfault_disable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | return; |
| 537 | __ctl_clear_bit(0,9); |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 538 | asm volatile( |
| 539 | " diag %0,0,0x258\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | "0:\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 541 | EX_TABLE(0b,0b) |
| 542 | : : "a" (&refbk), "m" (refbk) : "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame^] | 545 | static void pfault_interrupt(unsigned int ext_int_code, |
| 546 | unsigned int param32, unsigned long param64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | { |
| 548 | struct task_struct *tsk; |
| 549 | __u16 subcode; |
| 550 | |
| 551 | /* |
| 552 | * Get the external interruption subcode & pfault |
| 553 | * initial/completion signal bit. VM stores this |
| 554 | * in the 'cpu address' field associated with the |
| 555 | * external interrupt. |
| 556 | */ |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame^] | 557 | subcode = ext_int_code >> 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | if ((subcode & 0xff00) != __SUBCODE_MASK) |
| 559 | return; |
| 560 | |
| 561 | /* |
| 562 | * Get the token (= address of the task structure of the affected task). |
| 563 | */ |
Martin Schwidefsky | f6649a7 | 2010-10-25 16:10:38 +0200 | [diff] [blame^] | 564 | #ifdef CONFIG_64BIT |
| 565 | tsk = *(struct task_struct **) param64; |
| 566 | #else |
| 567 | tsk = *(struct task_struct **) param32; |
| 568 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
| 570 | if (subcode & 0x0080) { |
| 571 | /* signal bit is set -> a page has been swapped in by VM */ |
| 572 | if (xchg(&tsk->thread.pfault_wait, -1) != 0) { |
| 573 | /* Initial interrupt was faster than the completion |
| 574 | * interrupt. pfault_wait is valid. Set pfault_wait |
| 575 | * back to zero and wake up the process. This can |
| 576 | * safely be done because the task is still sleeping |
Martin Schwidefsky | b6d0944 | 2005-09-03 15:58:02 -0700 | [diff] [blame] | 577 | * and can't produce new pfaults. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | tsk->thread.pfault_wait = 0; |
| 579 | wake_up_process(tsk); |
Martin Schwidefsky | b6d0944 | 2005-09-03 15:58:02 -0700 | [diff] [blame] | 580 | put_task_struct(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } |
| 582 | } else { |
| 583 | /* signal bit not set -> a real page is missing. */ |
Martin Schwidefsky | b6d0944 | 2005-09-03 15:58:02 -0700 | [diff] [blame] | 584 | get_task_struct(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | set_task_state(tsk, TASK_UNINTERRUPTIBLE); |
| 586 | if (xchg(&tsk->thread.pfault_wait, 1) != 0) { |
| 587 | /* Completion interrupt was faster than the initial |
| 588 | * interrupt (swapped in a -1 for pfault_wait). Set |
| 589 | * pfault_wait back to zero and exit. This can be |
| 590 | * done safely because tsk is running in kernel |
| 591 | * mode and can't produce new pfaults. */ |
| 592 | tsk->thread.pfault_wait = 0; |
| 593 | set_task_state(tsk, TASK_RUNNING); |
Martin Schwidefsky | b6d0944 | 2005-09-03 15:58:02 -0700 | [diff] [blame] | 594 | put_task_struct(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } else |
| 596 | set_tsk_need_resched(tsk); |
| 597 | } |
| 598 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 600 | void __init pfault_irq_init(void) |
| 601 | { |
| 602 | if (!MACHINE_IS_VM) |
| 603 | return; |
| 604 | |
| 605 | /* |
| 606 | * Try to get pfault pseudo page faults going. |
| 607 | */ |
| 608 | if (register_early_external_interrupt(0x2603, pfault_interrupt, |
| 609 | &ext_int_pfault) != 0) |
| 610 | panic("Couldn't request external interrupt 0x2603"); |
| 611 | |
| 612 | if (pfault_init() == 0) |
| 613 | return; |
| 614 | |
| 615 | /* Tough luck, no pfault. */ |
| 616 | pfault_disable = 1; |
| 617 | unregister_early_external_interrupt(0x2603, pfault_interrupt, |
| 618 | &ext_int_pfault); |
| 619 | } |
| 620 | #endif |