blob: a56f0abb63e934e3d3de3f9cabf7dd2d9cc760f0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +00002#include <linux/init_task.h>
3#include <linux/export.h>
4#include <linux/mqueue.h>
5#include <linux/sched.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -06006#include <linux/sched/sysctl.h>
Clark Williams8bd75c72013-02-07 09:47:07 -06007#include <linux/sched/rt.h>
Ingo Molnar9164bb42017-02-04 01:20:53 +01008#include <linux/sched/task.h>
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +00009#include <linux/init.h>
10#include <linux/fs.h>
11#include <linux/mm.h>
Richard Guy Briggsf0b75212018-05-12 21:58:19 -040012#include <linux/audit.h>
Anshuman Khandual98fa15f2019-03-05 15:42:58 -080013#include <linux/numa.h>
Sami Tolvanend08b9f02020-04-27 09:00:07 -070014#include <linux/scs.h>
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000015
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080016#include <linux/uaccess.h>
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000017
David Howells3678e2f2018-01-02 15:12:01 +000018static struct signal_struct init_signals = {
19 .nr_threads = 1,
20 .thread_head = LIST_HEAD_INIT(init_task.thread_node),
21 .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(init_signals.wait_chldexit),
22 .shared_pending = {
23 .list = LIST_HEAD_INIT(init_signals.shared_pending.list),
24 .signal = {{0}}
25 },
Eric W. Biedermanc3ad2c32018-07-23 15:20:37 -050026 .multiprocess = HLIST_HEAD_INIT,
David Howells3678e2f2018-01-02 15:12:01 +000027 .rlim = INIT_RLIMITS,
28 .cred_guard_mutex = __MUTEX_INITIALIZER(init_signals.cred_guard_mutex),
Eric W. Biedermaneea96732020-03-25 10:03:36 -050029 .exec_update_mutex = __MUTEX_INITIALIZER(init_signals.exec_update_mutex),
David Howells3678e2f2018-01-02 15:12:01 +000030#ifdef CONFIG_POSIX_TIMERS
31 .posix_timers = LIST_HEAD_INIT(init_signals.posix_timers),
32 .cputimer = {
33 .cputime_atomic = INIT_CPUTIME_ATOMIC,
David Howells3678e2f2018-01-02 15:12:01 +000034 },
35#endif
36 INIT_CPU_TIMERS(init_signals)
Eric W. Biederman2c470472017-09-26 13:06:43 -050037 .pids = {
38 [PIDTYPE_PID] = &init_struct_pid,
Eric W. Biederman6883f812017-06-04 04:32:13 -050039 [PIDTYPE_TGID] = &init_struct_pid,
Eric W. Biederman2c470472017-09-26 13:06:43 -050040 [PIDTYPE_PGID] = &init_struct_pid,
41 [PIDTYPE_SID] = &init_struct_pid,
42 },
David Howells3678e2f2018-01-02 15:12:01 +000043 INIT_PREV_CPUTIME(init_signals)
44};
45
46static struct sighand_struct init_sighand = {
Elena Reshetova60d4de32019-01-18 14:27:27 +020047 .count = REFCOUNT_INIT(1),
David Howells3678e2f2018-01-02 15:12:01 +000048 .action = { { { .sa_handler = SIG_DFL, } }, },
49 .siglock = __SPIN_LOCK_UNLOCKED(init_sighand.siglock),
50 .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(init_sighand.signalfd_wqh),
51};
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000052
Sami Tolvanend08b9f02020-04-27 09:00:07 -070053#ifdef CONFIG_SHADOW_CALL_STACK
54unsigned long init_shadow_call_stack[SCS_SIZE / sizeof(long)]
55 __init_task_data = {
56 [(SCS_SIZE / sizeof(long)) - 1] = SCS_END_MAGIC
57};
58#endif
59
David Howellsd11ed3a2018-01-02 15:12:01 +000060/*
61 * Set up the first task table, touch at your own risk!. Base=0,
62 * limit=0x1fffff (=2MB)
63 */
David Howells05008712018-01-02 15:12:01 +000064struct task_struct init_task
65#ifdef CONFIG_ARCH_TASK_STRUCT_ON_STACK
66 __init_task_data
67#endif
Stafford Horned0b72132020-06-26 05:24:24 +090068 __aligned(L1_CACHE_BYTES)
David Howellsd11ed3a2018-01-02 15:12:01 +000069= {
David Howells4e7e3ad2018-01-02 15:12:01 +000070#ifdef CONFIG_THREAD_INFO_IN_TASK
71 .thread_info = INIT_THREAD_INFO(init_task),
Elena Reshetovaf0b89d32019-01-18 14:27:30 +020072 .stack_refcount = REFCOUNT_INIT(1),
David Howells4e7e3ad2018-01-02 15:12:01 +000073#endif
David Howellsd11ed3a2018-01-02 15:12:01 +000074 .state = 0,
75 .stack = init_stack,
Elena Reshetovaec1d2812019-01-18 14:27:29 +020076 .usage = REFCOUNT_INIT(2),
David Howellsd11ed3a2018-01-02 15:12:01 +000077 .flags = PF_KTHREAD,
David Howells4e7e3ad2018-01-02 15:12:01 +000078 .prio = MAX_PRIO - 20,
79 .static_prio = MAX_PRIO - 20,
80 .normal_prio = MAX_PRIO - 20,
David Howellsd11ed3a2018-01-02 15:12:01 +000081 .policy = SCHED_NORMAL,
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +020082 .cpus_ptr = &init_task.cpus_mask,
83 .cpus_mask = CPU_MASK_ALL,
David Howellsd11ed3a2018-01-02 15:12:01 +000084 .nr_cpus_allowed= NR_CPUS,
85 .mm = NULL,
86 .active_mm = &init_mm,
David Howells4e7e3ad2018-01-02 15:12:01 +000087 .restart_block = {
David Howellsd11ed3a2018-01-02 15:12:01 +000088 .fn = do_no_restart_syscall,
89 },
90 .se = {
91 .group_node = LIST_HEAD_INIT(init_task.se.group_node),
92 },
93 .rt = {
94 .run_list = LIST_HEAD_INIT(init_task.rt.run_list),
95 .time_slice = RR_TIMESLICE,
96 },
97 .tasks = LIST_HEAD_INIT(init_task.tasks),
David Howells4e7e3ad2018-01-02 15:12:01 +000098#ifdef CONFIG_SMP
99 .pushable_tasks = PLIST_NODE_INIT(init_task.pushable_tasks, MAX_PRIO),
100#endif
101#ifdef CONFIG_CGROUP_SCHED
102 .sched_task_group = &root_task_group,
103#endif
David Howellsd11ed3a2018-01-02 15:12:01 +0000104 .ptraced = LIST_HEAD_INIT(init_task.ptraced),
105 .ptrace_entry = LIST_HEAD_INIT(init_task.ptrace_entry),
106 .real_parent = &init_task,
107 .parent = &init_task,
108 .children = LIST_HEAD_INIT(init_task.children),
109 .sibling = LIST_HEAD_INIT(init_task.sibling),
110 .group_leader = &init_task,
111 RCU_POINTER_INITIALIZER(real_cred, &init_cred),
112 RCU_POINTER_INITIALIZER(cred, &init_cred),
113 .comm = INIT_TASK_COMM,
114 .thread = INIT_THREAD,
115 .fs = &init_fs,
116 .files = &init_files,
Jens Axboe0f212202020-09-13 13:09:39 -0600117#ifdef CONFIG_IO_URING
118 .io_uring = NULL,
119#endif
David Howellsd11ed3a2018-01-02 15:12:01 +0000120 .signal = &init_signals,
121 .sighand = &init_sighand,
122 .nsproxy = &init_nsproxy,
123 .pending = {
124 .list = LIST_HEAD_INIT(init_task.pending.list),
125 .signal = {{0}}
126 },
127 .blocked = {{0}},
128 .alloc_lock = __SPIN_LOCK_UNLOCKED(init_task.alloc_lock),
129 .journal_info = NULL,
130 INIT_CPU_TIMERS(init_task)
131 .pi_lock = __RAW_SPIN_LOCK_UNLOCKED(init_task.pi_lock),
132 .timer_slack_ns = 50000, /* 50 usec default slack */
Eric W. Biederman2c470472017-09-26 13:06:43 -0500133 .thread_pid = &init_struct_pid,
David Howellsd11ed3a2018-01-02 15:12:01 +0000134 .thread_group = LIST_HEAD_INIT(init_task.thread_group),
135 .thread_node = LIST_HEAD_INIT(init_signals.thread_head),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -0500136#ifdef CONFIG_AUDIT
David Howells4e7e3ad2018-01-02 15:12:01 +0000137 .loginuid = INVALID_UID,
Richard Guy Briggsf0b75212018-05-12 21:58:19 -0400138 .sessionid = AUDIT_SID_UNSET,
David Howells4e7e3ad2018-01-02 15:12:01 +0000139#endif
140#ifdef CONFIG_PERF_EVENTS
141 .perf_event_mutex = __MUTEX_INITIALIZER(init_task.perf_event_mutex),
142 .perf_event_list = LIST_HEAD_INIT(init_task.perf_event_list),
143#endif
144#ifdef CONFIG_PREEMPT_RCU
145 .rcu_read_lock_nesting = 0,
146 .rcu_read_unlock_special.s = 0,
147 .rcu_node_entry = LIST_HEAD_INIT(init_task.rcu_node_entry),
148 .rcu_blocked_node = NULL,
149#endif
150#ifdef CONFIG_TASKS_RCU
151 .rcu_tasks_holdout = false,
152 .rcu_tasks_holdout_list = LIST_HEAD_INIT(init_task.rcu_tasks_holdout_list),
153 .rcu_tasks_idle_cpu = -1,
154#endif
Paul E. McKenneyd5f177d2020-03-09 19:56:53 -0700155#ifdef CONFIG_TASKS_TRACE_RCU
156 .trc_reader_nesting = 0,
Paul E. McKenney276c4102020-03-17 16:02:06 -0700157 .trc_reader_special.s = 0,
Paul E. McKenneyd5f177d2020-03-09 19:56:53 -0700158 .trc_holdout_list = LIST_HEAD_INIT(init_task.trc_holdout_list),
159#endif
David Howells4e7e3ad2018-01-02 15:12:01 +0000160#ifdef CONFIG_CPUSETS
Ahmed S. Darwishb7505862020-07-20 17:55:19 +0200161 .mems_allowed_seq = SEQCNT_SPINLOCK_ZERO(init_task.mems_allowed_seq,
162 &init_task.alloc_lock),
David Howells4e7e3ad2018-01-02 15:12:01 +0000163#endif
164#ifdef CONFIG_RT_MUTEXES
165 .pi_waiters = RB_ROOT_CACHED,
166 .pi_top_task = NULL,
167#endif
David Howellsd11ed3a2018-01-02 15:12:01 +0000168 INIT_PREV_CPUTIME(init_task)
David Howells4e7e3ad2018-01-02 15:12:01 +0000169#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
170 .vtime.seqcount = SEQCNT_ZERO(init_task.vtime_seqcount),
171 .vtime.starttime = 0,
172 .vtime.state = VTIME_SYS,
173#endif
174#ifdef CONFIG_NUMA_BALANCING
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800175 .numa_preferred_nid = NUMA_NO_NODE,
David Howells4e7e3ad2018-01-02 15:12:01 +0000176 .numa_group = NULL,
177 .numa_faults = NULL,
178#endif
179#ifdef CONFIG_KASAN
180 .kasan_depth = 1,
181#endif
Marco Elverdfd402a2019-11-14 19:02:54 +0100182#ifdef CONFIG_KCSAN
183 .kcsan_ctx = {
184 .disable_count = 0,
185 .atomic_next = 0,
186 .atomic_nest_count = 0,
187 .in_flat_atomic = false,
Marco Elver81af89e2020-02-11 17:04:22 +0100188 .access_mask = 0,
Marco Elver757a4ce2020-03-25 17:41:56 +0100189 .scoped_accesses = {LIST_POISON1, NULL},
Marco Elverdfd402a2019-11-14 19:02:54 +0100190 },
191#endif
David Howells4e7e3ad2018-01-02 15:12:01 +0000192#ifdef CONFIG_TRACE_IRQFLAGS
193 .softirqs_enabled = 1,
194#endif
195#ifdef CONFIG_LOCKDEP
Yuyang Due196e472019-05-06 16:19:23 +0800196 .lockdep_depth = 0, /* no locks held yet */
Yuyang Duf6ec8822019-05-06 16:19:24 +0800197 .curr_chain_key = INITIAL_CHAIN_KEY,
David Howells4e7e3ad2018-01-02 15:12:01 +0000198 .lockdep_recursion = 0,
199#endif
200#ifdef CONFIG_FUNCTION_GRAPH_TRACER
201 .ret_stack = NULL,
202#endif
Thomas Gleixnerc1a280b2019-07-26 23:19:37 +0200203#if defined(CONFIG_TRACING) && defined(CONFIG_PREEMPTION)
David Howells4e7e3ad2018-01-02 15:12:01 +0000204 .trace_recursion = 0,
205#endif
206#ifdef CONFIG_LIVEPATCH
207 .patch_state = KLP_UNDEFINED,
208#endif
209#ifdef CONFIG_SECURITY
210 .security = NULL,
211#endif
Kees Cookc818c032020-05-13 14:11:26 -0700212#ifdef CONFIG_SECCOMP
213 .seccomp = { .filter_count = ATOMIC_INIT(0) },
214#endif
David Howellsd11ed3a2018-01-02 15:12:01 +0000215};
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +0000216EXPORT_SYMBOL(init_task);
217
218/*
219 * Initial thread structure. Alignment of this is handled by a special
220 * linker map entry.
221 */
Andy Lutomirskic65eacb2016-09-13 14:29:24 -0700222#ifndef CONFIG_THREAD_INFO_IN_TASK
David Howells05008712018-01-02 15:12:01 +0000223struct thread_info init_thread_info __init_thread_info = INIT_THREAD_INFO(init_task);
Andy Lutomirskic65eacb2016-09-13 14:29:24 -0700224#endif