blob: a813020d2f1170b3daba65ccc270718d5ea24b84 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/arch/alpha/kernel/signal.c
4 *
5 * Copyright (C) 1995 Linus Torvalds
6 *
7 * 1997-11-02 Modified for POSIX.1b signals by Richard Henderson
8 */
9
Ingo Molnar3f07c012017-02-08 18:51:30 +010010#include <linux/sched/signal.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010011#include <linux/sched/task_stack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/signal.h>
14#include <linux/errno.h>
15#include <linux/wait.h>
16#include <linux/ptrace.h>
17#include <linux/unistd.h>
18#include <linux/mm.h>
19#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/stddef.h>
21#include <linux/tty.h>
22#include <linux/binfmts.h>
23#include <linux/bitops.h>
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -080024#include <linux/syscalls.h>
David Howells733e5e42009-09-09 08:30:21 +010025#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/sigcontext.h>
29#include <asm/ucontext.h>
30
31#include "proto.h"
32
33
34#define DEBUG_SIG 0
35
36#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
37
38asmlinkage void ret_from_sys_call(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * The OSF/1 sigprocmask calling sequence is different from the
42 * C sigprocmask() sequence..
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
Al Viroc52c2dd2010-09-26 19:28:12 +010044SYSCALL_DEFINE2(osf_sigprocmask, int, how, unsigned long, newmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Al Viroc52c2dd2010-09-26 19:28:12 +010046 sigset_t oldmask;
47 sigset_t mask;
48 unsigned long res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds87400e52010-09-30 08:37:38 -070050 siginitset(&mask, newmask & _BLOCKABLE);
Linus Torvalds0f44fbd2010-09-28 13:26:57 -070051 res = sigprocmask(how, &mask, &oldmask);
Al Viroc52c2dd2010-09-26 19:28:12 +010052 if (!res) {
53 force_successful_syscall_return();
Linus Torvalds0f44fbd2010-09-28 13:26:57 -070054 res = oldmask.sig[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 }
Al Viroc52c2dd2010-09-26 19:28:12 +010056 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -080059SYSCALL_DEFINE3(osf_sigaction, int, sig,
60 const struct osf_sigaction __user *, act,
61 struct osf_sigaction __user *, oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 struct k_sigaction new_ka, old_ka;
64 int ret;
65
66 if (act) {
67 old_sigset_t mask;
Linus Torvalds96d4f262019-01-03 18:57:57 -080068 if (!access_ok(act, sizeof(*act)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
Al Viro18e6bfa2010-09-26 19:28:22 +010070 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
71 __get_user(mask, &act->sa_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 siginitset(&new_ka.sa.sa_mask, mask);
74 new_ka.ka_restorer = NULL;
75 }
76
77 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
78
79 if (!ret && oact) {
Linus Torvalds96d4f262019-01-03 18:57:57 -080080 if (!access_ok(oact, sizeof(*oact)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
Al Viro18e6bfa2010-09-26 19:28:22 +010082 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
83 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86
87 return ret;
88}
89
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -080090SYSCALL_DEFINE5(rt_sigaction, int, sig, const struct sigaction __user *, act,
91 struct sigaction __user *, oact,
92 size_t, sigsetsize, void __user *, restorer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct k_sigaction new_ka, old_ka;
95 int ret;
96
97 /* XXX: Don't preclude handling different sized sigset_t's. */
98 if (sigsetsize != sizeof(sigset_t))
99 return -EINVAL;
100
101 if (act) {
102 new_ka.ka_restorer = restorer;
103 if (copy_from_user(&new_ka.sa, act, sizeof(*act)))
104 return -EFAULT;
105 }
106
107 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
108
109 if (!ret && oact) {
110 if (copy_to_user(oact, &old_ka.sa, sizeof(*oact)))
111 return -EFAULT;
112 }
113
114 return ret;
115}
116
117/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * Do a signal return; undo the signal stack.
119 */
120
121#if _NSIG_WORDS > 1
122# error "Non SA_SIGINFO frame needs rearranging"
123#endif
124
125struct sigframe
126{
127 struct sigcontext sc;
128 unsigned int retcode[3];
129};
130
131struct rt_sigframe
132{
133 struct siginfo info;
134 struct ucontext uc;
135 unsigned int retcode[3];
136};
137
138/* If this changes, userland unwinders that Know Things about our signal
139 frame will break. Do not undertake lightly. It also implies an ABI
140 change wrt the size of siginfo_t, which may cause some pain. */
141extern char compile_time_assert
142 [offsetof(struct rt_sigframe, uc.uc_mcontext) == 176 ? 1 : -1];
143
144#define INSN_MOV_R30_R16 0x47fe0410
145#define INSN_LDI_R0 0x201f0000
146#define INSN_CALLSYS 0x00000083
147
148static long
Al Virob960f302012-10-18 01:43:27 -0400149restore_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 unsigned long usp;
Al Virob960f302012-10-18 01:43:27 -0400152 struct switch_stack *sw = (struct switch_stack *)regs - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 long i, err = __get_user(regs->pc, &sc->sc_pc);
154
Andy Lutomirskif56141e2015-02-12 15:01:14 -0800155 current->restart_block.fn = do_no_restart_syscall;
Al Viro2deba1b2010-09-18 08:38:47 -0400156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 sw->r26 = (unsigned long) ret_from_sys_call;
158
159 err |= __get_user(regs->r0, sc->sc_regs+0);
160 err |= __get_user(regs->r1, sc->sc_regs+1);
161 err |= __get_user(regs->r2, sc->sc_regs+2);
162 err |= __get_user(regs->r3, sc->sc_regs+3);
163 err |= __get_user(regs->r4, sc->sc_regs+4);
164 err |= __get_user(regs->r5, sc->sc_regs+5);
165 err |= __get_user(regs->r6, sc->sc_regs+6);
166 err |= __get_user(regs->r7, sc->sc_regs+7);
167 err |= __get_user(regs->r8, sc->sc_regs+8);
168 err |= __get_user(sw->r9, sc->sc_regs+9);
169 err |= __get_user(sw->r10, sc->sc_regs+10);
170 err |= __get_user(sw->r11, sc->sc_regs+11);
171 err |= __get_user(sw->r12, sc->sc_regs+12);
172 err |= __get_user(sw->r13, sc->sc_regs+13);
173 err |= __get_user(sw->r14, sc->sc_regs+14);
174 err |= __get_user(sw->r15, sc->sc_regs+15);
175 err |= __get_user(regs->r16, sc->sc_regs+16);
176 err |= __get_user(regs->r17, sc->sc_regs+17);
177 err |= __get_user(regs->r18, sc->sc_regs+18);
178 err |= __get_user(regs->r19, sc->sc_regs+19);
179 err |= __get_user(regs->r20, sc->sc_regs+20);
180 err |= __get_user(regs->r21, sc->sc_regs+21);
181 err |= __get_user(regs->r22, sc->sc_regs+22);
182 err |= __get_user(regs->r23, sc->sc_regs+23);
183 err |= __get_user(regs->r24, sc->sc_regs+24);
184 err |= __get_user(regs->r25, sc->sc_regs+25);
185 err |= __get_user(regs->r26, sc->sc_regs+26);
186 err |= __get_user(regs->r27, sc->sc_regs+27);
187 err |= __get_user(regs->r28, sc->sc_regs+28);
188 err |= __get_user(regs->gp, sc->sc_regs+29);
189 err |= __get_user(usp, sc->sc_regs+30);
190 wrusp(usp);
191
192 for (i = 0; i < 31; i++)
193 err |= __get_user(sw->fp[i], sc->sc_fpregs+i);
194 err |= __get_user(sw->fp[31], &sc->sc_fpcr);
195
196 return err;
197}
198
199/* Note that this syscall is also used by setcontext(3) to install
200 a given sigcontext. This because it's impossible to set *all*
201 registers and transfer control from userland. */
202
203asmlinkage void
Al Virob960f302012-10-18 01:43:27 -0400204do_sigreturn(struct sigcontext __user *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Al Virob960f302012-10-18 01:43:27 -0400206 struct pt_regs *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 sigset_t set;
208
209 /* Verify that it's a good sigcontext before using it */
Linus Torvalds96d4f262019-01-03 18:57:57 -0800210 if (!access_ok(sc, sizeof(*sc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto give_sigsegv;
212 if (__get_user(set.sig[0], &sc->sc_mask))
213 goto give_sigsegv;
214
Matt Fleming2561b062012-04-05 14:25:12 -0700215 set_current_blocked(&set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Al Virob960f302012-10-18 01:43:27 -0400217 if (restore_sigcontext(sc, regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 goto give_sigsegv;
219
220 /* Send SIGTRAP if we're single-stepping: */
221 if (ptrace_cancel_bpt (current)) {
Eric W. Biederman5f502452018-04-17 17:37:49 -0500222 send_sig_fault(SIGTRAP, TRAP_BRKPT, (void __user *) regs->pc, 0,
223 current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225 return;
226
227give_sigsegv:
Eric W. Biederman3cf5d072019-05-23 10:17:27 -0500228 force_sig(SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231asmlinkage void
Al Virob960f302012-10-18 01:43:27 -0400232do_rt_sigreturn(struct rt_sigframe __user *frame)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Al Virob960f302012-10-18 01:43:27 -0400234 struct pt_regs *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 sigset_t set;
236
237 /* Verify that it's a good ucontext_t before using it */
Linus Torvalds96d4f262019-01-03 18:57:57 -0800238 if (!access_ok(&frame->uc, sizeof(frame->uc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto give_sigsegv;
240 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
241 goto give_sigsegv;
242
Matt Fleming2561b062012-04-05 14:25:12 -0700243 set_current_blocked(&set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Al Virob960f302012-10-18 01:43:27 -0400245 if (restore_sigcontext(&frame->uc.uc_mcontext, regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 goto give_sigsegv;
247
248 /* Send SIGTRAP if we're single-stepping: */
249 if (ptrace_cancel_bpt (current)) {
Eric W. Biederman5f502452018-04-17 17:37:49 -0500250 send_sig_fault(SIGTRAP, TRAP_BRKPT, (void __user *) regs->pc, 0,
251 current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 return;
254
255give_sigsegv:
Eric W. Biederman3cf5d072019-05-23 10:17:27 -0500256 force_sig(SIGSEGV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
259
260/*
261 * Set up a signal frame.
262 */
263
264static inline void __user *
Al Virocfd60c02012-11-07 17:38:51 -0500265get_sigframe(struct ksignal *ksig, unsigned long sp, size_t frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Al Virocfd60c02012-11-07 17:38:51 -0500267 return (void __user *)((sigsp(sp, ksig) - frame_size) & -32ul);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270static long
271setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
Al Virod9d07382012-09-05 18:53:18 -0400272 unsigned long mask, unsigned long sp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Al Virod9d07382012-09-05 18:53:18 -0400274 struct switch_stack *sw = (struct switch_stack *)regs - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 long i, err = 0;
276
277 err |= __put_user(on_sig_stack((unsigned long)sc), &sc->sc_onstack);
278 err |= __put_user(mask, &sc->sc_mask);
279 err |= __put_user(regs->pc, &sc->sc_pc);
280 err |= __put_user(8, &sc->sc_ps);
281
282 err |= __put_user(regs->r0 , sc->sc_regs+0);
283 err |= __put_user(regs->r1 , sc->sc_regs+1);
284 err |= __put_user(regs->r2 , sc->sc_regs+2);
285 err |= __put_user(regs->r3 , sc->sc_regs+3);
286 err |= __put_user(regs->r4 , sc->sc_regs+4);
287 err |= __put_user(regs->r5 , sc->sc_regs+5);
288 err |= __put_user(regs->r6 , sc->sc_regs+6);
289 err |= __put_user(regs->r7 , sc->sc_regs+7);
290 err |= __put_user(regs->r8 , sc->sc_regs+8);
291 err |= __put_user(sw->r9 , sc->sc_regs+9);
292 err |= __put_user(sw->r10 , sc->sc_regs+10);
293 err |= __put_user(sw->r11 , sc->sc_regs+11);
294 err |= __put_user(sw->r12 , sc->sc_regs+12);
295 err |= __put_user(sw->r13 , sc->sc_regs+13);
296 err |= __put_user(sw->r14 , sc->sc_regs+14);
297 err |= __put_user(sw->r15 , sc->sc_regs+15);
298 err |= __put_user(regs->r16, sc->sc_regs+16);
299 err |= __put_user(regs->r17, sc->sc_regs+17);
300 err |= __put_user(regs->r18, sc->sc_regs+18);
301 err |= __put_user(regs->r19, sc->sc_regs+19);
302 err |= __put_user(regs->r20, sc->sc_regs+20);
303 err |= __put_user(regs->r21, sc->sc_regs+21);
304 err |= __put_user(regs->r22, sc->sc_regs+22);
305 err |= __put_user(regs->r23, sc->sc_regs+23);
306 err |= __put_user(regs->r24, sc->sc_regs+24);
307 err |= __put_user(regs->r25, sc->sc_regs+25);
308 err |= __put_user(regs->r26, sc->sc_regs+26);
309 err |= __put_user(regs->r27, sc->sc_regs+27);
310 err |= __put_user(regs->r28, sc->sc_regs+28);
311 err |= __put_user(regs->gp , sc->sc_regs+29);
312 err |= __put_user(sp, sc->sc_regs+30);
313 err |= __put_user(0, sc->sc_regs+31);
314
315 for (i = 0; i < 31; i++)
316 err |= __put_user(sw->fp[i], sc->sc_fpregs+i);
317 err |= __put_user(0, sc->sc_fpregs+31);
318 err |= __put_user(sw->fp[31], &sc->sc_fpcr);
319
320 err |= __put_user(regs->trap_a0, &sc->sc_traparg_a0);
321 err |= __put_user(regs->trap_a1, &sc->sc_traparg_a1);
322 err |= __put_user(regs->trap_a2, &sc->sc_traparg_a2);
323
324 return err;
325}
326
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700327static int
Al Virocfd60c02012-11-07 17:38:51 -0500328setup_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 unsigned long oldsp, r26, err = 0;
331 struct sigframe __user *frame;
332
333 oldsp = rdusp();
Al Virocfd60c02012-11-07 17:38:51 -0500334 frame = get_sigframe(ksig, oldsp, sizeof(*frame));
Linus Torvalds96d4f262019-01-03 18:57:57 -0800335 if (!access_ok(frame, sizeof(*frame)))
Al Virocbdfb9f2012-04-22 02:34:42 -0400336 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Al Virod9d07382012-09-05 18:53:18 -0400338 err |= setup_sigcontext(&frame->sc, regs, set->sig[0], oldsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (err)
Al Virocbdfb9f2012-04-22 02:34:42 -0400340 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* Set up to return from userspace. If provided, use a stub
343 already in userspace. */
Al Virocfd60c02012-11-07 17:38:51 -0500344 r26 = (unsigned long) ksig->ka.ka_restorer;
345 if (!r26) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 err |= __put_user(INSN_MOV_R30_R16, frame->retcode+0);
347 err |= __put_user(INSN_LDI_R0+__NR_sigreturn, frame->retcode+1);
348 err |= __put_user(INSN_CALLSYS, frame->retcode+2);
349 imb();
350 r26 = (unsigned long) frame->retcode;
351 }
352
353 /* Check that everything was written properly. */
354 if (err)
Al Virocbdfb9f2012-04-22 02:34:42 -0400355 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 /* "Return" to the handler */
358 regs->r26 = r26;
Al Virocfd60c02012-11-07 17:38:51 -0500359 regs->r27 = regs->pc = (unsigned long) ksig->ka.sa.sa_handler;
360 regs->r16 = ksig->sig; /* a0: signal number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 regs->r17 = 0; /* a1: exception code */
362 regs->r18 = (unsigned long) &frame->sc; /* a2: sigcontext pointer */
363 wrusp((unsigned long) frame);
364
365#if DEBUG_SIG
366 printk("SIG deliver (%s:%d): sp=%p pc=%p ra=%p\n",
367 current->comm, current->pid, frame, regs->pc, regs->r26);
368#endif
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700372static int
Al Virocfd60c02012-11-07 17:38:51 -0500373setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 unsigned long oldsp, r26, err = 0;
376 struct rt_sigframe __user *frame;
377
378 oldsp = rdusp();
Al Virocfd60c02012-11-07 17:38:51 -0500379 frame = get_sigframe(ksig, oldsp, sizeof(*frame));
Linus Torvalds96d4f262019-01-03 18:57:57 -0800380 if (!access_ok(frame, sizeof(*frame)))
Al Virocbdfb9f2012-04-22 02:34:42 -0400381 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Al Virocfd60c02012-11-07 17:38:51 -0500383 err |= copy_siginfo_to_user(&frame->info, &ksig->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* Create the ucontext. */
386 err |= __put_user(0, &frame->uc.uc_flags);
387 err |= __put_user(0, &frame->uc.uc_link);
388 err |= __put_user(set->sig[0], &frame->uc.uc_osf_sigmask);
Al Viro50ececc2012-12-14 15:25:43 -0500389 err |= __save_altstack(&frame->uc.uc_stack, oldsp);
Al Virod9d07382012-09-05 18:53:18 -0400390 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 set->sig[0], oldsp);
392 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
393 if (err)
Al Virocbdfb9f2012-04-22 02:34:42 -0400394 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /* Set up to return from userspace. If provided, use a stub
397 already in userspace. */
Al Virocfd60c02012-11-07 17:38:51 -0500398 r26 = (unsigned long) ksig->ka.ka_restorer;
399 if (!r26) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 err |= __put_user(INSN_MOV_R30_R16, frame->retcode+0);
401 err |= __put_user(INSN_LDI_R0+__NR_rt_sigreturn,
402 frame->retcode+1);
403 err |= __put_user(INSN_CALLSYS, frame->retcode+2);
404 imb();
405 r26 = (unsigned long) frame->retcode;
406 }
407
408 if (err)
Al Virocbdfb9f2012-04-22 02:34:42 -0400409 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* "Return" to the handler */
412 regs->r26 = r26;
Al Virocfd60c02012-11-07 17:38:51 -0500413 regs->r27 = regs->pc = (unsigned long) ksig->ka.sa.sa_handler;
414 regs->r16 = ksig->sig; /* a0: signal number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 regs->r17 = (unsigned long) &frame->info; /* a1: siginfo pointer */
416 regs->r18 = (unsigned long) &frame->uc; /* a2: ucontext pointer */
417 wrusp((unsigned long) frame);
418
419#if DEBUG_SIG
420 printk("SIG deliver (%s:%d): sp=%p pc=%p ra=%p\n",
421 current->comm, current->pid, frame, regs->pc, regs->r26);
422#endif
423
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
427
428/*
429 * OK, we're invoking a handler.
430 */
Al Virocbdfb9f2012-04-22 02:34:42 -0400431static inline void
Al Virocfd60c02012-11-07 17:38:51 -0500432handle_signal(struct ksignal *ksig, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Al Virob7f9a112012-05-02 09:59:21 -0400434 sigset_t *oldset = sigmask_to_save();
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700435 int ret;
436
Al Virocfd60c02012-11-07 17:38:51 -0500437 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
438 ret = setup_rt_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 else
Al Virocfd60c02012-11-07 17:38:51 -0500440 ret = setup_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Al Virocfd60c02012-11-07 17:38:51 -0500442 signal_setup_done(ret, ksig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445static inline void
446syscall_restart(unsigned long r0, unsigned long r19,
447 struct pt_regs *regs, struct k_sigaction *ka)
448{
449 switch (regs->r0) {
450 case ERESTARTSYS:
451 if (!(ka->sa.sa_flags & SA_RESTART)) {
452 case ERESTARTNOHAND:
453 regs->r0 = EINTR;
454 break;
455 }
456 /* fallthrough */
457 case ERESTARTNOINTR:
458 regs->r0 = r0; /* reset v0 and a3 and replay syscall */
459 regs->r19 = r19;
460 regs->pc -= 4;
461 break;
462 case ERESTART_RESTARTBLOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 regs->r0 = EINTR;
464 break;
465 }
466}
467
468
469/*
470 * Note that 'init' is a special process: it doesn't get signals it doesn't
471 * want to handle. Thus you cannot kill init even with a SIGKILL even by
472 * mistake.
473 *
474 * Note that we go through the signals twice: once to check the signals that
475 * the kernel can handle, and then we build all the user-level signal handling
476 * stack-frames in one go after that.
477 *
478 * "r0" and "r19" are the registers we need to restore for system call
479 * restart. "r0" is also used as an indicator whether we can restart at
480 * all (if we get here from anything but a syscall return, it will be 0)
481 */
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700482static void
Al Virod9d07382012-09-05 18:53:18 -0400483do_signal(struct pt_regs *regs, unsigned long r0, unsigned long r19)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 unsigned long single_stepping = ptrace_cancel_bpt(current);
Al Virocfd60c02012-11-07 17:38:51 -0500486 struct ksignal ksig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /* This lets the debugger run, ... */
Al Virocfd60c02012-11-07 17:38:51 -0500489 if (get_signal(&ksig)) {
490 /* ... so re-check the single stepping. */
491 single_stepping |= ptrace_cancel_bpt(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /* Whee! Actually deliver the signal. */
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700493 if (r0)
Al Virocfd60c02012-11-07 17:38:51 -0500494 syscall_restart(r0, r19, regs, &ksig.ka);
495 handle_signal(&ksig, regs);
496 } else {
497 single_stepping |= ptrace_cancel_bpt(current);
498 if (r0) {
499 switch (regs->r0) {
500 case ERESTARTNOHAND:
501 case ERESTARTSYS:
502 case ERESTARTNOINTR:
503 /* Reset v0 and a3 and replay syscall. */
504 regs->r0 = r0;
505 regs->r19 = r19;
506 regs->pc -= 4;
507 break;
508 case ERESTART_RESTARTBLOCK:
509 /* Set v0 to the restart_syscall and replay */
510 regs->r0 = __NR_restart_syscall;
511 regs->pc -= 4;
512 break;
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
Al Virocfd60c02012-11-07 17:38:51 -0500515 restore_saved_sigmask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 if (single_stepping)
518 ptrace_set_bpt(current); /* re-set breakpoint */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
521void
Al Virocb450762012-10-10 23:50:59 -0400522do_work_pending(struct pt_regs *regs, unsigned long thread_flags,
Richard Hendersonb927b3e2007-05-29 16:03:28 -0700523 unsigned long r0, unsigned long r19)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Al Viro6972d6f2012-09-05 18:30:34 -0400525 do {
526 if (thread_flags & _TIF_NEED_RESCHED) {
527 schedule();
528 } else {
529 local_irq_enable();
530 if (thread_flags & _TIF_SIGPENDING) {
Al Virod9d07382012-09-05 18:53:18 -0400531 do_signal(regs, r0, r19);
Al Viro6972d6f2012-09-05 18:30:34 -0400532 r0 = 0;
533 } else {
534 clear_thread_flag(TIF_NOTIFY_RESUME);
535 tracehook_notify_resume(regs);
536 }
537 }
538 local_irq_disable();
539 thread_flags = current_thread_info()->flags;
540 } while (thread_flags & _TIF_WORK_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}