]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - arch/powerpc/kernel/signal_32.c
Merge with git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / kernel / signal_32.c
1 /*
2 * Signal handling for 32bit PPC and 32bit tasks on 64bit PPC
3 *
4 * PowerPC version
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
6 * Copyright (C) 2001 IBM
7 * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
8 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
9 *
10 * Derived from "arch/i386/kernel/signal.c"
11 * Copyright (C) 1991, 1992 Linus Torvalds
12 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 */
19
20 #include <linux/config.h>
21 #include <linux/sched.h>
22 #include <linux/mm.h>
23 #include <linux/smp.h>
24 #include <linux/smp_lock.h>
25 #include <linux/kernel.h>
26 #include <linux/signal.h>
27 #include <linux/errno.h>
28 #include <linux/elf.h>
29 #ifdef CONFIG_PPC64
30 #include <linux/syscalls.h>
31 #include <linux/compat.h>
32 #include <linux/ptrace.h>
33 #else
34 #include <linux/wait.h>
35 #include <linux/ptrace.h>
36 #include <linux/unistd.h>
37 #include <linux/stddef.h>
38 #include <linux/tty.h>
39 #include <linux/binfmts.h>
40 #include <linux/suspend.h>
41 #endif
42
43 #include <asm/uaccess.h>
44 #include <asm/cacheflush.h>
45 #include <asm/sigcontext.h>
46 #include <asm/vdso.h>
47 #ifdef CONFIG_PPC64
48 #include "ppc32.h"
49 #include <asm/unistd.h>
50 #else
51 #include <asm/ucontext.h>
52 #include <asm/pgtable.h>
53 #endif
54
55 #undef DEBUG_SIG
56
57 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
58
59 #ifdef CONFIG_PPC64
60 #define do_signal do_signal32
61 #define sys_sigsuspend compat_sys_sigsuspend
62 #define sys_rt_sigsuspend compat_sys_rt_sigsuspend
63 #define sys_rt_sigreturn compat_sys_rt_sigreturn
64 #define sys_sigaction compat_sys_sigaction
65 #define sys_swapcontext compat_sys_swapcontext
66 #define sys_sigreturn compat_sys_sigreturn
67
68 #define old_sigaction old_sigaction32
69 #define sigcontext sigcontext32
70 #define mcontext mcontext32
71 #define ucontext ucontext32
72
73 /*
74 * Returning 0 means we return to userspace via
75 * ret_from_except and thus restore all user
76 * registers from *regs. This is what we need
77 * to do when a signal has been delivered.
78 */
79
80 #define GP_REGS_SIZE min(sizeof(elf_gregset_t32), sizeof(struct pt_regs32))
81 #undef __SIGNAL_FRAMESIZE
82 #define __SIGNAL_FRAMESIZE __SIGNAL_FRAMESIZE32
83 #undef ELF_NVRREG
84 #define ELF_NVRREG ELF_NVRREG32
85
86 /*
87 * Functions for flipping sigsets (thanks to brain dead generic
88 * implementation that makes things simple for little endian only)
89 */
90 static inline int put_sigset_t(compat_sigset_t __user *uset, sigset_t *set)
91 {
92 compat_sigset_t cset;
93
94 switch (_NSIG_WORDS) {
95 case 4: cset.sig[5] = set->sig[3] & 0xffffffffull;
96 cset.sig[7] = set->sig[3] >> 32;
97 case 3: cset.sig[4] = set->sig[2] & 0xffffffffull;
98 cset.sig[5] = set->sig[2] >> 32;
99 case 2: cset.sig[2] = set->sig[1] & 0xffffffffull;
100 cset.sig[3] = set->sig[1] >> 32;
101 case 1: cset.sig[0] = set->sig[0] & 0xffffffffull;
102 cset.sig[1] = set->sig[0] >> 32;
103 }
104 return copy_to_user(uset, &cset, sizeof(*uset));
105 }
106
107 static inline int get_sigset_t(sigset_t *set,
108 const compat_sigset_t __user *uset)
109 {
110 compat_sigset_t s32;
111
112 if (copy_from_user(&s32, uset, sizeof(*uset)))
113 return -EFAULT;
114
115 /*
116 * Swap the 2 words of the 64-bit sigset_t (they are stored
117 * in the "wrong" endian in 32-bit user storage).
118 */
119 switch (_NSIG_WORDS) {
120 case 4: set->sig[3] = s32.sig[6] | (((long)s32.sig[7]) << 32);
121 case 3: set->sig[2] = s32.sig[4] | (((long)s32.sig[5]) << 32);
122 case 2: set->sig[1] = s32.sig[2] | (((long)s32.sig[3]) << 32);
123 case 1: set->sig[0] = s32.sig[0] | (((long)s32.sig[1]) << 32);
124 }
125 return 0;
126 }
127
128 static inline int get_old_sigaction(struct k_sigaction *new_ka,
129 struct old_sigaction __user *act)
130 {
131 compat_old_sigset_t mask;
132 compat_uptr_t handler, restorer;
133
134 if (get_user(handler, &act->sa_handler) ||
135 __get_user(restorer, &act->sa_restorer) ||
136 __get_user(new_ka->sa.sa_flags, &act->sa_flags) ||
137 __get_user(mask, &act->sa_mask))
138 return -EFAULT;
139 new_ka->sa.sa_handler = compat_ptr(handler);
140 new_ka->sa.sa_restorer = compat_ptr(restorer);
141 siginitset(&new_ka->sa.sa_mask, mask);
142 return 0;
143 }
144
145 static inline compat_uptr_t to_user_ptr(void *kp)
146 {
147 return (compat_uptr_t)(u64)kp;
148 }
149
150 #define from_user_ptr(p) compat_ptr(p)
151
152 static inline int save_general_regs(struct pt_regs *regs,
153 struct mcontext __user *frame)
154 {
155 elf_greg_t64 *gregs = (elf_greg_t64 *)regs;
156 int i;
157
158 if (!FULL_REGS(regs)) {
159 set_thread_flag(TIF_SAVE_NVGPRS);
160 current_thread_info()->nvgprs_frame = frame->mc_gregs;
161 }
162
163 for (i = 0; i <= PT_RESULT; i ++) {
164 if (i == 14 && !FULL_REGS(regs))
165 i = 32;
166 if (__put_user((unsigned int)gregs[i], &frame->mc_gregs[i]))
167 return -EFAULT;
168 }
169 return 0;
170 }
171
172 static inline int restore_general_regs(struct pt_regs *regs,
173 struct mcontext __user *sr)
174 {
175 elf_greg_t64 *gregs = (elf_greg_t64 *)regs;
176 int i;
177
178 for (i = 0; i <= PT_RESULT; i++) {
179 if ((i == PT_MSR) || (i == PT_SOFTE))
180 continue;
181 if (__get_user(gregs[i], &sr->mc_gregs[i]))
182 return -EFAULT;
183 }
184 return 0;
185 }
186
187 #else /* CONFIG_PPC64 */
188
189 #define GP_REGS_SIZE min(sizeof(elf_gregset_t), sizeof(struct pt_regs))
190
191 static inline int put_sigset_t(sigset_t __user *uset, sigset_t *set)
192 {
193 return copy_to_user(uset, set, sizeof(*uset));
194 }
195
196 static inline int get_sigset_t(sigset_t *set, const sigset_t __user *uset)
197 {
198 return copy_from_user(set, uset, sizeof(*uset));
199 }
200
201 static inline int get_old_sigaction(struct k_sigaction *new_ka,
202 struct old_sigaction __user *act)
203 {
204 old_sigset_t mask;
205
206 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
207 __get_user(new_ka->sa.sa_handler, &act->sa_handler) ||
208 __get_user(new_ka->sa.sa_restorer, &act->sa_restorer))
209 return -EFAULT;
210 __get_user(new_ka->sa.sa_flags, &act->sa_flags);
211 __get_user(mask, &act->sa_mask);
212 siginitset(&new_ka->sa.sa_mask, mask);
213 return 0;
214 }
215
216 #define to_user_ptr(p) (p)
217 #define from_user_ptr(p) (p)
218
219 static inline int save_general_regs(struct pt_regs *regs,
220 struct mcontext __user *frame)
221 {
222 if (!FULL_REGS(regs)) {
223 /* Zero out the unsaved GPRs to avoid information
224 leak, and set TIF_SAVE_NVGPRS to ensure that the
225 registers do actually get saved later. */
226 memset(&regs->gpr[14], 0, 18 * sizeof(unsigned long));
227 current_thread_info()->nvgprs_frame = &frame->mc_gregs;
228 set_thread_flag(TIF_SAVE_NVGPRS);
229 }
230
231 return __copy_to_user(&frame->mc_gregs, regs, GP_REGS_SIZE);
232 }
233
234 static inline int restore_general_regs(struct pt_regs *regs,
235 struct mcontext __user *sr)
236 {
237 /* copy up to but not including MSR */
238 if (__copy_from_user(regs, &sr->mc_gregs,
239 PT_MSR * sizeof(elf_greg_t)))
240 return -EFAULT;
241 /* copy from orig_r3 (the word after the MSR) up to the end */
242 if (__copy_from_user(&regs->orig_gpr3, &sr->mc_gregs[PT_ORIG_R3],
243 GP_REGS_SIZE - PT_ORIG_R3 * sizeof(elf_greg_t)))
244 return -EFAULT;
245 return 0;
246 }
247
248 #endif /* CONFIG_PPC64 */
249
250 int do_signal(sigset_t *oldset, struct pt_regs *regs);
251
252 /*
253 * Atomically swap in the new signal mask, and wait for a signal.
254 */
255 long sys_sigsuspend(old_sigset_t mask)
256 {
257 mask &= _BLOCKABLE;
258 spin_lock_irq(&current->sighand->siglock);
259 current->saved_sigmask = current->blocked;
260 siginitset(&current->blocked, mask);
261 recalc_sigpending();
262 spin_unlock_irq(&current->sighand->siglock);
263
264 current->state = TASK_INTERRUPTIBLE;
265 schedule();
266 set_thread_flag(TIF_RESTORE_SIGMASK);
267 return -ERESTARTNOHAND;
268 }
269
270 #ifdef CONFIG_PPC32
271 long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss, int r5,
272 int r6, int r7, int r8, struct pt_regs *regs)
273 {
274 return do_sigaltstack(uss, uoss, regs->gpr[1]);
275 }
276 #endif
277
278 long sys_sigaction(int sig, struct old_sigaction __user *act,
279 struct old_sigaction __user *oact)
280 {
281 struct k_sigaction new_ka, old_ka;
282 int ret;
283
284 #ifdef CONFIG_PPC64
285 if (sig < 0)
286 sig = -sig;
287 #endif
288
289 if (act) {
290 if (get_old_sigaction(&new_ka, act))
291 return -EFAULT;
292 }
293
294 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
295 if (!ret && oact) {
296 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
297 __put_user(to_user_ptr(old_ka.sa.sa_handler),
298 &oact->sa_handler) ||
299 __put_user(to_user_ptr(old_ka.sa.sa_restorer),
300 &oact->sa_restorer) ||
301 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
302 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
303 return -EFAULT;
304 }
305
306 return ret;
307 }
308
309 /*
310 * When we have signals to deliver, we set up on the
311 * user stack, going down from the original stack pointer:
312 * a sigregs struct
313 * a sigcontext struct
314 * a gap of __SIGNAL_FRAMESIZE bytes
315 *
316 * Each of these things must be a multiple of 16 bytes in size.
317 *
318 */
319 struct sigregs {
320 struct mcontext mctx; /* all the register values */
321 /*
322 * Programs using the rs6000/xcoff abi can save up to 19 gp
323 * regs and 18 fp regs below sp before decrementing it.
324 */
325 int abigap[56];
326 };
327
328 /* We use the mc_pad field for the signal return trampoline. */
329 #define tramp mc_pad
330
331 /*
332 * When we have rt signals to deliver, we set up on the
333 * user stack, going down from the original stack pointer:
334 * one rt_sigframe struct (siginfo + ucontext + ABI gap)
335 * a gap of __SIGNAL_FRAMESIZE+16 bytes
336 * (the +16 is to get the siginfo and ucontext in the same
337 * positions as in older kernels).
338 *
339 * Each of these things must be a multiple of 16 bytes in size.
340 *
341 */
342 struct rt_sigframe {
343 #ifdef CONFIG_PPC64
344 compat_siginfo_t info;
345 #else
346 struct siginfo info;
347 #endif
348 struct ucontext uc;
349 /*
350 * Programs using the rs6000/xcoff abi can save up to 19 gp
351 * regs and 18 fp regs below sp before decrementing it.
352 */
353 int abigap[56];
354 };
355
356 /*
357 * Save the current user registers on the user stack.
358 * We only save the altivec/spe registers if the process has used
359 * altivec/spe instructions at some point.
360 */
361 static int save_user_regs(struct pt_regs *regs, struct mcontext __user *frame,
362 int sigret)
363 {
364 /* Make sure floating point registers are stored in regs */
365 flush_fp_to_thread(current);
366
367 /* save general and floating-point registers */
368 if (save_general_regs(regs, frame) ||
369 __copy_to_user(&frame->mc_fregs, current->thread.fpr,
370 ELF_NFPREG * sizeof(double)))
371 return 1;
372
373 #ifdef CONFIG_ALTIVEC
374 /* save altivec registers */
375 if (current->thread.used_vr) {
376 flush_altivec_to_thread(current);
377 if (__copy_to_user(&frame->mc_vregs, current->thread.vr,
378 ELF_NVRREG * sizeof(vector128)))
379 return 1;
380 /* set MSR_VEC in the saved MSR value to indicate that
381 frame->mc_vregs contains valid data */
382 if (__put_user(regs->msr | MSR_VEC, &frame->mc_gregs[PT_MSR]))
383 return 1;
384 }
385 /* else assert((regs->msr & MSR_VEC) == 0) */
386
387 /* We always copy to/from vrsave, it's 0 if we don't have or don't
388 * use altivec. Since VSCR only contains 32 bits saved in the least
389 * significant bits of a vector, we "cheat" and stuff VRSAVE in the
390 * most significant bits of that same vector. --BenH
391 */
392 if (__put_user(current->thread.vrsave, (u32 __user *)&frame->mc_vregs[32]))
393 return 1;
394 #endif /* CONFIG_ALTIVEC */
395
396 #ifdef CONFIG_SPE
397 /* save spe registers */
398 if (current->thread.used_spe) {
399 flush_spe_to_thread(current);
400 if (__copy_to_user(&frame->mc_vregs, current->thread.evr,
401 ELF_NEVRREG * sizeof(u32)))
402 return 1;
403 /* set MSR_SPE in the saved MSR value to indicate that
404 frame->mc_vregs contains valid data */
405 if (__put_user(regs->msr | MSR_SPE, &frame->mc_gregs[PT_MSR]))
406 return 1;
407 }
408 /* else assert((regs->msr & MSR_SPE) == 0) */
409
410 /* We always copy to/from spefscr */
411 if (__put_user(current->thread.spefscr, (u32 __user *)&frame->mc_vregs + ELF_NEVRREG))
412 return 1;
413 #endif /* CONFIG_SPE */
414
415 if (sigret) {
416 /* Set up the sigreturn trampoline: li r0,sigret; sc */
417 if (__put_user(0x38000000UL + sigret, &frame->tramp[0])
418 || __put_user(0x44000002UL, &frame->tramp[1]))
419 return 1;
420 flush_icache_range((unsigned long) &frame->tramp[0],
421 (unsigned long) &frame->tramp[2]);
422 }
423
424 return 0;
425 }
426
427 /*
428 * Restore the current user register values from the user stack,
429 * (except for MSR).
430 */
431 static long restore_user_regs(struct pt_regs *regs,
432 struct mcontext __user *sr, int sig)
433 {
434 long err;
435 unsigned int save_r2 = 0;
436 #if defined(CONFIG_ALTIVEC) || defined(CONFIG_SPE)
437 unsigned long msr;
438 #endif
439
440 /*
441 * restore general registers but not including MSR or SOFTE. Also
442 * take care of keeping r2 (TLS) intact if not a signal
443 */
444 if (!sig)
445 save_r2 = (unsigned int)regs->gpr[2];
446 err = restore_general_regs(regs, sr);
447 if (!sig)
448 regs->gpr[2] = (unsigned long) save_r2;
449 if (err)
450 return 1;
451
452 /*
453 * Do this before updating the thread state in
454 * current->thread.fpr/vr/evr. That way, if we get preempted
455 * and another task grabs the FPU/Altivec/SPE, it won't be
456 * tempted to save the current CPU state into the thread_struct
457 * and corrupt what we are writing there.
458 */
459 discard_lazy_cpu_state();
460
461 /* force the process to reload the FP registers from
462 current->thread when it next does FP instructions */
463 regs->msr &= ~(MSR_FP | MSR_FE0 | MSR_FE1);
464 if (__copy_from_user(current->thread.fpr, &sr->mc_fregs,
465 sizeof(sr->mc_fregs)))
466 return 1;
467
468 #ifdef CONFIG_ALTIVEC
469 /* force the process to reload the altivec registers from
470 current->thread when it next does altivec instructions */
471 regs->msr &= ~MSR_VEC;
472 if (!__get_user(msr, &sr->mc_gregs[PT_MSR]) && (msr & MSR_VEC) != 0) {
473 /* restore altivec registers from the stack */
474 if (__copy_from_user(current->thread.vr, &sr->mc_vregs,
475 sizeof(sr->mc_vregs)))
476 return 1;
477 } else if (current->thread.used_vr)
478 memset(current->thread.vr, 0, ELF_NVRREG * sizeof(vector128));
479
480 /* Always get VRSAVE back */
481 if (__get_user(current->thread.vrsave, (u32 __user *)&sr->mc_vregs[32]))
482 return 1;
483 #endif /* CONFIG_ALTIVEC */
484
485 #ifdef CONFIG_SPE
486 /* force the process to reload the spe registers from
487 current->thread when it next does spe instructions */
488 regs->msr &= ~MSR_SPE;
489 if (!__get_user(msr, &sr->mc_gregs[PT_MSR]) && (msr & MSR_SPE) != 0) {
490 /* restore spe registers from the stack */
491 if (__copy_from_user(current->thread.evr, &sr->mc_vregs,
492 ELF_NEVRREG * sizeof(u32)))
493 return 1;
494 } else if (current->thread.used_spe)
495 memset(current->thread.evr, 0, ELF_NEVRREG * sizeof(u32));
496
497 /* Always get SPEFSCR back */
498 if (__get_user(current->thread.spefscr, (u32 __user *)&sr->mc_vregs + ELF_NEVRREG))
499 return 1;
500 #endif /* CONFIG_SPE */
501
502 return 0;
503 }
504
505 #ifdef CONFIG_PPC64
506 long compat_sys_rt_sigaction(int sig, const struct sigaction32 __user *act,
507 struct sigaction32 __user *oact, size_t sigsetsize)
508 {
509 struct k_sigaction new_ka, old_ka;
510 int ret;
511
512 /* XXX: Don't preclude handling different sized sigset_t's. */
513 if (sigsetsize != sizeof(compat_sigset_t))
514 return -EINVAL;
515
516 if (act) {
517 compat_uptr_t handler;
518
519 ret = get_user(handler, &act->sa_handler);
520 new_ka.sa.sa_handler = compat_ptr(handler);
521 ret |= get_sigset_t(&new_ka.sa.sa_mask, &act->sa_mask);
522 ret |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
523 if (ret)
524 return -EFAULT;
525 }
526
527 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
528 if (!ret && oact) {
529 ret = put_user((long)old_ka.sa.sa_handler, &oact->sa_handler);
530 ret |= put_sigset_t(&oact->sa_mask, &old_ka.sa.sa_mask);
531 ret |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
532 }
533 return ret;
534 }
535
536 /*
537 * Note: it is necessary to treat how as an unsigned int, with the
538 * corresponding cast to a signed int to insure that the proper
539 * conversion (sign extension) between the register representation
540 * of a signed int (msr in 32-bit mode) and the register representation
541 * of a signed int (msr in 64-bit mode) is performed.
542 */
543 long compat_sys_rt_sigprocmask(u32 how, compat_sigset_t __user *set,
544 compat_sigset_t __user *oset, size_t sigsetsize)
545 {
546 sigset_t s;
547 sigset_t __user *up;
548 int ret;
549 mm_segment_t old_fs = get_fs();
550
551 if (set) {
552 if (get_sigset_t(&s, set))
553 return -EFAULT;
554 }
555
556 set_fs(KERNEL_DS);
557 /* This is valid because of the set_fs() */
558 up = (sigset_t __user *) &s;
559 ret = sys_rt_sigprocmask((int)how, set ? up : NULL, oset ? up : NULL,
560 sigsetsize);
561 set_fs(old_fs);
562 if (ret)
563 return ret;
564 if (oset) {
565 if (put_sigset_t(oset, &s))
566 return -EFAULT;
567 }
568 return 0;
569 }
570
571 long compat_sys_rt_sigpending(compat_sigset_t __user *set, compat_size_t sigsetsize)
572 {
573 sigset_t s;
574 int ret;
575 mm_segment_t old_fs = get_fs();
576
577 set_fs(KERNEL_DS);
578 /* The __user pointer cast is valid because of the set_fs() */
579 ret = sys_rt_sigpending((sigset_t __user *) &s, sigsetsize);
580 set_fs(old_fs);
581 if (!ret) {
582 if (put_sigset_t(set, &s))
583 return -EFAULT;
584 }
585 return ret;
586 }
587
588
589 int copy_siginfo_to_user32(struct compat_siginfo __user *d, siginfo_t *s)
590 {
591 int err;
592
593 if (!access_ok (VERIFY_WRITE, d, sizeof(*d)))
594 return -EFAULT;
595
596 /* If you change siginfo_t structure, please be sure
597 * this code is fixed accordingly.
598 * It should never copy any pad contained in the structure
599 * to avoid security leaks, but must copy the generic
600 * 3 ints plus the relevant union member.
601 * This routine must convert siginfo from 64bit to 32bit as well
602 * at the same time.
603 */
604 err = __put_user(s->si_signo, &d->si_signo);
605 err |= __put_user(s->si_errno, &d->si_errno);
606 err |= __put_user((short)s->si_code, &d->si_code);
607 if (s->si_code < 0)
608 err |= __copy_to_user(&d->_sifields._pad, &s->_sifields._pad,
609 SI_PAD_SIZE32);
610 else switch(s->si_code >> 16) {
611 case __SI_CHLD >> 16:
612 err |= __put_user(s->si_pid, &d->si_pid);
613 err |= __put_user(s->si_uid, &d->si_uid);
614 err |= __put_user(s->si_utime, &d->si_utime);
615 err |= __put_user(s->si_stime, &d->si_stime);
616 err |= __put_user(s->si_status, &d->si_status);
617 break;
618 case __SI_FAULT >> 16:
619 err |= __put_user((unsigned int)(unsigned long)s->si_addr,
620 &d->si_addr);
621 break;
622 case __SI_POLL >> 16:
623 err |= __put_user(s->si_band, &d->si_band);
624 err |= __put_user(s->si_fd, &d->si_fd);
625 break;
626 case __SI_TIMER >> 16:
627 err |= __put_user(s->si_tid, &d->si_tid);
628 err |= __put_user(s->si_overrun, &d->si_overrun);
629 err |= __put_user(s->si_int, &d->si_int);
630 break;
631 case __SI_RT >> 16: /* This is not generated by the kernel as of now. */
632 case __SI_MESGQ >> 16:
633 err |= __put_user(s->si_int, &d->si_int);
634 /* fallthrough */
635 case __SI_KILL >> 16:
636 default:
637 err |= __put_user(s->si_pid, &d->si_pid);
638 err |= __put_user(s->si_uid, &d->si_uid);
639 break;
640 }
641 return err;
642 }
643
644 #define copy_siginfo_to_user copy_siginfo_to_user32
645
646 /*
647 * Note: it is necessary to treat pid and sig as unsigned ints, with the
648 * corresponding cast to a signed int to insure that the proper conversion
649 * (sign extension) between the register representation of a signed int
650 * (msr in 32-bit mode) and the register representation of a signed int
651 * (msr in 64-bit mode) is performed.
652 */
653 long compat_sys_rt_sigqueueinfo(u32 pid, u32 sig, compat_siginfo_t __user *uinfo)
654 {
655 siginfo_t info;
656 int ret;
657 mm_segment_t old_fs = get_fs();
658
659 if (copy_from_user (&info, uinfo, 3*sizeof(int)) ||
660 copy_from_user (info._sifields._pad, uinfo->_sifields._pad, SI_PAD_SIZE32))
661 return -EFAULT;
662 set_fs (KERNEL_DS);
663 /* The __user pointer cast is valid becasuse of the set_fs() */
664 ret = sys_rt_sigqueueinfo((int)pid, (int)sig, (siginfo_t __user *) &info);
665 set_fs (old_fs);
666 return ret;
667 }
668 /*
669 * Start Alternate signal stack support
670 *
671 * System Calls
672 * sigaltatck compat_sys_sigaltstack
673 */
674
675 int compat_sys_sigaltstack(u32 __new, u32 __old, int r5,
676 int r6, int r7, int r8, struct pt_regs *regs)
677 {
678 stack_32_t __user * newstack = (stack_32_t __user *)(long) __new;
679 stack_32_t __user * oldstack = (stack_32_t __user *)(long) __old;
680 stack_t uss, uoss;
681 int ret;
682 mm_segment_t old_fs;
683 unsigned long sp;
684 compat_uptr_t ss_sp;
685
686 /*
687 * set sp to the user stack on entry to the system call
688 * the system call router sets R9 to the saved registers
689 */
690 sp = regs->gpr[1];
691
692 /* Put new stack info in local 64 bit stack struct */
693 if (newstack) {
694 if (get_user(ss_sp, &newstack->ss_sp) ||
695 __get_user(uss.ss_flags, &newstack->ss_flags) ||
696 __get_user(uss.ss_size, &newstack->ss_size))
697 return -EFAULT;
698 uss.ss_sp = compat_ptr(ss_sp);
699 }
700
701 old_fs = get_fs();
702 set_fs(KERNEL_DS);
703 /* The __user pointer casts are valid because of the set_fs() */
704 ret = do_sigaltstack(
705 newstack ? (stack_t __user *) &uss : NULL,
706 oldstack ? (stack_t __user *) &uoss : NULL,
707 sp);
708 set_fs(old_fs);
709 /* Copy the stack information to the user output buffer */
710 if (!ret && oldstack &&
711 (put_user((long)uoss.ss_sp, &oldstack->ss_sp) ||
712 __put_user(uoss.ss_flags, &oldstack->ss_flags) ||
713 __put_user(uoss.ss_size, &oldstack->ss_size)))
714 return -EFAULT;
715 return ret;
716 }
717 #endif /* CONFIG_PPC64 */
718
719
720 /*
721 * Restore the user process's signal mask
722 */
723 #ifdef CONFIG_PPC64
724 extern void restore_sigmask(sigset_t *set);
725 #else /* CONFIG_PPC64 */
726 static void restore_sigmask(sigset_t *set)
727 {
728 sigdelsetmask(set, ~_BLOCKABLE);
729 spin_lock_irq(&current->sighand->siglock);
730 current->blocked = *set;
731 recalc_sigpending();
732 spin_unlock_irq(&current->sighand->siglock);
733 }
734 #endif
735
736 /*
737 * Set up a signal frame for a "real-time" signal handler
738 * (one which gets siginfo).
739 */
740 static int handle_rt_signal(unsigned long sig, struct k_sigaction *ka,
741 siginfo_t *info, sigset_t *oldset,
742 struct pt_regs *regs, unsigned long newsp)
743 {
744 struct rt_sigframe __user *rt_sf;
745 struct mcontext __user *frame;
746 unsigned long origsp = newsp;
747
748 /* Set up Signal Frame */
749 /* Put a Real Time Context onto stack */
750 newsp -= sizeof(*rt_sf);
751 rt_sf = (struct rt_sigframe __user *)newsp;
752
753 /* create a stack frame for the caller of the handler */
754 newsp -= __SIGNAL_FRAMESIZE + 16;
755
756 if (!access_ok(VERIFY_WRITE, (void __user *)newsp, origsp - newsp))
757 goto badframe;
758
759 /* Put the siginfo & fill in most of the ucontext */
760 if (copy_siginfo_to_user(&rt_sf->info, info)
761 || __put_user(0, &rt_sf->uc.uc_flags)
762 || __put_user(0, &rt_sf->uc.uc_link)
763 || __put_user(current->sas_ss_sp, &rt_sf->uc.uc_stack.ss_sp)
764 || __put_user(sas_ss_flags(regs->gpr[1]),
765 &rt_sf->uc.uc_stack.ss_flags)
766 || __put_user(current->sas_ss_size, &rt_sf->uc.uc_stack.ss_size)
767 || __put_user(to_user_ptr(&rt_sf->uc.uc_mcontext),
768 &rt_sf->uc.uc_regs)
769 || put_sigset_t(&rt_sf->uc.uc_sigmask, oldset))
770 goto badframe;
771
772 /* Save user registers on the stack */
773 frame = &rt_sf->uc.uc_mcontext;
774 if (vdso32_rt_sigtramp && current->thread.vdso_base) {
775 if (save_user_regs(regs, frame, 0))
776 goto badframe;
777 regs->link = current->thread.vdso_base + vdso32_rt_sigtramp;
778 } else {
779 if (save_user_regs(regs, frame, __NR_rt_sigreturn))
780 goto badframe;
781 regs->link = (unsigned long) frame->tramp;
782 }
783
784 current->thread.fpscr.val = 0; /* turn off all fp exceptions */
785
786 if (put_user(regs->gpr[1], (u32 __user *)newsp))
787 goto badframe;
788 regs->gpr[1] = newsp;
789 regs->gpr[3] = sig;
790 regs->gpr[4] = (unsigned long) &rt_sf->info;
791 regs->gpr[5] = (unsigned long) &rt_sf->uc;
792 regs->gpr[6] = (unsigned long) rt_sf;
793 regs->nip = (unsigned long) ka->sa.sa_handler;
794 regs->trap = 0;
795 return 1;
796
797 badframe:
798 #ifdef DEBUG_SIG
799 printk("badframe in handle_rt_signal, regs=%p frame=%p newsp=%lx\n",
800 regs, frame, newsp);
801 #endif
802 force_sigsegv(sig, current);
803 return 0;
804 }
805
806 static int do_setcontext(struct ucontext __user *ucp, struct pt_regs *regs, int sig)
807 {
808 sigset_t set;
809 struct mcontext __user *mcp;
810
811 if (get_sigset_t(&set, &ucp->uc_sigmask))
812 return -EFAULT;
813 #ifdef CONFIG_PPC64
814 {
815 u32 cmcp;
816
817 if (__get_user(cmcp, &ucp->uc_regs))
818 return -EFAULT;
819 mcp = (struct mcontext __user *)(u64)cmcp;
820 }
821 #else
822 if (__get_user(mcp, &ucp->uc_regs))
823 return -EFAULT;
824 #endif
825 restore_sigmask(&set);
826 if (restore_user_regs(regs, mcp, sig))
827 return -EFAULT;
828
829 return 0;
830 }
831
832 long sys_swapcontext(struct ucontext __user *old_ctx,
833 struct ucontext __user *new_ctx,
834 int ctx_size, int r6, int r7, int r8, struct pt_regs *regs)
835 {
836 unsigned char tmp;
837
838 /* Context size is for future use. Right now, we only make sure
839 * we are passed something we understand
840 */
841 if (ctx_size < sizeof(struct ucontext))
842 return -EINVAL;
843
844 if (old_ctx != NULL) {
845 if (!access_ok(VERIFY_WRITE, old_ctx, sizeof(*old_ctx))
846 || save_user_regs(regs, &old_ctx->uc_mcontext, 0)
847 || put_sigset_t(&old_ctx->uc_sigmask, &current->blocked)
848 || __put_user(to_user_ptr(&old_ctx->uc_mcontext),
849 &old_ctx->uc_regs))
850 return -EFAULT;
851 }
852 if (new_ctx == NULL)
853 return 0;
854 if (!access_ok(VERIFY_READ, new_ctx, sizeof(*new_ctx))
855 || __get_user(tmp, (u8 __user *) new_ctx)
856 || __get_user(tmp, (u8 __user *) (new_ctx + 1) - 1))
857 return -EFAULT;
858
859 /*
860 * If we get a fault copying the context into the kernel's
861 * image of the user's registers, we can't just return -EFAULT
862 * because the user's registers will be corrupted. For instance
863 * the NIP value may have been updated but not some of the
864 * other registers. Given that we have done the access_ok
865 * and successfully read the first and last bytes of the region
866 * above, this should only happen in an out-of-memory situation
867 * or if another thread unmaps the region containing the context.
868 * We kill the task with a SIGSEGV in this situation.
869 */
870 if (do_setcontext(new_ctx, regs, 0))
871 do_exit(SIGSEGV);
872
873 set_thread_flag(TIF_RESTOREALL);
874 return 0;
875 }
876
877 long sys_rt_sigreturn(int r3, int r4, int r5, int r6, int r7, int r8,
878 struct pt_regs *regs)
879 {
880 struct rt_sigframe __user *rt_sf;
881
882 /* Always make any pending restarted system calls return -EINTR */
883 current_thread_info()->restart_block.fn = do_no_restart_syscall;
884
885 rt_sf = (struct rt_sigframe __user *)
886 (regs->gpr[1] + __SIGNAL_FRAMESIZE + 16);
887 if (!access_ok(VERIFY_READ, rt_sf, sizeof(*rt_sf)))
888 goto bad;
889 if (do_setcontext(&rt_sf->uc, regs, 1))
890 goto bad;
891
892 /*
893 * It's not clear whether or why it is desirable to save the
894 * sigaltstack setting on signal delivery and restore it on
895 * signal return. But other architectures do this and we have
896 * always done it up until now so it is probably better not to
897 * change it. -- paulus
898 */
899 #ifdef CONFIG_PPC64
900 /*
901 * We use the compat_sys_ version that does the 32/64 bits conversion
902 * and takes userland pointer directly. What about error checking ?
903 * nobody does any...
904 */
905 compat_sys_sigaltstack((u32)(u64)&rt_sf->uc.uc_stack, 0, 0, 0, 0, 0, regs);
906 #else
907 do_sigaltstack(&rt_sf->uc.uc_stack, NULL, regs->gpr[1]);
908 #endif
909 set_thread_flag(TIF_RESTOREALL);
910 return 0;
911
912 bad:
913 force_sig(SIGSEGV, current);
914 return 0;
915 }
916
917 #ifdef CONFIG_PPC32
918 int sys_debug_setcontext(struct ucontext __user *ctx,
919 int ndbg, struct sig_dbg_op __user *dbg,
920 int r6, int r7, int r8,
921 struct pt_regs *regs)
922 {
923 struct sig_dbg_op op;
924 int i;
925 unsigned long new_msr = regs->msr;
926 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
927 unsigned long new_dbcr0 = current->thread.dbcr0;
928 #endif
929
930 for (i=0; i<ndbg; i++) {
931 if (__copy_from_user(&op, dbg, sizeof(op)))
932 return -EFAULT;
933 switch (op.dbg_type) {
934 case SIG_DBG_SINGLE_STEPPING:
935 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
936 if (op.dbg_value) {
937 new_msr |= MSR_DE;
938 new_dbcr0 |= (DBCR0_IDM | DBCR0_IC);
939 } else {
940 new_msr &= ~MSR_DE;
941 new_dbcr0 &= ~(DBCR0_IDM | DBCR0_IC);
942 }
943 #else
944 if (op.dbg_value)
945 new_msr |= MSR_SE;
946 else
947 new_msr &= ~MSR_SE;
948 #endif
949 break;
950 case SIG_DBG_BRANCH_TRACING:
951 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
952 return -EINVAL;
953 #else
954 if (op.dbg_value)
955 new_msr |= MSR_BE;
956 else
957 new_msr &= ~MSR_BE;
958 #endif
959 break;
960
961 default:
962 return -EINVAL;
963 }
964 }
965
966 /* We wait until here to actually install the values in the
967 registers so if we fail in the above loop, it will not
968 affect the contents of these registers. After this point,
969 failure is a problem, anyway, and it's very unlikely unless
970 the user is really doing something wrong. */
971 regs->msr = new_msr;
972 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
973 current->thread.dbcr0 = new_dbcr0;
974 #endif
975
976 /*
977 * If we get a fault copying the context into the kernel's
978 * image of the user's registers, we can't just return -EFAULT
979 * because the user's registers will be corrupted. For instance
980 * the NIP value may have been updated but not some of the
981 * other registers. Given that we have done the access_ok
982 * and successfully read the first and last bytes of the region
983 * above, this should only happen in an out-of-memory situation
984 * or if another thread unmaps the region containing the context.
985 * We kill the task with a SIGSEGV in this situation.
986 */
987 if (do_setcontext(ctx, regs, 1)) {
988 force_sig(SIGSEGV, current);
989 goto out;
990 }
991
992 /*
993 * It's not clear whether or why it is desirable to save the
994 * sigaltstack setting on signal delivery and restore it on
995 * signal return. But other architectures do this and we have
996 * always done it up until now so it is probably better not to
997 * change it. -- paulus
998 */
999 do_sigaltstack(&ctx->uc_stack, NULL, regs->gpr[1]);
1000
1001 set_thread_flag(TIF_RESTOREALL);
1002 out:
1003 return 0;
1004 }
1005 #endif
1006
1007 /*
1008 * OK, we're invoking a handler
1009 */
1010 static int handle_signal(unsigned long sig, struct k_sigaction *ka,
1011 siginfo_t *info, sigset_t *oldset, struct pt_regs *regs,
1012 unsigned long newsp)
1013 {
1014 struct sigcontext __user *sc;
1015 struct sigregs __user *frame;
1016 unsigned long origsp = newsp;
1017
1018 /* Set up Signal Frame */
1019 newsp -= sizeof(struct sigregs);
1020 frame = (struct sigregs __user *) newsp;
1021
1022 /* Put a sigcontext on the stack */
1023 newsp -= sizeof(*sc);
1024 sc = (struct sigcontext __user *) newsp;
1025
1026 /* create a stack frame for the caller of the handler */
1027 newsp -= __SIGNAL_FRAMESIZE;
1028
1029 if (!access_ok(VERIFY_WRITE, (void __user *) newsp, origsp - newsp))
1030 goto badframe;
1031
1032 #if _NSIG != 64
1033 #error "Please adjust handle_signal()"
1034 #endif
1035 if (__put_user(to_user_ptr(ka->sa.sa_handler), &sc->handler)
1036 || __put_user(oldset->sig[0], &sc->oldmask)
1037 #ifdef CONFIG_PPC64
1038 || __put_user((oldset->sig[0] >> 32), &sc->_unused[3])
1039 #else
1040 || __put_user(oldset->sig[1], &sc->_unused[3])
1041 #endif
1042 || __put_user(to_user_ptr(frame), &sc->regs)
1043 || __put_user(sig, &sc->signal))
1044 goto badframe;
1045
1046 if (vdso32_sigtramp && current->thread.vdso_base) {
1047 if (save_user_regs(regs, &frame->mctx, 0))
1048 goto badframe;
1049 regs->link = current->thread.vdso_base + vdso32_sigtramp;
1050 } else {
1051 if (save_user_regs(regs, &frame->mctx, __NR_sigreturn))
1052 goto badframe;
1053 regs->link = (unsigned long) frame->mctx.tramp;
1054 }
1055
1056 current->thread.fpscr.val = 0; /* turn off all fp exceptions */
1057
1058 if (put_user(regs->gpr[1], (u32 __user *)newsp))
1059 goto badframe;
1060 regs->gpr[1] = newsp;
1061 regs->gpr[3] = sig;
1062 regs->gpr[4] = (unsigned long) sc;
1063 regs->nip = (unsigned long) ka->sa.sa_handler;
1064 regs->trap = 0;
1065
1066 return 1;
1067
1068 badframe:
1069 #ifdef DEBUG_SIG
1070 printk("badframe in handle_signal, regs=%p frame=%p newsp=%lx\n",
1071 regs, frame, newsp);
1072 #endif
1073 force_sigsegv(sig, current);
1074 return 0;
1075 }
1076
1077 /*
1078 * Do a signal return; undo the signal stack.
1079 */
1080 long sys_sigreturn(int r3, int r4, int r5, int r6, int r7, int r8,
1081 struct pt_regs *regs)
1082 {
1083 struct sigcontext __user *sc;
1084 struct sigcontext sigctx;
1085 struct mcontext __user *sr;
1086 sigset_t set;
1087
1088 /* Always make any pending restarted system calls return -EINTR */
1089 current_thread_info()->restart_block.fn = do_no_restart_syscall;
1090
1091 sc = (struct sigcontext __user *)(regs->gpr[1] + __SIGNAL_FRAMESIZE);
1092 if (copy_from_user(&sigctx, sc, sizeof(sigctx)))
1093 goto badframe;
1094
1095 #ifdef CONFIG_PPC64
1096 /*
1097 * Note that PPC32 puts the upper 32 bits of the sigmask in the
1098 * unused part of the signal stackframe
1099 */
1100 set.sig[0] = sigctx.oldmask + ((long)(sigctx._unused[3]) << 32);
1101 #else
1102 set.sig[0] = sigctx.oldmask;
1103 set.sig[1] = sigctx._unused[3];
1104 #endif
1105 restore_sigmask(&set);
1106
1107 sr = (struct mcontext __user *)from_user_ptr(sigctx.regs);
1108 if (!access_ok(VERIFY_READ, sr, sizeof(*sr))
1109 || restore_user_regs(regs, sr, 1))
1110 goto badframe;
1111
1112 set_thread_flag(TIF_RESTOREALL);
1113 return 0;
1114
1115 badframe:
1116 force_sig(SIGSEGV, current);
1117 return 0;
1118 }
1119
1120 /*
1121 * Note that 'init' is a special process: it doesn't get signals it doesn't
1122 * want to handle. Thus you cannot kill init even with a SIGKILL even by
1123 * mistake.
1124 */
1125 int do_signal(sigset_t *oldset, struct pt_regs *regs)
1126 {
1127 siginfo_t info;
1128 struct k_sigaction ka;
1129 unsigned int newsp;
1130 int signr, ret;
1131
1132 #ifdef CONFIG_PPC32
1133 if (try_to_freeze()) {
1134 signr = 0;
1135 if (!signal_pending(current))
1136 goto no_signal;
1137 }
1138 #endif
1139
1140 if (test_thread_flag(TIF_RESTORE_SIGMASK))
1141 oldset = &current->saved_sigmask;
1142 else if (!oldset)
1143 oldset = &current->blocked;
1144
1145 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
1146 #ifdef CONFIG_PPC32
1147 no_signal:
1148 #endif
1149 if (TRAP(regs) == 0x0C00 /* System Call! */
1150 && regs->ccr & 0x10000000 /* error signalled */
1151 && ((ret = regs->gpr[3]) == ERESTARTSYS
1152 || ret == ERESTARTNOHAND || ret == ERESTARTNOINTR
1153 || ret == ERESTART_RESTARTBLOCK)) {
1154
1155 if (signr > 0
1156 && (ret == ERESTARTNOHAND || ret == ERESTART_RESTARTBLOCK
1157 || (ret == ERESTARTSYS
1158 && !(ka.sa.sa_flags & SA_RESTART)))) {
1159 /* make the system call return an EINTR error */
1160 regs->result = -EINTR;
1161 regs->gpr[3] = EINTR;
1162 /* note that the cr0.SO bit is already set */
1163 } else {
1164 regs->nip -= 4; /* Back up & retry system call */
1165 regs->result = 0;
1166 regs->trap = 0;
1167 if (ret == ERESTART_RESTARTBLOCK)
1168 regs->gpr[0] = __NR_restart_syscall;
1169 else
1170 regs->gpr[3] = regs->orig_gpr3;
1171 }
1172 }
1173
1174 if (signr == 0) {
1175 /* No signal to deliver -- put the saved sigmask back */
1176 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
1177 clear_thread_flag(TIF_RESTORE_SIGMASK);
1178 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
1179 }
1180 return 0; /* no signals delivered */
1181 }
1182
1183 if ((ka.sa.sa_flags & SA_ONSTACK) && current->sas_ss_size
1184 && !on_sig_stack(regs->gpr[1]))
1185 newsp = current->sas_ss_sp + current->sas_ss_size;
1186 else
1187 newsp = regs->gpr[1];
1188 newsp &= ~0xfUL;
1189
1190 #ifdef CONFIG_PPC64
1191 /*
1192 * Reenable the DABR before delivering the signal to
1193 * user space. The DABR will have been cleared if it
1194 * triggered inside the kernel.
1195 */
1196 if (current->thread.dabr)
1197 set_dabr(current->thread.dabr);
1198 #endif
1199
1200 /* Whee! Actually deliver the signal. */
1201 if (ka.sa.sa_flags & SA_SIGINFO)
1202 ret = handle_rt_signal(signr, &ka, &info, oldset, regs, newsp);
1203 else
1204 ret = handle_signal(signr, &ka, &info, oldset, regs, newsp);
1205
1206 if (ret) {
1207 spin_lock_irq(&current->sighand->siglock);
1208 sigorsets(&current->blocked, &current->blocked,
1209 &ka.sa.sa_mask);
1210 if (!(ka.sa.sa_flags & SA_NODEFER))
1211 sigaddset(&current->blocked, signr);
1212 recalc_sigpending();
1213 spin_unlock_irq(&current->sighand->siglock);
1214 /* A signal was successfully delivered; the saved sigmask is in
1215 its frame, and we can clear the TIF_RESTORE_SIGMASK flag */
1216 if (test_thread_flag(TIF_RESTORE_SIGMASK))
1217 clear_thread_flag(TIF_RESTORE_SIGMASK);
1218 }
1219
1220 return ret;
1221 }