Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / powerpc / kernel / signal.c
bloba65a44fbe52375c5b1b5ca7a8deb33305ab11536
1 /*
2 * Common signal handling code for both 32 and 64 bits
4 * Copyright (c) 2007 Benjamin Herrenschmidt, IBM Coproration
5 * Extracted from signal_32.c and signal_64.c
7 * This file is subject to the terms and conditions of the GNU General
8 * Public License. See the file README.legal in the main directory of
9 * this archive for more details.
12 #include <linux/ptrace.h>
13 #include <linux/signal.h>
14 #include <asm/uaccess.h>
15 #include <asm/unistd.h>
17 #include "signal.h"
19 /* Log an error when sending an unhandled signal to a process. Controlled
20 * through debug.exception-trace sysctl.
23 int show_unhandled_signals = 0;
26 * Allocate space for the signal frame
28 void __user * get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
29 size_t frame_size)
31 unsigned long oldsp, newsp;
33 /* Default to using normal stack */
34 oldsp = regs->gpr[1];
36 /* Check for alt stack */
37 if ((ka->sa.sa_flags & SA_ONSTACK) &&
38 current->sas_ss_size && !on_sig_stack(oldsp))
39 oldsp = (current->sas_ss_sp + current->sas_ss_size);
41 /* Get aligned frame */
42 newsp = (oldsp - frame_size) & ~0xFUL;
44 /* Check access */
45 if (!access_ok(VERIFY_WRITE, (void __user *)newsp, oldsp - newsp))
46 return NULL;
48 return (void __user *)newsp;
53 * Restore the user process's signal mask
55 void restore_sigmask(sigset_t *set)
57 sigdelsetmask(set, ~_BLOCKABLE);
58 spin_lock_irq(&current->sighand->siglock);
59 current->blocked = *set;
60 recalc_sigpending();
61 spin_unlock_irq(&current->sighand->siglock);
64 static void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka,
65 int has_handler)
67 unsigned long ret = regs->gpr[3];
68 int restart = 1;
70 /* syscall ? */
71 if (TRAP(regs) != 0x0C00)
72 return;
74 /* error signalled ? */
75 if (!(regs->ccr & 0x10000000))
76 return;
78 switch (ret) {
79 case ERESTART_RESTARTBLOCK:
80 case ERESTARTNOHAND:
81 /* ERESTARTNOHAND means that the syscall should only be
82 * restarted if there was no handler for the signal, and since
83 * we only get here if there is a handler, we dont restart.
85 restart = !has_handler;
86 break;
87 case ERESTARTSYS:
88 /* ERESTARTSYS means to restart the syscall if there is no
89 * handler or the handler was registered with SA_RESTART
91 restart = !has_handler || (ka->sa.sa_flags & SA_RESTART) != 0;
92 break;
93 case ERESTARTNOINTR:
94 /* ERESTARTNOINTR means that the syscall should be
95 * called again after the signal handler returns.
97 break;
98 default:
99 return;
101 if (restart) {
102 if (ret == ERESTART_RESTARTBLOCK)
103 regs->gpr[0] = __NR_restart_syscall;
104 else
105 regs->gpr[3] = regs->orig_gpr3;
106 regs->nip -= 4;
107 regs->result = 0;
108 } else {
109 regs->result = -EINTR;
110 regs->gpr[3] = EINTR;
111 regs->ccr |= 0x10000000;
115 int do_signal(sigset_t *oldset, struct pt_regs *regs)
117 siginfo_t info;
118 int signr;
119 struct k_sigaction ka;
120 int ret;
121 int is32 = is_32bit_task();
123 if (test_thread_flag(TIF_RESTORE_SIGMASK))
124 oldset = &current->saved_sigmask;
125 else if (!oldset)
126 oldset = &current->blocked;
128 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
130 /* Is there any syscall restart business here ? */
131 check_syscall_restart(regs, &ka, signr > 0);
133 if (signr <= 0) {
134 /* No signal to deliver -- put the saved sigmask back */
135 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
136 clear_thread_flag(TIF_RESTORE_SIGMASK);
137 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
139 return 0; /* no signals delivered */
143 * Reenable the DABR before delivering the signal to
144 * user space. The DABR will have been cleared if it
145 * triggered inside the kernel.
147 if (current->thread.dabr)
148 set_dabr(current->thread.dabr);
150 if (is32) {
151 if (ka.sa.sa_flags & SA_SIGINFO)
152 ret = handle_rt_signal32(signr, &ka, &info, oldset,
153 regs);
154 else
155 ret = handle_signal32(signr, &ka, &info, oldset,
156 regs);
157 } else {
158 ret = handle_rt_signal64(signr, &ka, &info, oldset, regs);
161 if (ret) {
162 spin_lock_irq(&current->sighand->siglock);
163 sigorsets(&current->blocked, &current->blocked,
164 &ka.sa.sa_mask);
165 if (!(ka.sa.sa_flags & SA_NODEFER))
166 sigaddset(&current->blocked, signr);
167 recalc_sigpending();
168 spin_unlock_irq(&current->sighand->siglock);
171 * A signal was successfully delivered; the saved sigmask is in
172 * its frame, and we can clear the TIF_RESTORE_SIGMASK flag.
174 if (test_thread_flag(TIF_RESTORE_SIGMASK))
175 clear_thread_flag(TIF_RESTORE_SIGMASK);
178 return ret;
181 long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
182 unsigned long r5, unsigned long r6, unsigned long r7,
183 unsigned long r8, struct pt_regs *regs)
185 return do_sigaltstack(uss, uoss, regs->gpr[1]);