blob: e8b889d3bce760aaf7cc1b8a5bd0297bab66a74d [file] [log] [blame]
Jeff Dike1d3468a2006-07-10 04:45:13 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Jeff Dikec5d4bb12008-02-04 22:31:14 -08006#include <linux/module.h>
7#include <linux/ptrace.h>
8#include <linux/sched.h>
9#include <asm/siginfo.h>
10#include <asm/signal.h>
11#include <asm/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "frame_kern.h"
Jeff Dikeba180fd2007-10-16 01:27:00 -070013#include "kern_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15EXPORT_SYMBOL(block_signals);
16EXPORT_SYMBOL(unblock_signals);
17
18#define _S(nr) (1<<((nr)-1))
19
20#define _BLOCKABLE (~(_S(SIGKILL) | _S(SIGSTOP)))
21
22/*
23 * OK, we're invoking a handler
Jeff Dike1d3468a2006-07-10 04:45:13 -070024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int handle_signal(struct pt_regs *regs, unsigned long signr,
26 struct k_sigaction *ka, siginfo_t *info,
27 sigset_t *oldset)
28{
29 unsigned long sp;
30 int err;
31
32 /* Always make any pending restarted system calls return -EINTR */
33 current_thread_info()->restart_block.fn = do_no_restart_syscall;
34
35 /* Did we come from a system call? */
Jeff Dikeba180fd2007-10-16 01:27:00 -070036 if (PT_REGS_SYSCALL_NR(regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 /* If so, check system call restarting.. */
Jeff Dikec5d4bb12008-02-04 22:31:14 -080038 switch (PT_REGS_SYSCALL_RET(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 case -ERESTART_RESTARTBLOCK:
40 case -ERESTARTNOHAND:
41 PT_REGS_SYSCALL_RET(regs) = -EINTR;
42 break;
43
44 case -ERESTARTSYS:
45 if (!(ka->sa.sa_flags & SA_RESTART)) {
46 PT_REGS_SYSCALL_RET(regs) = -EINTR;
47 break;
48 }
49 /* fallthrough */
50 case -ERESTARTNOINTR:
51 PT_REGS_RESTART_SYSCALL(regs);
52 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
53 break;
54 }
55 }
56
57 sp = PT_REGS_SP(regs);
Jeff Dikeba180fd2007-10-16 01:27:00 -070058 if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags(sp) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 sp = current->sas_ss_sp + current->sas_ss_size;
60
61#ifdef CONFIG_ARCH_HAS_SC_SIGNALS
Jeff Dikeba180fd2007-10-16 01:27:00 -070062 if (!(ka->sa.sa_flags & SA_SIGINFO))
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 err = setup_signal_stack_sc(sp, signr, ka, regs, oldset);
64 else
65#endif
66 err = setup_signal_stack_si(sp, signr, ka, regs, info, oldset);
67
Jeff Dikeba180fd2007-10-16 01:27:00 -070068 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 spin_lock_irq(&current->sighand->siglock);
70 current->blocked = *oldset;
71 recalc_sigpending();
72 spin_unlock_irq(&current->sighand->siglock);
73 force_sigsegv(signr, current);
Steven Rostedt69be8f12005-08-29 11:44:09 -040074 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 spin_lock_irq(&current->sighand->siglock);
Jeff Dike1d3468a2006-07-10 04:45:13 -070076 sigorsets(&current->blocked, &current->blocked,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 &ka->sa.sa_mask);
Jeff Dikeba180fd2007-10-16 01:27:00 -070078 if (!(ka->sa.sa_flags & SA_NODEFER))
Steven Rostedt69be8f12005-08-29 11:44:09 -040079 sigaddset(&current->blocked, signr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 recalc_sigpending();
81 spin_unlock_irq(&current->sighand->siglock);
82 }
83
84 return err;
85}
86
Jeff Dike2fc10622006-01-18 17:44:02 -080087static int kern_do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 struct k_sigaction ka_copy;
90 siginfo_t info;
Jeff Dike2fc10622006-01-18 17:44:02 -080091 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int sig, handled_sig = 0;
93
Jeff Dike2fc10622006-01-18 17:44:02 -080094 if (test_thread_flag(TIF_RESTORE_SIGMASK))
95 oldset = &current->saved_sigmask;
96 else
97 oldset = &current->blocked;
98
Jeff Dikeba180fd2007-10-16 01:27:00 -070099 while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 handled_sig = 1;
101 /* Whee! Actually deliver the signal. */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700102 if (!handle_signal(regs, sig, &ka_copy, &info, oldset)) {
103 /*
104 * a signal was successfully delivered; the saved
Jeff Dike2fc10622006-01-18 17:44:02 -0800105 * sigmask will have been stored in the signal frame,
106 * and will be restored by sigreturn, so we can simply
Jeff Dikeba180fd2007-10-16 01:27:00 -0700107 * clear the TIF_RESTORE_SIGMASK flag
108 */
Jeff Dike2fc10622006-01-18 17:44:02 -0800109 if (test_thread_flag(TIF_RESTORE_SIGMASK))
110 clear_thread_flag(TIF_RESTORE_SIGMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 break;
Jeff Dike2fc10622006-01-18 17:44:02 -0800112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
115 /* Did we come from a system call? */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700116 if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* Restart the system call - no handlers present */
Jeff Dikec5d4bb12008-02-04 22:31:14 -0800118 switch (PT_REGS_SYSCALL_RET(regs)) {
Jeff Dike2fc10622006-01-18 17:44:02 -0800119 case -ERESTARTNOHAND:
120 case -ERESTARTSYS:
121 case -ERESTARTNOINTR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
123 PT_REGS_RESTART_SYSCALL(regs);
Jeff Dike2fc10622006-01-18 17:44:02 -0800124 break;
125 case -ERESTART_RESTARTBLOCK:
Jeff Dike1d3468a2006-07-10 04:45:13 -0700126 PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 PT_REGS_RESTART_SYSCALL(regs);
Jeff Dike2fc10622006-01-18 17:44:02 -0800128 break;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
Jeff Dikeba180fd2007-10-16 01:27:00 -0700132 /*
133 * This closes a way to execute a system call on the host. If
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * you set a breakpoint on a system call instruction and singlestep
135 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
136 * rather than PTRACE_SYSCALL it, allowing the system call to execute
Jeff Dike1d3468a2006-07-10 04:45:13 -0700137 * on the host. The tracing thread will check this flag and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 * PTRACE_SYSCALL if necessary.
139 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700140 if (current->ptrace & PT_DTRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 current->thread.singlestep_syscall =
142 is_syscall(PT_REGS_IP(&current->thread.regs));
Jeff Dike2fc10622006-01-18 17:44:02 -0800143
Jeff Dikeba180fd2007-10-16 01:27:00 -0700144 /*
145 * if there's no signal to deliver, we just put the saved sigmask
146 * back
147 */
Jeff Dike2fc10622006-01-18 17:44:02 -0800148 if (!handled_sig && test_thread_flag(TIF_RESTORE_SIGMASK)) {
149 clear_thread_flag(TIF_RESTORE_SIGMASK);
150 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
151 }
Jeff Dike7c7a8942007-03-06 01:42:18 -0800152 return handled_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155int do_signal(void)
156{
Jeff Dike7c7a8942007-03-06 01:42:18 -0800157 return kern_do_signal(&current->thread.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/*
161 * Atomically swap in the new signal mask, and wait for a signal.
162 */
163long sys_sigsuspend(int history0, int history1, old_sigset_t mask)
164{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 mask &= _BLOCKABLE;
166 spin_lock_irq(&current->sighand->siglock);
Jeff Dike2fc10622006-01-18 17:44:02 -0800167 current->saved_sigmask = current->blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 siginitset(&current->blocked, mask);
169 recalc_sigpending();
170 spin_unlock_irq(&current->sighand->siglock);
171
Jeff Dike2fc10622006-01-18 17:44:02 -0800172 current->state = TASK_INTERRUPTIBLE;
173 schedule();
174 set_thread_flag(TIF_RESTORE_SIGMASK);
175 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
179{
Jeff Dike7c7a8942007-03-06 01:42:18 -0800180 return do_sigaltstack(uss, uoss, PT_REGS_SP(&current->thread.regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}