blob: ed6023a74f7761e530f6d473ffb035d646a5628b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1991, 1992 Linus Torvalds
7 * Copyright (C) 1994 - 2000 Ralf Baechle
8 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
Leonid Yegoshinca750642013-12-12 16:57:19 +00009 * Copyright (C) 2014, Imagination Technologies Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
Ralf Baechle02416dc2005-06-15 13:00:12 +000011#include <linux/cache.h>
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +020012#include <linux/context_tracking.h>
Ralf Baechle1f717922011-07-27 11:44:47 +010013#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sched.h>
15#include <linux/mm.h>
16#include <linux/personality.h>
17#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/signal.h>
20#include <linux/errno.h>
21#include <linux/wait.h>
22#include <linux/ptrace.h>
23#include <linux/unistd.h>
Ralf Baechle40e084a2015-07-29 22:44:53 +020024#include <linux/uprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/compiler.h>
Ralf Baechledbda6ac2009-02-08 16:00:26 +000026#include <linux/syscalls.h>
Atsushi Nemotofaea6232007-04-16 23:19:44 +090027#include <linux/uaccess.h>
David Howells733e5e42009-09-09 08:30:21 +010028#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Ralf Baechlee50c0a82005-05-31 11:49:19 +000030#include <asm/abi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/asm.h>
32#include <linux/bitops.h>
33#include <asm/cacheflush.h>
34#include <asm/fpu.h>
35#include <asm/sim.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/ucontext.h>
37#include <asm/cpu-features.h>
Ralf Baechle02416dc2005-06-15 13:00:12 +000038#include <asm/war.h>
David Howellsb81947c2012-03-28 18:30:02 +010039#include <asm/dsp.h>
Douglas Leung01be0572013-03-25 13:21:11 -050040#include <asm/inst.h>
Paul Burtonbf82cb32015-07-27 12:58:22 -070041#include <asm/msa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include "signal-common.h"
44
Paul Burton2db9ca02015-07-27 12:58:15 -070045static int (*save_fp_context)(void __user *sc);
46static int (*restore_fp_context)(void __user *sc);
Ralf Baechle137f6f32009-11-24 19:35:41 +000047
Ralf Baechle66680582007-02-13 01:31:48 +000048struct sigframe {
49 u32 sf_ass[4]; /* argument save space for o32 */
David Daneyd814c282010-02-18 16:13:05 -080050 u32 sf_pad[2]; /* Was: signal trampoline */
Paul Burtonf1fe2d22015-07-27 12:58:21 -070051
52 /* Matches struct ucontext from its uc_mcontext field onwards */
Ralf Baechle66680582007-02-13 01:31:48 +000053 struct sigcontext sf_sc;
54 sigset_t sf_mask;
Paul Burtonf1fe2d22015-07-27 12:58:21 -070055 unsigned long long sf_extcontext[0];
Ralf Baechle66680582007-02-13 01:31:48 +000056};
57
Franck Bui-Huuc0b9bae2007-02-05 15:24:21 +010058struct rt_sigframe {
59 u32 rs_ass[4]; /* argument save space for o32 */
David Daneyd814c282010-02-18 16:13:05 -080060 u32 rs_pad[2]; /* Was: signal trampoline */
Franck Bui-Huuc0b9bae2007-02-05 15:24:21 +010061 struct siginfo rs_info;
62 struct ucontext rs_uc;
63};
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
Paul Burtonb2ead522014-01-27 15:23:02 +000066 * Thread saved context copy to/from a signal context presumed to be on the
67 * user stack, and therefore accessed with appropriate macros from uaccess.h.
68 */
Paul Burton2db9ca02015-07-27 12:58:15 -070069static int copy_fp_to_sigcontext(void __user *sc)
Paul Burtonb2ead522014-01-27 15:23:02 +000070{
Paul Burton2db9ca02015-07-27 12:58:15 -070071 struct mips_abi *abi = current->thread.abi;
72 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
73 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
Paul Burtonb2ead522014-01-27 15:23:02 +000074 int i;
75 int err = 0;
Paul Burton6f0aba62015-07-27 12:58:17 -070076 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1;
Paul Burtonb2ead522014-01-27 15:23:02 +000077
Paul Burton6f0aba62015-07-27 12:58:17 -070078 for (i = 0; i < NUM_FPU_REGS; i += inc) {
Paul Burtonb2ead522014-01-27 15:23:02 +000079 err |=
80 __put_user(get_fpr64(&current->thread.fpu.fpr[i], 0),
Paul Burton2db9ca02015-07-27 12:58:15 -070081 &fpregs[i]);
Paul Burtonb2ead522014-01-27 15:23:02 +000082 }
Paul Burton2db9ca02015-07-27 12:58:15 -070083 err |= __put_user(current->thread.fpu.fcr31, csr);
Paul Burtonb2ead522014-01-27 15:23:02 +000084
85 return err;
86}
87
Paul Burton2db9ca02015-07-27 12:58:15 -070088static int copy_fp_from_sigcontext(void __user *sc)
Paul Burtonb2ead522014-01-27 15:23:02 +000089{
Paul Burton2db9ca02015-07-27 12:58:15 -070090 struct mips_abi *abi = current->thread.abi;
91 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
92 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
Paul Burtonb2ead522014-01-27 15:23:02 +000093 int i;
94 int err = 0;
Paul Burton6f0aba62015-07-27 12:58:17 -070095 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1;
Paul Burtonb2ead522014-01-27 15:23:02 +000096 u64 fpr_val;
97
Paul Burton6f0aba62015-07-27 12:58:17 -070098 for (i = 0; i < NUM_FPU_REGS; i += inc) {
Paul Burton2db9ca02015-07-27 12:58:15 -070099 err |= __get_user(fpr_val, &fpregs[i]);
Paul Burtonb2ead522014-01-27 15:23:02 +0000100 set_fpr64(&current->thread.fpu.fpr[i], 0, fpr_val);
101 }
Paul Burton2db9ca02015-07-27 12:58:15 -0700102 err |= __get_user(current->thread.fpu.fcr31, csr);
Paul Burtonb2ead522014-01-27 15:23:02 +0000103
104 return err;
105}
106
107/*
Paul Burton2db9ca02015-07-27 12:58:15 -0700108 * Wrappers for the assembly _{save,restore}_fp_context functions.
109 */
110static int save_hw_fp_context(void __user *sc)
111{
112 struct mips_abi *abi = current->thread.abi;
113 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
114 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
115
116 return _save_fp_context(fpregs, csr);
117}
118
119static int restore_hw_fp_context(void __user *sc)
120{
121 struct mips_abi *abi = current->thread.abi;
122 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
123 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
124
125 return _restore_fp_context(fpregs, csr);
126}
127
128/*
Paul Burtonbf82cb32015-07-27 12:58:22 -0700129 * Extended context handling.
130 */
131
132static inline void __user *sc_to_extcontext(void __user *sc)
133{
134 struct ucontext __user *uc;
135
136 /*
137 * We can just pretend the sigcontext is always embedded in a struct
138 * ucontext here, because the offset from sigcontext to extended
139 * context is the same in the struct sigframe case.
140 */
141 uc = container_of(sc, struct ucontext, uc_mcontext);
142 return &uc->uc_extcontext;
143}
144
145static int save_msa_extcontext(void __user *buf)
146{
147 struct msa_extcontext __user *msa = buf;
148 uint64_t val;
149 int i, err;
150
151 if (!thread_msa_context_live())
152 return 0;
153
154 /*
155 * Ensure that we can't lose the live MSA context between checking
156 * for it & writing it to memory.
157 */
158 preempt_disable();
159
160 if (is_msa_enabled()) {
161 /*
162 * There are no EVA versions of the vector register load/store
163 * instructions, so MSA context has to be saved to kernel memory
164 * and then copied to user memory. The save to kernel memory
165 * should already have been done when handling scalar FP
166 * context.
167 */
Masahiro Yamada97f26452016-08-03 13:45:50 -0700168 BUG_ON(IS_ENABLED(CONFIG_EVA));
Paul Burtonbf82cb32015-07-27 12:58:22 -0700169
170 err = __put_user(read_msa_csr(), &msa->csr);
171 err |= _save_msa_all_upper(&msa->wr);
172
173 preempt_enable();
174 } else {
175 preempt_enable();
176
177 err = __put_user(current->thread.fpu.msacsr, &msa->csr);
178
179 for (i = 0; i < NUM_FPU_REGS; i++) {
180 val = get_fpr64(&current->thread.fpu.fpr[i], 1);
181 err |= __put_user(val, &msa->wr[i]);
182 }
183 }
184
185 err |= __put_user(MSA_EXTCONTEXT_MAGIC, &msa->ext.magic);
186 err |= __put_user(sizeof(*msa), &msa->ext.size);
187
188 return err ? -EFAULT : sizeof(*msa);
189}
190
191static int restore_msa_extcontext(void __user *buf, unsigned int size)
192{
193 struct msa_extcontext __user *msa = buf;
194 unsigned long long val;
195 unsigned int csr;
196 int i, err;
197
Masahiro Yamada97f26452016-08-03 13:45:50 -0700198 if (!IS_ENABLED(CONFIG_CPU_HAS_MSA))
Paul Burton6533af42016-04-21 18:04:53 +0100199 return SIGSYS;
200
Paul Burtonbf82cb32015-07-27 12:58:22 -0700201 if (size != sizeof(*msa))
202 return -EINVAL;
203
204 err = get_user(csr, &msa->csr);
205 if (err)
206 return err;
207
208 preempt_disable();
209
210 if (is_msa_enabled()) {
211 /*
212 * There are no EVA versions of the vector register load/store
213 * instructions, so MSA context has to be copied to kernel
214 * memory and later loaded to registers. The same is true of
215 * scalar FP context, so FPU & MSA should have already been
216 * disabled whilst handling scalar FP context.
217 */
Masahiro Yamada97f26452016-08-03 13:45:50 -0700218 BUG_ON(IS_ENABLED(CONFIG_EVA));
Paul Burtonbf82cb32015-07-27 12:58:22 -0700219
220 write_msa_csr(csr);
221 err |= _restore_msa_all_upper(&msa->wr);
222 preempt_enable();
223 } else {
224 preempt_enable();
225
226 current->thread.fpu.msacsr = csr;
227
228 for (i = 0; i < NUM_FPU_REGS; i++) {
229 err |= __get_user(val, &msa->wr[i]);
230 set_fpr64(&current->thread.fpu.fpr[i], 1, val);
231 }
232 }
233
234 return err;
235}
236
237static int save_extcontext(void __user *buf)
238{
239 int sz;
240
241 sz = save_msa_extcontext(buf);
242 if (sz < 0)
243 return sz;
244 buf += sz;
245
246 /* If no context was saved then trivially return */
247 if (!sz)
248 return 0;
249
250 /* Write the end marker */
251 if (__put_user(END_EXTCONTEXT_MAGIC, (u32 *)buf))
252 return -EFAULT;
253
254 sz += sizeof(((struct extcontext *)NULL)->magic);
255 return sz;
256}
257
258static int restore_extcontext(void __user *buf)
259{
260 struct extcontext ext;
261 int err;
262
263 while (1) {
264 err = __get_user(ext.magic, (unsigned int *)buf);
265 if (err)
266 return err;
267
268 if (ext.magic == END_EXTCONTEXT_MAGIC)
269 return 0;
270
271 err = __get_user(ext.size, (unsigned int *)(buf
272 + offsetof(struct extcontext, size)));
273 if (err)
274 return err;
275
276 switch (ext.magic) {
277 case MSA_EXTCONTEXT_MAGIC:
278 err = restore_msa_extcontext(buf, ext.size);
279 break;
280
281 default:
282 err = -EINVAL;
283 break;
284 }
285
286 if (err)
287 return err;
288
289 buf += ext.size;
290 }
291}
292
293/*
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100294 * Helper routines
295 */
Paul Burtond02a40a2015-07-27 12:58:18 -0700296int protected_save_fp_context(void __user *sc)
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900297{
Paul Burton2db9ca02015-07-27 12:58:15 -0700298 struct mips_abi *abi = current->thread.abi;
299 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
300 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
Paul Burton64243c22015-07-27 12:58:16 -0700301 uint32_t __user *used_math = sc + abi->off_sc_used_math;
Paul Burtonbf82cb32015-07-27 12:58:22 -0700302 unsigned int used, ext_sz;
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900303 int err;
Paul Burton689ee852015-07-27 12:58:13 -0700304
Paul Burton0d071fa2015-07-27 12:58:20 -0700305 used = used_math() ? USED_FP : 0;
Paul Burtonbf82cb32015-07-27 12:58:22 -0700306 if (!used)
307 goto fp_done;
Paul Burton0d071fa2015-07-27 12:58:20 -0700308
Paul Burtonbf82cb32015-07-27 12:58:22 -0700309 if (!test_thread_flag(TIF_32BIT_FPREGS))
310 used |= USED_FR1;
311 if (test_thread_flag(TIF_HYBRID_FPREGS))
312 used |= USED_HYBRID_FPRS;
Paul Burton64243c22015-07-27 12:58:16 -0700313
Paul Burton689ee852015-07-27 12:58:13 -0700314 /*
315 * EVA does not have userland equivalents of ldc1 or sdc1, so
316 * save to the kernel FP context & copy that to userland below.
317 */
Masahiro Yamada97f26452016-08-03 13:45:50 -0700318 if (IS_ENABLED(CONFIG_EVA))
Paul Burton689ee852015-07-27 12:58:13 -0700319 lose_fpu(1);
320
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900321 while (1) {
322 lock_fpu_owner();
Paul Burtonff3aa5f2014-01-27 15:23:03 +0000323 if (is_fpu_owner()) {
324 err = save_fp_context(sc);
325 unlock_fpu_owner();
326 } else {
327 unlock_fpu_owner();
328 err = copy_fp_to_sigcontext(sc);
329 }
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900330 if (likely(!err))
331 break;
332 /* touch the sigcontext and try again */
Paul Burton2db9ca02015-07-27 12:58:15 -0700333 err = __put_user(0, &fpregs[0]) |
334 __put_user(0, &fpregs[31]) |
335 __put_user(0, csr);
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900336 if (err)
Paul Burtonbf82cb32015-07-27 12:58:22 -0700337 return err; /* really bad sigcontext */
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900338 }
Paul Burton689ee852015-07-27 12:58:13 -0700339
Paul Burtonbf82cb32015-07-27 12:58:22 -0700340fp_done:
341 ext_sz = err = save_extcontext(sc_to_extcontext(sc));
342 if (err < 0)
343 return err;
344 used |= ext_sz ? USED_EXTCONTEXT : 0;
345
346 return __put_user(used, used_math);
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900347}
348
Paul Burtond02a40a2015-07-27 12:58:18 -0700349int protected_restore_fp_context(void __user *sc)
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900350{
Paul Burton2db9ca02015-07-27 12:58:15 -0700351 struct mips_abi *abi = current->thread.abi;
352 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
353 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
Paul Burton64243c22015-07-27 12:58:16 -0700354 uint32_t __user *used_math = sc + abi->off_sc_used_math;
355 unsigned int used;
Paul Burtonbf82cb32015-07-27 12:58:22 -0700356 int err, sig = 0, tmp __maybe_unused;
Paul Burton64243c22015-07-27 12:58:16 -0700357
358 err = __get_user(used, used_math);
Paul Burton0d071fa2015-07-27 12:58:20 -0700359 conditional_used_math(used & USED_FP);
Paul Burton64243c22015-07-27 12:58:16 -0700360
361 /*
362 * The signal handler may have used FPU; give it up if the program
363 * doesn't want it following sigreturn.
364 */
Paul Burtonbf82cb32015-07-27 12:58:22 -0700365 if (err || !(used & USED_FP))
Paul Burton64243c22015-07-27 12:58:16 -0700366 lose_fpu(0);
Paul Burtonbf82cb32015-07-27 12:58:22 -0700367 if (err)
Paul Burton64243c22015-07-27 12:58:16 -0700368 return err;
Paul Burtonbf82cb32015-07-27 12:58:22 -0700369 if (!(used & USED_FP))
370 goto fp_done;
Paul Burton64243c22015-07-27 12:58:16 -0700371
372 err = sig = fpcsr_pending(csr);
373 if (err < 0)
374 return err;
Paul Burton689ee852015-07-27 12:58:13 -0700375
376 /*
377 * EVA does not have userland equivalents of ldc1 or sdc1, so we
378 * disable the FPU here such that the code below simply copies to
379 * the kernel FP context.
380 */
Masahiro Yamada97f26452016-08-03 13:45:50 -0700381 if (IS_ENABLED(CONFIG_EVA))
Paul Burton689ee852015-07-27 12:58:13 -0700382 lose_fpu(0);
383
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900384 while (1) {
385 lock_fpu_owner();
Paul Burtonff3aa5f2014-01-27 15:23:03 +0000386 if (is_fpu_owner()) {
387 err = restore_fp_context(sc);
388 unlock_fpu_owner();
389 } else {
390 unlock_fpu_owner();
391 err = copy_fp_from_sigcontext(sc);
392 }
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900393 if (likely(!err))
394 break;
395 /* touch the sigcontext and try again */
Paul Burton2db9ca02015-07-27 12:58:15 -0700396 err = __get_user(tmp, &fpregs[0]) |
397 __get_user(tmp, &fpregs[31]) |
398 __get_user(tmp, csr);
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900399 if (err)
400 break; /* really bad sigcontext */
401 }
Paul Burton689ee852015-07-27 12:58:13 -0700402
Paul Burtonbf82cb32015-07-27 12:58:22 -0700403fp_done:
Paul Burton6533af42016-04-21 18:04:53 +0100404 if (!err && (used & USED_EXTCONTEXT))
405 err = restore_extcontext(sc_to_extcontext(sc));
Paul Burtonbf82cb32015-07-27 12:58:22 -0700406
Paul Burton64243c22015-07-27 12:58:16 -0700407 return err ?: sig;
Atsushi Nemotofaea6232007-04-16 23:19:44 +0900408}
409
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100410int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
411{
412 int err = 0;
413 int i;
414
415 err |= __put_user(regs->cp0_epc, &sc->sc_pc);
416
417 err |= __put_user(0, &sc->sc_regs[0]);
418 for (i = 1; i < 32; i++)
419 err |= __put_user(regs->regs[i], &sc->sc_regs[i]);
420
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100421#ifdef CONFIG_CPU_HAS_SMARTMIPS
422 err |= __put_user(regs->acx, &sc->sc_acx);
423#endif
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100424 err |= __put_user(regs->hi, &sc->sc_mdhi);
425 err |= __put_user(regs->lo, &sc->sc_mdlo);
426 if (cpu_has_dsp) {
427 err |= __put_user(mfhi1(), &sc->sc_hi1);
428 err |= __put_user(mflo1(), &sc->sc_lo1);
429 err |= __put_user(mfhi2(), &sc->sc_hi2);
430 err |= __put_user(mflo2(), &sc->sc_lo2);
431 err |= __put_user(mfhi3(), &sc->sc_hi3);
432 err |= __put_user(mflo3(), &sc->sc_lo3);
433 err |= __put_user(rddsp(DSP_MASK), &sc->sc_dsp);
434 }
435
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100436
Paul Burton64243c22015-07-27 12:58:16 -0700437 /*
438 * Save FPU state to signal context. Signal handler
439 * will "inherit" current FPU state.
440 */
441 err |= protected_save_fp_context(sc);
442
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100443 return err;
444}
445
Paul Burtonbf82cb32015-07-27 12:58:22 -0700446static size_t extcontext_max_size(void)
447{
448 size_t sz = 0;
449
450 /*
451 * The assumption here is that between this point & the point at which
452 * the extended context is saved the size of the context should only
453 * ever be able to shrink (if the task is preempted), but never grow.
454 * That is, what this function returns is an upper bound on the size of
455 * the extended context for the current task at the current time.
456 */
457
458 if (thread_msa_context_live())
459 sz += sizeof(struct msa_extcontext);
460
461 /* If any context is saved then we'll append the end marker */
462 if (sz)
463 sz += sizeof(((struct extcontext *)NULL)->magic);
464
465 return sz;
466}
467
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900468int fpcsr_pending(unsigned int __user *fpcsr)
469{
470 int err, sig = 0;
471 unsigned int csr, enabled;
472
473 err = __get_user(csr, fpcsr);
474 enabled = FPU_CSR_UNI_X | ((csr & FPU_CSR_ALL_E) << 5);
475 /*
476 * If the signal handler set some FPU exceptions, clear it and
477 * send SIGFPE.
478 */
479 if (csr & enabled) {
480 csr &= ~enabled;
481 err |= __put_user(csr, fpcsr);
482 sig = SIGFPE;
483 }
484 return err ?: sig;
485}
486
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100487int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
488{
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100489 unsigned long treg;
490 int err = 0;
491 int i;
492
493 /* Always make any pending restarted system calls return -EINTR */
Andy Lutomirskif56141e2015-02-12 15:01:14 -0800494 current->restart_block.fn = do_no_restart_syscall;
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100495
496 err |= __get_user(regs->cp0_epc, &sc->sc_pc);
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100497
498#ifdef CONFIG_CPU_HAS_SMARTMIPS
499 err |= __get_user(regs->acx, &sc->sc_acx);
500#endif
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100501 err |= __get_user(regs->hi, &sc->sc_mdhi);
502 err |= __get_user(regs->lo, &sc->sc_mdlo);
503 if (cpu_has_dsp) {
504 err |= __get_user(treg, &sc->sc_hi1); mthi1(treg);
505 err |= __get_user(treg, &sc->sc_lo1); mtlo1(treg);
506 err |= __get_user(treg, &sc->sc_hi2); mthi2(treg);
507 err |= __get_user(treg, &sc->sc_lo2); mtlo2(treg);
508 err |= __get_user(treg, &sc->sc_hi3); mthi3(treg);
509 err |= __get_user(treg, &sc->sc_lo3); mtlo3(treg);
510 err |= __get_user(treg, &sc->sc_dsp); wrdsp(treg, DSP_MASK);
511 }
512
513 for (i = 1; i < 32; i++)
514 err |= __get_user(regs->regs[i], &sc->sc_regs[i]);
515
Paul Burton64243c22015-07-27 12:58:16 -0700516 return err ?: protected_restore_fp_context(sc);
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100517}
518
Richard Weinberger7c4f5632014-03-05 15:35:41 +0100519void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100520 size_t frame_size)
521{
522 unsigned long sp;
523
Paul Burtonbf82cb32015-07-27 12:58:22 -0700524 /* Leave space for potential extended context */
525 frame_size += extcontext_max_size();
526
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100527 /* Default to using normal stack */
528 sp = regs->regs[29];
529
530 /*
531 * FPU emulator may have it's own trampoline active just
532 * above the user stack, 16-bytes before the next lowest
533 * 16 byte boundary. Try to avoid trashing it.
534 */
535 sp -= 32;
536
Richard Weinberger7c4f5632014-03-05 15:35:41 +0100537 sp = sigsp(sp, ksig);
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100538
539 return (void __user *)((sp - frame_size) & (ICACHE_REFILLS_WORKAROUND_WAR ? ~(cpu_icache_line_size()-1) : ALMASK));
540}
541
Franck Bui-Huuc3fc4ab2007-02-05 15:24:20 +0100542/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 * Atomically swap in the new signal mask, and wait for a signal.
544 */
545
546#ifdef CONFIG_TRAD_SIGNALS
Al Viro1910f4a2012-12-25 16:25:18 -0500547SYSCALL_DEFINE1(sigsuspend, sigset_t __user *, uset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Al Viro1910f4a2012-12-25 16:25:18 -0500549 return sys_rt_sigsuspend(uset, sizeof(sigset_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551#endif
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#ifdef CONFIG_TRAD_SIGNALS
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000554SYSCALL_DEFINE3(sigaction, int, sig, const struct sigaction __user *, act,
555 struct sigaction __user *, oact)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct k_sigaction new_ka, old_ka;
558 int ret;
559 int err = 0;
560
561 if (act) {
562 old_sigset_t mask;
563
564 if (!access_ok(VERIFY_READ, act, sizeof(*act)))
565 return -EFAULT;
566 err |= __get_user(new_ka.sa.sa_handler, &act->sa_handler);
567 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
568 err |= __get_user(mask, &act->sa_mask.sig[0]);
569 if (err)
570 return -EFAULT;
571
572 siginitset(&new_ka.sa.sa_mask, mask);
573 }
574
575 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
576
577 if (!ret && oact) {
578 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)))
Ralf Baechlee0daad42007-02-05 00:10:11 +0000579 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 err |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
581 err |= __put_user(old_ka.sa.sa_handler, &oact->sa_handler);
582 err |= __put_user(old_ka.sa.sa_mask.sig[0], oact->sa_mask.sig);
583 err |= __put_user(0, &oact->sa_mask.sig[1]);
584 err |= __put_user(0, &oact->sa_mask.sig[2]);
585 err |= __put_user(0, &oact->sa_mask.sig[3]);
586 if (err)
587 return -EFAULT;
588 }
589
590 return ret;
591}
592#endif
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594#ifdef CONFIG_TRAD_SIGNALS
Paul Burton96a68b12018-08-01 13:12:42 -0700595asmlinkage void sys_sigreturn(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900597 struct sigframe __user *frame;
Paul Burton96a68b12018-08-01 13:12:42 -0700598 struct pt_regs *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 sigset_t blocked;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900600 int sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Paul Burton96a68b12018-08-01 13:12:42 -0700602 regs = current_pt_regs();
603 frame = (struct sigframe __user *)regs->regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
605 goto badframe;
606 if (__copy_from_user(&blocked, &frame->sf_mask, sizeof(blocked)))
607 goto badframe;
608
Matt Fleming8598f3c2012-02-14 11:40:52 +0000609 set_current_blocked(&blocked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Paul Burton96a68b12018-08-01 13:12:42 -0700611 sig = restore_sigcontext(regs, &frame->sf_sc);
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900612 if (sig < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 goto badframe;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900614 else if (sig)
615 force_sig(sig, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /*
618 * Don't let your children do this ...
619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 __asm__ __volatile__(
621 "move\t$29, %0\n\t"
622 "j\tsyscall_exit"
Paul Burton96a68b12018-08-01 13:12:42 -0700623 : /* no outputs */
624 : "r" (regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* Unreached */
626
627badframe:
628 force_sig(SIGSEGV, current);
629}
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000630#endif /* CONFIG_TRAD_SIGNALS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Paul Burton96a68b12018-08-01 13:12:42 -0700632asmlinkage void sys_rt_sigreturn(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900634 struct rt_sigframe __user *frame;
Paul Burton96a68b12018-08-01 13:12:42 -0700635 struct pt_regs *regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 sigset_t set;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900637 int sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Paul Burton96a68b12018-08-01 13:12:42 -0700639 regs = current_pt_regs();
640 frame = (struct rt_sigframe __user *)regs->regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
642 goto badframe;
643 if (__copy_from_user(&set, &frame->rs_uc.uc_sigmask, sizeof(set)))
644 goto badframe;
645
Matt Fleming8598f3c2012-02-14 11:40:52 +0000646 set_current_blocked(&set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Paul Burton96a68b12018-08-01 13:12:42 -0700648 sig = restore_sigcontext(regs, &frame->rs_uc.uc_mcontext);
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900649 if (sig < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 goto badframe;
Atsushi Nemotoc6a2f462007-03-10 01:03:48 +0900651 else if (sig)
652 force_sig(sig, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Al Viroea536ad2012-12-23 03:13:40 -0500654 if (restore_altstack(&frame->rs_uc.uc_stack))
655 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
657 /*
658 * Don't let your children do this ...
659 */
660 __asm__ __volatile__(
661 "move\t$29, %0\n\t"
662 "j\tsyscall_exit"
Paul Burton96a68b12018-08-01 13:12:42 -0700663 : /* no outputs */
664 : "r" (regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* Unreached */
666
667badframe:
668 force_sig(SIGSEGV, current);
669}
670
671#ifdef CONFIG_TRAD_SIGNALS
Richard Weinberger81d103b2013-10-06 22:25:42 +0200672static int setup_frame(void *sig_return, struct ksignal *ksig,
673 struct pt_regs *regs, sigset_t *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900675 struct sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 int err = 0;
677
Richard Weinberger7c4f5632014-03-05 15:35:41 +0100678 frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 if (!access_ok(VERIFY_WRITE, frame, sizeof (*frame)))
Richard Weinberger81d103b2013-10-06 22:25:42 +0200680 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 err |= setup_sigcontext(regs, &frame->sf_sc);
683 err |= __copy_to_user(&frame->sf_mask, set, sizeof(*set));
684 if (err)
Richard Weinberger81d103b2013-10-06 22:25:42 +0200685 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 /*
688 * Arguments to signal handler:
689 *
690 * a0 = signal number
691 * a1 = 0 (should be cause)
692 * a2 = pointer to struct sigcontext
693 *
694 * $25 and c0_epc point to the signal handler, $29 points to the
695 * struct sigframe.
696 */
Richard Weinberger81d103b2013-10-06 22:25:42 +0200697 regs->regs[ 4] = ksig->sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 regs->regs[ 5] = 0;
699 regs->regs[ 6] = (unsigned long) &frame->sf_sc;
700 regs->regs[29] = (unsigned long) frame;
David Daneyd814c282010-02-18 16:13:05 -0800701 regs->regs[31] = (unsigned long) sig_return;
Richard Weinberger81d103b2013-10-06 22:25:42 +0200702 regs->cp0_epc = regs->regs[25] = (unsigned long) ksig->ka.sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100704 DEBUGP("SIG deliver (%s:%d): sp=0x%p pc=0x%lx ra=0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 current->comm, current->pid,
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100706 frame, regs->cp0_epc, regs->regs[31]);
Ralf Baechlee0daad42007-02-05 00:10:11 +0000707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709#endif
710
Richard Weinberger81d103b2013-10-06 22:25:42 +0200711static int setup_rt_frame(void *sig_return, struct ksignal *ksig,
712 struct pt_regs *regs, sigset_t *set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Atsushi Nemoto9bbf28a32006-02-01 01:41:09 +0900714 struct rt_sigframe __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int err = 0;
716
Richard Weinberger7c4f5632014-03-05 15:35:41 +0100717 frame = get_sigframe(ksig, regs, sizeof(*frame));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (!access_ok(VERIFY_WRITE, frame, sizeof (*frame)))
Richard Weinberger81d103b2013-10-06 22:25:42 +0200719 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* Create siginfo. */
Richard Weinberger81d103b2013-10-06 22:25:42 +0200722 err |= copy_siginfo_to_user(&frame->rs_info, &ksig->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Ralf Baechle70342282013-01-22 12:59:30 +0100724 /* Create the ucontext. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 err |= __put_user(0, &frame->rs_uc.uc_flags);
Atsushi Nemoto5665a0a2006-02-02 01:26:34 +0900726 err |= __put_user(NULL, &frame->rs_uc.uc_link);
Al Viroea536ad2012-12-23 03:13:40 -0500727 err |= __save_altstack(&frame->rs_uc.uc_stack, regs->regs[29]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 err |= setup_sigcontext(regs, &frame->rs_uc.uc_mcontext);
729 err |= __copy_to_user(&frame->rs_uc.uc_sigmask, set, sizeof(*set));
730
731 if (err)
Richard Weinberger81d103b2013-10-06 22:25:42 +0200732 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /*
735 * Arguments to signal handler:
736 *
737 * a0 = signal number
738 * a1 = 0 (should be cause)
739 * a2 = pointer to ucontext
740 *
741 * $25 and c0_epc point to the signal handler, $29 points to
742 * the struct rt_sigframe.
743 */
Richard Weinberger81d103b2013-10-06 22:25:42 +0200744 regs->regs[ 4] = ksig->sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 regs->regs[ 5] = (unsigned long) &frame->rs_info;
746 regs->regs[ 6] = (unsigned long) &frame->rs_uc;
747 regs->regs[29] = (unsigned long) frame;
David Daneyd814c282010-02-18 16:13:05 -0800748 regs->regs[31] = (unsigned long) sig_return;
Richard Weinberger81d103b2013-10-06 22:25:42 +0200749 regs->cp0_epc = regs->regs[25] = (unsigned long) ksig->ka.sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100751 DEBUGP("SIG deliver (%s:%d): sp=0x%p pc=0x%lx ra=0x%lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 current->comm, current->pid,
753 frame, regs->cp0_epc, regs->regs[31]);
Franck Bui-Huu722bb632007-02-05 15:24:24 +0100754
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000755 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000758struct mips_abi mips_abi = {
759#ifdef CONFIG_TRAD_SIGNALS
760 .setup_frame = setup_frame,
761#endif
Ralf Baechle70342282013-01-22 12:59:30 +0100762 .setup_rt_frame = setup_rt_frame,
Paul Burton77856102015-07-27 12:58:14 -0700763 .restart = __NR_restart_syscall,
764
765 .off_sc_fpregs = offsetof(struct sigcontext, sc_fpregs),
766 .off_sc_fpc_csr = offsetof(struct sigcontext, sc_fpc_csr),
767 .off_sc_used_math = offsetof(struct sigcontext, sc_used_math),
Alex Smithebb5e782015-10-21 09:54:38 +0100768
769 .vdso = &vdso_image,
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000770};
771
Richard Weinberger81d103b2013-10-06 22:25:42 +0200772static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Al Virob7f9a112012-05-02 09:59:21 -0400774 sigset_t *oldset = sigmask_to_save();
Ralf Baechle129bc8f2005-07-11 20:45:51 +0000775 int ret;
David Daneyd814c282010-02-18 16:13:05 -0800776 struct mips_abi *abi = current->thread.abi;
777 void *vdso = current->mm->context.vdso;
Ralf Baechle129bc8f2005-07-11 20:45:51 +0000778
Paul Burton432c6ba2016-07-08 11:06:19 +0100779 /*
780 * If we were emulating a delay slot instruction, exit that frame such
781 * that addresses in the sigframe are as expected for userland and we
782 * don't have a problem if we reuse the thread's frame for an
783 * instruction within the signal handler.
784 */
785 dsemul_thread_rollback(regs);
786
Al Viro8f5a00eb2010-09-28 18:50:37 +0100787 if (regs->regs[0]) {
788 switch(regs->regs[2]) {
789 case ERESTART_RESTARTBLOCK:
790 case ERESTARTNOHAND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 regs->regs[2] = EINTR;
792 break;
Al Viro8f5a00eb2010-09-28 18:50:37 +0100793 case ERESTARTSYS:
Richard Weinberger81d103b2013-10-06 22:25:42 +0200794 if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
Al Viro8f5a00eb2010-09-28 18:50:37 +0100795 regs->regs[2] = EINTR;
796 break;
797 }
798 /* fallthrough */
799 case ERESTARTNOINTR:
800 regs->regs[7] = regs->regs[26];
801 regs->regs[2] = regs->regs[0];
802 regs->cp0_epc -= 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Ralf Baechle70342282013-01-22 12:59:30 +0100805 regs->regs[0] = 0; /* Don't deal with this again. */
Al Viro8f5a00eb2010-09-28 18:50:37 +0100806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Paul Burton9ea141a2018-06-14 10:13:53 -0700808 rseq_signal_deliver(regs);
809
Leonid Yegoshin79394692015-10-19 11:39:55 -0700810 if (sig_uses_siginfo(&ksig->ka, abi))
Alex Smithebb5e782015-10-21 09:54:38 +0100811 ret = abi->setup_rt_frame(vdso + abi->vdso->off_rt_sigreturn,
Richard Weinberger81d103b2013-10-06 22:25:42 +0200812 ksig, regs, oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 else
Alex Smithebb5e782015-10-21 09:54:38 +0100814 ret = abi->setup_frame(vdso + abi->vdso->off_sigreturn,
815 ksig, regs, oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Richard Weinberger81d103b2013-10-06 22:25:42 +0200817 signal_setup_done(ret, ksig, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000820static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Richard Weinberger81d103b2013-10-06 22:25:42 +0200822 struct ksignal ksig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Richard Weinberger81d103b2013-10-06 22:25:42 +0200824 if (get_signal(&ksig)) {
Ralf Baechle70342282013-01-22 12:59:30 +0100825 /* Whee! Actually deliver the signal. */
Richard Weinberger81d103b2013-10-06 22:25:42 +0200826 handle_signal(&ksig, regs);
Ralf Baechle45887e12006-08-03 21:54:13 +0100827 return;
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (regs->regs[0]) {
Ralf Baechle9ec9b5a2012-11-06 14:27:19 +0100831 switch (regs->regs[2]) {
832 case ERESTARTNOHAND:
833 case ERESTARTSYS:
834 case ERESTARTNOINTR:
Al Viro8f5a00eb2010-09-28 18:50:37 +0100835 regs->regs[2] = regs->regs[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 regs->regs[7] = regs->regs[26];
Al Viro8f5a00eb2010-09-28 18:50:37 +0100837 regs->cp0_epc -= 4;
Ralf Baechle9ec9b5a2012-11-06 14:27:19 +0100838 break;
839
840 case ERESTART_RESTARTBLOCK:
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000841 regs->regs[2] = current->thread.abi->restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 regs->regs[7] = regs->regs[26];
843 regs->cp0_epc -= 4;
Ralf Baechle9ec9b5a2012-11-06 14:27:19 +0100844 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
Ralf Baechle70342282013-01-22 12:59:30 +0100846 regs->regs[0] = 0; /* Don't deal with this again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000848
849 /*
850 * If there's no signal to deliver, we just put the saved sigmask
851 * back
852 */
Al Viro51a7b442012-05-21 23:33:55 -0400853 restore_saved_sigmask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
856/*
857 * notification of userspace execution resumption
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000858 * - triggered by the TIF_WORK_MASK flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 */
Ralf Baechle7b3e2fc2006-02-08 12:58:41 +0000860asmlinkage void do_notify_resume(struct pt_regs *regs, void *unused,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 __u32 thread_info_flags)
862{
Ralf Baechle1f717922011-07-27 11:44:47 +0100863 local_irq_enable();
864
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200865 user_exit();
866
Ralf Baechle40e084a2015-07-29 22:44:53 +0200867 if (thread_info_flags & _TIF_UPROBE)
868 uprobe_notify_resume(regs);
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /* deal with pending signal delivery */
Al Viro6fd84c02012-05-23 15:28:58 -0400871 if (thread_info_flags & _TIF_SIGPENDING)
Ralf Baechle151fd6a2007-02-15 11:40:37 +0000872 do_signal(regs);
David Howellsd0420c82009-09-02 09:14:16 +0100873
874 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
875 clear_thread_flag(TIF_NOTIFY_RESUME);
876 tracehook_notify_resume(regs);
Paul Burton9ea141a2018-06-14 10:13:53 -0700877 rseq_handle_notify_resume(regs);
David Howellsd0420c82009-09-02 09:14:16 +0100878 }
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200879
880 user_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
Ralf Baechle137f6f32009-11-24 19:35:41 +0000882
883#ifdef CONFIG_SMP
Paul Burton2db9ca02015-07-27 12:58:15 -0700884static int smp_save_fp_context(void __user *sc)
Ralf Baechle137f6f32009-11-24 19:35:41 +0000885{
886 return raw_cpu_has_fpu
Paul Burton2db9ca02015-07-27 12:58:15 -0700887 ? save_hw_fp_context(sc)
Paul Burtonb2ead522014-01-27 15:23:02 +0000888 : copy_fp_to_sigcontext(sc);
Ralf Baechle137f6f32009-11-24 19:35:41 +0000889}
890
Paul Burton2db9ca02015-07-27 12:58:15 -0700891static int smp_restore_fp_context(void __user *sc)
Ralf Baechle137f6f32009-11-24 19:35:41 +0000892{
893 return raw_cpu_has_fpu
Paul Burton2db9ca02015-07-27 12:58:15 -0700894 ? restore_hw_fp_context(sc)
Paul Burtonb2ead522014-01-27 15:23:02 +0000895 : copy_fp_from_sigcontext(sc);
Ralf Baechle137f6f32009-11-24 19:35:41 +0000896}
897#endif
898
899static int signal_setup(void)
900{
Paul Burtonf1fe2d22015-07-27 12:58:21 -0700901 /*
902 * The offset from sigcontext to extended context should be the same
903 * regardless of the type of signal, such that userland can always know
904 * where to look if it wishes to find the extended context structures.
905 */
906 BUILD_BUG_ON((offsetof(struct sigframe, sf_extcontext) -
907 offsetof(struct sigframe, sf_sc)) !=
908 (offsetof(struct rt_sigframe, rs_uc.uc_extcontext) -
909 offsetof(struct rt_sigframe, rs_uc.uc_mcontext)));
910
Ralf Baechle137f6f32009-11-24 19:35:41 +0000911#ifdef CONFIG_SMP
912 /* For now just do the cpu_has_fpu check when the functions are invoked */
913 save_fp_context = smp_save_fp_context;
914 restore_fp_context = smp_restore_fp_context;
915#else
916 if (cpu_has_fpu) {
Paul Burton2db9ca02015-07-27 12:58:15 -0700917 save_fp_context = save_hw_fp_context;
918 restore_fp_context = restore_hw_fp_context;
Ralf Baechle137f6f32009-11-24 19:35:41 +0000919 } else {
Paul Burton14fa12d2014-10-28 11:25:51 +0000920 save_fp_context = copy_fp_to_sigcontext;
921 restore_fp_context = copy_fp_from_sigcontext;
Ralf Baechle137f6f32009-11-24 19:35:41 +0000922 }
Leonid Yegoshinca750642013-12-12 16:57:19 +0000923#endif /* CONFIG_SMP */
Ralf Baechle137f6f32009-11-24 19:35:41 +0000924
925 return 0;
926}
927
928arch_initcall(signal_setup);