Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / arch / cris / arch-v32 / kernel / signal.c
blob150d1d76c29d2e2c038141177145f82cbfc3b03a
1 /*
2 * Copyright (C) 2003, Axis Communications AB.
3 */
5 #include <linux/sched.h>
6 #include <linux/mm.h>
7 #include <linux/slab.h>
8 #include <linux/kernel.h>
9 #include <linux/signal.h>
10 #include <linux/errno.h>
11 #include <linux/wait.h>
12 #include <linux/ptrace.h>
13 #include <linux/unistd.h>
14 #include <linux/stddef.h>
15 #include <linux/syscalls.h>
16 #include <linux/vmalloc.h>
18 #include <asm/io.h>
19 #include <asm/processor.h>
20 #include <asm/ucontext.h>
21 #include <asm/uaccess.h>
22 #include <arch/hwregs/cpu_vect.h>
24 extern unsigned long cris_signal_return_page;
27 * A syscall in CRIS is really a "break 13" instruction, which is 2
28 * bytes. The registers is manipulated so upon return the instruction
29 * will be executed again.
31 * This relies on that PC points to the instruction after the break call.
33 #define RESTART_CRIS_SYS(regs) regs->r10 = regs->orig_r10; regs->erp -= 2;
35 /* Signal frames. */
36 struct signal_frame {
37 struct sigcontext sc;
38 unsigned long extramask[_NSIG_WORDS - 1];
39 unsigned char retcode[8]; /* Trampoline code. */
42 struct rt_signal_frame {
43 struct siginfo *pinfo;
44 void *puc;
45 struct siginfo info;
46 struct ucontext uc;
47 unsigned char retcode[8]; /* Trampoline code. */
50 void do_signal(int restart, struct pt_regs *regs);
51 void keep_debug_flags(unsigned long oldccs, unsigned long oldspc,
52 struct pt_regs *regs);
54 static int
55 restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
57 unsigned int err = 0;
58 unsigned long old_usp;
60 /* Always make any pending restarted system calls return -EINTR */
61 current->restart_block.fn = do_no_restart_syscall;
64 * Restore the registers from &sc->regs. sc is already checked
65 * for VERIFY_READ since the signal_frame was previously
66 * checked in sys_sigreturn().
68 if (__copy_from_user(regs, sc, sizeof(struct pt_regs)))
69 goto badframe;
71 /* Make that the user-mode flag is set. */
72 regs->ccs |= (1 << (U_CCS_BITNR + CCS_SHIFT));
74 /* Don't perform syscall restarting */
75 regs->exs = -1;
77 /* Restore the old USP. */
78 err |= __get_user(old_usp, &sc->usp);
79 wrusp(old_usp);
81 return err;
83 badframe:
84 return 1;
87 asmlinkage int sys_sigreturn(void)
89 struct pt_regs *regs = current_pt_regs();
90 sigset_t set;
91 struct signal_frame __user *frame;
92 unsigned long oldspc = regs->spc;
93 unsigned long oldccs = regs->ccs;
95 frame = (struct signal_frame *) rdusp();
98 * Since the signal is stacked on a dword boundary, the frame
99 * should be dword aligned here as well. It it's not, then the
100 * user is trying some funny business.
102 if (((long)frame) & 3)
103 goto badframe;
105 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
106 goto badframe;
108 if (__get_user(set.sig[0], &frame->sc.oldmask) ||
109 (_NSIG_WORDS > 1 && __copy_from_user(&set.sig[1],
110 frame->extramask,
111 sizeof(frame->extramask))))
112 goto badframe;
114 set_current_blocked(&set);
116 if (restore_sigcontext(regs, &frame->sc))
117 goto badframe;
119 keep_debug_flags(oldccs, oldspc, regs);
121 return regs->r10;
123 badframe:
124 force_sig(SIGSEGV, current);
125 return 0;
128 asmlinkage int sys_rt_sigreturn(void)
130 struct pt_regs *regs = current_pt_regs();
131 sigset_t set;
132 struct rt_signal_frame __user *frame;
133 unsigned long oldspc = regs->spc;
134 unsigned long oldccs = regs->ccs;
136 frame = (struct rt_signal_frame *) rdusp();
139 * Since the signal is stacked on a dword boundary, the frame
140 * should be dword aligned here as well. It it's not, then the
141 * user is trying some funny business.
143 if (((long)frame) & 3)
144 goto badframe;
146 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
147 goto badframe;
149 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
150 goto badframe;
152 set_current_blocked(&set);
154 if (restore_sigcontext(regs, &frame->uc.uc_mcontext))
155 goto badframe;
157 if (restore_altstack(&frame->uc.uc_stack))
158 goto badframe;
160 keep_debug_flags(oldccs, oldspc, regs);
162 return regs->r10;
164 badframe:
165 force_sig(SIGSEGV, current);
166 return 0;
169 /* Setup a signal frame. */
170 static int
171 setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
172 unsigned long mask)
174 int err;
175 unsigned long usp;
177 err = 0;
178 usp = rdusp();
181 * Copy the registers. They are located first in sc, so it's
182 * possible to use sc directly.
184 err |= __copy_to_user(sc, regs, sizeof(struct pt_regs));
186 err |= __put_user(mask, &sc->oldmask);
187 err |= __put_user(usp, &sc->usp);
189 return err;
192 /* Figure out where to put the new signal frame - usually on the stack. */
193 static inline void __user *
194 get_sigframe(struct ksignal *ksig, size_t frame_size)
196 unsigned long sp = sigsp(rdusp(), ksig);
198 /* Make sure the frame is dword-aligned. */
199 sp &= ~3;
201 return (void __user *)(sp - frame_size);
204 /* Grab and setup a signal frame.
206 * Basically a lot of state-info is stacked, and arranged for the
207 * user-mode program to return to the kernel using either a trampiline
208 * which performs the syscall sigreturn(), or a provided user-mode
209 * trampoline.
211 static int
212 setup_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
214 int err;
215 unsigned long return_ip;
216 struct signal_frame __user *frame;
218 err = 0;
219 frame = get_sigframe(ksig, sizeof(*frame));
221 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
222 return -EFAULT;
224 err |= setup_sigcontext(&frame->sc, regs, set->sig[0]);
226 if (err)
227 return -EFAULT;
229 if (_NSIG_WORDS > 1) {
230 err |= __copy_to_user(frame->extramask, &set->sig[1],
231 sizeof(frame->extramask));
234 if (err)
235 return -EFAULT;
238 * Set up to return from user-space. If provided, use a stub
239 * already located in user-space.
241 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
242 return_ip = (unsigned long)ksig->ka.sa.sa_restorer;
243 } else {
244 /* Trampoline - the desired return ip is in the signal return page. */
245 return_ip = cris_signal_return_page;
248 * This is movu.w __NR_sigreturn, r9; break 13;
250 * WE DO NOT USE IT ANY MORE! It's only left here for historical
251 * reasons and because gdb uses it as a signature to notice
252 * signal handler stack frames.
254 err |= __put_user(0x9c5f, (short __user*)(frame->retcode+0));
255 err |= __put_user(__NR_sigreturn, (short __user*)(frame->retcode+2));
256 err |= __put_user(0xe93d, (short __user*)(frame->retcode+4));
259 if (err)
260 return -EFAULT;
263 * Set up registers for signal handler.
265 * Where the code enters now.
266 * Where the code enter later.
267 * First argument, signo.
269 regs->erp = (unsigned long) ksig->ka.sa.sa_handler;
270 regs->srp = return_ip;
271 regs->r10 = ksig->sig;
273 /* Actually move the USP to reflect the stacked frame. */
274 wrusp((unsigned long)frame);
276 return 0;
279 static int
280 setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
282 int err;
283 unsigned long return_ip;
284 struct rt_signal_frame __user *frame;
286 err = 0;
287 frame = get_sigframe(ksig, sizeof(*frame));
289 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
290 return -EFAULT;
292 err |= __put_user(&frame->info, &frame->pinfo);
293 err |= __put_user(&frame->uc, &frame->puc);
294 err |= copy_siginfo_to_user(&frame->info, &ksig->info);
296 if (err)
297 return -EFAULT;
299 /* Clear all the bits of the ucontext we don't use. */
300 err |= __clear_user(&frame->uc, offsetof(struct ucontext, uc_mcontext));
301 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0]);
302 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
303 err |= __save_altstack(&frame->uc.uc_stack, rdusp());
305 if (err)
306 return -EFAULT;
309 * Set up to return from user-space. If provided, use a stub
310 * already located in user-space.
312 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
313 return_ip = (unsigned long) ksig->ka.sa.sa_restorer;
314 } else {
315 /* Trampoline - the desired return ip is in the signal return page. */
316 return_ip = cris_signal_return_page + 6;
319 * This is movu.w __NR_rt_sigreturn, r9; break 13;
321 * WE DO NOT USE IT ANY MORE! It's only left here for historical
322 * reasons and because gdb uses it as a signature to notice
323 * signal handler stack frames.
325 err |= __put_user(0x9c5f, (short __user*)(frame->retcode+0));
327 err |= __put_user(__NR_rt_sigreturn,
328 (short __user*)(frame->retcode+2));
330 err |= __put_user(0xe93d, (short __user*)(frame->retcode+4));
333 if (err)
334 return -EFAULT;
337 * Set up registers for signal handler.
339 * Where the code enters now.
340 * Where the code enters later.
341 * First argument is signo.
342 * Second argument is (siginfo_t *).
343 * Third argument is unused.
345 regs->erp = (unsigned long) ksig->ka.sa.sa_handler;
346 regs->srp = return_ip;
347 regs->r10 = ksig->sig;
348 regs->r11 = (unsigned long) &frame->info;
349 regs->r12 = 0;
351 /* Actually move the usp to reflect the stacked frame. */
352 wrusp((unsigned long)frame);
354 return 0;
357 /* Invoke a signal handler to, well, handle the signal. */
358 static inline void
359 handle_signal(int canrestart, struct ksignal *ksig, struct pt_regs *regs)
361 sigset_t *oldset = sigmask_to_save();
362 int ret;
364 /* Check if this got called from a system call. */
365 if (canrestart) {
366 /* If so, check system call restarting. */
367 switch (regs->r10) {
368 case -ERESTART_RESTARTBLOCK:
369 case -ERESTARTNOHAND:
371 * This means that the syscall should
372 * only be restarted if there was no
373 * handler for the signal, and since
374 * this point isn't reached unless
375 * there is a handler, there's no need
376 * to restart.
378 regs->r10 = -EINTR;
379 break;
381 case -ERESTARTSYS:
383 * This means restart the syscall if
384 * there is no handler, or the handler
385 * was registered with SA_RESTART.
387 if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
388 regs->r10 = -EINTR;
389 break;
392 /* Fall through. */
394 case -ERESTARTNOINTR:
396 * This means that the syscall should
397 * be called again after the signal
398 * handler returns.
400 RESTART_CRIS_SYS(regs);
401 break;
405 /* Set up the stack frame. */
406 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
407 ret = setup_rt_frame(ksig, oldset, regs);
408 else
409 ret = setup_frame(ksig, oldset, regs);
411 signal_setup_done(ret, ksig, 0);
415 * Note that 'init' is a special process: it doesn't get signals it doesn't
416 * want to handle. Thus you cannot kill init even with a SIGKILL even by
417 * mistake.
419 * Also note that the regs structure given here as an argument, is the latest
420 * pushed pt_regs. It may or may not be the same as the first pushed registers
421 * when the initial usermode->kernelmode transition took place. Therefore
422 * we can use user_mode(regs) to see if we came directly from kernel or user
423 * mode below.
425 void
426 do_signal(int canrestart, struct pt_regs *regs)
428 struct ksignal ksig;
430 canrestart = canrestart && ((int)regs->exs >= 0);
433 * The common case should go fast, which is why this point is
434 * reached from kernel-mode. If that's the case, just return
435 * without doing anything.
437 if (!user_mode(regs))
438 return;
440 if (get_signal(&ksig)) {
441 /* Whee! Actually deliver the signal. */
442 handle_signal(canrestart, &ksig, regs);
443 return;
446 /* Got here from a system call? */
447 if (canrestart) {
448 /* Restart the system call - no handlers present. */
449 if (regs->r10 == -ERESTARTNOHAND ||
450 regs->r10 == -ERESTARTSYS ||
451 regs->r10 == -ERESTARTNOINTR) {
452 RESTART_CRIS_SYS(regs);
455 if (regs->r10 == -ERESTART_RESTARTBLOCK){
456 regs->r9 = __NR_restart_syscall;
457 regs->erp -= 2;
461 /* if there's no signal to deliver, we just put the saved sigmask
462 * back */
463 restore_saved_sigmask();
466 asmlinkage void
467 ugdb_trap_user(struct thread_info *ti, int sig)
469 if (((user_regs(ti)->exs & 0xff00) >> 8) != SINGLE_STEP_INTR_VECT) {
470 /* Zero single-step PC if the reason we stopped wasn't a single
471 step exception. This is to avoid relying on it when it isn't
472 reliable. */
473 user_regs(ti)->spc = 0;
475 /* FIXME: Filter out false h/w breakpoint hits (i.e. EDA
476 not within any configured h/w breakpoint range). Synchronize with
477 what already exists for kernel debugging. */
478 if (((user_regs(ti)->exs & 0xff00) >> 8) == BREAK_8_INTR_VECT) {
479 /* Break 8: subtract 2 from ERP unless in a delay slot. */
480 if (!(user_regs(ti)->erp & 0x1))
481 user_regs(ti)->erp -= 2;
483 sys_kill(ti->task->pid, sig);
486 void
487 keep_debug_flags(unsigned long oldccs, unsigned long oldspc,
488 struct pt_regs *regs)
490 if (oldccs & (1 << Q_CCS_BITNR)) {
491 /* Pending single step due to single-stepping the break 13
492 in the signal trampoline: keep the Q flag. */
493 regs->ccs |= (1 << Q_CCS_BITNR);
494 /* S flag should be set - complain if it's not. */
495 if (!(oldccs & (1 << (S_CCS_BITNR + CCS_SHIFT)))) {
496 printk("Q flag but no S flag?");
498 regs->ccs |= (1 << (S_CCS_BITNR + CCS_SHIFT));
499 /* Assume the SPC is valid and interesting. */
500 regs->spc = oldspc;
502 } else if (oldccs & (1 << (S_CCS_BITNR + CCS_SHIFT))) {
503 /* If a h/w bp was set in the signal handler we need
504 to keep the S flag. */
505 regs->ccs |= (1 << (S_CCS_BITNR + CCS_SHIFT));
506 /* Don't keep the old SPC though; if we got here due to
507 a single-step, the Q flag should have been set. */
508 } else if (regs->spc) {
509 /* If we were single-stepping *before* the signal was taken,
510 we don't want to restore that state now, because GDB will
511 have forgotten all about it. */
512 regs->spc = 0;
513 regs->ccs &= ~(1 << (S_CCS_BITNR + CCS_SHIFT));
517 /* Set up the trampolines on the signal return page. */
518 int __init
519 cris_init_signal(void)
521 u16* data = kmalloc(PAGE_SIZE, GFP_KERNEL);
523 /* This is movu.w __NR_sigreturn, r9; break 13; */
524 data[0] = 0x9c5f;
525 data[1] = __NR_sigreturn;
526 data[2] = 0xe93d;
527 /* This is movu.w __NR_rt_sigreturn, r9; break 13; */
528 data[3] = 0x9c5f;
529 data[4] = __NR_rt_sigreturn;
530 data[5] = 0xe93d;
532 /* Map to userspace with appropriate permissions (no write access...) */
533 cris_signal_return_page = (unsigned long)
534 __ioremap_prot(virt_to_phys(data), PAGE_SIZE, PAGE_SIGNAL_TRAMPOLINE);
536 return 0;
539 __initcall(cris_init_signal);