fork: Have new threads join on-going signal group stops
[linux-2.6-block.git] / init / init_task.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
a4a2eb49
TG
2#include <linux/init_task.h>
3#include <linux/export.h>
4#include <linux/mqueue.h>
5#include <linux/sched.h>
cf4aebc2 6#include <linux/sched/sysctl.h>
8bd75c77 7#include <linux/sched/rt.h>
9164bb4a 8#include <linux/sched/task.h>
a4a2eb49
TG
9#include <linux/init.h>
10#include <linux/fs.h>
11#include <linux/mm.h>
f0b75216 12#include <linux/audit.h>
a4a2eb49
TG
13
14#include <asm/pgtable.h>
7c0f6ba6 15#include <linux/uaccess.h>
a4a2eb49 16
3678e2fc
DH
17static struct signal_struct init_signals = {
18 .nr_threads = 1,
19 .thread_head = LIST_HEAD_INIT(init_task.thread_node),
20 .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(init_signals.wait_chldexit),
21 .shared_pending = {
22 .list = LIST_HEAD_INIT(init_signals.shared_pending.list),
23 .signal = {{0}}
24 },
25 .rlim = INIT_RLIMITS,
26 .cred_guard_mutex = __MUTEX_INITIALIZER(init_signals.cred_guard_mutex),
27#ifdef CONFIG_POSIX_TIMERS
28 .posix_timers = LIST_HEAD_INIT(init_signals.posix_timers),
29 .cputimer = {
30 .cputime_atomic = INIT_CPUTIME_ATOMIC,
31 .running = false,
32 .checking_timer = false,
33 },
34#endif
35 INIT_CPU_TIMERS(init_signals)
2c470475
EB
36 .pids = {
37 [PIDTYPE_PID] = &init_struct_pid,
6883f81a 38 [PIDTYPE_TGID] = &init_struct_pid,
2c470475
EB
39 [PIDTYPE_PGID] = &init_struct_pid,
40 [PIDTYPE_SID] = &init_struct_pid,
41 },
3678e2fc
DH
42 INIT_PREV_CPUTIME(init_signals)
43};
44
45static struct sighand_struct init_sighand = {
46 .count = ATOMIC_INIT(1),
47 .action = { { { .sa_handler = SIG_DFL, } }, },
48 .siglock = __SPIN_LOCK_UNLOCKED(init_sighand.siglock),
49 .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(init_sighand.signalfd_wqh),
50};
a4a2eb49 51
d11ed3ab
DH
52/*
53 * Set up the first task table, touch at your own risk!. Base=0,
54 * limit=0x1fffff (=2MB)
55 */
0500871f
DH
56struct task_struct init_task
57#ifdef CONFIG_ARCH_TASK_STRUCT_ON_STACK
58 __init_task_data
59#endif
d11ed3ab 60= {
4e7e3adb
DH
61#ifdef CONFIG_THREAD_INFO_IN_TASK
62 .thread_info = INIT_THREAD_INFO(init_task),
63 .stack_refcount = ATOMIC_INIT(1),
64#endif
d11ed3ab
DH
65 .state = 0,
66 .stack = init_stack,
67 .usage = ATOMIC_INIT(2),
68 .flags = PF_KTHREAD,
4e7e3adb
DH
69 .prio = MAX_PRIO - 20,
70 .static_prio = MAX_PRIO - 20,
71 .normal_prio = MAX_PRIO - 20,
d11ed3ab
DH
72 .policy = SCHED_NORMAL,
73 .cpus_allowed = CPU_MASK_ALL,
74 .nr_cpus_allowed= NR_CPUS,
75 .mm = NULL,
76 .active_mm = &init_mm,
4e7e3adb 77 .restart_block = {
d11ed3ab
DH
78 .fn = do_no_restart_syscall,
79 },
80 .se = {
81 .group_node = LIST_HEAD_INIT(init_task.se.group_node),
82 },
83 .rt = {
84 .run_list = LIST_HEAD_INIT(init_task.rt.run_list),
85 .time_slice = RR_TIMESLICE,
86 },
87 .tasks = LIST_HEAD_INIT(init_task.tasks),
4e7e3adb
DH
88#ifdef CONFIG_SMP
89 .pushable_tasks = PLIST_NODE_INIT(init_task.pushable_tasks, MAX_PRIO),
90#endif
91#ifdef CONFIG_CGROUP_SCHED
92 .sched_task_group = &root_task_group,
93#endif
d11ed3ab
DH
94 .ptraced = LIST_HEAD_INIT(init_task.ptraced),
95 .ptrace_entry = LIST_HEAD_INIT(init_task.ptrace_entry),
96 .real_parent = &init_task,
97 .parent = &init_task,
98 .children = LIST_HEAD_INIT(init_task.children),
99 .sibling = LIST_HEAD_INIT(init_task.sibling),
100 .group_leader = &init_task,
101 RCU_POINTER_INITIALIZER(real_cred, &init_cred),
102 RCU_POINTER_INITIALIZER(cred, &init_cred),
103 .comm = INIT_TASK_COMM,
104 .thread = INIT_THREAD,
105 .fs = &init_fs,
106 .files = &init_files,
107 .signal = &init_signals,
108 .sighand = &init_sighand,
109 .nsproxy = &init_nsproxy,
110 .pending = {
111 .list = LIST_HEAD_INIT(init_task.pending.list),
112 .signal = {{0}}
113 },
114 .blocked = {{0}},
115 .alloc_lock = __SPIN_LOCK_UNLOCKED(init_task.alloc_lock),
116 .journal_info = NULL,
117 INIT_CPU_TIMERS(init_task)
118 .pi_lock = __RAW_SPIN_LOCK_UNLOCKED(init_task.pi_lock),
119 .timer_slack_ns = 50000, /* 50 usec default slack */
2c470475 120 .thread_pid = &init_struct_pid,
d11ed3ab
DH
121 .thread_group = LIST_HEAD_INIT(init_task.thread_group),
122 .thread_node = LIST_HEAD_INIT(init_signals.thread_head),
4e7e3adb
DH
123#ifdef CONFIG_AUDITSYSCALL
124 .loginuid = INVALID_UID,
f0b75216 125 .sessionid = AUDIT_SID_UNSET,
4e7e3adb
DH
126#endif
127#ifdef CONFIG_PERF_EVENTS
128 .perf_event_mutex = __MUTEX_INITIALIZER(init_task.perf_event_mutex),
129 .perf_event_list = LIST_HEAD_INIT(init_task.perf_event_list),
130#endif
131#ifdef CONFIG_PREEMPT_RCU
132 .rcu_read_lock_nesting = 0,
133 .rcu_read_unlock_special.s = 0,
134 .rcu_node_entry = LIST_HEAD_INIT(init_task.rcu_node_entry),
135 .rcu_blocked_node = NULL,
136#endif
137#ifdef CONFIG_TASKS_RCU
138 .rcu_tasks_holdout = false,
139 .rcu_tasks_holdout_list = LIST_HEAD_INIT(init_task.rcu_tasks_holdout_list),
140 .rcu_tasks_idle_cpu = -1,
141#endif
142#ifdef CONFIG_CPUSETS
143 .mems_allowed_seq = SEQCNT_ZERO(init_task.mems_allowed_seq),
144#endif
145#ifdef CONFIG_RT_MUTEXES
146 .pi_waiters = RB_ROOT_CACHED,
147 .pi_top_task = NULL,
148#endif
d11ed3ab 149 INIT_PREV_CPUTIME(init_task)
4e7e3adb
DH
150#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
151 .vtime.seqcount = SEQCNT_ZERO(init_task.vtime_seqcount),
152 .vtime.starttime = 0,
153 .vtime.state = VTIME_SYS,
154#endif
155#ifdef CONFIG_NUMA_BALANCING
156 .numa_preferred_nid = -1,
157 .numa_group = NULL,
158 .numa_faults = NULL,
159#endif
160#ifdef CONFIG_KASAN
161 .kasan_depth = 1,
162#endif
163#ifdef CONFIG_TRACE_IRQFLAGS
164 .softirqs_enabled = 1,
165#endif
166#ifdef CONFIG_LOCKDEP
167 .lockdep_recursion = 0,
168#endif
169#ifdef CONFIG_FUNCTION_GRAPH_TRACER
170 .ret_stack = NULL,
171#endif
172#if defined(CONFIG_TRACING) && defined(CONFIG_PREEMPT)
173 .trace_recursion = 0,
174#endif
175#ifdef CONFIG_LIVEPATCH
176 .patch_state = KLP_UNDEFINED,
177#endif
178#ifdef CONFIG_SECURITY
179 .security = NULL,
180#endif
d11ed3ab 181};
a4a2eb49
TG
182EXPORT_SYMBOL(init_task);
183
184/*
185 * Initial thread structure. Alignment of this is handled by a special
186 * linker map entry.
187 */
c65eacbe 188#ifndef CONFIG_THREAD_INFO_IN_TASK
0500871f 189struct thread_info init_thread_info __init_thread_info = INIT_THREAD_INFO(init_task);
c65eacbe 190#endif