blob: 0f4cc67f4268d578d9c0fdd65fa0f9fc1d0f3101 [file] [log] [blame]
Benjamin Herrenschmidt22e38f22007-06-04 15:15:49 +10001/*
2 * Common signal handling code for both 32 and 64 bits
3 *
4 * Copyright (c) 2007 Benjamin Herrenschmidt, IBM Coproration
5 * Extracted from signal_32.c and signal_64.c
6 *
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.
10 */
11
Roland McGrath6558ba22008-07-27 16:49:50 +100012#include <linux/tracehook.h>
Benjamin Herrenschmidt22e38f22007-06-04 15:15:49 +100013#include <linux/signal.h>
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +110014#include <linux/key.h>
K.Prasad06532a62010-06-15 11:35:41 +053015#include <asm/hw_breakpoint.h>
Benjamin Herrenschmidta3f61dc2007-06-04 17:22:48 +100016#include <asm/uaccess.h>
Benjamin Herrenschmidt22e38f22007-06-04 15:15:49 +100017#include <asm/unistd.h>
David Howellsae3a1972012-03-28 18:30:02 +010018#include <asm/debug.h>
Benjamin Herrenschmidt22e38f22007-06-04 15:15:49 +100019
Christoph Hellwigdb277e92007-06-04 15:15:51 +100020#include "signal.h"
21
Olof Johanssond0c3d532007-10-12 10:20:07 +100022/* Log an error when sending an unhandled signal to a process. Controlled
23 * through debug.exception-trace sysctl.
24 */
25
26int show_unhandled_signals = 0;
27
Benjamin Herrenschmidta3f61dc2007-06-04 17:22:48 +100028/*
29 * Allocate space for the signal frame
30 */
31void __user * get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
Josh Boyerefbda862009-03-25 06:23:59 +000032 size_t frame_size, int is_32)
Benjamin Herrenschmidta3f61dc2007-06-04 17:22:48 +100033{
34 unsigned long oldsp, newsp;
35
36 /* Default to using normal stack */
Josh Boyerefbda862009-03-25 06:23:59 +000037 oldsp = get_clean_sp(regs, is_32);
Benjamin Herrenschmidta3f61dc2007-06-04 17:22:48 +100038
39 /* Check for alt stack */
40 if ((ka->sa.sa_flags & SA_ONSTACK) &&
41 current->sas_ss_size && !on_sig_stack(oldsp))
42 oldsp = (current->sas_ss_sp + current->sas_ss_size);
43
44 /* Get aligned frame */
45 newsp = (oldsp - frame_size) & ~0xFUL;
46
47 /* Check access */
48 if (!access_ok(VERIFY_WRITE, (void __user *)newsp, oldsp - newsp))
49 return NULL;
50
51 return (void __user *)newsp;
52}
53
Christoph Hellwigf478f542007-06-04 15:15:52 +100054
Christoph Hellwigdb277e92007-06-04 15:15:51 +100055/*
56 * Restore the user process's signal mask
57 */
58void restore_sigmask(sigset_t *set)
59{
60 sigdelsetmask(set, ~_BLOCKABLE);
Matt Fleminga2007ce2012-02-14 01:40:59 +000061 set_current_blocked(set);
Christoph Hellwigdb277e92007-06-04 15:15:51 +100062}
63
Christoph Hellwigf478f542007-06-04 15:15:52 +100064static void check_syscall_restart(struct pt_regs *regs, struct k_sigaction *ka,
65 int has_handler)
Benjamin Herrenschmidt22e38f22007-06-04 15:15:49 +100066{
67 unsigned long ret = regs->gpr[3];
68 int restart = 1;
69
70 /* syscall ? */
71 if (TRAP(regs) != 0x0C00)
72 return;
73
74 /* error signalled ? */
75 if (!(regs->ccr & 0x10000000))
76 return;
77
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.
84 */
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
90 */
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.
96 */
97 break;
98 default:
99 return;
100 }
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;
112 }
113}
Christoph Hellwig69d15f62007-06-04 15:15:50 +1000114
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +1100115static int do_signal(struct pt_regs *regs)
Christoph Hellwigf478f542007-06-04 15:15:52 +1000116{
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +1100117 sigset_t *oldset;
Christoph Hellwigf478f542007-06-04 15:15:52 +1000118 siginfo_t info;
119 int signr;
120 struct k_sigaction ka;
121 int ret;
122 int is32 = is_32bit_task();
123
Roland McGrath7a101742008-04-28 17:30:37 +1000124 if (current_thread_info()->local_flags & _TLF_RESTORE_SIGMASK)
Christoph Hellwigf478f542007-06-04 15:15:52 +1000125 oldset = &current->saved_sigmask;
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +1100126 else
Christoph Hellwigf478f542007-06-04 15:15:52 +1000127 oldset = &current->blocked;
128
129 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
130
Christoph Hellwigf478f542007-06-04 15:15:52 +1000131 /* Is there any syscall restart business here ? */
132 check_syscall_restart(regs, &ka, signr > 0);
133
134 if (signr <= 0) {
135 /* No signal to deliver -- put the saved sigmask back */
Al Viro51a7b442012-05-21 23:33:55 -0400136 restore_saved_sigmask();
Al Viro9a81c162010-09-20 21:48:57 +0100137 regs->trap = 0;
Christoph Hellwigf478f542007-06-04 15:15:52 +1000138 return 0; /* no signals delivered */
139 }
140
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000141#ifndef CONFIG_PPC_ADV_DEBUG_REGS
Christoph Hellwigf478f542007-06-04 15:15:52 +1000142 /*
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.
146 */
Dave Kleikamp3bffb652010-02-08 11:51:18 +0000147 if (current->thread.dabr)
Christoph Hellwigf478f542007-06-04 15:15:52 +1000148 set_dabr(current->thread.dabr);
Luis Machadod6a61bf2008-07-24 02:10:41 +1000149#endif
K.Prasad06532a62010-06-15 11:35:41 +0530150 /* Re-enable the breakpoints for the signal stack */
151 thread_change_pc(current, regs);
Christoph Hellwigf478f542007-06-04 15:15:52 +1000152
153 if (is32) {
Christoph Hellwigf478f542007-06-04 15:15:52 +1000154 if (ka.sa.sa_flags & SA_SIGINFO)
155 ret = handle_rt_signal32(signr, &ka, &info, oldset,
Benjamin Herrenschmidta3f61dc2007-06-04 17:22:48 +1000156 regs);
Christoph Hellwigf478f542007-06-04 15:15:52 +1000157 else
158 ret = handle_signal32(signr, &ka, &info, oldset,
Benjamin Herrenschmidta3f61dc2007-06-04 17:22:48 +1000159 regs);
Christoph Hellwigf478f542007-06-04 15:15:52 +1000160 } else {
161 ret = handle_rt_signal64(signr, &ka, &info, oldset, regs);
Christoph Hellwigf478f542007-06-04 15:15:52 +1000162 }
163
Al Viro9a81c162010-09-20 21:48:57 +0100164 regs->trap = 0;
Christoph Hellwigf478f542007-06-04 15:15:52 +1000165 if (ret) {
Matt Fleminga2007ce2012-02-14 01:40:59 +0000166 block_sigmask(&ka, signr);
Christoph Hellwigf478f542007-06-04 15:15:52 +1000167
168 /*
169 * A signal was successfully delivered; the saved sigmask is in
Roland McGrath7a101742008-04-28 17:30:37 +1000170 * its frame, and we can clear the TLF_RESTORE_SIGMASK flag.
Christoph Hellwigf478f542007-06-04 15:15:52 +1000171 */
Roland McGrath7a101742008-04-28 17:30:37 +1000172 current_thread_info()->local_flags &= ~_TLF_RESTORE_SIGMASK;
Roland McGrath6558ba22008-07-27 16:49:50 +1000173
174 /*
175 * Let tracing know that we've done the handler setup.
176 */
177 tracehook_signal_handler(signr, &info, &ka, regs,
178 test_thread_flag(TIF_SINGLESTEP));
Christoph Hellwigf478f542007-06-04 15:15:52 +1000179 }
180
181 return ret;
182}
183
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +1100184void do_notify_resume(struct pt_regs *regs, unsigned long thread_info_flags)
Roland McGrath7d6d6372008-07-27 16:52:52 +1000185{
186 if (thread_info_flags & _TIF_SIGPENDING)
Benjamin Herrenschmidt18b246f2012-02-22 16:48:32 +1100187 do_signal(regs);
Roland McGrath7d6d6372008-07-27 16:52:52 +1000188
189 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
190 clear_thread_flag(TIF_NOTIFY_RESUME);
191 tracehook_notify_resume(regs);
192 }
193}
194
Christoph Hellwig69d15f62007-06-04 15:15:50 +1000195long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
196 unsigned long r5, unsigned long r6, unsigned long r7,
197 unsigned long r8, struct pt_regs *regs)
198{
199 return do_sigaltstack(uss, uoss, regs->gpr[1]);
200}