2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
6 #include "linux/stddef.h"
8 #include "linux/sched.h"
9 #include "linux/wait.h"
10 #include "linux/kernel.h"
11 #include "linux/smp_lock.h"
12 #include "linux/module.h"
13 #include "linux/slab.h"
14 #include "linux/tty.h"
15 #include "linux/binfmts.h"
16 #include "linux/ptrace.h"
17 #include "asm/signal.h"
18 #include "asm/uaccess.h"
19 #include "asm/unistd.h"
20 #include "asm/ucontext.h"
21 #include "kern_util.h"
22 #include "signal_kern.h"
24 #include "frame_kern.h"
25 #include "sigcontext.h"
28 EXPORT_SYMBOL(block_signals
);
29 EXPORT_SYMBOL(unblock_signals
);
31 #define _S(nr) (1<<((nr)-1))
33 #define _BLOCKABLE (~(_S(SIGKILL) | _S(SIGSTOP)))
36 * OK, we're invoking a handler
38 static int handle_signal(struct pt_regs
*regs
, unsigned long signr
,
39 struct k_sigaction
*ka
, siginfo_t
*info
,
45 /* Always make any pending restarted system calls return -EINTR */
46 current_thread_info()->restart_block
.fn
= do_no_restart_syscall
;
48 /* Did we come from a system call? */
49 if(PT_REGS_SYSCALL_NR(regs
) >= 0){
50 /* If so, check system call restarting.. */
51 switch(PT_REGS_SYSCALL_RET(regs
)){
52 case -ERESTART_RESTARTBLOCK
:
54 PT_REGS_SYSCALL_RET(regs
) = -EINTR
;
58 if (!(ka
->sa
.sa_flags
& SA_RESTART
)) {
59 PT_REGS_SYSCALL_RET(regs
) = -EINTR
;
64 PT_REGS_RESTART_SYSCALL(regs
);
65 PT_REGS_ORIG_SYSCALL(regs
) = PT_REGS_SYSCALL_NR(regs
);
70 sp
= PT_REGS_SP(regs
);
71 if((ka
->sa
.sa_flags
& SA_ONSTACK
) && (sas_ss_flags(sp
) == 0))
72 sp
= current
->sas_ss_sp
+ current
->sas_ss_size
;
74 #ifdef CONFIG_ARCH_HAS_SC_SIGNALS
75 if(!(ka
->sa
.sa_flags
& SA_SIGINFO
))
76 err
= setup_signal_stack_sc(sp
, signr
, ka
, regs
, oldset
);
79 err
= setup_signal_stack_si(sp
, signr
, ka
, regs
, info
, oldset
);
82 spin_lock_irq(¤t
->sighand
->siglock
);
83 current
->blocked
= *oldset
;
85 spin_unlock_irq(¤t
->sighand
->siglock
);
86 force_sigsegv(signr
, current
);
88 spin_lock_irq(¤t
->sighand
->siglock
);
89 sigorsets(¤t
->blocked
, ¤t
->blocked
,
91 if(!(ka
->sa
.sa_flags
& SA_NODEFER
))
92 sigaddset(¤t
->blocked
, signr
);
94 spin_unlock_irq(¤t
->sighand
->siglock
);
100 static int kern_do_signal(struct pt_regs
*regs
)
102 struct k_sigaction ka_copy
;
105 int sig
, handled_sig
= 0;
107 if (test_thread_flag(TIF_RESTORE_SIGMASK
))
108 oldset
= ¤t
->saved_sigmask
;
110 oldset
= ¤t
->blocked
;
112 while((sig
= get_signal_to_deliver(&info
, &ka_copy
, regs
, NULL
)) > 0){
114 /* Whee! Actually deliver the signal. */
115 if(!handle_signal(regs
, sig
, &ka_copy
, &info
, oldset
)){
116 /* a signal was successfully delivered; the saved
117 * sigmask will have been stored in the signal frame,
118 * and will be restored by sigreturn, so we can simply
119 * clear the TIF_RESTORE_SIGMASK flag */
120 if (test_thread_flag(TIF_RESTORE_SIGMASK
))
121 clear_thread_flag(TIF_RESTORE_SIGMASK
);
126 /* Did we come from a system call? */
127 if(!handled_sig
&& (PT_REGS_SYSCALL_NR(regs
) >= 0)){
128 /* Restart the system call - no handlers present */
129 switch(PT_REGS_SYSCALL_RET(regs
)){
130 case -ERESTARTNOHAND
:
132 case -ERESTARTNOINTR
:
133 PT_REGS_ORIG_SYSCALL(regs
) = PT_REGS_SYSCALL_NR(regs
);
134 PT_REGS_RESTART_SYSCALL(regs
);
136 case -ERESTART_RESTARTBLOCK
:
137 PT_REGS_ORIG_SYSCALL(regs
) = __NR_restart_syscall
;
138 PT_REGS_RESTART_SYSCALL(regs
);
143 /* This closes a way to execute a system call on the host. If
144 * you set a breakpoint on a system call instruction and singlestep
145 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
146 * rather than PTRACE_SYSCALL it, allowing the system call to execute
147 * on the host. The tracing thread will check this flag and
148 * PTRACE_SYSCALL if necessary.
150 if(current
->ptrace
& PT_DTRACE
)
151 current
->thread
.singlestep_syscall
=
152 is_syscall(PT_REGS_IP(¤t
->thread
.regs
));
154 /* if there's no signal to deliver, we just put the saved sigmask
156 if (!handled_sig
&& test_thread_flag(TIF_RESTORE_SIGMASK
)) {
157 clear_thread_flag(TIF_RESTORE_SIGMASK
);
158 sigprocmask(SIG_SETMASK
, ¤t
->saved_sigmask
, NULL
);
165 return kern_do_signal(¤t
->thread
.regs
);
169 * Atomically swap in the new signal mask, and wait for a signal.
171 long sys_sigsuspend(int history0
, int history1
, old_sigset_t mask
)
174 spin_lock_irq(¤t
->sighand
->siglock
);
175 current
->saved_sigmask
= current
->blocked
;
176 siginitset(¤t
->blocked
, mask
);
178 spin_unlock_irq(¤t
->sighand
->siglock
);
180 current
->state
= TASK_INTERRUPTIBLE
;
182 set_thread_flag(TIF_RESTORE_SIGMASK
);
183 return -ERESTARTNOHAND
;
186 long sys_sigaltstack(const stack_t __user
*uss
, stack_t __user
*uoss
)
188 return do_sigaltstack(uss
, uoss
, PT_REGS_SP(¤t
->thread
.regs
));