blob: 4f97846256d7c5e967b77591ec246ad5bc4c36a2 [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>
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000013
14#include <asm/pgtable.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080015#include <linux/uaccess.h>
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000016
David Howells3678e2f2018-01-02 15:12:01 +000017static 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)
Eric W. Biederman2c470472017-09-26 13:06:43 -050036 .pids = {
37 [PIDTYPE_PID] = &init_struct_pid,
Eric W. Biederman6883f812017-06-04 04:32:13 -050038 [PIDTYPE_TGID] = &init_struct_pid,
Eric W. Biederman2c470472017-09-26 13:06:43 -050039 [PIDTYPE_PGID] = &init_struct_pid,
40 [PIDTYPE_SID] = &init_struct_pid,
41 },
David Howells3678e2f2018-01-02 15:12:01 +000042 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};
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +000051
David Howellsd11ed3a2018-01-02 15:12:01 +000052/*
53 * Set up the first task table, touch at your own risk!. Base=0,
54 * limit=0x1fffff (=2MB)
55 */
David Howells05008712018-01-02 15:12:01 +000056struct task_struct init_task
57#ifdef CONFIG_ARCH_TASK_STRUCT_ON_STACK
58 __init_task_data
59#endif
David Howellsd11ed3a2018-01-02 15:12:01 +000060= {
David Howells4e7e3ad2018-01-02 15:12:01 +000061#ifdef CONFIG_THREAD_INFO_IN_TASK
62 .thread_info = INIT_THREAD_INFO(init_task),
63 .stack_refcount = ATOMIC_INIT(1),
64#endif
David Howellsd11ed3a2018-01-02 15:12:01 +000065 .state = 0,
66 .stack = init_stack,
67 .usage = ATOMIC_INIT(2),
68 .flags = PF_KTHREAD,
David Howells4e7e3ad2018-01-02 15:12:01 +000069 .prio = MAX_PRIO - 20,
70 .static_prio = MAX_PRIO - 20,
71 .normal_prio = MAX_PRIO - 20,
David Howellsd11ed3a2018-01-02 15:12:01 +000072 .policy = SCHED_NORMAL,
73 .cpus_allowed = CPU_MASK_ALL,
74 .nr_cpus_allowed= NR_CPUS,
75 .mm = NULL,
76 .active_mm = &init_mm,
David Howells4e7e3ad2018-01-02 15:12:01 +000077 .restart_block = {
David Howellsd11ed3a2018-01-02 15:12:01 +000078 .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),
David Howells4e7e3ad2018-01-02 15:12:01 +000088#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
David Howellsd11ed3a2018-01-02 15:12:01 +000094 .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 */
Eric W. Biederman2c470472017-09-26 13:06:43 -0500120 .thread_pid = &init_struct_pid,
David Howellsd11ed3a2018-01-02 15:12:01 +0000121 .thread_group = LIST_HEAD_INIT(init_task.thread_group),
122 .thread_node = LIST_HEAD_INIT(init_signals.thread_head),
David Howells4e7e3ad2018-01-02 15:12:01 +0000123#ifdef CONFIG_AUDITSYSCALL
124 .loginuid = INVALID_UID,
Richard Guy Briggsf0b75212018-05-12 21:58:19 -0400125 .sessionid = AUDIT_SID_UNSET,
David Howells4e7e3ad2018-01-02 15:12:01 +0000126#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
David Howellsd11ed3a2018-01-02 15:12:01 +0000149 INIT_PREV_CPUTIME(init_task)
David Howells4e7e3ad2018-01-02 15:12:01 +0000150#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
David Howellsd11ed3a2018-01-02 15:12:01 +0000181};
Thomas Gleixnera4a2eb42012-05-03 09:02:48 +0000182EXPORT_SYMBOL(init_task);
183
184/*
185 * Initial thread structure. Alignment of this is handled by a special
186 * linker map entry.
187 */
Andy Lutomirskic65eacb2016-09-13 14:29:24 -0700188#ifndef CONFIG_THREAD_INFO_IN_TASK
David Howells05008712018-01-02 15:12:01 +0000189struct thread_info init_thread_info __init_thread_info = INIT_THREAD_INFO(init_task);
Andy Lutomirskic65eacb2016-09-13 14:29:24 -0700190#endif