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