Jeff Dike | 1d3468a | 2006-07-10 04:45:13 -0700 | [diff] [blame] | 1 | /* |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 6 | #include <linux/module.h> |
| 7 | #include <linux/ptrace.h> |
| 8 | #include <linux/sched.h> |
| 9 | #include <asm/siginfo.h> |
| 10 | #include <asm/signal.h> |
| 11 | #include <asm/unistd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include "frame_kern.h" |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 13 | #include "kern_util.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | EXPORT_SYMBOL(block_signals); |
| 16 | EXPORT_SYMBOL(unblock_signals); |
| 17 | |
| 18 | #define _S(nr) (1<<((nr)-1)) |
| 19 | |
| 20 | #define _BLOCKABLE (~(_S(SIGKILL) | _S(SIGSTOP))) |
| 21 | |
| 22 | /* |
| 23 | * OK, we're invoking a handler |
Jeff Dike | 1d3468a | 2006-07-10 04:45:13 -0700 | [diff] [blame] | 24 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | static int handle_signal(struct pt_regs *regs, unsigned long signr, |
| 26 | struct k_sigaction *ka, siginfo_t *info, |
| 27 | sigset_t *oldset) |
| 28 | { |
| 29 | unsigned long sp; |
| 30 | int err; |
| 31 | |
| 32 | /* Always make any pending restarted system calls return -EINTR */ |
| 33 | current_thread_info()->restart_block.fn = do_no_restart_syscall; |
| 34 | |
| 35 | /* Did we come from a system call? */ |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 36 | if (PT_REGS_SYSCALL_NR(regs) >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /* If so, check system call restarting.. */ |
Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 38 | switch (PT_REGS_SYSCALL_RET(regs)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | case -ERESTART_RESTARTBLOCK: |
| 40 | case -ERESTARTNOHAND: |
| 41 | PT_REGS_SYSCALL_RET(regs) = -EINTR; |
| 42 | break; |
| 43 | |
| 44 | case -ERESTARTSYS: |
| 45 | if (!(ka->sa.sa_flags & SA_RESTART)) { |
| 46 | PT_REGS_SYSCALL_RET(regs) = -EINTR; |
| 47 | break; |
| 48 | } |
| 49 | /* fallthrough */ |
| 50 | case -ERESTARTNOINTR: |
| 51 | PT_REGS_RESTART_SYSCALL(regs); |
| 52 | PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs); |
| 53 | break; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | sp = PT_REGS_SP(regs); |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 58 | if ((ka->sa.sa_flags & SA_ONSTACK) && (sas_ss_flags(sp) == 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | sp = current->sas_ss_sp + current->sas_ss_size; |
| 60 | |
| 61 | #ifdef CONFIG_ARCH_HAS_SC_SIGNALS |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 62 | if (!(ka->sa.sa_flags & SA_SIGINFO)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | err = setup_signal_stack_sc(sp, signr, ka, regs, oldset); |
| 64 | else |
| 65 | #endif |
| 66 | err = setup_signal_stack_si(sp, signr, ka, regs, info, oldset); |
| 67 | |
Matt Fleming | f6adb9a | 2012-03-23 15:01:49 -0700 | [diff] [blame] | 68 | if (err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | force_sigsegv(signr, current); |
Matt Fleming | d982d59 | 2012-03-23 15:01:50 -0700 | [diff] [blame^] | 70 | else |
| 71 | block_sigmask(ka, signr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | return err; |
| 74 | } |
| 75 | |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 76 | static int kern_do_signal(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
| 78 | struct k_sigaction ka_copy; |
| 79 | siginfo_t info; |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 80 | sigset_t *oldset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | int sig, handled_sig = 0; |
| 82 | |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 83 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) |
| 84 | oldset = ¤t->saved_sigmask; |
| 85 | else |
| 86 | oldset = ¤t->blocked; |
| 87 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 88 | while ((sig = get_signal_to_deliver(&info, &ka_copy, regs, NULL)) > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | handled_sig = 1; |
| 90 | /* Whee! Actually deliver the signal. */ |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 91 | if (!handle_signal(regs, sig, &ka_copy, &info, oldset)) { |
| 92 | /* |
| 93 | * a signal was successfully delivered; the saved |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 94 | * sigmask will have been stored in the signal frame, |
| 95 | * and will be restored by sigreturn, so we can simply |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 96 | * clear the TIF_RESTORE_SIGMASK flag |
| 97 | */ |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 98 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) |
| 99 | clear_thread_flag(TIF_RESTORE_SIGMASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | break; |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 101 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /* Did we come from a system call? */ |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 105 | if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* Restart the system call - no handlers present */ |
Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 107 | switch (PT_REGS_SYSCALL_RET(regs)) { |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 108 | case -ERESTARTNOHAND: |
| 109 | case -ERESTARTSYS: |
| 110 | case -ERESTARTNOINTR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | PT_REGS_ORIG_SYSCALL(regs) = PT_REGS_SYSCALL_NR(regs); |
| 112 | PT_REGS_RESTART_SYSCALL(regs); |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 113 | break; |
| 114 | case -ERESTART_RESTARTBLOCK: |
Jeff Dike | 1d3468a | 2006-07-10 04:45:13 -0700 | [diff] [blame] | 115 | PT_REGS_ORIG_SYSCALL(regs) = __NR_restart_syscall; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | PT_REGS_RESTART_SYSCALL(regs); |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 117 | break; |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 118 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 121 | /* |
| 122 | * This closes a way to execute a system call on the host. If |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | * you set a breakpoint on a system call instruction and singlestep |
| 124 | * from it, the tracing thread used to PTRACE_SINGLESTEP the process |
| 125 | * rather than PTRACE_SYSCALL it, allowing the system call to execute |
Jeff Dike | 1d3468a | 2006-07-10 04:45:13 -0700 | [diff] [blame] | 126 | * on the host. The tracing thread will check this flag and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | * PTRACE_SYSCALL if necessary. |
| 128 | */ |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 129 | if (current->ptrace & PT_DTRACE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | current->thread.singlestep_syscall = |
| 131 | is_syscall(PT_REGS_IP(¤t->thread.regs)); |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 132 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 133 | /* |
| 134 | * if there's no signal to deliver, we just put the saved sigmask |
| 135 | * back |
| 136 | */ |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 137 | if (!handled_sig && test_thread_flag(TIF_RESTORE_SIGMASK)) { |
| 138 | clear_thread_flag(TIF_RESTORE_SIGMASK); |
| 139 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); |
| 140 | } |
Jeff Dike | 7c7a894 | 2007-03-06 01:42:18 -0800 | [diff] [blame] | 141 | return handled_sig; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | int do_signal(void) |
| 145 | { |
Jeff Dike | 7c7a894 | 2007-03-06 01:42:18 -0800 | [diff] [blame] | 146 | return kern_do_signal(¤t->thread.regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /* |
| 150 | * Atomically swap in the new signal mask, and wait for a signal. |
| 151 | */ |
| 152 | long sys_sigsuspend(int history0, int history1, old_sigset_t mask) |
| 153 | { |
Matt Fleming | d982d59 | 2012-03-23 15:01:50 -0700 | [diff] [blame^] | 154 | sigset_t blocked; |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | mask &= _BLOCKABLE; |
Matt Fleming | d982d59 | 2012-03-23 15:01:50 -0700 | [diff] [blame^] | 157 | siginitset(&blocked, mask); |
| 158 | set_current_blocked(&blocked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Jeff Dike | 2fc1062 | 2006-01-18 17:44:02 -0800 | [diff] [blame] | 160 | current->state = TASK_INTERRUPTIBLE; |
| 161 | schedule(); |
| 162 | set_thread_flag(TIF_RESTORE_SIGMASK); |
| 163 | return -ERESTARTNOHAND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss) |
| 167 | { |
Jeff Dike | 7c7a894 | 2007-03-06 01:42:18 -0800 | [diff] [blame] | 168 | return do_sigaltstack(uss, uoss, PT_REGS_SP(¤t->thread.regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |