Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 2 | #include <linux/init_task.h> |
| 3 | #include <linux/export.h> |
| 4 | #include <linux/mqueue.h> |
| 5 | #include <linux/sched.h> |
Clark Williams | cf4aebc2 | 2013-02-07 09:46:59 -0600 | [diff] [blame] | 6 | #include <linux/sched/sysctl.h> |
Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 7 | #include <linux/sched/rt.h> |
Ingo Molnar | 9164bb4 | 2017-02-04 01:20:53 +0100 | [diff] [blame] | 8 | #include <linux/sched/task.h> |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 9 | #include <linux/init.h> |
| 10 | #include <linux/fs.h> |
| 11 | #include <linux/mm.h> |
Richard Guy Briggs | f0b7521 | 2018-05-12 21:58:19 -0400 | [diff] [blame] | 12 | #include <linux/audit.h> |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 13 | #include <linux/numa.h> |
Sami Tolvanen | d08b9f0 | 2020-04-27 09:00:07 -0700 | [diff] [blame] | 14 | #include <linux/scs.h> |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 15 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 16 | #include <linux/uaccess.h> |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 17 | |
David Howells | 3678e2f | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 18 | static 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. Biederman | c3ad2c3 | 2018-07-23 15:20:37 -0500 | [diff] [blame] | 26 | .multiprocess = HLIST_HEAD_INIT, |
David Howells | 3678e2f | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 27 | .rlim = INIT_RLIMITS, |
| 28 | .cred_guard_mutex = __MUTEX_INITIALIZER(init_signals.cred_guard_mutex), |
Eric W. Biederman | f7cfd87 | 2020-12-03 14:12:00 -0600 | [diff] [blame] | 29 | .exec_update_lock = __RWSEM_INITIALIZER(init_signals.exec_update_lock), |
David Howells | 3678e2f | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 30 | #ifdef CONFIG_POSIX_TIMERS |
| 31 | .posix_timers = LIST_HEAD_INIT(init_signals.posix_timers), |
| 32 | .cputimer = { |
| 33 | .cputime_atomic = INIT_CPUTIME_ATOMIC, |
David Howells | 3678e2f | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 34 | }, |
| 35 | #endif |
| 36 | INIT_CPU_TIMERS(init_signals) |
Eric W. Biederman | 2c47047 | 2017-09-26 13:06:43 -0500 | [diff] [blame] | 37 | .pids = { |
| 38 | [PIDTYPE_PID] = &init_struct_pid, |
Eric W. Biederman | 6883f81 | 2017-06-04 04:32:13 -0500 | [diff] [blame] | 39 | [PIDTYPE_TGID] = &init_struct_pid, |
Eric W. Biederman | 2c47047 | 2017-09-26 13:06:43 -0500 | [diff] [blame] | 40 | [PIDTYPE_PGID] = &init_struct_pid, |
| 41 | [PIDTYPE_SID] = &init_struct_pid, |
| 42 | }, |
David Howells | 3678e2f | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 43 | INIT_PREV_CPUTIME(init_signals) |
| 44 | }; |
| 45 | |
| 46 | static struct sighand_struct init_sighand = { |
Elena Reshetova | 60d4de3 | 2019-01-18 14:27:27 +0200 | [diff] [blame] | 47 | .count = REFCOUNT_INIT(1), |
David Howells | 3678e2f | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 48 | .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 Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 52 | |
Sami Tolvanen | d08b9f0 | 2020-04-27 09:00:07 -0700 | [diff] [blame] | 53 | #ifdef CONFIG_SHADOW_CALL_STACK |
| 54 | unsigned 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 Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 60 | /* |
| 61 | * Set up the first task table, touch at your own risk!. Base=0, |
| 62 | * limit=0x1fffff (=2MB) |
| 63 | */ |
David Howells | 0500871 | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 64 | struct task_struct init_task |
| 65 | #ifdef CONFIG_ARCH_TASK_STRUCT_ON_STACK |
| 66 | __init_task_data |
| 67 | #endif |
Stafford Horne | d0b7213 | 2020-06-26 05:24:24 +0900 | [diff] [blame] | 68 | __aligned(L1_CACHE_BYTES) |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 69 | = { |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 70 | #ifdef CONFIG_THREAD_INFO_IN_TASK |
| 71 | .thread_info = INIT_THREAD_INFO(init_task), |
Elena Reshetova | f0b89d3 | 2019-01-18 14:27:30 +0200 | [diff] [blame] | 72 | .stack_refcount = REFCOUNT_INIT(1), |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 73 | #endif |
Peter Zijlstra | 2f064a5 | 2021-06-11 10:28:17 +0200 | [diff] [blame] | 74 | .__state = 0, |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 75 | .stack = init_stack, |
Elena Reshetova | ec1d281 | 2019-01-18 14:27:29 +0200 | [diff] [blame] | 76 | .usage = REFCOUNT_INIT(2), |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 77 | .flags = PF_KTHREAD, |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 78 | .prio = MAX_PRIO - 20, |
| 79 | .static_prio = MAX_PRIO - 20, |
| 80 | .normal_prio = MAX_PRIO - 20, |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 81 | .policy = SCHED_NORMAL, |
Sebastian Andrzej Siewior | 3bd3706 | 2019-04-23 16:26:36 +0200 | [diff] [blame] | 82 | .cpus_ptr = &init_task.cpus_mask, |
Will Deacon | b90ca8b | 2021-07-30 12:24:33 +0100 | [diff] [blame] | 83 | .user_cpus_ptr = NULL, |
Sebastian Andrzej Siewior | 3bd3706 | 2019-04-23 16:26:36 +0200 | [diff] [blame] | 84 | .cpus_mask = CPU_MASK_ALL, |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 85 | .nr_cpus_allowed= NR_CPUS, |
| 86 | .mm = NULL, |
| 87 | .active_mm = &init_mm, |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 88 | .restart_block = { |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 89 | .fn = do_no_restart_syscall, |
| 90 | }, |
| 91 | .se = { |
| 92 | .group_node = LIST_HEAD_INIT(init_task.se.group_node), |
| 93 | }, |
| 94 | .rt = { |
| 95 | .run_list = LIST_HEAD_INIT(init_task.rt.run_list), |
| 96 | .time_slice = RR_TIMESLICE, |
| 97 | }, |
| 98 | .tasks = LIST_HEAD_INIT(init_task.tasks), |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 99 | #ifdef CONFIG_SMP |
| 100 | .pushable_tasks = PLIST_NODE_INIT(init_task.pushable_tasks, MAX_PRIO), |
| 101 | #endif |
| 102 | #ifdef CONFIG_CGROUP_SCHED |
| 103 | .sched_task_group = &root_task_group, |
| 104 | #endif |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 105 | .ptraced = LIST_HEAD_INIT(init_task.ptraced), |
| 106 | .ptrace_entry = LIST_HEAD_INIT(init_task.ptrace_entry), |
| 107 | .real_parent = &init_task, |
| 108 | .parent = &init_task, |
| 109 | .children = LIST_HEAD_INIT(init_task.children), |
| 110 | .sibling = LIST_HEAD_INIT(init_task.sibling), |
| 111 | .group_leader = &init_task, |
| 112 | RCU_POINTER_INITIALIZER(real_cred, &init_cred), |
| 113 | RCU_POINTER_INITIALIZER(cred, &init_cred), |
| 114 | .comm = INIT_TASK_COMM, |
| 115 | .thread = INIT_THREAD, |
| 116 | .fs = &init_fs, |
| 117 | .files = &init_files, |
Jens Axboe | 0f21220 | 2020-09-13 13:09:39 -0600 | [diff] [blame] | 118 | #ifdef CONFIG_IO_URING |
| 119 | .io_uring = NULL, |
| 120 | #endif |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 121 | .signal = &init_signals, |
| 122 | .sighand = &init_sighand, |
| 123 | .nsproxy = &init_nsproxy, |
| 124 | .pending = { |
| 125 | .list = LIST_HEAD_INIT(init_task.pending.list), |
| 126 | .signal = {{0}} |
| 127 | }, |
| 128 | .blocked = {{0}}, |
| 129 | .alloc_lock = __SPIN_LOCK_UNLOCKED(init_task.alloc_lock), |
| 130 | .journal_info = NULL, |
| 131 | INIT_CPU_TIMERS(init_task) |
| 132 | .pi_lock = __RAW_SPIN_LOCK_UNLOCKED(init_task.pi_lock), |
| 133 | .timer_slack_ns = 50000, /* 50 usec default slack */ |
Eric W. Biederman | 2c47047 | 2017-09-26 13:06:43 -0500 | [diff] [blame] | 134 | .thread_pid = &init_struct_pid, |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 135 | .thread_group = LIST_HEAD_INIT(init_task.thread_group), |
| 136 | .thread_node = LIST_HEAD_INIT(init_signals.thread_head), |
Richard Guy Briggs | 4b7d248 | 2019-01-22 17:06:39 -0500 | [diff] [blame] | 137 | #ifdef CONFIG_AUDIT |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 138 | .loginuid = INVALID_UID, |
Richard Guy Briggs | f0b7521 | 2018-05-12 21:58:19 -0400 | [diff] [blame] | 139 | .sessionid = AUDIT_SID_UNSET, |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 140 | #endif |
| 141 | #ifdef CONFIG_PERF_EVENTS |
| 142 | .perf_event_mutex = __MUTEX_INITIALIZER(init_task.perf_event_mutex), |
| 143 | .perf_event_list = LIST_HEAD_INIT(init_task.perf_event_list), |
| 144 | #endif |
| 145 | #ifdef CONFIG_PREEMPT_RCU |
| 146 | .rcu_read_lock_nesting = 0, |
| 147 | .rcu_read_unlock_special.s = 0, |
| 148 | .rcu_node_entry = LIST_HEAD_INIT(init_task.rcu_node_entry), |
| 149 | .rcu_blocked_node = NULL, |
| 150 | #endif |
| 151 | #ifdef CONFIG_TASKS_RCU |
| 152 | .rcu_tasks_holdout = false, |
| 153 | .rcu_tasks_holdout_list = LIST_HEAD_INIT(init_task.rcu_tasks_holdout_list), |
| 154 | .rcu_tasks_idle_cpu = -1, |
| 155 | #endif |
Paul E. McKenney | d5f177d | 2020-03-09 19:56:53 -0700 | [diff] [blame] | 156 | #ifdef CONFIG_TASKS_TRACE_RCU |
| 157 | .trc_reader_nesting = 0, |
Paul E. McKenney | 276c410 | 2020-03-17 16:02:06 -0700 | [diff] [blame] | 158 | .trc_reader_special.s = 0, |
Paul E. McKenney | d5f177d | 2020-03-09 19:56:53 -0700 | [diff] [blame] | 159 | .trc_holdout_list = LIST_HEAD_INIT(init_task.trc_holdout_list), |
| 160 | #endif |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 161 | #ifdef CONFIG_CPUSETS |
Ahmed S. Darwish | b750586 | 2020-07-20 17:55:19 +0200 | [diff] [blame] | 162 | .mems_allowed_seq = SEQCNT_SPINLOCK_ZERO(init_task.mems_allowed_seq, |
| 163 | &init_task.alloc_lock), |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 164 | #endif |
| 165 | #ifdef CONFIG_RT_MUTEXES |
| 166 | .pi_waiters = RB_ROOT_CACHED, |
| 167 | .pi_top_task = NULL, |
| 168 | #endif |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 169 | INIT_PREV_CPUTIME(init_task) |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 170 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN |
| 171 | .vtime.seqcount = SEQCNT_ZERO(init_task.vtime_seqcount), |
| 172 | .vtime.starttime = 0, |
| 173 | .vtime.state = VTIME_SYS, |
| 174 | #endif |
| 175 | #ifdef CONFIG_NUMA_BALANCING |
Anshuman Khandual | 98fa15f | 2019-03-05 15:42:58 -0800 | [diff] [blame] | 176 | .numa_preferred_nid = NUMA_NO_NODE, |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 177 | .numa_group = NULL, |
| 178 | .numa_faults = NULL, |
| 179 | #endif |
Andrey Konovalov | d73b493 | 2020-12-22 12:00:56 -0800 | [diff] [blame] | 180 | #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS) |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 181 | .kasan_depth = 1, |
| 182 | #endif |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 183 | #ifdef CONFIG_KCSAN |
| 184 | .kcsan_ctx = { |
Marco Elver | 757a4ce | 2020-03-25 17:41:56 +0100 | [diff] [blame] | 185 | .scoped_accesses = {LIST_POISON1, NULL}, |
Marco Elver | dfd402a | 2019-11-14 19:02:54 +0100 | [diff] [blame] | 186 | }, |
| 187 | #endif |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 188 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 189 | .softirqs_enabled = 1, |
| 190 | #endif |
| 191 | #ifdef CONFIG_LOCKDEP |
Yuyang Du | e196e47 | 2019-05-06 16:19:23 +0800 | [diff] [blame] | 192 | .lockdep_depth = 0, /* no locks held yet */ |
Yuyang Du | f6ec882 | 2019-05-06 16:19:24 +0800 | [diff] [blame] | 193 | .curr_chain_key = INITIAL_CHAIN_KEY, |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 194 | .lockdep_recursion = 0, |
| 195 | #endif |
| 196 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
Steven Rostedt (VMware) | 7e0a922 | 2021-01-29 10:13:53 -0500 | [diff] [blame] | 197 | .ret_stack = NULL, |
| 198 | .tracing_graph_pause = ATOMIC_INIT(0), |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 199 | #endif |
Thomas Gleixner | c1a280b | 2019-07-26 23:19:37 +0200 | [diff] [blame] | 200 | #if defined(CONFIG_TRACING) && defined(CONFIG_PREEMPTION) |
David Howells | 4e7e3ad | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 201 | .trace_recursion = 0, |
| 202 | #endif |
| 203 | #ifdef CONFIG_LIVEPATCH |
| 204 | .patch_state = KLP_UNDEFINED, |
| 205 | #endif |
| 206 | #ifdef CONFIG_SECURITY |
| 207 | .security = NULL, |
| 208 | #endif |
Kenta.Tada@sony.com | 64bdc02 | 2021-03-21 15:52:19 +0000 | [diff] [blame] | 209 | #ifdef CONFIG_SECCOMP_FILTER |
Kees Cook | c818c03 | 2020-05-13 14:11:26 -0700 | [diff] [blame] | 210 | .seccomp = { .filter_count = ATOMIC_INIT(0) }, |
| 211 | #endif |
David Howells | d11ed3a | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 212 | }; |
Thomas Gleixner | a4a2eb4 | 2012-05-03 09:02:48 +0000 | [diff] [blame] | 213 | EXPORT_SYMBOL(init_task); |
| 214 | |
| 215 | /* |
| 216 | * Initial thread structure. Alignment of this is handled by a special |
| 217 | * linker map entry. |
| 218 | */ |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 219 | #ifndef CONFIG_THREAD_INFO_IN_TASK |
David Howells | 0500871 | 2018-01-02 15:12:01 +0000 | [diff] [blame] | 220 | struct thread_info init_thread_info __init_thread_info = INIT_THREAD_INFO(init_task); |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 221 | #endif |