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/kernel.h>
17 #include <linux/signal.h>
18 #include <linux/errno.h>
19 #include <linux/wait.h>
20 #include <linux/ptrace.h>
21 #include <linux/unistd.h>
22 #include <linux/personality.h>
23 #include <linux/freezer.h>
24 #include <linux/tracehook.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
{
39 * Atomically swap in the new signal mask, and wait for a signal.
41 asmlinkage
int sys_sigsuspend(int history0
, int history1
, old_sigset_t mask
)
44 spin_lock_irq(¤t
->sighand
->siglock
);
45 current
->saved_sigmask
= current
->blocked
;
46 siginitset(¤t
->blocked
, mask
);
48 spin_unlock_irq(¤t
->sighand
->siglock
);
50 current
->state
= TASK_INTERRUPTIBLE
;
52 set_thread_flag(TIF_RESTORE_SIGMASK
);
53 return -ERESTARTNOHAND
;
56 asmlinkage
int sys_sigaction(int sig
,
57 const struct old_sigaction __user
*act
,
58 struct old_sigaction __user
*oact
)
60 struct k_sigaction new_ka
, old_ka
;
65 if (!access_ok(VERIFY_READ
, act
, sizeof(*act
)) ||
66 __get_user(new_ka
.sa
.sa_handler
, &act
->sa_handler
) ||
67 __get_user(new_ka
.sa
.sa_restorer
, &act
->sa_restorer
))
69 __get_user(new_ka
.sa
.sa_flags
, &act
->sa_flags
);
70 __get_user(mask
, &act
->sa_mask
);
71 siginitset(&new_ka
.sa
.sa_mask
, mask
);
74 ret
= do_sigaction(sig
, act
? &new_ka
: NULL
, oact
? &old_ka
: NULL
);
77 if (!access_ok(VERIFY_WRITE
, oact
, sizeof(*oact
)) ||
78 __put_user(old_ka
.sa
.sa_handler
, &oact
->sa_handler
) ||
79 __put_user(old_ka
.sa
.sa_restorer
, &oact
->sa_restorer
))
81 __put_user(old_ka
.sa
.sa_flags
, &oact
->sa_flags
);
82 __put_user(old_ka
.sa
.sa_mask
.sig
[0], &oact
->sa_mask
);
89 int sys_sigaltstack(const stack_t __user
*uss
, stack_t __user
*uoss
)
91 return do_sigaltstack(uss
, uoss
, __frame
->sp
);
96 * Do a signal return; undo the signal stack.
101 __sigrestore_t pretcode
;
103 struct sigcontext sc
;
104 unsigned long extramask
[_NSIG_WORDS
-1];
110 __sigrestore_t pretcode
;
112 struct siginfo __user
*pinfo
;
119 static int restore_sigcontext(struct sigcontext __user
*sc
, int *_gr8
)
121 struct user_context
*user
= current
->thread
.user
;
122 unsigned long tbr
, psr
;
124 /* Always make any pending restarted system calls return -EINTR */
125 current_thread_info()->restart_block
.fn
= do_no_restart_syscall
;
129 if (copy_from_user(user
, &sc
->sc_context
, sizeof(sc
->sc_context
)))
134 restore_user_regs(user
);
136 user
->i
.syscallno
= -1; /* disable syscall checks */
138 *_gr8
= user
->i
.gr
[8];
145 asmlinkage
int sys_sigreturn(void)
147 struct sigframe __user
*frame
= (struct sigframe __user
*) __frame
->sp
;
151 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
153 if (__get_user(set
.sig
[0], &frame
->sc
.sc_oldmask
))
156 if (_NSIG_WORDS
> 1 &&
157 __copy_from_user(&set
.sig
[1], &frame
->extramask
, sizeof(frame
->extramask
)))
160 sigdelsetmask(&set
, ~_BLOCKABLE
);
161 spin_lock_irq(¤t
->sighand
->siglock
);
162 current
->blocked
= set
;
164 spin_unlock_irq(¤t
->sighand
->siglock
);
166 if (restore_sigcontext(&frame
->sc
, &gr8
))
171 force_sig(SIGSEGV
, current
);
175 asmlinkage
int sys_rt_sigreturn(void)
177 struct rt_sigframe __user
*frame
= (struct rt_sigframe __user
*) __frame
->sp
;
181 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
183 if (__copy_from_user(&set
, &frame
->uc
.uc_sigmask
, sizeof(set
)))
186 sigdelsetmask(&set
, ~_BLOCKABLE
);
187 spin_lock_irq(¤t
->sighand
->siglock
);
188 current
->blocked
= set
;
190 spin_unlock_irq(¤t
->sighand
->siglock
);
192 if (restore_sigcontext(&frame
->uc
.uc_mcontext
, &gr8
))
195 if (do_sigaltstack(&frame
->uc
.uc_stack
, NULL
, __frame
->sp
) == -EFAULT
)
201 force_sig(SIGSEGV
, current
);
206 * Set up a signal frame
208 static int setup_sigcontext(struct sigcontext __user
*sc
, unsigned long mask
)
210 save_user_regs(current
->thread
.user
);
212 if (copy_to_user(&sc
->sc_context
, current
->thread
.user
, sizeof(sc
->sc_context
)) != 0)
215 /* non-iBCS2 extensions.. */
216 if (__put_user(mask
, &sc
->sc_oldmask
) < 0)
225 /*****************************************************************************/
227 * Determine which stack to use..
229 static inline void __user
*get_sigframe(struct k_sigaction
*ka
,
234 /* Default to using normal stack */
237 /* This is the X/Open sanctioned signal stack switching. */
238 if (ka
->sa
.sa_flags
& SA_ONSTACK
) {
239 if (! sas_ss_flags(sp
))
240 sp
= current
->sas_ss_sp
+ current
->sas_ss_size
;
243 return (void __user
*) ((sp
- frame_size
) & ~7UL);
245 } /* end get_sigframe() */
247 /*****************************************************************************/
251 static int setup_frame(int sig
, struct k_sigaction
*ka
, sigset_t
*set
)
253 struct sigframe __user
*frame
;
258 frame
= get_sigframe(ka
, sizeof(*frame
));
260 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
)))
265 __current_thread_info
->exec_domain
&&
266 __current_thread_info
->exec_domain
->signal_invmap
)
267 rsig
= __current_thread_info
->exec_domain
->signal_invmap
[sig
];
269 if (__put_user(rsig
, &frame
->sig
) < 0)
272 if (setup_sigcontext(&frame
->sc
, set
->sig
[0]))
275 if (_NSIG_WORDS
> 1) {
276 if (__copy_to_user(frame
->extramask
, &set
->sig
[1],
277 sizeof(frame
->extramask
)))
281 /* Set up to return from userspace. If provided, use a stub
282 * already in userspace. */
283 if (ka
->sa
.sa_flags
& SA_RESTORER
) {
284 if (__put_user(ka
->sa
.sa_restorer
, &frame
->pretcode
) < 0)
288 /* Set up the following code on the stack:
289 * setlos #__NR_sigreturn,gr7
292 if (__put_user((__sigrestore_t
)frame
->retcode
, &frame
->pretcode
) ||
293 __put_user(0x8efc0000|__NR_sigreturn
, &frame
->retcode
[0]) ||
294 __put_user(0xc0700000, &frame
->retcode
[1]))
297 flush_icache_range((unsigned long) frame
->retcode
,
298 (unsigned long) (frame
->retcode
+ 2));
301 /* Set up registers for the signal handler */
302 if (current
->personality
& FDPIC_FUNCPTRS
) {
303 struct fdpic_func_descriptor __user
*funcptr
=
304 (struct fdpic_func_descriptor __user
*) ka
->sa
.sa_handler
;
305 struct fdpic_func_descriptor desc
;
306 if (copy_from_user(&desc
, funcptr
, sizeof(desc
)))
308 __frame
->pc
= desc
.text
;
309 __frame
->gr15
= desc
.GOT
;
311 __frame
->pc
= (unsigned long) ka
->sa
.sa_handler
;
315 __frame
->sp
= (unsigned long) frame
;
316 __frame
->lr
= (unsigned long) &frame
->retcode
;
319 /* the tracer may want to single-step inside the handler */
320 if (test_thread_flag(TIF_SINGLESTEP
))
321 ptrace_notify(SIGTRAP
);
324 printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
325 sig
, current
->comm
, current
->pid
, frame
, __frame
->pc
,
332 force_sigsegv(sig
, current
);
335 } /* end setup_frame() */
337 /*****************************************************************************/
341 static int setup_rt_frame(int sig
, struct k_sigaction
*ka
, siginfo_t
*info
,
344 struct rt_sigframe __user
*frame
;
349 frame
= get_sigframe(ka
, sizeof(*frame
));
351 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
)))
356 __current_thread_info
->exec_domain
&&
357 __current_thread_info
->exec_domain
->signal_invmap
)
358 rsig
= __current_thread_info
->exec_domain
->signal_invmap
[sig
];
360 if (__put_user(rsig
, &frame
->sig
) ||
361 __put_user(&frame
->info
, &frame
->pinfo
) ||
362 __put_user(&frame
->uc
, &frame
->puc
))
365 if (copy_siginfo_to_user(&frame
->info
, info
))
368 /* Create the ucontext. */
369 if (__put_user(0, &frame
->uc
.uc_flags
) ||
370 __put_user(NULL
, &frame
->uc
.uc_link
) ||
371 __put_user((void __user
*)current
->sas_ss_sp
, &frame
->uc
.uc_stack
.ss_sp
) ||
372 __put_user(sas_ss_flags(__frame
->sp
), &frame
->uc
.uc_stack
.ss_flags
) ||
373 __put_user(current
->sas_ss_size
, &frame
->uc
.uc_stack
.ss_size
))
376 if (setup_sigcontext(&frame
->uc
.uc_mcontext
, set
->sig
[0]))
379 if (__copy_to_user(&frame
->uc
.uc_sigmask
, set
, sizeof(*set
)))
382 /* Set up to return from userspace. If provided, use a stub
383 * already in userspace. */
384 if (ka
->sa
.sa_flags
& SA_RESTORER
) {
385 if (__put_user(ka
->sa
.sa_restorer
, &frame
->pretcode
))
389 /* Set up the following code on the stack:
390 * setlos #__NR_sigreturn,gr7
393 if (__put_user((__sigrestore_t
)frame
->retcode
, &frame
->pretcode
) ||
394 __put_user(0x8efc0000|__NR_rt_sigreturn
, &frame
->retcode
[0]) ||
395 __put_user(0xc0700000, &frame
->retcode
[1]))
398 flush_icache_range((unsigned long) frame
->retcode
,
399 (unsigned long) (frame
->retcode
+ 2));
402 /* Set up registers for signal handler */
403 if (current
->personality
& FDPIC_FUNCPTRS
) {
404 struct fdpic_func_descriptor __user
*funcptr
=
405 (struct fdpic_func_descriptor __user
*) ka
->sa
.sa_handler
;
406 struct fdpic_func_descriptor desc
;
407 if (copy_from_user(&desc
, funcptr
, sizeof(desc
)))
409 __frame
->pc
= desc
.text
;
410 __frame
->gr15
= desc
.GOT
;
412 __frame
->pc
= (unsigned long) ka
->sa
.sa_handler
;
416 __frame
->sp
= (unsigned long) frame
;
417 __frame
->lr
= (unsigned long) &frame
->retcode
;
419 __frame
->gr9
= (unsigned long) &frame
->info
;
421 /* the tracer may want to single-step inside the handler */
422 if (test_thread_flag(TIF_SINGLESTEP
))
423 ptrace_notify(SIGTRAP
);
426 printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
427 sig
, current
->comm
, current
->pid
, frame
, __frame
->pc
,
434 force_sigsegv(sig
, current
);
437 } /* end setup_rt_frame() */
439 /*****************************************************************************/
441 * OK, we're invoking a handler
443 static int handle_signal(unsigned long sig
, siginfo_t
*info
,
444 struct k_sigaction
*ka
, sigset_t
*oldset
)
448 /* Are we from a system call? */
449 if (__frame
->syscallno
!= -1) {
450 /* If so, check system call restarting.. */
451 switch (__frame
->gr8
) {
452 case -ERESTART_RESTARTBLOCK
:
453 case -ERESTARTNOHAND
:
454 __frame
->gr8
= -EINTR
;
458 if (!(ka
->sa
.sa_flags
& SA_RESTART
)) {
459 __frame
->gr8
= -EINTR
;
464 case -ERESTARTNOINTR
:
465 __frame
->gr8
= __frame
->orig_gr8
;
468 __frame
->syscallno
= -1;
471 /* Set up the stack frame */
472 if (ka
->sa
.sa_flags
& SA_SIGINFO
)
473 ret
= setup_rt_frame(sig
, ka
, info
, oldset
);
475 ret
= setup_frame(sig
, ka
, oldset
);
478 spin_lock_irq(¤t
->sighand
->siglock
);
479 sigorsets(¤t
->blocked
, ¤t
->blocked
,
481 if (!(ka
->sa
.sa_flags
& SA_NODEFER
))
482 sigaddset(¤t
->blocked
, sig
);
484 spin_unlock_irq(¤t
->sighand
->siglock
);
489 } /* end handle_signal() */
491 /*****************************************************************************/
493 * Note that 'init' is a special process: it doesn't get signals it doesn't
494 * want to handle. Thus you cannot kill init even with a SIGKILL even by
497 static void do_signal(void)
499 struct k_sigaction ka
;
505 * We want the common case to go fast, which
506 * is why we may in certain cases get here from
507 * kernel mode. Just return without doing anything
510 if (!user_mode(__frame
))
516 if (test_thread_flag(TIF_RESTORE_SIGMASK
))
517 oldset
= ¤t
->saved_sigmask
;
519 oldset
= ¤t
->blocked
;
521 signr
= get_signal_to_deliver(&info
, &ka
, __frame
, NULL
);
523 if (handle_signal(signr
, &info
, &ka
, oldset
) == 0) {
524 /* a signal was successfully delivered; the saved
525 * sigmask will have been stored in the signal frame,
526 * and will be restored by sigreturn, so we can simply
527 * clear the TIF_RESTORE_SIGMASK flag */
528 if (test_thread_flag(TIF_RESTORE_SIGMASK
))
529 clear_thread_flag(TIF_RESTORE_SIGMASK
);
531 tracehook_signal_handler(signr
, &info
, &ka
, __frame
,
532 test_thread_flag(TIF_SINGLESTEP
));
539 /* Did we come from a system call? */
540 if (__frame
->syscallno
!= -1) {
541 /* Restart the system call - no handlers present */
542 switch (__frame
->gr8
) {
543 case -ERESTARTNOHAND
:
545 case -ERESTARTNOINTR
:
546 __frame
->gr8
= __frame
->orig_gr8
;
550 case -ERESTART_RESTARTBLOCK
:
551 __frame
->gr7
= __NR_restart_syscall
;
555 __frame
->syscallno
= -1;
558 /* if there's no signal to deliver, we just put the saved sigmask
560 if (test_thread_flag(TIF_RESTORE_SIGMASK
)) {
561 clear_thread_flag(TIF_RESTORE_SIGMASK
);
562 sigprocmask(SIG_SETMASK
, ¤t
->saved_sigmask
, NULL
);
565 } /* end do_signal() */
567 /*****************************************************************************/
569 * notification of userspace execution resumption
570 * - triggered by the TIF_WORK_MASK flags
572 asmlinkage
void do_notify_resume(__u32 thread_info_flags
)
574 /* pending single-step? */
575 if (thread_info_flags
& _TIF_SINGLESTEP
)
576 clear_thread_flag(TIF_SINGLESTEP
);
578 /* deal with pending signal delivery */
579 if (thread_info_flags
& (_TIF_SIGPENDING
| _TIF_RESTORE_SIGMASK
))
582 /* deal with notification on about to resume userspace execution */
583 if (thread_info_flags
& _TIF_NOTIFY_RESUME
) {
584 clear_thread_flag(TIF_NOTIFY_RESUME
);
585 tracehook_notify_resume(__frame
);
586 if (current
->replacement_session_keyring
)
587 key_replace_session_keyring();
590 } /* end do_notify_resume() */