blob: 8382e0b91e8b763fc25610d0f006f2b263f17109 [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
Matt Flemingf6adb9a2012-03-23 15:01:49 -070068 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 force_sigsegv(signr, current);
Matt Flemingf6adb9a2012-03-23 15:01:49 -070070 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 spin_lock_irq(&current->sighand->siglock);
Jeff Dike1d3468a2006-07-10 04:45:13 -070072 sigorsets(&current->blocked, &current->blocked,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 &ka->sa.sa_mask);
Jeff Dikeba180fd2007-10-16 01:27:00 -070074 if (!(ka->sa.sa_flags & SA_NODEFER))
Steven Rostedt69be8f12005-08-29 11:44:09 -040075 sigaddset(&current->blocked, signr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 recalc_sigpending();
77 spin_unlock_irq(&current->sighand->siglock);
78 }
79
80 return err;
81}
82
Jeff Dike2fc10622006-01-18 17:44:02 -080083static int kern_do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 struct k_sigaction ka_copy;
86 siginfo_t info;
Jeff Dike2fc10622006-01-18 17:44:02 -080087 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 int sig, handled_sig = 0;
89
Jeff Dike2fc10622006-01-18 17:44:02 -080090 if (test_thread_flag(TIF_RESTORE_SIGMASK))
91 oldset = &current->saved_sigmask;
92 else
93 oldset = &current->blocked;
94
Jeff Dikeba180fd2007-10-16 01:27:00 -070095 while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 handled_sig = 1;
97 /* Whee! Actually deliver the signal. */
Jeff Dikeba180fd2007-10-16 01:27:00 -070098 if (!handle_signal(regs, sig, &ka_copy, &info, oldset)) {
99 /*
100 * a signal was successfully delivered; the saved
Jeff Dike2fc10622006-01-18 17:44:02 -0800101 * sigmask will have been stored in the signal frame,
102 * and will be restored by sigreturn, so we can simply
Jeff Dikeba180fd2007-10-16 01:27:00 -0700103 * clear the TIF_RESTORE_SIGMASK flag
104 */
Jeff Dike2fc10622006-01-18 17:44:02 -0800105 if (test_thread_flag(TIF_RESTORE_SIGMASK))
106 clear_thread_flag(TIF_RESTORE_SIGMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 break;
Jeff Dike2fc10622006-01-18 17:44:02 -0800108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110
111 /* Did we come from a system call? */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700112 if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 /* Restart the system call - no handlers present */
Jeff Dikec5d4bb12008-02-04 22:31:14 -0800114 switch (PT_REGS_SYSCALL_RET(regs)) {
Jeff Dike2fc10622006-01-18 17:44:02 -0800115 case -ERESTARTNOHAND:
116 case -ERESTARTSYS:
117 case -ERESTARTNOINTR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
119 PT_REGS_RESTART_SYSCALL(regs);
Jeff Dike2fc10622006-01-18 17:44:02 -0800120 break;
121 case -ERESTART_RESTARTBLOCK:
Jeff Dike1d3468a2006-07-10 04:45:13 -0700122 PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 PT_REGS_RESTART_SYSCALL(regs);
Jeff Dike2fc10622006-01-18 17:44:02 -0800124 break;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127
Jeff Dikeba180fd2007-10-16 01:27:00 -0700128 /*
129 * This closes a way to execute a system call on the host. If
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * you set a breakpoint on a system call instruction and singlestep
131 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
132 * rather than PTRACE_SYSCALL it, allowing the system call to execute
Jeff Dike1d3468a2006-07-10 04:45:13 -0700133 * on the host. The tracing thread will check this flag and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * PTRACE_SYSCALL if necessary.
135 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700136 if (current->ptrace & PT_DTRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 current->thread.singlestep_syscall =
138 is_syscall(PT_REGS_IP(&current->thread.regs));
Jeff Dike2fc10622006-01-18 17:44:02 -0800139
Jeff Dikeba180fd2007-10-16 01:27:00 -0700140 /*
141 * if there's no signal to deliver, we just put the saved sigmask
142 * back
143 */
Jeff Dike2fc10622006-01-18 17:44:02 -0800144 if (!handled_sig && test_thread_flag(TIF_RESTORE_SIGMASK)) {
145 clear_thread_flag(TIF_RESTORE_SIGMASK);
146 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
147 }
Jeff Dike7c7a8942007-03-06 01:42:18 -0800148 return handled_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151int do_signal(void)
152{
Jeff Dike7c7a8942007-03-06 01:42:18 -0800153 return kern_do_signal(&current->thread.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156/*
157 * Atomically swap in the new signal mask, and wait for a signal.
158 */
159long sys_sigsuspend(int history0, int history1, old_sigset_t mask)
160{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 mask &= _BLOCKABLE;
162 spin_lock_irq(&current->sighand->siglock);
Jeff Dike2fc10622006-01-18 17:44:02 -0800163 current->saved_sigmask = current->blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 siginitset(&current->blocked, mask);
165 recalc_sigpending();
166 spin_unlock_irq(&current->sighand->siglock);
167
Jeff Dike2fc10622006-01-18 17:44:02 -0800168 current->state = TASK_INTERRUPTIBLE;
169 schedule();
170 set_thread_flag(TIF_RESTORE_SIGMASK);
171 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
175{
Jeff Dike7c7a8942007-03-06 01:42:18 -0800176 return do_sigaltstack(uss, uoss, PT_REGS_SP(&current->thread.regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}