2 * linux/arch/m32r/kernel/signal.c
4 * Copyright (c) 2003 Hitoshi Yamamoto
6 * Taken from i386 version.
7 * Copyright (C) 1991, 1992 Linus Torvalds
9 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
10 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
13 #include <linux/sched.h>
15 #include <linux/smp.h>
16 #include <linux/kernel.h>
17 #include <linux/signal.h>
18 #include <linux/errno.h>
19 #include <linux/wait.h>
20 #include <linux/unistd.h>
21 #include <linux/stddef.h>
22 #include <linux/personality.h>
23 #include <linux/freezer.h>
24 #include <asm/cacheflush.h>
25 #include <asm/ucontext.h>
26 #include <asm/uaccess.h>
30 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
32 int do_signal(struct pt_regs *, sigset_t *);
35 sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize,
36 unsigned long r2, unsigned long r3, unsigned long r4,
37 unsigned long r5, unsigned long r6, struct pt_regs *regs)
41 /* XXX: Don't preclude handling different sized sigset_t's. */
42 if (sigsetsize != sizeof(sigset_t))
45 if (copy_from_user(&newset, unewset, sizeof(newset)))
47 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
49 spin_lock_irq(¤t->sighand->siglock);
50 current->saved_sigmask = current->blocked;
51 current->blocked = newset;
53 spin_unlock_irq(¤t->sighand->siglock);
55 current->state = TASK_INTERRUPTIBLE;
57 set_thread_flag(TIF_RESTORE_SIGMASK);
58 return -ERESTARTNOHAND;
62 sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
63 unsigned long r2, unsigned long r3, unsigned long r4,
64 unsigned long r5, unsigned long r6, struct pt_regs *regs)
66 return do_sigaltstack(uss, uoss, regs->spu);
71 * Do a signal return; undo the signal stack.
77 struct siginfo __user *pinfo;
81 // struct _fpstate fpstate;
85 restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
90 /* Always make any pending restarted system calls return -EINTR */
91 current_thread_info()->restart_block.fn = do_no_restart_syscall;
93 #define COPY(x) err |= __get_user(regs->x, &sc->sc_##x)
98 /* COPY(r0); Skip r0 */
110 COPY(acc1h); /* ISA_DSP_LEVEL2 only */
111 COPY(acc1l); /* ISA_DSP_LEVEL2 only */
122 regs->syscall_nr = -1; /* disable syscall checks */
123 err |= __get_user(*r0_p, &sc->sc_r0);
129 sys_rt_sigreturn(unsigned long r0, unsigned long r1,
130 unsigned long r2, unsigned long r3, unsigned long r4,
131 unsigned long r5, unsigned long r6, struct pt_regs *regs)
133 struct rt_sigframe __user *frame = (struct rt_sigframe __user *)regs->spu;
137 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
139 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
142 sigdelsetmask(&set, ~_BLOCKABLE);
143 spin_lock_irq(¤t->sighand->siglock);
144 current->blocked = set;
146 spin_unlock_irq(¤t->sighand->siglock);
148 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &result))
151 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->spu) == -EFAULT)
157 force_sig(SIGSEGV, current);
162 * Set up a signal frame.
166 setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
171 #define COPY(x) err |= __put_user(regs->x, &sc->sc_##x)
188 COPY(acc1h); /* ISA_DSP_LEVEL2 only */
189 COPY(acc1l); /* ISA_DSP_LEVEL2 only */
200 err |= __put_user(mask, &sc->oldmask);
206 * Determine which stack to use..
208 static inline void __user *
209 get_sigframe(struct k_sigaction *ka, unsigned long sp, size_t frame_size)
211 /* This is the X/Open sanctioned signal stack switching. */
212 if (ka->sa.sa_flags & SA_ONSTACK) {
213 if (sas_ss_flags(sp) == 0)
214 sp = current->sas_ss_sp + current->sas_ss_size;
217 return (void __user *)((sp - frame_size) & -8ul);
220 static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
221 sigset_t *set, struct pt_regs *regs)
223 struct rt_sigframe __user *frame;
227 frame = get_sigframe(ka, regs->spu, sizeof(*frame));
229 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
232 signal = current_thread_info()->exec_domain
233 && current_thread_info()->exec_domain->signal_invmap
235 ? current_thread_info()->exec_domain->signal_invmap[sig]
238 err |= __put_user(signal, &frame->sig);
242 err |= __put_user(&frame->info, &frame->pinfo);
243 err |= __put_user(&frame->uc, &frame->puc);
244 err |= copy_siginfo_to_user(&frame->info, info);
248 /* Create the ucontext. */
249 err |= __put_user(0, &frame->uc.uc_flags);
250 err |= __put_user(0, &frame->uc.uc_link);
251 err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
252 err |= __put_user(sas_ss_flags(regs->spu),
253 &frame->uc.uc_stack.ss_flags);
254 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
255 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0]);
256 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
260 /* Set up to return from userspace. */
261 regs->lr = (unsigned long)ka->sa.sa_restorer;
263 /* Set up registers for signal handler */
264 regs->spu = (unsigned long)frame;
265 regs->r0 = signal; /* Arg for signal handler */
266 regs->r1 = (unsigned long)&frame->info;
267 regs->r2 = (unsigned long)&frame->uc;
268 regs->bpc = (unsigned long)ka->sa.sa_handler;
273 printk("SIG deliver (%s:%d): sp=%p pc=%p\n",
274 current->comm, current->pid, frame, regs->pc);
280 force_sigsegv(sig, current);
284 * OK, we're invoking a handler
288 handle_signal(unsigned long sig, struct k_sigaction *ka, siginfo_t *info,
289 sigset_t *oldset, struct pt_regs *regs)
293 /* Are we from a system call? */
294 if (regs->syscall_nr >= 0) {
295 /* If so, check system call restarting.. */
297 case -ERESTART_RESTARTBLOCK:
298 case -ERESTARTNOHAND:
303 if (!(ka->sa.sa_flags & SA_RESTART)) {
308 case -ERESTARTNOINTR:
309 regs->r0 = regs->orig_r0;
310 inst = *(unsigned short *)(regs->bpc - 2);
311 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
318 /* Set up the stack frame */
319 setup_rt_frame(sig, ka, info, oldset, regs);
321 spin_lock_irq(¤t->sighand->siglock);
322 sigorsets(¤t->blocked,¤t->blocked,&ka->sa.sa_mask);
323 if (!(ka->sa.sa_flags & SA_NODEFER))
324 sigaddset(¤t->blocked,sig);
326 spin_unlock_irq(¤t->sighand->siglock);
330 * Note that 'init' is a special process: it doesn't get signals it doesn't
331 * want to handle. Thus you cannot kill init even with a SIGKILL even by
334 int do_signal(struct pt_regs *regs, sigset_t *oldset)
338 struct k_sigaction ka;
342 * We want the common case to go fast, which
343 * is why we may in certain cases get here from
344 * kernel mode. Just return without doing anything
347 if (!user_mode(regs))
354 oldset = ¤t->blocked;
356 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
358 /* Re-enable any watchpoints before delivering the
359 * signal to user space. The processor register will
360 * have been cleared if the watchpoint triggered
364 /* Whee! Actually deliver the signal. */
365 handle_signal(signr, &ka, &info, oldset, regs);
370 /* Did we come from a system call? */
371 if (regs->syscall_nr >= 0) {
372 /* Restart the system call - no handlers present */
373 if (regs->r0 == -ERESTARTNOHAND ||
374 regs->r0 == -ERESTARTSYS ||
375 regs->r0 == -ERESTARTNOINTR) {
376 regs->r0 = regs->orig_r0;
377 inst = *(unsigned short *)(regs->bpc - 2);
378 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
383 if (regs->r0 == -ERESTART_RESTARTBLOCK){
384 regs->r0 = regs->orig_r0;
385 regs->r7 = __NR_restart_syscall;
386 inst = *(unsigned short *)(regs->bpc - 2);
387 if ((inst & 0xfff0) == 0x10f0) /* trap ? */
397 * notification of userspace execution resumption
398 * - triggered by current->work.notify_resume
400 void do_notify_resume(struct pt_regs *regs, sigset_t *oldset,
401 __u32 thread_info_flags)
403 /* Pending single-step? */
404 if (thread_info_flags & _TIF_SINGLESTEP)
405 clear_thread_flag(TIF_SINGLESTEP);
407 /* deal with pending signal delivery */
408 if (thread_info_flags & _TIF_SIGPENDING)
409 do_signal(regs,oldset);
411 clear_thread_flag(TIF_IRET);