1 /* signal.c: FRV specific bits of signal handling
3 * Copyright (C) 2003-5 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 * - Derived from arch/m68k/kernel/signal.c
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 #include <linux/sched.h>
15 #include <linux/smp.h>
16 #include <linux/smp_lock.h>
17 #include <linux/kernel.h>
18 #include <linux/signal.h>
19 #include <linux/errno.h>
20 #include <linux/wait.h>
21 #include <linux/ptrace.h>
22 #include <linux/unistd.h>
23 #include <linux/personality.h>
24 #include <linux/suspend.h>
25 #include <asm/ucontext.h>
26 #include <asm/uaccess.h>
27 #include <asm/cacheflush.h>
31 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
33 struct fdpic_func_descriptor {
38 asmlinkage int do_signal(struct pt_regs *regs, sigset_t *oldset);
41 * Atomically swap in the new signal mask, and wait for a signal.
43 asmlinkage int sys_sigsuspend(int history0, int history1, old_sigset_t mask)
48 spin_lock_irq(¤t->sighand->siglock);
49 saveset = current->blocked;
50 siginitset(¤t->blocked, mask);
52 spin_unlock_irq(¤t->sighand->siglock);
54 __frame->gr8 = -EINTR;
56 current->state = TASK_INTERRUPTIBLE;
58 if (do_signal(__frame, &saveset))
59 /* return the signal number as the return value of this function
60 * - this is an utterly evil hack. syscalls should not invoke do_signal()
61 * as entry.S sets regs->gr8 to the return value of the system call
62 * - we can't just use sigpending() as we'd have to discard SIG_IGN signals
63 * and call waitpid() if SIGCHLD needed discarding
64 * - this only works on the i386 because it passes arguments to the signal
65 * handler on the stack, and the return value in EAX is effectively
72 asmlinkage int sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize)
74 sigset_t saveset, newset;
76 /* XXX: Don't preclude handling different sized sigset_t's. */
77 if (sigsetsize != sizeof(sigset_t))
80 if (copy_from_user(&newset, unewset, sizeof(newset)))
82 sigdelsetmask(&newset, ~_BLOCKABLE);
84 spin_lock_irq(¤t->sighand->siglock);
85 saveset = current->blocked;
86 current->blocked = newset;
88 spin_unlock_irq(¤t->sighand->siglock);
90 __frame->gr8 = -EINTR;
92 current->state = TASK_INTERRUPTIBLE;
94 if (do_signal(__frame, &saveset))
95 /* return the signal number as the return value of this function
96 * - this is an utterly evil hack. syscalls should not invoke do_signal()
97 * as entry.S sets regs->gr8 to the return value of the system call
98 * - we can't just use sigpending() as we'd have to discard SIG_IGN signals
99 * and call waitpid() if SIGCHLD needed discarding
100 * - this only works on the i386 because it passes arguments to the signal
101 * handler on the stack, and the return value in EAX is effectively
108 asmlinkage int sys_sigaction(int sig,
109 const struct old_sigaction __user *act,
110 struct old_sigaction __user *oact)
112 struct k_sigaction new_ka, old_ka;
117 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
118 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
119 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
121 __get_user(new_ka.sa.sa_flags, &act->sa_flags);
122 __get_user(mask, &act->sa_mask);
123 siginitset(&new_ka.sa.sa_mask, mask);
126 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
129 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
130 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
131 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
133 __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
134 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
141 int sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
143 return do_sigaltstack(uss, uoss, __frame->sp);
148 * Do a signal return; undo the signal stack.
153 void (*pretcode)(void);
155 struct sigcontext sc;
156 unsigned long extramask[_NSIG_WORDS-1];
162 void (*pretcode)(void);
164 struct siginfo *pinfo;
171 static int restore_sigcontext(struct sigcontext __user *sc, int *_gr8)
173 struct user_context *user = current->thread.user;
174 unsigned long tbr, psr;
178 if (copy_from_user(user, &sc->sc_context, sizeof(sc->sc_context)))
183 restore_user_regs(user);
185 user->i.syscallno = -1; /* disable syscall checks */
187 *_gr8 = user->i.gr[8];
194 asmlinkage int sys_sigreturn(void)
196 struct sigframe __user *frame = (struct sigframe __user *) __frame->sp;
200 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
202 if (__get_user(set.sig[0], &frame->sc.sc_oldmask))
205 if (_NSIG_WORDS > 1 &&
206 __copy_from_user(&set.sig[1], &frame->extramask, sizeof(frame->extramask)))
209 sigdelsetmask(&set, ~_BLOCKABLE);
210 spin_lock_irq(¤t->sighand->siglock);
211 current->blocked = set;
213 spin_unlock_irq(¤t->sighand->siglock);
215 if (restore_sigcontext(&frame->sc, &gr8))
220 force_sig(SIGSEGV, current);
224 asmlinkage int sys_rt_sigreturn(void)
226 struct rt_sigframe __user *frame = (struct rt_sigframe __user *) __frame->sp;
230 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
232 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
235 sigdelsetmask(&set, ~_BLOCKABLE);
236 spin_lock_irq(¤t->sighand->siglock);
237 current->blocked = set;
239 spin_unlock_irq(¤t->sighand->siglock);
241 if (restore_sigcontext(&frame->uc.uc_mcontext, &gr8))
244 if (do_sigaltstack(&frame->uc.uc_stack, NULL, __frame->sp) == -EFAULT)
250 force_sig(SIGSEGV, current);
255 * Set up a signal frame
257 static int setup_sigcontext(struct sigcontext __user *sc, unsigned long mask)
259 save_user_regs(current->thread.user);
261 if (copy_to_user(&sc->sc_context, current->thread.user, sizeof(sc->sc_context)) != 0)
264 /* non-iBCS2 extensions.. */
265 if (__put_user(mask, &sc->sc_oldmask) < 0)
274 /*****************************************************************************/
276 * Determine which stack to use..
278 static inline void __user *get_sigframe(struct k_sigaction *ka,
279 struct pt_regs *regs,
284 /* Default to using normal stack */
287 /* This is the X/Open sanctioned signal stack switching. */
288 if (ka->sa.sa_flags & SA_ONSTACK) {
289 if (! on_sig_stack(sp))
290 sp = current->sas_ss_sp + current->sas_ss_size;
293 return (void __user *) ((sp - frame_size) & ~7UL);
294 } /* end get_sigframe() */
296 /*****************************************************************************/
300 static void setup_frame(int sig, struct k_sigaction *ka, sigset_t *set, struct pt_regs * regs)
302 struct sigframe __user *frame;
305 frame = get_sigframe(ka, regs, sizeof(*frame));
307 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
312 __current_thread_info->exec_domain &&
313 __current_thread_info->exec_domain->signal_invmap)
314 rsig = __current_thread_info->exec_domain->signal_invmap[sig];
316 if (__put_user(rsig, &frame->sig) < 0)
319 if (setup_sigcontext(&frame->sc, set->sig[0]))
322 if (_NSIG_WORDS > 1) {
323 if (__copy_to_user(frame->extramask, &set->sig[1],
324 sizeof(frame->extramask)))
328 /* Set up to return from userspace. If provided, use a stub
329 * already in userspace. */
330 if (ka->sa.sa_flags & SA_RESTORER) {
331 if (__put_user(ka->sa.sa_restorer, &frame->pretcode) < 0)
335 /* Set up the following code on the stack:
336 * setlos #__NR_sigreturn,gr7
339 if (__put_user((void (*)(void))frame->retcode, &frame->pretcode) ||
340 __put_user(0x8efc0000|__NR_sigreturn, &frame->retcode[0]) ||
341 __put_user(0xc0700000, &frame->retcode[1]))
344 flush_icache_range((unsigned long) frame->retcode,
345 (unsigned long) (frame->retcode + 2));
348 /* set up registers for signal handler */
349 regs->sp = (unsigned long) frame;
350 regs->lr = (unsigned long) &frame->retcode;
353 if (get_personality & FDPIC_FUNCPTRS) {
354 struct fdpic_func_descriptor __user *funcptr =
355 (struct fdpic_func_descriptor *) ka->sa.sa_handler;
356 __get_user(regs->pc, &funcptr->text);
357 __get_user(regs->gr15, &funcptr->GOT);
359 regs->pc = (unsigned long) ka->sa.sa_handler;
366 printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
367 sig, current->comm, current->pid, frame, regs->pc, frame->pretcode);
374 ka->sa.sa_handler = SIG_DFL;
376 force_sig(SIGSEGV, current);
377 } /* end setup_frame() */
379 /*****************************************************************************/
383 static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
384 sigset_t *set, struct pt_regs * regs)
386 struct rt_sigframe __user *frame;
389 frame = get_sigframe(ka, regs, sizeof(*frame));
391 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
396 __current_thread_info->exec_domain &&
397 __current_thread_info->exec_domain->signal_invmap)
398 rsig = __current_thread_info->exec_domain->signal_invmap[sig];
400 if (__put_user(rsig, &frame->sig) ||
401 __put_user(&frame->info, &frame->pinfo) ||
402 __put_user(&frame->uc, &frame->puc))
405 if (copy_siginfo_to_user(&frame->info, info))
408 /* Create the ucontext. */
409 if (__put_user(0, &frame->uc.uc_flags) ||
410 __put_user(0, &frame->uc.uc_link) ||
411 __put_user((void*)current->sas_ss_sp, &frame->uc.uc_stack.ss_sp) ||
412 __put_user(sas_ss_flags(regs->sp), &frame->uc.uc_stack.ss_flags) ||
413 __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size))
416 if (setup_sigcontext(&frame->uc.uc_mcontext, set->sig[0]))
419 if (__copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set)))
422 /* Set up to return from userspace. If provided, use a stub
423 * already in userspace. */
424 if (ka->sa.sa_flags & SA_RESTORER) {
425 if (__put_user(ka->sa.sa_restorer, &frame->pretcode))
429 /* Set up the following code on the stack:
430 * setlos #__NR_sigreturn,gr7
433 if (__put_user((void (*)(void))frame->retcode, &frame->pretcode) ||
434 __put_user(0x8efc0000|__NR_rt_sigreturn, &frame->retcode[0]) ||
435 __put_user(0xc0700000, &frame->retcode[1]))
438 flush_icache_range((unsigned long) frame->retcode,
439 (unsigned long) (frame->retcode + 2));
442 /* Set up registers for signal handler */
443 regs->sp = (unsigned long) frame;
444 regs->lr = (unsigned long) &frame->retcode;
446 regs->gr9 = (unsigned long) &frame->info;
448 if (get_personality & FDPIC_FUNCPTRS) {
449 struct fdpic_func_descriptor *funcptr =
450 (struct fdpic_func_descriptor __user *) ka->sa.sa_handler;
451 __get_user(regs->pc, &funcptr->text);
452 __get_user(regs->gr15, &funcptr->GOT);
454 regs->pc = (unsigned long) ka->sa.sa_handler;
461 printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
462 sig, current->comm, current->pid, frame, regs->pc, frame->pretcode);
469 ka->sa.sa_handler = SIG_DFL;
470 force_sig(SIGSEGV, current);
472 } /* end setup_rt_frame() */
474 /*****************************************************************************/
476 * OK, we're invoking a handler
478 static void handle_signal(unsigned long sig, siginfo_t *info,
479 struct k_sigaction *ka, sigset_t *oldset,
480 struct pt_regs *regs)
482 /* Are we from a system call? */
483 if (in_syscall(regs)) {
484 /* If so, check system call restarting.. */
486 case -ERESTART_RESTARTBLOCK:
487 case -ERESTARTNOHAND:
492 if (!(ka->sa.sa_flags & SA_RESTART)) {
497 case -ERESTARTNOINTR:
498 regs->gr8 = regs->orig_gr8;
503 /* Set up the stack frame */
504 if (ka->sa.sa_flags & SA_SIGINFO)
505 setup_rt_frame(sig, ka, info, oldset, regs);
507 setup_frame(sig, ka, oldset, regs);
509 spin_lock_irq(¤t->sighand->siglock);
510 sigorsets(¤t->blocked, ¤t->blocked, &ka->sa.sa_mask);
511 if (!(ka->sa.sa_flags & SA_NODEFER))
512 sigaddset(¤t->blocked, sig);
514 spin_unlock_irq(¤t->sighand->siglock);
515 } /* end handle_signal() */
517 /*****************************************************************************/
519 * Note that 'init' is a special process: it doesn't get signals it doesn't
520 * want to handle. Thus you cannot kill init even with a SIGKILL even by
523 int do_signal(struct pt_regs *regs, sigset_t *oldset)
525 struct k_sigaction ka;
530 * We want the common case to go fast, which
531 * is why we may in certain cases get here from
532 * kernel mode. Just return without doing anything
535 if (!user_mode(regs))
542 oldset = ¤t->blocked;
544 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
546 handle_signal(signr, &info, &ka, oldset, regs);
551 /* Did we come from a system call? */
552 if (regs->syscallno >= 0) {
553 /* Restart the system call - no handlers present */
554 if (regs->gr8 == -ERESTARTNOHAND ||
555 regs->gr8 == -ERESTARTSYS ||
556 regs->gr8 == -ERESTARTNOINTR) {
557 regs->gr8 = regs->orig_gr8;
561 if (regs->gr8 == -ERESTART_RESTARTBLOCK){
562 regs->gr8 = __NR_restart_syscall;
568 } /* end do_signal() */
570 /*****************************************************************************/
572 * notification of userspace execution resumption
573 * - triggered by current->work.notify_resume
575 asmlinkage void do_notify_resume(__u32 thread_info_flags)
577 /* pending single-step? */
578 if (thread_info_flags & _TIF_SINGLESTEP)
579 clear_thread_flag(TIF_SINGLESTEP);
581 /* deal with pending signal delivery */
582 if (thread_info_flags & _TIF_SIGPENDING)
583 do_signal(__frame, NULL);
585 } /* end do_notify_resume() */