blob: 909e9b8d6612bc4b54f94ffa3e3622d0df3f6eca [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,
Al Virob7f9a112012-05-02 09:59:21 -040026 struct k_sigaction *ka, siginfo_t *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Al Virob7f9a112012-05-02 09:59:21 -040028 sigset_t *oldset = sigmask_to_save();
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 unsigned long sp;
30 int err;
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 /* Did we come from a system call? */
Jeff Dikeba180fd2007-10-16 01:27:00 -070033 if (PT_REGS_SYSCALL_NR(regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 /* If so, check system call restarting.. */
Jeff Dikec5d4bb12008-02-04 22:31:14 -080035 switch (PT_REGS_SYSCALL_RET(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 case -ERESTART_RESTARTBLOCK:
37 case -ERESTARTNOHAND:
38 PT_REGS_SYSCALL_RET(regs) = -EINTR;
39 break;
40
41 case -ERESTARTSYS:
42 if (!(ka->sa.sa_flags & SA_RESTART)) {
43 PT_REGS_SYSCALL_RET(regs) = -EINTR;
44 break;
45 }
46 /* fallthrough */
47 case -ERESTARTNOINTR:
48 PT_REGS_RESTART_SYSCALL(regs);
49 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
50 break;
51 }
52 }
53
54 sp = PT_REGS_SP(regs);
Jeff Dikeba180fd2007-10-16 01:27:00 -070055 if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags(sp) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 sp = current->sas_ss_sp + current->sas_ss_size;
57
58#ifdef CONFIG_ARCH_HAS_SC_SIGNALS
Jeff Dikeba180fd2007-10-16 01:27:00 -070059 if (!(ka->sa.sa_flags & SA_SIGINFO))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 err = setup_signal_stack_sc(sp, signr, ka, regs, oldset);
61 else
62#endif
63 err = setup_signal_stack_si(sp, signr, ka, regs, info, oldset);
64
Matt Flemingf6adb9a2012-03-23 15:01:49 -070065 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 force_sigsegv(signr, current);
Matt Flemingd982d592012-03-23 15:01:50 -070067 else
68 block_sigmask(ka, signr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 return err;
71}
72
Jeff Dike2fc10622006-01-18 17:44:02 -080073static int kern_do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 struct k_sigaction ka_copy;
76 siginfo_t info;
77 int sig, handled_sig = 0;
78
Jeff Dikeba180fd2007-10-16 01:27:00 -070079 while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 handled_sig = 1;
81 /* Whee! Actually deliver the signal. */
Al Virob7f9a112012-05-02 09:59:21 -040082 if (!handle_signal(regs, sig, &ka_copy, &info)) {
Jeff Dikeba180fd2007-10-16 01:27:00 -070083 /*
84 * a signal was successfully delivered; the saved
Jeff Dike2fc10622006-01-18 17:44:02 -080085 * sigmask will have been stored in the signal frame,
86 * and will be restored by sigreturn, so we can simply
Jeff Dikeba180fd2007-10-16 01:27:00 -070087 * clear the TIF_RESTORE_SIGMASK flag
88 */
Jeff Dike2fc10622006-01-18 17:44:02 -080089 if (test_thread_flag(TIF_RESTORE_SIGMASK))
90 clear_thread_flag(TIF_RESTORE_SIGMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 break;
Jeff Dike2fc10622006-01-18 17:44:02 -080092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
95 /* Did we come from a system call? */
Jeff Dikeba180fd2007-10-16 01:27:00 -070096 if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* Restart the system call - no handlers present */
Jeff Dikec5d4bb12008-02-04 22:31:14 -080098 switch (PT_REGS_SYSCALL_RET(regs)) {
Jeff Dike2fc10622006-01-18 17:44:02 -080099 case -ERESTARTNOHAND:
100 case -ERESTARTSYS:
101 case -ERESTARTNOINTR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
103 PT_REGS_RESTART_SYSCALL(regs);
Jeff Dike2fc10622006-01-18 17:44:02 -0800104 break;
105 case -ERESTART_RESTARTBLOCK:
Jeff Dike1d3468a2006-07-10 04:45:13 -0700106 PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 PT_REGS_RESTART_SYSCALL(regs);
Jeff Dike2fc10622006-01-18 17:44:02 -0800108 break;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
Jeff Dikeba180fd2007-10-16 01:27:00 -0700112 /*
113 * This closes a way to execute a system call on the host. If
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * you set a breakpoint on a system call instruction and singlestep
115 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
116 * rather than PTRACE_SYSCALL it, allowing the system call to execute
Jeff Dike1d3468a2006-07-10 04:45:13 -0700117 * on the host. The tracing thread will check this flag and
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * PTRACE_SYSCALL if necessary.
119 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700120 if (current->ptrace & PT_DTRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 current->thread.singlestep_syscall =
122 is_syscall(PT_REGS_IP(&current->thread.regs));
Jeff Dike2fc10622006-01-18 17:44:02 -0800123
Jeff Dikeba180fd2007-10-16 01:27:00 -0700124 /*
125 * if there's no signal to deliver, we just put the saved sigmask
126 * back
127 */
Al Viro51a7b442012-05-21 23:33:55 -0400128 if (!handled_sig)
129 restore_saved_sigmask();
Jeff Dike7c7a8942007-03-06 01:42:18 -0800130 return handled_sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133int do_signal(void)
134{
Jeff Dike7c7a8942007-03-06 01:42:18 -0800135 return kern_do_signal(&current->thread.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138/*
139 * Atomically swap in the new signal mask, and wait for a signal.
140 */
141long sys_sigsuspend(int history0, int history1, old_sigset_t mask)
142{
Matt Flemingd982d592012-03-23 15:01:50 -0700143 sigset_t blocked;
Matt Flemingd982d592012-03-23 15:01:50 -0700144 siginitset(&blocked, mask);
Al Viro68f3f162012-05-21 21:42:32 -0400145 return sigsuspend(&blocked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
149{
Jeff Dike7c7a8942007-03-06 01:42:18 -0800150 return do_sigaltstack(uss, uoss, PT_REGS_SP(&current->thread.regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}