Merge remote-tracking branch 'spi/topic/rspi' into spi-pdata
[deliverable/linux.git] / arch / um / kernel / signal.c
CommitLineData
1d3468a6 1/*
ba180fd4 2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
3 * Licensed under the GPL
4 */
5
c5d4bb17
JD
6#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>
37185b33
AV
12#include <frame_kern.h>
13#include <kern_util.h>
1da177e4
LT
14
15EXPORT_SYMBOL(block_signals);
16EXPORT_SYMBOL(unblock_signals);
17
1da177e4
LT
18/*
19 * OK, we're invoking a handler
1d3468a6 20 */
a610d6e6 21static void handle_signal(struct pt_regs *regs, unsigned long signr,
9a8c1359 22 struct k_sigaction *ka, struct siginfo *info)
1da177e4 23{
b7f9a11a 24 sigset_t *oldset = sigmask_to_save();
f9a38eac 25 int singlestep = 0;
1da177e4
LT
26 unsigned long sp;
27 int err;
28
f9a38eac
AV
29 if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED))
30 singlestep = 1;
31
1da177e4 32 /* Did we come from a system call? */
ba180fd4 33 if (PT_REGS_SYSCALL_NR(regs) >= 0) {
1da177e4 34 /* If so, check system call restarting.. */
c5d4bb17 35 switch (PT_REGS_SYSCALL_RET(regs)) {
1da177e4
LT
36 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);
ba180fd4 55 if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags(sp) == 0))
1da177e4
LT
56 sp = current->sas_ss_sp + current->sas_ss_size;
57
58#ifdef CONFIG_ARCH_HAS_SC_SIGNALS
ba180fd4 59 if (!(ka->sa.sa_flags & SA_SIGINFO))
1da177e4
LT
60 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
f6adb9a6 65 if (err)
1da177e4 66 force_sigsegv(signr, current);
d982d595 67 else
f9a38eac 68 signal_delivered(signr, info, ka, regs, singlestep);
1da177e4
LT
69}
70
2fc10620 71static int kern_do_signal(struct pt_regs *regs)
1da177e4
LT
72{
73 struct k_sigaction ka_copy;
9a8c1359 74 struct siginfo info;
1da177e4
LT
75 int sig, handled_sig = 0;
76
ba180fd4 77 while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) {
1da177e4
LT
78 handled_sig = 1;
79 /* Whee! Actually deliver the signal. */
a610d6e6 80 handle_signal(regs, sig, &ka_copy, &info);
1da177e4
LT
81 }
82
83 /* Did we come from a system call? */
ba180fd4 84 if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) {
1da177e4 85 /* Restart the system call - no handlers present */
c5d4bb17 86 switch (PT_REGS_SYSCALL_RET(regs)) {
2fc10620
JD
87 case -ERESTARTNOHAND:
88 case -ERESTARTSYS:
89 case -ERESTARTNOINTR:
1da177e4
LT
90 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
91 PT_REGS_RESTART_SYSCALL(regs);
2fc10620
JD
92 break;
93 case -ERESTART_RESTARTBLOCK:
1d3468a6 94 PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall;
1da177e4 95 PT_REGS_RESTART_SYSCALL(regs);
2fc10620 96 break;
ba180fd4 97 }
1da177e4
LT
98 }
99
ba180fd4
JD
100 /*
101 * This closes a way to execute a system call on the host. If
1da177e4
LT
102 * you set a breakpoint on a system call instruction and singlestep
103 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
104 * rather than PTRACE_SYSCALL it, allowing the system call to execute
1d3468a6 105 * on the host. The tracing thread will check this flag and
1da177e4
LT
106 * PTRACE_SYSCALL if necessary.
107 */
ba180fd4 108 if (current->ptrace & PT_DTRACE)
1da177e4
LT
109 current->thread.singlestep_syscall =
110 is_syscall(PT_REGS_IP(&current->thread.regs));
2fc10620 111
ba180fd4
JD
112 /*
113 * if there's no signal to deliver, we just put the saved sigmask
114 * back
115 */
51a7b448
AV
116 if (!handled_sig)
117 restore_saved_sigmask();
7c7a8949 118 return handled_sig;
1da177e4
LT
119}
120
121int do_signal(void)
122{
7c7a8949 123 return kern_do_signal(&current->thread.regs);
1da177e4 124}
This page took 0.597707 seconds and 5 git commands to generate.