1
2#ifndef _LINUX_SCHED_SIGNAL_H
3#define _LINUX_SCHED_SIGNAL_H
4
5#include <linux/rculist.h>
6#include <linux/signal.h>
7#include <linux/sched.h>
8#include <linux/sched/jobctl.h>
9#include <linux/sched/task.h>
10#include <linux/cred.h>
11#include <linux/refcount.h>
12#include <linux/posix-timers.h>
13#include <linux/mm_types.h>
14#include <asm/ptrace.h>
15
16
17
18
19
20struct sighand_struct {
21 spinlock_t siglock;
22 refcount_t count;
23 wait_queue_head_t signalfd_wqh;
24 struct k_sigaction action[_NSIG];
25};
26
27
28
29
30struct pacct_struct {
31 int ac_flag;
32 long ac_exitcode;
33 unsigned long ac_mem;
34 u64 ac_utime, ac_stime;
35 unsigned long ac_minflt, ac_majflt;
36};
37
38struct cpu_itimer {
39 u64 expires;
40 u64 incr;
41};
42
43
44
45
46
47struct task_cputime_atomic {
48 atomic64_t utime;
49 atomic64_t stime;
50 atomic64_t sum_exec_runtime;
51};
52
53#define INIT_CPUTIME_ATOMIC \
54 (struct task_cputime_atomic) { \
55 .utime = ATOMIC64_INIT(0), \
56 .stime = ATOMIC64_INIT(0), \
57 .sum_exec_runtime = ATOMIC64_INIT(0), \
58 }
59
60
61
62
63
64
65
66struct thread_group_cputimer {
67 struct task_cputime_atomic cputime_atomic;
68};
69
70struct multiprocess_signals {
71 sigset_t signal;
72 struct hlist_node node;
73};
74
75
76
77
78
79
80
81
82struct signal_struct {
83 refcount_t sigcnt;
84 atomic_t live;
85 int nr_threads;
86 struct list_head thread_head;
87
88 wait_queue_head_t wait_chldexit;
89
90
91 struct task_struct *curr_target;
92
93
94 struct sigpending shared_pending;
95
96
97 struct hlist_head multiprocess;
98
99
100 int group_exit_code;
101
102
103
104
105
106 int notify_count;
107 struct task_struct *group_exit_task;
108
109
110 int group_stop_count;
111 unsigned int flags;
112
113
114
115
116
117
118
119
120
121
122 unsigned int is_child_subreaper:1;
123 unsigned int has_child_subreaper:1;
124
125#ifdef CONFIG_POSIX_TIMERS
126
127
128 int posix_timer_id;
129 struct list_head posix_timers;
130
131
132 struct hrtimer real_timer;
133 ktime_t it_real_incr;
134
135
136
137
138
139
140 struct cpu_itimer it[2];
141
142
143
144
145
146 struct thread_group_cputimer cputimer;
147
148#endif
149
150 struct posix_cputimers posix_cputimers;
151
152
153 struct pid *pids[PIDTYPE_MAX];
154
155#ifdef CONFIG_NO_HZ_FULL
156 atomic_t tick_dep_mask;
157#endif
158
159 struct pid *tty_old_pgrp;
160
161
162 int leader;
163
164 struct tty_struct *tty;
165
166#ifdef CONFIG_SCHED_AUTOGROUP
167 struct autogroup *autogroup;
168#endif
169
170
171
172
173
174
175 seqlock_t stats_lock;
176 u64 utime, stime, cutime, cstime;
177 u64 gtime;
178 u64 cgtime;
179 struct prev_cputime prev_cputime;
180 unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw;
181 unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt;
182 unsigned long inblock, oublock, cinblock, coublock;
183 unsigned long maxrss, cmaxrss;
184 struct task_io_accounting ioac;
185
186
187
188
189
190
191
192 unsigned long long sum_sched_runtime;
193
194
195
196
197
198
199
200
201
202
203 struct rlimit rlim[RLIM_NLIMITS];
204
205#ifdef CONFIG_BSD_PROCESS_ACCT
206 struct pacct_struct pacct;
207#endif
208#ifdef CONFIG_TASKSTATS
209 struct taskstats *stats;
210#endif
211#ifdef CONFIG_AUDIT
212 unsigned audit_tty;
213 struct tty_audit_buf *tty_audit_buf;
214#endif
215
216
217
218
219
220 bool oom_flag_origin;
221 short oom_score_adj;
222 short oom_score_adj_min;
223
224 struct mm_struct *oom_mm;
225
226
227 struct mutex cred_guard_mutex;
228
229
230
231
232
233 struct rw_semaphore exec_update_lock;
234
235
236
237
238} __randomize_layout;
239
240
241
242
243#define SIGNAL_STOP_STOPPED 0x00000001
244#define SIGNAL_STOP_CONTINUED 0x00000002
245#define SIGNAL_GROUP_EXIT 0x00000004
246#define SIGNAL_GROUP_COREDUMP 0x00000008
247
248
249
250#define SIGNAL_CLD_STOPPED 0x00000010
251#define SIGNAL_CLD_CONTINUED 0x00000020
252#define SIGNAL_CLD_MASK (SIGNAL_CLD_STOPPED|SIGNAL_CLD_CONTINUED)
253
254#define SIGNAL_UNKILLABLE 0x00000040
255
256#define SIGNAL_STOP_MASK (SIGNAL_CLD_MASK | SIGNAL_STOP_STOPPED | \
257 SIGNAL_STOP_CONTINUED)
258
259static inline void signal_set_stop_flags(struct signal_struct *sig,
260 unsigned int flags)
261{
262 WARN_ON(sig->flags & (SIGNAL_GROUP_EXIT|SIGNAL_GROUP_COREDUMP));
263 sig->flags = (sig->flags & ~SIGNAL_STOP_MASK) | flags;
264}
265
266
267static inline int signal_group_exit(const struct signal_struct *sig)
268{
269 return (sig->flags & SIGNAL_GROUP_EXIT) ||
270 (sig->group_exit_task != NULL);
271}
272
273extern void flush_signals(struct task_struct *);
274extern void ignore_signals(struct task_struct *);
275extern void flush_signal_handlers(struct task_struct *, int force_default);
276extern int dequeue_signal(struct task_struct *task,
277 sigset_t *mask, kernel_siginfo_t *info);
278
279static inline int kernel_dequeue_signal(void)
280{
281 struct task_struct *task = current;
282 kernel_siginfo_t __info;
283 int ret;
284
285 spin_lock_irq(&task->sighand->siglock);
286 ret = dequeue_signal(task, &task->blocked, &__info);
287 spin_unlock_irq(&task->sighand->siglock);
288
289 return ret;
290}
291
292static inline void kernel_signal_stop(void)
293{
294 spin_lock_irq(¤t->sighand->siglock);
295 if (current->jobctl & JOBCTL_STOP_DEQUEUED)
296 set_special_state(TASK_STOPPED);
297 spin_unlock_irq(¤t->sighand->siglock);
298
299 schedule();
300}
301#ifdef __ia64__
302# define ___ARCH_SI_IA64(_a1, _a2, _a3) , _a1, _a2, _a3
303#else
304# define ___ARCH_SI_IA64(_a1, _a2, _a3)
305#endif
306
307int force_sig_fault_to_task(int sig, int code, void __user *addr
308 ___ARCH_SI_IA64(int imm, unsigned int flags, unsigned long isr)
309 , struct task_struct *t);
310int force_sig_fault(int sig, int code, void __user *addr
311 ___ARCH_SI_IA64(int imm, unsigned int flags, unsigned long isr));
312int send_sig_fault(int sig, int code, void __user *addr
313 ___ARCH_SI_IA64(int imm, unsigned int flags, unsigned long isr)
314 , struct task_struct *t);
315
316int force_sig_mceerr(int code, void __user *, short);
317int send_sig_mceerr(int code, void __user *, short, struct task_struct *);
318
319int force_sig_bnderr(void __user *addr, void __user *lower, void __user *upper);
320int force_sig_pkuerr(void __user *addr, u32 pkey);
321int force_sig_perf(void __user *addr, u32 type, u64 sig_data);
322
323int force_sig_ptrace_errno_trap(int errno, void __user *addr);
324int force_sig_fault_trapno(int sig, int code, void __user *addr, int trapno);
325int send_sig_fault_trapno(int sig, int code, void __user *addr, int trapno,
326 struct task_struct *t);
327int force_sig_seccomp(int syscall, int reason, bool force_coredump);
328
329extern int send_sig_info(int, struct kernel_siginfo *, struct task_struct *);
330extern void force_sigsegv(int sig);
331extern int force_sig_info(struct kernel_siginfo *);
332extern int __kill_pgrp_info(int sig, struct kernel_siginfo *info, struct pid *pgrp);
333extern int kill_pid_info(int sig, struct kernel_siginfo *info, struct pid *pid);
334extern int kill_pid_usb_asyncio(int sig, int errno, sigval_t addr, struct pid *,
335 const struct cred *);
336extern int kill_pgrp(struct pid *pid, int sig, int priv);
337extern int kill_pid(struct pid *pid, int sig, int priv);
338extern __must_check bool do_notify_parent(struct task_struct *, int);
339extern void __wake_up_parent(struct task_struct *p, struct task_struct *parent);
340extern void force_sig(int);
341extern int send_sig(int, struct task_struct *, int);
342extern int zap_other_threads(struct task_struct *p);
343extern struct sigqueue *sigqueue_alloc(void);
344extern void sigqueue_free(struct sigqueue *);
345extern int send_sigqueue(struct sigqueue *, struct pid *, enum pid_type);
346extern int do_sigaction(int, struct k_sigaction *, struct k_sigaction *);
347
348static inline int restart_syscall(void)
349{
350 set_tsk_thread_flag(current, TIF_SIGPENDING);
351 return -ERESTARTNOINTR;
352}
353
354static inline int task_sigpending(struct task_struct *p)
355{
356 return unlikely(test_tsk_thread_flag(p,TIF_SIGPENDING));
357}
358
359static inline int signal_pending(struct task_struct *p)
360{
361
362
363
364
365
366 if (unlikely(test_tsk_thread_flag(p, TIF_NOTIFY_SIGNAL)))
367 return 1;
368 return task_sigpending(p);
369}
370
371static inline int __fatal_signal_pending(struct task_struct *p)
372{
373 return unlikely(sigismember(&p->pending.signal, SIGKILL));
374}
375
376static inline int fatal_signal_pending(struct task_struct *p)
377{
378 return task_sigpending(p) && __fatal_signal_pending(p);
379}
380
381static inline int signal_pending_state(unsigned int state, struct task_struct *p)
382{
383 if (!(state & (TASK_INTERRUPTIBLE | TASK_WAKEKILL)))
384 return 0;
385 if (!signal_pending(p))
386 return 0;
387
388 return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p);
389}
390
391
392
393
394
395
396
397static inline bool fault_signal_pending(vm_fault_t fault_flags,
398 struct pt_regs *regs)
399{
400 return unlikely((fault_flags & VM_FAULT_RETRY) &&
401 (fatal_signal_pending(current) ||
402 (user_mode(regs) && signal_pending(current))));
403}
404
405
406
407
408
409
410
411extern void recalc_sigpending_and_wake(struct task_struct *t);
412extern void recalc_sigpending(void);
413extern void calculate_sigpending(void);
414
415extern void signal_wake_up_state(struct task_struct *t, unsigned int state);
416
417static inline void signal_wake_up(struct task_struct *t, bool resume)
418{
419 signal_wake_up_state(t, resume ? TASK_WAKEKILL : 0);
420}
421static inline void ptrace_signal_wake_up(struct task_struct *t, bool resume)
422{
423 signal_wake_up_state(t, resume ? __TASK_TRACED : 0);
424}
425
426void task_join_group_stop(struct task_struct *task);
427
428#ifdef TIF_RESTORE_SIGMASK
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445static inline void set_restore_sigmask(void)
446{
447 set_thread_flag(TIF_RESTORE_SIGMASK);
448}
449
450static inline void clear_tsk_restore_sigmask(struct task_struct *task)
451{
452 clear_tsk_thread_flag(task, TIF_RESTORE_SIGMASK);
453}
454
455static inline void clear_restore_sigmask(void)
456{
457 clear_thread_flag(TIF_RESTORE_SIGMASK);
458}
459static inline bool test_tsk_restore_sigmask(struct task_struct *task)
460{
461 return test_tsk_thread_flag(task, TIF_RESTORE_SIGMASK);
462}
463static inline bool test_restore_sigmask(void)
464{
465 return test_thread_flag(TIF_RESTORE_SIGMASK);
466}
467static inline bool test_and_clear_restore_sigmask(void)
468{
469 return test_and_clear_thread_flag(TIF_RESTORE_SIGMASK);
470}
471
472#else
473
474
475static inline void set_restore_sigmask(void)
476{
477 current->restore_sigmask = true;
478}
479static inline void clear_tsk_restore_sigmask(struct task_struct *task)
480{
481 task->restore_sigmask = false;
482}
483static inline void clear_restore_sigmask(void)
484{
485 current->restore_sigmask = false;
486}
487static inline bool test_restore_sigmask(void)
488{
489 return current->restore_sigmask;
490}
491static inline bool test_tsk_restore_sigmask(struct task_struct *task)
492{
493 return task->restore_sigmask;
494}
495static inline bool test_and_clear_restore_sigmask(void)
496{
497 if (!current->restore_sigmask)
498 return false;
499 current->restore_sigmask = false;
500 return true;
501}
502#endif
503
504static inline void restore_saved_sigmask(void)
505{
506 if (test_and_clear_restore_sigmask())
507 __set_current_blocked(¤t->saved_sigmask);
508}
509
510extern int set_user_sigmask(const sigset_t __user *umask, size_t sigsetsize);
511
512static inline void restore_saved_sigmask_unless(bool interrupted)
513{
514 if (interrupted)
515 WARN_ON(!signal_pending(current));
516 else
517 restore_saved_sigmask();
518}
519
520static inline sigset_t *sigmask_to_save(void)
521{
522 sigset_t *res = ¤t->blocked;
523 if (unlikely(test_restore_sigmask()))
524 res = ¤t->saved_sigmask;
525 return res;
526}
527
528static inline int kill_cad_pid(int sig, int priv)
529{
530 return kill_pid(cad_pid, sig, priv);
531}
532
533
534#define SEND_SIG_NOINFO ((struct kernel_siginfo *) 0)
535#define SEND_SIG_PRIV ((struct kernel_siginfo *) 1)
536
537static inline int __on_sig_stack(unsigned long sp)
538{
539#ifdef CONFIG_STACK_GROWSUP
540 return sp >= current->sas_ss_sp &&
541 sp - current->sas_ss_sp < current->sas_ss_size;
542#else
543 return sp > current->sas_ss_sp &&
544 sp - current->sas_ss_sp <= current->sas_ss_size;
545#endif
546}
547
548
549
550
551static inline int on_sig_stack(unsigned long sp)
552{
553
554
555
556
557
558
559
560
561
562 if (current->sas_ss_flags & SS_AUTODISARM)
563 return 0;
564
565 return __on_sig_stack(sp);
566}
567
568static inline int sas_ss_flags(unsigned long sp)
569{
570 if (!current->sas_ss_size)
571 return SS_DISABLE;
572
573 return on_sig_stack(sp) ? SS_ONSTACK : 0;
574}
575
576static inline void sas_ss_reset(struct task_struct *p)
577{
578 p->sas_ss_sp = 0;
579 p->sas_ss_size = 0;
580 p->sas_ss_flags = SS_DISABLE;
581}
582
583static inline unsigned long sigsp(unsigned long sp, struct ksignal *ksig)
584{
585 if (unlikely((ksig->ka.sa.sa_flags & SA_ONSTACK)) && ! sas_ss_flags(sp))
586#ifdef CONFIG_STACK_GROWSUP
587 return current->sas_ss_sp;
588#else
589 return current->sas_ss_sp + current->sas_ss_size;
590#endif
591 return sp;
592}
593
594extern void __cleanup_sighand(struct sighand_struct *);
595extern void flush_itimer_signals(void);
596
597#define tasklist_empty() \
598 list_empty(&init_task.tasks)
599
600#define next_task(p) \
601 list_entry_rcu((p)->tasks.next, struct task_struct, tasks)
602
603#define for_each_process(p) \
604 for (p = &init_task ; (p = next_task(p)) != &init_task ; )
605
606extern bool current_is_single_threaded(void);
607
608
609
610
611
612#define do_each_thread(g, t) \
613 for (g = t = &init_task ; (g = t = next_task(g)) != &init_task ; ) do
614
615#define while_each_thread(g, t) \
616 while ((t = next_thread(t)) != g)
617
618#define __for_each_thread(signal, t) \
619 list_for_each_entry_rcu(t, &(signal)->thread_head, thread_node)
620
621#define for_each_thread(p, t) \
622 __for_each_thread((p)->signal, t)
623
624
625#define for_each_process_thread(p, t) \
626 for_each_process(p) for_each_thread(p, t)
627
628typedef int (*proc_visitor)(struct task_struct *p, void *data);
629void walk_process_tree(struct task_struct *top, proc_visitor, void *);
630
631static inline
632struct pid *task_pid_type(struct task_struct *task, enum pid_type type)
633{
634 struct pid *pid;
635 if (type == PIDTYPE_PID)
636 pid = task_pid(task);
637 else
638 pid = task->signal->pids[type];
639 return pid;
640}
641
642static inline struct pid *task_tgid(struct task_struct *task)
643{
644 return task->signal->pids[PIDTYPE_TGID];
645}
646
647
648
649
650
651
652static inline struct pid *task_pgrp(struct task_struct *task)
653{
654 return task->signal->pids[PIDTYPE_PGID];
655}
656
657static inline struct pid *task_session(struct task_struct *task)
658{
659 return task->signal->pids[PIDTYPE_SID];
660}
661
662static inline int get_nr_threads(struct task_struct *task)
663{
664 return task->signal->nr_threads;
665}
666
667static inline bool thread_group_leader(struct task_struct *p)
668{
669 return p->exit_signal >= 0;
670}
671
672static inline
673bool same_thread_group(struct task_struct *p1, struct task_struct *p2)
674{
675 return p1->signal == p2->signal;
676}
677
678static inline struct task_struct *next_thread(const struct task_struct *p)
679{
680 return list_entry_rcu(p->thread_group.next,
681 struct task_struct, thread_group);
682}
683
684static inline int thread_group_empty(struct task_struct *p)
685{
686 return list_empty(&p->thread_group);
687}
688
689#define delay_group_leader(p) \
690 (thread_group_leader(p) && !thread_group_empty(p))
691
692extern bool thread_group_exited(struct pid *pid);
693
694extern struct sighand_struct *__lock_task_sighand(struct task_struct *task,
695 unsigned long *flags);
696
697static inline struct sighand_struct *lock_task_sighand(struct task_struct *task,
698 unsigned long *flags)
699{
700 struct sighand_struct *ret;
701
702 ret = __lock_task_sighand(task, flags);
703 (void)__cond_lock(&task->sighand->siglock, ret);
704 return ret;
705}
706
707static inline void unlock_task_sighand(struct task_struct *task,
708 unsigned long *flags)
709{
710 spin_unlock_irqrestore(&task->sighand->siglock, *flags);
711}
712
713#ifdef CONFIG_LOCKDEP
714extern void lockdep_assert_task_sighand_held(struct task_struct *task);
715#else
716static inline void lockdep_assert_task_sighand_held(struct task_struct *task) { }
717#endif
718
719static inline unsigned long task_rlimit(const struct task_struct *task,
720 unsigned int limit)
721{
722 return READ_ONCE(task->signal->rlim[limit].rlim_cur);
723}
724
725static inline unsigned long task_rlimit_max(const struct task_struct *task,
726 unsigned int limit)
727{
728 return READ_ONCE(task->signal->rlim[limit].rlim_max);
729}
730
731static inline unsigned long rlimit(unsigned int limit)
732{
733 return task_rlimit(current, limit);
734}
735
736static inline unsigned long rlimit_max(unsigned int limit)
737{
738 return task_rlimit_max(current, limit);
739}
740
741#endif
742