60d80ab2601c544ac03460cdb6888dd8c699dd4f
[firefly-linux-kernel-4.4.55.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/export.h>
15 #include <linux/init.h>
16 #include <linux/sched.h>
17 #include <linux/fs.h>
18 #include <linux/tty.h>
19 #include <linux/binfmts.h>
20 #include <linux/security.h>
21 #include <linux/syscalls.h>
22 #include <linux/ptrace.h>
23 #include <linux/signal.h>
24 #include <linux/signalfd.h>
25 #include <linux/ratelimit.h>
26 #include <linux/tracehook.h>
27 #include <linux/capability.h>
28 #include <linux/freezer.h>
29 #include <linux/pid_namespace.h>
30 #include <linux/nsproxy.h>
31 #include <linux/user_namespace.h>
32 #include <linux/uprobes.h>
33 #define CREATE_TRACE_POINTS
34 #include <trace/events/signal.h>
35
36 #include <asm/param.h>
37 #include <asm/uaccess.h>
38 #include <asm/unistd.h>
39 #include <asm/siginfo.h>
40 #include <asm/cacheflush.h>
41 #include "audit.h"      /* audit_signal_info() */
42
43 /*
44  * SLAB caches for signal bits.
45  */
46
47 static struct kmem_cache *sigqueue_cachep;
48
49 int print_fatal_signals __read_mostly;
50
51 static void __user *sig_handler(struct task_struct *t, int sig)
52 {
53         return t->sighand->action[sig - 1].sa.sa_handler;
54 }
55
56 static int sig_handler_ignored(void __user *handler, int sig)
57 {
58         /* Is it explicitly or implicitly ignored? */
59         return handler == SIG_IGN ||
60                 (handler == SIG_DFL && sig_kernel_ignore(sig));
61 }
62
63 static int sig_task_ignored(struct task_struct *t, int sig, bool force)
64 {
65         void __user *handler;
66
67         handler = sig_handler(t, sig);
68
69         if (unlikely(t->signal->flags & SIGNAL_UNKILLABLE) &&
70                         handler == SIG_DFL && !force)
71                 return 1;
72
73         return sig_handler_ignored(handler, sig);
74 }
75
76 static int sig_ignored(struct task_struct *t, int sig, bool force)
77 {
78         /*
79          * Blocked signals are never ignored, since the
80          * signal handler may change by the time it is
81          * unblocked.
82          */
83         if (sigismember(&t->blocked, sig) || sigismember(&t->real_blocked, sig))
84                 return 0;
85
86         if (!sig_task_ignored(t, sig, force))
87                 return 0;
88
89         /*
90          * Tracers may want to know about even ignored signals.
91          */
92         return !t->ptrace;
93 }
94
95 /*
96  * Re-calculate pending state from the set of locally pending
97  * signals, globally pending signals, and blocked signals.
98  */
99 static inline int has_pending_signals(sigset_t *signal, sigset_t *blocked)
100 {
101         unsigned long ready;
102         long i;
103
104         switch (_NSIG_WORDS) {
105         default:
106                 for (i = _NSIG_WORDS, ready = 0; --i >= 0 ;)
107                         ready |= signal->sig[i] &~ blocked->sig[i];
108                 break;
109
110         case 4: ready  = signal->sig[3] &~ blocked->sig[3];
111                 ready |= signal->sig[2] &~ blocked->sig[2];
112                 ready |= signal->sig[1] &~ blocked->sig[1];
113                 ready |= signal->sig[0] &~ blocked->sig[0];
114                 break;
115
116         case 2: ready  = signal->sig[1] &~ blocked->sig[1];
117                 ready |= signal->sig[0] &~ blocked->sig[0];
118                 break;
119
120         case 1: ready  = signal->sig[0] &~ blocked->sig[0];
121         }
122         return ready != 0;
123 }
124
125 #define PENDING(p,b) has_pending_signals(&(p)->signal, (b))
126
127 static int recalc_sigpending_tsk(struct task_struct *t)
128 {
129         if ((t->jobctl & JOBCTL_PENDING_MASK) ||
130             PENDING(&t->pending, &t->blocked) ||
131             PENDING(&t->signal->shared_pending, &t->blocked)) {
132                 set_tsk_thread_flag(t, TIF_SIGPENDING);
133                 return 1;
134         }
135         /*
136          * We must never clear the flag in another thread, or in current
137          * when it's possible the current syscall is returning -ERESTART*.
138          * So we don't clear it here, and only callers who know they should do.
139          */
140         return 0;
141 }
142
143 /*
144  * After recalculating TIF_SIGPENDING, we need to make sure the task wakes up.
145  * This is superfluous when called on current, the wakeup is a harmless no-op.
146  */
147 void recalc_sigpending_and_wake(struct task_struct *t)
148 {
149         if (recalc_sigpending_tsk(t))
150                 signal_wake_up(t, 0);
151 }
152
153 void recalc_sigpending(void)
154 {
155         if (!recalc_sigpending_tsk(current) && !freezing(current))
156                 clear_thread_flag(TIF_SIGPENDING);
157
158 }
159
160 /* Given the mask, find the first available signal that should be serviced. */
161
162 #define SYNCHRONOUS_MASK \
163         (sigmask(SIGSEGV) | sigmask(SIGBUS) | sigmask(SIGILL) | \
164          sigmask(SIGTRAP) | sigmask(SIGFPE))
165
166 int next_signal(struct sigpending *pending, sigset_t *mask)
167 {
168         unsigned long i, *s, *m, x;
169         int sig = 0;
170
171         s = pending->signal.sig;
172         m = mask->sig;
173
174         /*
175          * Handle the first word specially: it contains the
176          * synchronous signals that need to be dequeued first.
177          */
178         x = *s &~ *m;
179         if (x) {
180                 if (x & SYNCHRONOUS_MASK)
181                         x &= SYNCHRONOUS_MASK;
182                 sig = ffz(~x) + 1;
183                 return sig;
184         }
185
186         switch (_NSIG_WORDS) {
187         default:
188                 for (i = 1; i < _NSIG_WORDS; ++i) {
189                         x = *++s &~ *++m;
190                         if (!x)
191                                 continue;
192                         sig = ffz(~x) + i*_NSIG_BPW + 1;
193                         break;
194                 }
195                 break;
196
197         case 2:
198                 x = s[1] &~ m[1];
199                 if (!x)
200                         break;
201                 sig = ffz(~x) + _NSIG_BPW + 1;
202                 break;
203
204         case 1:
205                 /* Nothing to do */
206                 break;
207         }
208
209         return sig;
210 }
211
212 static inline void print_dropped_signal(int sig)
213 {
214         static DEFINE_RATELIMIT_STATE(ratelimit_state, 5 * HZ, 10);
215
216         if (!print_fatal_signals)
217                 return;
218
219         if (!__ratelimit(&ratelimit_state))
220                 return;
221
222         printk(KERN_INFO "%s/%d: reached RLIMIT_SIGPENDING, dropped signal %d\n",
223                                 current->comm, current->pid, sig);
224 }
225
226 /**
227  * task_set_jobctl_pending - set jobctl pending bits
228  * @task: target task
229  * @mask: pending bits to set
230  *
231  * Clear @mask from @task->jobctl.  @mask must be subset of
232  * %JOBCTL_PENDING_MASK | %JOBCTL_STOP_CONSUME | %JOBCTL_STOP_SIGMASK |
233  * %JOBCTL_TRAPPING.  If stop signo is being set, the existing signo is
234  * cleared.  If @task is already being killed or exiting, this function
235  * becomes noop.
236  *
237  * CONTEXT:
238  * Must be called with @task->sighand->siglock held.
239  *
240  * RETURNS:
241  * %true if @mask is set, %false if made noop because @task was dying.
242  */
243 bool task_set_jobctl_pending(struct task_struct *task, unsigned int mask)
244 {
245         BUG_ON(mask & ~(JOBCTL_PENDING_MASK | JOBCTL_STOP_CONSUME |
246                         JOBCTL_STOP_SIGMASK | JOBCTL_TRAPPING));
247         BUG_ON((mask & JOBCTL_TRAPPING) && !(mask & JOBCTL_PENDING_MASK));
248
249         if (unlikely(fatal_signal_pending(task) || (task->flags & PF_EXITING)))
250                 return false;
251
252         if (mask & JOBCTL_STOP_SIGMASK)
253                 task->jobctl &= ~JOBCTL_STOP_SIGMASK;
254
255         task->jobctl |= mask;
256         return true;
257 }
258
259 /**
260  * task_clear_jobctl_trapping - clear jobctl trapping bit
261  * @task: target task
262  *
263  * If JOBCTL_TRAPPING is set, a ptracer is waiting for us to enter TRACED.
264  * Clear it and wake up the ptracer.  Note that we don't need any further
265  * locking.  @task->siglock guarantees that @task->parent points to the
266  * ptracer.
267  *
268  * CONTEXT:
269  * Must be called with @task->sighand->siglock held.
270  */
271 void task_clear_jobctl_trapping(struct task_struct *task)
272 {
273         if (unlikely(task->jobctl & JOBCTL_TRAPPING)) {
274                 task->jobctl &= ~JOBCTL_TRAPPING;
275                 wake_up_bit(&task->jobctl, JOBCTL_TRAPPING_BIT);
276         }
277 }
278
279 /**
280  * task_clear_jobctl_pending - clear jobctl pending bits
281  * @task: target task
282  * @mask: pending bits to clear
283  *
284  * Clear @mask from @task->jobctl.  @mask must be subset of
285  * %JOBCTL_PENDING_MASK.  If %JOBCTL_STOP_PENDING is being cleared, other
286  * STOP bits are cleared together.
287  *
288  * If clearing of @mask leaves no stop or trap pending, this function calls
289  * task_clear_jobctl_trapping().
290  *
291  * CONTEXT:
292  * Must be called with @task->sighand->siglock held.
293  */
294 void task_clear_jobctl_pending(struct task_struct *task, unsigned int mask)
295 {
296         BUG_ON(mask & ~JOBCTL_PENDING_MASK);
297
298         if (mask & JOBCTL_STOP_PENDING)
299                 mask |= JOBCTL_STOP_CONSUME | JOBCTL_STOP_DEQUEUED;
300
301         task->jobctl &= ~mask;
302
303         if (!(task->jobctl & JOBCTL_PENDING_MASK))
304                 task_clear_jobctl_trapping(task);
305 }
306
307 /**
308  * task_participate_group_stop - participate in a group stop
309  * @task: task participating in a group stop
310  *
311  * @task has %JOBCTL_STOP_PENDING set and is participating in a group stop.
312  * Group stop states are cleared and the group stop count is consumed if
313  * %JOBCTL_STOP_CONSUME was set.  If the consumption completes the group
314  * stop, the appropriate %SIGNAL_* flags are set.
315  *
316  * CONTEXT:
317  * Must be called with @task->sighand->siglock held.
318  *
319  * RETURNS:
320  * %true if group stop completion should be notified to the parent, %false
321  * otherwise.
322  */
323 static bool task_participate_group_stop(struct task_struct *task)
324 {
325         struct signal_struct *sig = task->signal;
326         bool consume = task->jobctl & JOBCTL_STOP_CONSUME;
327
328         WARN_ON_ONCE(!(task->jobctl & JOBCTL_STOP_PENDING));
329
330         task_clear_jobctl_pending(task, JOBCTL_STOP_PENDING);
331
332         if (!consume)
333                 return false;
334
335         if (!WARN_ON_ONCE(sig->group_stop_count == 0))
336                 sig->group_stop_count--;
337
338         /*
339          * Tell the caller to notify completion iff we are entering into a
340          * fresh group stop.  Read comment in do_signal_stop() for details.
341          */
342         if (!sig->group_stop_count && !(sig->flags & SIGNAL_STOP_STOPPED)) {
343                 sig->flags = SIGNAL_STOP_STOPPED;
344                 return true;
345         }
346         return false;
347 }
348
349 /*
350  * allocate a new signal queue record
351  * - this may be called without locks if and only if t == current, otherwise an
352  *   appropriate lock must be held to stop the target task from exiting
353  */
354 static struct sigqueue *
355 __sigqueue_alloc(int sig, struct task_struct *t, gfp_t flags, int override_rlimit)
356 {
357         struct sigqueue *q = NULL;
358         struct user_struct *user;
359
360         /*
361          * Protect access to @t credentials. This can go away when all
362          * callers hold rcu read lock.
363          */
364         rcu_read_lock();
365         user = get_uid(__task_cred(t)->user);
366         atomic_inc(&user->sigpending);
367         rcu_read_unlock();
368
369         if (override_rlimit ||
370             atomic_read(&user->sigpending) <=
371                         task_rlimit(t, RLIMIT_SIGPENDING)) {
372                 q = kmem_cache_alloc(sigqueue_cachep, flags);
373         } else {
374                 print_dropped_signal(sig);
375         }
376
377         if (unlikely(q == NULL)) {
378                 atomic_dec(&user->sigpending);
379                 free_uid(user);
380         } else {
381                 INIT_LIST_HEAD(&q->list);
382                 q->flags = 0;
383                 q->user = user;
384         }
385
386         return q;
387 }
388
389 static void __sigqueue_free(struct sigqueue *q)
390 {
391         if (q->flags & SIGQUEUE_PREALLOC)
392                 return;
393         atomic_dec(&q->user->sigpending);
394         free_uid(q->user);
395         kmem_cache_free(sigqueue_cachep, q);
396 }
397
398 void flush_sigqueue(struct sigpending *queue)
399 {
400         struct sigqueue *q;
401
402         sigemptyset(&queue->signal);
403         while (!list_empty(&queue->list)) {
404                 q = list_entry(queue->list.next, struct sigqueue , list);
405                 list_del_init(&q->list);
406                 __sigqueue_free(q);
407         }
408 }
409
410 /*
411  * Flush all pending signals for a task.
412  */
413 void __flush_signals(struct task_struct *t)
414 {
415         clear_tsk_thread_flag(t, TIF_SIGPENDING);
416         flush_sigqueue(&t->pending);
417         flush_sigqueue(&t->signal->shared_pending);
418 }
419
420 void flush_signals(struct task_struct *t)
421 {
422         unsigned long flags;
423
424         spin_lock_irqsave(&t->sighand->siglock, flags);
425         __flush_signals(t);
426         spin_unlock_irqrestore(&t->sighand->siglock, flags);
427 }
428
429 static void __flush_itimer_signals(struct sigpending *pending)
430 {
431         sigset_t signal, retain;
432         struct sigqueue *q, *n;
433
434         signal = pending->signal;
435         sigemptyset(&retain);
436
437         list_for_each_entry_safe(q, n, &pending->list, list) {
438                 int sig = q->info.si_signo;
439
440                 if (likely(q->info.si_code != SI_TIMER)) {
441                         sigaddset(&retain, sig);
442                 } else {
443                         sigdelset(&signal, sig);
444                         list_del_init(&q->list);
445                         __sigqueue_free(q);
446                 }
447         }
448
449         sigorsets(&pending->signal, &signal, &retain);
450 }
451
452 void flush_itimer_signals(void)
453 {
454         struct task_struct *tsk = current;
455         unsigned long flags;
456
457         spin_lock_irqsave(&tsk->sighand->siglock, flags);
458         __flush_itimer_signals(&tsk->pending);
459         __flush_itimer_signals(&tsk->signal->shared_pending);
460         spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
461 }
462
463 void ignore_signals(struct task_struct *t)
464 {
465         int i;
466
467         for (i = 0; i < _NSIG; ++i)
468                 t->sighand->action[i].sa.sa_handler = SIG_IGN;
469
470         flush_signals(t);
471 }
472
473 /*
474  * Flush all handlers for a task.
475  */
476
477 void
478 flush_signal_handlers(struct task_struct *t, int force_default)
479 {
480         int i;
481         struct k_sigaction *ka = &t->sighand->action[0];
482         for (i = _NSIG ; i != 0 ; i--) {
483                 if (force_default || ka->sa.sa_handler != SIG_IGN)
484                         ka->sa.sa_handler = SIG_DFL;
485                 ka->sa.sa_flags = 0;
486                 sigemptyset(&ka->sa.sa_mask);
487                 ka++;
488         }
489 }
490
491 int unhandled_signal(struct task_struct *tsk, int sig)
492 {
493         void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler;
494         if (is_global_init(tsk))
495                 return 1;
496         if (handler != SIG_IGN && handler != SIG_DFL)
497                 return 0;
498         /* if ptraced, let the tracer determine */
499         return !tsk->ptrace;
500 }
501
502 /*
503  * Notify the system that a driver wants to block all signals for this
504  * process, and wants to be notified if any signals at all were to be
505  * sent/acted upon.  If the notifier routine returns non-zero, then the
506  * signal will be acted upon after all.  If the notifier routine returns 0,
507  * then then signal will be blocked.  Only one block per process is
508  * allowed.  priv is a pointer to private data that the notifier routine
509  * can use to determine if the signal should be blocked or not.
510  */
511 void
512 block_all_signals(int (*notifier)(void *priv), void *priv, sigset_t *mask)
513 {
514         unsigned long flags;
515
516         spin_lock_irqsave(&current->sighand->siglock, flags);
517         current->notifier_mask = mask;
518         current->notifier_data = priv;
519         current->notifier = notifier;
520         spin_unlock_irqrestore(&current->sighand->siglock, flags);
521 }
522
523 /* Notify the system that blocking has ended. */
524
525 void
526 unblock_all_signals(void)
527 {
528         unsigned long flags;
529
530         spin_lock_irqsave(&current->sighand->siglock, flags);
531         current->notifier = NULL;
532         current->notifier_data = NULL;
533         recalc_sigpending();
534         spin_unlock_irqrestore(&current->sighand->siglock, flags);
535 }
536
537 static void collect_signal(int sig, struct sigpending *list, siginfo_t *info)
538 {
539         struct sigqueue *q, *first = NULL;
540
541         /*
542          * Collect the siginfo appropriate to this signal.  Check if
543          * there is another siginfo for the same signal.
544         */
545         list_for_each_entry(q, &list->list, list) {
546                 if (q->info.si_signo == sig) {
547                         if (first)
548                                 goto still_pending;
549                         first = q;
550                 }
551         }
552
553         sigdelset(&list->signal, sig);
554
555         if (first) {
556 still_pending:
557                 list_del_init(&first->list);
558                 copy_siginfo(info, &first->info);
559                 __sigqueue_free(first);
560         } else {
561                 /*
562                  * Ok, it wasn't in the queue.  This must be
563                  * a fast-pathed signal or we must have been
564                  * out of queue space.  So zero out the info.
565                  */
566                 info->si_signo = sig;
567                 info->si_errno = 0;
568                 info->si_code = SI_USER;
569                 info->si_pid = 0;
570                 info->si_uid = 0;
571         }
572 }
573
574 static int __dequeue_signal(struct sigpending *pending, sigset_t *mask,
575                         siginfo_t *info)
576 {
577         int sig = next_signal(pending, mask);
578
579         if (sig) {
580                 if (current->notifier) {
581                         if (sigismember(current->notifier_mask, sig)) {
582                                 if (!(current->notifier)(current->notifier_data)) {
583                                         clear_thread_flag(TIF_SIGPENDING);
584                                         return 0;
585                                 }
586                         }
587                 }
588
589                 collect_signal(sig, pending, info);
590         }
591
592         return sig;
593 }
594
595 /*
596  * Dequeue a signal and return the element to the caller, which is
597  * expected to free it.
598  *
599  * All callers have to hold the siglock.
600  */
601 int dequeue_signal(struct task_struct *tsk, sigset_t *mask, siginfo_t *info)
602 {
603         int signr;
604
605         /* We only dequeue private signals from ourselves, we don't let
606          * signalfd steal them
607          */
608         signr = __dequeue_signal(&tsk->pending, mask, info);
609         if (!signr) {
610                 signr = __dequeue_signal(&tsk->signal->shared_pending,
611                                          mask, info);
612                 /*
613                  * itimer signal ?
614                  *
615                  * itimers are process shared and we restart periodic
616                  * itimers in the signal delivery path to prevent DoS
617                  * attacks in the high resolution timer case. This is
618                  * compliant with the old way of self-restarting
619                  * itimers, as the SIGALRM is a legacy signal and only
620                  * queued once. Changing the restart behaviour to
621                  * restart the timer in the signal dequeue path is
622                  * reducing the timer noise on heavy loaded !highres
623                  * systems too.
624                  */
625                 if (unlikely(signr == SIGALRM)) {
626                         struct hrtimer *tmr = &tsk->signal->real_timer;
627
628                         if (!hrtimer_is_queued(tmr) &&
629                             tsk->signal->it_real_incr.tv64 != 0) {
630                                 hrtimer_forward(tmr, tmr->base->get_time(),
631                                                 tsk->signal->it_real_incr);
632                                 hrtimer_restart(tmr);
633                         }
634                 }
635         }
636
637         recalc_sigpending();
638         if (!signr)
639                 return 0;
640
641         if (unlikely(sig_kernel_stop(signr))) {
642                 /*
643                  * Set a marker that we have dequeued a stop signal.  Our
644                  * caller might release the siglock and then the pending
645                  * stop signal it is about to process is no longer in the
646                  * pending bitmasks, but must still be cleared by a SIGCONT
647                  * (and overruled by a SIGKILL).  So those cases clear this
648                  * shared flag after we've set it.  Note that this flag may
649                  * remain set after the signal we return is ignored or
650                  * handled.  That doesn't matter because its only purpose
651                  * is to alert stop-signal processing code when another
652                  * processor has come along and cleared the flag.
653                  */
654                 current->jobctl |= JOBCTL_STOP_DEQUEUED;
655         }
656         if ((info->si_code & __SI_MASK) == __SI_TIMER && info->si_sys_private) {
657                 /*
658                  * Release the siglock to ensure proper locking order
659                  * of timer locks outside of siglocks.  Note, we leave
660                  * irqs disabled here, since the posix-timers code is
661                  * about to disable them again anyway.
662                  */
663                 spin_unlock(&tsk->sighand->siglock);
664                 do_schedule_next_timer(info);
665                 spin_lock(&tsk->sighand->siglock);
666         }
667         return signr;
668 }
669
670 /*
671  * Tell a process that it has a new active signal..
672  *
673  * NOTE! we rely on the previous spin_lock to
674  * lock interrupts for us! We can only be called with
675  * "siglock" held, and the local interrupt must
676  * have been disabled when that got acquired!
677  *
678  * No need to set need_resched since signal event passing
679  * goes through ->blocked
680  */
681 void signal_wake_up(struct task_struct *t, int resume)
682 {
683         unsigned int mask;
684
685         set_tsk_thread_flag(t, TIF_SIGPENDING);
686
687         /*
688          * For SIGKILL, we want to wake it up in the stopped/traced/killable
689          * case. We don't check t->state here because there is a race with it
690          * executing another processor and just now entering stopped state.
691          * By using wake_up_state, we ensure the process will wake up and
692          * handle its death signal.
693          */
694         mask = TASK_INTERRUPTIBLE;
695         if (resume)
696                 mask |= TASK_WAKEKILL;
697         if (!wake_up_state(t, mask))
698                 kick_process(t);
699 }
700
701 /*
702  * Remove signals in mask from the pending set and queue.
703  * Returns 1 if any signals were found.
704  *
705  * All callers must be holding the siglock.
706  *
707  * This version takes a sigset mask and looks at all signals,
708  * not just those in the first mask word.
709  */
710 static int rm_from_queue_full(sigset_t *mask, struct sigpending *s)
711 {
712         struct sigqueue *q, *n;
713         sigset_t m;
714
715         sigandsets(&m, mask, &s->signal);
716         if (sigisemptyset(&m))
717                 return 0;
718
719         sigandnsets(&s->signal, &s->signal, mask);
720         list_for_each_entry_safe(q, n, &s->list, list) {
721                 if (sigismember(mask, q->info.si_signo)) {
722                         list_del_init(&q->list);
723                         __sigqueue_free(q);
724                 }
725         }
726         return 1;
727 }
728 /*
729  * Remove signals in mask from the pending set and queue.
730  * Returns 1 if any signals were found.
731  *
732  * All callers must be holding the siglock.
733  */
734 static int rm_from_queue(unsigned long mask, struct sigpending *s)
735 {
736         struct sigqueue *q, *n;
737
738         if (!sigtestsetmask(&s->signal, mask))
739                 return 0;
740
741         sigdelsetmask(&s->signal, mask);
742         list_for_each_entry_safe(q, n, &s->list, list) {
743                 if (q->info.si_signo < SIGRTMIN &&
744                     (mask & sigmask(q->info.si_signo))) {
745                         list_del_init(&q->list);
746                         __sigqueue_free(q);
747                 }
748         }
749         return 1;
750 }
751
752 static inline int is_si_special(const struct siginfo *info)
753 {
754         return info <= SEND_SIG_FORCED;
755 }
756
757 static inline bool si_fromuser(const struct siginfo *info)
758 {
759         return info == SEND_SIG_NOINFO ||
760                 (!is_si_special(info) && SI_FROMUSER(info));
761 }
762
763 /*
764  * called with RCU read lock from check_kill_permission()
765  */
766 static int kill_ok_by_cred(struct task_struct *t)
767 {
768         const struct cred *cred = current_cred();
769         const struct cred *tcred = __task_cred(t);
770
771         if (cred->user->user_ns == tcred->user->user_ns &&
772             (cred->euid == tcred->suid ||
773              cred->euid == tcred->uid ||
774              cred->uid  == tcred->suid ||
775              cred->uid  == tcred->uid))
776                 return 1;
777
778         if (ns_capable(tcred->user->user_ns, CAP_KILL))
779                 return 1;
780
781         return 0;
782 }
783
784 /*
785  * Bad permissions for sending the signal
786  * - the caller must hold the RCU read lock
787  */
788 static int check_kill_permission(int sig, struct siginfo *info,
789                                  struct task_struct *t)
790 {
791         struct pid *sid;
792         int error;
793
794         if (!valid_signal(sig))
795                 return -EINVAL;
796
797         if (!si_fromuser(info))
798                 return 0;
799
800         error = audit_signal_info(sig, t); /* Let audit system see the signal */
801         if (error)
802                 return error;
803
804         if (!same_thread_group(current, t) &&
805             !kill_ok_by_cred(t)) {
806                 switch (sig) {
807                 case SIGCONT:
808                         sid = task_session(t);
809                         /*
810                          * We don't return the error if sid == NULL. The
811                          * task was unhashed, the caller must notice this.
812                          */
813                         if (!sid || sid == task_session(current))
814                                 break;
815                 default:
816                         return -EPERM;
817                 }
818         }
819
820         return security_task_kill(t, info, sig, 0);
821 }
822
823 /**
824  * ptrace_trap_notify - schedule trap to notify ptracer
825  * @t: tracee wanting to notify tracer
826  *
827  * This function schedules sticky ptrace trap which is cleared on the next
828  * TRAP_STOP to notify ptracer of an event.  @t must have been seized by
829  * ptracer.
830  *
831  * If @t is running, STOP trap will be taken.  If trapped for STOP and
832  * ptracer is listening for events, tracee is woken up so that it can
833  * re-trap for the new event.  If trapped otherwise, STOP trap will be
834  * eventually taken without returning to userland after the existing traps
835  * are finished by PTRACE_CONT.
836  *
837  * CONTEXT:
838  * Must be called with @task->sighand->siglock held.
839  */
840 static void ptrace_trap_notify(struct task_struct *t)
841 {
842         WARN_ON_ONCE(!(t->ptrace & PT_SEIZED));
843         assert_spin_locked(&t->sighand->siglock);
844
845         task_set_jobctl_pending(t, JOBCTL_TRAP_NOTIFY);
846         signal_wake_up(t, t->jobctl & JOBCTL_LISTENING);
847 }
848
849 /*
850  * Handle magic process-wide effects of stop/continue signals. Unlike
851  * the signal actions, these happen immediately at signal-generation
852  * time regardless of blocking, ignoring, or handling.  This does the
853  * actual continuing for SIGCONT, but not the actual stopping for stop
854  * signals. The process stop is done as a signal action for SIG_DFL.
855  *
856  * Returns true if the signal should be actually delivered, otherwise
857  * it should be dropped.
858  */
859 static int prepare_signal(int sig, struct task_struct *p, bool force)
860 {
861         struct signal_struct *signal = p->signal;
862         struct task_struct *t;
863
864         if (unlikely(signal->flags & SIGNAL_GROUP_EXIT)) {
865                 /*
866                  * The process is in the middle of dying, nothing to do.
867                  */
868         } else if (sig_kernel_stop(sig)) {
869                 /*
870                  * This is a stop signal.  Remove SIGCONT from all queues.
871                  */
872                 rm_from_queue(sigmask(SIGCONT), &signal->shared_pending);
873                 t = p;
874                 do {
875                         rm_from_queue(sigmask(SIGCONT), &t->pending);
876                 } while_each_thread(p, t);
877         } else if (sig == SIGCONT) {
878                 unsigned int why;
879                 /*
880                  * Remove all stop signals from all queues, wake all threads.
881                  */
882                 rm_from_queue(SIG_KERNEL_STOP_MASK, &signal->shared_pending);
883                 t = p;
884                 do {
885                         task_clear_jobctl_pending(t, JOBCTL_STOP_PENDING);
886                         rm_from_queue(SIG_KERNEL_STOP_MASK, &t->pending);
887                         if (likely(!(t->ptrace & PT_SEIZED)))
888                                 wake_up_state(t, __TASK_STOPPED);
889                         else
890                                 ptrace_trap_notify(t);
891                 } while_each_thread(p, t);
892
893                 /*
894                  * Notify the parent with CLD_CONTINUED if we were stopped.
895                  *
896                  * If we were in the middle of a group stop, we pretend it
897                  * was already finished, and then continued. Since SIGCHLD
898                  * doesn't queue we report only CLD_STOPPED, as if the next
899                  * CLD_CONTINUED was dropped.
900                  */
901                 why = 0;
902                 if (signal->flags & SIGNAL_STOP_STOPPED)
903                         why |= SIGNAL_CLD_CONTINUED;
904                 else if (signal->group_stop_count)
905                         why |= SIGNAL_CLD_STOPPED;
906
907                 if (why) {
908                         /*
909                          * The first thread which returns from do_signal_stop()
910                          * will take ->siglock, notice SIGNAL_CLD_MASK, and
911                          * notify its parent. See get_signal_to_deliver().
912                          */
913                         signal->flags = why | SIGNAL_STOP_CONTINUED;
914                         signal->group_stop_count = 0;
915                         signal->group_exit_code = 0;
916                 }
917         }
918
919         return !sig_ignored(p, sig, force);
920 }
921
922 /*
923  * Test if P wants to take SIG.  After we've checked all threads with this,
924  * it's equivalent to finding no threads not blocking SIG.  Any threads not
925  * blocking SIG were ruled out because they are not running and already
926  * have pending signals.  Such threads will dequeue from the shared queue
927  * as soon as they're available, so putting the signal on the shared queue
928  * will be equivalent to sending it to one such thread.
929  */
930 static inline int wants_signal(int sig, struct task_struct *p)
931 {
932         if (sigismember(&p->blocked, sig))
933                 return 0;
934         if (p->flags & PF_EXITING)
935                 return 0;
936         if (sig == SIGKILL)
937                 return 1;
938         if (task_is_stopped_or_traced(p))
939                 return 0;
940         return task_curr(p) || !signal_pending(p);
941 }
942
943 static void complete_signal(int sig, struct task_struct *p, int group)
944 {
945         struct signal_struct *signal = p->signal;
946         struct task_struct *t;
947
948         /*
949          * Now find a thread we can wake up to take the signal off the queue.
950          *
951          * If the main thread wants the signal, it gets first crack.
952          * Probably the least surprising to the average bear.
953          */
954         if (wants_signal(sig, p))
955                 t = p;
956         else if (!group || thread_group_empty(p))
957                 /*
958                  * There is just one thread and it does not need to be woken.
959                  * It will dequeue unblocked signals before it runs again.
960                  */
961                 return;
962         else {
963                 /*
964                  * Otherwise try to find a suitable thread.
965                  */
966                 t = signal->curr_target;
967                 while (!wants_signal(sig, t)) {
968                         t = next_thread(t);
969                         if (t == signal->curr_target)
970                                 /*
971                                  * No thread needs to be woken.
972                                  * Any eligible threads will see
973                                  * the signal in the queue soon.
974                                  */
975                                 return;
976                 }
977                 signal->curr_target = t;
978         }
979
980         /*
981          * Found a killable thread.  If the signal will be fatal,
982          * then start taking the whole group down immediately.
983          */
984         if (sig_fatal(p, sig) &&
985             !(signal->flags & (SIGNAL_UNKILLABLE | SIGNAL_GROUP_EXIT)) &&
986             !sigismember(&t->real_blocked, sig) &&
987             (sig == SIGKILL || !t->ptrace)) {
988                 /*
989                  * This signal will be fatal to the whole group.
990                  */
991                 if (!sig_kernel_coredump(sig)) {
992                         /*
993                          * Start a group exit and wake everybody up.
994                          * This way we don't have other threads
995                          * running and doing things after a slower
996                          * thread has the fatal signal pending.
997                          */
998                         signal->flags = SIGNAL_GROUP_EXIT;
999                         signal->group_exit_code = sig;
1000                         signal->group_stop_count = 0;
1001                         t = p;
1002                         do {
1003                                 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
1004                                 sigaddset(&t->pending.signal, SIGKILL);
1005                                 signal_wake_up(t, 1);
1006                         } while_each_thread(p, t);
1007                         return;
1008                 }
1009         }
1010
1011         /*
1012          * The signal is already in the shared-pending queue.
1013          * Tell the chosen thread to wake up and dequeue it.
1014          */
1015         signal_wake_up(t, sig == SIGKILL);
1016         return;
1017 }
1018
1019 static inline int legacy_queue(struct sigpending *signals, int sig)
1020 {
1021         return (sig < SIGRTMIN) && sigismember(&signals->signal, sig);
1022 }
1023
1024 /*
1025  * map the uid in struct cred into user namespace *ns
1026  */
1027 static inline uid_t map_cred_ns(const struct cred *cred,
1028                                 struct user_namespace *ns)
1029 {
1030         return user_ns_map_uid(ns, cred, cred->uid);
1031 }
1032
1033 #ifdef CONFIG_USER_NS
1034 static inline void userns_fixup_signal_uid(struct siginfo *info, struct task_struct *t)
1035 {
1036         if (current_user_ns() == task_cred_xxx(t, user_ns))
1037                 return;
1038
1039         if (SI_FROMKERNEL(info))
1040                 return;
1041
1042         info->si_uid = user_ns_map_uid(task_cred_xxx(t, user_ns),
1043                                         current_cred(), info->si_uid);
1044 }
1045 #else
1046 static inline void userns_fixup_signal_uid(struct siginfo *info, struct task_struct *t)
1047 {
1048         return;
1049 }
1050 #endif
1051
1052 static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
1053                         int group, int from_ancestor_ns)
1054 {
1055         struct sigpending *pending;
1056         struct sigqueue *q;
1057         int override_rlimit;
1058         int ret = 0, result;
1059
1060         assert_spin_locked(&t->sighand->siglock);
1061
1062         result = TRACE_SIGNAL_IGNORED;
1063         if (!prepare_signal(sig, t,
1064                         from_ancestor_ns || (info == SEND_SIG_FORCED)))
1065                 goto ret;
1066
1067         pending = group ? &t->signal->shared_pending : &t->pending;
1068         /*
1069          * Short-circuit ignored signals and support queuing
1070          * exactly one non-rt signal, so that we can get more
1071          * detailed information about the cause of the signal.
1072          */
1073         result = TRACE_SIGNAL_ALREADY_PENDING;
1074         if (legacy_queue(pending, sig))
1075                 goto ret;
1076
1077         result = TRACE_SIGNAL_DELIVERED;
1078         /*
1079          * fast-pathed signals for kernel-internal things like SIGSTOP
1080          * or SIGKILL.
1081          */
1082         if (info == SEND_SIG_FORCED)
1083                 goto out_set;
1084
1085         /*
1086          * Real-time signals must be queued if sent by sigqueue, or
1087          * some other real-time mechanism.  It is implementation
1088          * defined whether kill() does so.  We attempt to do so, on
1089          * the principle of least surprise, but since kill is not
1090          * allowed to fail with EAGAIN when low on memory we just
1091          * make sure at least one signal gets delivered and don't
1092          * pass on the info struct.
1093          */
1094         if (sig < SIGRTMIN)
1095                 override_rlimit = (is_si_special(info) || info->si_code >= 0);
1096         else
1097                 override_rlimit = 0;
1098
1099         q = __sigqueue_alloc(sig, t, GFP_ATOMIC | __GFP_NOTRACK_FALSE_POSITIVE,
1100                 override_rlimit);
1101         if (q) {
1102                 list_add_tail(&q->list, &pending->list);
1103                 switch ((unsigned long) info) {
1104                 case (unsigned long) SEND_SIG_NOINFO:
1105                         q->info.si_signo = sig;
1106                         q->info.si_errno = 0;
1107                         q->info.si_code = SI_USER;
1108                         q->info.si_pid = task_tgid_nr_ns(current,
1109                                                         task_active_pid_ns(t));
1110                         q->info.si_uid = current_uid();
1111                         break;
1112                 case (unsigned long) SEND_SIG_PRIV:
1113                         q->info.si_signo = sig;
1114                         q->info.si_errno = 0;
1115                         q->info.si_code = SI_KERNEL;
1116                         q->info.si_pid = 0;
1117                         q->info.si_uid = 0;
1118                         break;
1119                 default:
1120                         copy_siginfo(&q->info, info);
1121                         if (from_ancestor_ns)
1122                                 q->info.si_pid = 0;
1123                         break;
1124                 }
1125
1126                 userns_fixup_signal_uid(&q->info, t);
1127
1128         } else if (!is_si_special(info)) {
1129                 if (sig >= SIGRTMIN && info->si_code != SI_USER) {
1130                         /*
1131                          * Queue overflow, abort.  We may abort if the
1132                          * signal was rt and sent by user using something
1133                          * other than kill().
1134                          */
1135                         result = TRACE_SIGNAL_OVERFLOW_FAIL;
1136                         ret = -EAGAIN;
1137                         goto ret;
1138                 } else {
1139                         /*
1140                          * This is a silent loss of information.  We still
1141                          * send the signal, but the *info bits are lost.
1142                          */
1143                         result = TRACE_SIGNAL_LOSE_INFO;
1144                 }
1145         }
1146
1147 out_set:
1148         signalfd_notify(t, sig);
1149         sigaddset(&pending->signal, sig);
1150         complete_signal(sig, t, group);
1151 ret:
1152         trace_signal_generate(sig, info, t, group, result);
1153         return ret;
1154 }
1155
1156 static int send_signal(int sig, struct siginfo *info, struct task_struct *t,
1157                         int group)
1158 {
1159         int from_ancestor_ns = 0;
1160
1161 #ifdef CONFIG_PID_NS
1162         from_ancestor_ns = si_fromuser(info) &&
1163                            !task_pid_nr_ns(current, task_active_pid_ns(t));
1164 #endif
1165
1166         return __send_signal(sig, info, t, group, from_ancestor_ns);
1167 }
1168
1169 static void print_fatal_signal(struct pt_regs *regs, int signr)
1170 {
1171         printk("%s/%d: potentially unexpected fatal signal %d.\n",
1172                 current->comm, task_pid_nr(current), signr);
1173
1174 #if defined(__i386__) && !defined(__arch_um__)
1175         printk("code at %08lx: ", regs->ip);
1176         {
1177                 int i;
1178                 for (i = 0; i < 16; i++) {
1179                         unsigned char insn;
1180
1181                         if (get_user(insn, (unsigned char *)(regs->ip + i)))
1182                                 break;
1183                         printk("%02x ", insn);
1184                 }
1185         }
1186 #endif
1187         printk("\n");
1188         preempt_disable();
1189         show_regs(regs);
1190         preempt_enable();
1191 }
1192
1193 static int __init setup_print_fatal_signals(char *str)
1194 {
1195         get_option (&str, &print_fatal_signals);
1196
1197         return 1;
1198 }
1199
1200 __setup("print-fatal-signals=", setup_print_fatal_signals);
1201
1202 int
1203 __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1204 {
1205         return send_signal(sig, info, p, 1);
1206 }
1207
1208 static int
1209 specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1210 {
1211         return send_signal(sig, info, t, 0);
1212 }
1213
1214 int do_send_sig_info(int sig, struct siginfo *info, struct task_struct *p,
1215                         bool group)
1216 {
1217         unsigned long flags;
1218         int ret = -ESRCH;
1219
1220         if (lock_task_sighand(p, &flags)) {
1221                 ret = send_signal(sig, info, p, group);
1222                 unlock_task_sighand(p, &flags);
1223         }
1224
1225         return ret;
1226 }
1227
1228 /*
1229  * Force a signal that the process can't ignore: if necessary
1230  * we unblock the signal and change any SIG_IGN to SIG_DFL.
1231  *
1232  * Note: If we unblock the signal, we always reset it to SIG_DFL,
1233  * since we do not want to have a signal handler that was blocked
1234  * be invoked when user space had explicitly blocked it.
1235  *
1236  * We don't want to have recursive SIGSEGV's etc, for example,
1237  * that is why we also clear SIGNAL_UNKILLABLE.
1238  */
1239 int
1240 force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
1241 {
1242         unsigned long int flags;
1243         int ret, blocked, ignored;
1244         struct k_sigaction *action;
1245
1246         spin_lock_irqsave(&t->sighand->siglock, flags);
1247         action = &t->sighand->action[sig-1];
1248         ignored = action->sa.sa_handler == SIG_IGN;
1249         blocked = sigismember(&t->blocked, sig);
1250         if (blocked || ignored) {
1251                 action->sa.sa_handler = SIG_DFL;
1252                 if (blocked) {
1253                         sigdelset(&t->blocked, sig);
1254                         recalc_sigpending_and_wake(t);
1255                 }
1256         }
1257         if (action->sa.sa_handler == SIG_DFL)
1258                 t->signal->flags &= ~SIGNAL_UNKILLABLE;
1259         ret = specific_send_sig_info(sig, info, t);
1260         spin_unlock_irqrestore(&t->sighand->siglock, flags);
1261
1262         return ret;
1263 }
1264
1265 /*
1266  * Nuke all other threads in the group.
1267  */
1268 int zap_other_threads(struct task_struct *p)
1269 {
1270         struct task_struct *t = p;
1271         int count = 0;
1272
1273         p->signal->group_stop_count = 0;
1274
1275         while_each_thread(p, t) {
1276                 task_clear_jobctl_pending(t, JOBCTL_PENDING_MASK);
1277                 count++;
1278
1279                 /* Don't bother with already dead threads */
1280                 if (t->exit_state)
1281                         continue;
1282                 sigaddset(&t->pending.signal, SIGKILL);
1283                 signal_wake_up(t, 1);
1284         }
1285
1286         return count;
1287 }
1288
1289 struct sighand_struct *__lock_task_sighand(struct task_struct *tsk,
1290                                            unsigned long *flags)
1291 {
1292         struct sighand_struct *sighand;
1293
1294         for (;;) {
1295                 local_irq_save(*flags);
1296                 rcu_read_lock();
1297                 sighand = rcu_dereference(tsk->sighand);
1298                 if (unlikely(sighand == NULL)) {
1299                         rcu_read_unlock();
1300                         local_irq_restore(*flags);
1301                         break;
1302                 }
1303
1304                 spin_lock(&sighand->siglock);
1305                 if (likely(sighand == tsk->sighand)) {
1306                         rcu_read_unlock();
1307                         break;
1308                 }
1309                 spin_unlock(&sighand->siglock);
1310                 rcu_read_unlock();
1311                 local_irq_restore(*flags);
1312         }
1313
1314         return sighand;
1315 }
1316
1317 /*
1318  * send signal info to all the members of a group
1319  */
1320 int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1321 {
1322         int ret;
1323
1324         rcu_read_lock();
1325         ret = check_kill_permission(sig, info, p);
1326         rcu_read_unlock();
1327
1328         if (!ret && sig)
1329                 ret = do_send_sig_info(sig, info, p, true);
1330
1331         return ret;
1332 }
1333
1334 /*
1335  * __kill_pgrp_info() sends a signal to a process group: this is what the tty
1336  * control characters do (^C, ^Z etc)
1337  * - the caller must hold at least a readlock on tasklist_lock
1338  */
1339 int __kill_pgrp_info(int sig, struct siginfo *info, struct pid *pgrp)
1340 {
1341         struct task_struct *p = NULL;
1342         int retval, success;
1343
1344         success = 0;
1345         retval = -ESRCH;
1346         do_each_pid_task(pgrp, PIDTYPE_PGID, p) {
1347                 int err = group_send_sig_info(sig, info, p);
1348                 success |= !err;
1349                 retval = err;
1350         } while_each_pid_task(pgrp, PIDTYPE_PGID, p);
1351         return success ? 0 : retval;
1352 }
1353
1354 int kill_pid_info(int sig, struct siginfo *info, struct pid *pid)
1355 {
1356         int error = -ESRCH;
1357         struct task_struct *p;
1358
1359         rcu_read_lock();
1360 retry:
1361         p = pid_task(pid, PIDTYPE_PID);
1362         if (p) {
1363                 error = group_send_sig_info(sig, info, p);
1364                 if (unlikely(error == -ESRCH))
1365                         /*
1366                          * The task was unhashed in between, try again.
1367                          * If it is dead, pid_task() will return NULL,
1368                          * if we race with de_thread() it will find the
1369                          * new leader.
1370                          */
1371                         goto retry;
1372         }
1373         rcu_read_unlock();
1374
1375         return error;
1376 }
1377
1378 int kill_proc_info(int sig, struct siginfo *info, pid_t pid)
1379 {
1380         int error;
1381         rcu_read_lock();
1382         error = kill_pid_info(sig, info, find_vpid(pid));
1383         rcu_read_unlock();
1384         return error;
1385 }
1386
1387 static int kill_as_cred_perm(const struct cred *cred,
1388                              struct task_struct *target)
1389 {
1390         const struct cred *pcred = __task_cred(target);
1391         if (cred->user_ns != pcred->user_ns)
1392                 return 0;
1393         if (cred->euid != pcred->suid && cred->euid != pcred->uid &&
1394             cred->uid  != pcred->suid && cred->uid  != pcred->uid)
1395                 return 0;
1396         return 1;
1397 }
1398
1399 /* like kill_pid_info(), but doesn't use uid/euid of "current" */
1400 int kill_pid_info_as_cred(int sig, struct siginfo *info, struct pid *pid,
1401                          const struct cred *cred, u32 secid)
1402 {
1403         int ret = -EINVAL;
1404         struct task_struct *p;
1405         unsigned long flags;
1406
1407         if (!valid_signal(sig))
1408                 return ret;
1409
1410         rcu_read_lock();
1411         p = pid_task(pid, PIDTYPE_PID);
1412         if (!p) {
1413                 ret = -ESRCH;
1414                 goto out_unlock;
1415         }
1416         if (si_fromuser(info) && !kill_as_cred_perm(cred, p)) {
1417                 ret = -EPERM;
1418                 goto out_unlock;
1419         }
1420         ret = security_task_kill(p, info, sig, secid);
1421         if (ret)
1422                 goto out_unlock;
1423
1424         if (sig) {
1425                 if (lock_task_sighand(p, &flags)) {
1426                         ret = __send_signal(sig, info, p, 1, 0);
1427                         unlock_task_sighand(p, &flags);
1428                 } else
1429                         ret = -ESRCH;
1430         }
1431 out_unlock:
1432         rcu_read_unlock();
1433         return ret;
1434 }
1435 EXPORT_SYMBOL_GPL(kill_pid_info_as_cred);
1436
1437 /*
1438  * kill_something_info() interprets pid in interesting ways just like kill(2).
1439  *
1440  * POSIX specifies that kill(-1,sig) is unspecified, but what we have
1441  * is probably wrong.  Should make it like BSD or SYSV.
1442  */
1443
1444 static int kill_something_info(int sig, struct siginfo *info, pid_t pid)
1445 {
1446         int ret;
1447
1448         if (pid > 0) {
1449                 rcu_read_lock();
1450                 ret = kill_pid_info(sig, info, find_vpid(pid));
1451                 rcu_read_unlock();
1452                 return ret;
1453         }
1454
1455         read_lock(&tasklist_lock);
1456         if (pid != -1) {
1457                 ret = __kill_pgrp_info(sig, info,
1458                                 pid ? find_vpid(-pid) : task_pgrp(current));
1459         } else {
1460                 int retval = 0, count = 0;
1461                 struct task_struct * p;
1462
1463                 for_each_process(p) {
1464                         if (task_pid_vnr(p) > 1 &&
1465                                         !same_thread_group(p, current)) {
1466                                 int err = group_send_sig_info(sig, info, p);
1467                                 ++count;
1468                                 if (err != -EPERM)
1469                                         retval = err;
1470                         }
1471                 }
1472                 ret = count ? retval : -ESRCH;
1473         }
1474         read_unlock(&tasklist_lock);
1475
1476         return ret;
1477 }
1478
1479 /*
1480  * These are for backward compatibility with the rest of the kernel source.
1481  */
1482
1483 int send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
1484 {
1485         /*
1486          * Make sure legacy kernel users don't send in bad values
1487          * (normal paths check this in check_kill_permission).
1488          */
1489         if (!valid_signal(sig))
1490                 return -EINVAL;
1491
1492         return do_send_sig_info(sig, info, p, false);
1493 }
1494
1495 #define __si_special(priv) \
1496         ((priv) ? SEND_SIG_PRIV : SEND_SIG_NOINFO)
1497
1498 int
1499 send_sig(int sig, struct task_struct *p, int priv)
1500 {
1501         return send_sig_info(sig, __si_special(priv), p);
1502 }
1503
1504 void
1505 force_sig(int sig, struct task_struct *p)
1506 {
1507         force_sig_info(sig, SEND_SIG_PRIV, p);
1508 }
1509
1510 /*
1511  * When things go south during signal handling, we
1512  * will force a SIGSEGV. And if the signal that caused
1513  * the problem was already a SIGSEGV, we'll want to
1514  * make sure we don't even try to deliver the signal..
1515  */
1516 int
1517 force_sigsegv(int sig, struct task_struct *p)
1518 {
1519         if (sig == SIGSEGV) {
1520                 unsigned long flags;
1521                 spin_lock_irqsave(&p->sighand->siglock, flags);
1522                 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL;
1523                 spin_unlock_irqrestore(&p->sighand->siglock, flags);
1524         }
1525         force_sig(SIGSEGV, p);
1526         return 0;
1527 }
1528
1529 int kill_pgrp(struct pid *pid, int sig, int priv)
1530 {
1531         int ret;
1532
1533         read_lock(&tasklist_lock);
1534         ret = __kill_pgrp_info(sig, __si_special(priv), pid);
1535         read_unlock(&tasklist_lock);
1536
1537         return ret;
1538 }
1539 EXPORT_SYMBOL(kill_pgrp);
1540
1541 int kill_pid(struct pid *pid, int sig, int priv)
1542 {
1543         return kill_pid_info(sig, __si_special(priv), pid);
1544 }
1545 EXPORT_SYMBOL(kill_pid);
1546
1547 /*
1548  * These functions support sending signals using preallocated sigqueue
1549  * structures.  This is needed "because realtime applications cannot
1550  * afford to lose notifications of asynchronous events, like timer
1551  * expirations or I/O completions".  In the case of POSIX Timers
1552  * we allocate the sigqueue structure from the timer_create.  If this
1553  * allocation fails we are able to report the failure to the application
1554  * with an EAGAIN error.
1555  */
1556 struct sigqueue *sigqueue_alloc(void)
1557 {
1558         struct sigqueue *q = __sigqueue_alloc(-1, current, GFP_KERNEL, 0);
1559
1560         if (q)
1561                 q->flags |= SIGQUEUE_PREALLOC;
1562
1563         return q;
1564 }
1565
1566 void sigqueue_free(struct sigqueue *q)
1567 {
1568         unsigned long flags;
1569         spinlock_t *lock = &current->sighand->siglock;
1570
1571         BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1572         /*
1573          * We must hold ->siglock while testing q->list
1574          * to serialize with collect_signal() or with
1575          * __exit_signal()->flush_sigqueue().
1576          */
1577         spin_lock_irqsave(lock, flags);
1578         q->flags &= ~SIGQUEUE_PREALLOC;
1579         /*
1580          * If it is queued it will be freed when dequeued,
1581          * like the "regular" sigqueue.
1582          */
1583         if (!list_empty(&q->list))
1584                 q = NULL;
1585         spin_unlock_irqrestore(lock, flags);
1586
1587         if (q)
1588                 __sigqueue_free(q);
1589 }
1590
1591 int send_sigqueue(struct sigqueue *q, struct task_struct *t, int group)
1592 {
1593         int sig = q->info.si_signo;
1594         struct sigpending *pending;
1595         unsigned long flags;
1596         int ret, result;
1597
1598         BUG_ON(!(q->flags & SIGQUEUE_PREALLOC));
1599
1600         ret = -1;
1601         if (!likely(lock_task_sighand(t, &flags)))
1602                 goto ret;
1603
1604         ret = 1; /* the signal is ignored */
1605         result = TRACE_SIGNAL_IGNORED;
1606         if (!prepare_signal(sig, t, false))
1607                 goto out;
1608
1609         ret = 0;
1610         if (unlikely(!list_empty(&q->list))) {
1611                 /*
1612                  * If an SI_TIMER entry is already queue just increment
1613                  * the overrun count.
1614                  */
1615                 BUG_ON(q->info.si_code != SI_TIMER);
1616                 q->info.si_overrun++;
1617                 result = TRACE_SIGNAL_ALREADY_PENDING;
1618                 goto out;
1619         }
1620         q->info.si_overrun = 0;
1621
1622         signalfd_notify(t, sig);
1623         pending = group ? &t->signal->shared_pending : &t->pending;
1624         list_add_tail(&q->list, &pending->list);
1625         sigaddset(&pending->signal, sig);
1626         complete_signal(sig, t, group);
1627         result = TRACE_SIGNAL_DELIVERED;
1628 out:
1629         trace_signal_generate(sig, &q->info, t, group, result);
1630         unlock_task_sighand(t, &flags);
1631 ret:
1632         return ret;
1633 }
1634
1635 /*
1636  * Let a parent know about the death of a child.
1637  * For a stopped/continued status change, use do_notify_parent_cldstop instead.
1638  *
1639  * Returns true if our parent ignored us and so we've switched to
1640  * self-reaping.
1641  */
1642 bool do_notify_parent(struct task_struct *tsk, int sig)
1643 {
1644         struct siginfo info;
1645         unsigned long flags;
1646         struct sighand_struct *psig;
1647         bool autoreap = false;
1648
1649         BUG_ON(sig == -1);
1650
1651         /* do_notify_parent_cldstop should have been called instead.  */
1652         BUG_ON(task_is_stopped_or_traced(tsk));
1653
1654         BUG_ON(!tsk->ptrace &&
1655                (tsk->group_leader != tsk || !thread_group_empty(tsk)));
1656
1657         if (sig != SIGCHLD) {
1658                 /*
1659                  * This is only possible if parent == real_parent.
1660                  * Check if it has changed security domain.
1661                  */
1662                 if (tsk->parent_exec_id != tsk->parent->self_exec_id)
1663                         sig = SIGCHLD;
1664         }
1665
1666         info.si_signo = sig;
1667         info.si_errno = 0;
1668         /*
1669          * we are under tasklist_lock here so our parent is tied to
1670          * us and cannot exit and release its namespace.
1671          *
1672          * the only it can is to switch its nsproxy with sys_unshare,
1673          * bu uncharing pid namespaces is not allowed, so we'll always
1674          * see relevant namespace
1675          *
1676          * write_lock() currently calls preempt_disable() which is the
1677          * same as rcu_read_lock(), but according to Oleg, this is not
1678          * correct to rely on this
1679          */
1680         rcu_read_lock();
1681         info.si_pid = task_pid_nr_ns(tsk, tsk->parent->nsproxy->pid_ns);
1682         info.si_uid = map_cred_ns(__task_cred(tsk),
1683                         task_cred_xxx(tsk->parent, user_ns));
1684         rcu_read_unlock();
1685
1686         info.si_utime = cputime_to_clock_t(tsk->utime + tsk->signal->utime);
1687         info.si_stime = cputime_to_clock_t(tsk->stime + tsk->signal->stime);
1688
1689         info.si_status = tsk->exit_code & 0x7f;
1690         if (tsk->exit_code & 0x80)
1691                 info.si_code = CLD_DUMPED;
1692         else if (tsk->exit_code & 0x7f)
1693                 info.si_code = CLD_KILLED;
1694         else {
1695                 info.si_code = CLD_EXITED;
1696                 info.si_status = tsk->exit_code >> 8;
1697         }
1698
1699         psig = tsk->parent->sighand;
1700         spin_lock_irqsave(&psig->siglock, flags);
1701         if (!tsk->ptrace && sig == SIGCHLD &&
1702             (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN ||
1703              (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) {
1704                 /*
1705                  * We are exiting and our parent doesn't care.  POSIX.1
1706                  * defines special semantics for setting SIGCHLD to SIG_IGN
1707                  * or setting the SA_NOCLDWAIT flag: we should be reaped
1708                  * automatically and not left for our parent's wait4 call.
1709                  * Rather than having the parent do it as a magic kind of
1710                  * signal handler, we just set this to tell do_exit that we
1711                  * can be cleaned up without becoming a zombie.  Note that
1712                  * we still call __wake_up_parent in this case, because a
1713                  * blocked sys_wait4 might now return -ECHILD.
1714                  *
1715                  * Whether we send SIGCHLD or not for SA_NOCLDWAIT
1716                  * is implementation-defined: we do (if you don't want
1717                  * it, just use SIG_IGN instead).
1718                  */
1719                 autoreap = true;
1720                 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN)
1721                         sig = 0;
1722         }
1723         if (valid_signal(sig) && sig)
1724                 __group_send_sig_info(sig, &info, tsk->parent);
1725         __wake_up_parent(tsk, tsk->parent);
1726         spin_unlock_irqrestore(&psig->siglock, flags);
1727
1728         return autoreap;
1729 }
1730
1731 /**
1732  * do_notify_parent_cldstop - notify parent of stopped/continued state change
1733  * @tsk: task reporting the state change
1734  * @for_ptracer: the notification is for ptracer
1735  * @why: CLD_{CONTINUED|STOPPED|TRAPPED} to report
1736  *
1737  * Notify @tsk's parent that the stopped/continued state has changed.  If
1738  * @for_ptracer is %false, @tsk's group leader notifies to its real parent.
1739  * If %true, @tsk reports to @tsk->parent which should be the ptracer.
1740  *
1741  * CONTEXT:
1742  * Must be called with tasklist_lock at least read locked.
1743  */
1744 static void do_notify_parent_cldstop(struct task_struct *tsk,
1745                                      bool for_ptracer, int why)
1746 {
1747         struct siginfo info;
1748         unsigned long flags;
1749         struct task_struct *parent;
1750         struct sighand_struct *sighand;
1751
1752         if (for_ptracer) {
1753                 parent = tsk->parent;
1754         } else {
1755                 tsk = tsk->group_leader;
1756                 parent = tsk->real_parent;
1757         }
1758
1759         info.si_signo = SIGCHLD;
1760         info.si_errno = 0;
1761         /*
1762          * see comment in do_notify_parent() about the following 4 lines
1763          */
1764         rcu_read_lock();
1765         info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
1766         info.si_uid = map_cred_ns(__task_cred(tsk),
1767                         task_cred_xxx(parent, user_ns));
1768         rcu_read_unlock();
1769
1770         info.si_utime = cputime_to_clock_t(tsk->utime);
1771         info.si_stime = cputime_to_clock_t(tsk->stime);
1772
1773         info.si_code = why;
1774         switch (why) {
1775         case CLD_CONTINUED:
1776                 info.si_status = SIGCONT;
1777                 break;
1778         case CLD_STOPPED:
1779                 info.si_status = tsk->signal->group_exit_code & 0x7f;
1780                 break;
1781         case CLD_TRAPPED:
1782                 info.si_status = tsk->exit_code & 0x7f;
1783                 break;
1784         default:
1785                 BUG();
1786         }
1787
1788         sighand = parent->sighand;
1789         spin_lock_irqsave(&sighand->siglock, flags);
1790         if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
1791             !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP))
1792                 __group_send_sig_info(SIGCHLD, &info, parent);
1793         /*
1794          * Even if SIGCHLD is not generated, we must wake up wait4 calls.
1795          */
1796         __wake_up_parent(tsk, parent);
1797         spin_unlock_irqrestore(&sighand->siglock, flags);
1798 }
1799
1800 static inline int may_ptrace_stop(void)
1801 {
1802         if (!likely(current->ptrace))
1803                 return 0;
1804         /*
1805          * Are we in the middle of do_coredump?
1806          * If so and our tracer is also part of the coredump stopping
1807          * is a deadlock situation, and pointless because our tracer
1808          * is dead so don't allow us to stop.
1809          * If SIGKILL was already sent before the caller unlocked
1810          * ->siglock we must see ->core_state != NULL. Otherwise it
1811          * is safe to enter schedule().
1812          */
1813         if (unlikely(current->mm->core_state) &&
1814             unlikely(current->mm == current->parent->mm))
1815                 return 0;
1816
1817         return 1;
1818 }
1819
1820 /*
1821  * Return non-zero if there is a SIGKILL that should be waking us up.
1822  * Called with the siglock held.
1823  */
1824 static int sigkill_pending(struct task_struct *tsk)
1825 {
1826         return  sigismember(&tsk->pending.signal, SIGKILL) ||
1827                 sigismember(&tsk->signal->shared_pending.signal, SIGKILL);
1828 }
1829
1830 /*
1831  * This must be called with current->sighand->siglock held.
1832  *
1833  * This should be the path for all ptrace stops.
1834  * We always set current->last_siginfo while stopped here.
1835  * That makes it a way to test a stopped process for
1836  * being ptrace-stopped vs being job-control-stopped.
1837  *
1838  * If we actually decide not to stop at all because the tracer
1839  * is gone, we keep current->exit_code unless clear_code.
1840  */
1841 static void ptrace_stop(int exit_code, int why, int clear_code, siginfo_t *info)
1842         __releases(&current->sighand->siglock)
1843         __acquires(&current->sighand->siglock)
1844 {
1845         bool gstop_done = false;
1846
1847         if (arch_ptrace_stop_needed(exit_code, info)) {
1848                 /*
1849                  * The arch code has something special to do before a
1850                  * ptrace stop.  This is allowed to block, e.g. for faults
1851                  * on user stack pages.  We can't keep the siglock while
1852                  * calling arch_ptrace_stop, so we must release it now.
1853                  * To preserve proper semantics, we must do this before
1854                  * any signal bookkeeping like checking group_stop_count.
1855                  * Meanwhile, a SIGKILL could come in before we retake the
1856                  * siglock.  That must prevent us from sleeping in TASK_TRACED.
1857                  * So after regaining the lock, we must check for SIGKILL.
1858                  */
1859                 spin_unlock_irq(&current->sighand->siglock);
1860                 arch_ptrace_stop(exit_code, info);
1861                 spin_lock_irq(&current->sighand->siglock);
1862                 if (sigkill_pending(current))
1863                         return;
1864         }
1865
1866         /*
1867          * We're committing to trapping.  TRACED should be visible before
1868          * TRAPPING is cleared; otherwise, the tracer might fail do_wait().
1869          * Also, transition to TRACED and updates to ->jobctl should be
1870          * atomic with respect to siglock and should be done after the arch
1871          * hook as siglock is released and regrabbed across it.
1872          */
1873         set_current_state(TASK_TRACED);
1874
1875         current->last_siginfo = info;
1876         current->exit_code = exit_code;
1877
1878         /*
1879          * If @why is CLD_STOPPED, we're trapping to participate in a group
1880          * stop.  Do the bookkeeping.  Note that if SIGCONT was delievered
1881          * across siglock relocks since INTERRUPT was scheduled, PENDING
1882          * could be clear now.  We act as if SIGCONT is received after
1883          * TASK_TRACED is entered - ignore it.
1884          */
1885         if (why == CLD_STOPPED && (current->jobctl & JOBCTL_STOP_PENDING))
1886                 gstop_done = task_participate_group_stop(current);
1887
1888         /* any trap clears pending STOP trap, STOP trap clears NOTIFY */
1889         task_clear_jobctl_pending(current, JOBCTL_TRAP_STOP);
1890         if (info && info->si_code >> 8 == PTRACE_EVENT_STOP)
1891                 task_clear_jobctl_pending(current, JOBCTL_TRAP_NOTIFY);
1892
1893         /* entering a trap, clear TRAPPING */
1894         task_clear_jobctl_trapping(current);
1895
1896         spin_unlock_irq(&current->sighand->siglock);
1897         read_lock(&tasklist_lock);
1898         if (may_ptrace_stop()) {
1899                 /*
1900                  * Notify parents of the stop.
1901                  *
1902                  * While ptraced, there are two parents - the ptracer and
1903                  * the real_parent of the group_leader.  The ptracer should
1904                  * know about every stop while the real parent is only
1905                  * interested in the completion of group stop.  The states
1906                  * for the two don't interact with each other.  Notify
1907                  * separately unless they're gonna be duplicates.
1908                  */
1909                 do_notify_parent_cldstop(current, true, why);
1910                 if (gstop_done && ptrace_reparented(current))
1911                         do_notify_parent_cldstop(current, false, why);
1912
1913                 /*
1914                  * Don't want to allow preemption here, because
1915                  * sys_ptrace() needs this task to be inactive.
1916                  *
1917                  * XXX: implement read_unlock_no_resched().
1918                  */
1919                 preempt_disable();
1920                 read_unlock(&tasklist_lock);
1921                 preempt_enable_no_resched();
1922                 schedule();
1923         } else {
1924                 /*
1925                  * By the time we got the lock, our tracer went away.
1926                  * Don't drop the lock yet, another tracer may come.
1927                  *
1928                  * If @gstop_done, the ptracer went away between group stop
1929                  * completion and here.  During detach, it would have set
1930                  * JOBCTL_STOP_PENDING on us and we'll re-enter
1931                  * TASK_STOPPED in do_signal_stop() on return, so notifying
1932                  * the real parent of the group stop completion is enough.
1933                  */
1934                 if (gstop_done)
1935                         do_notify_parent_cldstop(current, false, why);
1936
1937                 __set_current_state(TASK_RUNNING);
1938                 if (clear_code)
1939                         current->exit_code = 0;
1940                 read_unlock(&tasklist_lock);
1941         }
1942
1943         /*
1944          * While in TASK_TRACED, we were considered "frozen enough".
1945          * Now that we woke up, it's crucial if we're supposed to be
1946          * frozen that we freeze now before running anything substantial.
1947          */
1948         try_to_freeze();
1949
1950         /*
1951          * We are back.  Now reacquire the siglock before touching
1952          * last_siginfo, so that we are sure to have synchronized with
1953          * any signal-sending on another CPU that wants to examine it.
1954          */
1955         spin_lock_irq(&current->sighand->siglock);
1956         current->last_siginfo = NULL;
1957
1958         /* LISTENING can be set only during STOP traps, clear it */
1959         current->jobctl &= ~JOBCTL_LISTENING;
1960
1961         /*
1962          * Queued signals ignored us while we were stopped for tracing.
1963          * So check for any that we should take before resuming user mode.
1964          * This sets TIF_SIGPENDING, but never clears it.
1965          */
1966         recalc_sigpending_tsk(current);
1967 }
1968
1969 static void ptrace_do_notify(int signr, int exit_code, int why)
1970 {
1971         siginfo_t info;
1972
1973         memset(&info, 0, sizeof info);
1974         info.si_signo = signr;
1975         info.si_code = exit_code;
1976         info.si_pid = task_pid_vnr(current);
1977         info.si_uid = current_uid();
1978
1979         /* Let the debugger run.  */
1980         ptrace_stop(exit_code, why, 1, &info);
1981 }
1982
1983 void ptrace_notify(int exit_code)
1984 {
1985         BUG_ON((exit_code & (0x7f | ~0xffff)) != SIGTRAP);
1986
1987         spin_lock_irq(&current->sighand->siglock);
1988         ptrace_do_notify(SIGTRAP, exit_code, CLD_TRAPPED);
1989         spin_unlock_irq(&current->sighand->siglock);
1990 }
1991
1992 /**
1993  * do_signal_stop - handle group stop for SIGSTOP and other stop signals
1994  * @signr: signr causing group stop if initiating
1995  *
1996  * If %JOBCTL_STOP_PENDING is not set yet, initiate group stop with @signr
1997  * and participate in it.  If already set, participate in the existing
1998  * group stop.  If participated in a group stop (and thus slept), %true is
1999  * returned with siglock released.
2000  *
2001  * If ptraced, this function doesn't handle stop itself.  Instead,
2002  * %JOBCTL_TRAP_STOP is scheduled and %false is returned with siglock
2003  * untouched.  The caller must ensure that INTERRUPT trap handling takes
2004  * places afterwards.
2005  *
2006  * CONTEXT:
2007  * Must be called with @current->sighand->siglock held, which is released
2008  * on %true return.
2009  *
2010  * RETURNS:
2011  * %false if group stop is already cancelled or ptrace trap is scheduled.
2012  * %true if participated in group stop.
2013  */
2014 static bool do_signal_stop(int signr)
2015         __releases(&current->sighand->siglock)
2016 {
2017         struct signal_struct *sig = current->signal;
2018
2019         if (!(current->jobctl & JOBCTL_STOP_PENDING)) {
2020                 unsigned int gstop = JOBCTL_STOP_PENDING | JOBCTL_STOP_CONSUME;
2021                 struct task_struct *t;
2022
2023                 /* signr will be recorded in task->jobctl for retries */
2024                 WARN_ON_ONCE(signr & ~JOBCTL_STOP_SIGMASK);
2025
2026                 if (!likely(current->jobctl & JOBCTL_STOP_DEQUEUED) ||
2027                     unlikely(signal_group_exit(sig)))
2028                         return false;
2029                 /*
2030                  * There is no group stop already in progress.  We must
2031                  * initiate one now.
2032                  *
2033                  * While ptraced, a task may be resumed while group stop is
2034                  * still in effect and then receive a stop signal and
2035                  * initiate another group stop.  This deviates from the
2036                  * usual behavior as two consecutive stop signals can't
2037                  * cause two group stops when !ptraced.  That is why we
2038                  * also check !task_is_stopped(t) below.
2039                  *
2040                  * The condition can be distinguished by testing whether
2041                  * SIGNAL_STOP_STOPPED is already set.  Don't generate
2042                  * group_exit_code in such case.
2043                  *
2044                  * This is not necessary for SIGNAL_STOP_CONTINUED because
2045                  * an intervening stop signal is required to cause two
2046                  * continued events regardless of ptrace.
2047                  */
2048                 if (!(sig->flags & SIGNAL_STOP_STOPPED))
2049                         sig->group_exit_code = signr;
2050
2051                 sig->group_stop_count = 0;
2052
2053                 if (task_set_jobctl_pending(current, signr | gstop))
2054                         sig->group_stop_count++;
2055
2056                 for (t = next_thread(current); t != current;
2057                      t = next_thread(t)) {
2058                         /*
2059                          * Setting state to TASK_STOPPED for a group
2060                          * stop is always done with the siglock held,
2061                          * so this check has no races.
2062                          */
2063                         if (!task_is_stopped(t) &&
2064                             task_set_jobctl_pending(t, signr | gstop)) {
2065                                 sig->group_stop_count++;
2066                                 if (likely(!(t->ptrace & PT_SEIZED)))
2067                                         signal_wake_up(t, 0);
2068                                 else
2069                                         ptrace_trap_notify(t);
2070                         }
2071                 }
2072         }
2073
2074         if (likely(!current->ptrace)) {
2075                 int notify = 0;
2076
2077                 /*
2078                  * If there are no other threads in the group, or if there
2079                  * is a group stop in progress and we are the last to stop,
2080                  * report to the parent.
2081                  */
2082                 if (task_participate_group_stop(current))
2083                         notify = CLD_STOPPED;
2084
2085                 __set_current_state(TASK_STOPPED);
2086                 spin_unlock_irq(&current->sighand->siglock);
2087
2088                 /*
2089                  * Notify the parent of the group stop completion.  Because
2090                  * we're not holding either the siglock or tasklist_lock
2091                  * here, ptracer may attach inbetween; however, this is for
2092                  * group stop and should always be delivered to the real
2093                  * parent of the group leader.  The new ptracer will get
2094                  * its notification when this task transitions into
2095                  * TASK_TRACED.
2096                  */
2097                 if (notify) {
2098                         read_lock(&tasklist_lock);
2099                         do_notify_parent_cldstop(current, false, notify);
2100                         read_unlock(&tasklist_lock);
2101                 }
2102
2103                 /* Now we don't run again until woken by SIGCONT or SIGKILL */
2104                 schedule();
2105                 return true;
2106         } else {
2107                 /*
2108                  * While ptraced, group stop is handled by STOP trap.
2109                  * Schedule it and let the caller deal with it.
2110                  */
2111                 task_set_jobctl_pending(current, JOBCTL_TRAP_STOP);
2112                 return false;
2113         }
2114 }
2115
2116 /**
2117  * do_jobctl_trap - take care of ptrace jobctl traps
2118  *
2119  * When PT_SEIZED, it's used for both group stop and explicit
2120  * SEIZE/INTERRUPT traps.  Both generate PTRACE_EVENT_STOP trap with
2121  * accompanying siginfo.  If stopped, lower eight bits of exit_code contain
2122  * the stop signal; otherwise, %SIGTRAP.
2123  *
2124  * When !PT_SEIZED, it's used only for group stop trap with stop signal
2125  * number as exit_code and no siginfo.
2126  *
2127  * CONTEXT:
2128  * Must be called with @current->sighand->siglock held, which may be
2129  * released and re-acquired before returning with intervening sleep.
2130  */
2131 static void do_jobctl_trap(void)
2132 {
2133         struct signal_struct *signal = current->signal;
2134         int signr = current->jobctl & JOBCTL_STOP_SIGMASK;
2135
2136         if (current->ptrace & PT_SEIZED) {
2137                 if (!signal->group_stop_count &&
2138                     !(signal->flags & SIGNAL_STOP_STOPPED))
2139                         signr = SIGTRAP;
2140                 WARN_ON_ONCE(!signr);
2141                 ptrace_do_notify(signr, signr | (PTRACE_EVENT_STOP << 8),
2142                                  CLD_STOPPED);
2143         } else {
2144                 WARN_ON_ONCE(!signr);
2145                 ptrace_stop(signr, CLD_STOPPED, 0, NULL);
2146                 current->exit_code = 0;
2147         }
2148 }
2149
2150 static int ptrace_signal(int signr, siginfo_t *info,
2151                          struct pt_regs *regs, void *cookie)
2152 {
2153         ptrace_signal_deliver(regs, cookie);
2154         /*
2155          * We do not check sig_kernel_stop(signr) but set this marker
2156          * unconditionally because we do not know whether debugger will
2157          * change signr. This flag has no meaning unless we are going
2158          * to stop after return from ptrace_stop(). In this case it will
2159          * be checked in do_signal_stop(), we should only stop if it was
2160          * not cleared by SIGCONT while we were sleeping. See also the
2161          * comment in dequeue_signal().
2162          */
2163         current->jobctl |= JOBCTL_STOP_DEQUEUED;
2164         ptrace_stop(signr, CLD_TRAPPED, 0, info);
2165
2166         /* We're back.  Did the debugger cancel the sig?  */
2167         signr = current->exit_code;
2168         if (signr == 0)
2169                 return signr;
2170
2171         current->exit_code = 0;
2172
2173         /*
2174          * Update the siginfo structure if the signal has
2175          * changed.  If the debugger wanted something
2176          * specific in the siginfo structure then it should
2177          * have updated *info via PTRACE_SETSIGINFO.
2178          */
2179         if (signr != info->si_signo) {
2180                 info->si_signo = signr;
2181                 info->si_errno = 0;
2182                 info->si_code = SI_USER;
2183                 rcu_read_lock();
2184                 info->si_pid = task_pid_vnr(current->parent);
2185                 info->si_uid = map_cred_ns(__task_cred(current->parent),
2186                                 current_user_ns());
2187                 rcu_read_unlock();
2188         }
2189
2190         /* If the (new) signal is now blocked, requeue it.  */
2191         if (sigismember(&current->blocked, signr)) {
2192                 specific_send_sig_info(signr, info, current);
2193                 signr = 0;
2194         }
2195
2196         return signr;
2197 }
2198
2199 int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka,
2200                           struct pt_regs *regs, void *cookie)
2201 {
2202         struct sighand_struct *sighand = current->sighand;
2203         struct signal_struct *signal = current->signal;
2204         int signr;
2205
2206         if (unlikely(uprobe_deny_signal()))
2207                 return 0;
2208
2209 relock:
2210         /*
2211          * We'll jump back here after any time we were stopped in TASK_STOPPED.
2212          * While in TASK_STOPPED, we were considered "frozen enough".
2213          * Now that we woke up, it's crucial if we're supposed to be
2214          * frozen that we freeze now before running anything substantial.
2215          */
2216         try_to_freeze();
2217
2218         spin_lock_irq(&sighand->siglock);
2219         /*
2220          * Every stopped thread goes here after wakeup. Check to see if
2221          * we should notify the parent, prepare_signal(SIGCONT) encodes
2222          * the CLD_ si_code into SIGNAL_CLD_MASK bits.
2223          */
2224         if (unlikely(signal->flags & SIGNAL_CLD_MASK)) {
2225                 int why;
2226
2227                 if (signal->flags & SIGNAL_CLD_CONTINUED)
2228                         why = CLD_CONTINUED;
2229                 else
2230                         why = CLD_STOPPED;
2231
2232                 signal->flags &= ~SIGNAL_CLD_MASK;
2233
2234                 spin_unlock_irq(&sighand->siglock);
2235
2236                 /*
2237                  * Notify the parent that we're continuing.  This event is
2238                  * always per-process and doesn't make whole lot of sense
2239                  * for ptracers, who shouldn't consume the state via
2240                  * wait(2) either, but, for backward compatibility, notify
2241                  * the ptracer of the group leader too unless it's gonna be
2242                  * a duplicate.
2243                  */
2244                 read_lock(&tasklist_lock);
2245                 do_notify_parent_cldstop(current, false, why);
2246
2247                 if (ptrace_reparented(current->group_leader))
2248                         do_notify_parent_cldstop(current->group_leader,
2249                                                 true, why);
2250                 read_unlock(&tasklist_lock);
2251
2252                 goto relock;
2253         }
2254
2255         for (;;) {
2256                 struct k_sigaction *ka;
2257
2258                 if (unlikely(current->jobctl & JOBCTL_STOP_PENDING) &&
2259                     do_signal_stop(0))
2260                         goto relock;
2261
2262                 if (unlikely(current->jobctl & JOBCTL_TRAP_MASK)) {
2263                         do_jobctl_trap();
2264                         spin_unlock_irq(&sighand->siglock);
2265                         goto relock;
2266                 }
2267
2268                 signr = dequeue_signal(current, &current->blocked, info);
2269
2270                 if (!signr)
2271                         break; /* will return 0 */
2272
2273                 if (unlikely(current->ptrace) && signr != SIGKILL) {
2274                         signr = ptrace_signal(signr, info,
2275                                               regs, cookie);
2276                         if (!signr)
2277                                 continue;
2278                 }
2279
2280                 ka = &sighand->action[signr-1];
2281
2282                 /* Trace actually delivered signals. */
2283                 trace_signal_deliver(signr, info, ka);
2284
2285                 if (ka->sa.sa_handler == SIG_IGN) /* Do nothing.  */
2286                         continue;
2287                 if (ka->sa.sa_handler != SIG_DFL) {
2288                         /* Run the handler.  */
2289                         *return_ka = *ka;
2290
2291                         if (ka->sa.sa_flags & SA_ONESHOT)
2292                                 ka->sa.sa_handler = SIG_DFL;
2293
2294                         break; /* will return non-zero "signr" value */
2295                 }
2296
2297                 /*
2298                  * Now we are doing the default action for this signal.
2299                  */
2300                 if (sig_kernel_ignore(signr)) /* Default is nothing. */
2301                         continue;
2302
2303                 /*
2304                  * Global init gets no signals it doesn't want.
2305                  * Container-init gets no signals it doesn't want from same
2306                  * container.
2307                  *
2308                  * Note that if global/container-init sees a sig_kernel_only()
2309                  * signal here, the signal must have been generated internally
2310                  * or must have come from an ancestor namespace. In either
2311                  * case, the signal cannot be dropped.
2312                  */
2313                 if (unlikely(signal->flags & SIGNAL_UNKILLABLE) &&
2314                                 !sig_kernel_only(signr))
2315                         continue;
2316
2317                 if (sig_kernel_stop(signr)) {
2318                         /*
2319                          * The default action is to stop all threads in
2320                          * the thread group.  The job control signals
2321                          * do nothing in an orphaned pgrp, but SIGSTOP
2322                          * always works.  Note that siglock needs to be
2323                          * dropped during the call to is_orphaned_pgrp()
2324                          * because of lock ordering with tasklist_lock.
2325                          * This allows an intervening SIGCONT to be posted.
2326                          * We need to check for that and bail out if necessary.
2327                          */
2328                         if (signr != SIGSTOP) {
2329                                 spin_unlock_irq(&sighand->siglock);
2330
2331                                 /* signals can be posted during this window */
2332
2333                                 if (is_current_pgrp_orphaned())
2334                                         goto relock;
2335
2336                                 spin_lock_irq(&sighand->siglock);
2337                         }
2338
2339                         if (likely(do_signal_stop(info->si_signo))) {
2340                                 /* It released the siglock.  */
2341                                 goto relock;
2342                         }
2343
2344                         /*
2345                          * We didn't actually stop, due to a race
2346                          * with SIGCONT or something like that.
2347                          */
2348                         continue;
2349                 }
2350
2351                 spin_unlock_irq(&sighand->siglock);
2352
2353                 /*
2354                  * Anything else is fatal, maybe with a core dump.
2355                  */
2356                 current->flags |= PF_SIGNALED;
2357
2358                 if (sig_kernel_coredump(signr)) {
2359                         if (print_fatal_signals)
2360                                 print_fatal_signal(regs, info->si_signo);
2361                         /*
2362                          * If it was able to dump core, this kills all
2363                          * other threads in the group and synchronizes with
2364                          * their demise.  If we lost the race with another
2365                          * thread getting here, it set group_exit_code
2366                          * first and our do_group_exit call below will use
2367                          * that value and ignore the one we pass it.
2368                          */
2369                         do_coredump(info->si_signo, info->si_signo, regs);
2370                 }
2371
2372                 /*
2373                  * Death signals, no core dump.
2374                  */
2375                 do_group_exit(info->si_signo);
2376                 /* NOTREACHED */
2377         }
2378         spin_unlock_irq(&sighand->siglock);
2379         return signr;
2380 }
2381
2382 /**
2383  * block_sigmask - add @ka's signal mask to current->blocked
2384  * @ka: action for @signr
2385  * @signr: signal that has been successfully delivered
2386  *
2387  * This function should be called when a signal has succesfully been
2388  * delivered. It adds the mask of signals for @ka to current->blocked
2389  * so that they are blocked during the execution of the signal
2390  * handler. In addition, @signr will be blocked unless %SA_NODEFER is
2391  * set in @ka->sa.sa_flags.
2392  */
2393 void block_sigmask(struct k_sigaction *ka, int signr)
2394 {
2395         sigset_t blocked;
2396
2397         sigorsets(&blocked, &current->blocked, &ka->sa.sa_mask);
2398         if (!(ka->sa.sa_flags & SA_NODEFER))
2399                 sigaddset(&blocked, signr);
2400         set_current_blocked(&blocked);
2401 }
2402
2403 /*
2404  * It could be that complete_signal() picked us to notify about the
2405  * group-wide signal. Other threads should be notified now to take
2406  * the shared signals in @which since we will not.
2407  */
2408 static void retarget_shared_pending(struct task_struct *tsk, sigset_t *which)
2409 {
2410         sigset_t retarget;
2411         struct task_struct *t;
2412
2413         sigandsets(&retarget, &tsk->signal->shared_pending.signal, which);
2414         if (sigisemptyset(&retarget))
2415                 return;
2416
2417         t = tsk;
2418         while_each_thread(tsk, t) {
2419                 if (t->flags & PF_EXITING)
2420                         continue;
2421
2422                 if (!has_pending_signals(&retarget, &t->blocked))
2423                         continue;
2424                 /* Remove the signals this thread can handle. */
2425                 sigandsets(&retarget, &retarget, &t->blocked);
2426
2427                 if (!signal_pending(t))
2428                         signal_wake_up(t, 0);
2429
2430                 if (sigisemptyset(&retarget))
2431                         break;
2432         }
2433 }
2434
2435 void exit_signals(struct task_struct *tsk)
2436 {
2437         int group_stop = 0;
2438         sigset_t unblocked;
2439
2440         /*
2441          * @tsk is about to have PF_EXITING set - lock out users which
2442          * expect stable threadgroup.
2443          */
2444         threadgroup_change_begin(tsk);
2445
2446         if (thread_group_empty(tsk) || signal_group_exit(tsk->signal)) {
2447                 tsk->flags |= PF_EXITING;
2448                 threadgroup_change_end(tsk);
2449                 return;
2450         }
2451
2452         spin_lock_irq(&tsk->sighand->siglock);
2453         /*
2454          * From now this task is not visible for group-wide signals,
2455          * see wants_signal(), do_signal_stop().
2456          */
2457         tsk->flags |= PF_EXITING;
2458
2459         threadgroup_change_end(tsk);
2460
2461         if (!signal_pending(tsk))
2462                 goto out;
2463
2464         unblocked = tsk->blocked;
2465         signotset(&unblocked);
2466         retarget_shared_pending(tsk, &unblocked);
2467
2468         if (unlikely(tsk->jobctl & JOBCTL_STOP_PENDING) &&
2469             task_participate_group_stop(tsk))
2470                 group_stop = CLD_STOPPED;
2471 out:
2472         spin_unlock_irq(&tsk->sighand->siglock);
2473
2474         /*
2475          * If group stop has completed, deliver the notification.  This
2476          * should always go to the real parent of the group leader.
2477          */
2478         if (unlikely(group_stop)) {
2479                 read_lock(&tasklist_lock);
2480                 do_notify_parent_cldstop(tsk, false, group_stop);
2481                 read_unlock(&tasklist_lock);
2482         }
2483 }
2484
2485 EXPORT_SYMBOL(recalc_sigpending);
2486 EXPORT_SYMBOL_GPL(dequeue_signal);
2487 EXPORT_SYMBOL(flush_signals);
2488 EXPORT_SYMBOL(force_sig);
2489 EXPORT_SYMBOL(send_sig);
2490 EXPORT_SYMBOL(send_sig_info);
2491 EXPORT_SYMBOL(sigprocmask);
2492 EXPORT_SYMBOL(block_all_signals);
2493 EXPORT_SYMBOL(unblock_all_signals);
2494
2495
2496 /*
2497  * System call entry points.
2498  */
2499
2500 /**
2501  *  sys_restart_syscall - restart a system call
2502  */
2503 SYSCALL_DEFINE0(restart_syscall)
2504 {
2505         struct restart_block *restart = &current_thread_info()->restart_block;
2506         return restart->fn(restart);
2507 }
2508
2509 long do_no_restart_syscall(struct restart_block *param)
2510 {
2511         return -EINTR;
2512 }
2513
2514 static void __set_task_blocked(struct task_struct *tsk, const sigset_t *newset)
2515 {
2516         if (signal_pending(tsk) && !thread_group_empty(tsk)) {
2517                 sigset_t newblocked;
2518                 /* A set of now blocked but previously unblocked signals. */
2519                 sigandnsets(&newblocked, newset, &current->blocked);
2520                 retarget_shared_pending(tsk, &newblocked);
2521         }
2522         tsk->blocked = *newset;
2523         recalc_sigpending();
2524 }
2525
2526 /**
2527  * set_current_blocked - change current->blocked mask
2528  * @newset: new mask
2529  *
2530  * It is wrong to change ->blocked directly, this helper should be used
2531  * to ensure the process can't miss a shared signal we are going to block.
2532  */
2533 void set_current_blocked(const sigset_t *newset)
2534 {
2535         struct task_struct *tsk = current;
2536
2537         spin_lock_irq(&tsk->sighand->siglock);
2538         __set_task_blocked(tsk, newset);
2539         spin_unlock_irq(&tsk->sighand->siglock);
2540 }
2541
2542 /*
2543  * This is also useful for kernel threads that want to temporarily
2544  * (or permanently) block certain signals.
2545  *
2546  * NOTE! Unlike the user-mode sys_sigprocmask(), the kernel
2547  * interface happily blocks "unblockable" signals like SIGKILL
2548  * and friends.
2549  */
2550 int sigprocmask(int how, sigset_t *set, sigset_t *oldset)
2551 {
2552         struct task_struct *tsk = current;
2553         sigset_t newset;
2554
2555         /* Lockless, only current can change ->blocked, never from irq */
2556         if (oldset)
2557                 *oldset = tsk->blocked;
2558
2559         switch (how) {
2560         case SIG_BLOCK:
2561                 sigorsets(&newset, &tsk->blocked, set);
2562                 break;
2563         case SIG_UNBLOCK:
2564                 sigandnsets(&newset, &tsk->blocked, set);
2565                 break;
2566         case SIG_SETMASK:
2567                 newset = *set;
2568                 break;
2569         default:
2570                 return -EINVAL;
2571         }
2572
2573         set_current_blocked(&newset);
2574         return 0;
2575 }
2576
2577 /**
2578  *  sys_rt_sigprocmask - change the list of currently blocked signals
2579  *  @how: whether to add, remove, or set signals
2580  *  @nset: stores pending signals
2581  *  @oset: previous value of signal mask if non-null
2582  *  @sigsetsize: size of sigset_t type
2583  */
2584 SYSCALL_DEFINE4(rt_sigprocmask, int, how, sigset_t __user *, nset,
2585                 sigset_t __user *, oset, size_t, sigsetsize)
2586 {
2587         sigset_t old_set, new_set;
2588         int error;
2589
2590         /* XXX: Don't preclude handling different sized sigset_t's.  */
2591         if (sigsetsize != sizeof(sigset_t))
2592                 return -EINVAL;
2593
2594         old_set = current->blocked;
2595
2596         if (nset) {
2597                 if (copy_from_user(&new_set, nset, sizeof(sigset_t)))
2598                         return -EFAULT;
2599                 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP));
2600
2601                 error = sigprocmask(how, &new_set, NULL);
2602                 if (error)
2603                         return error;
2604         }
2605
2606         if (oset) {
2607                 if (copy_to_user(oset, &old_set, sizeof(sigset_t)))
2608                         return -EFAULT;
2609         }
2610
2611         return 0;
2612 }
2613
2614 long do_sigpending(void __user *set, unsigned long sigsetsize)
2615 {
2616         long error = -EINVAL;
2617         sigset_t pending;
2618
2619         if (sigsetsize > sizeof(sigset_t))
2620                 goto out;
2621
2622         spin_lock_irq(&current->sighand->siglock);
2623         sigorsets(&pending, &current->pending.signal,
2624                   &current->signal->shared_pending.signal);
2625         spin_unlock_irq(&current->sighand->siglock);
2626
2627         /* Outside the lock because only this thread touches it.  */
2628         sigandsets(&pending, &current->blocked, &pending);
2629
2630         error = -EFAULT;
2631         if (!copy_to_user(set, &pending, sigsetsize))
2632                 error = 0;
2633
2634 out:
2635         return error;
2636 }
2637
2638 /**
2639  *  sys_rt_sigpending - examine a pending signal that has been raised
2640  *                      while blocked
2641  *  @set: stores pending signals
2642  *  @sigsetsize: size of sigset_t type or larger
2643  */
2644 SYSCALL_DEFINE2(rt_sigpending, sigset_t __user *, set, size_t, sigsetsize)
2645 {
2646         return do_sigpending(set, sigsetsize);
2647 }
2648
2649 #ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER
2650
2651 int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from)
2652 {
2653         int err;
2654
2655         if (!access_ok (VERIFY_WRITE, to, sizeof(siginfo_t)))
2656                 return -EFAULT;
2657         if (from->si_code < 0)
2658                 return __copy_to_user(to, from, sizeof(siginfo_t))
2659                         ? -EFAULT : 0;
2660         /*
2661          * If you change siginfo_t structure, please be sure
2662          * this code is fixed accordingly.
2663          * Please remember to update the signalfd_copyinfo() function
2664          * inside fs/signalfd.c too, in case siginfo_t changes.
2665          * It should never copy any pad contained in the structure
2666          * to avoid security leaks, but must copy the generic
2667          * 3 ints plus the relevant union member.
2668          */
2669         err = __put_user(from->si_signo, &to->si_signo);
2670         err |= __put_user(from->si_errno, &to->si_errno);
2671         err |= __put_user((short)from->si_code, &to->si_code);
2672         switch (from->si_code & __SI_MASK) {
2673         case __SI_KILL:
2674                 err |= __put_user(from->si_pid, &to->si_pid);
2675                 err |= __put_user(from->si_uid, &to->si_uid);
2676                 break;
2677         case __SI_TIMER:
2678                  err |= __put_user(from->si_tid, &to->si_tid);
2679                  err |= __put_user(from->si_overrun, &to->si_overrun);
2680                  err |= __put_user(from->si_ptr, &to->si_ptr);
2681                 break;
2682         case __SI_POLL:
2683                 err |= __put_user(from->si_band, &to->si_band);
2684                 err |= __put_user(from->si_fd, &to->si_fd);
2685                 break;
2686         case __SI_FAULT:
2687                 err |= __put_user(from->si_addr, &to->si_addr);
2688 #ifdef __ARCH_SI_TRAPNO
2689                 err |= __put_user(from->si_trapno, &to->si_trapno);
2690 #endif
2691 #ifdef BUS_MCEERR_AO
2692                 /*
2693                  * Other callers might not initialize the si_lsb field,
2694                  * so check explicitly for the right codes here.
2695                  */
2696                 if (from->si_code == BUS_MCEERR_AR || from->si_code == BUS_MCEERR_AO)
2697                         err |= __put_user(from->si_addr_lsb, &to->si_addr_lsb);
2698 #endif
2699                 break;
2700         case __SI_CHLD:
2701                 err |= __put_user(from->si_pid, &to->si_pid);
2702                 err |= __put_user(from->si_uid, &to->si_uid);
2703                 err |= __put_user(from->si_status, &to->si_status);
2704                 err |= __put_user(from->si_utime, &to->si_utime);
2705                 err |= __put_user(from->si_stime, &to->si_stime);
2706                 break;
2707         case __SI_RT: /* This is not generated by the kernel as of now. */
2708         case __SI_MESGQ: /* But this is */
2709                 err |= __put_user(from->si_pid, &to->si_pid);
2710                 err |= __put_user(from->si_uid, &to->si_uid);
2711                 err |= __put_user(from->si_ptr, &to->si_ptr);
2712                 break;
2713         default: /* this is just in case for now ... */
2714                 err |= __put_user(from->si_pid, &to->si_pid);
2715                 err |= __put_user(from->si_uid, &to->si_uid);
2716                 break;
2717         }
2718         return err;
2719 }
2720
2721 #endif
2722
2723 /**
2724  *  do_sigtimedwait - wait for queued signals specified in @which
2725  *  @which: queued signals to wait for
2726  *  @info: if non-null, the signal's siginfo is returned here
2727  *  @ts: upper bound on process time suspension
2728  */
2729 int do_sigtimedwait(const sigset_t *which, siginfo_t *info,
2730                         const struct timespec *ts)
2731 {
2732         struct task_struct *tsk = current;
2733         long timeout = MAX_SCHEDULE_TIMEOUT;
2734         sigset_t mask = *which;
2735         int sig;
2736
2737         if (ts) {
2738                 if (!timespec_valid(ts))
2739                         return -EINVAL;
2740                 timeout = timespec_to_jiffies(ts);
2741                 /*
2742                  * We can be close to the next tick, add another one
2743                  * to ensure we will wait at least the time asked for.
2744                  */
2745                 if (ts->tv_sec || ts->tv_nsec)
2746                         timeout++;
2747         }
2748
2749         /*
2750          * Invert the set of allowed signals to get those we want to block.
2751          */
2752         sigdelsetmask(&mask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2753         signotset(&mask);
2754
2755         spin_lock_irq(&tsk->sighand->siglock);
2756         sig = dequeue_signal(tsk, &mask, info);
2757         if (!sig && timeout) {
2758                 /*
2759                  * None ready, temporarily unblock those we're interested
2760                  * while we are sleeping in so that we'll be awakened when
2761                  * they arrive. Unblocking is always fine, we can avoid
2762                  * set_current_blocked().
2763                  */
2764                 tsk->real_blocked = tsk->blocked;
2765                 sigandsets(&tsk->blocked, &tsk->blocked, &mask);
2766                 recalc_sigpending();
2767                 spin_unlock_irq(&tsk->sighand->siglock);
2768
2769                 timeout = schedule_timeout_interruptible(timeout);
2770
2771                 spin_lock_irq(&tsk->sighand->siglock);
2772                 __set_task_blocked(tsk, &tsk->real_blocked);
2773                 siginitset(&tsk->real_blocked, 0);
2774                 sig = dequeue_signal(tsk, &mask, info);
2775         }
2776         spin_unlock_irq(&tsk->sighand->siglock);
2777
2778         if (sig)
2779                 return sig;
2780         return timeout ? -EINTR : -EAGAIN;
2781 }
2782
2783 /**
2784  *  sys_rt_sigtimedwait - synchronously wait for queued signals specified
2785  *                      in @uthese
2786  *  @uthese: queued signals to wait for
2787  *  @uinfo: if non-null, the signal's siginfo is returned here
2788  *  @uts: upper bound on process time suspension
2789  *  @sigsetsize: size of sigset_t type
2790  */
2791 SYSCALL_DEFINE4(rt_sigtimedwait, const sigset_t __user *, uthese,
2792                 siginfo_t __user *, uinfo, const struct timespec __user *, uts,
2793                 size_t, sigsetsize)
2794 {
2795         sigset_t these;
2796         struct timespec ts;
2797         siginfo_t info;
2798         int ret;
2799
2800         /* XXX: Don't preclude handling different sized sigset_t's.  */
2801         if (sigsetsize != sizeof(sigset_t))
2802                 return -EINVAL;
2803
2804         if (copy_from_user(&these, uthese, sizeof(these)))
2805                 return -EFAULT;
2806
2807         if (uts) {
2808                 if (copy_from_user(&ts, uts, sizeof(ts)))
2809                         return -EFAULT;
2810         }
2811
2812         ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL);
2813
2814         if (ret > 0 && uinfo) {
2815                 if (copy_siginfo_to_user(uinfo, &info))
2816                         ret = -EFAULT;
2817         }
2818
2819         return ret;
2820 }
2821
2822 /**
2823  *  sys_kill - send a signal to a process
2824  *  @pid: the PID of the process
2825  *  @sig: signal to be sent
2826  */
2827 SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
2828 {
2829         struct siginfo info;
2830
2831         info.si_signo = sig;
2832         info.si_errno = 0;
2833         info.si_code = SI_USER;
2834         info.si_pid = task_tgid_vnr(current);
2835         info.si_uid = current_uid();
2836
2837         return kill_something_info(sig, &info, pid);
2838 }
2839
2840 static int
2841 do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
2842 {
2843         struct task_struct *p;
2844         int error = -ESRCH;
2845
2846         rcu_read_lock();
2847         p = find_task_by_vpid(pid);
2848         if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
2849                 error = check_kill_permission(sig, info, p);
2850                 /*
2851                  * The null signal is a permissions and process existence
2852                  * probe.  No signal is actually delivered.
2853                  */
2854                 if (!error && sig) {
2855                         error = do_send_sig_info(sig, info, p, false);
2856                         /*
2857                          * If lock_task_sighand() failed we pretend the task
2858                          * dies after receiving the signal. The window is tiny,
2859                          * and the signal is private anyway.
2860                          */
2861                         if (unlikely(error == -ESRCH))
2862                                 error = 0;
2863                 }
2864         }
2865         rcu_read_unlock();
2866
2867         return error;
2868 }
2869
2870 static int do_tkill(pid_t tgid, pid_t pid, int sig)
2871 {
2872         struct siginfo info;
2873
2874         info.si_signo = sig;
2875         info.si_errno = 0;
2876         info.si_code = SI_TKILL;
2877         info.si_pid = task_tgid_vnr(current);
2878         info.si_uid = current_uid();
2879
2880         return do_send_specific(tgid, pid, sig, &info);
2881 }
2882
2883 /**
2884  *  sys_tgkill - send signal to one specific thread
2885  *  @tgid: the thread group ID of the thread
2886  *  @pid: the PID of the thread
2887  *  @sig: signal to be sent
2888  *
2889  *  This syscall also checks the @tgid and returns -ESRCH even if the PID
2890  *  exists but it's not belonging to the target process anymore. This
2891  *  method solves the problem of threads exiting and PIDs getting reused.
2892  */
2893 SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
2894 {
2895         /* This is only valid for single tasks */
2896         if (pid <= 0 || tgid <= 0)
2897                 return -EINVAL;
2898
2899         return do_tkill(tgid, pid, sig);
2900 }
2901
2902 /**
2903  *  sys_tkill - send signal to one specific task
2904  *  @pid: the PID of the task
2905  *  @sig: signal to be sent
2906  *
2907  *  Send a signal to only one task, even if it's a CLONE_THREAD task.
2908  */
2909 SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
2910 {
2911         /* This is only valid for single tasks */
2912         if (pid <= 0)
2913                 return -EINVAL;
2914
2915         return do_tkill(0, pid, sig);
2916 }
2917
2918 /**
2919  *  sys_rt_sigqueueinfo - send signal information to a signal
2920  *  @pid: the PID of the thread
2921  *  @sig: signal to be sent
2922  *  @uinfo: signal info to be sent
2923  */
2924 SYSCALL_DEFINE3(rt_sigqueueinfo, pid_t, pid, int, sig,
2925                 siginfo_t __user *, uinfo)
2926 {
2927         siginfo_t info;
2928
2929         if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2930                 return -EFAULT;
2931
2932         /* Not even root can pretend to send signals from the kernel.
2933          * Nor can they impersonate a kill()/tgkill(), which adds source info.
2934          */
2935         if (info.si_code >= 0 || info.si_code == SI_TKILL) {
2936                 /* We used to allow any < 0 si_code */
2937                 WARN_ON_ONCE(info.si_code < 0);
2938                 return -EPERM;
2939         }
2940         info.si_signo = sig;
2941
2942         /* POSIX.1b doesn't mention process groups.  */
2943         return kill_proc_info(sig, &info, pid);
2944 }
2945
2946 long do_rt_tgsigqueueinfo(pid_t tgid, pid_t pid, int sig, siginfo_t *info)
2947 {
2948         /* This is only valid for single tasks */
2949         if (pid <= 0 || tgid <= 0)
2950                 return -EINVAL;
2951
2952         /* Not even root can pretend to send signals from the kernel.
2953          * Nor can they impersonate a kill()/tgkill(), which adds source info.
2954          */
2955         if (info->si_code >= 0 || info->si_code == SI_TKILL) {
2956                 /* We used to allow any < 0 si_code */
2957                 WARN_ON_ONCE(info->si_code < 0);
2958                 return -EPERM;
2959         }
2960         info->si_signo = sig;
2961
2962         return do_send_specific(tgid, pid, sig, info);
2963 }
2964
2965 SYSCALL_DEFINE4(rt_tgsigqueueinfo, pid_t, tgid, pid_t, pid, int, sig,
2966                 siginfo_t __user *, uinfo)
2967 {
2968         siginfo_t info;
2969
2970         if (copy_from_user(&info, uinfo, sizeof(siginfo_t)))
2971                 return -EFAULT;
2972
2973         return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
2974 }
2975
2976 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact)
2977 {
2978         struct task_struct *t = current;
2979         struct k_sigaction *k;
2980         sigset_t mask;
2981
2982         if (!valid_signal(sig) || sig < 1 || (act && sig_kernel_only(sig)))
2983                 return -EINVAL;
2984
2985         k = &t->sighand->action[sig-1];
2986
2987         spin_lock_irq(&current->sighand->siglock);
2988         if (oact)
2989                 *oact = *k;
2990
2991         if (act) {
2992                 sigdelsetmask(&act->sa.sa_mask,
2993                               sigmask(SIGKILL) | sigmask(SIGSTOP));
2994                 *k = *act;
2995                 /*
2996                  * POSIX 3.3.1.3:
2997                  *  "Setting a signal action to SIG_IGN for a signal that is
2998                  *   pending shall cause the pending signal to be discarded,
2999                  *   whether or not it is blocked."
3000                  *
3001                  *  "Setting a signal action to SIG_DFL for a signal that is
3002                  *   pending and whose default action is to ignore the signal
3003                  *   (for example, SIGCHLD), shall cause the pending signal to
3004                  *   be discarded, whether or not it is blocked"
3005                  */
3006                 if (sig_handler_ignored(sig_handler(t, sig), sig)) {
3007                         sigemptyset(&mask);
3008                         sigaddset(&mask, sig);
3009                         rm_from_queue_full(&mask, &t->signal->shared_pending);
3010                         do {
3011                                 rm_from_queue_full(&mask, &t->pending);
3012                                 t = next_thread(t);
3013                         } while (t != current);
3014                 }
3015         }
3016
3017         spin_unlock_irq(&current->sighand->siglock);
3018         return 0;
3019 }
3020
3021 int 
3022 do_sigaltstack (const stack_t __user *uss, stack_t __user *uoss, unsigned long sp)
3023 {
3024         stack_t oss;
3025         int error;
3026
3027         oss.ss_sp = (void __user *) current->sas_ss_sp;
3028         oss.ss_size = current->sas_ss_size;
3029         oss.ss_flags = sas_ss_flags(sp);
3030
3031         if (uss) {
3032                 void __user *ss_sp;
3033                 size_t ss_size;
3034                 int ss_flags;
3035
3036                 error = -EFAULT;
3037                 if (!access_ok(VERIFY_READ, uss, sizeof(*uss)))
3038                         goto out;
3039                 error = __get_user(ss_sp, &uss->ss_sp) |
3040                         __get_user(ss_flags, &uss->ss_flags) |
3041                         __get_user(ss_size, &uss->ss_size);
3042                 if (error)
3043                         goto out;
3044
3045                 error = -EPERM;
3046                 if (on_sig_stack(sp))
3047                         goto out;
3048
3049                 error = -EINVAL;
3050                 /*
3051                  * Note - this code used to test ss_flags incorrectly:
3052                  *        old code may have been written using ss_flags==0
3053                  *        to mean ss_flags==SS_ONSTACK (as this was the only
3054                  *        way that worked) - this fix preserves that older
3055                  *        mechanism.
3056                  */
3057                 if (ss_flags != SS_DISABLE && ss_flags != SS_ONSTACK && ss_flags != 0)
3058                         goto out;
3059
3060                 if (ss_flags == SS_DISABLE) {
3061                         ss_size = 0;
3062                         ss_sp = NULL;
3063                 } else {
3064                         error = -ENOMEM;
3065                         if (ss_size < MINSIGSTKSZ)
3066                                 goto out;
3067                 }
3068
3069                 current->sas_ss_sp = (unsigned long) ss_sp;
3070                 current->sas_ss_size = ss_size;
3071         }
3072
3073         error = 0;
3074         if (uoss) {
3075                 error = -EFAULT;
3076                 if (!access_ok(VERIFY_WRITE, uoss, sizeof(*uoss)))
3077                         goto out;
3078                 error = __put_user(oss.ss_sp, &uoss->ss_sp) |
3079                         __put_user(oss.ss_size, &uoss->ss_size) |
3080                         __put_user(oss.ss_flags, &uoss->ss_flags);
3081         }
3082
3083 out:
3084         return error;
3085 }
3086
3087 #ifdef __ARCH_WANT_SYS_SIGPENDING
3088
3089 /**
3090  *  sys_sigpending - examine pending signals
3091  *  @set: where mask of pending signal is returned
3092  */
3093 SYSCALL_DEFINE1(sigpending, old_sigset_t __user *, set)
3094 {
3095         return do_sigpending(set, sizeof(*set));
3096 }
3097
3098 #endif
3099
3100 #ifdef __ARCH_WANT_SYS_SIGPROCMASK
3101 /**
3102  *  sys_sigprocmask - examine and change blocked signals
3103  *  @how: whether to add, remove, or set signals
3104  *  @nset: signals to add or remove (if non-null)
3105  *  @oset: previous value of signal mask if non-null
3106  *
3107  * Some platforms have their own version with special arguments;
3108  * others support only sys_rt_sigprocmask.
3109  */
3110
3111 SYSCALL_DEFINE3(sigprocmask, int, how, old_sigset_t __user *, nset,
3112                 old_sigset_t __user *, oset)
3113 {
3114         old_sigset_t old_set, new_set;
3115         sigset_t new_blocked;
3116
3117         old_set = current->blocked.sig[0];
3118
3119         if (nset) {
3120                 if (copy_from_user(&new_set, nset, sizeof(*nset)))
3121                         return -EFAULT;
3122                 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
3123
3124                 new_blocked = current->blocked;
3125
3126                 switch (how) {
3127                 case SIG_BLOCK:
3128                         sigaddsetmask(&new_blocked, new_set);
3129                         break;
3130                 case SIG_UNBLOCK:
3131                         sigdelsetmask(&new_blocked, new_set);
3132                         break;
3133                 case SIG_SETMASK:
3134                         new_blocked.sig[0] = new_set;
3135                         break;
3136                 default:
3137                         return -EINVAL;
3138                 }
3139
3140                 set_current_blocked(&new_blocked);
3141         }
3142
3143         if (oset) {
3144                 if (copy_to_user(oset, &old_set, sizeof(*oset)))
3145                         return -EFAULT;
3146         }
3147
3148         return 0;
3149 }
3150 #endif /* __ARCH_WANT_SYS_SIGPROCMASK */
3151
3152 #ifdef __ARCH_WANT_SYS_RT_SIGACTION
3153 /**
3154  *  sys_rt_sigaction - alter an action taken by a process
3155  *  @sig: signal to be sent
3156  *  @act: new sigaction
3157  *  @oact: used to save the previous sigaction
3158  *  @sigsetsize: size of sigset_t type
3159  */
3160 SYSCALL_DEFINE4(rt_sigaction, int, sig,
3161                 const struct sigaction __user *, act,
3162                 struct sigaction __user *, oact,
3163                 size_t, sigsetsize)
3164 {
3165         struct k_sigaction new_sa, old_sa;
3166         int ret = -EINVAL;
3167
3168         /* XXX: Don't preclude handling different sized sigset_t's.  */
3169         if (sigsetsize != sizeof(sigset_t))
3170                 goto out;
3171
3172         if (act) {
3173                 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
3174                         return -EFAULT;
3175         }
3176
3177         ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
3178
3179         if (!ret && oact) {
3180                 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))
3181                         return -EFAULT;
3182         }
3183 out:
3184         return ret;
3185 }
3186 #endif /* __ARCH_WANT_SYS_RT_SIGACTION */
3187
3188 #ifdef __ARCH_WANT_SYS_SGETMASK
3189
3190 /*
3191  * For backwards compatibility.  Functionality superseded by sigprocmask.
3192  */
3193 SYSCALL_DEFINE0(sgetmask)
3194 {
3195         /* SMP safe */
3196         return current->blocked.sig[0];
3197 }
3198
3199 SYSCALL_DEFINE1(ssetmask, int, newmask)
3200 {
3201         int old = current->blocked.sig[0];
3202         sigset_t newset;
3203
3204         siginitset(&newset, newmask & ~(sigmask(SIGKILL) | sigmask(SIGSTOP)));
3205         set_current_blocked(&newset);
3206
3207         return old;
3208 }
3209 #endif /* __ARCH_WANT_SGETMASK */
3210
3211 #ifdef __ARCH_WANT_SYS_SIGNAL
3212 /*
3213  * For backwards compatibility.  Functionality superseded by sigaction.
3214  */
3215 SYSCALL_DEFINE2(signal, int, sig, __sighandler_t, handler)
3216 {
3217         struct k_sigaction new_sa, old_sa;
3218         int ret;
3219
3220         new_sa.sa.sa_handler = handler;
3221         new_sa.sa.sa_flags = SA_ONESHOT | SA_NOMASK;
3222         sigemptyset(&new_sa.sa.sa_mask);
3223
3224         ret = do_sigaction(sig, &new_sa, &old_sa);
3225
3226         return ret ? ret : (unsigned long)old_sa.sa.sa_handler;
3227 }
3228 #endif /* __ARCH_WANT_SYS_SIGNAL */
3229
3230 #ifdef __ARCH_WANT_SYS_PAUSE
3231
3232 SYSCALL_DEFINE0(pause)
3233 {
3234         while (!signal_pending(current)) {
3235                 current->state = TASK_INTERRUPTIBLE;
3236                 schedule();
3237         }
3238         return -ERESTARTNOHAND;
3239 }
3240
3241 #endif
3242
3243 #ifdef __ARCH_WANT_SYS_RT_SIGSUSPEND
3244 /**
3245  *  sys_rt_sigsuspend - replace the signal mask for a value with the
3246  *      @unewset value until a signal is received
3247  *  @unewset: new signal mask value
3248  *  @sigsetsize: size of sigset_t type
3249  */
3250 SYSCALL_DEFINE2(rt_sigsuspend, sigset_t __user *, unewset, size_t, sigsetsize)
3251 {
3252         sigset_t newset;
3253
3254         /* XXX: Don't preclude handling different sized sigset_t's.  */
3255         if (sigsetsize != sizeof(sigset_t))
3256                 return -EINVAL;
3257
3258         if (copy_from_user(&newset, unewset, sizeof(newset)))
3259                 return -EFAULT;
3260         sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
3261
3262         current->saved_sigmask = current->blocked;
3263         set_current_blocked(&newset);
3264
3265         current->state = TASK_INTERRUPTIBLE;
3266         schedule();
3267         set_restore_sigmask();
3268         return -ERESTARTNOHAND;
3269 }
3270 #endif /* __ARCH_WANT_SYS_RT_SIGSUSPEND */
3271
3272 __attribute__((weak)) const char *arch_vma_name(struct vm_area_struct *vma)
3273 {
3274         return NULL;
3275 }
3276
3277 void __init signals_init(void)
3278 {
3279         sigqueue_cachep = KMEM_CACHE(sigqueue, SLAB_PANIC);
3280 }
3281
3282 #ifdef CONFIG_KGDB_KDB
3283 #include <linux/kdb.h>
3284 /*
3285  * kdb_send_sig_info - Allows kdb to send signals without exposing
3286  * signal internals.  This function checks if the required locks are
3287  * available before calling the main signal code, to avoid kdb
3288  * deadlocks.
3289  */
3290 void
3291 kdb_send_sig_info(struct task_struct *t, struct siginfo *info)
3292 {
3293         static struct task_struct *kdb_prev_t;
3294         int sig, new_t;
3295         if (!spin_trylock(&t->sighand->siglock)) {
3296                 kdb_printf("Can't do kill command now.\n"
3297                            "The sigmask lock is held somewhere else in "
3298                            "kernel, try again later\n");
3299                 return;
3300         }
3301         spin_unlock(&t->sighand->siglock);
3302         new_t = kdb_prev_t != t;
3303         kdb_prev_t = t;
3304         if (t->state != TASK_RUNNING && new_t) {
3305                 kdb_printf("Process is not RUNNING, sending a signal from "
3306                            "kdb risks deadlock\n"
3307                            "on the run queue locks. "
3308                            "The signal has _not_ been sent.\n"
3309                            "Reissue the kill command if you want to risk "
3310                            "the deadlock.\n");
3311                 return;
3312         }
3313         sig = info->si_signo;
3314         if (send_sig_info(sig, info, t))
3315                 kdb_printf("Fail to deliver Signal %d to process %d.\n",
3316                            sig, t->pid);
3317         else
3318                 kdb_printf("Signal %d is sent to process %d.\n", sig, t->pid);
3319 }
3320 #endif  /* CONFIG_KGDB_KDB */