signal.c 3.8 KB
Newer Older
J
Jeff Dike 已提交
1
/*
J
Jeff Dike 已提交
2
 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5
 * Licensed under the GPL
 */

J
Jeff Dike 已提交
6 7 8 9 10 11
#include <linux/module.h>
#include <linux/ptrace.h>
#include <linux/sched.h>
#include <asm/siginfo.h>
#include <asm/signal.h>
#include <asm/unistd.h>
L
Linus Torvalds 已提交
12
#include "frame_kern.h"
J
Jeff Dike 已提交
13
#include "kern_util.h"
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23

EXPORT_SYMBOL(block_signals);
EXPORT_SYMBOL(unblock_signals);

#define _S(nr) (1<<((nr)-1))

#define _BLOCKABLE (~(_S(SIGKILL) | _S(SIGSTOP)))

/*
 * OK, we're invoking a handler
J
Jeff Dike 已提交
24
 */
L
Linus Torvalds 已提交
25
static int handle_signal(struct pt_regs *regs, unsigned long signr,
A
Al Viro 已提交
26
			 struct k_sigaction *ka, siginfo_t *info)
L
Linus Torvalds 已提交
27
{
A
Al Viro 已提交
28
	sigset_t *oldset = sigmask_to_save();
L
Linus Torvalds 已提交
29 30 31 32
	unsigned long sp;
	int err;

	/* Did we come from a system call? */
J
Jeff Dike 已提交
33
	if (PT_REGS_SYSCALL_NR(regs) >= 0) {
L
Linus Torvalds 已提交
34
		/* If so, check system call restarting.. */
J
Jeff Dike 已提交
35
		switch (PT_REGS_SYSCALL_RET(regs)) {
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
		case -ERESTART_RESTARTBLOCK:
		case -ERESTARTNOHAND:
			PT_REGS_SYSCALL_RET(regs) = -EINTR;
			break;

		case -ERESTARTSYS:
			if (!(ka->sa.sa_flags & SA_RESTART)) {
				PT_REGS_SYSCALL_RET(regs) = -EINTR;
				break;
			}
		/* fallthrough */
		case -ERESTARTNOINTR:
			PT_REGS_RESTART_SYSCALL(regs);
			PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
			break;
		}
	}

	sp = PT_REGS_SP(regs);
J
Jeff Dike 已提交
55
	if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags(sp) == 0))
L
Linus Torvalds 已提交
56 57 58
		sp = current->sas_ss_sp + current->sas_ss_size;

#ifdef CONFIG_ARCH_HAS_SC_SIGNALS
J
Jeff Dike 已提交
59
	if (!(ka->sa.sa_flags & SA_SIGINFO))
L
Linus Torvalds 已提交
60 61 62 63 64
		err = setup_signal_stack_sc(sp, signr, ka, regs, oldset);
	else
#endif
		err = setup_signal_stack_si(sp, signr, ka, regs, info, oldset);

65
	if (err)
L
Linus Torvalds 已提交
66
		force_sigsegv(signr, current);
67 68
	else
		block_sigmask(ka, signr);
L
Linus Torvalds 已提交
69 70 71 72

	return err;
}

73
static int kern_do_signal(struct pt_regs *regs)
L
Linus Torvalds 已提交
74 75 76 77 78
{
	struct k_sigaction ka_copy;
	siginfo_t info;
	int sig, handled_sig = 0;

J
Jeff Dike 已提交
79
	while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) {
L
Linus Torvalds 已提交
80 81
		handled_sig = 1;
		/* Whee!  Actually deliver the signal.  */
A
Al Viro 已提交
82
		if (!handle_signal(regs, sig, &ka_copy, &info)) {
J
Jeff Dike 已提交
83 84
			/*
			 * a signal was successfully delivered; the saved
85 86
			 * sigmask will have been stored in the signal frame,
			 * and will be restored by sigreturn, so we can simply
J
Jeff Dike 已提交
87 88
			 * clear the TIF_RESTORE_SIGMASK flag
			 */
89 90
			if (test_thread_flag(TIF_RESTORE_SIGMASK))
				clear_thread_flag(TIF_RESTORE_SIGMASK);
L
Linus Torvalds 已提交
91
			break;
92
		}
L
Linus Torvalds 已提交
93 94 95
	}

	/* Did we come from a system call? */
J
Jeff Dike 已提交
96
	if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) {
L
Linus Torvalds 已提交
97
		/* Restart the system call - no handlers present */
J
Jeff Dike 已提交
98
		switch (PT_REGS_SYSCALL_RET(regs)) {
99 100 101
		case -ERESTARTNOHAND:
		case -ERESTARTSYS:
		case -ERESTARTNOINTR:
L
Linus Torvalds 已提交
102 103
			PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
			PT_REGS_RESTART_SYSCALL(regs);
104 105
			break;
		case -ERESTART_RESTARTBLOCK:
J
Jeff Dike 已提交
106
			PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall;
L
Linus Torvalds 已提交
107
			PT_REGS_RESTART_SYSCALL(regs);
108
			break;
J
Jeff Dike 已提交
109
		}
L
Linus Torvalds 已提交
110 111
	}

J
Jeff Dike 已提交
112 113
	/*
	 * This closes a way to execute a system call on the host.  If
L
Linus Torvalds 已提交
114 115 116
	 * you set a breakpoint on a system call instruction and singlestep
	 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
	 * rather than PTRACE_SYSCALL it, allowing the system call to execute
J
Jeff Dike 已提交
117
	 * on the host.  The tracing thread will check this flag and
L
Linus Torvalds 已提交
118 119
	 * PTRACE_SYSCALL if necessary.
	 */
J
Jeff Dike 已提交
120
	if (current->ptrace & PT_DTRACE)
L
Linus Torvalds 已提交
121 122
		current->thread.singlestep_syscall =
			is_syscall(PT_REGS_IP(&current->thread.regs));
123

J
Jeff Dike 已提交
124 125 126 127
	/*
	 * if there's no signal to deliver, we just put the saved sigmask
	 * back
	 */
A
Al Viro 已提交
128 129
	if (!handled_sig)
		restore_saved_sigmask();
130
	return handled_sig;
L
Linus Torvalds 已提交
131 132 133 134
}

int do_signal(void)
{
135
	return kern_do_signal(&current->thread.regs);
L
Linus Torvalds 已提交
136 137 138 139 140 141 142
}

/*
 * Atomically swap in the new signal mask, and wait for a signal.
 */
long sys_sigsuspend(int history0, int history1, old_sigset_t mask)
{
143 144
	sigset_t blocked;
	siginitset(&blocked, mask);
A
Al Viro 已提交
145
	return sigsuspend(&blocked);
L
Linus Torvalds 已提交
146 147 148 149
}

long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
{
150
	return do_sigaltstack(uss, uoss, PT_REGS_SP(&current->thread.regs));
L
Linus Torvalds 已提交
151
}