blob: 7b8f2141427bda172899bfe8ae5113367163af47 [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 Buytenhek3bec6ded2006-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 Buytenhek3bec6ded2006-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 Buytenhek3bec6ded2006-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
110static int restore_vfp_context(struct vfp_sigframe __user *frame)
111{
Imre Deak82c6f5a2010-04-11 15:58:27 +0100112 unsigned long magic;
113 unsigned long size;
Imre Deak82c6f5a2010-04-11 15:58:27 +0100114 int err = 0;
115
116 __get_user_error(magic, &frame->magic, err);
117 __get_user_error(size, &frame->size, err);
118
119 if (err)
120 return -EFAULT;
121 if (magic != VFP_MAGIC || size != VFP_STORAGE_SIZE)
122 return -EINVAL;
123
Will Deacon24988142012-04-23 15:38:28 +0100124 return vfp_restore_user_hwstate(&frame->ufp, &frame->ufp_exc);
Imre Deak82c6f5a2010-04-11 15:58:27 +0100125}
126
127#endif
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * Do a signal return; undo the signal stack. These are aligned to 64-bit.
131 */
132struct sigframe {
Russell King7d4fdc12006-06-15 20:13:25 +0100133 struct ucontext uc;
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000134 unsigned long retcode[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137struct rt_sigframe {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct siginfo info;
Russell Kingcb3504e2006-06-15 20:18:25 +0100139 struct sigframe sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
Russell King68071482006-06-15 20:23:02 +0100142static int restore_sigframe(struct pt_regs *regs, struct sigframe __user *sf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
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
152 __get_user_error(regs->ARM_r0, &sf->uc.uc_mcontext.arm_r0, err);
153 __get_user_error(regs->ARM_r1, &sf->uc.uc_mcontext.arm_r1, err);
154 __get_user_error(regs->ARM_r2, &sf->uc.uc_mcontext.arm_r2, err);
155 __get_user_error(regs->ARM_r3, &sf->uc.uc_mcontext.arm_r3, err);
156 __get_user_error(regs->ARM_r4, &sf->uc.uc_mcontext.arm_r4, err);
157 __get_user_error(regs->ARM_r5, &sf->uc.uc_mcontext.arm_r5, err);
158 __get_user_error(regs->ARM_r6, &sf->uc.uc_mcontext.arm_r6, err);
159 __get_user_error(regs->ARM_r7, &sf->uc.uc_mcontext.arm_r7, err);
160 __get_user_error(regs->ARM_r8, &sf->uc.uc_mcontext.arm_r8, err);
161 __get_user_error(regs->ARM_r9, &sf->uc.uc_mcontext.arm_r9, err);
162 __get_user_error(regs->ARM_r10, &sf->uc.uc_mcontext.arm_r10, err);
163 __get_user_error(regs->ARM_fp, &sf->uc.uc_mcontext.arm_fp, err);
164 __get_user_error(regs->ARM_ip, &sf->uc.uc_mcontext.arm_ip, err);
165 __get_user_error(regs->ARM_sp, &sf->uc.uc_mcontext.arm_sp, err);
166 __get_user_error(regs->ARM_lr, &sf->uc.uc_mcontext.arm_lr, err);
167 __get_user_error(regs->ARM_pc, &sf->uc.uc_mcontext.arm_pc, err);
168 __get_user_error(regs->ARM_cpsr, &sf->uc.uc_mcontext.arm_cpsr, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 err |= !valid_user_regs(regs);
171
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100172 aux = (struct aux_sigframe __user *) sf->uc.uc_regspace;
Lennert Buytenhek3bec6ded2006-06-27 22:56:18 +0100173#ifdef CONFIG_CRUNCH
174 if (err == 0)
175 err |= restore_crunch_context(&aux->crunch);
176#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#ifdef CONFIG_IWMMXT
178 if (err == 0 && test_thread_flag(TIF_USING_IWMMXT))
179 err |= restore_iwmmxt_context(&aux->iwmmxt);
180#endif
181#ifdef CONFIG_VFP
Imre Deak82c6f5a2010-04-11 15:58:27 +0100182 if (err == 0)
183 err |= restore_vfp_context(&aux->vfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#endif
185
186 return err;
187}
188
189asmlinkage int sys_sigreturn(struct pt_regs *regs)
190{
191 struct sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 /* Always make any pending restarted system calls return -EINTR */
Andy Lutomirskif56141e2015-02-12 15:01:14 -0800194 current->restart_block.fn = do_no_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /*
197 * Since we stacked the signal on a 64-bit boundary,
198 * then 'sp' should be word aligned here. If it's
199 * not, then the user is trying to mess with us.
200 */
201 if (regs->ARM_sp & 7)
202 goto badframe;
203
204 frame = (struct sigframe __user *)regs->ARM_sp;
205
206 if (!access_ok(VERIFY_READ, frame, sizeof (*frame)))
207 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Russell King68071482006-06-15 20:23:02 +0100209 if (restore_sigframe(regs, frame))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto badframe;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return regs->ARM_r0;
213
214badframe:
215 force_sig(SIGSEGV, current);
216 return 0;
217}
218
219asmlinkage int sys_rt_sigreturn(struct pt_regs *regs)
220{
221 struct rt_sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Always make any pending restarted system calls return -EINTR */
Andy Lutomirskif56141e2015-02-12 15:01:14 -0800224 current->restart_block.fn = do_no_restart_syscall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /*
227 * Since we stacked the signal on a 64-bit boundary,
228 * then 'sp' should be word aligned here. If it's
229 * not, then the user is trying to mess with us.
230 */
231 if (regs->ARM_sp & 7)
232 goto badframe;
233
234 frame = (struct rt_sigframe __user *)regs->ARM_sp;
235
236 if (!access_ok(VERIFY_READ, frame, sizeof (*frame)))
237 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Russell King68071482006-06-15 20:23:02 +0100239 if (restore_sigframe(regs, &frame->sig))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto badframe;
241
Al Viroec93ac82012-12-23 01:52:54 -0500242 if (restore_altstack(&frame->sig.uc.uc_stack))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto badframe;
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return regs->ARM_r0;
246
247badframe:
248 force_sig(SIGSEGV, current);
249 return 0;
250}
251
252static int
Russell Kingaca6ca12006-06-15 20:28:03 +0100253setup_sigframe(struct sigframe __user *sf, struct pt_regs *regs, sigset_t *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100255 struct aux_sigframe __user *aux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 int err = 0;
257
Russell Kingaca6ca12006-06-15 20:28:03 +0100258 __put_user_error(regs->ARM_r0, &sf->uc.uc_mcontext.arm_r0, err);
259 __put_user_error(regs->ARM_r1, &sf->uc.uc_mcontext.arm_r1, err);
260 __put_user_error(regs->ARM_r2, &sf->uc.uc_mcontext.arm_r2, err);
261 __put_user_error(regs->ARM_r3, &sf->uc.uc_mcontext.arm_r3, err);
262 __put_user_error(regs->ARM_r4, &sf->uc.uc_mcontext.arm_r4, err);
263 __put_user_error(regs->ARM_r5, &sf->uc.uc_mcontext.arm_r5, err);
264 __put_user_error(regs->ARM_r6, &sf->uc.uc_mcontext.arm_r6, err);
265 __put_user_error(regs->ARM_r7, &sf->uc.uc_mcontext.arm_r7, err);
266 __put_user_error(regs->ARM_r8, &sf->uc.uc_mcontext.arm_r8, err);
267 __put_user_error(regs->ARM_r9, &sf->uc.uc_mcontext.arm_r9, err);
268 __put_user_error(regs->ARM_r10, &sf->uc.uc_mcontext.arm_r10, err);
269 __put_user_error(regs->ARM_fp, &sf->uc.uc_mcontext.arm_fp, err);
270 __put_user_error(regs->ARM_ip, &sf->uc.uc_mcontext.arm_ip, err);
271 __put_user_error(regs->ARM_sp, &sf->uc.uc_mcontext.arm_sp, err);
272 __put_user_error(regs->ARM_lr, &sf->uc.uc_mcontext.arm_lr, err);
273 __put_user_error(regs->ARM_pc, &sf->uc.uc_mcontext.arm_pc, err);
274 __put_user_error(regs->ARM_cpsr, &sf->uc.uc_mcontext.arm_cpsr, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Russell Kingaca6ca12006-06-15 20:28:03 +0100276 __put_user_error(current->thread.trap_no, &sf->uc.uc_mcontext.trap_no, err);
277 __put_user_error(current->thread.error_code, &sf->uc.uc_mcontext.error_code, err);
278 __put_user_error(current->thread.address, &sf->uc.uc_mcontext.fault_address, err);
279 __put_user_error(set->sig[0], &sf->uc.uc_mcontext.oldmask, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Russell Kingaca6ca12006-06-15 20:28:03 +0100281 err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(*set));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100283 aux = (struct aux_sigframe __user *) sf->uc.uc_regspace;
Lennert Buytenhek3bec6ded2006-06-27 22:56:18 +0100284#ifdef CONFIG_CRUNCH
285 if (err == 0)
286 err |= preserve_crunch_context(&aux->crunch);
287#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288#ifdef CONFIG_IWMMXT
289 if (err == 0 && test_thread_flag(TIF_USING_IWMMXT))
290 err |= preserve_iwmmxt_context(&aux->iwmmxt);
291#endif
292#ifdef CONFIG_VFP
Imre Deak82c6f5a2010-04-11 15:58:27 +0100293 if (err == 0)
294 err |= preserve_vfp_context(&aux->vfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#endif
Daniel Jacobowitz85fe0682006-06-24 23:46:21 +0100296 __put_user_error(0, &aux->end_magic, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return err;
299}
300
301static inline void __user *
Al Viro7e243642012-11-07 17:53:13 -0500302get_sigframe(struct ksignal *ksig, struct pt_regs *regs, int framesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Al Viro7e243642012-11-07 17:53:13 -0500304 unsigned long sp = sigsp(regs->ARM_sp, ksig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 void __user *frame;
306
307 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * ATPCS B01 mandates 8-byte alignment
309 */
310 frame = (void __user *)((sp - framesize) & ~7);
311
312 /*
313 * Check that we can actually write to the signal frame.
314 */
315 if (!access_ok(VERIFY_WRITE, frame, framesize))
316 frame = NULL;
317
318 return frame;
319}
320
Al Viro7e243642012-11-07 17:53:13 -0500321static int
322setup_return(struct pt_regs *regs, struct ksignal *ksig,
323 unsigned long __user *rc, void __user *frame)
324{
325 unsigned long handler = (unsigned long)ksig->ka.sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 unsigned long retcode;
327 int thumb = 0;
Russell King53399052011-02-20 12:22:52 +0000328 unsigned long cpsr = regs->ARM_cpsr & ~(PSR_f | PSR_E_BIT);
329
330 cpsr |= PSR_ENDSTATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /*
333 * Maybe we need to deliver a 32-bit signal to a 26-bit task.
334 */
Al Viro7e243642012-11-07 17:53:13 -0500335 if (ksig->ka.sa.sa_flags & SA_THIRTYTWO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 cpsr = (cpsr & ~MODE_MASK) | USR_MODE;
337
338#ifdef CONFIG_ARM_THUMB
339 if (elf_hwcap & HWCAP_THUMB) {
340 /*
341 * The LSB of the handler determines if we're going to
342 * be using THUMB or ARM mode for this signal handler.
343 */
344 thumb = handler & 1;
345
T.J. Purtell6ecf8302013-11-06 18:38:05 +0100346 /*
Russell King9b556132015-09-11 16:44:02 +0100347 * Clear the If-Then Thumb-2 execution state. ARM spec
348 * requires this to be all 000s in ARM mode. Snapdragon
349 * S4/Krait misbehaves on a Thumb=>ARM signal transition
350 * without this.
351 *
352 * We must do this whenever we are running on a Thumb-2
353 * capable CPU, which includes ARMv6T2. However, we elect
Russell King12fc7302015-09-16 11:08:49 +0100354 * to always do this to simplify the code; this field is
355 * marked UNK/SBZP for older architectures.
T.J. Purtell6ecf8302013-11-06 18:38:05 +0100356 */
357 cpsr &= ~PSR_IT_MASK;
T.J. Purtell6ecf8302013-11-06 18:38:05 +0100358
Catalin Marinasd71e1352009-05-30 14:00:15 +0100359 if (thumb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 cpsr |= PSR_T_BIT;
Catalin Marinasd71e1352009-05-30 14:00:15 +0100361 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 cpsr &= ~PSR_T_BIT;
363 }
364#endif
365
Al Viro7e243642012-11-07 17:53:13 -0500366 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
367 retcode = (unsigned long)ksig->ka.sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 } else {
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000369 unsigned int idx = thumb << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Al Viro7e243642012-11-07 17:53:13 -0500371 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000372 idx += 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Jonathan Austin9dfc28b2013-04-18 18:37:24 +0100374 /*
375 * Put the sigreturn code on the stack no matter which return
376 * mechanism we use in order to remain ABI compliant
377 */
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000378 if (__put_user(sigreturn_codes[idx], rc) ||
379 __put_user(sigreturn_codes[idx+1], rc+1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return 1;
381
Russell King8c0cc8a2013-08-03 10:39:51 +0100382#ifdef CONFIG_MMU
383 if (cpsr & MODE32_BIT) {
Russell King48be69a2013-07-24 00:29:18 +0100384 struct mm_struct *mm = current->mm;
385
Russell Kinge00d3492005-06-22 20:26:05 +0100386 /*
Russell King48be69a2013-07-24 00:29:18 +0100387 * 32-bit code can use the signal return page
388 * except when the MPU has protected the vectors
389 * page from PL0
Russell Kinge00d3492005-06-22 20:26:05 +0100390 */
Russell King48be69a2013-07-24 00:29:18 +0100391 retcode = mm->context.sigpage + signal_return_offset +
392 (idx << 2) + thumb;
Russell King8c0cc8a2013-08-03 10:39:51 +0100393 } else
394#endif
395 {
Russell Kinge00d3492005-06-22 20:26:05 +0100396 /*
397 * Ensure that the instruction cache sees
398 * the return code written onto the stack.
399 */
400 flush_icache_range((unsigned long)rc,
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000401 (unsigned long)(rc + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Russell Kinge00d3492005-06-22 20:26:05 +0100403 retcode = ((unsigned long)rc) + thumb;
404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
Richard Weinbergera4980442014-07-13 15:24:03 +0200407 regs->ARM_r0 = ksig->sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 regs->ARM_sp = (unsigned long)frame;
409 regs->ARM_lr = retcode;
410 regs->ARM_pc = handler;
411 regs->ARM_cpsr = cpsr;
412
413 return 0;
414}
415
416static int
Al Viro7e243642012-11-07 17:53:13 -0500417setup_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Al Viro7e243642012-11-07 17:53:13 -0500419 struct sigframe __user *frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 int err = 0;
421
422 if (!frame)
423 return 1;
424
Russell Kingca195cf2006-06-24 22:41:09 +0100425 /*
426 * Set uc.uc_flags to a value which sc.trap_no would never have.
427 */
428 __put_user_error(0x5ac3c35a, &frame->uc.uc_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Russell Kingaca6ca12006-06-15 20:28:03 +0100430 err |= setup_sigframe(frame, regs, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (err == 0)
Al Viro7e243642012-11-07 17:53:13 -0500432 err = setup_return(regs, ksig, frame->retcode, frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 return err;
435}
436
437static int
Al Viro7e243642012-11-07 17:53:13 -0500438setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Al Viro7e243642012-11-07 17:53:13 -0500440 struct rt_sigframe __user *frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 int err = 0;
442
443 if (!frame)
444 return 1;
445
Al Viro7e243642012-11-07 17:53:13 -0500446 err |= copy_siginfo_to_user(&frame->info, &ksig->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Russell Kingcb3504e2006-06-15 20:18:25 +0100448 __put_user_error(0, &frame->sig.uc.uc_flags, err);
449 __put_user_error(NULL, &frame->sig.uc.uc_link, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Al Viroec93ac82012-12-23 01:52:54 -0500451 err |= __save_altstack(&frame->sig.uc.uc_stack, regs->ARM_sp);
Russell Kingaca6ca12006-06-15 20:28:03 +0100452 err |= setup_sigframe(&frame->sig, regs, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (err == 0)
Al Viro7e243642012-11-07 17:53:13 -0500454 err = setup_return(regs, ksig, frame->sig.retcode, frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (err == 0) {
457 /*
458 * For realtime signals we must also set the second and third
459 * arguments for the signal handler.
460 * -- Peter Maydell <pmaydell@chiark.greenend.org.uk> 2000-12-06
461 */
462 regs->ARM_r1 = (unsigned long)&frame->info;
Russell Kingcb3504e2006-06-15 20:18:25 +0100463 regs->ARM_r2 = (unsigned long)&frame->sig.uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465
466 return err;
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/*
470 * OK, we're invoking a handler
471 */
Al Viro7e243642012-11-07 17:53:13 -0500472static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Al Virob7f9a112012-05-02 09:59:21 -0400474 sigset_t *oldset = sigmask_to_save();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int ret;
476
477 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * Set up the stack frame
479 */
Al Viro7e243642012-11-07 17:53:13 -0500480 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
481 ret = setup_rt_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 else
Al Viro7e243642012-11-07 17:53:13 -0500483 ret = setup_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /*
486 * Check that the resulting registers are actually sane.
487 */
488 ret |= !valid_user_regs(regs);
489
Al Viro7e243642012-11-07 17:53:13 -0500490 signal_setup_done(ret, ksig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
493/*
494 * Note that 'init' is a special process: it doesn't get signals it doesn't
495 * want to handle. Thus you cannot kill init even with a SIGKILL even by
496 * mistake.
497 *
498 * Note that we go through the signals twice: once to check the signals that
499 * the kernel can handle, and then we build all the user-level signal handling
500 * stack-frames in one go after that.
501 */
Al Viro81783782012-07-19 17:48:21 +0100502static int do_signal(struct pt_regs *regs, int syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100504 unsigned int retval = 0, continue_addr = 0, restart_addr = 0;
Al Viro7e243642012-11-07 17:53:13 -0500505 struct ksignal ksig;
Al Viro81783782012-07-19 17:48:21 +0100506 int restart = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /*
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100509 * If we were from a system call, check for system call restarting...
510 */
511 if (syscall) {
512 continue_addr = regs->ARM_pc;
513 restart_addr = continue_addr - (thumb_mode(regs) ? 2 : 4);
514 retval = regs->ARM_r0;
515
516 /*
517 * Prepare for system call restart. We do this here so that a
518 * debugger will see the already changed PSW.
519 */
520 switch (retval) {
Al Viro81783782012-07-19 17:48:21 +0100521 case -ERESTART_RESTARTBLOCK:
Al Viro66285212012-07-19 17:48:50 +0100522 restart -= 2;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100523 case -ERESTARTNOHAND:
524 case -ERESTARTSYS:
525 case -ERESTARTNOINTR:
Al Viro81783782012-07-19 17:48:21 +0100526 restart++;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100527 regs->ARM_r0 = regs->ARM_ORIG_r0;
528 regs->ARM_pc = restart_addr;
529 break;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100530 }
531 }
532
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100533 /*
534 * Get the signal to deliver. When running under ptrace, at this
535 * point the debugger may change all our registers ...
536 */
Al Viro81783782012-07-19 17:48:21 +0100537 /*
538 * Depending on the signal settings we may need to revert the
539 * decision to restart the system call. But skip this if a
540 * debugger has chosen to restart at a different PC.
541 */
Al Viro7e243642012-11-07 17:53:13 -0500542 if (get_signal(&ksig)) {
543 /* handler */
544 if (unlikely(restart) && regs->ARM_pc == restart_addr) {
Will Deaconad82cc02012-07-19 17:46:44 +0100545 if (retval == -ERESTARTNOHAND ||
546 retval == -ERESTART_RESTARTBLOCK
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100547 || (retval == -ERESTARTSYS
Al Viro7e243642012-11-07 17:53:13 -0500548 && !(ksig.ka.sa.sa_flags & SA_RESTART))) {
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100549 regs->ARM_r0 = -EINTR;
550 regs->ARM_pc = continue_addr;
551 }
552 }
Al Viro7e243642012-11-07 17:53:13 -0500553 handle_signal(&ksig, regs);
554 } else {
555 /* no handler */
556 restore_saved_sigmask();
557 if (unlikely(restart) && regs->ARM_pc == restart_addr) {
558 regs->ARM_pc = continue_addr;
559 return restart;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
Al Viro7e243642012-11-07 17:53:13 -0500562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Al Viro81783782012-07-19 17:48:21 +0100565asmlinkage int
Al Viro0a267fa2012-07-19 17:47:55 +0100566do_work_pending(struct pt_regs *regs, unsigned int thread_flags, int syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Russell King3302cad2015-08-20 16:13:37 +0100568 /*
569 * The assembly code enters us with IRQs off, but it hasn't
570 * informed the tracing code of that for efficiency reasons.
571 * Update the trace code with the current status.
572 */
573 trace_hardirqs_off();
Al Viro0a267fa2012-07-19 17:47:55 +0100574 do {
575 if (likely(thread_flags & _TIF_NEED_RESCHED)) {
576 schedule();
577 } else {
578 if (unlikely(!user_mode(regs)))
Al Viro81783782012-07-19 17:48:21 +0100579 return 0;
Al Viro0a267fa2012-07-19 17:47:55 +0100580 local_irq_enable();
581 if (thread_flags & _TIF_SIGPENDING) {
Al Viro66285212012-07-19 17:48:50 +0100582 int restart = do_signal(regs, syscall);
583 if (unlikely(restart)) {
Al Viro81783782012-07-19 17:48:21 +0100584 /*
585 * Restart without handlers.
586 * Deal with it without leaving
587 * the kernel space.
588 */
Al Viro66285212012-07-19 17:48:50 +0100589 return restart;
Al Viro81783782012-07-19 17:48:21 +0100590 }
Al Viro0a267fa2012-07-19 17:47:55 +0100591 syscall = 0;
David A. Longc7edc9e2014-03-07 11:23:04 -0500592 } else if (thread_flags & _TIF_UPROBE) {
David A. Longc7edc9e2014-03-07 11:23:04 -0500593 uprobe_notify_resume(regs);
Al Viro0a267fa2012-07-19 17:47:55 +0100594 } else {
595 clear_thread_flag(TIF_NOTIFY_RESUME);
596 tracehook_notify_resume(regs);
597 }
598 }
599 local_irq_disable();
600 thread_flags = current_thread_info()->flags;
601 } while (thread_flags & _TIF_WORK_MASK);
Al Viro81783782012-07-19 17:48:21 +0100602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
Russell King48be69a2013-07-24 00:29:18 +0100604
Russell King48be69a2013-07-24 00:29:18 +0100605struct page *get_signal_page(void)
606{
Russell Kinge0d40752013-08-03 10:30:05 +0100607 unsigned long ptr;
608 unsigned offset;
609 struct page *page;
610 void *addr;
Russell King48be69a2013-07-24 00:29:18 +0100611
Russell Kinge0d40752013-08-03 10:30:05 +0100612 page = alloc_pages(GFP_KERNEL, 0);
Russell King48be69a2013-07-24 00:29:18 +0100613
Russell Kinge0d40752013-08-03 10:30:05 +0100614 if (!page)
615 return NULL;
Russell King48be69a2013-07-24 00:29:18 +0100616
Russell Kinge0d40752013-08-03 10:30:05 +0100617 addr = page_address(page);
Russell King48be69a2013-07-24 00:29:18 +0100618
Russell Kinge0d40752013-08-03 10:30:05 +0100619 /* Give the signal return code some randomness */
620 offset = 0x200 + (get_random_int() & 0x7fc);
621 signal_return_offset = offset;
Russell King48be69a2013-07-24 00:29:18 +0100622
Russell Kinge0d40752013-08-03 10:30:05 +0100623 /*
624 * Copy signal return handlers into the vector page, and
625 * set sigreturn to be a pointer to these.
626 */
627 memcpy(addr + offset, sigreturn_codes, sizeof(sigreturn_codes));
Russell King48be69a2013-07-24 00:29:18 +0100628
Russell Kinge0d40752013-08-03 10:30:05 +0100629 ptr = (unsigned long)addr + offset;
630 flush_icache_range(ptr, ptr + sizeof(sigreturn_codes));
Russell King48be69a2013-07-24 00:29:18 +0100631
Russell Kinge0d40752013-08-03 10:30:05 +0100632 return page;
Russell King48be69a2013-07-24 00:29:18 +0100633}