Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/kernel/signal.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | * |
| 6 | * 1997-11-02 Modified for POSIX.1b signals by Richard Henderson |
| 7 | * |
| 8 | * 2003-06-02 Jim Houston - Concurrent Computer Corp. |
| 9 | * Changes to use preallocated sigqueue structures |
| 10 | * to allow signals to be sent reliably. |
| 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/fs.h> |
| 18 | #include <linux/tty.h> |
| 19 | #include <linux/binfmts.h> |
| 20 | #include <linux/security.h> |
| 21 | #include <linux/syscalls.h> |
| 22 | #include <linux/ptrace.h> |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 23 | #include <linux/signal.h> |
Davide Libenzi | fba2afa | 2007-05-10 22:23:13 -0700 | [diff] [blame] | 24 | #include <linux/signalfd.h> |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 25 | #include <linux/tracehook.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 26 | #include <linux/capability.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 27 | #include <linux/freezer.h> |
Sukadev Bhattiprolu | 84d7378 | 2006-12-08 02:38:01 -0800 | [diff] [blame] | 28 | #include <linux/pid_namespace.h> |
| 29 | #include <linux/nsproxy.h> |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 30 | #include <trace/sched.h> |
Sukadev Bhattiprolu | 84d7378 | 2006-12-08 02:38:01 -0800 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/param.h> |
| 33 | #include <asm/uaccess.h> |
| 34 | #include <asm/unistd.h> |
| 35 | #include <asm/siginfo.h> |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 36 | #include "audit.h" /* audit_signal_info() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * SLAB caches for signal bits. |
| 40 | */ |
| 41 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 42 | static struct kmem_cache *sigqueue_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Mathieu Desnoyers | 7e066fb | 2008-11-14 17:47:47 -0500 | [diff] [blame] | 44 | DEFINE_TRACE(sched_signal_send); |
| 45 | |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 46 | static void __user *sig_handler(struct task_struct *t, int sig) |
Pavel Emelyanov | 93585ee | 2008-04-30 00:52:39 -0700 | [diff] [blame] | 47 | { |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 48 | return t->sighand->action[sig - 1].sa.sa_handler; |
| 49 | } |
Pavel Emelyanov | 93585ee | 2008-04-30 00:52:39 -0700 | [diff] [blame] | 50 | |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 51 | static int sig_handler_ignored(void __user *handler, int sig) |
| 52 | { |
Pavel Emelyanov | 93585ee | 2008-04-30 00:52:39 -0700 | [diff] [blame] | 53 | /* Is it explicitly or implicitly ignored? */ |
Pavel Emelyanov | 93585ee | 2008-04-30 00:52:39 -0700 | [diff] [blame] | 54 | return handler == SIG_IGN || |
| 55 | (handler == SIG_DFL && sig_kernel_ignore(sig)); |
| 56 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | static int sig_ignored(struct task_struct *t, int sig) |
| 59 | { |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 60 | void __user *handler; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | /* |
| 63 | * Blocked signals are never ignored, since the |
| 64 | * signal handler may change by the time it is |
| 65 | * unblocked. |
| 66 | */ |
Roland McGrath | 325d22d | 2007-11-12 15:41:55 -0800 | [diff] [blame] | 67 | if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return 0; |
| 69 | |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 70 | handler = sig_handler(t, sig); |
| 71 | if (!sig_handler_ignored(handler, sig)) |
| 72 | return 0; |
| 73 | |
| 74 | /* |
| 75 | * Tracers may want to know about even ignored signals. |
| 76 | */ |
| 77 | return !tracehook_consider_ignored_signal(t, sig, handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | /* |
| 81 | * Re-calculate pending state from the set of locally pending |
| 82 | * signals, globally pending signals, and blocked signals. |
| 83 | */ |
| 84 | static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked) |
| 85 | { |
| 86 | unsigned long ready; |
| 87 | long i; |
| 88 | |
| 89 | switch (_NSIG_WORDS) { |
| 90 | default: |
| 91 | for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;) |
| 92 | ready |= signal->sig[i] &~ blocked->sig[i]; |
| 93 | break; |
| 94 | |
| 95 | case 4: ready = signal->sig[3] &~ blocked->sig[3]; |
| 96 | ready |= signal->sig[2] &~ blocked->sig[2]; |
| 97 | ready |= signal->sig[1] &~ blocked->sig[1]; |
| 98 | ready |= signal->sig[0] &~ blocked->sig[0]; |
| 99 | break; |
| 100 | |
| 101 | case 2: ready = signal->sig[1] &~ blocked->sig[1]; |
| 102 | ready |= signal->sig[0] &~ blocked->sig[0]; |
| 103 | break; |
| 104 | |
| 105 | case 1: ready = signal->sig[0] &~ blocked->sig[0]; |
| 106 | } |
| 107 | return ready != 0; |
| 108 | } |
| 109 | |
| 110 | #define PENDING(p,b) has_pending_signals(&(p)->signal, (b)) |
| 111 | |
Roland McGrath | 7bb44ad | 2007-05-23 13:57:44 -0700 | [diff] [blame] | 112 | static int recalc_sigpending_tsk(struct task_struct *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | if (t->signal->group_stop_count > 0 || |
| 115 | PENDING(&t->pending, &t->blocked) || |
Roland McGrath | 7bb44ad | 2007-05-23 13:57:44 -0700 | [diff] [blame] | 116 | PENDING(&t->signal->shared_pending, &t->blocked)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | set_tsk_thread_flag(t, TIF_SIGPENDING); |
Roland McGrath | 7bb44ad | 2007-05-23 13:57:44 -0700 | [diff] [blame] | 118 | return 1; |
| 119 | } |
Roland McGrath | b74d0de | 2007-06-06 03:59:00 -0700 | [diff] [blame] | 120 | /* |
| 121 | * We must never clear the flag in another thread, or in current |
| 122 | * when it's possible the current syscall is returning -ERESTART*. |
| 123 | * So we don't clear it here, and only callers who know they should do. |
| 124 | */ |
Roland McGrath | 7bb44ad | 2007-05-23 13:57:44 -0700 | [diff] [blame] | 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up. |
| 130 | * This is superfluous when called on current, the wakeup is a harmless no-op. |
| 131 | */ |
| 132 | void recalc_sigpending_and_wake(struct task_struct *t) |
| 133 | { |
| 134 | if (recalc_sigpending_tsk(t)) |
| 135 | signal_wake_up(t, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | void recalc_sigpending(void) |
| 139 | { |
Roland McGrath | b787f7b | 2008-07-25 19:45:55 -0700 | [diff] [blame] | 140 | if (unlikely(tracehook_force_sigpending())) |
| 141 | set_thread_flag(TIF_SIGPENDING); |
| 142 | else if (!recalc_sigpending_tsk(current) && !freezing(current)) |
Roland McGrath | b74d0de | 2007-06-06 03:59:00 -0700 | [diff] [blame] | 143 | clear_thread_flag(TIF_SIGPENDING); |
| 144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | /* Given the mask, find the first available signal that should be serviced. */ |
| 148 | |
Davide Libenzi | fba2afa | 2007-05-10 22:23:13 -0700 | [diff] [blame] | 149 | int next_signal(struct sigpending *pending, sigset_t *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
| 151 | unsigned long i, *s, *m, x; |
| 152 | int sig = 0; |
| 153 | |
| 154 | s = pending->signal.sig; |
| 155 | m = mask->sig; |
| 156 | switch (_NSIG_WORDS) { |
| 157 | default: |
| 158 | for (i = 0; i < _NSIG_WORDS; ++i, ++s, ++m) |
| 159 | if ((x = *s &~ *m) != 0) { |
| 160 | sig = ffz(~x) + i*_NSIG_BPW + 1; |
| 161 | break; |
| 162 | } |
| 163 | break; |
| 164 | |
| 165 | case 2: if ((x = s[0] &~ m[0]) != 0) |
| 166 | sig = 1; |
| 167 | else if ((x = s[1] &~ m[1]) != 0) |
| 168 | sig = _NSIG_BPW + 1; |
| 169 | else |
| 170 | break; |
| 171 | sig += ffz(~x); |
| 172 | break; |
| 173 | |
| 174 | case 1: if ((x = *s &~ *m) != 0) |
| 175 | sig = ffz(~x) + 1; |
| 176 | break; |
| 177 | } |
| 178 | |
| 179 | return sig; |
| 180 | } |
| 181 | |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 182 | static struct sigqueue *__sigqueue_alloc(struct task_struct *t, gfp_t flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | int override_rlimit) |
| 184 | { |
| 185 | struct sigqueue *q = NULL; |
Linus Torvalds | 10b1fbd | 2006-11-04 13:03:00 -0800 | [diff] [blame] | 186 | struct user_struct *user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Linus Torvalds | 10b1fbd | 2006-11-04 13:03:00 -0800 | [diff] [blame] | 188 | /* |
| 189 | * In order to avoid problems with "switch_user()", we want to make |
| 190 | * sure that the compiler doesn't re-load "t->user" |
| 191 | */ |
| 192 | user = t->user; |
| 193 | barrier(); |
| 194 | atomic_inc(&user->sigpending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | if (override_rlimit || |
Linus Torvalds | 10b1fbd | 2006-11-04 13:03:00 -0800 | [diff] [blame] | 196 | atomic_read(&user->sigpending) <= |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | t->signal->rlim[RLIMIT_SIGPENDING].rlim_cur) |
| 198 | q = kmem_cache_alloc(sigqueue_cachep, flags); |
| 199 | if (unlikely(q == NULL)) { |
Linus Torvalds | 10b1fbd | 2006-11-04 13:03:00 -0800 | [diff] [blame] | 200 | atomic_dec(&user->sigpending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } else { |
| 202 | INIT_LIST_HEAD(&q->list); |
| 203 | q->flags = 0; |
Linus Torvalds | 10b1fbd | 2006-11-04 13:03:00 -0800 | [diff] [blame] | 204 | q->user = get_uid(user); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | return(q); |
| 207 | } |
| 208 | |
Andrew Morton | 514a01b | 2006-02-03 03:04:41 -0800 | [diff] [blame] | 209 | static void __sigqueue_free(struct sigqueue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
| 211 | if (q->flags & SIGQUEUE_PREALLOC) |
| 212 | return; |
| 213 | atomic_dec(&q->user->sigpending); |
| 214 | free_uid(q->user); |
| 215 | kmem_cache_free(sigqueue_cachep, q); |
| 216 | } |
| 217 | |
Oleg Nesterov | 6a14c5c | 2006-03-28 16:11:18 -0800 | [diff] [blame] | 218 | void flush_sigqueue(struct sigpending *queue) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { |
| 220 | struct sigqueue *q; |
| 221 | |
| 222 | sigemptyset(&queue->signal); |
| 223 | while (!list_empty(&queue->list)) { |
| 224 | q = list_entry(queue->list.next, struct sigqueue , list); |
| 225 | list_del_init(&q->list); |
| 226 | __sigqueue_free(q); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | /* |
| 231 | * Flush all pending signals for a task. |
| 232 | */ |
Oleg Nesterov | c81addc | 2006-03-28 16:11:17 -0800 | [diff] [blame] | 233 | void flush_signals(struct task_struct *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | unsigned long flags; |
| 236 | |
| 237 | spin_lock_irqsave(&t->sighand->siglock, flags); |
Pavel Machek | f526448 | 2008-04-21 22:15:06 +0000 | [diff] [blame] | 238 | clear_tsk_thread_flag(t, TIF_SIGPENDING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | flush_sigqueue(&t->pending); |
| 240 | flush_sigqueue(&t->signal->shared_pending); |
| 241 | spin_unlock_irqrestore(&t->sighand->siglock, flags); |
| 242 | } |
| 243 | |
Oleg Nesterov | cbaffba | 2008-05-26 20:55:42 +0400 | [diff] [blame] | 244 | static void __flush_itimer_signals(struct sigpending *pending) |
| 245 | { |
| 246 | sigset_t signal, retain; |
| 247 | struct sigqueue *q, *n; |
| 248 | |
| 249 | signal = pending->signal; |
| 250 | sigemptyset(&retain); |
| 251 | |
| 252 | list_for_each_entry_safe(q, n, &pending->list, list) { |
| 253 | int sig = q->info.si_signo; |
| 254 | |
| 255 | if (likely(q->info.si_code != SI_TIMER)) { |
| 256 | sigaddset(&retain, sig); |
| 257 | } else { |
| 258 | sigdelset(&signal, sig); |
| 259 | list_del_init(&q->list); |
| 260 | __sigqueue_free(q); |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | sigorsets(&pending->signal, &signal, &retain); |
| 265 | } |
| 266 | |
| 267 | void flush_itimer_signals(void) |
| 268 | { |
| 269 | struct task_struct *tsk = current; |
| 270 | unsigned long flags; |
| 271 | |
| 272 | spin_lock_irqsave(&tsk->sighand->siglock, flags); |
| 273 | __flush_itimer_signals(&tsk->pending); |
| 274 | __flush_itimer_signals(&tsk->signal->shared_pending); |
| 275 | spin_unlock_irqrestore(&tsk->sighand->siglock, flags); |
| 276 | } |
| 277 | |
Oleg Nesterov | 10ab825 | 2007-05-09 02:34:37 -0700 | [diff] [blame] | 278 | void ignore_signals(struct task_struct *t) |
| 279 | { |
| 280 | int i; |
| 281 | |
| 282 | for (i = 0; i < _NSIG; ++i) |
| 283 | t->sighand->action[i].sa.sa_handler = SIG_IGN; |
| 284 | |
| 285 | flush_signals(t); |
| 286 | } |
| 287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | * Flush all handlers for a task. |
| 290 | */ |
| 291 | |
| 292 | void |
| 293 | flush_signal_handlers(struct task_struct *t, int force_default) |
| 294 | { |
| 295 | int i; |
| 296 | struct k_sigaction *ka = &t->sighand->action[0]; |
| 297 | for (i = _NSIG ; i != 0 ; i--) { |
| 298 | if (force_default || ka->sa.sa_handler != SIG_IGN) |
| 299 | ka->sa.sa_handler = SIG_DFL; |
| 300 | ka->sa.sa_flags = 0; |
| 301 | sigemptyset(&ka->sa.sa_mask); |
| 302 | ka++; |
| 303 | } |
| 304 | } |
| 305 | |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 306 | int unhandled_signal(struct task_struct *tsk, int sig) |
| 307 | { |
Roland McGrath | 445a91d | 2008-07-25 19:45:52 -0700 | [diff] [blame] | 308 | void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler; |
Serge E. Hallyn | b460cbc | 2007-10-18 23:39:52 -0700 | [diff] [blame] | 309 | if (is_global_init(tsk)) |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 310 | return 1; |
Roland McGrath | 445a91d | 2008-07-25 19:45:52 -0700 | [diff] [blame] | 311 | if (handler != SIG_IGN && handler != SIG_DFL) |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 312 | return 0; |
Roland McGrath | 445a91d | 2008-07-25 19:45:52 -0700 | [diff] [blame] | 313 | return !tracehook_consider_fatal_signal(tsk, sig, handler); |
Masoud Asgharifard Sharbiani | abd4f75 | 2007-07-22 11:12:28 +0200 | [diff] [blame] | 314 | } |
| 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | /* Notify the system that a driver wants to block all signals for this |
| 318 | * process, and wants to be notified if any signals at all were to be |
| 319 | * sent/acted upon. If the notifier routine returns non-zero, then the |
| 320 | * signal will be acted upon after all. If the notifier routine returns 0, |
| 321 | * then then signal will be blocked. Only one block per process is |
| 322 | * allowed. priv is a pointer to private data that the notifier routine |
| 323 | * can use to determine if the signal should be blocked or not. */ |
| 324 | |
| 325 | void |
| 326 | block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask) |
| 327 | { |
| 328 | unsigned long flags; |
| 329 | |
| 330 | spin_lock_irqsave(¤t->sighand->siglock, flags); |
| 331 | current->notifier_mask = mask; |
| 332 | current->notifier_data = priv; |
| 333 | current->notifier = notifier; |
| 334 | spin_unlock_irqrestore(¤t->sighand->siglock, flags); |
| 335 | } |
| 336 | |
| 337 | /* Notify the system that blocking has ended. */ |
| 338 | |
| 339 | void |
| 340 | unblock_all_signals(void) |
| 341 | { |
| 342 | unsigned long flags; |
| 343 | |
| 344 | spin_lock_irqsave(¤t->sighand->siglock, flags); |
| 345 | current->notifier = NULL; |
| 346 | current->notifier_data = NULL; |
| 347 | recalc_sigpending(); |
| 348 | spin_unlock_irqrestore(¤t->sighand->siglock, flags); |
| 349 | } |
| 350 | |
Oleg Nesterov | 100360f | 2008-07-25 01:47:29 -0700 | [diff] [blame] | 351 | static void collect_signal(int sig, struct sigpending *list, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | { |
| 353 | struct sigqueue *q, *first = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | /* |
| 356 | * Collect the siginfo appropriate to this signal. Check if |
| 357 | * there is another siginfo for the same signal. |
| 358 | */ |
| 359 | list_for_each_entry(q, &list->list, list) { |
| 360 | if (q->info.si_signo == sig) { |
Oleg Nesterov | d443420 | 2008-07-25 01:47:28 -0700 | [diff] [blame] | 361 | if (first) |
| 362 | goto still_pending; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | first = q; |
| 364 | } |
| 365 | } |
Oleg Nesterov | d443420 | 2008-07-25 01:47:28 -0700 | [diff] [blame] | 366 | |
| 367 | sigdelset(&list->signal, sig); |
| 368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (first) { |
Oleg Nesterov | d443420 | 2008-07-25 01:47:28 -0700 | [diff] [blame] | 370 | still_pending: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | list_del_init(&first->list); |
| 372 | copy_siginfo(info, &first->info); |
| 373 | __sigqueue_free(first); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | /* Ok, it wasn't in the queue. This must be |
| 376 | a fast-pathed signal or we must have been |
| 377 | out of queue space. So zero out the info. |
| 378 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | info->si_signo = sig; |
| 380 | info->si_errno = 0; |
| 381 | info->si_code = 0; |
| 382 | info->si_pid = 0; |
| 383 | info->si_uid = 0; |
| 384 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static int __dequeue_signal(struct sigpending *pending, sigset_t *mask, |
| 388 | siginfo_t *info) |
| 389 | { |
Roland McGrath | 27d91e0 | 2006-09-29 02:00:31 -0700 | [diff] [blame] | 390 | int sig = next_signal(pending, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | if (sig) { |
| 393 | if (current->notifier) { |
| 394 | if (sigismember(current->notifier_mask, sig)) { |
| 395 | if (!(current->notifier)(current->notifier_data)) { |
| 396 | clear_thread_flag(TIF_SIGPENDING); |
| 397 | return 0; |
| 398 | } |
| 399 | } |
| 400 | } |
| 401 | |
Oleg Nesterov | 100360f | 2008-07-25 01:47:29 -0700 | [diff] [blame] | 402 | collect_signal(sig, pending, info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | return sig; |
| 406 | } |
| 407 | |
| 408 | /* |
| 409 | * Dequeue a signal and return the element to the caller, which is |
| 410 | * expected to free it. |
| 411 | * |
| 412 | * All callers have to hold the siglock. |
| 413 | */ |
| 414 | int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info) |
| 415 | { |
Pavel Emelyanov | c5363d0 | 2008-04-30 00:52:40 -0700 | [diff] [blame] | 416 | int signr; |
Benjamin Herrenschmidt | caec4e8 | 2007-06-12 08:16:18 +1000 | [diff] [blame] | 417 | |
| 418 | /* We only dequeue private signals from ourselves, we don't let |
| 419 | * signalfd steal them |
| 420 | */ |
Davide Libenzi | b8fceee | 2007-09-20 12:40:16 -0700 | [diff] [blame] | 421 | signr = __dequeue_signal(&tsk->pending, mask, info); |
Thomas Gleixner | 8bfd9a7 | 2007-02-16 01:28:12 -0800 | [diff] [blame] | 422 | if (!signr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | signr = __dequeue_signal(&tsk->signal->shared_pending, |
| 424 | mask, info); |
Thomas Gleixner | 8bfd9a7 | 2007-02-16 01:28:12 -0800 | [diff] [blame] | 425 | /* |
| 426 | * itimer signal ? |
| 427 | * |
| 428 | * itimers are process shared and we restart periodic |
| 429 | * itimers in the signal delivery path to prevent DoS |
| 430 | * attacks in the high resolution timer case. This is |
| 431 | * compliant with the old way of self restarting |
| 432 | * itimers, as the SIGALRM is a legacy signal and only |
| 433 | * queued once. Changing the restart behaviour to |
| 434 | * restart the timer in the signal dequeue path is |
| 435 | * reducing the timer noise on heavy loaded !highres |
| 436 | * systems too. |
| 437 | */ |
| 438 | if (unlikely(signr == SIGALRM)) { |
| 439 | struct hrtimer *tmr = &tsk->signal->real_timer; |
| 440 | |
| 441 | if (!hrtimer_is_queued(tmr) && |
| 442 | tsk->signal->it_real_incr.tv64 != 0) { |
| 443 | hrtimer_forward(tmr, tmr->base->get_time(), |
| 444 | tsk->signal->it_real_incr); |
| 445 | hrtimer_restart(tmr); |
| 446 | } |
| 447 | } |
| 448 | } |
Pavel Emelyanov | c5363d0 | 2008-04-30 00:52:40 -0700 | [diff] [blame] | 449 | |
Davide Libenzi | b8fceee | 2007-09-20 12:40:16 -0700 | [diff] [blame] | 450 | recalc_sigpending(); |
Pavel Emelyanov | c5363d0 | 2008-04-30 00:52:40 -0700 | [diff] [blame] | 451 | if (!signr) |
| 452 | return 0; |
| 453 | |
| 454 | if (unlikely(sig_kernel_stop(signr))) { |
Thomas Gleixner | 8bfd9a7 | 2007-02-16 01:28:12 -0800 | [diff] [blame] | 455 | /* |
| 456 | * Set a marker that we have dequeued a stop signal. Our |
| 457 | * caller might release the siglock and then the pending |
| 458 | * stop signal it is about to process is no longer in the |
| 459 | * pending bitmasks, but must still be cleared by a SIGCONT |
| 460 | * (and overruled by a SIGKILL). So those cases clear this |
| 461 | * shared flag after we've set it. Note that this flag may |
| 462 | * remain set after the signal we return is ignored or |
| 463 | * handled. That doesn't matter because its only purpose |
| 464 | * is to alert stop-signal processing code when another |
| 465 | * processor has come along and cleared the flag. |
| 466 | */ |
Oleg Nesterov | 92413d7 | 2008-07-25 01:47:30 -0700 | [diff] [blame] | 467 | tsk->signal->flags |= SIGNAL_STOP_DEQUEUED; |
Thomas Gleixner | 8bfd9a7 | 2007-02-16 01:28:12 -0800 | [diff] [blame] | 468 | } |
Pavel Emelyanov | c5363d0 | 2008-04-30 00:52:40 -0700 | [diff] [blame] | 469 | if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | /* |
| 471 | * Release the siglock to ensure proper locking order |
| 472 | * of timer locks outside of siglocks. Note, we leave |
| 473 | * irqs disabled here, since the posix-timers code is |
| 474 | * about to disable them again anyway. |
| 475 | */ |
| 476 | spin_unlock(&tsk->sighand->siglock); |
| 477 | do_schedule_next_timer(info); |
| 478 | spin_lock(&tsk->sighand->siglock); |
| 479 | } |
| 480 | return signr; |
| 481 | } |
| 482 | |
| 483 | /* |
| 484 | * Tell a process that it has a new active signal.. |
| 485 | * |
| 486 | * NOTE! we rely on the previous spin_lock to |
| 487 | * lock interrupts for us! We can only be called with |
| 488 | * "siglock" held, and the local interrupt must |
| 489 | * have been disabled when that got acquired! |
| 490 | * |
| 491 | * No need to set need_resched since signal event passing |
| 492 | * goes through ->blocked |
| 493 | */ |
| 494 | void signal_wake_up(struct task_struct *t, int resume) |
| 495 | { |
| 496 | unsigned int mask; |
| 497 | |
| 498 | set_tsk_thread_flag(t, TIF_SIGPENDING); |
| 499 | |
| 500 | /* |
Matthew Wilcox | f021a3c | 2007-12-06 11:13:16 -0500 | [diff] [blame] | 501 | * For SIGKILL, we want to wake it up in the stopped/traced/killable |
| 502 | * case. We don't check t->state here because there is a race with it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | * executing another processor and just now entering stopped state. |
| 504 | * By using wake_up_state, we ensure the process will wake up and |
| 505 | * handle its death signal. |
| 506 | */ |
| 507 | mask = TASK_INTERRUPTIBLE; |
| 508 | if (resume) |
Matthew Wilcox | f021a3c | 2007-12-06 11:13:16 -0500 | [diff] [blame] | 509 | mask |= TASK_WAKEKILL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | if (!wake_up_state(t, mask)) |
| 511 | kick_process(t); |
| 512 | } |
| 513 | |
| 514 | /* |
| 515 | * Remove signals in mask from the pending set and queue. |
| 516 | * Returns 1 if any signals were found. |
| 517 | * |
| 518 | * All callers must be holding the siglock. |
George Anzinger | 71fabd5 | 2006-01-08 01:02:48 -0800 | [diff] [blame] | 519 | * |
| 520 | * This version takes a sigset mask and looks at all signals, |
| 521 | * not just those in the first mask word. |
| 522 | */ |
| 523 | static int rm_from_queue_full(sigset_t *mask, struct sigpending *s) |
| 524 | { |
| 525 | struct sigqueue *q, *n; |
| 526 | sigset_t m; |
| 527 | |
| 528 | sigandsets(&m, mask, &s->signal); |
| 529 | if (sigisemptyset(&m)) |
| 530 | return 0; |
| 531 | |
| 532 | signandsets(&s->signal, &s->signal, mask); |
| 533 | list_for_each_entry_safe(q, n, &s->list, list) { |
| 534 | if (sigismember(mask, q->info.si_signo)) { |
| 535 | list_del_init(&q->list); |
| 536 | __sigqueue_free(q); |
| 537 | } |
| 538 | } |
| 539 | return 1; |
| 540 | } |
| 541 | /* |
| 542 | * Remove signals in mask from the pending set and queue. |
| 543 | * Returns 1 if any signals were found. |
| 544 | * |
| 545 | * All callers must be holding the siglock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | */ |
| 547 | static int rm_from_queue(unsigned long mask, struct sigpending *s) |
| 548 | { |
| 549 | struct sigqueue *q, *n; |
| 550 | |
| 551 | if (!sigtestsetmask(&s->signal, mask)) |
| 552 | return 0; |
| 553 | |
| 554 | sigdelsetmask(&s->signal, mask); |
| 555 | list_for_each_entry_safe(q, n, &s->list, list) { |
| 556 | if (q->info.si_signo < SIGRTMIN && |
| 557 | (mask & sigmask(q->info.si_signo))) { |
| 558 | list_del_init(&q->list); |
| 559 | __sigqueue_free(q); |
| 560 | } |
| 561 | } |
| 562 | return 1; |
| 563 | } |
| 564 | |
| 565 | /* |
| 566 | * Bad permissions for sending the signal |
| 567 | */ |
| 568 | static int check_kill_permission(int sig, struct siginfo *info, |
| 569 | struct task_struct *t) |
| 570 | { |
Oleg Nesterov | 2e2ba22 | 2008-04-30 00:53:01 -0700 | [diff] [blame] | 571 | struct pid *sid; |
Oleg Nesterov | 3b5e9e5 | 2008-04-30 00:52:42 -0700 | [diff] [blame] | 572 | int error; |
| 573 | |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 574 | if (!valid_signal(sig)) |
Oleg Nesterov | 3b5e9e5 | 2008-04-30 00:52:42 -0700 | [diff] [blame] | 575 | return -EINVAL; |
| 576 | |
| 577 | if (info != SEND_SIG_NOINFO && (is_si_special(info) || SI_FROMKERNEL(info))) |
| 578 | return 0; |
| 579 | |
| 580 | error = audit_signal_info(sig, t); /* Let audit system see the signal */ |
| 581 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | return error; |
Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 583 | |
Oleg Nesterov | 2e2ba22 | 2008-04-30 00:53:01 -0700 | [diff] [blame] | 584 | if ((current->euid ^ t->suid) && (current->euid ^ t->uid) && |
| 585 | (current->uid ^ t->suid) && (current->uid ^ t->uid) && |
| 586 | !capable(CAP_KILL)) { |
| 587 | switch (sig) { |
| 588 | case SIGCONT: |
Oleg Nesterov | 2e2ba22 | 2008-04-30 00:53:01 -0700 | [diff] [blame] | 589 | sid = task_session(t); |
Oleg Nesterov | 2e2ba22 | 2008-04-30 00:53:01 -0700 | [diff] [blame] | 590 | /* |
| 591 | * We don't return the error if sid == NULL. The |
| 592 | * task was unhashed, the caller must notice this. |
| 593 | */ |
| 594 | if (!sid || sid == task_session(current)) |
| 595 | break; |
| 596 | default: |
| 597 | return -EPERM; |
| 598 | } |
| 599 | } |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 600 | |
Amy Griffis | e54dc24 | 2007-03-29 18:01:04 -0400 | [diff] [blame] | 601 | return security_task_kill(t, info, sig, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | /* |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 605 | * Handle magic process-wide effects of stop/continue signals. Unlike |
| 606 | * the signal actions, these happen immediately at signal-generation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | * time regardless of blocking, ignoring, or handling. This does the |
| 608 | * actual continuing for SIGCONT, but not the actual stopping for stop |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 609 | * signals. The process stop is done as a signal action for SIG_DFL. |
| 610 | * |
| 611 | * Returns true if the signal should be actually delivered, otherwise |
| 612 | * it should be dropped. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | */ |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 614 | static int prepare_signal(int sig, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | { |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 616 | struct signal_struct *signal = p->signal; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | struct task_struct *t; |
| 618 | |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 619 | if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | /* |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 621 | * The process is in the middle of dying, nothing to do. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | */ |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 623 | } else if (sig_kernel_stop(sig)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | /* |
| 625 | * This is a stop signal. Remove SIGCONT from all queues. |
| 626 | */ |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 627 | rm_from_queue(sigmask(SIGCONT), &signal->shared_pending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | t = p; |
| 629 | do { |
| 630 | rm_from_queue(sigmask(SIGCONT), &t->pending); |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 631 | } while_each_thread(p, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | } else if (sig == SIGCONT) { |
Oleg Nesterov | fc321d2 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 633 | unsigned int why; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | /* |
| 635 | * Remove all stop signals from all queues, |
| 636 | * and wake all threads. |
| 637 | */ |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 638 | rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | t = p; |
| 640 | do { |
| 641 | unsigned int state; |
| 642 | rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | /* |
| 644 | * If there is a handler for SIGCONT, we must make |
| 645 | * sure that no thread returns to user mode before |
| 646 | * we post the signal, in case it was the only |
| 647 | * thread eligible to run the signal handler--then |
| 648 | * it must not do anything between resuming and |
| 649 | * running the handler. With the TIF_SIGPENDING |
| 650 | * flag set, the thread will pause and acquire the |
| 651 | * siglock that we hold now and until we've queued |
Oleg Nesterov | fc321d2 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 652 | * the pending signal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | * |
| 654 | * Wake up the stopped thread _after_ setting |
| 655 | * TIF_SIGPENDING |
| 656 | */ |
Matthew Wilcox | f021a3c | 2007-12-06 11:13:16 -0500 | [diff] [blame] | 657 | state = __TASK_STOPPED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | if (sig_user_defined(t, SIGCONT) && !sigismember(&t->blocked, SIGCONT)) { |
| 659 | set_tsk_thread_flag(t, TIF_SIGPENDING); |
| 660 | state |= TASK_INTERRUPTIBLE; |
| 661 | } |
| 662 | wake_up_state(t, state); |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 663 | } while_each_thread(p, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | |
Oleg Nesterov | fc321d2 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 665 | /* |
| 666 | * Notify the parent with CLD_CONTINUED if we were stopped. |
| 667 | * |
| 668 | * If we were in the middle of a group stop, we pretend it |
| 669 | * was already finished, and then continued. Since SIGCHLD |
| 670 | * doesn't queue we report only CLD_STOPPED, as if the next |
| 671 | * CLD_CONTINUED was dropped. |
| 672 | */ |
| 673 | why = 0; |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 674 | if (signal->flags & SIGNAL_STOP_STOPPED) |
Oleg Nesterov | fc321d2 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 675 | why |= SIGNAL_CLD_CONTINUED; |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 676 | else if (signal->group_stop_count) |
Oleg Nesterov | fc321d2 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 677 | why |= SIGNAL_CLD_STOPPED; |
| 678 | |
| 679 | if (why) { |
Oleg Nesterov | 021e1ae | 2008-04-30 00:53:00 -0700 | [diff] [blame] | 680 | /* |
| 681 | * The first thread which returns from finish_stop() |
| 682 | * will take ->siglock, notice SIGNAL_CLD_MASK, and |
| 683 | * notify its parent. See get_signal_to_deliver(). |
| 684 | */ |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 685 | signal->flags = why | SIGNAL_STOP_CONTINUED; |
| 686 | signal->group_stop_count = 0; |
| 687 | signal->group_exit_code = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | } else { |
| 689 | /* |
| 690 | * We are not stopped, but there could be a stop |
| 691 | * signal in the middle of being processed after |
| 692 | * being removed from the queue. Clear that too. |
| 693 | */ |
Oleg Nesterov | ad16a46 | 2008-04-30 00:52:46 -0700 | [diff] [blame] | 694 | signal->flags &= ~SIGNAL_STOP_DEQUEUED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | } |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 697 | |
| 698 | return !sig_ignored(p, sig); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | } |
| 700 | |
Oleg Nesterov | 71f11dc | 2008-04-30 00:52:53 -0700 | [diff] [blame] | 701 | /* |
| 702 | * Test if P wants to take SIG. After we've checked all threads with this, |
| 703 | * it's equivalent to finding no threads not blocking SIG. Any threads not |
| 704 | * blocking SIG were ruled out because they are not running and already |
| 705 | * have pending signals. Such threads will dequeue from the shared queue |
| 706 | * as soon as they're available, so putting the signal on the shared queue |
| 707 | * will be equivalent to sending it to one such thread. |
| 708 | */ |
| 709 | static inline int wants_signal(int sig, struct task_struct *p) |
| 710 | { |
| 711 | if (sigismember(&p->blocked, sig)) |
| 712 | return 0; |
| 713 | if (p->flags & PF_EXITING) |
| 714 | return 0; |
| 715 | if (sig == SIGKILL) |
| 716 | return 1; |
| 717 | if (task_is_stopped_or_traced(p)) |
| 718 | return 0; |
| 719 | return task_curr(p) || !signal_pending(p); |
| 720 | } |
| 721 | |
Oleg Nesterov | 5fcd835 | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 722 | static void complete_signal(int sig, struct task_struct *p, int group) |
Oleg Nesterov | 71f11dc | 2008-04-30 00:52:53 -0700 | [diff] [blame] | 723 | { |
| 724 | struct signal_struct *signal = p->signal; |
| 725 | struct task_struct *t; |
| 726 | |
| 727 | /* |
| 728 | * Now find a thread we can wake up to take the signal off the queue. |
| 729 | * |
| 730 | * If the main thread wants the signal, it gets first crack. |
| 731 | * Probably the least surprising to the average bear. |
| 732 | */ |
| 733 | if (wants_signal(sig, p)) |
| 734 | t = p; |
Oleg Nesterov | 5fcd835 | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 735 | else if (!group || thread_group_empty(p)) |
Oleg Nesterov | 71f11dc | 2008-04-30 00:52:53 -0700 | [diff] [blame] | 736 | /* |
| 737 | * There is just one thread and it does not need to be woken. |
| 738 | * It will dequeue unblocked signals before it runs again. |
| 739 | */ |
| 740 | return; |
| 741 | else { |
| 742 | /* |
| 743 | * Otherwise try to find a suitable thread. |
| 744 | */ |
| 745 | t = signal->curr_target; |
| 746 | while (!wants_signal(sig, t)) { |
| 747 | t = next_thread(t); |
| 748 | if (t == signal->curr_target) |
| 749 | /* |
| 750 | * No thread needs to be woken. |
| 751 | * Any eligible threads will see |
| 752 | * the signal in the queue soon. |
| 753 | */ |
| 754 | return; |
| 755 | } |
| 756 | signal->curr_target = t; |
| 757 | } |
| 758 | |
| 759 | /* |
| 760 | * Found a killable thread. If the signal will be fatal, |
| 761 | * then start taking the whole group down immediately. |
| 762 | */ |
Oleg Nesterov | fae5fa4 | 2008-04-30 00:53:03 -0700 | [diff] [blame] | 763 | if (sig_fatal(p, sig) && |
| 764 | !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) && |
Oleg Nesterov | 71f11dc | 2008-04-30 00:52:53 -0700 | [diff] [blame] | 765 | !sigismember(&t->real_blocked, sig) && |
Roland McGrath | 445a91d | 2008-07-25 19:45:52 -0700 | [diff] [blame] | 766 | (sig == SIGKILL || |
| 767 | !tracehook_consider_fatal_signal(t, sig, SIG_DFL))) { |
Oleg Nesterov | 71f11dc | 2008-04-30 00:52:53 -0700 | [diff] [blame] | 768 | /* |
| 769 | * This signal will be fatal to the whole group. |
| 770 | */ |
| 771 | if (!sig_kernel_coredump(sig)) { |
| 772 | /* |
| 773 | * Start a group exit and wake everybody up. |
| 774 | * This way we don't have other threads |
| 775 | * running and doing things after a slower |
| 776 | * thread has the fatal signal pending. |
| 777 | */ |
| 778 | signal->flags = SIGNAL_GROUP_EXIT; |
| 779 | signal->group_exit_code = sig; |
| 780 | signal->group_stop_count = 0; |
| 781 | t = p; |
| 782 | do { |
| 783 | sigaddset(&t->pending.signal, SIGKILL); |
| 784 | signal_wake_up(t, 1); |
| 785 | } while_each_thread(p, t); |
| 786 | return; |
| 787 | } |
| 788 | } |
| 789 | |
| 790 | /* |
| 791 | * The signal is already in the shared-pending queue. |
| 792 | * Tell the chosen thread to wake up and dequeue it. |
| 793 | */ |
| 794 | signal_wake_up(t, sig == SIGKILL); |
| 795 | return; |
| 796 | } |
| 797 | |
Pavel Emelyanov | af7fff9 | 2008-04-30 00:52:34 -0700 | [diff] [blame] | 798 | static inline int legacy_queue(struct sigpending *signals, int sig) |
| 799 | { |
| 800 | return (sig < SIGRTMIN) && sigismember(&signals->signal, sig); |
| 801 | } |
| 802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | static int send_signal(int sig, struct siginfo *info, struct task_struct *t, |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 804 | int group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | { |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 806 | struct sigpending *pending; |
Oleg Nesterov | 6e65acb | 2008-04-30 00:52:50 -0700 | [diff] [blame] | 807 | struct sigqueue *q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
Mathieu Desnoyers | 0a16b60 | 2008-07-18 12:16:17 -0400 | [diff] [blame] | 809 | trace_sched_signal_send(sig, t); |
| 810 | |
Oleg Nesterov | 6e65acb | 2008-04-30 00:52:50 -0700 | [diff] [blame] | 811 | assert_spin_locked(&t->sighand->siglock); |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 812 | if (!prepare_signal(sig, t)) |
| 813 | return 0; |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 814 | |
| 815 | pending = group ? &t->signal->shared_pending : &t->pending; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | /* |
Pavel Emelyanov | 2acb024 | 2008-04-30 00:52:35 -0700 | [diff] [blame] | 817 | * Short-circuit ignored signals and support queuing |
| 818 | * exactly one non-rt signal, so that we can get more |
| 819 | * detailed information about the cause of the signal. |
| 820 | */ |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 821 | if (legacy_queue(pending, sig)) |
Pavel Emelyanov | 2acb024 | 2008-04-30 00:52:35 -0700 | [diff] [blame] | 822 | return 0; |
Davide Libenzi | fba2afa | 2007-05-10 22:23:13 -0700 | [diff] [blame] | 823 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | * fast-pathed signals for kernel-internal things like SIGSTOP |
| 825 | * or SIGKILL. |
| 826 | */ |
Oleg Nesterov | b67a1b9 | 2005-10-30 15:03:44 -0800 | [diff] [blame] | 827 | if (info == SEND_SIG_FORCED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | goto out_set; |
| 829 | |
| 830 | /* Real-time signals must be queued if sent by sigqueue, or |
| 831 | some other real-time mechanism. It is implementation |
| 832 | defined whether kill() does so. We attempt to do so, on |
| 833 | the principle of least surprise, but since kill is not |
| 834 | allowed to fail with EAGAIN when low on memory we just |
| 835 | make sure at least one signal gets delivered and don't |
| 836 | pass on the info struct. */ |
| 837 | |
| 838 | q = __sigqueue_alloc(t, GFP_ATOMIC, (sig < SIGRTMIN && |
Oleg Nesterov | 621d312 | 2005-10-30 15:03:45 -0800 | [diff] [blame] | 839 | (is_si_special(info) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | info->si_code >= 0))); |
| 841 | if (q) { |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 842 | list_add_tail(&q->list, &pending->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | switch ((unsigned long) info) { |
Oleg Nesterov | b67a1b9 | 2005-10-30 15:03:44 -0800 | [diff] [blame] | 844 | case (unsigned long) SEND_SIG_NOINFO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | q->info.si_signo = sig; |
| 846 | q->info.si_errno = 0; |
| 847 | q->info.si_code = SI_USER; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 848 | q->info.si_pid = task_pid_vnr(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | q->info.si_uid = current->uid; |
| 850 | break; |
Oleg Nesterov | b67a1b9 | 2005-10-30 15:03:44 -0800 | [diff] [blame] | 851 | case (unsigned long) SEND_SIG_PRIV: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | q->info.si_signo = sig; |
| 853 | q->info.si_errno = 0; |
| 854 | q->info.si_code = SI_KERNEL; |
| 855 | q->info.si_pid = 0; |
| 856 | q->info.si_uid = 0; |
| 857 | break; |
| 858 | default: |
| 859 | copy_siginfo(&q->info, info); |
| 860 | break; |
| 861 | } |
Oleg Nesterov | 621d312 | 2005-10-30 15:03:45 -0800 | [diff] [blame] | 862 | } else if (!is_si_special(info)) { |
| 863 | if (sig >= SIGRTMIN && info->si_code != SI_USER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | /* |
| 865 | * Queue overflow, abort. We may abort if the signal was rt |
| 866 | * and sent by user using something other than kill(). |
| 867 | */ |
| 868 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | out_set: |
Oleg Nesterov | 53c3033 | 2008-04-30 00:53:00 -0700 | [diff] [blame] | 872 | signalfd_notify(t, sig); |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 873 | sigaddset(&pending->signal, sig); |
Pavel Emelyanov | 4cd4b6d | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 874 | complete_signal(sig, t, group); |
| 875 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } |
| 877 | |
Ingo Molnar | 45807a1 | 2007-07-15 23:40:10 -0700 | [diff] [blame] | 878 | int print_fatal_signals; |
| 879 | |
| 880 | static void print_fatal_signal(struct pt_regs *regs, int signr) |
| 881 | { |
| 882 | printk("%s/%d: potentially unexpected fatal signal %d.\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 883 | current->comm, task_pid_nr(current), signr); |
Ingo Molnar | 45807a1 | 2007-07-15 23:40:10 -0700 | [diff] [blame] | 884 | |
Al Viro | ca5cd87 | 2007-10-29 04:31:16 +0000 | [diff] [blame] | 885 | #if defined(__i386__) && !defined(__arch_um__) |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 886 | printk("code at %08lx: ", regs->ip); |
Ingo Molnar | 45807a1 | 2007-07-15 23:40:10 -0700 | [diff] [blame] | 887 | { |
| 888 | int i; |
| 889 | for (i = 0; i < 16; i++) { |
| 890 | unsigned char insn; |
| 891 | |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 892 | __get_user(insn, (unsigned char *)(regs->ip + i)); |
Ingo Molnar | 45807a1 | 2007-07-15 23:40:10 -0700 | [diff] [blame] | 893 | printk("%02x ", insn); |
| 894 | } |
| 895 | } |
| 896 | #endif |
| 897 | printk("\n"); |
| 898 | show_regs(regs); |
| 899 | } |
| 900 | |
| 901 | static int __init setup_print_fatal_signals(char *str) |
| 902 | { |
| 903 | get_option (&str, &print_fatal_signals); |
| 904 | |
| 905 | return 1; |
| 906 | } |
| 907 | |
| 908 | __setup("print-fatal-signals=", setup_print_fatal_signals); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |
Pavel Emelyanov | 4cd4b6d | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 910 | int |
| 911 | __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p) |
| 912 | { |
| 913 | return send_signal(sig, info, p, 1); |
| 914 | } |
| 915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | static int |
| 917 | specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t) |
| 918 | { |
Pavel Emelyanov | 4cd4b6d | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 919 | return send_signal(sig, info, t, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | /* |
| 923 | * Force a signal that the process can't ignore: if necessary |
| 924 | * we unblock the signal and change any SIG_IGN to SIG_DFL. |
Linus Torvalds | ae74c3b | 2006-08-02 20:17:49 -0700 | [diff] [blame] | 925 | * |
| 926 | * Note: If we unblock the signal, we always reset it to SIG_DFL, |
| 927 | * since we do not want to have a signal handler that was blocked |
| 928 | * be invoked when user space had explicitly blocked it. |
| 929 | * |
Oleg Nesterov | 80fe728 | 2008-04-30 00:53:05 -0700 | [diff] [blame] | 930 | * We don't want to have recursive SIGSEGV's etc, for example, |
| 931 | * that is why we also clear SIGNAL_UNKILLABLE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | int |
| 934 | force_sig_info(int sig, struct siginfo *info, struct task_struct *t) |
| 935 | { |
| 936 | unsigned long int flags; |
Linus Torvalds | ae74c3b | 2006-08-02 20:17:49 -0700 | [diff] [blame] | 937 | int ret, blocked, ignored; |
| 938 | struct k_sigaction *action; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | spin_lock_irqsave(&t->sighand->siglock, flags); |
Linus Torvalds | ae74c3b | 2006-08-02 20:17:49 -0700 | [diff] [blame] | 941 | action = &t->sighand->action[sig-1]; |
| 942 | ignored = action->sa.sa_handler == SIG_IGN; |
| 943 | blocked = sigismember(&t->blocked, sig); |
| 944 | if (blocked || ignored) { |
| 945 | action->sa.sa_handler = SIG_DFL; |
| 946 | if (blocked) { |
| 947 | sigdelset(&t->blocked, sig); |
Roland McGrath | 7bb44ad | 2007-05-23 13:57:44 -0700 | [diff] [blame] | 948 | recalc_sigpending_and_wake(t); |
Linus Torvalds | ae74c3b | 2006-08-02 20:17:49 -0700 | [diff] [blame] | 949 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | } |
Oleg Nesterov | 80fe728 | 2008-04-30 00:53:05 -0700 | [diff] [blame] | 951 | if (action->sa.sa_handler == SIG_DFL) |
| 952 | t->signal->flags &= ~SIGNAL_UNKILLABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | ret = specific_send_sig_info(sig, info, t); |
| 954 | spin_unlock_irqrestore(&t->sighand->siglock, flags); |
| 955 | |
| 956 | return ret; |
| 957 | } |
| 958 | |
| 959 | void |
| 960 | force_sig_specific(int sig, struct task_struct *t) |
| 961 | { |
Paul E. McKenney | b0423a0 | 2005-10-30 15:03:46 -0800 | [diff] [blame] | 962 | force_sig_info(sig, SEND_SIG_FORCED, t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | } |
| 964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | /* |
| 966 | * Nuke all other threads in the group. |
| 967 | */ |
| 968 | void zap_other_threads(struct task_struct *p) |
| 969 | { |
| 970 | struct task_struct *t; |
| 971 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | p->signal->group_stop_count = 0; |
| 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | for (t = next_thread(p); t != p; t = next_thread(t)) { |
| 975 | /* |
| 976 | * Don't bother with already dead threads |
| 977 | */ |
| 978 | if (t->exit_state) |
| 979 | continue; |
| 980 | |
Andrea Arcangeli | 30e0fca | 2005-10-30 15:02:38 -0800 | [diff] [blame] | 981 | /* SIGKILL will be handled before any pending SIGSTOP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | sigaddset(&t->pending.signal, SIGKILL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | signal_wake_up(t, 1); |
| 984 | } |
| 985 | } |
| 986 | |
Harvey Harrison | b5606c2 | 2008-02-13 15:03:16 -0800 | [diff] [blame] | 987 | int __fatal_signal_pending(struct task_struct *tsk) |
Matthew Wilcox | f776d12 | 2007-12-06 11:15:50 -0500 | [diff] [blame] | 988 | { |
| 989 | return sigismember(&tsk->pending.signal, SIGKILL); |
| 990 | } |
Trond Myklebust | 13f09b9 | 2008-01-31 20:40:29 -0500 | [diff] [blame] | 991 | EXPORT_SYMBOL(__fatal_signal_pending); |
Matthew Wilcox | f776d12 | 2007-12-06 11:15:50 -0500 | [diff] [blame] | 992 | |
Oleg Nesterov | f63ee72 | 2006-03-28 16:11:13 -0800 | [diff] [blame] | 993 | struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags) |
| 994 | { |
| 995 | struct sighand_struct *sighand; |
| 996 | |
Oleg Nesterov | 1406f2d | 2008-04-30 00:52:37 -0700 | [diff] [blame] | 997 | rcu_read_lock(); |
Oleg Nesterov | f63ee72 | 2006-03-28 16:11:13 -0800 | [diff] [blame] | 998 | for (;;) { |
| 999 | sighand = rcu_dereference(tsk->sighand); |
| 1000 | if (unlikely(sighand == NULL)) |
| 1001 | break; |
| 1002 | |
| 1003 | spin_lock_irqsave(&sighand->siglock, *flags); |
| 1004 | if (likely(sighand == tsk->sighand)) |
| 1005 | break; |
| 1006 | spin_unlock_irqrestore(&sighand->siglock, *flags); |
| 1007 | } |
Oleg Nesterov | 1406f2d | 2008-04-30 00:52:37 -0700 | [diff] [blame] | 1008 | rcu_read_unlock(); |
Oleg Nesterov | f63ee72 | 2006-03-28 16:11:13 -0800 | [diff] [blame] | 1009 | |
| 1010 | return sighand; |
| 1011 | } |
| 1012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p) |
| 1014 | { |
| 1015 | unsigned long flags; |
| 1016 | int ret; |
| 1017 | |
| 1018 | ret = check_kill_permission(sig, info, p); |
Oleg Nesterov | f63ee72 | 2006-03-28 16:11:13 -0800 | [diff] [blame] | 1019 | |
| 1020 | if (!ret && sig) { |
| 1021 | ret = -ESRCH; |
| 1022 | if (lock_task_sighand(p, &flags)) { |
| 1023 | ret = __group_send_sig_info(sig, info, p); |
| 1024 | unlock_task_sighand(p, &flags); |
Ingo Molnar | e56d090 | 2006-01-08 01:01:37 -0800 | [diff] [blame] | 1025 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | } |
| 1027 | |
| 1028 | return ret; |
| 1029 | } |
| 1030 | |
| 1031 | /* |
Pavel Emelyanov | 146a505 | 2008-02-08 04:19:22 -0800 | [diff] [blame] | 1032 | * __kill_pgrp_info() sends a signal to a process group: this is what the tty |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | * control characters do (^C, ^Z etc) |
| 1034 | */ |
| 1035 | |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1036 | int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | { |
| 1038 | struct task_struct *p = NULL; |
| 1039 | int retval, success; |
| 1040 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | success = 0; |
| 1042 | retval = -ESRCH; |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1043 | do_each_pid_task(pgrp, PIDTYPE_PGID, p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | int err = group_send_sig_info(sig, info, p); |
| 1045 | success |= !err; |
| 1046 | retval = err; |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1047 | } while_each_pid_task(pgrp, PIDTYPE_PGID, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | return success ? 0 : retval; |
| 1049 | } |
| 1050 | |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1051 | int kill_pid_info(int sig, struct siginfo *info, struct pid *pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | { |
Oleg Nesterov | d36174b | 2008-02-08 04:19:18 -0800 | [diff] [blame] | 1053 | int error = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | struct task_struct *p; |
| 1055 | |
Ingo Molnar | e56d090 | 2006-01-08 01:01:37 -0800 | [diff] [blame] | 1056 | rcu_read_lock(); |
Oleg Nesterov | d36174b | 2008-02-08 04:19:18 -0800 | [diff] [blame] | 1057 | retry: |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1058 | p = pid_task(pid, PIDTYPE_PID); |
Oleg Nesterov | d36174b | 2008-02-08 04:19:18 -0800 | [diff] [blame] | 1059 | if (p) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | error = group_send_sig_info(sig, info, p); |
Oleg Nesterov | d36174b | 2008-02-08 04:19:18 -0800 | [diff] [blame] | 1061 | if (unlikely(error == -ESRCH)) |
| 1062 | /* |
| 1063 | * The task was unhashed in between, try again. |
| 1064 | * If it is dead, pid_task() will return NULL, |
| 1065 | * if we race with de_thread() it will find the |
| 1066 | * new leader. |
| 1067 | */ |
| 1068 | goto retry; |
| 1069 | } |
Ingo Molnar | e56d090 | 2006-01-08 01:01:37 -0800 | [diff] [blame] | 1070 | rcu_read_unlock(); |
Oleg Nesterov | 6ca25b5 | 2008-04-30 00:52:45 -0700 | [diff] [blame] | 1071 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | return error; |
| 1073 | } |
| 1074 | |
Matthew Wilcox | c3de4b3 | 2007-02-09 08:11:47 -0700 | [diff] [blame] | 1075 | int |
| 1076 | kill_proc_info(int sig, struct siginfo *info, pid_t pid) |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1077 | { |
| 1078 | int error; |
| 1079 | rcu_read_lock(); |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1080 | error = kill_pid_info(sig, info, find_vpid(pid)); |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1081 | rcu_read_unlock(); |
| 1082 | return error; |
| 1083 | } |
| 1084 | |
Eric W. Biederman | 2425c08 | 2006-10-02 02:17:28 -0700 | [diff] [blame] | 1085 | /* like kill_pid_info(), but doesn't use uid/euid of "current" */ |
| 1086 | int kill_pid_info_as_uid(int sig, struct siginfo *info, struct pid *pid, |
David Quigley | 8f95dc5 | 2006-06-30 01:55:47 -0700 | [diff] [blame] | 1087 | uid_t uid, uid_t euid, u32 secid) |
Harald Welte | 4611383 | 2005-10-10 19:44:29 +0200 | [diff] [blame] | 1088 | { |
| 1089 | int ret = -EINVAL; |
| 1090 | struct task_struct *p; |
| 1091 | |
| 1092 | if (!valid_signal(sig)) |
| 1093 | return ret; |
| 1094 | |
| 1095 | read_lock(&tasklist_lock); |
Eric W. Biederman | 2425c08 | 2006-10-02 02:17:28 -0700 | [diff] [blame] | 1096 | p = pid_task(pid, PIDTYPE_PID); |
Harald Welte | 4611383 | 2005-10-10 19:44:29 +0200 | [diff] [blame] | 1097 | if (!p) { |
| 1098 | ret = -ESRCH; |
| 1099 | goto out_unlock; |
| 1100 | } |
Oleg Nesterov | 0811af2 | 2006-01-08 01:03:09 -0800 | [diff] [blame] | 1101 | if ((info == SEND_SIG_NOINFO || (!is_si_special(info) && SI_FROMUSER(info))) |
Harald Welte | 4611383 | 2005-10-10 19:44:29 +0200 | [diff] [blame] | 1102 | && (euid != p->suid) && (euid != p->uid) |
| 1103 | && (uid != p->suid) && (uid != p->uid)) { |
| 1104 | ret = -EPERM; |
| 1105 | goto out_unlock; |
| 1106 | } |
David Quigley | 8f95dc5 | 2006-06-30 01:55:47 -0700 | [diff] [blame] | 1107 | ret = security_task_kill(p, info, sig, secid); |
| 1108 | if (ret) |
| 1109 | goto out_unlock; |
Harald Welte | 4611383 | 2005-10-10 19:44:29 +0200 | [diff] [blame] | 1110 | if (sig && p->sighand) { |
| 1111 | unsigned long flags; |
| 1112 | spin_lock_irqsave(&p->sighand->siglock, flags); |
| 1113 | ret = __group_send_sig_info(sig, info, p); |
| 1114 | spin_unlock_irqrestore(&p->sighand->siglock, flags); |
| 1115 | } |
| 1116 | out_unlock: |
| 1117 | read_unlock(&tasklist_lock); |
| 1118 | return ret; |
| 1119 | } |
Eric W. Biederman | 2425c08 | 2006-10-02 02:17:28 -0700 | [diff] [blame] | 1120 | EXPORT_SYMBOL_GPL(kill_pid_info_as_uid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | |
| 1122 | /* |
| 1123 | * kill_something_info() interprets pid in interesting ways just like kill(2). |
| 1124 | * |
| 1125 | * POSIX specifies that kill(-1,sig) is unspecified, but what we have |
| 1126 | * is probably wrong. Should make it like BSD or SYSV. |
| 1127 | */ |
| 1128 | |
Gustavo Fernando Padovan | bc64efd | 2008-07-25 01:47:33 -0700 | [diff] [blame] | 1129 | static int kill_something_info(int sig, struct siginfo *info, pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | { |
Eric W. Biederman | 8d42db18 | 2007-02-12 00:52:55 -0800 | [diff] [blame] | 1131 | int ret; |
Pavel Emelyanov | d5df763 | 2008-02-08 04:19:22 -0800 | [diff] [blame] | 1132 | |
| 1133 | if (pid > 0) { |
| 1134 | rcu_read_lock(); |
| 1135 | ret = kill_pid_info(sig, info, find_vpid(pid)); |
| 1136 | rcu_read_unlock(); |
| 1137 | return ret; |
| 1138 | } |
| 1139 | |
| 1140 | read_lock(&tasklist_lock); |
| 1141 | if (pid != -1) { |
| 1142 | ret = __kill_pgrp_info(sig, info, |
| 1143 | pid ? find_vpid(-pid) : task_pgrp(current)); |
| 1144 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | int retval = 0, count = 0; |
| 1146 | struct task_struct * p; |
| 1147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | for_each_process(p) { |
Sukadev Bhattiprolu | d25141a | 2008-10-29 14:01:11 -0700 | [diff] [blame] | 1149 | if (task_pid_vnr(p) > 1 && |
| 1150 | !same_thread_group(p, current)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | int err = group_send_sig_info(sig, info, p); |
| 1152 | ++count; |
| 1153 | if (err != -EPERM) |
| 1154 | retval = err; |
| 1155 | } |
| 1156 | } |
Eric W. Biederman | 8d42db18 | 2007-02-12 00:52:55 -0800 | [diff] [blame] | 1157 | ret = count ? retval : -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | } |
Pavel Emelyanov | d5df763 | 2008-02-08 04:19:22 -0800 | [diff] [blame] | 1159 | read_unlock(&tasklist_lock); |
| 1160 | |
Eric W. Biederman | 8d42db18 | 2007-02-12 00:52:55 -0800 | [diff] [blame] | 1161 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | } |
| 1163 | |
| 1164 | /* |
| 1165 | * These are for backward compatibility with the rest of the kernel source. |
| 1166 | */ |
| 1167 | |
| 1168 | /* |
Oleg Nesterov | 08d2c30 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 1169 | * The caller must ensure the task can't exit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | */ |
| 1171 | int |
| 1172 | send_sig_info(int sig, struct siginfo *info, struct task_struct *p) |
| 1173 | { |
| 1174 | int ret; |
| 1175 | unsigned long flags; |
| 1176 | |
| 1177 | /* |
| 1178 | * Make sure legacy kernel users don't send in bad values |
| 1179 | * (normal paths check this in check_kill_permission). |
| 1180 | */ |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 1181 | if (!valid_signal(sig)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | return -EINVAL; |
| 1183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | spin_lock_irqsave(&p->sighand->siglock, flags); |
| 1185 | ret = specific_send_sig_info(sig, info, p); |
| 1186 | spin_unlock_irqrestore(&p->sighand->siglock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | return ret; |
| 1188 | } |
| 1189 | |
Oleg Nesterov | b67a1b9 | 2005-10-30 15:03:44 -0800 | [diff] [blame] | 1190 | #define __si_special(priv) \ |
| 1191 | ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO) |
| 1192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | int |
| 1194 | send_sig(int sig, struct task_struct *p, int priv) |
| 1195 | { |
Oleg Nesterov | b67a1b9 | 2005-10-30 15:03:44 -0800 | [diff] [blame] | 1196 | return send_sig_info(sig, __si_special(priv), p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | void |
| 1200 | force_sig(int sig, struct task_struct *p) |
| 1201 | { |
Oleg Nesterov | b67a1b9 | 2005-10-30 15:03:44 -0800 | [diff] [blame] | 1202 | force_sig_info(sig, SEND_SIG_PRIV, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
| 1205 | /* |
| 1206 | * When things go south during signal handling, we |
| 1207 | * will force a SIGSEGV. And if the signal that caused |
| 1208 | * the problem was already a SIGSEGV, we'll want to |
| 1209 | * make sure we don't even try to deliver the signal.. |
| 1210 | */ |
| 1211 | int |
| 1212 | force_sigsegv(int sig, struct task_struct *p) |
| 1213 | { |
| 1214 | if (sig == SIGSEGV) { |
| 1215 | unsigned long flags; |
| 1216 | spin_lock_irqsave(&p->sighand->siglock, flags); |
| 1217 | p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL; |
| 1218 | spin_unlock_irqrestore(&p->sighand->siglock, flags); |
| 1219 | } |
| 1220 | force_sig(SIGSEGV, p); |
| 1221 | return 0; |
| 1222 | } |
| 1223 | |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1224 | int kill_pgrp(struct pid *pid, int sig, int priv) |
| 1225 | { |
Pavel Emelyanov | 146a505 | 2008-02-08 04:19:22 -0800 | [diff] [blame] | 1226 | int ret; |
| 1227 | |
| 1228 | read_lock(&tasklist_lock); |
| 1229 | ret = __kill_pgrp_info(sig, __si_special(priv), pid); |
| 1230 | read_unlock(&tasklist_lock); |
| 1231 | |
| 1232 | return ret; |
Eric W. Biederman | c4b92fc | 2006-10-02 02:17:10 -0700 | [diff] [blame] | 1233 | } |
| 1234 | EXPORT_SYMBOL(kill_pgrp); |
| 1235 | |
| 1236 | int kill_pid(struct pid *pid, int sig, int priv) |
| 1237 | { |
| 1238 | return kill_pid_info(sig, __si_special(priv), pid); |
| 1239 | } |
| 1240 | EXPORT_SYMBOL(kill_pid); |
| 1241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | /* |
| 1243 | * These functions support sending signals using preallocated sigqueue |
| 1244 | * structures. This is needed "because realtime applications cannot |
| 1245 | * afford to lose notifications of asynchronous events, like timer |
| 1246 | * expirations or I/O completions". In the case of Posix Timers |
| 1247 | * we allocate the sigqueue structure from the timer_create. If this |
| 1248 | * allocation fails we are able to report the failure to the application |
| 1249 | * with an EAGAIN error. |
| 1250 | */ |
| 1251 | |
| 1252 | struct sigqueue *sigqueue_alloc(void) |
| 1253 | { |
| 1254 | struct sigqueue *q; |
| 1255 | |
| 1256 | if ((q = __sigqueue_alloc(current, GFP_KERNEL, 0))) |
| 1257 | q->flags |= SIGQUEUE_PREALLOC; |
| 1258 | return(q); |
| 1259 | } |
| 1260 | |
| 1261 | void sigqueue_free(struct sigqueue *q) |
| 1262 | { |
| 1263 | unsigned long flags; |
Oleg Nesterov | 60187d2 | 2007-08-30 23:56:35 -0700 | [diff] [blame] | 1264 | spinlock_t *lock = ¤t->sighand->siglock; |
| 1265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | BUG_ON(!(q->flags & SIGQUEUE_PREALLOC)); |
| 1267 | /* |
Oleg Nesterov | c8e85b4f | 2008-05-26 20:55:42 +0400 | [diff] [blame] | 1268 | * We must hold ->siglock while testing q->list |
| 1269 | * to serialize with collect_signal() or with |
Oleg Nesterov | da7978b | 2008-05-23 13:04:41 -0700 | [diff] [blame] | 1270 | * __exit_signal()->flush_sigqueue(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | */ |
Oleg Nesterov | 60187d2 | 2007-08-30 23:56:35 -0700 | [diff] [blame] | 1272 | spin_lock_irqsave(lock, flags); |
Oleg Nesterov | c8e85b4f | 2008-05-26 20:55:42 +0400 | [diff] [blame] | 1273 | q->flags &= ~SIGQUEUE_PREALLOC; |
| 1274 | /* |
| 1275 | * If it is queued it will be freed when dequeued, |
| 1276 | * like the "regular" sigqueue. |
| 1277 | */ |
Oleg Nesterov | 60187d2 | 2007-08-30 23:56:35 -0700 | [diff] [blame] | 1278 | if (!list_empty(&q->list)) |
Oleg Nesterov | c8e85b4f | 2008-05-26 20:55:42 +0400 | [diff] [blame] | 1279 | q = NULL; |
Oleg Nesterov | 60187d2 | 2007-08-30 23:56:35 -0700 | [diff] [blame] | 1280 | spin_unlock_irqrestore(lock, flags); |
| 1281 | |
Oleg Nesterov | c8e85b4f | 2008-05-26 20:55:42 +0400 | [diff] [blame] | 1282 | if (q) |
| 1283 | __sigqueue_free(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | } |
| 1285 | |
Oleg Nesterov | ac5c215 | 2008-04-30 00:52:57 -0700 | [diff] [blame] | 1286 | int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group) |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1287 | { |
Oleg Nesterov | e62e665 | 2008-04-30 00:52:56 -0700 | [diff] [blame] | 1288 | int sig = q->info.si_signo; |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 1289 | struct sigpending *pending; |
Oleg Nesterov | e62e665 | 2008-04-30 00:52:56 -0700 | [diff] [blame] | 1290 | unsigned long flags; |
| 1291 | int ret; |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 1292 | |
Pavel Emelyanov | 4cd4b6d | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 1293 | BUG_ON(!(q->flags & SIGQUEUE_PREALLOC)); |
Oleg Nesterov | e62e665 | 2008-04-30 00:52:56 -0700 | [diff] [blame] | 1294 | |
| 1295 | ret = -1; |
| 1296 | if (!likely(lock_task_sighand(t, &flags))) |
| 1297 | goto ret; |
| 1298 | |
Oleg Nesterov | 7e695a5 | 2008-04-30 00:52:59 -0700 | [diff] [blame] | 1299 | ret = 1; /* the signal is ignored */ |
| 1300 | if (!prepare_signal(sig, t)) |
Oleg Nesterov | e62e665 | 2008-04-30 00:52:56 -0700 | [diff] [blame] | 1301 | goto out; |
| 1302 | |
| 1303 | ret = 0; |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1304 | if (unlikely(!list_empty(&q->list))) { |
| 1305 | /* |
| 1306 | * If an SI_TIMER entry is already queue just increment |
| 1307 | * the overrun count. |
| 1308 | */ |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1309 | BUG_ON(q->info.si_code != SI_TIMER); |
| 1310 | q->info.si_overrun++; |
Oleg Nesterov | e62e665 | 2008-04-30 00:52:56 -0700 | [diff] [blame] | 1311 | goto out; |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1312 | } |
Oleg Nesterov | ba66129 | 2008-07-23 20:52:05 +0400 | [diff] [blame] | 1313 | q->info.si_overrun = 0; |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1314 | |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1315 | signalfd_notify(t, sig); |
Oleg Nesterov | 2ca3515 | 2008-04-30 00:52:54 -0700 | [diff] [blame] | 1316 | pending = group ? &t->signal->shared_pending : &t->pending; |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1317 | list_add_tail(&q->list, &pending->list); |
| 1318 | sigaddset(&pending->signal, sig); |
Pavel Emelyanov | 4cd4b6d | 2008-04-30 00:52:55 -0700 | [diff] [blame] | 1319 | complete_signal(sig, t, group); |
Oleg Nesterov | e62e665 | 2008-04-30 00:52:56 -0700 | [diff] [blame] | 1320 | out: |
| 1321 | unlock_task_sighand(t, &flags); |
| 1322 | ret: |
| 1323 | return ret; |
Pavel Emelyanov | 9e3bd6c | 2008-04-30 00:52:41 -0700 | [diff] [blame] | 1324 | } |
| 1325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | /* |
| 1327 | * Wake up any threads in the parent blocked in wait* syscalls. |
| 1328 | */ |
| 1329 | static inline void __wake_up_parent(struct task_struct *p, |
| 1330 | struct task_struct *parent) |
| 1331 | { |
| 1332 | wake_up_interruptible_sync(&parent->signal->wait_chldexit); |
| 1333 | } |
| 1334 | |
| 1335 | /* |
| 1336 | * Let a parent know about the death of a child. |
| 1337 | * For a stopped/continued status change, use do_notify_parent_cldstop instead. |
Roland McGrath | 2b2a1ff | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1338 | * |
| 1339 | * Returns -1 if our parent ignored us and so we've switched to |
| 1340 | * self-reaping, or else @sig. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | */ |
Roland McGrath | 2b2a1ff | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1342 | int do_notify_parent(struct task_struct *tsk, int sig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | { |
| 1344 | struct siginfo info; |
| 1345 | unsigned long flags; |
| 1346 | struct sighand_struct *psig; |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 1347 | struct task_cputime cputime; |
Roland McGrath | 1b04624 | 2008-08-19 20:37:07 -0700 | [diff] [blame] | 1348 | int ret = sig; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | |
| 1350 | BUG_ON(sig == -1); |
| 1351 | |
| 1352 | /* do_notify_parent_cldstop should have been called instead. */ |
Matthew Wilcox | e1abb39 | 2007-12-06 11:07:35 -0500 | [diff] [blame] | 1353 | BUG_ON(task_is_stopped_or_traced(tsk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | |
| 1355 | BUG_ON(!tsk->ptrace && |
| 1356 | (tsk->group_leader != tsk || !thread_group_empty(tsk))); |
| 1357 | |
| 1358 | info.si_signo = sig; |
| 1359 | info.si_errno = 0; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1360 | /* |
| 1361 | * we are under tasklist_lock here so our parent is tied to |
| 1362 | * us and cannot exit and release its namespace. |
| 1363 | * |
| 1364 | * the only it can is to switch its nsproxy with sys_unshare, |
| 1365 | * bu uncharing pid namespaces is not allowed, so we'll always |
| 1366 | * see relevant namespace |
| 1367 | * |
| 1368 | * write_lock() currently calls preempt_disable() which is the |
| 1369 | * same as rcu_read_lock(), but according to Oleg, this is not |
| 1370 | * correct to rely on this |
| 1371 | */ |
| 1372 | rcu_read_lock(); |
| 1373 | info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns); |
| 1374 | rcu_read_unlock(); |
| 1375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | info.si_uid = tsk->uid; |
| 1377 | |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 1378 | thread_group_cputime(tsk, &cputime); |
| 1379 | info.si_utime = cputime_to_jiffies(cputime.utime); |
| 1380 | info.si_stime = cputime_to_jiffies(cputime.stime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | |
| 1382 | info.si_status = tsk->exit_code & 0x7f; |
| 1383 | if (tsk->exit_code & 0x80) |
| 1384 | info.si_code = CLD_DUMPED; |
| 1385 | else if (tsk->exit_code & 0x7f) |
| 1386 | info.si_code = CLD_KILLED; |
| 1387 | else { |
| 1388 | info.si_code = CLD_EXITED; |
| 1389 | info.si_status = tsk->exit_code >> 8; |
| 1390 | } |
| 1391 | |
| 1392 | psig = tsk->parent->sighand; |
| 1393 | spin_lock_irqsave(&psig->siglock, flags); |
Oleg Nesterov | 7ed0175 | 2005-11-10 17:22:18 +0300 | [diff] [blame] | 1394 | if (!tsk->ptrace && sig == SIGCHLD && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN || |
| 1396 | (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) { |
| 1397 | /* |
| 1398 | * We are exiting and our parent doesn't care. POSIX.1 |
| 1399 | * defines special semantics for setting SIGCHLD to SIG_IGN |
| 1400 | * or setting the SA_NOCLDWAIT flag: we should be reaped |
| 1401 | * automatically and not left for our parent's wait4 call. |
| 1402 | * Rather than having the parent do it as a magic kind of |
| 1403 | * signal handler, we just set this to tell do_exit that we |
| 1404 | * can be cleaned up without becoming a zombie. Note that |
| 1405 | * we still call __wake_up_parent in this case, because a |
| 1406 | * blocked sys_wait4 might now return -ECHILD. |
| 1407 | * |
| 1408 | * Whether we send SIGCHLD or not for SA_NOCLDWAIT |
| 1409 | * is implementation-defined: we do (if you don't want |
| 1410 | * it, just use SIG_IGN instead). |
| 1411 | */ |
Roland McGrath | 1b04624 | 2008-08-19 20:37:07 -0700 | [diff] [blame] | 1412 | ret = tsk->exit_signal = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) |
Roland McGrath | 2b2a1ff | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1414 | sig = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | } |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 1416 | if (valid_signal(sig) && sig > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | __group_send_sig_info(sig, &info, tsk->parent); |
| 1418 | __wake_up_parent(tsk, tsk->parent); |
| 1419 | spin_unlock_irqrestore(&psig->siglock, flags); |
Roland McGrath | 2b2a1ff | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1420 | |
Roland McGrath | 1b04624 | 2008-08-19 20:37:07 -0700 | [diff] [blame] | 1421 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | } |
| 1423 | |
Oleg Nesterov | a1d5e21 | 2006-03-28 16:11:29 -0800 | [diff] [blame] | 1424 | static void do_notify_parent_cldstop(struct task_struct *tsk, int why) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | { |
| 1426 | struct siginfo info; |
| 1427 | unsigned long flags; |
Oleg Nesterov | bc505a4 | 2005-09-06 15:17:32 -0700 | [diff] [blame] | 1428 | struct task_struct *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | struct sighand_struct *sighand; |
| 1430 | |
Oleg Nesterov | a1d5e21 | 2006-03-28 16:11:29 -0800 | [diff] [blame] | 1431 | if (tsk->ptrace & PT_PTRACED) |
Oleg Nesterov | bc505a4 | 2005-09-06 15:17:32 -0700 | [diff] [blame] | 1432 | parent = tsk->parent; |
| 1433 | else { |
| 1434 | tsk = tsk->group_leader; |
| 1435 | parent = tsk->real_parent; |
| 1436 | } |
| 1437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | info.si_signo = SIGCHLD; |
| 1439 | info.si_errno = 0; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1440 | /* |
| 1441 | * see comment in do_notify_parent() abot the following 3 lines |
| 1442 | */ |
| 1443 | rcu_read_lock(); |
| 1444 | info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns); |
| 1445 | rcu_read_unlock(); |
| 1446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1447 | info.si_uid = tsk->uid; |
| 1448 | |
Michael Kerrisk | d8878ba | 2008-07-25 01:47:32 -0700 | [diff] [blame] | 1449 | info.si_utime = cputime_to_clock_t(tsk->utime); |
| 1450 | info.si_stime = cputime_to_clock_t(tsk->stime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | |
| 1452 | info.si_code = why; |
| 1453 | switch (why) { |
| 1454 | case CLD_CONTINUED: |
| 1455 | info.si_status = SIGCONT; |
| 1456 | break; |
| 1457 | case CLD_STOPPED: |
| 1458 | info.si_status = tsk->signal->group_exit_code & 0x7f; |
| 1459 | break; |
| 1460 | case CLD_TRAPPED: |
| 1461 | info.si_status = tsk->exit_code & 0x7f; |
| 1462 | break; |
| 1463 | default: |
| 1464 | BUG(); |
| 1465 | } |
| 1466 | |
| 1467 | sighand = parent->sighand; |
| 1468 | spin_lock_irqsave(&sighand->siglock, flags); |
| 1469 | if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN && |
| 1470 | !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP)) |
| 1471 | __group_send_sig_info(SIGCHLD, &info, parent); |
| 1472 | /* |
| 1473 | * Even if SIGCHLD is not generated, we must wake up wait4 calls. |
| 1474 | */ |
| 1475 | __wake_up_parent(tsk, parent); |
| 1476 | spin_unlock_irqrestore(&sighand->siglock, flags); |
| 1477 | } |
| 1478 | |
Oleg Nesterov | d5f70c0 | 2006-06-26 00:26:07 -0700 | [diff] [blame] | 1479 | static inline int may_ptrace_stop(void) |
| 1480 | { |
| 1481 | if (!likely(current->ptrace & PT_PTRACED)) |
| 1482 | return 0; |
Oleg Nesterov | d5f70c0 | 2006-06-26 00:26:07 -0700 | [diff] [blame] | 1483 | /* |
| 1484 | * Are we in the middle of do_coredump? |
| 1485 | * If so and our tracer is also part of the coredump stopping |
| 1486 | * is a deadlock situation, and pointless because our tracer |
| 1487 | * is dead so don't allow us to stop. |
| 1488 | * If SIGKILL was already sent before the caller unlocked |
Oleg Nesterov | 999d9fc | 2008-07-25 01:47:41 -0700 | [diff] [blame] | 1489 | * ->siglock we must see ->core_state != NULL. Otherwise it |
Oleg Nesterov | d5f70c0 | 2006-06-26 00:26:07 -0700 | [diff] [blame] | 1490 | * is safe to enter schedule(). |
| 1491 | */ |
Oleg Nesterov | 999d9fc | 2008-07-25 01:47:41 -0700 | [diff] [blame] | 1492 | if (unlikely(current->mm->core_state) && |
Oleg Nesterov | d5f70c0 | 2006-06-26 00:26:07 -0700 | [diff] [blame] | 1493 | unlikely(current->mm == current->parent->mm)) |
| 1494 | return 0; |
| 1495 | |
| 1496 | return 1; |
| 1497 | } |
| 1498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | /* |
Roland McGrath | 1a669c2 | 2008-02-06 01:37:37 -0800 | [diff] [blame] | 1500 | * Return nonzero if there is a SIGKILL that should be waking us up. |
| 1501 | * Called with the siglock held. |
| 1502 | */ |
| 1503 | static int sigkill_pending(struct task_struct *tsk) |
| 1504 | { |
Oleg Nesterov | 3d749b9 | 2008-07-25 01:47:37 -0700 | [diff] [blame] | 1505 | return sigismember(&tsk->pending.signal, SIGKILL) || |
| 1506 | sigismember(&tsk->signal->shared_pending.signal, SIGKILL); |
Roland McGrath | 1a669c2 | 2008-02-06 01:37:37 -0800 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | * This must be called with current->sighand->siglock held. |
| 1511 | * |
| 1512 | * This should be the path for all ptrace stops. |
| 1513 | * We always set current->last_siginfo while stopped here. |
| 1514 | * That makes it a way to test a stopped process for |
| 1515 | * being ptrace-stopped vs being job-control-stopped. |
| 1516 | * |
Oleg Nesterov | 20686a3 | 2008-02-08 04:19:03 -0800 | [diff] [blame] | 1517 | * If we actually decide not to stop at all because the tracer |
| 1518 | * is gone, we keep current->exit_code unless clear_code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | */ |
Oleg Nesterov | 20686a3 | 2008-02-08 04:19:03 -0800 | [diff] [blame] | 1520 | static void ptrace_stop(int exit_code, int clear_code, siginfo_t *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | { |
Roland McGrath | 1a669c2 | 2008-02-06 01:37:37 -0800 | [diff] [blame] | 1522 | if (arch_ptrace_stop_needed(exit_code, info)) { |
| 1523 | /* |
| 1524 | * The arch code has something special to do before a |
| 1525 | * ptrace stop. This is allowed to block, e.g. for faults |
| 1526 | * on user stack pages. We can't keep the siglock while |
| 1527 | * calling arch_ptrace_stop, so we must release it now. |
| 1528 | * To preserve proper semantics, we must do this before |
| 1529 | * any signal bookkeeping like checking group_stop_count. |
| 1530 | * Meanwhile, a SIGKILL could come in before we retake the |
| 1531 | * siglock. That must prevent us from sleeping in TASK_TRACED. |
| 1532 | * So after regaining the lock, we must check for SIGKILL. |
| 1533 | */ |
| 1534 | spin_unlock_irq(¤t->sighand->siglock); |
| 1535 | arch_ptrace_stop(exit_code, info); |
| 1536 | spin_lock_irq(¤t->sighand->siglock); |
Oleg Nesterov | 3d749b9 | 2008-07-25 01:47:37 -0700 | [diff] [blame] | 1537 | if (sigkill_pending(current)) |
| 1538 | return; |
Roland McGrath | 1a669c2 | 2008-02-06 01:37:37 -0800 | [diff] [blame] | 1539 | } |
| 1540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | /* |
| 1542 | * If there is a group stop in progress, |
| 1543 | * we must participate in the bookkeeping. |
| 1544 | */ |
| 1545 | if (current->signal->group_stop_count > 0) |
| 1546 | --current->signal->group_stop_count; |
| 1547 | |
| 1548 | current->last_siginfo = info; |
| 1549 | current->exit_code = exit_code; |
| 1550 | |
| 1551 | /* Let the debugger run. */ |
Oleg Nesterov | d9ae90a | 2008-02-06 01:36:13 -0800 | [diff] [blame] | 1552 | __set_current_state(TASK_TRACED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | spin_unlock_irq(¤t->sighand->siglock); |
| 1554 | read_lock(&tasklist_lock); |
Oleg Nesterov | 3d749b9 | 2008-07-25 01:47:37 -0700 | [diff] [blame] | 1555 | if (may_ptrace_stop()) { |
Oleg Nesterov | a1d5e21 | 2006-03-28 16:11:29 -0800 | [diff] [blame] | 1556 | do_notify_parent_cldstop(current, CLD_TRAPPED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | read_unlock(&tasklist_lock); |
| 1558 | schedule(); |
| 1559 | } else { |
| 1560 | /* |
| 1561 | * By the time we got the lock, our tracer went away. |
Oleg Nesterov | 6405f7f | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 1562 | * Don't drop the lock yet, another tracer may come. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | */ |
Oleg Nesterov | 6405f7f | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 1564 | __set_current_state(TASK_RUNNING); |
Oleg Nesterov | 20686a3 | 2008-02-08 04:19:03 -0800 | [diff] [blame] | 1565 | if (clear_code) |
| 1566 | current->exit_code = 0; |
Oleg Nesterov | 6405f7f | 2008-02-08 04:19:00 -0800 | [diff] [blame] | 1567 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | } |
| 1569 | |
| 1570 | /* |
Roland McGrath | 13b1c3d | 2008-03-03 20:22:05 -0800 | [diff] [blame] | 1571 | * While in TASK_TRACED, we were considered "frozen enough". |
| 1572 | * Now that we woke up, it's crucial if we're supposed to be |
| 1573 | * frozen that we freeze now before running anything substantial. |
| 1574 | */ |
| 1575 | try_to_freeze(); |
| 1576 | |
| 1577 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | * We are back. Now reacquire the siglock before touching |
| 1579 | * last_siginfo, so that we are sure to have synchronized with |
| 1580 | * any signal-sending on another CPU that wants to examine it. |
| 1581 | */ |
| 1582 | spin_lock_irq(¤t->sighand->siglock); |
| 1583 | current->last_siginfo = NULL; |
| 1584 | |
| 1585 | /* |
| 1586 | * Queued signals ignored us while we were stopped for tracing. |
| 1587 | * So check for any that we should take before resuming user mode. |
Roland McGrath | b74d0de | 2007-06-06 03:59:00 -0700 | [diff] [blame] | 1588 | * This sets TIF_SIGPENDING, but never clears it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | */ |
Roland McGrath | b74d0de | 2007-06-06 03:59:00 -0700 | [diff] [blame] | 1590 | recalc_sigpending_tsk(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | } |
| 1592 | |
| 1593 | void ptrace_notify(int exit_code) |
| 1594 | { |
| 1595 | siginfo_t info; |
| 1596 | |
| 1597 | BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP); |
| 1598 | |
| 1599 | memset(&info, 0, sizeof info); |
| 1600 | info.si_signo = SIGTRAP; |
| 1601 | info.si_code = exit_code; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 1602 | info.si_pid = task_pid_vnr(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | info.si_uid = current->uid; |
| 1604 | |
| 1605 | /* Let the debugger run. */ |
| 1606 | spin_lock_irq(¤t->sighand->siglock); |
Oleg Nesterov | 20686a3 | 2008-02-08 04:19:03 -0800 | [diff] [blame] | 1607 | ptrace_stop(exit_code, 1, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | spin_unlock_irq(¤t->sighand->siglock); |
| 1609 | } |
| 1610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | static void |
| 1612 | finish_stop(int stop_count) |
| 1613 | { |
| 1614 | /* |
| 1615 | * If there are no other threads in the group, or if there is |
| 1616 | * a group stop in progress and we are the last to stop, |
| 1617 | * report to the parent. When ptraced, every thread reports itself. |
| 1618 | */ |
Roland McGrath | fa00b80 | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1619 | if (tracehook_notify_jctl(stop_count == 0, CLD_STOPPED)) { |
Oleg Nesterov | a1d5e21 | 2006-03-28 16:11:29 -0800 | [diff] [blame] | 1620 | read_lock(&tasklist_lock); |
| 1621 | do_notify_parent_cldstop(current, CLD_STOPPED); |
| 1622 | read_unlock(&tasklist_lock); |
| 1623 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | |
Rafael J. Wysocki | 3df494a | 2006-12-13 00:34:28 -0800 | [diff] [blame] | 1625 | do { |
| 1626 | schedule(); |
| 1627 | } while (try_to_freeze()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | /* |
| 1629 | * Now we don't run again until continued. |
| 1630 | */ |
| 1631 | current->exit_code = 0; |
| 1632 | } |
| 1633 | |
| 1634 | /* |
| 1635 | * This performs the stopping for SIGSTOP and other stop signals. |
| 1636 | * We have to stop all threads in the thread group. |
| 1637 | * Returns nonzero if we've actually stopped and released the siglock. |
| 1638 | * Returns zero if we didn't stop and still hold the siglock. |
| 1639 | */ |
Oleg Nesterov | a122b34 | 2006-03-28 16:11:22 -0800 | [diff] [blame] | 1640 | static int do_signal_stop(int signr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | { |
| 1642 | struct signal_struct *sig = current->signal; |
Oleg Nesterov | dac27f4 | 2006-03-28 16:11:28 -0800 | [diff] [blame] | 1643 | int stop_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | if (sig->group_stop_count > 0) { |
| 1646 | /* |
| 1647 | * There is a group stop in progress. We don't need to |
| 1648 | * start another one. |
| 1649 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | stop_count = --sig->group_stop_count; |
Oleg Nesterov | dac27f4 | 2006-03-28 16:11:28 -0800 | [diff] [blame] | 1651 | } else { |
Oleg Nesterov | f558b7e | 2008-02-04 22:27:24 -0800 | [diff] [blame] | 1652 | struct task_struct *t; |
| 1653 | |
Oleg Nesterov | 2b201a9 | 2008-07-25 01:47:31 -0700 | [diff] [blame] | 1654 | if (!likely(sig->flags & SIGNAL_STOP_DEQUEUED) || |
Oleg Nesterov | 573cf9a | 2008-04-30 00:52:36 -0700 | [diff] [blame] | 1655 | unlikely(signal_group_exit(sig))) |
Oleg Nesterov | f558b7e | 2008-02-04 22:27:24 -0800 | [diff] [blame] | 1656 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | * There is no group stop already in progress. |
Oleg Nesterov | a122b34 | 2006-03-28 16:11:22 -0800 | [diff] [blame] | 1659 | * We must initiate one now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | */ |
Oleg Nesterov | a122b34 | 2006-03-28 16:11:22 -0800 | [diff] [blame] | 1661 | sig->group_exit_code = signr; |
| 1662 | |
| 1663 | stop_count = 0; |
| 1664 | for (t = next_thread(current); t != current; t = next_thread(t)) |
| 1665 | /* |
| 1666 | * Setting state to TASK_STOPPED for a group |
| 1667 | * stop is always done with the siglock held, |
| 1668 | * so this check has no races. |
| 1669 | */ |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1670 | if (!(t->flags & PF_EXITING) && |
Matthew Wilcox | e1abb39 | 2007-12-06 11:07:35 -0500 | [diff] [blame] | 1671 | !task_is_stopped_or_traced(t)) { |
Oleg Nesterov | a122b34 | 2006-03-28 16:11:22 -0800 | [diff] [blame] | 1672 | stop_count++; |
| 1673 | signal_wake_up(t, 0); |
| 1674 | } |
| 1675 | sig->group_stop_count = stop_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | } |
| 1677 | |
Oleg Nesterov | dac27f4 | 2006-03-28 16:11:28 -0800 | [diff] [blame] | 1678 | if (stop_count == 0) |
| 1679 | sig->flags = SIGNAL_STOP_STOPPED; |
| 1680 | current->exit_code = sig->group_exit_code; |
| 1681 | __set_current_state(TASK_STOPPED); |
| 1682 | |
| 1683 | spin_unlock_irq(¤t->sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | finish_stop(stop_count); |
| 1685 | return 1; |
| 1686 | } |
| 1687 | |
Roland McGrath | 18c98b6 | 2008-04-17 18:44:38 -0700 | [diff] [blame] | 1688 | static int ptrace_signal(int signr, siginfo_t *info, |
| 1689 | struct pt_regs *regs, void *cookie) |
| 1690 | { |
| 1691 | if (!(current->ptrace & PT_PTRACED)) |
| 1692 | return signr; |
| 1693 | |
| 1694 | ptrace_signal_deliver(regs, cookie); |
| 1695 | |
| 1696 | /* Let the debugger run. */ |
| 1697 | ptrace_stop(signr, 0, info); |
| 1698 | |
| 1699 | /* We're back. Did the debugger cancel the sig? */ |
| 1700 | signr = current->exit_code; |
| 1701 | if (signr == 0) |
| 1702 | return signr; |
| 1703 | |
| 1704 | current->exit_code = 0; |
| 1705 | |
| 1706 | /* Update the siginfo structure if the signal has |
| 1707 | changed. If the debugger wanted something |
| 1708 | specific in the siginfo structure then it should |
| 1709 | have updated *info via PTRACE_SETSIGINFO. */ |
| 1710 | if (signr != info->si_signo) { |
| 1711 | info->si_signo = signr; |
| 1712 | info->si_errno = 0; |
| 1713 | info->si_code = SI_USER; |
| 1714 | info->si_pid = task_pid_vnr(current->parent); |
| 1715 | info->si_uid = current->parent->uid; |
| 1716 | } |
| 1717 | |
| 1718 | /* If the (new) signal is now blocked, requeue it. */ |
| 1719 | if (sigismember(¤t->blocked, signr)) { |
| 1720 | specific_send_sig_info(signr, info, current); |
| 1721 | signr = 0; |
| 1722 | } |
| 1723 | |
| 1724 | return signr; |
| 1725 | } |
| 1726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka, |
| 1728 | struct pt_regs *regs, void *cookie) |
| 1729 | { |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1730 | struct sighand_struct *sighand = current->sighand; |
| 1731 | struct signal_struct *signal = current->signal; |
| 1732 | int signr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | |
Roland McGrath | 13b1c3d | 2008-03-03 20:22:05 -0800 | [diff] [blame] | 1734 | relock: |
| 1735 | /* |
| 1736 | * We'll jump back here after any time we were stopped in TASK_STOPPED. |
| 1737 | * While in TASK_STOPPED, we were considered "frozen enough". |
| 1738 | * Now that we woke up, it's crucial if we're supposed to be |
| 1739 | * frozen that we freeze now before running anything substantial. |
| 1740 | */ |
Rafael J. Wysocki | fc558a7 | 2006-03-23 03:00:05 -0800 | [diff] [blame] | 1741 | try_to_freeze(); |
| 1742 | |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1743 | spin_lock_irq(&sighand->siglock); |
Oleg Nesterov | 021e1ae | 2008-04-30 00:53:00 -0700 | [diff] [blame] | 1744 | /* |
| 1745 | * Every stopped thread goes here after wakeup. Check to see if |
| 1746 | * we should notify the parent, prepare_signal(SIGCONT) encodes |
| 1747 | * the CLD_ si_code into SIGNAL_CLD_MASK bits. |
| 1748 | */ |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1749 | if (unlikely(signal->flags & SIGNAL_CLD_MASK)) { |
| 1750 | int why = (signal->flags & SIGNAL_STOP_CONTINUED) |
Oleg Nesterov | e442055 | 2008-04-30 00:52:44 -0700 | [diff] [blame] | 1751 | ? CLD_CONTINUED : CLD_STOPPED; |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1752 | signal->flags &= ~SIGNAL_CLD_MASK; |
| 1753 | spin_unlock_irq(&sighand->siglock); |
Oleg Nesterov | e442055 | 2008-04-30 00:52:44 -0700 | [diff] [blame] | 1754 | |
Roland McGrath | fa00b80 | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1755 | if (unlikely(!tracehook_notify_jctl(1, why))) |
| 1756 | goto relock; |
| 1757 | |
Oleg Nesterov | e442055 | 2008-04-30 00:52:44 -0700 | [diff] [blame] | 1758 | read_lock(&tasklist_lock); |
| 1759 | do_notify_parent_cldstop(current->group_leader, why); |
| 1760 | read_unlock(&tasklist_lock); |
| 1761 | goto relock; |
| 1762 | } |
| 1763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | for (;;) { |
| 1765 | struct k_sigaction *ka; |
| 1766 | |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1767 | if (unlikely(signal->group_stop_count > 0) && |
Oleg Nesterov | f558b7e | 2008-02-04 22:27:24 -0800 | [diff] [blame] | 1768 | do_signal_stop(0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | goto relock; |
| 1770 | |
Roland McGrath | 7bcf6a2 | 2008-07-25 19:45:53 -0700 | [diff] [blame] | 1771 | /* |
| 1772 | * Tracing can induce an artifical signal and choose sigaction. |
| 1773 | * The return value in @signr determines the default action, |
| 1774 | * but @info->si_signo is the signal number we will report. |
| 1775 | */ |
| 1776 | signr = tracehook_get_signal(current, regs, info, return_ka); |
| 1777 | if (unlikely(signr < 0)) |
| 1778 | goto relock; |
| 1779 | if (unlikely(signr != 0)) |
| 1780 | ka = return_ka; |
| 1781 | else { |
| 1782 | signr = dequeue_signal(current, ¤t->blocked, |
| 1783 | info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | |
Roland McGrath | 18c98b6 | 2008-04-17 18:44:38 -0700 | [diff] [blame] | 1785 | if (!signr) |
Roland McGrath | 7bcf6a2 | 2008-07-25 19:45:53 -0700 | [diff] [blame] | 1786 | break; /* will return 0 */ |
| 1787 | |
| 1788 | if (signr != SIGKILL) { |
| 1789 | signr = ptrace_signal(signr, info, |
| 1790 | regs, cookie); |
| 1791 | if (!signr) |
| 1792 | continue; |
| 1793 | } |
| 1794 | |
| 1795 | ka = &sighand->action[signr-1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | } |
| 1797 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | if (ka->sa.sa_handler == SIG_IGN) /* Do nothing. */ |
| 1799 | continue; |
| 1800 | if (ka->sa.sa_handler != SIG_DFL) { |
| 1801 | /* Run the handler. */ |
| 1802 | *return_ka = *ka; |
| 1803 | |
| 1804 | if (ka->sa.sa_flags & SA_ONESHOT) |
| 1805 | ka->sa.sa_handler = SIG_DFL; |
| 1806 | |
| 1807 | break; /* will return non-zero "signr" value */ |
| 1808 | } |
| 1809 | |
| 1810 | /* |
| 1811 | * Now we are doing the default action for this signal. |
| 1812 | */ |
| 1813 | if (sig_kernel_ignore(signr)) /* Default is nothing. */ |
| 1814 | continue; |
| 1815 | |
Sukadev Bhattiprolu | 84d7378 | 2006-12-08 02:38:01 -0800 | [diff] [blame] | 1816 | /* |
Sukadev Bhattiprolu | 0fbc26a | 2007-10-18 23:40:13 -0700 | [diff] [blame] | 1817 | * Global init gets no signals it doesn't want. |
Sukadev Bhattiprolu | 84d7378 | 2006-12-08 02:38:01 -0800 | [diff] [blame] | 1818 | */ |
Oleg Nesterov | fae5fa4 | 2008-04-30 00:53:03 -0700 | [diff] [blame] | 1819 | if (unlikely(signal->flags & SIGNAL_UNKILLABLE) && |
| 1820 | !signal_group_exit(signal)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | continue; |
| 1822 | |
| 1823 | if (sig_kernel_stop(signr)) { |
| 1824 | /* |
| 1825 | * The default action is to stop all threads in |
| 1826 | * the thread group. The job control signals |
| 1827 | * do nothing in an orphaned pgrp, but SIGSTOP |
| 1828 | * always works. Note that siglock needs to be |
| 1829 | * dropped during the call to is_orphaned_pgrp() |
| 1830 | * because of lock ordering with tasklist_lock. |
| 1831 | * This allows an intervening SIGCONT to be posted. |
| 1832 | * We need to check for that and bail out if necessary. |
| 1833 | */ |
| 1834 | if (signr != SIGSTOP) { |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1835 | spin_unlock_irq(&sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | |
| 1837 | /* signals can be posted during this window */ |
| 1838 | |
Eric W. Biederman | 3e7cd6c | 2007-02-12 00:52:58 -0800 | [diff] [blame] | 1839 | if (is_current_pgrp_orphaned()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | goto relock; |
| 1841 | |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1842 | spin_lock_irq(&sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | } |
| 1844 | |
Roland McGrath | 7bcf6a2 | 2008-07-25 19:45:53 -0700 | [diff] [blame] | 1845 | if (likely(do_signal_stop(info->si_signo))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | /* It released the siglock. */ |
| 1847 | goto relock; |
| 1848 | } |
| 1849 | |
| 1850 | /* |
| 1851 | * We didn't actually stop, due to a race |
| 1852 | * with SIGCONT or something like that. |
| 1853 | */ |
| 1854 | continue; |
| 1855 | } |
| 1856 | |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1857 | spin_unlock_irq(&sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | |
| 1859 | /* |
| 1860 | * Anything else is fatal, maybe with a core dump. |
| 1861 | */ |
| 1862 | current->flags |= PF_SIGNALED; |
Oleg Nesterov | 2dce81b | 2008-04-30 00:52:58 -0700 | [diff] [blame] | 1863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | if (sig_kernel_coredump(signr)) { |
Oleg Nesterov | 2dce81b | 2008-04-30 00:52:58 -0700 | [diff] [blame] | 1865 | if (print_fatal_signals) |
Roland McGrath | 7bcf6a2 | 2008-07-25 19:45:53 -0700 | [diff] [blame] | 1866 | print_fatal_signal(regs, info->si_signo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | /* |
| 1868 | * If it was able to dump core, this kills all |
| 1869 | * other threads in the group and synchronizes with |
| 1870 | * their demise. If we lost the race with another |
| 1871 | * thread getting here, it set group_exit_code |
| 1872 | * first and our do_group_exit call below will use |
| 1873 | * that value and ignore the one we pass it. |
| 1874 | */ |
Roland McGrath | 7bcf6a2 | 2008-07-25 19:45:53 -0700 | [diff] [blame] | 1875 | do_coredump(info->si_signo, info->si_signo, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | /* |
| 1879 | * Death signals, no core dump. |
| 1880 | */ |
Roland McGrath | 7bcf6a2 | 2008-07-25 19:45:53 -0700 | [diff] [blame] | 1881 | do_group_exit(info->si_signo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | /* NOTREACHED */ |
| 1883 | } |
Oleg Nesterov | f6b76d4 | 2008-04-30 00:52:47 -0700 | [diff] [blame] | 1884 | spin_unlock_irq(&sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | return signr; |
| 1886 | } |
| 1887 | |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1888 | void exit_signals(struct task_struct *tsk) |
| 1889 | { |
| 1890 | int group_stop = 0; |
Oleg Nesterov | 5dee170 | 2008-02-08 04:19:13 -0800 | [diff] [blame] | 1891 | struct task_struct *t; |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1892 | |
Oleg Nesterov | 5dee170 | 2008-02-08 04:19:13 -0800 | [diff] [blame] | 1893 | if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) { |
| 1894 | tsk->flags |= PF_EXITING; |
| 1895 | return; |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1896 | } |
| 1897 | |
Oleg Nesterov | 5dee170 | 2008-02-08 04:19:13 -0800 | [diff] [blame] | 1898 | spin_lock_irq(&tsk->sighand->siglock); |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1899 | /* |
| 1900 | * From now this task is not visible for group-wide signals, |
| 1901 | * see wants_signal(), do_signal_stop(). |
| 1902 | */ |
| 1903 | tsk->flags |= PF_EXITING; |
Oleg Nesterov | 5dee170 | 2008-02-08 04:19:13 -0800 | [diff] [blame] | 1904 | if (!signal_pending(tsk)) |
| 1905 | goto out; |
| 1906 | |
| 1907 | /* It could be that __group_complete_signal() choose us to |
| 1908 | * notify about group-wide signal. Another thread should be |
| 1909 | * woken now to take the signal since we will not. |
| 1910 | */ |
| 1911 | for (t = tsk; (t = next_thread(t)) != tsk; ) |
| 1912 | if (!signal_pending(t) && !(t->flags & PF_EXITING)) |
| 1913 | recalc_sigpending_and_wake(t); |
| 1914 | |
| 1915 | if (unlikely(tsk->signal->group_stop_count) && |
| 1916 | !--tsk->signal->group_stop_count) { |
| 1917 | tsk->signal->flags = SIGNAL_STOP_STOPPED; |
| 1918 | group_stop = 1; |
| 1919 | } |
| 1920 | out: |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1921 | spin_unlock_irq(&tsk->sighand->siglock); |
| 1922 | |
Roland McGrath | fa00b80 | 2008-07-25 19:45:54 -0700 | [diff] [blame] | 1923 | if (unlikely(group_stop) && tracehook_notify_jctl(1, CLD_STOPPED)) { |
Oleg Nesterov | d12619b | 2008-02-08 04:19:12 -0800 | [diff] [blame] | 1924 | read_lock(&tasklist_lock); |
| 1925 | do_notify_parent_cldstop(tsk, CLD_STOPPED); |
| 1926 | read_unlock(&tasklist_lock); |
| 1927 | } |
| 1928 | } |
| 1929 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | EXPORT_SYMBOL(recalc_sigpending); |
| 1931 | EXPORT_SYMBOL_GPL(dequeue_signal); |
| 1932 | EXPORT_SYMBOL(flush_signals); |
| 1933 | EXPORT_SYMBOL(force_sig); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | EXPORT_SYMBOL(send_sig); |
| 1935 | EXPORT_SYMBOL(send_sig_info); |
| 1936 | EXPORT_SYMBOL(sigprocmask); |
| 1937 | EXPORT_SYMBOL(block_all_signals); |
| 1938 | EXPORT_SYMBOL(unblock_all_signals); |
| 1939 | |
| 1940 | |
| 1941 | /* |
| 1942 | * System call entry points. |
| 1943 | */ |
| 1944 | |
| 1945 | asmlinkage long sys_restart_syscall(void) |
| 1946 | { |
| 1947 | struct restart_block *restart = ¤t_thread_info()->restart_block; |
| 1948 | return restart->fn(restart); |
| 1949 | } |
| 1950 | |
| 1951 | long do_no_restart_syscall(struct restart_block *param) |
| 1952 | { |
| 1953 | return -EINTR; |
| 1954 | } |
| 1955 | |
| 1956 | /* |
| 1957 | * We don't need to get the kernel lock - this is all local to this |
| 1958 | * particular thread.. (and that's good, because this is _heavily_ |
| 1959 | * used by various programs) |
| 1960 | */ |
| 1961 | |
| 1962 | /* |
| 1963 | * This is also useful for kernel threads that want to temporarily |
| 1964 | * (or permanently) block certain signals. |
| 1965 | * |
| 1966 | * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel |
| 1967 | * interface happily blocks "unblockable" signals like SIGKILL |
| 1968 | * and friends. |
| 1969 | */ |
| 1970 | int sigprocmask(int how, sigset_t *set, sigset_t *oldset) |
| 1971 | { |
| 1972 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | |
| 1974 | spin_lock_irq(¤t->sighand->siglock); |
Oleg Nesterov | a26fd33 | 2006-03-23 03:00:49 -0800 | [diff] [blame] | 1975 | if (oldset) |
| 1976 | *oldset = current->blocked; |
| 1977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | error = 0; |
| 1979 | switch (how) { |
| 1980 | case SIG_BLOCK: |
| 1981 | sigorsets(¤t->blocked, ¤t->blocked, set); |
| 1982 | break; |
| 1983 | case SIG_UNBLOCK: |
| 1984 | signandsets(¤t->blocked, ¤t->blocked, set); |
| 1985 | break; |
| 1986 | case SIG_SETMASK: |
| 1987 | current->blocked = *set; |
| 1988 | break; |
| 1989 | default: |
| 1990 | error = -EINVAL; |
| 1991 | } |
| 1992 | recalc_sigpending(); |
| 1993 | spin_unlock_irq(¤t->sighand->siglock); |
Oleg Nesterov | a26fd33 | 2006-03-23 03:00:49 -0800 | [diff] [blame] | 1994 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | return error; |
| 1996 | } |
| 1997 | |
| 1998 | asmlinkage long |
| 1999 | sys_rt_sigprocmask(int how, sigset_t __user *set, sigset_t __user *oset, size_t sigsetsize) |
| 2000 | { |
| 2001 | int error = -EINVAL; |
| 2002 | sigset_t old_set, new_set; |
| 2003 | |
| 2004 | /* XXX: Don't preclude handling different sized sigset_t's. */ |
| 2005 | if (sigsetsize != sizeof(sigset_t)) |
| 2006 | goto out; |
| 2007 | |
| 2008 | if (set) { |
| 2009 | error = -EFAULT; |
| 2010 | if (copy_from_user(&new_set, set, sizeof(*set))) |
| 2011 | goto out; |
| 2012 | sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP)); |
| 2013 | |
| 2014 | error = sigprocmask(how, &new_set, &old_set); |
| 2015 | if (error) |
| 2016 | goto out; |
| 2017 | if (oset) |
| 2018 | goto set_old; |
| 2019 | } else if (oset) { |
| 2020 | spin_lock_irq(¤t->sighand->siglock); |
| 2021 | old_set = current->blocked; |
| 2022 | spin_unlock_irq(¤t->sighand->siglock); |
| 2023 | |
| 2024 | set_old: |
| 2025 | error = -EFAULT; |
| 2026 | if (copy_to_user(oset, &old_set, sizeof(*oset))) |
| 2027 | goto out; |
| 2028 | } |
| 2029 | error = 0; |
| 2030 | out: |
| 2031 | return error; |
| 2032 | } |
| 2033 | |
| 2034 | long do_sigpending(void __user *set, unsigned long sigsetsize) |
| 2035 | { |
| 2036 | long error = -EINVAL; |
| 2037 | sigset_t pending; |
| 2038 | |
| 2039 | if (sigsetsize > sizeof(sigset_t)) |
| 2040 | goto out; |
| 2041 | |
| 2042 | spin_lock_irq(¤t->sighand->siglock); |
| 2043 | sigorsets(&pending, ¤t->pending.signal, |
| 2044 | ¤t->signal->shared_pending.signal); |
| 2045 | spin_unlock_irq(¤t->sighand->siglock); |
| 2046 | |
| 2047 | /* Outside the lock because only this thread touches it. */ |
| 2048 | sigandsets(&pending, ¤t->blocked, &pending); |
| 2049 | |
| 2050 | error = -EFAULT; |
| 2051 | if (!copy_to_user(set, &pending, sigsetsize)) |
| 2052 | error = 0; |
| 2053 | |
| 2054 | out: |
| 2055 | return error; |
| 2056 | } |
| 2057 | |
| 2058 | asmlinkage long |
| 2059 | sys_rt_sigpending(sigset_t __user *set, size_t sigsetsize) |
| 2060 | { |
| 2061 | return do_sigpending(set, sigsetsize); |
| 2062 | } |
| 2063 | |
| 2064 | #ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER |
| 2065 | |
| 2066 | int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from) |
| 2067 | { |
| 2068 | int err; |
| 2069 | |
| 2070 | if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t))) |
| 2071 | return -EFAULT; |
| 2072 | if (from->si_code < 0) |
| 2073 | return __copy_to_user(to, from, sizeof(siginfo_t)) |
| 2074 | ? -EFAULT : 0; |
| 2075 | /* |
| 2076 | * If you change siginfo_t structure, please be sure |
| 2077 | * this code is fixed accordingly. |
Davide Libenzi | fba2afa | 2007-05-10 22:23:13 -0700 | [diff] [blame] | 2078 | * Please remember to update the signalfd_copyinfo() function |
| 2079 | * inside fs/signalfd.c too, in case siginfo_t changes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | * It should never copy any pad contained in the structure |
| 2081 | * to avoid security leaks, but must copy the generic |
| 2082 | * 3 ints plus the relevant union member. |
| 2083 | */ |
| 2084 | err = __put_user(from->si_signo, &to->si_signo); |
| 2085 | err |= __put_user(from->si_errno, &to->si_errno); |
| 2086 | err |= __put_user((short)from->si_code, &to->si_code); |
| 2087 | switch (from->si_code & __SI_MASK) { |
| 2088 | case __SI_KILL: |
| 2089 | err |= __put_user(from->si_pid, &to->si_pid); |
| 2090 | err |= __put_user(from->si_uid, &to->si_uid); |
| 2091 | break; |
| 2092 | case __SI_TIMER: |
| 2093 | err |= __put_user(from->si_tid, &to->si_tid); |
| 2094 | err |= __put_user(from->si_overrun, &to->si_overrun); |
| 2095 | err |= __put_user(from->si_ptr, &to->si_ptr); |
| 2096 | break; |
| 2097 | case __SI_POLL: |
| 2098 | err |= __put_user(from->si_band, &to->si_band); |
| 2099 | err |= __put_user(from->si_fd, &to->si_fd); |
| 2100 | break; |
| 2101 | case __SI_FAULT: |
| 2102 | err |= __put_user(from->si_addr, &to->si_addr); |
| 2103 | #ifdef __ARCH_SI_TRAPNO |
| 2104 | err |= __put_user(from->si_trapno, &to->si_trapno); |
| 2105 | #endif |
| 2106 | break; |
| 2107 | case __SI_CHLD: |
| 2108 | err |= __put_user(from->si_pid, &to->si_pid); |
| 2109 | err |= __put_user(from->si_uid, &to->si_uid); |
| 2110 | err |= __put_user(from->si_status, &to->si_status); |
| 2111 | err |= __put_user(from->si_utime, &to->si_utime); |
| 2112 | err |= __put_user(from->si_stime, &to->si_stime); |
| 2113 | break; |
| 2114 | case __SI_RT: /* This is not generated by the kernel as of now. */ |
| 2115 | case __SI_MESGQ: /* But this is */ |
| 2116 | err |= __put_user(from->si_pid, &to->si_pid); |
| 2117 | err |= __put_user(from->si_uid, &to->si_uid); |
| 2118 | err |= __put_user(from->si_ptr, &to->si_ptr); |
| 2119 | break; |
| 2120 | default: /* this is just in case for now ... */ |
| 2121 | err |= __put_user(from->si_pid, &to->si_pid); |
| 2122 | err |= __put_user(from->si_uid, &to->si_uid); |
| 2123 | break; |
| 2124 | } |
| 2125 | return err; |
| 2126 | } |
| 2127 | |
| 2128 | #endif |
| 2129 | |
| 2130 | asmlinkage long |
| 2131 | sys_rt_sigtimedwait(const sigset_t __user *uthese, |
| 2132 | siginfo_t __user *uinfo, |
| 2133 | const struct timespec __user *uts, |
| 2134 | size_t sigsetsize) |
| 2135 | { |
| 2136 | int ret, sig; |
| 2137 | sigset_t these; |
| 2138 | struct timespec ts; |
| 2139 | siginfo_t info; |
| 2140 | long timeout = 0; |
| 2141 | |
| 2142 | /* XXX: Don't preclude handling different sized sigset_t's. */ |
| 2143 | if (sigsetsize != sizeof(sigset_t)) |
| 2144 | return -EINVAL; |
| 2145 | |
| 2146 | if (copy_from_user(&these, uthese, sizeof(these))) |
| 2147 | return -EFAULT; |
| 2148 | |
| 2149 | /* |
| 2150 | * Invert the set of allowed signals to get those we |
| 2151 | * want to block. |
| 2152 | */ |
| 2153 | sigdelsetmask(&these, sigmask(SIGKILL)|sigmask(SIGSTOP)); |
| 2154 | signotset(&these); |
| 2155 | |
| 2156 | if (uts) { |
| 2157 | if (copy_from_user(&ts, uts, sizeof(ts))) |
| 2158 | return -EFAULT; |
| 2159 | if (ts.tv_nsec >= 1000000000L || ts.tv_nsec < 0 |
| 2160 | || ts.tv_sec < 0) |
| 2161 | return -EINVAL; |
| 2162 | } |
| 2163 | |
| 2164 | spin_lock_irq(¤t->sighand->siglock); |
| 2165 | sig = dequeue_signal(current, &these, &info); |
| 2166 | if (!sig) { |
| 2167 | timeout = MAX_SCHEDULE_TIMEOUT; |
| 2168 | if (uts) |
| 2169 | timeout = (timespec_to_jiffies(&ts) |
| 2170 | + (ts.tv_sec || ts.tv_nsec)); |
| 2171 | |
| 2172 | if (timeout) { |
| 2173 | /* None ready -- temporarily unblock those we're |
| 2174 | * interested while we are sleeping in so that we'll |
| 2175 | * be awakened when they arrive. */ |
| 2176 | current->real_blocked = current->blocked; |
| 2177 | sigandsets(¤t->blocked, ¤t->blocked, &these); |
| 2178 | recalc_sigpending(); |
| 2179 | spin_unlock_irq(¤t->sighand->siglock); |
| 2180 | |
Nishanth Aravamudan | 75bcc8c | 2005-09-10 00:27:24 -0700 | [diff] [blame] | 2181 | timeout = schedule_timeout_interruptible(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | spin_lock_irq(¤t->sighand->siglock); |
| 2184 | sig = dequeue_signal(current, &these, &info); |
| 2185 | current->blocked = current->real_blocked; |
| 2186 | siginitset(¤t->real_blocked, 0); |
| 2187 | recalc_sigpending(); |
| 2188 | } |
| 2189 | } |
| 2190 | spin_unlock_irq(¤t->sighand->siglock); |
| 2191 | |
| 2192 | if (sig) { |
| 2193 | ret = sig; |
| 2194 | if (uinfo) { |
| 2195 | if (copy_siginfo_to_user(uinfo, &info)) |
| 2196 | ret = -EFAULT; |
| 2197 | } |
| 2198 | } else { |
| 2199 | ret = -EAGAIN; |
| 2200 | if (timeout) |
| 2201 | ret = -EINTR; |
| 2202 | } |
| 2203 | |
| 2204 | return ret; |
| 2205 | } |
| 2206 | |
| 2207 | asmlinkage long |
Gustavo Fernando Padovan | bc64efd | 2008-07-25 01:47:33 -0700 | [diff] [blame] | 2208 | sys_kill(pid_t pid, int sig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | { |
| 2210 | struct siginfo info; |
| 2211 | |
| 2212 | info.si_signo = sig; |
| 2213 | info.si_errno = 0; |
| 2214 | info.si_code = SI_USER; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2215 | info.si_pid = task_tgid_vnr(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | info.si_uid = current->uid; |
| 2217 | |
| 2218 | return kill_something_info(sig, &info, pid); |
| 2219 | } |
| 2220 | |
Gustavo Fernando Padovan | bc64efd | 2008-07-25 01:47:33 -0700 | [diff] [blame] | 2221 | static int do_tkill(pid_t tgid, pid_t pid, int sig) |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2222 | { |
| 2223 | int error; |
| 2224 | struct siginfo info; |
| 2225 | struct task_struct *p; |
Oleg Nesterov | 3547ff3 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 2226 | unsigned long flags; |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2227 | |
| 2228 | error = -ESRCH; |
| 2229 | info.si_signo = sig; |
| 2230 | info.si_errno = 0; |
| 2231 | info.si_code = SI_TKILL; |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2232 | info.si_pid = task_tgid_vnr(current); |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2233 | info.si_uid = current->uid; |
| 2234 | |
Oleg Nesterov | 3547ff3 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 2235 | rcu_read_lock(); |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 2236 | p = find_task_by_vpid(pid); |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2237 | if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) { |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2238 | error = check_kill_permission(sig, &info, p); |
| 2239 | /* |
| 2240 | * The null signal is a permissions and process existence |
| 2241 | * probe. No signal is actually delivered. |
Oleg Nesterov | 3547ff3 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 2242 | * |
| 2243 | * If lock_task_sighand() fails we pretend the task dies |
| 2244 | * after receiving the signal. The window is tiny, and the |
| 2245 | * signal is private anyway. |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2246 | */ |
Oleg Nesterov | 3547ff3 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 2247 | if (!error && sig && lock_task_sighand(p, &flags)) { |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2248 | error = specific_send_sig_info(sig, &info, p); |
Oleg Nesterov | 3547ff3 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 2249 | unlock_task_sighand(p, &flags); |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2250 | } |
| 2251 | } |
Oleg Nesterov | 3547ff3 | 2008-04-30 00:52:51 -0700 | [diff] [blame] | 2252 | rcu_read_unlock(); |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2253 | |
| 2254 | return error; |
| 2255 | } |
| 2256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | /** |
| 2258 | * sys_tgkill - send signal to one specific thread |
| 2259 | * @tgid: the thread group ID of the thread |
| 2260 | * @pid: the PID of the thread |
| 2261 | * @sig: signal to be sent |
| 2262 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 2263 | * This syscall also checks the @tgid and returns -ESRCH even if the PID |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | * exists but it's not belonging to the target process anymore. This |
| 2265 | * method solves the problem of threads exiting and PIDs getting reused. |
| 2266 | */ |
Gustavo Fernando Padovan | bc64efd | 2008-07-25 01:47:33 -0700 | [diff] [blame] | 2267 | asmlinkage long sys_tgkill(pid_t tgid, pid_t pid, int sig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | /* This is only valid for single tasks */ |
| 2270 | if (pid <= 0 || tgid <= 0) |
| 2271 | return -EINVAL; |
| 2272 | |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2273 | return do_tkill(tgid, pid, sig); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | } |
| 2275 | |
| 2276 | /* |
| 2277 | * Send a signal to only one task, even if it's a CLONE_THREAD task. |
| 2278 | */ |
| 2279 | asmlinkage long |
Gustavo Fernando Padovan | bc64efd | 2008-07-25 01:47:33 -0700 | [diff] [blame] | 2280 | sys_tkill(pid_t pid, int sig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | /* This is only valid for single tasks */ |
| 2283 | if (pid <= 0) |
| 2284 | return -EINVAL; |
| 2285 | |
Vadim Lobanov | 6dd69f1 | 2005-10-30 15:02:18 -0800 | [diff] [blame] | 2286 | return do_tkill(0, pid, sig); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | } |
| 2288 | |
| 2289 | asmlinkage long |
Gustavo Fernando Padovan | bc64efd | 2008-07-25 01:47:33 -0700 | [diff] [blame] | 2290 | sys_rt_sigqueueinfo(pid_t pid, int sig, siginfo_t __user *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | { |
| 2292 | siginfo_t info; |
| 2293 | |
| 2294 | if (copy_from_user(&info, uinfo, sizeof(siginfo_t))) |
| 2295 | return -EFAULT; |
| 2296 | |
| 2297 | /* Not even root can pretend to send signals from the kernel. |
| 2298 | Nor can they impersonate a kill(), which adds source info. */ |
| 2299 | if (info.si_code >= 0) |
| 2300 | return -EPERM; |
| 2301 | info.si_signo = sig; |
| 2302 | |
| 2303 | /* POSIX.1b doesn't mention process groups. */ |
| 2304 | return kill_proc_info(sig, &info, pid); |
| 2305 | } |
| 2306 | |
Oleg Nesterov | 88531f7 | 2006-03-28 16:11:24 -0800 | [diff] [blame] | 2307 | int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | { |
Pavel Emelyanov | 93585ee | 2008-04-30 00:52:39 -0700 | [diff] [blame] | 2309 | struct task_struct *t = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | struct k_sigaction *k; |
George Anzinger | 71fabd5 | 2006-01-08 01:02:48 -0800 | [diff] [blame] | 2311 | sigset_t mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | |
Jesper Juhl | 7ed20e1 | 2005-05-01 08:59:14 -0700 | [diff] [blame] | 2313 | if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | return -EINVAL; |
| 2315 | |
Pavel Emelyanov | 93585ee | 2008-04-30 00:52:39 -0700 | [diff] [blame] | 2316 | k = &t->sighand->action[sig-1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | |
| 2318 | spin_lock_irq(¤t->sighand->siglock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | if (oact) |
| 2320 | *oact = *k; |
| 2321 | |
| 2322 | if (act) { |
Oleg Nesterov | 9ac95f2 | 2006-02-09 22:41:50 +0300 | [diff] [blame] | 2323 | sigdelsetmask(&act->sa.sa_mask, |
| 2324 | sigmask(SIGKILL) | sigmask(SIGSTOP)); |
Oleg Nesterov | 88531f7 | 2006-03-28 16:11:24 -0800 | [diff] [blame] | 2325 | *k = *act; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | /* |
| 2327 | * POSIX 3.3.1.3: |
| 2328 | * "Setting a signal action to SIG_IGN for a signal that is |
| 2329 | * pending shall cause the pending signal to be discarded, |
| 2330 | * whether or not it is blocked." |
| 2331 | * |
| 2332 | * "Setting a signal action to SIG_DFL for a signal that is |
| 2333 | * pending and whose default action is to ignore the signal |
| 2334 | * (for example, SIGCHLD), shall cause the pending signal to |
| 2335 | * be discarded, whether or not it is blocked" |
| 2336 | */ |
Roland McGrath | 35de254 | 2008-07-25 19:45:51 -0700 | [diff] [blame] | 2337 | if (sig_handler_ignored(sig_handler(t, sig), sig)) { |
George Anzinger | 71fabd5 | 2006-01-08 01:02:48 -0800 | [diff] [blame] | 2338 | sigemptyset(&mask); |
| 2339 | sigaddset(&mask, sig); |
| 2340 | rm_from_queue_full(&mask, &t->signal->shared_pending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | do { |
George Anzinger | 71fabd5 | 2006-01-08 01:02:48 -0800 | [diff] [blame] | 2342 | rm_from_queue_full(&mask, &t->pending); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2343 | t = next_thread(t); |
| 2344 | } while (t != current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | } |
| 2347 | |
| 2348 | spin_unlock_irq(¤t->sighand->siglock); |
| 2349 | return 0; |
| 2350 | } |
| 2351 | |
| 2352 | int |
| 2353 | do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp) |
| 2354 | { |
| 2355 | stack_t oss; |
| 2356 | int error; |
| 2357 | |
| 2358 | if (uoss) { |
| 2359 | oss.ss_sp = (void __user *) current->sas_ss_sp; |
| 2360 | oss.ss_size = current->sas_ss_size; |
| 2361 | oss.ss_flags = sas_ss_flags(sp); |
| 2362 | } |
| 2363 | |
| 2364 | if (uss) { |
| 2365 | void __user *ss_sp; |
| 2366 | size_t ss_size; |
| 2367 | int ss_flags; |
| 2368 | |
| 2369 | error = -EFAULT; |
| 2370 | if (!access_ok(VERIFY_READ, uss, sizeof(*uss)) |
| 2371 | || __get_user(ss_sp, &uss->ss_sp) |
| 2372 | || __get_user(ss_flags, &uss->ss_flags) |
| 2373 | || __get_user(ss_size, &uss->ss_size)) |
| 2374 | goto out; |
| 2375 | |
| 2376 | error = -EPERM; |
| 2377 | if (on_sig_stack(sp)) |
| 2378 | goto out; |
| 2379 | |
| 2380 | error = -EINVAL; |
| 2381 | /* |
| 2382 | * |
| 2383 | * Note - this code used to test ss_flags incorrectly |
| 2384 | * old code may have been written using ss_flags==0 |
| 2385 | * to mean ss_flags==SS_ONSTACK (as this was the only |
| 2386 | * way that worked) - this fix preserves that older |
| 2387 | * mechanism |
| 2388 | */ |
| 2389 | if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0) |
| 2390 | goto out; |
| 2391 | |
| 2392 | if (ss_flags == SS_DISABLE) { |
| 2393 | ss_size = 0; |
| 2394 | ss_sp = NULL; |
| 2395 | } else { |
| 2396 | error = -ENOMEM; |
| 2397 | if (ss_size < MINSIGSTKSZ) |
| 2398 | goto out; |
| 2399 | } |
| 2400 | |
| 2401 | current->sas_ss_sp = (unsigned long) ss_sp; |
| 2402 | current->sas_ss_size = ss_size; |
| 2403 | } |
| 2404 | |
| 2405 | if (uoss) { |
| 2406 | error = -EFAULT; |
| 2407 | if (copy_to_user(uoss, &oss, sizeof(oss))) |
| 2408 | goto out; |
| 2409 | } |
| 2410 | |
| 2411 | error = 0; |
| 2412 | out: |
| 2413 | return error; |
| 2414 | } |
| 2415 | |
| 2416 | #ifdef __ARCH_WANT_SYS_SIGPENDING |
| 2417 | |
| 2418 | asmlinkage long |
| 2419 | sys_sigpending(old_sigset_t __user *set) |
| 2420 | { |
| 2421 | return do_sigpending(set, sizeof(*set)); |
| 2422 | } |
| 2423 | |
| 2424 | #endif |
| 2425 | |
| 2426 | #ifdef __ARCH_WANT_SYS_SIGPROCMASK |
| 2427 | /* Some platforms have their own version with special arguments others |
| 2428 | support only sys_rt_sigprocmask. */ |
| 2429 | |
| 2430 | asmlinkage long |
| 2431 | sys_sigprocmask(int how, old_sigset_t __user *set, old_sigset_t __user *oset) |
| 2432 | { |
| 2433 | int error; |
| 2434 | old_sigset_t old_set, new_set; |
| 2435 | |
| 2436 | if (set) { |
| 2437 | error = -EFAULT; |
| 2438 | if (copy_from_user(&new_set, set, sizeof(*set))) |
| 2439 | goto out; |
| 2440 | new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP)); |
| 2441 | |
| 2442 | spin_lock_irq(¤t->sighand->siglock); |
| 2443 | old_set = current->blocked.sig[0]; |
| 2444 | |
| 2445 | error = 0; |
| 2446 | switch (how) { |
| 2447 | default: |
| 2448 | error = -EINVAL; |
| 2449 | break; |
| 2450 | case SIG_BLOCK: |
| 2451 | sigaddsetmask(¤t->blocked, new_set); |
| 2452 | break; |
| 2453 | case SIG_UNBLOCK: |
| 2454 | sigdelsetmask(¤t->blocked, new_set); |
| 2455 | break; |
| 2456 | case SIG_SETMASK: |
| 2457 | current->blocked.sig[0] = new_set; |
| 2458 | break; |
| 2459 | } |
| 2460 | |
| 2461 | recalc_sigpending(); |
| 2462 | spin_unlock_irq(¤t->sighand->siglock); |
| 2463 | if (error) |
| 2464 | goto out; |
| 2465 | if (oset) |
| 2466 | goto set_old; |
| 2467 | } else if (oset) { |
| 2468 | old_set = current->blocked.sig[0]; |
| 2469 | set_old: |
| 2470 | error = -EFAULT; |
| 2471 | if (copy_to_user(oset, &old_set, sizeof(*oset))) |
| 2472 | goto out; |
| 2473 | } |
| 2474 | error = 0; |
| 2475 | out: |
| 2476 | return error; |
| 2477 | } |
| 2478 | #endif /* __ARCH_WANT_SYS_SIGPROCMASK */ |
| 2479 | |
| 2480 | #ifdef __ARCH_WANT_SYS_RT_SIGACTION |
| 2481 | asmlinkage long |
| 2482 | sys_rt_sigaction(int sig, |
| 2483 | const struct sigaction __user *act, |
| 2484 | struct sigaction __user *oact, |
| 2485 | size_t sigsetsize) |
| 2486 | { |
| 2487 | struct k_sigaction new_sa, old_sa; |
| 2488 | int ret = -EINVAL; |
| 2489 | |
| 2490 | /* XXX: Don't preclude handling different sized sigset_t's. */ |
| 2491 | if (sigsetsize != sizeof(sigset_t)) |
| 2492 | goto out; |
| 2493 | |
| 2494 | if (act) { |
| 2495 | if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa))) |
| 2496 | return -EFAULT; |
| 2497 | } |
| 2498 | |
| 2499 | ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL); |
| 2500 | |
| 2501 | if (!ret && oact) { |
| 2502 | if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa))) |
| 2503 | return -EFAULT; |
| 2504 | } |
| 2505 | out: |
| 2506 | return ret; |
| 2507 | } |
| 2508 | #endif /* __ARCH_WANT_SYS_RT_SIGACTION */ |
| 2509 | |
| 2510 | #ifdef __ARCH_WANT_SYS_SGETMASK |
| 2511 | |
| 2512 | /* |
| 2513 | * For backwards compatibility. Functionality superseded by sigprocmask. |
| 2514 | */ |
| 2515 | asmlinkage long |
| 2516 | sys_sgetmask(void) |
| 2517 | { |
| 2518 | /* SMP safe */ |
| 2519 | return current->blocked.sig[0]; |
| 2520 | } |
| 2521 | |
| 2522 | asmlinkage long |
| 2523 | sys_ssetmask(int newmask) |
| 2524 | { |
| 2525 | int old; |
| 2526 | |
| 2527 | spin_lock_irq(¤t->sighand->siglock); |
| 2528 | old = current->blocked.sig[0]; |
| 2529 | |
| 2530 | siginitset(¤t->blocked, newmask & ~(sigmask(SIGKILL)| |
| 2531 | sigmask(SIGSTOP))); |
| 2532 | recalc_sigpending(); |
| 2533 | spin_unlock_irq(¤t->sighand->siglock); |
| 2534 | |
| 2535 | return old; |
| 2536 | } |
| 2537 | #endif /* __ARCH_WANT_SGETMASK */ |
| 2538 | |
| 2539 | #ifdef __ARCH_WANT_SYS_SIGNAL |
| 2540 | /* |
| 2541 | * For backwards compatibility. Functionality superseded by sigaction. |
| 2542 | */ |
| 2543 | asmlinkage unsigned long |
| 2544 | sys_signal(int sig, __sighandler_t handler) |
| 2545 | { |
| 2546 | struct k_sigaction new_sa, old_sa; |
| 2547 | int ret; |
| 2548 | |
| 2549 | new_sa.sa.sa_handler = handler; |
| 2550 | new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK; |
Oleg Nesterov | c70d3d7 | 2006-02-09 22:41:41 +0300 | [diff] [blame] | 2551 | sigemptyset(&new_sa.sa.sa_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | |
| 2553 | ret = do_sigaction(sig, &new_sa, &old_sa); |
| 2554 | |
| 2555 | return ret ? ret : (unsigned long)old_sa.sa.sa_handler; |
| 2556 | } |
| 2557 | #endif /* __ARCH_WANT_SYS_SIGNAL */ |
| 2558 | |
| 2559 | #ifdef __ARCH_WANT_SYS_PAUSE |
| 2560 | |
| 2561 | asmlinkage long |
| 2562 | sys_pause(void) |
| 2563 | { |
| 2564 | current->state = TASK_INTERRUPTIBLE; |
| 2565 | schedule(); |
| 2566 | return -ERESTARTNOHAND; |
| 2567 | } |
| 2568 | |
| 2569 | #endif |
| 2570 | |
David Woodhouse | 150256d | 2006-01-18 17:43:57 -0800 | [diff] [blame] | 2571 | #ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND |
| 2572 | asmlinkage long sys_rt_sigsuspend(sigset_t __user *unewset, size_t sigsetsize) |
| 2573 | { |
| 2574 | sigset_t newset; |
| 2575 | |
| 2576 | /* XXX: Don't preclude handling different sized sigset_t's. */ |
| 2577 | if (sigsetsize != sizeof(sigset_t)) |
| 2578 | return -EINVAL; |
| 2579 | |
| 2580 | if (copy_from_user(&newset, unewset, sizeof(newset))) |
| 2581 | return -EFAULT; |
| 2582 | sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP)); |
| 2583 | |
| 2584 | spin_lock_irq(¤t->sighand->siglock); |
| 2585 | current->saved_sigmask = current->blocked; |
| 2586 | current->blocked = newset; |
| 2587 | recalc_sigpending(); |
| 2588 | spin_unlock_irq(¤t->sighand->siglock); |
| 2589 | |
| 2590 | current->state = TASK_INTERRUPTIBLE; |
| 2591 | schedule(); |
Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 2592 | set_restore_sigmask(); |
David Woodhouse | 150256d | 2006-01-18 17:43:57 -0800 | [diff] [blame] | 2593 | return -ERESTARTNOHAND; |
| 2594 | } |
| 2595 | #endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */ |
| 2596 | |
David Howells | f269fdd | 2006-09-27 01:50:23 -0700 | [diff] [blame] | 2597 | __attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma) |
| 2598 | { |
| 2599 | return NULL; |
| 2600 | } |
| 2601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2602 | void __init signals_init(void) |
| 2603 | { |
Christoph Lameter | 0a31bd5 | 2007-05-06 14:49:57 -0700 | [diff] [blame] | 2604 | sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | } |