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/kernel.h>
18 #include <linux/signal.h>
19 #include <linux/errno.h>
20 #include <linux/wait.h>
21 #include <linux/ptrace.h>
22 #include <linux/unistd.h>
23 #include <linux/stddef.h>
24 #include <linux/tty.h>
25 #include <linux/personality.h>
26 #include <linux/binfmts.h>
27 #include <linux/tracehook.h>
28 #include <linux/syscalls.h>
29 #include <linux/compat.h>
30 #include <asm/ucontext.h>
31 #include <asm/uaccess.h>
32 #include <asm/lowcore.h>
35 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
40 __u8 callee_used_stack[__SIGNAL_FRAMESIZE];
44 __u8 retcode[S390_SYSCALL_SIZE];
49 __u8 callee_used_stack[__SIGNAL_FRAMESIZE];
50 __u8 retcode[S390_SYSCALL_SIZE];
56 * Atomically swap in the new signal mask, and wait for a signal.
58 SYSCALL_DEFINE3(sigsuspend, int, history0, int, history1, old_sigset_t, mask)
61 spin_lock_irq(¤t->sighand->siglock);
62 current->saved_sigmask = current->blocked;
63 siginitset(¤t->blocked, mask);
65 spin_unlock_irq(¤t->sighand->siglock);
67 set_current_state(TASK_INTERRUPTIBLE);
69 set_thread_flag(TIF_RESTORE_SIGMASK);
71 return -ERESTARTNOHAND;
74 SYSCALL_DEFINE3(sigaction, int, sig, const struct old_sigaction __user *, act,
75 struct old_sigaction __user *, oact)
77 struct k_sigaction new_ka, old_ka;
82 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
83 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
84 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer) ||
85 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
86 __get_user(mask, &act->sa_mask))
88 siginitset(&new_ka.sa.sa_mask, mask);
91 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
94 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
95 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
96 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer) ||
97 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) ||
98 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask))
105 SYSCALL_DEFINE2(sigaltstack, const stack_t __user *, uss,
106 stack_t __user *, uoss)
108 struct pt_regs *regs = task_pt_regs(current);
109 return do_sigaltstack(uss, uoss, regs->gprs[15]);
112 /* Returns non-zero on fault. */
113 static int save_sigregs(struct pt_regs *regs, _sigregs __user *sregs)
117 save_access_regs(current->thread.acrs);
119 /* Copy a 'clean' PSW mask to the user to avoid leaking
120 information about whether PER is currently on. */
121 user_sregs.regs.psw.mask = PSW_MASK_MERGE(psw_user_bits, regs->psw.mask);
122 user_sregs.regs.psw.addr = regs->psw.addr;
123 memcpy(&user_sregs.regs.gprs, ®s->gprs, sizeof(sregs->regs.gprs));
124 memcpy(&user_sregs.regs.acrs, current->thread.acrs,
125 sizeof(sregs->regs.acrs));
127 * We have to store the fp registers to current->thread.fp_regs
128 * to merge them with the emulated registers.
130 save_fp_regs(¤t->thread.fp_regs);
131 memcpy(&user_sregs.fpregs, ¤t->thread.fp_regs,
132 sizeof(s390_fp_regs));
133 return __copy_to_user(sregs, &user_sregs, sizeof(_sigregs));
136 /* Returns positive number on error */
137 static int restore_sigregs(struct pt_regs *regs, _sigregs __user *sregs)
142 /* Alwys make any pending restarted system call return -EINTR */
143 current_thread_info()->restart_block.fn = do_no_restart_syscall;
145 err = __copy_from_user(&user_sregs, sregs, sizeof(_sigregs));
148 regs->psw.mask = PSW_MASK_MERGE(regs->psw.mask,
149 user_sregs.regs.psw.mask);
150 regs->psw.addr = PSW_ADDR_AMODE | user_sregs.regs.psw.addr;
151 memcpy(®s->gprs, &user_sregs.regs.gprs, sizeof(sregs->regs.gprs));
152 memcpy(¤t->thread.acrs, &user_sregs.regs.acrs,
153 sizeof(sregs->regs.acrs));
154 restore_access_regs(current->thread.acrs);
156 memcpy(¤t->thread.fp_regs, &user_sregs.fpregs,
157 sizeof(s390_fp_regs));
158 current->thread.fp_regs.fpc &= FPC_VALID_MASK;
160 restore_fp_regs(¤t->thread.fp_regs);
161 regs->svcnr = 0; /* disable syscall checks */
165 SYSCALL_DEFINE0(sigreturn)
167 struct pt_regs *regs = task_pt_regs(current);
168 sigframe __user *frame = (sigframe __user *)regs->gprs[15];
171 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
173 if (__copy_from_user(&set.sig, &frame->sc.oldmask, _SIGMASK_COPY_SIZE))
176 sigdelsetmask(&set, ~_BLOCKABLE);
177 spin_lock_irq(¤t->sighand->siglock);
178 current->blocked = set;
180 spin_unlock_irq(¤t->sighand->siglock);
182 if (restore_sigregs(regs, &frame->sregs))
185 return regs->gprs[2];
188 force_sig(SIGSEGV, current);
192 SYSCALL_DEFINE0(rt_sigreturn)
194 struct pt_regs *regs = task_pt_regs(current);
195 rt_sigframe __user *frame = (rt_sigframe __user *)regs->gprs[15];
198 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
200 if (__copy_from_user(&set.sig, &frame->uc.uc_sigmask, sizeof(set)))
203 sigdelsetmask(&set, ~_BLOCKABLE);
204 spin_lock_irq(¤t->sighand->siglock);
205 current->blocked = set;
207 spin_unlock_irq(¤t->sighand->siglock);
209 if (restore_sigregs(regs, &frame->uc.uc_mcontext))
212 if (do_sigaltstack(&frame->uc.uc_stack, NULL,
213 regs->gprs[15]) == -EFAULT)
215 return regs->gprs[2];
218 force_sig(SIGSEGV, current);
223 * Set up a signal frame.
228 * Determine which stack to use..
230 static inline void __user *
231 get_sigframe(struct k_sigaction *ka, struct pt_regs * regs, size_t frame_size)
235 /* Default to using normal stack */
238 /* Overflow on alternate signal stack gives SIGSEGV. */
239 if (on_sig_stack(sp) && !on_sig_stack((sp - frame_size) & -8UL))
240 return (void __user *) -1UL;
242 /* This is the X/Open sanctioned signal stack switching. */
243 if (ka->sa.sa_flags & SA_ONSTACK) {
244 if (! sas_ss_flags(sp))
245 sp = current->sas_ss_sp + current->sas_ss_size;
248 /* This is the legacy signal stack switching. */
249 else if (!user_mode(regs) &&
250 !(ka->sa.sa_flags & SA_RESTORER) &&
251 ka->sa.sa_restorer) {
252 sp = (unsigned long) ka->sa.sa_restorer;
255 return (void __user *)((sp - frame_size) & -8ul);
258 static inline int map_signal(int sig)
260 if (current_thread_info()->exec_domain
261 && current_thread_info()->exec_domain->signal_invmap
263 return current_thread_info()->exec_domain->signal_invmap[sig];
268 static int setup_frame(int sig, struct k_sigaction *ka,
269 sigset_t *set, struct pt_regs * regs)
271 sigframe __user *frame;
273 frame = get_sigframe(ka, regs, sizeof(sigframe));
274 if (!access_ok(VERIFY_WRITE, frame, sizeof(sigframe)))
277 if (frame == (void __user *) -1UL)
280 if (__copy_to_user(&frame->sc.oldmask, &set->sig, _SIGMASK_COPY_SIZE))
283 if (save_sigregs(regs, &frame->sregs))
285 if (__put_user(&frame->sregs, &frame->sc.sregs))
288 /* Set up to return from userspace. If provided, use a stub
289 already in userspace. */
290 if (ka->sa.sa_flags & SA_RESTORER) {
291 regs->gprs[14] = (unsigned long)
292 ka->sa.sa_restorer | PSW_ADDR_AMODE;
294 regs->gprs[14] = (unsigned long)
295 frame->retcode | PSW_ADDR_AMODE;
296 if (__put_user(S390_SYSCALL_OPCODE | __NR_sigreturn,
297 (u16 __user *)(frame->retcode)))
301 /* Set up backchain. */
302 if (__put_user(regs->gprs[15], (addr_t __user *) frame))
305 /* Set up registers for signal handler */
306 regs->gprs[15] = (unsigned long) frame;
307 regs->psw.addr = (unsigned long) ka->sa.sa_handler | PSW_ADDR_AMODE;
309 regs->gprs[2] = map_signal(sig);
310 regs->gprs[3] = (unsigned long) &frame->sc;
312 /* We forgot to include these in the sigcontext.
313 To avoid breaking binary compatibility, they are passed as args. */
314 regs->gprs[4] = current->thread.trap_no;
315 regs->gprs[5] = current->thread.prot_addr;
316 regs->gprs[6] = task_thread_info(current)->last_break;
318 /* Place signal number on stack to allow backtrace from handler. */
319 if (__put_user(regs->gprs[2], (int __user *) &frame->signo))
324 force_sigsegv(sig, current);
328 static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
329 sigset_t *set, struct pt_regs * regs)
332 rt_sigframe __user *frame;
334 frame = get_sigframe(ka, regs, sizeof(rt_sigframe));
335 if (!access_ok(VERIFY_WRITE, frame, sizeof(rt_sigframe)))
338 if (frame == (void __user *) -1UL)
341 if (copy_siginfo_to_user(&frame->info, info))
344 /* Create the ucontext. */
345 err |= __put_user(0, &frame->uc.uc_flags);
346 err |= __put_user(NULL, &frame->uc.uc_link);
347 err |= __put_user((void __user *)current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
348 err |= __put_user(sas_ss_flags(regs->gprs[15]),
349 &frame->uc.uc_stack.ss_flags);
350 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
351 err |= save_sigregs(regs, &frame->uc.uc_mcontext);
352 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
356 /* Set up to return from userspace. If provided, use a stub
357 already in userspace. */
358 if (ka->sa.sa_flags & SA_RESTORER) {
359 regs->gprs[14] = (unsigned long)
360 ka->sa.sa_restorer | PSW_ADDR_AMODE;
362 regs->gprs[14] = (unsigned long)
363 frame->retcode | PSW_ADDR_AMODE;
364 if (__put_user(S390_SYSCALL_OPCODE | __NR_rt_sigreturn,
365 (u16 __user *)(frame->retcode)))
369 /* Set up backchain. */
370 if (__put_user(regs->gprs[15], (addr_t __user *) frame))
373 /* Set up registers for signal handler */
374 regs->gprs[15] = (unsigned long) frame;
375 regs->psw.addr = (unsigned long) ka->sa.sa_handler | PSW_ADDR_AMODE;
377 regs->gprs[2] = map_signal(sig);
378 regs->gprs[3] = (unsigned long) &frame->info;
379 regs->gprs[4] = (unsigned long) &frame->uc;
380 regs->gprs[5] = task_thread_info(current)->last_break;
384 force_sigsegv(sig, current);
389 * OK, we're invoking a handler
393 handle_signal(unsigned long sig, struct k_sigaction *ka,
394 siginfo_t *info, sigset_t *oldset, struct pt_regs * regs)
398 /* Set up the stack frame */
399 if (ka->sa.sa_flags & SA_SIGINFO)
400 ret = setup_rt_frame(sig, ka, info, oldset, regs);
402 ret = setup_frame(sig, ka, oldset, regs);
405 spin_lock_irq(¤t->sighand->siglock);
406 sigorsets(¤t->blocked,¤t->blocked,&ka->sa.sa_mask);
407 if (!(ka->sa.sa_flags & SA_NODEFER))
408 sigaddset(¤t->blocked,sig);
410 spin_unlock_irq(¤t->sighand->siglock);
417 * Note that 'init' is a special process: it doesn't get signals it doesn't
418 * want to handle. Thus you cannot kill init even with a SIGKILL even by
421 * Note that we go through the signals twice: once to check the signals that
422 * the kernel can handle, and then we build all the user-level signal handling
423 * stack-frames in one go after that.
425 void do_signal(struct pt_regs *regs)
427 unsigned long retval = 0, continue_addr = 0, restart_addr = 0;
430 struct k_sigaction ka;
434 * We want the common case to go fast, which
435 * is why we may in certain cases get here from
436 * kernel mode. Just return without doing anything
439 if (!user_mode(regs))
442 if (test_thread_flag(TIF_RESTORE_SIGMASK))
443 oldset = ¤t->saved_sigmask;
445 oldset = ¤t->blocked;
447 /* Are we from a system call? */
449 continue_addr = regs->psw.addr;
450 restart_addr = continue_addr - regs->ilc;
451 retval = regs->gprs[2];
453 /* Prepare for system call restart. We do this here so that a
454 debugger will see the already changed PSW. */
456 case -ERESTARTNOHAND:
458 case -ERESTARTNOINTR:
459 regs->gprs[2] = regs->orig_gpr2;
460 regs->psw.addr = restart_addr;
462 case -ERESTART_RESTARTBLOCK:
463 regs->gprs[2] = -EINTR;
465 regs->svcnr = 0; /* Don't deal with this again. */
468 /* Get signal to deliver. When running under ptrace, at this point
469 the debugger may change all our registers ... */
470 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
472 /* Depending on the signal settings we may need to revert the
473 decision to restart the system call. */
474 if (signr > 0 && regs->psw.addr == restart_addr) {
475 if (retval == -ERESTARTNOHAND
476 || (retval == -ERESTARTSYS
477 && !(current->sighand->action[signr-1].sa.sa_flags
479 regs->gprs[2] = -EINTR;
480 regs->psw.addr = continue_addr;
485 /* Whee! Actually deliver the signal. */
488 if (is_compat_task()) {
489 ret = handle_signal32(signr, &ka, &info, oldset, regs);
493 ret = handle_signal(signr, &ka, &info, oldset, regs);
496 * A signal was successfully delivered; the saved
497 * sigmask will have been stored in the signal frame,
498 * and will be restored by sigreturn, so we can simply
499 * clear the TIF_RESTORE_SIGMASK flag.
501 if (test_thread_flag(TIF_RESTORE_SIGMASK))
502 clear_thread_flag(TIF_RESTORE_SIGMASK);
505 * Let tracing know that we've done the handler setup.
507 tracehook_signal_handler(signr, &info, &ka, regs,
508 current->thread.per_info.single_step);
514 * If there's no signal to deliver, we just put the saved sigmask back.
516 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
517 clear_thread_flag(TIF_RESTORE_SIGMASK);
518 sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL);
521 /* Restart a different system call. */
522 if (retval == -ERESTART_RESTARTBLOCK
523 && regs->psw.addr == continue_addr) {
524 regs->gprs[2] = __NR_restart_syscall;
525 set_thread_flag(TIF_RESTART_SVC);
529 void do_notify_resume(struct pt_regs *regs)
531 clear_thread_flag(TIF_NOTIFY_RESUME);
532 tracehook_notify_resume(regs);
533 if (current->replacement_session_keyring)
534 key_replace_session_keyring();