blob: c70ef656d0f40cf4fc603d0a7dbb70ba1820af73 [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>
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000014
15#include <asm/pgtable.h>
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),
29#ifdef CONFIG_POSIX_TIMERS
30 .posix_timers = LIST_HEAD_INIT(init_signals.posix_timers),
31 .cputimer = {
32 .cputime_atomic = INIT_CPUTIME_ATOMIC,
33 .running = false,
34 .checking_timer = false,
35 },
36#endif
37 INIT_CPU_TIMERS(init_signals)
Eric W. Biederman2c470472017-09-26 13:06:43 -050038 .pids = {
39 [PIDTYPE_PID] = &init_struct_pid,
Eric W. Biederman6883f812017-06-04 04:32:13 -050040 [PIDTYPE_TGID] = &init_struct_pid,
Eric W. Biederman2c470472017-09-26 13:06:43 -050041 [PIDTYPE_PGID] = &init_struct_pid,
42 [PIDTYPE_SID] = &init_struct_pid,
43 },
David Howells3678e2f2018-01-02 15:12:01 +000044 INIT_PREV_CPUTIME(init_signals)
45};
46
47static struct sighand_struct init_sighand = {
Elena Reshetova60d4de32019-01-18 14:27:27 +020048 .count = REFCOUNT_INIT(1),
David Howells3678e2f2018-01-02 15:12:01 +000049 .action = { { { .sa_handler = SIG_DFL, } }, },
50 .siglock = __SPIN_LOCK_UNLOCKED(init_sighand.siglock),
51 .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(init_sighand.signalfd_wqh),
52};
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000053
David Howellsd11ed3a2018-01-02 15:12:01 +000054/*
55 * Set up the first task table, touch at your own risk!. Base=0,
56 * limit=0x1fffff (=2MB)
57 */
David Howells05008712018-01-02 15:12:01 +000058struct task_struct init_task
59#ifdef CONFIG_ARCH_TASK_STRUCT_ON_STACK
60 __init_task_data
61#endif
David Howellsd11ed3a2018-01-02 15:12:01 +000062= {
David Howells4e7e3ad2018-01-02 15:12:01 +000063#ifdef CONFIG_THREAD_INFO_IN_TASK
64 .thread_info = INIT_THREAD_INFO(init_task),
Elena Reshetovaf0b89d32019-01-18 14:27:30 +020065 .stack_refcount = REFCOUNT_INIT(1),
David Howells4e7e3ad2018-01-02 15:12:01 +000066#endif
David Howellsd11ed3a2018-01-02 15:12:01 +000067 .state = 0,
68 .stack = init_stack,
Elena Reshetovaec1d2812019-01-18 14:27:29 +020069 .usage = REFCOUNT_INIT(2),
David Howellsd11ed3a2018-01-02 15:12:01 +000070 .flags = PF_KTHREAD,
David Howells4e7e3ad2018-01-02 15:12:01 +000071 .prio = MAX_PRIO - 20,
72 .static_prio = MAX_PRIO - 20,
73 .normal_prio = MAX_PRIO - 20,
David Howellsd11ed3a2018-01-02 15:12:01 +000074 .policy = SCHED_NORMAL,
75 .cpus_allowed = CPU_MASK_ALL,
76 .nr_cpus_allowed= NR_CPUS,
77 .mm = NULL,
78 .active_mm = &init_mm,
David Howells4e7e3ad2018-01-02 15:12:01 +000079 .restart_block = {
David Howellsd11ed3a2018-01-02 15:12:01 +000080 .fn = do_no_restart_syscall,
81 },
82 .se = {
83 .group_node = LIST_HEAD_INIT(init_task.se.group_node),
84 },
85 .rt = {
86 .run_list = LIST_HEAD_INIT(init_task.rt.run_list),
87 .time_slice = RR_TIMESLICE,
88 },
89 .tasks = LIST_HEAD_INIT(init_task.tasks),
David Howells4e7e3ad2018-01-02 15:12:01 +000090#ifdef CONFIG_SMP
91 .pushable_tasks = PLIST_NODE_INIT(init_task.pushable_tasks, MAX_PRIO),
92#endif
93#ifdef CONFIG_CGROUP_SCHED
94 .sched_task_group = &root_task_group,
95#endif
David Howellsd11ed3a2018-01-02 15:12:01 +000096 .ptraced = LIST_HEAD_INIT(init_task.ptraced),
97 .ptrace_entry = LIST_HEAD_INIT(init_task.ptrace_entry),
98 .real_parent = &init_task,
99 .parent = &init_task,
100 .children = LIST_HEAD_INIT(init_task.children),
101 .sibling = LIST_HEAD_INIT(init_task.sibling),
102 .group_leader = &init_task,
103 RCU_POINTER_INITIALIZER(real_cred, &init_cred),
104 RCU_POINTER_INITIALIZER(cred, &init_cred),
105 .comm = INIT_TASK_COMM,
106 .thread = INIT_THREAD,
107 .fs = &init_fs,
108 .files = &init_files,
109 .signal = &init_signals,
110 .sighand = &init_sighand,
111 .nsproxy = &init_nsproxy,
112 .pending = {
113 .list = LIST_HEAD_INIT(init_task.pending.list),
114 .signal = {{0}}
115 },
116 .blocked = {{0}},
117 .alloc_lock = __SPIN_LOCK_UNLOCKED(init_task.alloc_lock),
118 .journal_info = NULL,
119 INIT_CPU_TIMERS(init_task)
120 .pi_lock = __RAW_SPIN_LOCK_UNLOCKED(init_task.pi_lock),
121 .timer_slack_ns = 50000, /* 50 usec default slack */
Eric W. Biederman2c470472017-09-26 13:06:43 -0500122 .thread_pid = &init_struct_pid,
David Howellsd11ed3a2018-01-02 15:12:01 +0000123 .thread_group = LIST_HEAD_INIT(init_task.thread_group),
124 .thread_node = LIST_HEAD_INIT(init_signals.thread_head),
Richard Guy Briggs4b7d2482019-01-22 17:06:39 -0500125#ifdef CONFIG_AUDIT
David Howells4e7e3ad2018-01-02 15:12:01 +0000126 .loginuid = INVALID_UID,
Richard Guy Briggsf0b75212018-05-12 21:58:19 -0400127 .sessionid = AUDIT_SID_UNSET,
David Howells4e7e3ad2018-01-02 15:12:01 +0000128#endif
129#ifdef CONFIG_PERF_EVENTS
130 .perf_event_mutex = __MUTEX_INITIALIZER(init_task.perf_event_mutex),
131 .perf_event_list = LIST_HEAD_INIT(init_task.perf_event_list),
132#endif
133#ifdef CONFIG_PREEMPT_RCU
134 .rcu_read_lock_nesting = 0,
135 .rcu_read_unlock_special.s = 0,
136 .rcu_node_entry = LIST_HEAD_INIT(init_task.rcu_node_entry),
137 .rcu_blocked_node = NULL,
138#endif
139#ifdef CONFIG_TASKS_RCU
140 .rcu_tasks_holdout = false,
141 .rcu_tasks_holdout_list = LIST_HEAD_INIT(init_task.rcu_tasks_holdout_list),
142 .rcu_tasks_idle_cpu = -1,
143#endif
144#ifdef CONFIG_CPUSETS
145 .mems_allowed_seq = SEQCNT_ZERO(init_task.mems_allowed_seq),
146#endif
147#ifdef CONFIG_RT_MUTEXES
148 .pi_waiters = RB_ROOT_CACHED,
149 .pi_top_task = NULL,
150#endif
David Howellsd11ed3a2018-01-02 15:12:01 +0000151 INIT_PREV_CPUTIME(init_task)
David Howells4e7e3ad2018-01-02 15:12:01 +0000152#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
153 .vtime.seqcount = SEQCNT_ZERO(init_task.vtime_seqcount),
154 .vtime.starttime = 0,
155 .vtime.state = VTIME_SYS,
156#endif
157#ifdef CONFIG_NUMA_BALANCING
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800158 .numa_preferred_nid = NUMA_NO_NODE,
David Howells4e7e3ad2018-01-02 15:12:01 +0000159 .numa_group = NULL,
160 .numa_faults = NULL,
161#endif
162#ifdef CONFIG_KASAN
163 .kasan_depth = 1,
164#endif
165#ifdef CONFIG_TRACE_IRQFLAGS
166 .softirqs_enabled = 1,
167#endif
168#ifdef CONFIG_LOCKDEP
169 .lockdep_recursion = 0,
170#endif
171#ifdef CONFIG_FUNCTION_GRAPH_TRACER
172 .ret_stack = NULL,
173#endif
174#if defined(CONFIG_TRACING) && defined(CONFIG_PREEMPT)
175 .trace_recursion = 0,
176#endif
177#ifdef CONFIG_LIVEPATCH
178 .patch_state = KLP_UNDEFINED,
179#endif
180#ifdef CONFIG_SECURITY
181 .security = NULL,
182#endif
David Howellsd11ed3a2018-01-02 15:12:01 +0000183};
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +0000184EXPORT_SYMBOL(init_task);
185
186/*
187 * Initial thread structure. Alignment of this is handled by a special
188 * linker map entry.
189 */
Andy Lutomirskic65eacb2016-09-13 14:29:24 -0700190#ifndef CONFIG_THREAD_INFO_IN_TASK
David Howells05008712018-01-02 15:12:01 +0000191struct thread_info init_thread_info __init_thread_info = INIT_THREAD_INFO(init_task);
Andy Lutomirskic65eacb2016-09-13 14:29:24 -0700192#endif