2 * arch/s390/kernel/signal.c
4 * Copyright (C) IBM Corp. 1999,2006
5 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
7 * Based on Intel version
9 * Copyright (C) 1991, 1992 Linus Torvalds
11 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
14 #include <linux/sched.h>
16 #include <linux/smp.h>
17 #include <linux/smp_lock.h>
18 #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>
24 #include <linux/stddef.h>
25 #include <linux/tty.h>
26 #include <linux/personality.h>
27 #include <linux/binfmts.h>
28 #include <asm/ucontext.h>
29 #include <asm/uaccess.h>
30 #include <asm/lowcore.h>
32 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
37 __u8 callee_used_stack[__SIGNAL_FRAMESIZE];
41 __u8 retcode[S390_SYSCALL_SIZE];
46 __u8 callee_used_stack[__SIGNAL_FRAMESIZE];
47 __u8 retcode[S390_SYSCALL_SIZE];
53 * Atomically swap in the new signal mask, and wait for a signal.
56 sys_sigsuspend(int history0, int history1, old_sigset_t mask)
59 spin_lock_irq(¤t->sighand->siglock);
60 current->saved_sigmask = current->blocked;
61 siginitset(¤t->blocked, mask);
63 spin_unlock_irq(¤t->sighand->siglock);
65 current->state = TASK_INTERRUPTIBLE;
67 set_thread_flag(TIF_RESTORE_SIGMASK);
69 return -ERESTARTNOHAND;
73 sys_sigaction(int sig, const struct old_sigaction __user *act,
74 struct old_sigaction __user *oact)
76 struct k_sigaction new_ka, old_ka;
81 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
82 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
83 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer) ||
84 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
85 __get_user(mask, &act->sa_mask))
87 siginitset(&new_ka.sa.sa_mask, mask);
90 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
93 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
94 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
95 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer) ||
96 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
97 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
105 sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss)
107 struct pt_regs *regs = task_pt_regs(current);
108 return do_sigaltstack(uss, uoss, regs->gprs[15]);
113 /* Returns non-zero on fault. */
114 static int save_sigregs(struct pt_regs *regs, _sigregs __user *sregs)
118 save_access_regs(current->thread.acrs);
120 /* Copy a 'clean' PSW mask to the user to avoid leaking
121 information about whether PER is currently on. */
122 user_sregs.regs.psw.mask = PSW_MASK_MERGE(psw_user_bits, regs->psw.mask);
123 user_sregs.regs.psw.addr = regs->psw.addr;
124 memcpy(&user_sregs.regs.gprs, ®s->gprs, sizeof(sregs->regs.gprs));
125 memcpy(&user_sregs.regs.acrs, current->thread.acrs,
126 sizeof(sregs->regs.acrs));
128 * We have to store the fp registers to current->thread.fp_regs
129 * to merge them with the emulated registers.
131 save_fp_regs(¤t->thread.fp_regs);
132 memcpy(&user_sregs.fpregs, ¤t->thread.fp_regs,
133 sizeof(s390_fp_regs));
134 return __copy_to_user(sregs, &user_sregs, sizeof(_sigregs));
137 /* Returns positive number on error */
138 static int restore_sigregs(struct pt_regs *regs, _sigregs __user *sregs)
143 /* Alwys make any pending restarted system call return -EINTR */
144 current_thread_info()->restart_block.fn = do_no_restart_syscall;
146 err = __copy_from_user(&user_sregs, sregs, sizeof(_sigregs));
149 regs->psw.mask = PSW_MASK_MERGE(regs->psw.mask,
150 user_sregs.regs.psw.mask);
151 regs->psw.addr = PSW_ADDR_AMODE | user_sregs.regs.psw.addr;
152 memcpy(®s->gprs, &user_sregs.regs.gprs, sizeof(sregs->regs.gprs));
153 memcpy(¤t->thread.acrs, &user_sregs.regs.acrs,
154 sizeof(sregs->regs.acrs));
155 restore_access_regs(current->thread.acrs);
157 memcpy(¤t->thread.fp_regs, &user_sregs.fpregs,
158 sizeof(s390_fp_regs));
159 current->thread.fp_regs.fpc &= FPC_VALID_MASK;
161 restore_fp_regs(¤t->thread.fp_regs);
162 regs->trap = -1; /* disable syscall checks */
166 asmlinkage long sys_sigreturn(void)
168 struct pt_regs *regs = task_pt_regs(current);
169 sigframe __user *frame = (sigframe __user *)regs->gprs[15];
172 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
174 if (__copy_from_user(&set.sig, &frame->sc.oldmask, _SIGMASK_COPY_SIZE))
177 sigdelsetmask(&set, ~_BLOCKABLE);
178 spin_lock_irq(¤t->sighand->siglock);
179 current->blocked = set;
181 spin_unlock_irq(¤t->sighand->siglock);
183 if (restore_sigregs(regs, &frame->sregs))
186 return regs->gprs[2];
189 force_sig(SIGSEGV, current);
193 asmlinkage long sys_rt_sigreturn(void)
195 struct pt_regs *regs = task_pt_regs(current);
196 rt_sigframe __user *frame = (rt_sigframe __user *)regs->gprs[15];
199 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
201 if (__copy_from_user(&set.sig, &frame->uc.uc_sigmask, sizeof(set)))
204 sigdelsetmask(&set, ~_BLOCKABLE);
205 spin_lock_irq(¤t->sighand->siglock);
206 current->blocked = set;
208 spin_unlock_irq(¤t->sighand->siglock);
210 if (restore_sigregs(regs, &frame->uc.uc_mcontext))
213 if (do_sigaltstack(&frame->uc.uc_stack, NULL,
214 regs->gprs[15]) == -EFAULT)
216 return regs->gprs[2];
219 force_sig(SIGSEGV, current);
224 * Set up a signal frame.
229 * Determine which stack to use..
231 static inline void __user *
232 get_sigframe(struct k_sigaction *ka, struct pt_regs * regs, size_t frame_size)
236 /* Default to using normal stack */
239 /* This is the X/Open sanctioned signal stack switching. */
240 if (ka->sa.sa_flags & SA_ONSTACK) {
241 if (! sas_ss_flags(sp))
242 sp = current->sas_ss_sp + current->sas_ss_size;
245 /* This is the legacy signal stack switching. */
246 else if (!user_mode(regs) &&
247 !(ka->sa.sa_flags & SA_RESTORER) &&
248 ka->sa.sa_restorer) {
249 sp = (unsigned long) ka->sa.sa_restorer;
252 return (void __user *)((sp - frame_size) & -8ul);
255 static inline int map_signal(int sig)
257 if (current_thread_info()->exec_domain
258 && current_thread_info()->exec_domain->signal_invmap
260 return current_thread_info()->exec_domain->signal_invmap[sig];
265 static int setup_frame(int sig, struct k_sigaction *ka,
266 sigset_t *set, struct pt_regs * regs)
268 sigframe __user *frame;
270 frame = get_sigframe(ka, regs, sizeof(sigframe));
271 if (!access_ok(VERIFY_WRITE, frame, sizeof(sigframe)))
274 if (__copy_to_user(&frame->sc.oldmask, &set->sig, _SIGMASK_COPY_SIZE))
277 if (save_sigregs(regs, &frame->sregs))
279 if (__put_user(&frame->sregs, &frame->sc.sregs))
282 /* Set up to return from userspace. If provided, use a stub
283 already in userspace. */
284 if (ka->sa.sa_flags & SA_RESTORER) {
285 regs->gprs[14] = (unsigned long)
286 ka->sa.sa_restorer | PSW_ADDR_AMODE;
288 regs->gprs[14] = (unsigned long)
289 frame->retcode | PSW_ADDR_AMODE;
290 if (__put_user(S390_SYSCALL_OPCODE | __NR_sigreturn,
291 (u16 __user *)(frame->retcode)))
295 /* Set up backchain. */
296 if (__put_user(regs->gprs[15], (addr_t __user *) frame))
299 /* Set up registers for signal handler */
300 regs->gprs[15] = (unsigned long) frame;
301 regs->psw.addr = (unsigned long) ka->sa.sa_handler | PSW_ADDR_AMODE;
303 regs->gprs[2] = map_signal(sig);
304 regs->gprs[3] = (unsigned long) &frame->sc;
306 /* We forgot to include these in the sigcontext.
307 To avoid breaking binary compatibility, they are passed as args. */
308 regs->gprs[4] = current->thread.trap_no;
309 regs->gprs[5] = current->thread.prot_addr;
311 /* Place signal number on stack to allow backtrace from handler. */
312 if (__put_user(regs->gprs[2], (int __user *) &frame->signo))
317 force_sigsegv(sig, current);
321 static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
322 sigset_t *set, struct pt_regs * regs)
325 rt_sigframe __user *frame;
327 frame = get_sigframe(ka, regs, sizeof(rt_sigframe));
328 if (!access_ok(VERIFY_WRITE, frame, sizeof(rt_sigframe)))
331 if (copy_siginfo_to_user(&frame->info, info))
334 /* Create the ucontext. */
335 err |= __put_user(0, &frame->uc.uc_flags);
336 err |= __put_user(NULL, &frame->uc.uc_link);
337 err |= __put_user((void __user *)current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
338 err |= __put_user(sas_ss_flags(regs->gprs[15]),
339 &frame->uc.uc_stack.ss_flags);
340 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
341 err |= save_sigregs(regs, &frame->uc.uc_mcontext);
342 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
346 /* Set up to return from userspace. If provided, use a stub
347 already in userspace. */
348 if (ka->sa.sa_flags & SA_RESTORER) {
349 regs->gprs[14] = (unsigned long)
350 ka->sa.sa_restorer | PSW_ADDR_AMODE;
352 regs->gprs[14] = (unsigned long)
353 frame->retcode | PSW_ADDR_AMODE;
354 if (__put_user(S390_SYSCALL_OPCODE | __NR_rt_sigreturn,
355 (u16 __user *)(frame->retcode)))
359 /* Set up backchain. */
360 if (__put_user(regs->gprs[15], (addr_t __user *) frame))
363 /* Set up registers for signal handler */
364 regs->gprs[15] = (unsigned long) frame;
365 regs->psw.addr = (unsigned long) ka->sa.sa_handler | PSW_ADDR_AMODE;
367 regs->gprs[2] = map_signal(sig);
368 regs->gprs[3] = (unsigned long) &frame->info;
369 regs->gprs[4] = (unsigned long) &frame->uc;
373 force_sigsegv(sig, current);
378 * OK, we're invoking a handler
382 handle_signal(unsigned long sig, struct k_sigaction *ka,
383 siginfo_t *info, sigset_t *oldset, struct pt_regs * regs)
387 /* Set up the stack frame */
388 if (ka->sa.sa_flags & SA_SIGINFO)
389 ret = setup_rt_frame(sig, ka, info, oldset, regs);
391 ret = setup_frame(sig, ka, oldset, regs);
394 spin_lock_irq(¤t->sighand->siglock);
395 sigorsets(¤t->blocked,¤t->blocked,&ka->sa.sa_mask);
396 if (!(ka->sa.sa_flags & SA_NODEFER))
397 sigaddset(¤t->blocked,sig);
399 spin_unlock_irq(¤t->sighand->siglock);
406 * Note that 'init' is a special process: it doesn't get signals it doesn't
407 * want to handle. Thus you cannot kill init even with a SIGKILL even by
410 * Note that we go through the signals twice: once to check the signals that
411 * the kernel can handle, and then we build all the user-level signal handling
412 * stack-frames in one go after that.
414 void do_signal(struct pt_regs *regs)
416 unsigned long retval = 0, continue_addr = 0, restart_addr = 0;
419 struct k_sigaction ka;
423 * We want the common case to go fast, which
424 * is why we may in certain cases get here from
425 * kernel mode. Just return without doing anything
428 if (!user_mode(regs))
431 if (test_thread_flag(TIF_RESTORE_SIGMASK))
432 oldset = ¤t->saved_sigmask;
434 oldset = ¤t->blocked;
436 /* Are we from a system call? */
437 if (regs->trap == __LC_SVC_OLD_PSW) {
438 continue_addr = regs->psw.addr;
439 restart_addr = continue_addr - regs->ilc;
440 retval = regs->gprs[2];
442 /* Prepare for system call restart. We do this here so that a
443 debugger will see the already changed PSW. */
445 case -ERESTARTNOHAND:
447 case -ERESTARTNOINTR:
448 regs->gprs[2] = regs->orig_gpr2;
449 regs->psw.addr = restart_addr;
451 case -ERESTART_RESTARTBLOCK:
452 regs->gprs[2] = -EINTR;
454 regs->trap = -1; /* Don't deal with this again. */
457 /* Get signal to deliver. When running under ptrace, at this point
458 the debugger may change all our registers ... */
459 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
461 /* Depending on the signal settings we may need to revert the
462 decision to restart the system call. */
463 if (signr > 0 && regs->psw.addr == restart_addr) {
464 if (retval == -ERESTARTNOHAND
465 || (retval == -ERESTARTSYS
466 && !(current->sighand->action[signr-1].sa.sa_flags
468 regs->gprs[2] = -EINTR;
469 regs->psw.addr = continue_addr;
474 /* Whee! Actually deliver the signal. */
476 if (test_thread_flag(TIF_31BIT)) {
477 extern int handle_signal32(unsigned long sig,
478 struct k_sigaction *ka,
481 struct pt_regs *regs);
483 signr, &ka, &info, oldset, regs) == 0) {
484 if (test_thread_flag(TIF_RESTORE_SIGMASK))
485 clear_thread_flag(TIF_RESTORE_SIGMASK);
490 if (handle_signal(signr, &ka, &info, oldset, regs) == 0) {
492 * A signal was successfully delivered; the saved
493 * sigmask will have been stored in the signal frame,
494 * and will be restored by sigreturn, so we can simply
495 * clear the TIF_RESTORE_SIGMASK flag.
497 if (test_thread_flag(TIF_RESTORE_SIGMASK))
498 clear_thread_flag(TIF_RESTORE_SIGMASK);
504 * If there's no signal to deliver, we just put the saved sigmask back.
506 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
507 clear_thread_flag(TIF_RESTORE_SIGMASK);
508 sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL);
511 /* Restart a different system call. */
512 if (retval == -ERESTART_RESTARTBLOCK
513 && regs->psw.addr == continue_addr) {
514 regs->gprs[2] = __NR_restart_syscall;
515 set_thread_flag(TIF_RESTART_SVC);