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