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 */ 15 #include <linux/module.h> 16 #include <linux/signal.h> 17 #include <linux/spinlock.h> 18 #include <linux/personality.h> 19 #include <linux/kallsyms.h> 20 #include <linux/delay.h> 21 #include <linux/hardirq.h> 22 #include <linux/init.h> 23 #include <linux/uaccess.h> 24 25 #include <asm/atomic.h> 26 #include <asm/cacheflush.h> 27 #include <asm/system.h> 28 #include <asm/unistd.h> 29 #include <asm/traps.h> 30 #include <asm/unwind.h> 31 32 #include "ptrace.h" 33 #include "signal.h" 34 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 48 static void dump_mem(const char *str, unsigned long bottom, unsigned long top); 49 50 void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame) 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 60 61 if (in_exception_text(where)) 62 dump_mem("Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs)); 63 } 64 65 #ifndef CONFIG_ARM_UNWIND 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 { 73 if (sp < PAGE_OFFSET || 74 (sp > (unsigned long)high_memory && high_memory != NULL)) 75 return -EFAULT; 76 77 return 0; 78 } 79 #endif 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 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 162 static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk) 163 { 164 unsigned int fp, mode; 165 int ok = 1; 166 167 printk("Backtrace: "); 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 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; 189 } else if (fp < (unsigned long)end_of_stack(tsk)) 190 printk("frame pointer underflow"); 191 printk("\n"); 192 193 if (ok) 194 c_backtrace(fp, mode); 195 } 196 #endif 197 198 void dump_stack(void) 199 { 200 dump_backtrace(NULL, NULL); 201 } 202 203 EXPORT_SYMBOL(dump_stack); 204 205 void show_stack(struct task_struct *tsk, unsigned long *sp) 206 { 207 dump_backtrace(NULL, tsk); 208 barrier(); 209 } 210 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 222 static void __die(const char *str, int err, struct thread_info *thread, struct pt_regs *regs) 223 { 224 struct task_struct *tsk = thread->task; 225 static int die_counter; 226 227 printk("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n", 228 str, err, ++die_counter); 229 print_modules(); 230 __show_regs(regs); 231 printk("Process %s (pid: %d, stack limit = 0x%p)\n", 232 tsk->comm, task_pid_nr(tsk), thread + 1); 233 234 if (!user_mode(regs) || in_interrupt()) { 235 dump_mem("Stack: ", regs->ARM_sp, 236 THREAD_SIZE + (unsigned long)task_stack_page(tsk)); 237 dump_backtrace(regs, tsk); 238 dump_instr(regs); 239 } 240 } 241 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 251 oops_enter(); 252 253 console_verbose(); 254 spin_lock_irq(&die_lock); 255 bust_spinlocks(1); 256 __die(str, err, thread, regs); 257 bust_spinlocks(0); 258 add_taint(TAINT_DIE); 259 spin_unlock_irq(&die_lock); 260 261 if (in_interrupt()) 262 panic("Fatal exception in interrupt"); 263 264 if (panic_on_oops) 265 panic("Fatal exception"); 266 267 oops_exit(); 268 do_exit(SIGSEGV); 269 } 270 271 void arm_notify_die(const char *str, struct pt_regs *regs, 272 struct siginfo *info, unsigned long err, unsigned long trap) 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 { 289 unsigned long flags; 290 291 spin_lock_irqsave(&undef_lock, flags); 292 list_add(&hook->node, &undef_hook); 293 spin_unlock_irqrestore(&undef_lock, flags); 294 } 295 296 void unregister_undef_hook(struct undef_hook *hook) 297 { 298 unsigned long flags; 299 300 spin_lock_irqsave(&undef_lock, flags); 301 list_del(&hook->node); 302 spin_unlock_irqrestore(&undef_lock, flags); 303 } 304 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 321 asmlinkage void __exception do_undefinstr(struct pt_regs *regs) 322 { 323 unsigned int correction = thumb_mode(regs) ? 2 : 4; 324 unsigned int instr; 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); 336 337 if (processor_mode(regs) == SVC_MODE) { 338 instr = *(u32 *) pc; 339 } else if (thumb_mode(regs)) { 340 get_user(instr, (u16 __user *)pc); 341 } else { 342 get_user(instr, (u32 __user *)pc); 343 } 344 345 if (call_undef_hook(regs, instr) == 0) 346 return; 347 348 #ifdef CONFIG_DEBUG_USER 349 if (user_debug & UDBG_UNDEFINED) { 350 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n", 351 current->comm, task_pid_nr(current), pc); 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 361 arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6); 362 } 363 364 asmlinkage void do_unexp_fiq (struct pt_regs *regs) 365 { 366 printk("Hmm. Unexpected FIQ received, but trying to continue\n"); 367 printk("You may have a hardware problem...\n"); 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 */ 376 asmlinkage void bad_mode(struct pt_regs *regs, int reason) 377 { 378 console_verbose(); 379 380 printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]); 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 392 if (current->personality != PER_LINUX && 393 current->personality != PER_LINUX_32BIT && 394 thread->exec_domain->handler) { 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", 402 task_pid_nr(current), current->comm, n); 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 413 arm_notify_die("Oops - bad syscall", regs, &info, n, 0); 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 { 421 struct mm_struct *mm = current->active_mm; 422 struct vm_area_struct *vma; 423 424 if (end < start || flags) 425 return; 426 427 down_read(&mm->mmap_sem); 428 vma = find_vma(mm, start); 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 } 437 up_read(&mm->mmap_sem); 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 450 if ((no >> 16) != (__ARM_NR_BASE>> 16)) 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 460 arm_notify_die("branch through zero", regs, &info, 0, 0); 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; 500 #if defined(CONFIG_HAS_TLS_REG) 501 asm ("mcr p15, 0, %0, c13, c0, 3" : : "r" (regs->ARM_r0) ); 502 #elif !defined(CONFIG_TLS_REG_EMUL) 503 /* 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) 508 */ 509 *((unsigned int *)0xffff0ff0) = regs->ARM_r0; 510 #endif 511 return 0; 512 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: 526 for (;;) { 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; 533 spinlock_t *ptl; 534 535 regs->ARM_cpsr &= ~PSR_C_BIT; 536 down_read(&mm->mmap_sem); 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; 543 pte = pte_offset_map_lock(mm, pmd, addr, &ptl); 544 if (!pte_present(*pte) || !pte_dirty(*pte)) { 545 pte_unmap_unlock(pte, ptl); 546 goto bad_access; 547 } 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 } 554 pte_unmap_unlock(pte, ptl); 555 up_read(&mm->mmap_sem); 556 return val; 557 558 bad_access: 559 up_read(&mm->mmap_sem); 560 /* simulate a write access fault */ 561 do_DataAbort(addr, 15 + (1 << 11), regs); 562 } 563 #endif 564 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", 581 task_pid_nr(current), current->comm, no); 582 dump_instr(regs); 583 if (user_mode(regs)) { 584 __show_regs(regs); 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 595 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0); 596 return 0; 597 } 598 599 #ifdef CONFIG_TLS_REG_EMUL 600 601 /* 602 * We might be running on an ARMv6+ processor which should have the TLS 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. 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 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", 658 task_pid_nr(current), current->comm, code, instr); 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 669 arm_notify_die("unknown data abort code", regs, &info, instr, 0); 670 } 671 672 void __attribute__((noreturn)) __bug(const char *file, int line) 673 { 674 printk(KERN_CRIT"kernel BUG at %s:%d!\n", file, line); 675 *(int *)0 = 0; 676 677 /* Avoid "noreturn function does return" */ 678 for (;;); 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 { 722 return; 723 } 724 725 void __init early_trap_init(void) 726 { 727 unsigned long vectors = CONFIG_VECTORS_BASE; 728 extern char __stubs_start[], __stubs_end[]; 729 extern char __vectors_start[], __vectors_end[]; 730 extern char __kuser_helper_start[], __kuser_helper_end[]; 731 int kuser_sz = __kuser_helper_end - __kuser_helper_start; 732 733 /* 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. 737 */ 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); 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 749 flush_icache_range(vectors, vectors + PAGE_SIZE); 750 modify_domain(DOMAIN_USER, DOMAIN_CLIENT); 751 } 752