blob: 6bee5c9b11338c029c9c9f2a613ce178ea338c1c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/signal.c
3 *
Russell Kingab72b002009-10-25 15:39:37 +00004 * Copyright (C) 1995-2009 Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/errno.h>
Russell King48be69a2013-07-24 00:29:18 +010011#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/personality.h>
Russell King33fa9b12008-09-06 11:35:55 +010014#include <linux/uaccess.h>
David Howells733e5e42009-09-09 08:30:21 +010015#include <linux/tracehook.h>
David A. Longc7edc9e2014-03-07 11:23:04 -050016#include <linux/uprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Russell Kingee90dab2006-11-09 14:20:47 +000018#include <asm/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/cacheflush.h>
Russell King48be69a2013-07-24 00:29:18 +010020#include <asm/traps.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/ucontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/unistd.h>
Imre Deak82c6f5a2010-04-11 15:58:27 +010023#include <asm/vfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Victor Kamensky574e2b52013-08-27 22:41:57 -070025extern const unsigned long sigreturn_codes[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Russell King48be69a2013-07-24 00:29:18 +010027static unsigned long signal_return_offset;
28
Lennert Buytenhek3bec6de2006-06-27 22:56:18 +010029#ifdef CONFIG_CRUNCH
Hartley Sweeten65a50532009-08-04 23:20:45 +010030static int preserve_crunch_context(struct crunch_sigframe __user *frame)
Lennert Buytenhek3bec6de2006-06-27 22:56:18 +010031{
32 char kbuf[sizeof(*frame) + 8];
33 struct crunch_sigframe *kframe;
34
35 /* the crunch context must be 64 bit aligned */
36 kframe = (struct crunch_sigframe *)((unsigned long)(kbuf + 8) & ~7);
37 kframe->magic = CRUNCH_MAGIC;
38 kframe->size = CRUNCH_STORAGE_SIZE;
39 crunch_task_copy(current_thread_info(), &kframe->storage);
40 return __copy_to_user(frame, kframe, sizeof(*frame));
41}
42
Hartley Sweeten65a50532009-08-04 23:20:45 +010043static int restore_crunch_context(struct crunch_sigframe __user *frame)
Lennert Buytenhek3bec6de2006-06-27 22:56:18 +010044{
45 char kbuf[sizeof(*frame) + 8];
46 struct crunch_sigframe *kframe;
47
48 /* the crunch context must be 64 bit aligned */
49 kframe = (struct crunch_sigframe *)((unsigned long)(kbuf + 8) & ~7);
50 if (__copy_from_user(kframe, frame, sizeof(*frame)))
51 return -1;
52 if (kframe->magic != CRUNCH_MAGIC ||
53 kframe->size != CRUNCH_STORAGE_SIZE)
54 return -1;
55 crunch_task_restore(current_thread_info(), &kframe->storage);
56 return 0;
57}
58#endif
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#ifdef CONFIG_IWMMXT
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int preserve_iwmmxt_context(struct iwmmxt_sigframe *frame)
63{
Hugh Dickins69b04752005-10-29 18:16:36 -070064 char kbuf[sizeof(*frame) + 8];
65 struct iwmmxt_sigframe *kframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 /* the iWMMXt context must be 64 bit aligned */
Hugh Dickins69b04752005-10-29 18:16:36 -070068 kframe = (struct iwmmxt_sigframe *)((unsigned long)(kbuf + 8) & ~7);
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +010069 kframe->magic = IWMMXT_MAGIC;
70 kframe->size = IWMMXT_STORAGE_SIZE;
Hugh Dickins69b04752005-10-29 18:16:36 -070071 iwmmxt_task_copy(current_thread_info(), &kframe->storage);
72 return __copy_to_user(frame, kframe, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75static int restore_iwmmxt_context(struct iwmmxt_sigframe *frame)
76{
Hugh Dickins69b04752005-10-29 18:16:36 -070077 char kbuf[sizeof(*frame) + 8];
78 struct iwmmxt_sigframe *kframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Hugh Dickins69b04752005-10-29 18:16:36 -070080 /* the iWMMXt context must be 64 bit aligned */
81 kframe = (struct iwmmxt_sigframe *)((unsigned long)(kbuf + 8) & ~7);
82 if (__copy_from_user(kframe, frame, sizeof(*frame)))
83 return -1;
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +010084 if (kframe->magic != IWMMXT_MAGIC ||
85 kframe->size != IWMMXT_STORAGE_SIZE)
Hugh Dickins69b04752005-10-29 18:16:36 -070086 return -1;
87 iwmmxt_task_restore(current_thread_info(), &kframe->storage);
88 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91#endif
92
Imre Deak82c6f5a2010-04-11 15:58:27 +010093#ifdef CONFIG_VFP
94
95static int preserve_vfp_context(struct vfp_sigframe __user *frame)
96{
Imre Deak82c6f5a2010-04-11 15:58:27 +010097 const unsigned long magic = VFP_MAGIC;
98 const unsigned long size = VFP_STORAGE_SIZE;
99 int err = 0;
100
Imre Deak82c6f5a2010-04-11 15:58:27 +0100101 __put_user_error(magic, &frame->magic, err);
102 __put_user_error(size, &frame->size, err);
103
Will Deacon24988142012-04-23 15:38:28 +0100104 if (err)
105 return -EFAULT;
Imre Deak82c6f5a2010-04-11 15:58:27 +0100106
Will Deacon24988142012-04-23 15:38:28 +0100107 return vfp_preserve_user_clear_hwstate(&frame->ufp, &frame->ufp_exc);
Imre Deak82c6f5a2010-04-11 15:58:27 +0100108}
109
Russell King9c91b962018-11-07 11:43:58 -0500110static int restore_vfp_context(struct vfp_sigframe __user *auxp)
Imre Deak82c6f5a2010-04-11 15:58:27 +0100111{
Russell King9c91b962018-11-07 11:43:58 -0500112 struct vfp_sigframe frame;
113 int err;
Imre Deak82c6f5a2010-04-11 15:58:27 +0100114
Russell King9c91b962018-11-07 11:43:58 -0500115 err = __copy_from_user(&frame, (char __user *) auxp, sizeof(frame));
Imre Deak82c6f5a2010-04-11 15:58:27 +0100116
117 if (err)
Russell King9c91b962018-11-07 11:43:58 -0500118 return err;
119
120 if (frame.magic != VFP_MAGIC || frame.size != VFP_STORAGE_SIZE)
Imre Deak82c6f5a2010-04-11 15:58:27 +0100121 return -EINVAL;
122
Russell King9c91b962018-11-07 11:43:58 -0500123 return vfp_restore_user_hwstate(&frame.ufp, &frame.ufp_exc);
Imre Deak82c6f5a2010-04-11 15:58:27 +0100124}
125
126#endif
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * Do a signal return; undo the signal stack. These are aligned to 64-bit.
130 */
131struct sigframe {
Russell King7d4fdc12006-06-15 20:13:25 +0100132 struct ucontext uc;
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000133 unsigned long retcode[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134};
135
136struct rt_sigframe {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct siginfo info;
Russell Kingcb3504e2006-06-15 20:18:25 +0100138 struct sigframe sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
Russell King68071482006-06-15 20:23:02 +0100141static int restore_sigframe(struct pt_regs *regs, struct sigframe __user *sf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Russell King50f032c2018-11-07 11:43:57 -0500143 struct sigcontext context;
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100144 struct aux_sigframe __user *aux;
Russell King68071482006-06-15 20:23:02 +0100145 sigset_t set;
146 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Russell King68071482006-06-15 20:23:02 +0100148 err = __copy_from_user(&set, &sf->uc.uc_sigmask, sizeof(set));
Al Viro77097ae2012-04-27 13:58:59 -0400149 if (err == 0)
Matt Fleming101d9b02012-03-05 15:05:34 -0800150 set_current_blocked(&set);
Russell King68071482006-06-15 20:23:02 +0100151
Russell King50f032c2018-11-07 11:43:57 -0500152 err |= __copy_from_user(&context, &sf->uc.uc_mcontext, sizeof(context));
153 if (err == 0) {
154 regs->ARM_r0 = context.arm_r0;
155 regs->ARM_r1 = context.arm_r1;
156 regs->ARM_r2 = context.arm_r2;
157 regs->ARM_r3 = context.arm_r3;
158 regs->ARM_r4 = context.arm_r4;
159 regs->ARM_r5 = context.arm_r5;
160 regs->ARM_r6 = context.arm_r6;
161 regs->ARM_r7 = context.arm_r7;
162 regs->ARM_r8 = context.arm_r8;
163 regs->ARM_r9 = context.arm_r9;
164 regs->ARM_r10 = context.arm_r10;
165 regs->ARM_fp = context.arm_fp;
166 regs->ARM_ip = context.arm_ip;
167 regs->ARM_sp = context.arm_sp;
168 regs->ARM_lr = context.arm_lr;
169 regs->ARM_pc = context.arm_pc;
170 regs->ARM_cpsr = context.arm_cpsr;
171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 err |= !valid_user_regs(regs);
174
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100175 aux = (struct aux_sigframe __user *) sf->uc.uc_regspace;
Lennert Buytenhek3bec6de2006-06-27 22:56:18 +0100176#ifdef CONFIG_CRUNCH
177 if (err == 0)
178 err |= restore_crunch_context(&aux->crunch);
179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#ifdef CONFIG_IWMMXT
181 if (err == 0 && test_thread_flag(TIF_USING_IWMMXT))
182 err |= restore_iwmmxt_context(&aux->iwmmxt);
183#endif
184#ifdef CONFIG_VFP
Imre Deak82c6f5a2010-04-11 15:58:27 +0100185 if (err == 0)
186 err |= restore_vfp_context(&aux->vfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#endif
188
189 return err;
190}
191
192asmlinkage int sys_sigreturn(struct pt_regs *regs)
193{
194 struct sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /* Always make any pending restarted system calls return -EINTR */
Andy Lutomirskif56141e2015-02-12 15:01:14 -0800197 current->restart_block.fn = do_no_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
200 * Since we stacked the signal on a 64-bit boundary,
201 * then 'sp' should be word aligned here. If it's
202 * not, then the user is trying to mess with us.
203 */
204 if (regs->ARM_sp & 7)
205 goto badframe;
206
207 frame = (struct sigframe __user *)regs->ARM_sp;
208
209 if (!access_ok(VERIFY_READ, frame, sizeof (*frame)))
210 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Russell King68071482006-06-15 20:23:02 +0100212 if (restore_sigframe(regs, frame))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 goto badframe;
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return regs->ARM_r0;
216
217badframe:
218 force_sig(SIGSEGV, current);
219 return 0;
220}
221
222asmlinkage int sys_rt_sigreturn(struct pt_regs *regs)
223{
224 struct rt_sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* Always make any pending restarted system calls return -EINTR */
Andy Lutomirskif56141e2015-02-12 15:01:14 -0800227 current->restart_block.fn = do_no_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /*
230 * Since we stacked the signal on a 64-bit boundary,
231 * then 'sp' should be word aligned here. If it's
232 * not, then the user is trying to mess with us.
233 */
234 if (regs->ARM_sp & 7)
235 goto badframe;
236
237 frame = (struct rt_sigframe __user *)regs->ARM_sp;
238
239 if (!access_ok(VERIFY_READ, frame, sizeof (*frame)))
240 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Russell King68071482006-06-15 20:23:02 +0100242 if (restore_sigframe(regs, &frame->sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto badframe;
244
Al Viroec93ac82012-12-23 01:52:54 -0500245 if (restore_altstack(&frame->sig.uc.uc_stack))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 goto badframe;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return regs->ARM_r0;
249
250badframe:
251 force_sig(SIGSEGV, current);
252 return 0;
253}
254
255static int
Russell Kingaca6ca12006-06-15 20:28:03 +0100256setup_sigframe(struct sigframe __user *sf, struct pt_regs *regs, sigset_t *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100258 struct aux_sigframe __user *aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int err = 0;
260
Russell Kingaca6ca12006-06-15 20:28:03 +0100261 __put_user_error(regs->ARM_r0, &sf->uc.uc_mcontext.arm_r0, err);
262 __put_user_error(regs->ARM_r1, &sf->uc.uc_mcontext.arm_r1, err);
263 __put_user_error(regs->ARM_r2, &sf->uc.uc_mcontext.arm_r2, err);
264 __put_user_error(regs->ARM_r3, &sf->uc.uc_mcontext.arm_r3, err);
265 __put_user_error(regs->ARM_r4, &sf->uc.uc_mcontext.arm_r4, err);
266 __put_user_error(regs->ARM_r5, &sf->uc.uc_mcontext.arm_r5, err);
267 __put_user_error(regs->ARM_r6, &sf->uc.uc_mcontext.arm_r6, err);
268 __put_user_error(regs->ARM_r7, &sf->uc.uc_mcontext.arm_r7, err);
269 __put_user_error(regs->ARM_r8, &sf->uc.uc_mcontext.arm_r8, err);
270 __put_user_error(regs->ARM_r9, &sf->uc.uc_mcontext.arm_r9, err);
271 __put_user_error(regs->ARM_r10, &sf->uc.uc_mcontext.arm_r10, err);
272 __put_user_error(regs->ARM_fp, &sf->uc.uc_mcontext.arm_fp, err);
273 __put_user_error(regs->ARM_ip, &sf->uc.uc_mcontext.arm_ip, err);
274 __put_user_error(regs->ARM_sp, &sf->uc.uc_mcontext.arm_sp, err);
275 __put_user_error(regs->ARM_lr, &sf->uc.uc_mcontext.arm_lr, err);
276 __put_user_error(regs->ARM_pc, &sf->uc.uc_mcontext.arm_pc, err);
277 __put_user_error(regs->ARM_cpsr, &sf->uc.uc_mcontext.arm_cpsr, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Russell Kingaca6ca12006-06-15 20:28:03 +0100279 __put_user_error(current->thread.trap_no, &sf->uc.uc_mcontext.trap_no, err);
280 __put_user_error(current->thread.error_code, &sf->uc.uc_mcontext.error_code, err);
281 __put_user_error(current->thread.address, &sf->uc.uc_mcontext.fault_address, err);
282 __put_user_error(set->sig[0], &sf->uc.uc_mcontext.oldmask, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Russell Kingaca6ca12006-06-15 20:28:03 +0100284 err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(*set));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100286 aux = (struct aux_sigframe __user *) sf->uc.uc_regspace;
Lennert Buytenhek3bec6de2006-06-27 22:56:18 +0100287#ifdef CONFIG_CRUNCH
288 if (err == 0)
289 err |= preserve_crunch_context(&aux->crunch);
290#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#ifdef CONFIG_IWMMXT
292 if (err == 0 && test_thread_flag(TIF_USING_IWMMXT))
293 err |= preserve_iwmmxt_context(&aux->iwmmxt);
294#endif
295#ifdef CONFIG_VFP
Imre Deak82c6f5a2010-04-11 15:58:27 +0100296 if (err == 0)
297 err |= preserve_vfp_context(&aux->vfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298#endif
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100299 __put_user_error(0, &aux->end_magic, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 return err;
302}
303
304static inline void __user *
Al Viro7e243642012-11-07 17:53:13 -0500305get_sigframe(struct ksignal *ksig, struct pt_regs *regs, int framesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Al Viro7e243642012-11-07 17:53:13 -0500307 unsigned long sp = sigsp(regs->ARM_sp, ksig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 void __user *frame;
309
310 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 * ATPCS B01 mandates 8-byte alignment
312 */
313 frame = (void __user *)((sp - framesize) & ~7);
314
315 /*
316 * Check that we can actually write to the signal frame.
317 */
318 if (!access_ok(VERIFY_WRITE, frame, framesize))
319 frame = NULL;
320
321 return frame;
322}
323
Al Viro7e243642012-11-07 17:53:13 -0500324static int
325setup_return(struct pt_regs *regs, struct ksignal *ksig,
326 unsigned long __user *rc, void __user *frame)
327{
328 unsigned long handler = (unsigned long)ksig->ka.sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 unsigned long retcode;
330 int thumb = 0;
Russell King53399052011-02-20 12:22:52 +0000331 unsigned long cpsr = regs->ARM_cpsr & ~(PSR_f | PSR_E_BIT);
332
333 cpsr |= PSR_ENDSTATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Maybe we need to deliver a 32-bit signal to a 26-bit task.
337 */
Al Viro7e243642012-11-07 17:53:13 -0500338 if (ksig->ka.sa.sa_flags & SA_THIRTYTWO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 cpsr = (cpsr & ~MODE_MASK) | USR_MODE;
340
341#ifdef CONFIG_ARM_THUMB
342 if (elf_hwcap & HWCAP_THUMB) {
343 /*
344 * The LSB of the handler determines if we're going to
345 * be using THUMB or ARM mode for this signal handler.
346 */
347 thumb = handler & 1;
348
T.J. Purtell6ecf8302013-11-06 18:38:05 +0100349 /*
Russell King9b556132015-09-11 16:44:02 +0100350 * Clear the If-Then Thumb-2 execution state. ARM spec
351 * requires this to be all 000s in ARM mode. Snapdragon
352 * S4/Krait misbehaves on a Thumb=>ARM signal transition
353 * without this.
354 *
355 * We must do this whenever we are running on a Thumb-2
356 * capable CPU, which includes ARMv6T2. However, we elect
Russell King12fc7302015-09-16 11:08:49 +0100357 * to always do this to simplify the code; this field is
358 * marked UNK/SBZP for older architectures.
T.J. Purtell6ecf8302013-11-06 18:38:05 +0100359 */
360 cpsr &= ~PSR_IT_MASK;
T.J. Purtell6ecf8302013-11-06 18:38:05 +0100361
Catalin Marinasd71e1352009-05-30 14:00:15 +0100362 if (thumb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 cpsr |= PSR_T_BIT;
Catalin Marinasd71e1352009-05-30 14:00:15 +0100364 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 cpsr &= ~PSR_T_BIT;
366 }
367#endif
368
Al Viro7e243642012-11-07 17:53:13 -0500369 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
370 retcode = (unsigned long)ksig->ka.sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 } else {
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000372 unsigned int idx = thumb << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Al Viro7e243642012-11-07 17:53:13 -0500374 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000375 idx += 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Jonathan Austin9dfc28b2013-04-18 18:37:24 +0100377 /*
378 * Put the sigreturn code on the stack no matter which return
379 * mechanism we use in order to remain ABI compliant
380 */
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000381 if (__put_user(sigreturn_codes[idx], rc) ||
382 __put_user(sigreturn_codes[idx+1], rc+1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 1;
384
Russell King8c0cc8a2013-08-03 10:39:51 +0100385#ifdef CONFIG_MMU
386 if (cpsr & MODE32_BIT) {
Russell King48be69a2013-07-24 00:29:18 +0100387 struct mm_struct *mm = current->mm;
388
Russell Kinge00d3492005-06-22 20:26:05 +0100389 /*
Russell King48be69a2013-07-24 00:29:18 +0100390 * 32-bit code can use the signal return page
391 * except when the MPU has protected the vectors
392 * page from PL0
Russell Kinge00d3492005-06-22 20:26:05 +0100393 */
Russell King48be69a2013-07-24 00:29:18 +0100394 retcode = mm->context.sigpage + signal_return_offset +
395 (idx << 2) + thumb;
Russell King8c0cc8a2013-08-03 10:39:51 +0100396 } else
397#endif
398 {
Russell Kinge00d3492005-06-22 20:26:05 +0100399 /*
400 * Ensure that the instruction cache sees
401 * the return code written onto the stack.
402 */
403 flush_icache_range((unsigned long)rc,
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000404 (unsigned long)(rc + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Russell Kinge00d3492005-06-22 20:26:05 +0100406 retcode = ((unsigned long)rc) + thumb;
407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
Richard Weinbergera4980442014-07-13 15:24:03 +0200410 regs->ARM_r0 = ksig->sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 regs->ARM_sp = (unsigned long)frame;
412 regs->ARM_lr = retcode;
413 regs->ARM_pc = handler;
414 regs->ARM_cpsr = cpsr;
415
416 return 0;
417}
418
419static int
Al Viro7e243642012-11-07 17:53:13 -0500420setup_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Al Viro7e243642012-11-07 17:53:13 -0500422 struct sigframe __user *frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 int err = 0;
424
425 if (!frame)
426 return 1;
427
Russell Kingca195cf2006-06-24 22:41:09 +0100428 /*
429 * Set uc.uc_flags to a value which sc.trap_no would never have.
430 */
431 __put_user_error(0x5ac3c35a, &frame->uc.uc_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Russell Kingaca6ca12006-06-15 20:28:03 +0100433 err |= setup_sigframe(frame, regs, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (err == 0)
Al Viro7e243642012-11-07 17:53:13 -0500435 err = setup_return(regs, ksig, frame->retcode, frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 return err;
438}
439
440static int
Al Viro7e243642012-11-07 17:53:13 -0500441setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Al Viro7e243642012-11-07 17:53:13 -0500443 struct rt_sigframe __user *frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int err = 0;
445
446 if (!frame)
447 return 1;
448
Al Viro7e243642012-11-07 17:53:13 -0500449 err |= copy_siginfo_to_user(&frame->info, &ksig->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Russell Kingcb3504e2006-06-15 20:18:25 +0100451 __put_user_error(0, &frame->sig.uc.uc_flags, err);
452 __put_user_error(NULL, &frame->sig.uc.uc_link, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Al Viroec93ac82012-12-23 01:52:54 -0500454 err |= __save_altstack(&frame->sig.uc.uc_stack, regs->ARM_sp);
Russell Kingaca6ca12006-06-15 20:28:03 +0100455 err |= setup_sigframe(&frame->sig, regs, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (err == 0)
Al Viro7e243642012-11-07 17:53:13 -0500457 err = setup_return(regs, ksig, frame->sig.retcode, frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (err == 0) {
460 /*
461 * For realtime signals we must also set the second and third
462 * arguments for the signal handler.
463 * -- Peter Maydell <pmaydell@chiark.greenend.org.uk> 2000-12-06
464 */
465 regs->ARM_r1 = (unsigned long)&frame->info;
Russell Kingcb3504e2006-06-15 20:18:25 +0100466 regs->ARM_r2 = (unsigned long)&frame->sig.uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
469 return err;
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/*
473 * OK, we're invoking a handler
474 */
Al Viro7e243642012-11-07 17:53:13 -0500475static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Al Virob7f9a112012-05-02 09:59:21 -0400477 sigset_t *oldset = sigmask_to_save();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int ret;
479
480 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * Set up the stack frame
482 */
Al Viro7e243642012-11-07 17:53:13 -0500483 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
484 ret = setup_rt_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 else
Al Viro7e243642012-11-07 17:53:13 -0500486 ret = setup_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /*
489 * Check that the resulting registers are actually sane.
490 */
491 ret |= !valid_user_regs(regs);
492
Al Viro7e243642012-11-07 17:53:13 -0500493 signal_setup_done(ret, ksig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496/*
497 * Note that 'init' is a special process: it doesn't get signals it doesn't
498 * want to handle. Thus you cannot kill init even with a SIGKILL even by
499 * mistake.
500 *
501 * Note that we go through the signals twice: once to check the signals that
502 * the kernel can handle, and then we build all the user-level signal handling
503 * stack-frames in one go after that.
504 */
Al Viro81783782012-07-19 17:48:21 +0100505static int do_signal(struct pt_regs *regs, int syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100507 unsigned int retval = 0, continue_addr = 0, restart_addr = 0;
Al Viro7e243642012-11-07 17:53:13 -0500508 struct ksignal ksig;
Al Viro81783782012-07-19 17:48:21 +0100509 int restart = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /*
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100512 * If we were from a system call, check for system call restarting...
513 */
514 if (syscall) {
515 continue_addr = regs->ARM_pc;
516 restart_addr = continue_addr - (thumb_mode(regs) ? 2 : 4);
517 retval = regs->ARM_r0;
518
519 /*
520 * Prepare for system call restart. We do this here so that a
521 * debugger will see the already changed PSW.
522 */
523 switch (retval) {
Al Viro81783782012-07-19 17:48:21 +0100524 case -ERESTART_RESTARTBLOCK:
Al Viro66285212012-07-19 17:48:50 +0100525 restart -= 2;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100526 case -ERESTARTNOHAND:
527 case -ERESTARTSYS:
528 case -ERESTARTNOINTR:
Al Viro81783782012-07-19 17:48:21 +0100529 restart++;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100530 regs->ARM_r0 = regs->ARM_ORIG_r0;
531 regs->ARM_pc = restart_addr;
532 break;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100533 }
534 }
535
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100536 /*
537 * Get the signal to deliver. When running under ptrace, at this
538 * point the debugger may change all our registers ...
539 */
Al Viro81783782012-07-19 17:48:21 +0100540 /*
541 * Depending on the signal settings we may need to revert the
542 * decision to restart the system call. But skip this if a
543 * debugger has chosen to restart at a different PC.
544 */
Al Viro7e243642012-11-07 17:53:13 -0500545 if (get_signal(&ksig)) {
546 /* handler */
547 if (unlikely(restart) && regs->ARM_pc == restart_addr) {
Will Deaconad82cc02012-07-19 17:46:44 +0100548 if (retval == -ERESTARTNOHAND ||
549 retval == -ERESTART_RESTARTBLOCK
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100550 || (retval == -ERESTARTSYS
Al Viro7e243642012-11-07 17:53:13 -0500551 && !(ksig.ka.sa.sa_flags & SA_RESTART))) {
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100552 regs->ARM_r0 = -EINTR;
553 regs->ARM_pc = continue_addr;
554 }
555 }
Al Viro7e243642012-11-07 17:53:13 -0500556 handle_signal(&ksig, regs);
557 } else {
558 /* no handler */
559 restore_saved_sigmask();
560 if (unlikely(restart) && regs->ARM_pc == restart_addr) {
561 regs->ARM_pc = continue_addr;
562 return restart;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Al Viro7e243642012-11-07 17:53:13 -0500565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Al Viro81783782012-07-19 17:48:21 +0100568asmlinkage int
Al Viro0a267fa2012-07-19 17:47:55 +0100569do_work_pending(struct pt_regs *regs, unsigned int thread_flags, int syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Russell King3302cad2015-08-20 16:13:37 +0100571 /*
572 * The assembly code enters us with IRQs off, but it hasn't
573 * informed the tracing code of that for efficiency reasons.
574 * Update the trace code with the current status.
575 */
576 trace_hardirqs_off();
Al Viro0a267fa2012-07-19 17:47:55 +0100577 do {
578 if (likely(thread_flags & _TIF_NEED_RESCHED)) {
579 schedule();
580 } else {
581 if (unlikely(!user_mode(regs)))
Al Viro81783782012-07-19 17:48:21 +0100582 return 0;
Al Viro0a267fa2012-07-19 17:47:55 +0100583 local_irq_enable();
584 if (thread_flags & _TIF_SIGPENDING) {
Al Viro66285212012-07-19 17:48:50 +0100585 int restart = do_signal(regs, syscall);
586 if (unlikely(restart)) {
Al Viro81783782012-07-19 17:48:21 +0100587 /*
588 * Restart without handlers.
589 * Deal with it without leaving
590 * the kernel space.
591 */
Al Viro66285212012-07-19 17:48:50 +0100592 return restart;
Al Viro81783782012-07-19 17:48:21 +0100593 }
Al Viro0a267fa2012-07-19 17:47:55 +0100594 syscall = 0;
David A. Longc7edc9e2014-03-07 11:23:04 -0500595 } else if (thread_flags & _TIF_UPROBE) {
David A. Longc7edc9e2014-03-07 11:23:04 -0500596 uprobe_notify_resume(regs);
Al Viro0a267fa2012-07-19 17:47:55 +0100597 } else {
598 clear_thread_flag(TIF_NOTIFY_RESUME);
599 tracehook_notify_resume(regs);
600 }
601 }
602 local_irq_disable();
603 thread_flags = current_thread_info()->flags;
604 } while (thread_flags & _TIF_WORK_MASK);
Al Viro81783782012-07-19 17:48:21 +0100605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
Russell King48be69a2013-07-24 00:29:18 +0100607
Russell King48be69a2013-07-24 00:29:18 +0100608struct page *get_signal_page(void)
609{
Russell Kinge0d40752013-08-03 10:30:05 +0100610 unsigned long ptr;
611 unsigned offset;
612 struct page *page;
613 void *addr;
Russell King48be69a2013-07-24 00:29:18 +0100614
Russell Kinge0d40752013-08-03 10:30:05 +0100615 page = alloc_pages(GFP_KERNEL, 0);
Russell King48be69a2013-07-24 00:29:18 +0100616
Russell Kinge0d40752013-08-03 10:30:05 +0100617 if (!page)
618 return NULL;
Russell King48be69a2013-07-24 00:29:18 +0100619
Russell Kinge0d40752013-08-03 10:30:05 +0100620 addr = page_address(page);
Russell King48be69a2013-07-24 00:29:18 +0100621
Russell Kinge0d40752013-08-03 10:30:05 +0100622 /* Give the signal return code some randomness */
623 offset = 0x200 + (get_random_int() & 0x7fc);
624 signal_return_offset = offset;
Russell King48be69a2013-07-24 00:29:18 +0100625
Russell Kinge0d40752013-08-03 10:30:05 +0100626 /*
627 * Copy signal return handlers into the vector page, and
628 * set sigreturn to be a pointer to these.
629 */
630 memcpy(addr + offset, sigreturn_codes, sizeof(sigreturn_codes));
Russell King48be69a2013-07-24 00:29:18 +0100631
Russell Kinge0d40752013-08-03 10:30:05 +0100632 ptr = (unsigned long)addr + offset;
633 flush_icache_range(ptr, ptr + sizeof(sigreturn_codes));
Russell King48be69a2013-07-24 00:29:18 +0100634
Russell Kinge0d40752013-08-03 10:30:05 +0100635 return page;
Russell King48be69a2013-07-24 00:29:18 +0100636}