Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Page fault handler for SH with an MMU. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Copyright (C) 1999 Niibe Yutaka |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 5 | * Copyright (C) 2003 - 2012 Paul Mundt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * Based on linux/arch/i386/mm/fault.c: |
| 8 | * Copyright (C) 1995 Linus Torvalds |
Paul Mundt | 26ff6c1 | 2006-09-27 15:13:36 +0900 | [diff] [blame] | 9 | * |
| 10 | * This file is subject to the terms and conditions of the GNU General Public |
| 11 | * License. See the file "COPYING" in the main directory of this archive |
| 12 | * for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/mm.h> |
Paul Mundt | 0f08f33 | 2006-09-27 17:03:56 +0900 | [diff] [blame] | 16 | #include <linux/hardirq.h> |
| 17 | #include <linux/kprobes.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 18 | #include <linux/perf_event.h> |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 19 | #include <linux/kdebug.h> |
Magnus Damm | e7cc9a7 | 2008-02-07 20:18:21 +0900 | [diff] [blame] | 20 | #include <asm/io_trapped.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/mmu_context.h> |
Paul Mundt | db2e1fa | 2007-02-14 14:13:10 +0900 | [diff] [blame] | 22 | #include <asm/tlbflush.h> |
David Howells | e839ca5 | 2012-03-28 18:30:03 +0100 | [diff] [blame] | 23 | #include <asm/traps.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Paul Mundt | 7433ab770 | 2009-06-25 02:30:10 +0900 | [diff] [blame] | 25 | static inline int notify_page_fault(struct pt_regs *regs, int trap) |
| 26 | { |
| 27 | int ret = 0; |
| 28 | |
Paul Mundt | c63c310 | 2009-07-05 02:50:10 +0900 | [diff] [blame] | 29 | if (kprobes_built_in() && !user_mode(regs)) { |
Paul Mundt | 7433ab770 | 2009-06-25 02:30:10 +0900 | [diff] [blame] | 30 | preempt_disable(); |
| 31 | if (kprobe_running() && kprobe_fault_handler(regs, trap)) |
| 32 | ret = 1; |
| 33 | preempt_enable(); |
| 34 | } |
Paul Mundt | 7433ab770 | 2009-06-25 02:30:10 +0900 | [diff] [blame] | 35 | |
| 36 | return ret; |
| 37 | } |
| 38 | |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 39 | static void |
| 40 | force_sig_info_fault(int si_signo, int si_code, unsigned long address, |
| 41 | struct task_struct *tsk) |
| 42 | { |
| 43 | siginfo_t info; |
| 44 | |
| 45 | info.si_signo = si_signo; |
| 46 | info.si_errno = 0; |
| 47 | info.si_code = si_code; |
| 48 | info.si_addr = (void __user *)address; |
| 49 | |
| 50 | force_sig_info(si_signo, &info, tsk); |
| 51 | } |
| 52 | |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 53 | /* |
| 54 | * This is useful to dump out the page tables associated with |
| 55 | * 'addr' in mm 'mm'. |
| 56 | */ |
| 57 | static void show_pte(struct mm_struct *mm, unsigned long addr) |
| 58 | { |
| 59 | pgd_t *pgd; |
| 60 | |
Paul Mundt | 90eed7d | 2012-07-24 13:15:54 +0900 | [diff] [blame^] | 61 | if (mm) { |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 62 | pgd = mm->pgd; |
Paul Mundt | 90eed7d | 2012-07-24 13:15:54 +0900 | [diff] [blame^] | 63 | } else { |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 64 | pgd = get_TTB(); |
| 65 | |
Paul Mundt | 90eed7d | 2012-07-24 13:15:54 +0900 | [diff] [blame^] | 66 | if (unlikely(!pgd)) |
| 67 | pgd = swapper_pg_dir; |
| 68 | } |
| 69 | |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 70 | printk(KERN_ALERT "pgd = %p\n", pgd); |
| 71 | pgd += pgd_index(addr); |
| 72 | printk(KERN_ALERT "[%08lx] *pgd=%0*Lx", addr, |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 73 | (u32)(sizeof(*pgd) * 2), (u64)pgd_val(*pgd)); |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 74 | |
| 75 | do { |
| 76 | pud_t *pud; |
| 77 | pmd_t *pmd; |
| 78 | pte_t *pte; |
| 79 | |
| 80 | if (pgd_none(*pgd)) |
| 81 | break; |
| 82 | |
| 83 | if (pgd_bad(*pgd)) { |
| 84 | printk("(bad)"); |
| 85 | break; |
| 86 | } |
| 87 | |
| 88 | pud = pud_offset(pgd, addr); |
| 89 | if (PTRS_PER_PUD != 1) |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 90 | printk(", *pud=%0*Lx", (u32)(sizeof(*pud) * 2), |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 91 | (u64)pud_val(*pud)); |
| 92 | |
| 93 | if (pud_none(*pud)) |
| 94 | break; |
| 95 | |
| 96 | if (pud_bad(*pud)) { |
| 97 | printk("(bad)"); |
| 98 | break; |
| 99 | } |
| 100 | |
| 101 | pmd = pmd_offset(pud, addr); |
| 102 | if (PTRS_PER_PMD != 1) |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 103 | printk(", *pmd=%0*Lx", (u32)(sizeof(*pmd) * 2), |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 104 | (u64)pmd_val(*pmd)); |
| 105 | |
| 106 | if (pmd_none(*pmd)) |
| 107 | break; |
| 108 | |
| 109 | if (pmd_bad(*pmd)) { |
| 110 | printk("(bad)"); |
| 111 | break; |
| 112 | } |
| 113 | |
| 114 | /* We must not map this if we have highmem enabled */ |
| 115 | if (PageHighMem(pfn_to_page(pmd_val(*pmd) >> PAGE_SHIFT))) |
| 116 | break; |
| 117 | |
| 118 | pte = pte_offset_kernel(pmd, addr); |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 119 | printk(", *pte=%0*Lx", (u32)(sizeof(*pte) * 2), |
| 120 | (u64)pte_val(*pte)); |
Stuart Menefy | 45c0e0e | 2012-04-19 17:25:03 +0900 | [diff] [blame] | 121 | } while (0); |
| 122 | |
| 123 | printk("\n"); |
| 124 | } |
| 125 | |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 126 | static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) |
| 127 | { |
| 128 | unsigned index = pgd_index(address); |
| 129 | pgd_t *pgd_k; |
| 130 | pud_t *pud, *pud_k; |
| 131 | pmd_t *pmd, *pmd_k; |
| 132 | |
| 133 | pgd += index; |
| 134 | pgd_k = init_mm.pgd + index; |
| 135 | |
| 136 | if (!pgd_present(*pgd_k)) |
| 137 | return NULL; |
| 138 | |
| 139 | pud = pud_offset(pgd, address); |
| 140 | pud_k = pud_offset(pgd_k, address); |
| 141 | if (!pud_present(*pud_k)) |
| 142 | return NULL; |
| 143 | |
Matt Fleming | 5d9b4b1 | 2009-12-13 14:38:50 +0000 | [diff] [blame] | 144 | if (!pud_present(*pud)) |
| 145 | set_pud(pud, *pud_k); |
| 146 | |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 147 | pmd = pmd_offset(pud, address); |
| 148 | pmd_k = pmd_offset(pud_k, address); |
| 149 | if (!pmd_present(*pmd_k)) |
| 150 | return NULL; |
| 151 | |
| 152 | if (!pmd_present(*pmd)) |
| 153 | set_pmd(pmd, *pmd_k); |
Matt Fleming | 05dd2cd | 2009-07-13 11:38:04 +0000 | [diff] [blame] | 154 | else { |
| 155 | /* |
| 156 | * The page tables are fully synchronised so there must |
| 157 | * be another reason for the fault. Return NULL here to |
| 158 | * signal that we have not taken care of the fault. |
| 159 | */ |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 160 | BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k)); |
Matt Fleming | 05dd2cd | 2009-07-13 11:38:04 +0000 | [diff] [blame] | 161 | return NULL; |
| 162 | } |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 163 | |
| 164 | return pmd_k; |
| 165 | } |
| 166 | |
Paul Mundt | d8fd35f | 2012-05-18 20:01:16 +0900 | [diff] [blame] | 167 | #ifdef CONFIG_SH_STORE_QUEUES |
| 168 | #define __FAULT_ADDR_LIMIT P3_ADDR_MAX |
| 169 | #else |
| 170 | #define __FAULT_ADDR_LIMIT VMALLOC_END |
| 171 | #endif |
| 172 | |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 173 | /* |
| 174 | * Handle a fault on the vmalloc or module mapping area |
| 175 | */ |
| 176 | static noinline int vmalloc_fault(unsigned long address) |
| 177 | { |
| 178 | pgd_t *pgd_k; |
| 179 | pmd_t *pmd_k; |
| 180 | pte_t *pte_k; |
| 181 | |
Paul Mundt | c3e0af9 | 2012-05-18 19:30:05 +0900 | [diff] [blame] | 182 | /* Make sure we are in vmalloc/module/P3 area: */ |
Paul Mundt | d8fd35f | 2012-05-18 20:01:16 +0900 | [diff] [blame] | 183 | if (!(address >= VMALLOC_START && address < __FAULT_ADDR_LIMIT)) |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 184 | return -1; |
| 185 | |
| 186 | /* |
| 187 | * Synchronize this task's top level page-table |
| 188 | * with the 'reference' page table. |
| 189 | * |
| 190 | * Do _not_ use "current" here. We might be inside |
| 191 | * an interrupt in the middle of a task switch.. |
| 192 | */ |
| 193 | pgd_k = get_TTB(); |
Matt Fleming | 05dd2cd | 2009-07-13 11:38:04 +0000 | [diff] [blame] | 194 | pmd_k = vmalloc_sync_one(pgd_k, address); |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 195 | if (!pmd_k) |
| 196 | return -1; |
| 197 | |
| 198 | pte_k = pte_offset_kernel(pmd_k, address); |
| 199 | if (!pte_present(*pte_k)) |
| 200 | return -1; |
| 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 205 | static void |
| 206 | show_fault_oops(struct pt_regs *regs, unsigned long address) |
| 207 | { |
| 208 | if (!oops_may_print()) |
| 209 | return; |
| 210 | |
| 211 | printk(KERN_ALERT "BUG: unable to handle kernel "); |
| 212 | if (address < PAGE_SIZE) |
| 213 | printk(KERN_CONT "NULL pointer dereference"); |
| 214 | else |
| 215 | printk(KERN_CONT "paging request"); |
| 216 | |
| 217 | printk(KERN_CONT " at %08lx\n", address); |
| 218 | printk(KERN_ALERT "PC:"); |
| 219 | printk_address(regs->pc, 1); |
| 220 | |
| 221 | show_pte(NULL, address); |
| 222 | } |
| 223 | |
| 224 | static noinline void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 225 | no_context(struct pt_regs *regs, unsigned long error_code, |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 226 | unsigned long address) |
| 227 | { |
| 228 | /* Are we prepared to handle this kernel fault? */ |
| 229 | if (fixup_exception(regs)) |
| 230 | return; |
| 231 | |
| 232 | if (handle_trapped_io(regs, address)) |
| 233 | return; |
| 234 | |
| 235 | /* |
| 236 | * Oops. The kernel tried to access some bad page. We'll have to |
| 237 | * terminate things with extreme prejudice. |
| 238 | */ |
| 239 | bust_spinlocks(1); |
| 240 | |
| 241 | show_fault_oops(regs, address); |
| 242 | |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 243 | die("Oops", regs, error_code); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 244 | bust_spinlocks(0); |
| 245 | do_exit(SIGKILL); |
| 246 | } |
| 247 | |
| 248 | static void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 249 | __bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code, |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 250 | unsigned long address, int si_code) |
| 251 | { |
| 252 | struct task_struct *tsk = current; |
| 253 | |
| 254 | /* User mode accesses just cause a SIGSEGV */ |
| 255 | if (user_mode(regs)) { |
| 256 | /* |
| 257 | * It's possible to have interrupts off here: |
| 258 | */ |
| 259 | local_irq_enable(); |
| 260 | |
| 261 | force_sig_info_fault(SIGSEGV, si_code, address, tsk); |
| 262 | |
| 263 | return; |
| 264 | } |
| 265 | |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 266 | no_context(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static noinline void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 270 | bad_area_nosemaphore(struct pt_regs *regs, unsigned long error_code, |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 271 | unsigned long address) |
| 272 | { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 273 | __bad_area_nosemaphore(regs, error_code, address, SEGV_MAPERR); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | static void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 277 | __bad_area(struct pt_regs *regs, unsigned long error_code, |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 278 | unsigned long address, int si_code) |
| 279 | { |
| 280 | struct mm_struct *mm = current->mm; |
| 281 | |
| 282 | /* |
| 283 | * Something tried to access memory that isn't in our memory map.. |
| 284 | * Fix it, but check if it's kernel or user first.. |
| 285 | */ |
| 286 | up_read(&mm->mmap_sem); |
| 287 | |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 288 | __bad_area_nosemaphore(regs, error_code, address, si_code); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | static noinline void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 292 | bad_area(struct pt_regs *regs, unsigned long error_code, unsigned long address) |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 293 | { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 294 | __bad_area(regs, error_code, address, SEGV_MAPERR); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 295 | } |
| 296 | |
| 297 | static noinline void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 298 | bad_area_access_error(struct pt_regs *regs, unsigned long error_code, |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 299 | unsigned long address) |
| 300 | { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 301 | __bad_area(regs, error_code, address, SEGV_ACCERR); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | static void out_of_memory(void) |
| 305 | { |
| 306 | /* |
| 307 | * We ran out of memory, call the OOM killer, and return the userspace |
| 308 | * (which will retry the fault, or kill us if we got oom-killed): |
| 309 | */ |
| 310 | up_read(¤t->mm->mmap_sem); |
| 311 | |
| 312 | pagefault_out_of_memory(); |
| 313 | } |
| 314 | |
| 315 | static void |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 316 | do_sigbus(struct pt_regs *regs, unsigned long error_code, unsigned long address) |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 317 | { |
| 318 | struct task_struct *tsk = current; |
| 319 | struct mm_struct *mm = tsk->mm; |
| 320 | |
| 321 | up_read(&mm->mmap_sem); |
| 322 | |
| 323 | /* Kernel mode? Handle exceptions or die: */ |
| 324 | if (!user_mode(regs)) |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 325 | no_context(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 326 | |
| 327 | force_sig_info_fault(SIGBUS, BUS_ADRERR, address, tsk); |
| 328 | } |
| 329 | |
| 330 | static noinline int |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 331 | mm_fault_error(struct pt_regs *regs, unsigned long error_code, |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 332 | unsigned long address, unsigned int fault) |
| 333 | { |
| 334 | /* |
| 335 | * Pagefault was interrupted by SIGKILL. We have no reason to |
| 336 | * continue pagefault. |
| 337 | */ |
| 338 | if (fatal_signal_pending(current)) { |
| 339 | if (!(fault & VM_FAULT_RETRY)) |
| 340 | up_read(¤t->mm->mmap_sem); |
| 341 | if (!user_mode(regs)) |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 342 | no_context(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 343 | return 1; |
| 344 | } |
| 345 | |
| 346 | if (!(fault & VM_FAULT_ERROR)) |
| 347 | return 0; |
| 348 | |
| 349 | if (fault & VM_FAULT_OOM) { |
| 350 | /* Kernel mode? Handle exceptions or die: */ |
| 351 | if (!user_mode(regs)) { |
| 352 | up_read(¤t->mm->mmap_sem); |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 353 | no_context(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 354 | return 1; |
| 355 | } |
| 356 | |
| 357 | out_of_memory(); |
| 358 | } else { |
| 359 | if (fault & VM_FAULT_SIGBUS) |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 360 | do_sigbus(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 361 | else |
| 362 | BUG(); |
| 363 | } |
| 364 | |
| 365 | return 1; |
| 366 | } |
| 367 | |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 368 | static inline int access_error(int error_code, struct vm_area_struct *vma) |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 369 | { |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 370 | if (error_code & FAULT_CODE_WRITE) { |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 371 | /* write, present and write, not present: */ |
| 372 | if (unlikely(!(vma->vm_flags & VM_WRITE))) |
| 373 | return 1; |
| 374 | return 0; |
| 375 | } |
| 376 | |
Paul Mundt | 2808032 | 2012-05-14 15:33:28 +0900 | [diff] [blame] | 377 | /* ITLB miss on NX page */ |
| 378 | if (unlikely((error_code & FAULT_CODE_ITLB) && |
| 379 | !(vma->vm_flags & VM_EXEC))) |
| 380 | return 1; |
| 381 | |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 382 | /* read, not present: */ |
| 383 | if (unlikely(!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))) |
| 384 | return 1; |
| 385 | |
| 386 | return 0; |
| 387 | } |
| 388 | |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 389 | static int fault_in_kernel_space(unsigned long address) |
| 390 | { |
| 391 | return address >= TASK_SIZE; |
| 392 | } |
| 393 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | /* |
| 395 | * This routine handles page faults. It determines the address, |
| 396 | * and the problem, and then passes it off to one of the appropriate |
| 397 | * routines. |
| 398 | */ |
Stuart Menefy | b5a1bcb | 2006-11-21 13:34:04 +0900 | [diff] [blame] | 399 | asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 400 | unsigned long error_code, |
Stuart Menefy | b5a1bcb | 2006-11-21 13:34:04 +0900 | [diff] [blame] | 401 | unsigned long address) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 403 | unsigned long vec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | struct task_struct *tsk; |
| 405 | struct mm_struct *mm; |
| 406 | struct vm_area_struct * vma; |
Nick Piggin | 83c5407 | 2007-07-19 01:47:05 -0700 | [diff] [blame] | 407 | int fault; |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 408 | int write = error_code & FAULT_CODE_WRITE; |
Kautuk Consul | 11fd982 | 2012-03-31 08:06:11 -0400 | [diff] [blame] | 409 | unsigned int flags = (FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE | |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 410 | (write ? FAULT_FLAG_WRITE : 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | tsk = current; |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 413 | mm = tsk->mm; |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 414 | vec = lookup_exception_vector(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 416 | /* |
| 417 | * We fault-in kernel-space virtual memory on-demand. The |
| 418 | * 'reference' page table is init_mm.pgd. |
| 419 | * |
| 420 | * NOTE! We MUST NOT take any locks for this case. We may |
| 421 | * be in an interrupt or a critical region, and should |
| 422 | * only copy the information from the master page table, |
| 423 | * nothing more. |
| 424 | */ |
| 425 | if (unlikely(fault_in_kernel_space(address))) { |
| 426 | if (vmalloc_fault(address) >= 0) |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 427 | return; |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 428 | if (notify_page_fault(regs, vec)) |
Stuart Menefy | 96e14e5 | 2008-09-05 16:17:15 +0900 | [diff] [blame] | 429 | return; |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 430 | |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 431 | bad_area_nosemaphore(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 432 | return; |
Stuart Menefy | 99a596f | 2006-11-21 15:38:05 +0900 | [diff] [blame] | 433 | } |
| 434 | |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 435 | if (unlikely(notify_page_fault(regs, vec))) |
Paul Mundt | 7433ab770 | 2009-06-25 02:30:10 +0900 | [diff] [blame] | 436 | return; |
| 437 | |
| 438 | /* Only enable interrupts if they were on before the fault */ |
| 439 | if ((regs->sr & SR_IMASK) != SR_IMASK) |
| 440 | local_irq_enable(); |
| 441 | |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 442 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address); |
Paul Mundt | 7433ab770 | 2009-06-25 02:30:10 +0900 | [diff] [blame] | 443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | /* |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 445 | * If we're in an interrupt, have no user context or are running |
| 446 | * in an atomic region then we must not take the fault: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | */ |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 448 | if (unlikely(in_atomic() || !mm)) { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 449 | bad_area_nosemaphore(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 450 | return; |
| 451 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Kautuk Consul | 11fd982 | 2012-03-31 08:06:11 -0400 | [diff] [blame] | 453 | retry: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | down_read(&mm->mmap_sem); |
| 455 | |
| 456 | vma = find_vma(mm, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 457 | if (unlikely(!vma)) { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 458 | bad_area(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 459 | return; |
| 460 | } |
| 461 | if (likely(vma->vm_start <= address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | goto good_area; |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 463 | if (unlikely(!(vma->vm_flags & VM_GROWSDOWN))) { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 464 | bad_area(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 465 | return; |
| 466 | } |
| 467 | if (unlikely(expand_stack(vma, address))) { |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 468 | bad_area(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 469 | return; |
| 470 | } |
Paul Mundt | 0f60bb2 | 2009-07-05 03:18:47 +0900 | [diff] [blame] | 471 | |
| 472 | /* |
| 473 | * Ok, we have a good vm_area for this memory access, so |
| 474 | * we can handle it.. |
| 475 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | good_area: |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 477 | if (unlikely(access_error(error_code, vma))) { |
| 478 | bad_area_access_error(regs, error_code, address); |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 479 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | } |
| 481 | |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 482 | set_thread_fault_code(error_code); |
| 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | /* |
| 485 | * If for any reason at all we couldn't handle the fault, |
| 486 | * make sure we exit gracefully rather than endlessly redo |
| 487 | * the fault. |
| 488 | */ |
Kautuk Consul | 11fd982 | 2012-03-31 08:06:11 -0400 | [diff] [blame] | 489 | fault = handle_mm_fault(mm, vma, address, flags); |
| 490 | |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 491 | if (unlikely(fault & (VM_FAULT_RETRY | VM_FAULT_ERROR))) |
Paul Mundt | 5a1dc78 | 2012-05-14 14:57:28 +0900 | [diff] [blame] | 492 | if (mm_fault_error(regs, error_code, address, fault)) |
Paul Mundt | dbdb4e9 | 2012-05-14 10:27:34 +0900 | [diff] [blame] | 493 | return; |
Kautuk Consul | 11fd982 | 2012-03-31 08:06:11 -0400 | [diff] [blame] | 494 | |
| 495 | if (flags & FAULT_FLAG_ALLOW_RETRY) { |
| 496 | if (fault & VM_FAULT_MAJOR) { |
| 497 | tsk->maj_flt++; |
| 498 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, |
| 499 | regs, address); |
| 500 | } else { |
| 501 | tsk->min_flt++; |
| 502 | perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, |
| 503 | regs, address); |
| 504 | } |
| 505 | if (fault & VM_FAULT_RETRY) { |
| 506 | flags &= ~FAULT_FLAG_ALLOW_RETRY; |
| 507 | |
| 508 | /* |
| 509 | * No need to up_read(&mm->mmap_sem) as we would |
| 510 | * have already released it in __lock_page_or_retry |
| 511 | * in mm/filemap.c. |
| 512 | */ |
| 513 | goto retry; |
| 514 | } |
Paul Mundt | 7433ab770 | 2009-06-25 02:30:10 +0900 | [diff] [blame] | 515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
| 517 | up_read(&mm->mmap_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |