Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/kernel/traps.c |
| 3 | * |
| 4 | * Copyright (C) 1995-2002 Russell King |
| 5 | * Fragments that appear the same as linux/arch/i386/kernel/traps.c (C) Linus Torvalds |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * 'traps.c' handles hardware exceptions after we have saved some state in |
| 12 | * 'linux/arch/arm/lib/traps.S'. Mostly a debugging aid, but will probably |
| 13 | * kill the offending process. |
| 14 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/signal.h> |
| 17 | #include <linux/spinlock.h> |
| 18 | #include <linux/personality.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/kallsyms.h> |
Russell King | 3186749 | 2006-02-19 19:53:56 +0000 | [diff] [blame] | 20 | #include <linux/delay.h> |
Russell King | 67306da | 2008-12-14 18:01:44 +0000 | [diff] [blame] | 21 | #include <linux/hardirq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/init.h> |
Russell King | 33fa9b1 | 2008-09-06 11:35:55 +0100 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/atomic.h> |
| 26 | #include <asm/cacheflush.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <asm/system.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <asm/unistd.h> |
| 29 | #include <asm/traps.h> |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 30 | #include <asm/unwind.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include "ptrace.h" |
Russell King | e00d349 | 2005-06-22 20:26:05 +0100 | [diff] [blame] | 33 | #include "signal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static const char *handler[]= { "prefetch abort", "data abort", "address exception", "interrupt" }; |
| 36 | |
| 37 | #ifdef CONFIG_DEBUG_USER |
| 38 | unsigned int user_debug; |
| 39 | |
| 40 | static int __init user_debug_setup(char *str) |
| 41 | { |
| 42 | get_option(&str, &user_debug); |
| 43 | return 1; |
| 44 | } |
| 45 | __setup("user_debug=", user_debug_setup); |
| 46 | #endif |
| 47 | |
Russell King | 7ab3f8d | 2007-03-02 15:01:36 +0000 | [diff] [blame] | 48 | static void dump_mem(const char *str, unsigned long bottom, unsigned long top); |
| 49 | |
Russell King | 7ab3f8d | 2007-03-02 15:01:36 +0000 | [diff] [blame] | 50 | void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
| 52 | #ifdef CONFIG_KALLSYMS |
| 53 | printk("[<%08lx>] ", where); |
| 54 | print_symbol("(%s) ", where); |
| 55 | printk("from [<%08lx>] ", from); |
| 56 | print_symbol("(%s)\n", from); |
| 57 | #else |
| 58 | printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from); |
| 59 | #endif |
Russell King | 7ab3f8d | 2007-03-02 15:01:36 +0000 | [diff] [blame] | 60 | |
| 61 | if (in_exception_text(where)) |
| 62 | dump_mem("Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 65 | #ifndef CONFIG_ARM_UNWIND |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | /* |
| 67 | * Stack pointers should always be within the kernels view of |
| 68 | * physical memory. If it is not there, then we can't dump |
| 69 | * out any information relating to the stack. |
| 70 | */ |
| 71 | static int verify_stack(unsigned long sp) |
| 72 | { |
Russell King | 09d9bae | 2008-09-05 14:08:44 +0100 | [diff] [blame] | 73 | if (sp < PAGE_OFFSET || |
| 74 | (sp > (unsigned long)high_memory && high_memory != NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | return -EFAULT; |
| 76 | |
| 77 | return 0; |
| 78 | } |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 79 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | /* |
| 82 | * Dump out the contents of some memory nicely... |
| 83 | */ |
| 84 | static void dump_mem(const char *str, unsigned long bottom, unsigned long top) |
| 85 | { |
| 86 | unsigned long p = bottom & ~31; |
| 87 | mm_segment_t fs; |
| 88 | int i; |
| 89 | |
| 90 | /* |
| 91 | * We need to switch to kernel mode so that we can use __get_user |
| 92 | * to safely read from kernel space. Note that we now dump the |
| 93 | * code first, just in case the backtrace kills us. |
| 94 | */ |
| 95 | fs = get_fs(); |
| 96 | set_fs(KERNEL_DS); |
| 97 | |
| 98 | printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top); |
| 99 | |
| 100 | for (p = bottom & ~31; p < top;) { |
| 101 | printk("%04lx: ", p & 0xffff); |
| 102 | |
| 103 | for (i = 0; i < 8; i++, p += 4) { |
| 104 | unsigned int val; |
| 105 | |
| 106 | if (p < bottom || p >= top) |
| 107 | printk(" "); |
| 108 | else { |
| 109 | __get_user(val, (unsigned long *)p); |
| 110 | printk("%08x ", val); |
| 111 | } |
| 112 | } |
| 113 | printk ("\n"); |
| 114 | } |
| 115 | |
| 116 | set_fs(fs); |
| 117 | } |
| 118 | |
| 119 | static void dump_instr(struct pt_regs *regs) |
| 120 | { |
| 121 | unsigned long addr = instruction_pointer(regs); |
| 122 | const int thumb = thumb_mode(regs); |
| 123 | const int width = thumb ? 4 : 8; |
| 124 | mm_segment_t fs; |
| 125 | int i; |
| 126 | |
| 127 | /* |
| 128 | * We need to switch to kernel mode so that we can use __get_user |
| 129 | * to safely read from kernel space. Note that we now dump the |
| 130 | * code first, just in case the backtrace kills us. |
| 131 | */ |
| 132 | fs = get_fs(); |
| 133 | set_fs(KERNEL_DS); |
| 134 | |
| 135 | printk("Code: "); |
| 136 | for (i = -4; i < 1; i++) { |
| 137 | unsigned int val, bad; |
| 138 | |
| 139 | if (thumb) |
| 140 | bad = __get_user(val, &((u16 *)addr)[i]); |
| 141 | else |
| 142 | bad = __get_user(val, &((u32 *)addr)[i]); |
| 143 | |
| 144 | if (!bad) |
| 145 | printk(i == 0 ? "(%0*x) " : "%0*x ", width, val); |
| 146 | else { |
| 147 | printk("bad PC value."); |
| 148 | break; |
| 149 | } |
| 150 | } |
| 151 | printk("\n"); |
| 152 | |
| 153 | set_fs(fs); |
| 154 | } |
| 155 | |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 156 | #ifdef CONFIG_ARM_UNWIND |
| 157 | static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk) |
| 158 | { |
| 159 | unwind_backtrace(regs, tsk); |
| 160 | } |
| 161 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk) |
| 163 | { |
Catalin Marinas | 67a94c2 | 2009-02-11 13:06:53 +0100 | [diff] [blame] | 164 | unsigned int fp, mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | int ok = 1; |
| 166 | |
| 167 | printk("Backtrace: "); |
Catalin Marinas | 67a94c2 | 2009-02-11 13:06:53 +0100 | [diff] [blame] | 168 | |
| 169 | if (!tsk) |
| 170 | tsk = current; |
| 171 | |
| 172 | if (regs) { |
| 173 | fp = regs->ARM_fp; |
| 174 | mode = processor_mode(regs); |
| 175 | } else if (tsk != current) { |
| 176 | fp = thread_saved_fp(tsk); |
| 177 | mode = 0x10; |
| 178 | } else { |
| 179 | asm("mov %0, fp" : "=r" (fp) : : "cc"); |
| 180 | mode = 0x10; |
| 181 | } |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | if (!fp) { |
| 184 | printk("no frame pointer"); |
| 185 | ok = 0; |
| 186 | } else if (verify_stack(fp)) { |
| 187 | printk("invalid frame pointer 0x%08x", fp); |
| 188 | ok = 0; |
Al Viro | 5520582 | 2006-01-12 01:05:57 -0800 | [diff] [blame] | 189 | } else if (fp < (unsigned long)end_of_stack(tsk)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | printk("frame pointer underflow"); |
| 191 | printk("\n"); |
| 192 | |
| 193 | if (ok) |
Catalin Marinas | 67a94c2 | 2009-02-11 13:06:53 +0100 | [diff] [blame] | 194 | c_backtrace(fp, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 196 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
| 198 | void dump_stack(void) |
| 199 | { |
Catalin Marinas | 67a94c2 | 2009-02-11 13:06:53 +0100 | [diff] [blame] | 200 | dump_backtrace(NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | EXPORT_SYMBOL(dump_stack); |
| 204 | |
| 205 | void show_stack(struct task_struct *tsk, unsigned long *sp) |
| 206 | { |
Catalin Marinas | 67a94c2 | 2009-02-11 13:06:53 +0100 | [diff] [blame] | 207 | dump_backtrace(NULL, tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | barrier(); |
| 209 | } |
| 210 | |
Russell King | d920242 | 2007-06-17 13:38:27 +0100 | [diff] [blame] | 211 | #ifdef CONFIG_PREEMPT |
| 212 | #define S_PREEMPT " PREEMPT" |
| 213 | #else |
| 214 | #define S_PREEMPT "" |
| 215 | #endif |
| 216 | #ifdef CONFIG_SMP |
| 217 | #define S_SMP " SMP" |
| 218 | #else |
| 219 | #define S_SMP "" |
| 220 | #endif |
| 221 | |
Russell King | d362979 | 2005-10-30 19:01:43 +0000 | [diff] [blame] | 222 | static void __die(const char *str, int err, struct thread_info *thread, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | { |
Russell King | d362979 | 2005-10-30 19:01:43 +0000 | [diff] [blame] | 224 | struct task_struct *tsk = thread->task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | static int die_counter; |
| 226 | |
Russell King | d920242 | 2007-06-17 13:38:27 +0100 | [diff] [blame] | 227 | printk("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n", |
| 228 | str, err, ++die_counter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | print_modules(); |
Russell King | 652a12e | 2005-04-17 15:50:36 +0100 | [diff] [blame] | 230 | __show_regs(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | printk("Process %s (pid: %d, stack limit = 0x%p)\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 232 | tsk->comm, task_pid_nr(tsk), thread + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | if (!user_mode(regs) || in_interrupt()) { |
Russell King | 4f7a181 | 2005-05-05 13:11:00 +0100 | [diff] [blame] | 235 | dump_mem("Stack: ", regs->ARM_sp, |
Al Viro | 32d39a9 | 2006-01-12 01:05:58 -0800 | [diff] [blame] | 236 | THREAD_SIZE + (unsigned long)task_stack_page(tsk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | dump_backtrace(regs, tsk); |
| 238 | dump_instr(regs); |
| 239 | } |
Russell King | d362979 | 2005-10-30 19:01:43 +0000 | [diff] [blame] | 240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Russell King | d362979 | 2005-10-30 19:01:43 +0000 | [diff] [blame] | 242 | DEFINE_SPINLOCK(die_lock); |
| 243 | |
| 244 | /* |
| 245 | * This function is protected against re-entrancy. |
| 246 | */ |
| 247 | NORET_TYPE void die(const char *str, struct pt_regs *regs, int err) |
| 248 | { |
| 249 | struct thread_info *thread = current_thread_info(); |
| 250 | |
Russell King | d920242 | 2007-06-17 13:38:27 +0100 | [diff] [blame] | 251 | oops_enter(); |
| 252 | |
Russell King | d362979 | 2005-10-30 19:01:43 +0000 | [diff] [blame] | 253 | console_verbose(); |
| 254 | spin_lock_irq(&die_lock); |
| 255 | bust_spinlocks(1); |
| 256 | __die(str, err, thread, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | bust_spinlocks(0); |
Pavel Emelianov | bcdcd8e | 2007-07-17 04:03:42 -0700 | [diff] [blame] | 258 | add_taint(TAINT_DIE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | spin_unlock_irq(&die_lock); |
Russell King | 3186749 | 2006-02-19 19:53:56 +0000 | [diff] [blame] | 260 | |
Russell King | d920242 | 2007-06-17 13:38:27 +0100 | [diff] [blame] | 261 | if (in_interrupt()) |
| 262 | panic("Fatal exception in interrupt"); |
| 263 | |
Horms | cea6a4b | 2006-07-30 03:03:34 -0700 | [diff] [blame] | 264 | if (panic_on_oops) |
Horms | 012c437 | 2006-08-13 23:24:22 -0700 | [diff] [blame] | 265 | panic("Fatal exception"); |
Russell King | 3186749 | 2006-02-19 19:53:56 +0000 | [diff] [blame] | 266 | |
Russell King | d920242 | 2007-06-17 13:38:27 +0100 | [diff] [blame] | 267 | oops_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | do_exit(SIGSEGV); |
| 269 | } |
| 270 | |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 271 | void arm_notify_die(const char *str, struct pt_regs *regs, |
| 272 | struct siginfo *info, unsigned long err, unsigned long trap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
| 274 | if (user_mode(regs)) { |
| 275 | current->thread.error_code = err; |
| 276 | current->thread.trap_no = trap; |
| 277 | |
| 278 | force_sig_info(info->si_signo, info, current); |
| 279 | } else { |
| 280 | die(str, regs, err); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | static LIST_HEAD(undef_hook); |
| 285 | static DEFINE_SPINLOCK(undef_lock); |
| 286 | |
| 287 | void register_undef_hook(struct undef_hook *hook) |
| 288 | { |
Russell King | 109d89c | 2005-07-16 16:43:33 +0100 | [diff] [blame] | 289 | unsigned long flags; |
| 290 | |
| 291 | spin_lock_irqsave(&undef_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | list_add(&hook->node, &undef_hook); |
Russell King | 109d89c | 2005-07-16 16:43:33 +0100 | [diff] [blame] | 293 | spin_unlock_irqrestore(&undef_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | void unregister_undef_hook(struct undef_hook *hook) |
| 297 | { |
Russell King | 109d89c | 2005-07-16 16:43:33 +0100 | [diff] [blame] | 298 | unsigned long flags; |
| 299 | |
| 300 | spin_lock_irqsave(&undef_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | list_del(&hook->node); |
Russell King | 109d89c | 2005-07-16 16:43:33 +0100 | [diff] [blame] | 302 | spin_unlock_irqrestore(&undef_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
Russell King | b03a5b7 | 2008-08-11 12:27:16 +0100 | [diff] [blame] | 305 | static int call_undef_hook(struct pt_regs *regs, unsigned int instr) |
| 306 | { |
| 307 | struct undef_hook *hook; |
| 308 | unsigned long flags; |
| 309 | int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL; |
| 310 | |
| 311 | spin_lock_irqsave(&undef_lock, flags); |
| 312 | list_for_each_entry(hook, &undef_hook, node) |
| 313 | if ((instr & hook->instr_mask) == hook->instr_val && |
| 314 | (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val) |
| 315 | fn = hook->fn; |
| 316 | spin_unlock_irqrestore(&undef_lock, flags); |
| 317 | |
| 318 | return fn ? fn(regs, instr) : 1; |
| 319 | } |
| 320 | |
Russell King | 7ab3f8d | 2007-03-02 15:01:36 +0000 | [diff] [blame] | 321 | asmlinkage void __exception do_undefinstr(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { |
| 323 | unsigned int correction = thumb_mode(regs) ? 2 : 4; |
| 324 | unsigned int instr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | siginfo_t info; |
| 326 | void __user *pc; |
| 327 | |
| 328 | /* |
| 329 | * According to the ARM ARM, PC is 2 or 4 bytes ahead, |
| 330 | * depending whether we're in Thumb mode or not. |
| 331 | * Correct this offset. |
| 332 | */ |
| 333 | regs->ARM_pc -= correction; |
| 334 | |
| 335 | pc = (void __user *)instruction_pointer(regs); |
Dan Williams | dfc544c | 2007-02-13 17:11:34 +0100 | [diff] [blame] | 336 | |
| 337 | if (processor_mode(regs) == SVC_MODE) { |
| 338 | instr = *(u32 *) pc; |
| 339 | } else if (thumb_mode(regs)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | get_user(instr, (u16 __user *)pc); |
| 341 | } else { |
| 342 | get_user(instr, (u32 __user *)pc); |
| 343 | } |
| 344 | |
Russell King | b03a5b7 | 2008-08-11 12:27:16 +0100 | [diff] [blame] | 345 | if (call_undef_hook(regs, instr) == 0) |
| 346 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | #ifdef CONFIG_DEBUG_USER |
| 349 | if (user_debug & UDBG_UNDEFINED) { |
| 350 | printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 351 | current->comm, task_pid_nr(current), pc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | dump_instr(regs); |
| 353 | } |
| 354 | #endif |
| 355 | |
| 356 | info.si_signo = SIGILL; |
| 357 | info.si_errno = 0; |
| 358 | info.si_code = ILL_ILLOPC; |
| 359 | info.si_addr = pc; |
| 360 | |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 361 | arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | asmlinkage void do_unexp_fiq (struct pt_regs *regs) |
| 365 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | printk("Hmm. Unexpected FIQ received, but trying to continue\n"); |
| 367 | printk("You may have a hardware problem...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | /* |
| 371 | * bad_mode handles the impossible case in the vectors. If you see one of |
| 372 | * these, then it's extremely serious, and could mean you have buggy hardware. |
| 373 | * It never returns, and never tries to sync. We hope that we can at least |
| 374 | * dump out some state information... |
| 375 | */ |
Russell King | ae0a846 | 2007-01-09 12:57:37 +0000 | [diff] [blame] | 376 | asmlinkage void bad_mode(struct pt_regs *regs, int reason) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | { |
| 378 | console_verbose(); |
| 379 | |
Russell King | ae0a846 | 2007-01-09 12:57:37 +0000 | [diff] [blame] | 380 | printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | die("Oops - bad mode", regs, 0); |
| 383 | local_irq_disable(); |
| 384 | panic("bad mode"); |
| 385 | } |
| 386 | |
| 387 | static int bad_syscall(int n, struct pt_regs *regs) |
| 388 | { |
| 389 | struct thread_info *thread = current_thread_info(); |
| 390 | siginfo_t info; |
| 391 | |
Nicolas Pitre | a999cb04 | 2005-10-28 16:35:46 +0100 | [diff] [blame] | 392 | if (current->personality != PER_LINUX && |
| 393 | current->personality != PER_LINUX_32BIT && |
| 394 | thread->exec_domain->handler) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | thread->exec_domain->handler(n, regs); |
| 396 | return regs->ARM_r0; |
| 397 | } |
| 398 | |
| 399 | #ifdef CONFIG_DEBUG_USER |
| 400 | if (user_debug & UDBG_SYSCALL) { |
| 401 | printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 402 | task_pid_nr(current), current->comm, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | dump_instr(regs); |
| 404 | } |
| 405 | #endif |
| 406 | |
| 407 | info.si_signo = SIGILL; |
| 408 | info.si_errno = 0; |
| 409 | info.si_code = ILL_ILLTRP; |
| 410 | info.si_addr = (void __user *)instruction_pointer(regs) - |
| 411 | (thumb_mode(regs) ? 2 : 4); |
| 412 | |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 413 | arm_notify_die("Oops - bad syscall", regs, &info, n, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
| 415 | return regs->ARM_r0; |
| 416 | } |
| 417 | |
| 418 | static inline void |
| 419 | do_cache_op(unsigned long start, unsigned long end, int flags) |
| 420 | { |
Russell King | aa45ee8 | 2009-09-28 11:41:51 +0100 | [diff] [blame^] | 421 | struct mm_struct *mm = current->active_mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | struct vm_area_struct *vma; |
| 423 | |
| 424 | if (end < start || flags) |
| 425 | return; |
| 426 | |
Russell King | aa45ee8 | 2009-09-28 11:41:51 +0100 | [diff] [blame^] | 427 | down_read(&mm->mmap_sem); |
| 428 | vma = find_vma(mm, start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | if (vma && vma->vm_start < end) { |
| 430 | if (start < vma->vm_start) |
| 431 | start = vma->vm_start; |
| 432 | if (end > vma->vm_end) |
| 433 | end = vma->vm_end; |
| 434 | |
| 435 | flush_cache_user_range(vma, start, end); |
| 436 | } |
Russell King | aa45ee8 | 2009-09-28 11:41:51 +0100 | [diff] [blame^] | 437 | up_read(&mm->mmap_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | /* |
| 441 | * Handle all unrecognised system calls. |
| 442 | * 0x9f0000 - 0x9fffff are some more esoteric system calls |
| 443 | */ |
| 444 | #define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE) |
| 445 | asmlinkage int arm_syscall(int no, struct pt_regs *regs) |
| 446 | { |
| 447 | struct thread_info *thread = current_thread_info(); |
| 448 | siginfo_t info; |
| 449 | |
Nicolas Pitre | 3f2829a | 2006-01-14 16:31:29 +0000 | [diff] [blame] | 450 | if ((no >> 16) != (__ARM_NR_BASE>> 16)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | return bad_syscall(no, regs); |
| 452 | |
| 453 | switch (no & 0xffff) { |
| 454 | case 0: /* branch through 0 */ |
| 455 | info.si_signo = SIGSEGV; |
| 456 | info.si_errno = 0; |
| 457 | info.si_code = SEGV_MAPERR; |
| 458 | info.si_addr = NULL; |
| 459 | |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 460 | arm_notify_die("branch through zero", regs, &info, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | return 0; |
| 462 | |
| 463 | case NR(breakpoint): /* SWI BREAK_POINT */ |
| 464 | regs->ARM_pc -= thumb_mode(regs) ? 2 : 4; |
| 465 | ptrace_break(current, regs); |
| 466 | return regs->ARM_r0; |
| 467 | |
| 468 | /* |
| 469 | * Flush a region from virtual address 'r0' to virtual address 'r1' |
| 470 | * _exclusive_. There is no alignment requirement on either address; |
| 471 | * user space does not need to know the hardware cache layout. |
| 472 | * |
| 473 | * r2 contains flags. It should ALWAYS be passed as ZERO until it |
| 474 | * is defined to be something else. For now we ignore it, but may |
| 475 | * the fires of hell burn in your belly if you break this rule. ;) |
| 476 | * |
| 477 | * (at a later date, we may want to allow this call to not flush |
| 478 | * various aspects of the cache. Passing '0' will guarantee that |
| 479 | * everything necessary gets flushed to maintain consistency in |
| 480 | * the specified region). |
| 481 | */ |
| 482 | case NR(cacheflush): |
| 483 | do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2); |
| 484 | return 0; |
| 485 | |
| 486 | case NR(usr26): |
| 487 | if (!(elf_hwcap & HWCAP_26BIT)) |
| 488 | break; |
| 489 | regs->ARM_cpsr &= ~MODE32_BIT; |
| 490 | return regs->ARM_r0; |
| 491 | |
| 492 | case NR(usr32): |
| 493 | if (!(elf_hwcap & HWCAP_26BIT)) |
| 494 | break; |
| 495 | regs->ARM_cpsr |= MODE32_BIT; |
| 496 | return regs->ARM_r0; |
| 497 | |
| 498 | case NR(set_tls): |
| 499 | thread->tp_value = regs->ARM_r0; |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 500 | #if defined(CONFIG_HAS_TLS_REG) |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 501 | asm ("mcr p15, 0, %0, c13, c0, 3" : : "r" (regs->ARM_r0) ); |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 502 | #elif !defined(CONFIG_TLS_REG_EMUL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | /* |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 504 | * User space must never try to access this directly. |
| 505 | * Expect your app to break eventually if you do so. |
| 506 | * The user helper at 0xffff0fe0 must be used instead. |
| 507 | * (see entry-armv.S for details) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | */ |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 509 | *((unsigned int *)0xffff0ff0) = regs->ARM_r0; |
| 510 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | return 0; |
| 512 | |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 513 | #ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG |
| 514 | /* |
| 515 | * Atomically store r1 in *r2 if *r2 is equal to r0 for user space. |
| 516 | * Return zero in r0 if *MEM was changed or non-zero if no exchange |
| 517 | * happened. Also set the user C flag accordingly. |
| 518 | * If access permissions have to be fixed up then non-zero is |
| 519 | * returned and the operation has to be re-attempted. |
| 520 | * |
| 521 | * *NOTE*: This is a ghost syscall private to the kernel. Only the |
| 522 | * __kuser_cmpxchg code in entry-armv.S should be aware of its |
| 523 | * existence. Don't ever use this from user code. |
| 524 | */ |
| 525 | case 0xfff0: |
Nicolas Pitre | b49c0f2 | 2007-11-20 17:20:29 +0100 | [diff] [blame] | 526 | for (;;) { |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 527 | extern void do_DataAbort(unsigned long addr, unsigned int fsr, |
| 528 | struct pt_regs *regs); |
| 529 | unsigned long val; |
| 530 | unsigned long addr = regs->ARM_r2; |
| 531 | struct mm_struct *mm = current->mm; |
| 532 | pgd_t *pgd; pmd_t *pmd; pte_t *pte; |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 533 | spinlock_t *ptl; |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 534 | |
| 535 | regs->ARM_cpsr &= ~PSR_C_BIT; |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 536 | down_read(&mm->mmap_sem); |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 537 | pgd = pgd_offset(mm, addr); |
| 538 | if (!pgd_present(*pgd)) |
| 539 | goto bad_access; |
| 540 | pmd = pmd_offset(pgd, addr); |
| 541 | if (!pmd_present(*pmd)) |
| 542 | goto bad_access; |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 543 | pte = pte_offset_map_lock(mm, pmd, addr, &ptl); |
Nicolas Pitre | 2ce9804 | 2006-03-25 22:44:05 +0000 | [diff] [blame] | 544 | if (!pte_present(*pte) || !pte_dirty(*pte)) { |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 545 | pte_unmap_unlock(pte, ptl); |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 546 | goto bad_access; |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 547 | } |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 548 | val = *(unsigned long *)addr; |
| 549 | val -= regs->ARM_r0; |
| 550 | if (val == 0) { |
| 551 | *(unsigned long *)addr = regs->ARM_r1; |
| 552 | regs->ARM_cpsr |= PSR_C_BIT; |
| 553 | } |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 554 | pte_unmap_unlock(pte, ptl); |
| 555 | up_read(&mm->mmap_sem); |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 556 | return val; |
| 557 | |
| 558 | bad_access: |
Hugh Dickins | 69b0475 | 2005-10-29 18:16:36 -0700 | [diff] [blame] | 559 | up_read(&mm->mmap_sem); |
Nicolas Pitre | 74f8849 | 2005-10-04 23:17:52 +0100 | [diff] [blame] | 560 | /* simulate a write access fault */ |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 561 | do_DataAbort(addr, 15 + (1 << 11), regs); |
Nicolas Pitre | dcef1f6 | 2005-06-08 19:00:47 +0100 | [diff] [blame] | 562 | } |
| 563 | #endif |
| 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | default: |
| 566 | /* Calls 9f00xx..9f07ff are defined to return -ENOSYS |
| 567 | if not implemented, rather than raising SIGILL. This |
| 568 | way the calling program can gracefully determine whether |
| 569 | a feature is supported. */ |
| 570 | if (no <= 0x7ff) |
| 571 | return -ENOSYS; |
| 572 | break; |
| 573 | } |
| 574 | #ifdef CONFIG_DEBUG_USER |
| 575 | /* |
| 576 | * experience shows that these seem to indicate that |
| 577 | * something catastrophic has happened |
| 578 | */ |
| 579 | if (user_debug & UDBG_SYSCALL) { |
| 580 | printk("[%d] %s: arm syscall %d\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 581 | task_pid_nr(current), current->comm, no); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | dump_instr(regs); |
| 583 | if (user_mode(regs)) { |
Russell King | 652a12e | 2005-04-17 15:50:36 +0100 | [diff] [blame] | 584 | __show_regs(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | c_backtrace(regs->ARM_fp, processor_mode(regs)); |
| 586 | } |
| 587 | } |
| 588 | #endif |
| 589 | info.si_signo = SIGILL; |
| 590 | info.si_errno = 0; |
| 591 | info.si_code = ILL_ILLTRP; |
| 592 | info.si_addr = (void __user *)instruction_pointer(regs) - |
| 593 | (thumb_mode(regs) ? 2 : 4); |
| 594 | |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 595 | arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | return 0; |
| 597 | } |
| 598 | |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 599 | #ifdef CONFIG_TLS_REG_EMUL |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 600 | |
| 601 | /* |
| 602 | * We might be running on an ARMv6+ processor which should have the TLS |
Nicolas Pitre | 4b0e07a | 2005-05-05 23:24:45 +0100 | [diff] [blame] | 603 | * register but for some reason we can't use it, or maybe an SMP system |
| 604 | * using a pre-ARMv6 processor (there are apparently a few prototypes like |
| 605 | * that in existence) and therefore access to that register must be |
| 606 | * emulated. |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 607 | */ |
| 608 | |
| 609 | static int get_tp_trap(struct pt_regs *regs, unsigned int instr) |
| 610 | { |
| 611 | int reg = (instr >> 12) & 15; |
| 612 | if (reg == 15) |
| 613 | return 1; |
| 614 | regs->uregs[reg] = current_thread_info()->tp_value; |
| 615 | regs->ARM_pc += 4; |
| 616 | return 0; |
| 617 | } |
| 618 | |
| 619 | static struct undef_hook arm_mrc_hook = { |
| 620 | .instr_mask = 0x0fff0fff, |
| 621 | .instr_val = 0x0e1d0f70, |
| 622 | .cpsr_mask = PSR_T_BIT, |
| 623 | .cpsr_val = 0, |
| 624 | .fn = get_tp_trap, |
| 625 | }; |
| 626 | |
| 627 | static int __init arm_mrc_hook_init(void) |
| 628 | { |
| 629 | register_undef_hook(&arm_mrc_hook); |
| 630 | return 0; |
| 631 | } |
| 632 | |
| 633 | late_initcall(arm_mrc_hook_init); |
| 634 | |
| 635 | #endif |
| 636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | void __bad_xchg(volatile void *ptr, int size) |
| 638 | { |
| 639 | printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n", |
| 640 | __builtin_return_address(0), ptr, size); |
| 641 | BUG(); |
| 642 | } |
| 643 | EXPORT_SYMBOL(__bad_xchg); |
| 644 | |
| 645 | /* |
| 646 | * A data abort trap was taken, but we did not handle the instruction. |
| 647 | * Try to abort the user program, or panic if it was the kernel. |
| 648 | */ |
| 649 | asmlinkage void |
| 650 | baddataabort(int code, unsigned long instr, struct pt_regs *regs) |
| 651 | { |
| 652 | unsigned long addr = instruction_pointer(regs); |
| 653 | siginfo_t info; |
| 654 | |
| 655 | #ifdef CONFIG_DEBUG_USER |
| 656 | if (user_debug & UDBG_BADABORT) { |
| 657 | printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n", |
Alexey Dobriyan | 19c5870 | 2007-10-18 23:40:41 -0700 | [diff] [blame] | 658 | task_pid_nr(current), current->comm, code, instr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | dump_instr(regs); |
| 660 | show_pte(current->mm, addr); |
| 661 | } |
| 662 | #endif |
| 663 | |
| 664 | info.si_signo = SIGILL; |
| 665 | info.si_errno = 0; |
| 666 | info.si_code = ILL_ILLOPC; |
| 667 | info.si_addr = (void __user *)addr; |
| 668 | |
Christoph Hellwig | 1eeb66a | 2007-05-08 00:27:03 -0700 | [diff] [blame] | 669 | arm_notify_die("unknown data abort code", regs, &info, instr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
| 671 | |
Nicolas Pitre | 7174d85 | 2006-12-07 19:09:20 +0100 | [diff] [blame] | 672 | void __attribute__((noreturn)) __bug(const char *file, int line) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | { |
Nicolas Pitre | 7174d85 | 2006-12-07 19:09:20 +0100 | [diff] [blame] | 674 | printk(KERN_CRIT"kernel BUG at %s:%d!\n", file, line); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | *(int *)0 = 0; |
Catalin Marinas | 6a1ced5 | 2005-09-21 22:14:05 +0100 | [diff] [blame] | 676 | |
| 677 | /* Avoid "noreturn function does return" */ |
| 678 | for (;;); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | } |
| 680 | EXPORT_SYMBOL(__bug); |
| 681 | |
| 682 | void __readwrite_bug(const char *fn) |
| 683 | { |
| 684 | printk("%s called, but not implemented\n", fn); |
| 685 | BUG(); |
| 686 | } |
| 687 | EXPORT_SYMBOL(__readwrite_bug); |
| 688 | |
| 689 | void __pte_error(const char *file, int line, unsigned long val) |
| 690 | { |
| 691 | printk("%s:%d: bad pte %08lx.\n", file, line, val); |
| 692 | } |
| 693 | |
| 694 | void __pmd_error(const char *file, int line, unsigned long val) |
| 695 | { |
| 696 | printk("%s:%d: bad pmd %08lx.\n", file, line, val); |
| 697 | } |
| 698 | |
| 699 | void __pgd_error(const char *file, int line, unsigned long val) |
| 700 | { |
| 701 | printk("%s:%d: bad pgd %08lx.\n", file, line, val); |
| 702 | } |
| 703 | |
| 704 | asmlinkage void __div0(void) |
| 705 | { |
| 706 | printk("Division by zero in kernel.\n"); |
| 707 | dump_stack(); |
| 708 | } |
| 709 | EXPORT_SYMBOL(__div0); |
| 710 | |
| 711 | void abort(void) |
| 712 | { |
| 713 | BUG(); |
| 714 | |
| 715 | /* if that doesn't kill us, halt */ |
| 716 | panic("Oops failed to kill thread"); |
| 717 | } |
| 718 | EXPORT_SYMBOL(abort); |
| 719 | |
| 720 | void __init trap_init(void) |
| 721 | { |
Jason Wessel | 5cbad0e | 2008-02-20 13:33:40 -0600 | [diff] [blame] | 722 | return; |
| 723 | } |
| 724 | |
| 725 | void __init early_trap_init(void) |
| 726 | { |
Hyok S. Choi | c760fc1 | 2006-03-27 15:18:50 +0100 | [diff] [blame] | 727 | unsigned long vectors = CONFIG_VECTORS_BASE; |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 728 | extern char __stubs_start[], __stubs_end[]; |
| 729 | extern char __vectors_start[], __vectors_end[]; |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 730 | extern char __kuser_helper_start[], __kuser_helper_end[]; |
| 731 | int kuser_sz = __kuser_helper_end - __kuser_helper_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 733 | /* |
Nicolas Pitre | 2d2669b | 2005-04-29 22:08:33 +0100 | [diff] [blame] | 734 | * Copy the vectors, stubs and kuser helpers (in entry-armv.S) |
| 735 | * into the vector page, mapped at 0xffff0000, and ensure these |
| 736 | * are visible to the instruction stream. |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 737 | */ |
Hyok S. Choi | c760fc1 | 2006-03-27 15:18:50 +0100 | [diff] [blame] | 738 | memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start); |
| 739 | memcpy((void *)vectors + 0x200, __stubs_start, __stubs_end - __stubs_start); |
| 740 | memcpy((void *)vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz); |
Russell King | e00d349 | 2005-06-22 20:26:05 +0100 | [diff] [blame] | 741 | |
| 742 | /* |
| 743 | * Copy signal return handlers into the vector page, and |
| 744 | * set sigreturn to be a pointer to these. |
| 745 | */ |
| 746 | memcpy((void *)KERN_SIGRETURN_CODE, sigreturn_codes, |
| 747 | sizeof(sigreturn_codes)); |
| 748 | |
Hyok S. Choi | c760fc1 | 2006-03-27 15:18:50 +0100 | [diff] [blame] | 749 | flush_icache_range(vectors, vectors + PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | modify_domain(DOMAIN_USER, DOMAIN_CLIENT); |
| 751 | } |