signal.c 4.0 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 26 27 28 29 30 31 32
static int handle_signal(struct pt_regs *regs, unsigned long signr,
			 struct k_sigaction *ka, siginfo_t *info,
			 sigset_t *oldset)
{
	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) {
80 81 82 83 84
		sigset_t *oldset;
		if (test_thread_flag(TIF_RESTORE_SIGMASK))
			oldset = &current->saved_sigmask;
		else
			oldset = &current->blocked;
L
Linus Torvalds 已提交
85 86
		handled_sig = 1;
		/* Whee!  Actually deliver the signal.  */
J
Jeff Dike 已提交
87 88 89
		if (!handle_signal(regs, sig, &ka_copy, &info, oldset)) {
			/*
			 * a signal was successfully delivered; the saved
90 91
			 * sigmask will have been stored in the signal frame,
			 * and will be restored by sigreturn, so we can simply
J
Jeff Dike 已提交
92 93
			 * clear the TIF_RESTORE_SIGMASK flag
			 */
94 95
			if (test_thread_flag(TIF_RESTORE_SIGMASK))
				clear_thread_flag(TIF_RESTORE_SIGMASK);
L
Linus Torvalds 已提交
96
			break;
97
		}
L
Linus Torvalds 已提交
98 99 100
	}

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

J
Jeff Dike 已提交
117 118
	/*
	 * This closes a way to execute a system call on the host.  If
L
Linus Torvalds 已提交
119 120 121
	 * 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 已提交
122
	 * on the host.  The tracing thread will check this flag and
L
Linus Torvalds 已提交
123 124
	 * PTRACE_SYSCALL if necessary.
	 */
J
Jeff Dike 已提交
125
	if (current->ptrace & PT_DTRACE)
L
Linus Torvalds 已提交
126 127
		current->thread.singlestep_syscall =
			is_syscall(PT_REGS_IP(&current->thread.regs));
128

J
Jeff Dike 已提交
129 130 131 132
	/*
	 * if there's no signal to deliver, we just put the saved sigmask
	 * back
	 */
133 134 135 136
	if (!handled_sig && test_thread_flag(TIF_RESTORE_SIGMASK)) {
		clear_thread_flag(TIF_RESTORE_SIGMASK);
		sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
	}
137
	return handled_sig;
L
Linus Torvalds 已提交
138 139 140 141
}

int do_signal(void)
{
142
	return kern_do_signal(&current->thread.regs);
L
Linus Torvalds 已提交
143 144 145 146 147 148 149
}

/*
 * Atomically swap in the new signal mask, and wait for a signal.
 */
long sys_sigsuspend(int history0, int history1, old_sigset_t mask)
{
150 151
	sigset_t blocked;
	siginitset(&blocked, mask);
A
Al Viro 已提交
152
	return sigsuspend(&blocked);
L
Linus Torvalds 已提交
153 154 155 156
}

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