blob: b6cda06b455fc6e3b6fcde6313a93ad052bb3ada [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
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 Buytenhek3bec6de2006-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 Buytenhek3bec6de2006-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#if __LINUX_ARM_ARCH__ >= 7
347 /*
348 * Clear the If-Then Thumb-2 execution state
349 * ARM spec requires this to be all 000s in ARM mode
350 * Snapdragon S4/Krait misbehaves on a Thumb=>ARM
351 * signal transition without this.
352 */
353 cpsr &= ~PSR_IT_MASK;
354#endif
355
Catalin Marinasd71e1352009-05-30 14:00:15 +0100356 if (thumb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 cpsr |= PSR_T_BIT;
Catalin Marinasd71e1352009-05-30 14:00:15 +0100358 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 cpsr &= ~PSR_T_BIT;
360 }
361#endif
362
Al Viro7e243642012-11-07 17:53:13 -0500363 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
364 retcode = (unsigned long)ksig->ka.sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 } else {
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000366 unsigned int idx = thumb << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Al Viro7e243642012-11-07 17:53:13 -0500368 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000369 idx += 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Jonathan Austin9dfc28b2013-04-18 18:37:24 +0100371 /*
372 * Put the sigreturn code on the stack no matter which return
373 * mechanism we use in order to remain ABI compliant
374 */
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000375 if (__put_user(sigreturn_codes[idx], rc) ||
376 __put_user(sigreturn_codes[idx+1], rc+1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return 1;
378
Russell King8c0cc8a2013-08-03 10:39:51 +0100379#ifdef CONFIG_MMU
380 if (cpsr & MODE32_BIT) {
Russell King48be69a2013-07-24 00:29:18 +0100381 struct mm_struct *mm = current->mm;
382
Russell Kinge00d3492005-06-22 20:26:05 +0100383 /*
Russell King48be69a2013-07-24 00:29:18 +0100384 * 32-bit code can use the signal return page
385 * except when the MPU has protected the vectors
386 * page from PL0
Russell Kinge00d3492005-06-22 20:26:05 +0100387 */
Russell King48be69a2013-07-24 00:29:18 +0100388 retcode = mm->context.sigpage + signal_return_offset +
389 (idx << 2) + thumb;
Russell King8c0cc8a2013-08-03 10:39:51 +0100390 } else
391#endif
392 {
Russell Kinge00d3492005-06-22 20:26:05 +0100393 /*
394 * Ensure that the instruction cache sees
395 * the return code written onto the stack.
396 */
397 flush_icache_range((unsigned long)rc,
Nicolas Pitrefcca5382006-01-18 22:38:47 +0000398 (unsigned long)(rc + 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Russell Kinge00d3492005-06-22 20:26:05 +0100400 retcode = ((unsigned long)rc) + thumb;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
Richard Weinbergera4980442014-07-13 15:24:03 +0200404 regs->ARM_r0 = ksig->sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 regs->ARM_sp = (unsigned long)frame;
406 regs->ARM_lr = retcode;
407 regs->ARM_pc = handler;
408 regs->ARM_cpsr = cpsr;
409
410 return 0;
411}
412
413static int
Al Viro7e243642012-11-07 17:53:13 -0500414setup_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Al Viro7e243642012-11-07 17:53:13 -0500416 struct sigframe __user *frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 int err = 0;
418
419 if (!frame)
420 return 1;
421
Russell Kingca195cf2006-06-24 22:41:09 +0100422 /*
423 * Set uc.uc_flags to a value which sc.trap_no would never have.
424 */
425 __put_user_error(0x5ac3c35a, &frame->uc.uc_flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Russell Kingaca6ca12006-06-15 20:28:03 +0100427 err |= setup_sigframe(frame, regs, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (err == 0)
Al Viro7e243642012-11-07 17:53:13 -0500429 err = setup_return(regs, ksig, frame->retcode, frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 return err;
432}
433
434static int
Al Viro7e243642012-11-07 17:53:13 -0500435setup_rt_frame(struct ksignal *ksig, sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Al Viro7e243642012-11-07 17:53:13 -0500437 struct rt_sigframe __user *frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int err = 0;
439
440 if (!frame)
441 return 1;
442
Al Viro7e243642012-11-07 17:53:13 -0500443 err |= copy_siginfo_to_user(&frame->info, &ksig->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Russell Kingcb3504e2006-06-15 20:18:25 +0100445 __put_user_error(0, &frame->sig.uc.uc_flags, err);
446 __put_user_error(NULL, &frame->sig.uc.uc_link, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Al Viroec93ac82012-12-23 01:52:54 -0500448 err |= __save_altstack(&frame->sig.uc.uc_stack, regs->ARM_sp);
Russell Kingaca6ca12006-06-15 20:28:03 +0100449 err |= setup_sigframe(&frame->sig, regs, set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (err == 0)
Al Viro7e243642012-11-07 17:53:13 -0500451 err = setup_return(regs, ksig, frame->sig.retcode, frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (err == 0) {
454 /*
455 * For realtime signals we must also set the second and third
456 * arguments for the signal handler.
457 * -- Peter Maydell <pmaydell@chiark.greenend.org.uk> 2000-12-06
458 */
459 regs->ARM_r1 = (unsigned long)&frame->info;
Russell Kingcb3504e2006-06-15 20:18:25 +0100460 regs->ARM_r2 = (unsigned long)&frame->sig.uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 return err;
464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/*
467 * OK, we're invoking a handler
468 */
Al Viro7e243642012-11-07 17:53:13 -0500469static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Al Virob7f9a112012-05-02 09:59:21 -0400471 sigset_t *oldset = sigmask_to_save();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int ret;
473
474 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * Set up the stack frame
476 */
Al Viro7e243642012-11-07 17:53:13 -0500477 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
478 ret = setup_rt_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 else
Al Viro7e243642012-11-07 17:53:13 -0500480 ret = setup_frame(ksig, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 /*
483 * Check that the resulting registers are actually sane.
484 */
485 ret |= !valid_user_regs(regs);
486
Al Viro7e243642012-11-07 17:53:13 -0500487 signal_setup_done(ret, ksig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490/*
491 * Note that 'init' is a special process: it doesn't get signals it doesn't
492 * want to handle. Thus you cannot kill init even with a SIGKILL even by
493 * mistake.
494 *
495 * Note that we go through the signals twice: once to check the signals that
496 * the kernel can handle, and then we build all the user-level signal handling
497 * stack-frames in one go after that.
498 */
Al Viro81783782012-07-19 17:48:21 +0100499static int do_signal(struct pt_regs *regs, int syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100501 unsigned int retval = 0, continue_addr = 0, restart_addr = 0;
Al Viro7e243642012-11-07 17:53:13 -0500502 struct ksignal ksig;
Al Viro81783782012-07-19 17:48:21 +0100503 int restart = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /*
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100506 * If we were from a system call, check for system call restarting...
507 */
508 if (syscall) {
509 continue_addr = regs->ARM_pc;
510 restart_addr = continue_addr - (thumb_mode(regs) ? 2 : 4);
511 retval = regs->ARM_r0;
512
513 /*
514 * Prepare for system call restart. We do this here so that a
515 * debugger will see the already changed PSW.
516 */
517 switch (retval) {
Al Viro81783782012-07-19 17:48:21 +0100518 case -ERESTART_RESTARTBLOCK:
Al Viro66285212012-07-19 17:48:50 +0100519 restart -= 2;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100520 case -ERESTARTNOHAND:
521 case -ERESTARTSYS:
522 case -ERESTARTNOINTR:
Al Viro81783782012-07-19 17:48:21 +0100523 restart++;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100524 regs->ARM_r0 = regs->ARM_ORIG_r0;
525 regs->ARM_pc = restart_addr;
526 break;
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100527 }
528 }
529
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100530 /*
531 * Get the signal to deliver. When running under ptrace, at this
532 * point the debugger may change all our registers ...
533 */
Al Viro81783782012-07-19 17:48:21 +0100534 /*
535 * Depending on the signal settings we may need to revert the
536 * decision to restart the system call. But skip this if a
537 * debugger has chosen to restart at a different PC.
538 */
Al Viro7e243642012-11-07 17:53:13 -0500539 if (get_signal(&ksig)) {
540 /* handler */
541 if (unlikely(restart) && regs->ARM_pc == restart_addr) {
Will Deaconad82cc02012-07-19 17:46:44 +0100542 if (retval == -ERESTARTNOHAND ||
543 retval == -ERESTART_RESTARTBLOCK
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100544 || (retval == -ERESTARTSYS
Al Viro7e243642012-11-07 17:53:13 -0500545 && !(ksig.ka.sa.sa_flags & SA_RESTART))) {
Arnd Bergmann2af68df2011-05-03 18:32:55 +0100546 regs->ARM_r0 = -EINTR;
547 regs->ARM_pc = continue_addr;
548 }
549 }
Al Viro7e243642012-11-07 17:53:13 -0500550 handle_signal(&ksig, regs);
551 } else {
552 /* no handler */
553 restore_saved_sigmask();
554 if (unlikely(restart) && regs->ARM_pc == restart_addr) {
555 regs->ARM_pc = continue_addr;
556 return restart;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Al Viro7e243642012-11-07 17:53:13 -0500559 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Al Viro81783782012-07-19 17:48:21 +0100562asmlinkage int
Al Viro0a267fa2012-07-19 17:47:55 +0100563do_work_pending(struct pt_regs *regs, unsigned int thread_flags, int syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Russell King3302cad2015-08-20 16:13:37 +0100565 /*
566 * The assembly code enters us with IRQs off, but it hasn't
567 * informed the tracing code of that for efficiency reasons.
568 * Update the trace code with the current status.
569 */
570 trace_hardirqs_off();
Al Viro0a267fa2012-07-19 17:47:55 +0100571 do {
572 if (likely(thread_flags & _TIF_NEED_RESCHED)) {
573 schedule();
574 } else {
575 if (unlikely(!user_mode(regs)))
Al Viro81783782012-07-19 17:48:21 +0100576 return 0;
Al Viro0a267fa2012-07-19 17:47:55 +0100577 local_irq_enable();
578 if (thread_flags & _TIF_SIGPENDING) {
Al Viro66285212012-07-19 17:48:50 +0100579 int restart = do_signal(regs, syscall);
580 if (unlikely(restart)) {
Al Viro81783782012-07-19 17:48:21 +0100581 /*
582 * Restart without handlers.
583 * Deal with it without leaving
584 * the kernel space.
585 */
Al Viro66285212012-07-19 17:48:50 +0100586 return restart;
Al Viro81783782012-07-19 17:48:21 +0100587 }
Al Viro0a267fa2012-07-19 17:47:55 +0100588 syscall = 0;
David A. Longc7edc9e2014-03-07 11:23:04 -0500589 } else if (thread_flags & _TIF_UPROBE) {
David A. Longc7edc9e2014-03-07 11:23:04 -0500590 uprobe_notify_resume(regs);
Al Viro0a267fa2012-07-19 17:47:55 +0100591 } else {
592 clear_thread_flag(TIF_NOTIFY_RESUME);
593 tracehook_notify_resume(regs);
594 }
595 }
596 local_irq_disable();
597 thread_flags = current_thread_info()->flags;
598 } while (thread_flags & _TIF_WORK_MASK);
Al Viro81783782012-07-19 17:48:21 +0100599 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
Russell King48be69a2013-07-24 00:29:18 +0100601
Russell King48be69a2013-07-24 00:29:18 +0100602struct page *get_signal_page(void)
603{
Russell Kinge0d40752013-08-03 10:30:05 +0100604 unsigned long ptr;
605 unsigned offset;
606 struct page *page;
607 void *addr;
Russell King48be69a2013-07-24 00:29:18 +0100608
Russell Kinge0d40752013-08-03 10:30:05 +0100609 page = alloc_pages(GFP_KERNEL, 0);
Russell King48be69a2013-07-24 00:29:18 +0100610
Russell Kinge0d40752013-08-03 10:30:05 +0100611 if (!page)
612 return NULL;
Russell King48be69a2013-07-24 00:29:18 +0100613
Russell Kinge0d40752013-08-03 10:30:05 +0100614 addr = page_address(page);
Russell King48be69a2013-07-24 00:29:18 +0100615
Russell Kinge0d40752013-08-03 10:30:05 +0100616 /* Give the signal return code some randomness */
617 offset = 0x200 + (get_random_int() & 0x7fc);
618 signal_return_offset = offset;
Russell King48be69a2013-07-24 00:29:18 +0100619
Russell Kinge0d40752013-08-03 10:30:05 +0100620 /*
621 * Copy signal return handlers into the vector page, and
622 * set sigreturn to be a pointer to these.
623 */
624 memcpy(addr + offset, sigreturn_codes, sizeof(sigreturn_codes));
Russell King48be69a2013-07-24 00:29:18 +0100625
Russell Kinge0d40752013-08-03 10:30:05 +0100626 ptr = (unsigned long)addr + offset;
627 flush_icache_range(ptr, ptr + sizeof(sigreturn_codes));
Russell King48be69a2013-07-24 00:29:18 +0100628
Russell Kinge0d40752013-08-03 10:30:05 +0100629 return page;
Russell King48be69a2013-07-24 00:29:18 +0100630}