]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/um/kernel/signal.c
Merge tag 'v3.2-rc2' into staging/for_v3.3
[mirror_ubuntu-artful-kernel.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>
1da177e4 12#include "frame_kern.h"
ba180fd4 13#include "kern_util.h"
1da177e4
LT
14
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
1d3468a6 24 */
1da177e4
LT
25static 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? */
ba180fd4 36 if (PT_REGS_SYSCALL_NR(regs) >= 0) {
1da177e4 37 /* If so, check system call restarting.. */
c5d4bb17 38 switch (PT_REGS_SYSCALL_RET(regs)) {
1da177e4
LT
39 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);
ba180fd4 58 if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags(sp) == 0))
1da177e4
LT
59 sp = current->sas_ss_sp + current->sas_ss_size;
60
61#ifdef CONFIG_ARCH_HAS_SC_SIGNALS
ba180fd4 62 if (!(ka->sa.sa_flags & SA_SIGINFO))
1da177e4
LT
63 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
ba180fd4 68 if (err) {
1da177e4
LT
69 spin_lock_irq(&current->sighand->siglock);
70 current->blocked = *oldset;
71 recalc_sigpending();
72 spin_unlock_irq(&current->sighand->siglock);
73 force_sigsegv(signr, current);
69be8f18 74 } else {
1da177e4 75 spin_lock_irq(&current->sighand->siglock);
1d3468a6 76 sigorsets(&current->blocked, &current->blocked,
1da177e4 77 &ka->sa.sa_mask);
ba180fd4 78 if (!(ka->sa.sa_flags & SA_NODEFER))
69be8f18 79 sigaddset(&current->blocked, signr);
1da177e4
LT
80 recalc_sigpending();
81 spin_unlock_irq(&current->sighand->siglock);
82 }
83
84 return err;
85}
86
2fc10620 87static int kern_do_signal(struct pt_regs *regs)
1da177e4
LT
88{
89 struct k_sigaction ka_copy;
90 siginfo_t info;
2fc10620 91 sigset_t *oldset;
1da177e4
LT
92 int sig, handled_sig = 0;
93
2fc10620
JD
94 if (test_thread_flag(TIF_RESTORE_SIGMASK))
95 oldset = &current->saved_sigmask;
96 else
97 oldset = &current->blocked;
98
ba180fd4 99 while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) {
1da177e4
LT
100 handled_sig = 1;
101 /* Whee! Actually deliver the signal. */
ba180fd4
JD
102 if (!handle_signal(regs, sig, &ka_copy, &info, oldset)) {
103 /*
104 * a signal was successfully delivered; the saved
2fc10620
JD
105 * sigmask will have been stored in the signal frame,
106 * and will be restored by sigreturn, so we can simply
ba180fd4
JD
107 * clear the TIF_RESTORE_SIGMASK flag
108 */
2fc10620
JD
109 if (test_thread_flag(TIF_RESTORE_SIGMASK))
110 clear_thread_flag(TIF_RESTORE_SIGMASK);
1da177e4 111 break;
2fc10620 112 }
1da177e4
LT
113 }
114
115 /* Did we come from a system call? */
ba180fd4 116 if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) {
1da177e4 117 /* Restart the system call - no handlers present */
c5d4bb17 118 switch (PT_REGS_SYSCALL_RET(regs)) {
2fc10620
JD
119 case -ERESTARTNOHAND:
120 case -ERESTARTSYS:
121 case -ERESTARTNOINTR:
1da177e4
LT
122 PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs);
123 PT_REGS_RESTART_SYSCALL(regs);
2fc10620
JD
124 break;
125 case -ERESTART_RESTARTBLOCK:
1d3468a6 126 PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall;
1da177e4 127 PT_REGS_RESTART_SYSCALL(regs);
2fc10620 128 break;
ba180fd4 129 }
1da177e4
LT
130 }
131
ba180fd4
JD
132 /*
133 * This closes a way to execute a system call on the host. If
1da177e4
LT
134 * you set a breakpoint on a system call instruction and singlestep
135 * from it, the tracing thread used to PTRACE_SINGLESTEP the process
136 * rather than PTRACE_SYSCALL it, allowing the system call to execute
1d3468a6 137 * on the host. The tracing thread will check this flag and
1da177e4
LT
138 * PTRACE_SYSCALL if necessary.
139 */
ba180fd4 140 if (current->ptrace & PT_DTRACE)
1da177e4
LT
141 current->thread.singlestep_syscall =
142 is_syscall(PT_REGS_IP(&current->thread.regs));
2fc10620 143
ba180fd4
JD
144 /*
145 * if there's no signal to deliver, we just put the saved sigmask
146 * back
147 */
2fc10620
JD
148 if (!handled_sig && test_thread_flag(TIF_RESTORE_SIGMASK)) {
149 clear_thread_flag(TIF_RESTORE_SIGMASK);
150 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
151 }
7c7a8949 152 return handled_sig;
1da177e4
LT
153}
154
155int do_signal(void)
156{
7c7a8949 157 return kern_do_signal(&current->thread.regs);
1da177e4
LT
158}
159
160/*
161 * Atomically swap in the new signal mask, and wait for a signal.
162 */
163long sys_sigsuspend(int history0, int history1, old_sigset_t mask)
164{
1da177e4
LT
165 mask &= _BLOCKABLE;
166 spin_lock_irq(&current->sighand->siglock);
2fc10620 167 current->saved_sigmask = current->blocked;
1da177e4
LT
168 siginitset(&current->blocked, mask);
169 recalc_sigpending();
170 spin_unlock_irq(&current->sighand->siglock);
171
2fc10620
JD
172 current->state = TASK_INTERRUPTIBLE;
173 schedule();
174 set_thread_flag(TIF_RESTORE_SIGMASK);
175 return -ERESTARTNOHAND;
1da177e4
LT
176}
177
1da177e4
LT
178long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
179{
7c7a8949 180 return do_sigaltstack(uss, uoss, PT_REGS_SP(&current->thread.regs));
1da177e4 181}