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