]>
Commit | Line | Data |
---|---|---|
457c8996 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
3 | * linux/init/main.c | |
4 | * | |
5 | * Copyright (C) 1991, 1992 Linus Torvalds | |
6 | * | |
7 | * GK 2/5/95 - Changed to support mounting root fs via NFS | |
8 | * Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96 | |
9 | * Moan early if gcc is old, avoiding bogus kernels - Paul Gortmaker, May '96 | |
dd4d9fec | 10 | * Simplified starting of init: Michael A. Griffith <[email protected]> |
1da177e4 LT |
11 | */ |
12 | ||
ea676e84 AM |
13 | #define DEBUG /* Enable initcall_debug */ |
14 | ||
1da177e4 | 15 | #include <linux/types.h> |
8a293be0 | 16 | #include <linux/extable.h> |
1da177e4 LT |
17 | #include <linux/module.h> |
18 | #include <linux/proc_fs.h> | |
5c2c5c55 | 19 | #include <linux/binfmts.h> |
1da177e4 LT |
20 | #include <linux/kernel.h> |
21 | #include <linux/syscalls.h> | |
9b5609fd | 22 | #include <linux/stackprotector.h> |
1da177e4 LT |
23 | #include <linux/string.h> |
24 | #include <linux/ctype.h> | |
25 | #include <linux/delay.h> | |
1da177e4 LT |
26 | #include <linux/ioport.h> |
27 | #include <linux/init.h> | |
1da177e4 | 28 | #include <linux/initrd.h> |
57c8a661 | 29 | #include <linux/memblock.h> |
4a7a16dc | 30 | #include <linux/acpi.h> |
7684b858 | 31 | #include <linux/bootconfig.h> |
0c688614 | 32 | #include <linux/console.h> |
38b8d208 | 33 | #include <linux/nmi.h> |
1da177e4 LT |
34 | #include <linux/percpu.h> |
35 | #include <linux/kmod.h> | |
db64fe02 | 36 | #include <linux/vmalloc.h> |
1da177e4 | 37 | #include <linux/kernel_stat.h> |
d7cd5611 | 38 | #include <linux/start_kernel.h> |
1da177e4 | 39 | #include <linux/security.h> |
3d442233 | 40 | #include <linux/smp.h> |
1da177e4 LT |
41 | #include <linux/profile.h> |
42 | #include <linux/rcupdate.h> | |
43 | #include <linux/moduleparam.h> | |
44 | #include <linux/kallsyms.h> | |
45 | #include <linux/writeback.h> | |
46 | #include <linux/cpu.h> | |
47 | #include <linux/cpuset.h> | |
ddbcc7e8 | 48 | #include <linux/cgroup.h> |
1da177e4 | 49 | #include <linux/efi.h> |
906568c9 | 50 | #include <linux/tick.h> |
78634061 | 51 | #include <linux/sched/isolation.h> |
6168a702 | 52 | #include <linux/interrupt.h> |
c757249a | 53 | #include <linux/taskstats_kern.h> |
ca74e92b | 54 | #include <linux/delayacct.h> |
1da177e4 | 55 | #include <linux/unistd.h> |
3ea056c5 | 56 | #include <linux/utsname.h> |
1da177e4 LT |
57 | #include <linux/rmap.h> |
58 | #include <linux/mempolicy.h> | |
59 | #include <linux/key.h> | |
b6cd0b77 | 60 | #include <linux/buffer_head.h> |
eefa864b | 61 | #include <linux/page_ext.h> |
9a11b49a | 62 | #include <linux/debug_locks.h> |
3ac7fe5a | 63 | #include <linux/debugobjects.h> |
fbb9ce95 | 64 | #include <linux/lockdep.h> |
3c7b4e6b | 65 | #include <linux/kmemleak.h> |
f1b192b1 | 66 | #include <linux/padata.h> |
84d73786 | 67 | #include <linux/pid_namespace.h> |
4c002c97 | 68 | #include <linux/device/driver.h> |
73c27992 | 69 | #include <linux/kthread.h> |
e6fe6649 | 70 | #include <linux/sched.h> |
1777e463 | 71 | #include <linux/sched/init.h> |
a1c9eea9 | 72 | #include <linux/signal.h> |
199f0ca5 | 73 | #include <linux/idr.h> |
0b4b3827 | 74 | #include <linux/kgdb.h> |
68bf21aa | 75 | #include <linux/ftrace.h> |
22a9d645 | 76 | #include <linux/async.h> |
6ae6996a | 77 | #include <linux/sfi.h> |
2b2af54a | 78 | #include <linux/shmem_fs.h> |
5a0e3ad6 | 79 | #include <linux/slab.h> |
24a24bb6 | 80 | #include <linux/perf_event.h> |
a74fb73c | 81 | #include <linux/ptrace.h> |
aa8c6248 | 82 | #include <linux/pti.h> |
bb813f4c TH |
83 | #include <linux/blkdev.h> |
84 | #include <linux/elevator.h> | |
5d2a4e91 | 85 | #include <linux/sched/clock.h> |
29930025 | 86 | #include <linux/sched/task.h> |
68db0cf1 | 87 | #include <linux/sched/task_stack.h> |
65f382fd | 88 | #include <linux/context_tracking.h> |
47d06e53 | 89 | #include <linux/random.h> |
7b0b73d7 | 90 | #include <linux/list.h> |
c9cd2ce2 | 91 | #include <linux/integrity.h> |
e149ed2b | 92 | #include <linux/proc_ns.h> |
0ddab1d2 | 93 | #include <linux/io.h> |
39290b38 | 94 | #include <linux/cache.h> |
2959a5f7 | 95 | #include <linux/rodata_test.h> |
33352244 | 96 | #include <linux/jump_label.h> |
ae67d58d | 97 | #include <linux/mem_encrypt.h> |
dfd402a4 | 98 | #include <linux/kcsan.h> |
1da177e4 LT |
99 | |
100 | #include <asm/io.h> | |
101 | #include <asm/bugs.h> | |
102 | #include <asm/setup.h> | |
a940199f | 103 | #include <asm/sections.h> |
37b73c82 | 104 | #include <asm/cacheflush.h> |
1da177e4 | 105 | |
4ee7c60d SRV |
106 | #define CREATE_TRACE_POINTS |
107 | #include <trace/events/initcall.h> | |
108 | ||
aae5f662 | 109 | static int kernel_init(void *); |
1da177e4 LT |
110 | |
111 | extern void init_IRQ(void); | |
1da177e4 | 112 | extern void radix_tree_init(void); |
1da177e4 | 113 | |
2ce802f6 TH |
114 | /* |
115 | * Debug helper: via this flag we know that we are in 'early bootup code' | |
116 | * where only the boot processor is running with IRQ disabled. This means | |
117 | * two things - IRQ must not be enabled before the flag is cleared and some | |
118 | * operations which are not allowed with IRQ disabled are allowed while the | |
119 | * flag is set. | |
120 | */ | |
121 | bool early_boot_irqs_disabled __read_mostly; | |
122 | ||
a6826048 | 123 | enum system_states system_state __read_mostly; |
1da177e4 LT |
124 | EXPORT_SYMBOL(system_state); |
125 | ||
126 | /* | |
127 | * Boot command-line arguments | |
128 | */ | |
129 | #define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT | |
130 | #define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT | |
131 | ||
132 | extern void time_init(void); | |
133 | /* Default late time init is NULL. archs can override this later. */ | |
d2e3192b | 134 | void (*__initdata late_time_init)(void); |
1da177e4 | 135 | |
30d7e0d4 ABL |
136 | /* Untouched command line saved by arch-specific code. */ |
137 | char __initdata boot_command_line[COMMAND_LINE_SIZE]; | |
138 | /* Untouched saved command line (eg. for /proc) */ | |
139 | char *saved_command_line; | |
140 | /* Command line for parameter parsing */ | |
141 | static char *static_command_line; | |
51887d03 MH |
142 | /* Untouched extra command line */ |
143 | static char *extra_command_line; | |
13199162 MH |
144 | /* Extra init arguments */ |
145 | static char *extra_init_args; | |
1da177e4 | 146 | |
f61872bb SRV |
147 | #ifdef CONFIG_BOOT_CONFIG |
148 | /* Is bootconfig on command line? */ | |
149 | static bool bootconfig_found; | |
150 | static bool initargs_found; | |
151 | #else | |
152 | # define bootconfig_found false | |
153 | # define initargs_found false | |
154 | #endif | |
155 | ||
1da177e4 | 156 | static char *execute_command; |
ffdfc409 | 157 | static char *ramdisk_execute_command; |
1da177e4 | 158 | |
c4b2c0c5 HFS |
159 | /* |
160 | * Used to generate warnings if static_key manipulation functions are used | |
161 | * before jump_label_init is called. | |
162 | */ | |
dd4d9fec | 163 | bool static_key_initialized __read_mostly; |
c4b2c0c5 HFS |
164 | EXPORT_SYMBOL_GPL(static_key_initialized); |
165 | ||
8b3b2955 JB |
166 | /* |
167 | * If set, this is an indication to the drivers that reset the underlying | |
168 | * device before going ahead with the initialization otherwise driver might | |
169 | * rely on the BIOS and skip the reset operation. | |
170 | * | |
171 | * This is useful if kernel is booting in an unreliable environment. | |
fc454fdc | 172 | * For ex. kdump situation where previous kernel has crashed, BIOS has been |
8b3b2955 JB |
173 | * skipped and devices will be in unknown state. |
174 | */ | |
175 | unsigned int reset_devices; | |
176 | EXPORT_SYMBOL(reset_devices); | |
1da177e4 | 177 | |
7e96287d VG |
178 | static int __init set_reset_devices(char *str) |
179 | { | |
180 | reset_devices = 1; | |
181 | return 1; | |
182 | } | |
183 | ||
184 | __setup("reset_devices", set_reset_devices); | |
185 | ||
dd4d9fec FF |
186 | static const char *argv_init[MAX_INIT_ARGS+2] = { "init", NULL, }; |
187 | const char *envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, }; | |
1da177e4 LT |
188 | static const char *panic_later, *panic_param; |
189 | ||
914dcaa8 | 190 | extern const struct obs_kernel_param __setup_start[], __setup_end[]; |
1da177e4 | 191 | |
31c025b5 | 192 | static bool __init obsolete_checksetup(char *line) |
1da177e4 | 193 | { |
914dcaa8 | 194 | const struct obs_kernel_param *p; |
31c025b5 | 195 | bool had_early_param = false; |
1da177e4 LT |
196 | |
197 | p = __setup_start; | |
198 | do { | |
199 | int n = strlen(p->str); | |
b1e4d20c | 200 | if (parameqn(line, p->str, n)) { |
1da177e4 | 201 | if (p->early) { |
33df0d19 RR |
202 | /* Already done in parse_early_param? |
203 | * (Needs exact match on param part). | |
204 | * Keep iterating, as we can have early | |
205 | * params and __setups of same names 8( */ | |
1da177e4 | 206 | if (line[n] == '\0' || line[n] == '=') |
31c025b5 | 207 | had_early_param = true; |
1da177e4 | 208 | } else if (!p->setup_func) { |
ea676e84 AM |
209 | pr_warn("Parameter %s is obsolete, ignored\n", |
210 | p->str); | |
31c025b5 | 211 | return true; |
1da177e4 | 212 | } else if (p->setup_func(line + n)) |
31c025b5 | 213 | return true; |
1da177e4 LT |
214 | } |
215 | p++; | |
216 | } while (p < __setup_end); | |
33df0d19 RR |
217 | |
218 | return had_early_param; | |
1da177e4 LT |
219 | } |
220 | ||
221 | /* | |
222 | * This should be approx 2 Bo*oMips to start (note initial shift), and will | |
223 | * still work even if initially too large, it will just take slightly longer | |
224 | */ | |
225 | unsigned long loops_per_jiffy = (1<<12); | |
1da177e4 LT |
226 | EXPORT_SYMBOL(loops_per_jiffy); |
227 | ||
228 | static int __init debug_kernel(char *str) | |
229 | { | |
a8fe19eb | 230 | console_loglevel = CONSOLE_LOGLEVEL_DEBUG; |
f6f21c81 | 231 | return 0; |
1da177e4 LT |
232 | } |
233 | ||
234 | static int __init quiet_kernel(char *str) | |
235 | { | |
a8fe19eb | 236 | console_loglevel = CONSOLE_LOGLEVEL_QUIET; |
f6f21c81 | 237 | return 0; |
1da177e4 LT |
238 | } |
239 | ||
f6f21c81 YL |
240 | early_param("debug", debug_kernel); |
241 | early_param("quiet", quiet_kernel); | |
1da177e4 LT |
242 | |
243 | static int __init loglevel(char *str) | |
244 | { | |
808bf29b AS |
245 | int newlevel; |
246 | ||
247 | /* | |
248 | * Only update loglevel value when a correct setting was passed, | |
249 | * to prevent blind crashes (when loglevel being set to 0) that | |
250 | * are quite hard to debug | |
251 | */ | |
252 | if (get_option(&str, &newlevel)) { | |
253 | console_loglevel = newlevel; | |
254 | return 0; | |
255 | } | |
256 | ||
257 | return -EINVAL; | |
1da177e4 LT |
258 | } |
259 | ||
f6f21c81 | 260 | early_param("loglevel", loglevel); |
1da177e4 | 261 | |
de462e5f MH |
262 | #ifdef CONFIG_BLK_DEV_INITRD |
263 | static void * __init get_boot_config_from_initrd(u32 *_size, u32 *_csum) | |
264 | { | |
265 | u32 size, csum; | |
266 | char *data; | |
267 | u32 *hdr; | |
268 | ||
269 | if (!initrd_end) | |
270 | return NULL; | |
271 | ||
272 | data = (char *)initrd_end - BOOTCONFIG_MAGIC_LEN; | |
273 | if (memcmp(data, BOOTCONFIG_MAGIC, BOOTCONFIG_MAGIC_LEN)) | |
274 | return NULL; | |
275 | ||
276 | hdr = (u32 *)(data - 8); | |
277 | size = hdr[0]; | |
278 | csum = hdr[1]; | |
279 | ||
280 | data = ((void *)hdr) - size; | |
281 | if ((unsigned long)data < initrd_start) { | |
282 | pr_err("bootconfig size %d is greater than initrd size %ld\n", | |
283 | size, initrd_end - initrd_start); | |
284 | return NULL; | |
285 | } | |
286 | ||
287 | /* Remove bootconfig from initramfs/initrd */ | |
288 | initrd_end = (unsigned long)data; | |
289 | if (_size) | |
290 | *_size = size; | |
291 | if (_csum) | |
292 | *_csum = csum; | |
293 | ||
294 | return data; | |
295 | } | |
296 | #else | |
297 | static void * __init get_boot_config_from_initrd(u32 *_size, u32 *_csum) | |
298 | { | |
299 | return NULL; | |
300 | } | |
301 | #endif | |
302 | ||
7684b858 | 303 | #ifdef CONFIG_BOOT_CONFIG |
51887d03 MH |
304 | |
305 | char xbc_namebuf[XBC_KEYLEN_MAX] __initdata; | |
306 | ||
307 | #define rest(dst, end) ((end) > (dst) ? (end) - (dst) : 0) | |
308 | ||
309 | static int __init xbc_snprint_cmdline(char *buf, size_t size, | |
310 | struct xbc_node *root) | |
311 | { | |
312 | struct xbc_node *knode, *vnode; | |
313 | char *end = buf + size; | |
51887d03 MH |
314 | const char *val; |
315 | int ret; | |
316 | ||
317 | xbc_node_for_each_key_value(root, knode, val) { | |
318 | ret = xbc_node_compose_key_after(root, knode, | |
319 | xbc_namebuf, XBC_KEYLEN_MAX); | |
320 | if (ret < 0) | |
321 | return ret; | |
322 | ||
323 | vnode = xbc_node_get_child(knode); | |
88b91371 MH |
324 | if (!vnode) { |
325 | ret = snprintf(buf, rest(buf, end), "%s ", xbc_namebuf); | |
326 | if (ret < 0) | |
327 | return ret; | |
328 | buf += ret; | |
51887d03 | 329 | continue; |
88b91371 | 330 | } |
51887d03 | 331 | xbc_array_for_each_value(vnode, val) { |
88b91371 MH |
332 | ret = snprintf(buf, rest(buf, end), "%s=\"%s\" ", |
333 | xbc_namebuf, val); | |
51887d03 MH |
334 | if (ret < 0) |
335 | return ret; | |
336 | buf += ret; | |
51887d03 | 337 | } |
51887d03 MH |
338 | } |
339 | ||
340 | return buf - (end - size); | |
341 | } | |
342 | #undef rest | |
343 | ||
344 | /* Make an extra command line under given key word */ | |
345 | static char * __init xbc_make_cmdline(const char *key) | |
346 | { | |
347 | struct xbc_node *root; | |
348 | char *new_cmdline; | |
349 | int ret, len = 0; | |
350 | ||
351 | root = xbc_find_node(key); | |
352 | if (!root) | |
353 | return NULL; | |
354 | ||
355 | /* Count required buffer size */ | |
356 | len = xbc_snprint_cmdline(NULL, 0, root); | |
357 | if (len <= 0) | |
358 | return NULL; | |
359 | ||
360 | new_cmdline = memblock_alloc(len + 1, SMP_CACHE_BYTES); | |
361 | if (!new_cmdline) { | |
362 | pr_err("Failed to allocate memory for extra kernel cmdline.\n"); | |
363 | return NULL; | |
364 | } | |
365 | ||
366 | ret = xbc_snprint_cmdline(new_cmdline, len + 1, root); | |
367 | if (ret < 0 || ret > len) { | |
368 | pr_err("Failed to print extra kernel cmdline.\n"); | |
369 | return NULL; | |
370 | } | |
371 | ||
372 | return new_cmdline; | |
373 | } | |
374 | ||
08d9e686 | 375 | static u32 boot_config_checksum(unsigned char *p, u32 size) |
7684b858 MH |
376 | { |
377 | u32 ret = 0; | |
378 | ||
379 | while (size--) | |
380 | ret += *p++; | |
381 | ||
382 | return ret; | |
383 | } | |
384 | ||
f61872bb SRV |
385 | static int __init bootconfig_params(char *param, char *val, |
386 | const char *unused, void *arg) | |
387 | { | |
388 | if (strcmp(param, "bootconfig") == 0) { | |
389 | bootconfig_found = true; | |
390 | } else if (strcmp(param, "--") == 0) { | |
391 | initargs_found = true; | |
392 | } | |
393 | return 0; | |
394 | } | |
395 | ||
7495e092 | 396 | static void __init setup_boot_config(const char *cmdline) |
7684b858 | 397 | { |
f61872bb | 398 | static char tmp_cmdline[COMMAND_LINE_SIZE] __initdata; |
89b74cac MH |
399 | const char *msg; |
400 | int pos; | |
7684b858 MH |
401 | u32 size, csum; |
402 | char *data, *copy; | |
a0057403 | 403 | int ret; |
7684b858 | 404 | |
611d0a95 | 405 | /* Cut out the bootconfig data even if we have no bootconfig option */ |
de462e5f | 406 | data = get_boot_config_from_initrd(&size, &csum); |
de462e5f | 407 | |
f61872bb SRV |
408 | strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE); |
409 | parse_args("bootconfig", tmp_cmdline, NULL, 0, 0, 0, NULL, | |
410 | bootconfig_params); | |
411 | ||
412 | if (!bootconfig_found) | |
7684b858 MH |
413 | return; |
414 | ||
611d0a95 MH |
415 | if (!data) { |
416 | pr_err("'bootconfig' found on command line, but no bootconfig found\n"); | |
417 | return; | |
418 | } | |
419 | ||
7495e092 SRV |
420 | if (size >= XBC_DATA_MAX) { |
421 | pr_err("bootconfig size %d greater than max size %d\n", | |
422 | size, XBC_DATA_MAX); | |
7684b858 | 423 | return; |
7495e092 | 424 | } |
7684b858 | 425 | |
7495e092 SRV |
426 | if (boot_config_checksum((unsigned char *)data, size) != csum) { |
427 | pr_err("bootconfig checksum failed\n"); | |
7684b858 | 428 | return; |
7495e092 | 429 | } |
7684b858 MH |
430 | |
431 | copy = memblock_alloc(size + 1, SMP_CACHE_BYTES); | |
432 | if (!copy) { | |
e241d14a | 433 | pr_err("Failed to allocate memory for bootconfig\n"); |
7684b858 MH |
434 | return; |
435 | } | |
436 | ||
437 | memcpy(copy, data, size); | |
438 | copy[size] = '\0'; | |
439 | ||
89b74cac MH |
440 | ret = xbc_init(copy, &msg, &pos); |
441 | if (ret < 0) { | |
442 | if (pos < 0) | |
443 | pr_err("Failed to init bootconfig: %s.\n", msg); | |
444 | else | |
445 | pr_err("Failed to parse bootconfig: %s at %d.\n", | |
446 | msg, pos); | |
447 | } else { | |
a0057403 | 448 | pr_info("Load bootconfig: %d bytes %d nodes\n", size, ret); |
51887d03 MH |
449 | /* keys starting with "kernel." are passed via cmdline */ |
450 | extra_command_line = xbc_make_cmdline("kernel"); | |
13199162 MH |
451 | /* Also, "init." keys are init arguments */ |
452 | extra_init_args = xbc_make_cmdline("init"); | |
51887d03 | 453 | } |
7495e092 | 454 | return; |
7684b858 | 455 | } |
de462e5f | 456 | |
7684b858 | 457 | #else |
de462e5f MH |
458 | |
459 | static void __init setup_boot_config(const char *cmdline) | |
460 | { | |
461 | /* Remove bootconfig data from initrd */ | |
462 | get_boot_config_from_initrd(NULL, NULL); | |
463 | } | |
d8a953dd MH |
464 | |
465 | static int __init warn_bootconfig(char *str) | |
466 | { | |
467 | pr_warn("WARNING: 'bootconfig' found on the kernel command line but CONFIG_BOOTCONFIG is not set.\n"); | |
468 | return 0; | |
469 | } | |
470 | early_param("bootconfig", warn_bootconfig); | |
471 | ||
7684b858 MH |
472 | #endif |
473 | ||
a99cd112 | 474 | /* Change NUL term back to "=", to make "param" the whole string. */ |
7e2762e1 | 475 | static void __init repair_env_string(char *param, char *val) |
1da177e4 | 476 | { |
1da177e4 LT |
477 | if (val) { |
478 | /* param=val or param="val"? */ | |
479 | if (val == param+strlen(param)+1) | |
480 | val[-1] = '='; | |
481 | else if (val == param+strlen(param)+2) { | |
482 | val[-2] = '='; | |
483 | memmove(val-1, val, strlen(val)+1); | |
1da177e4 LT |
484 | } else |
485 | BUG(); | |
486 | } | |
a99cd112 CM |
487 | } |
488 | ||
51e158c1 | 489 | /* Anything after -- gets handed straight to init. */ |
ecc86170 LR |
490 | static int __init set_init_arg(char *param, char *val, |
491 | const char *unused, void *arg) | |
51e158c1 RR |
492 | { |
493 | unsigned int i; | |
494 | ||
495 | if (panic_later) | |
496 | return 0; | |
497 | ||
7e2762e1 | 498 | repair_env_string(param, val); |
51e158c1 RR |
499 | |
500 | for (i = 0; argv_init[i]; i++) { | |
501 | if (i == MAX_INIT_ARGS) { | |
502 | panic_later = "init"; | |
503 | panic_param = param; | |
504 | return 0; | |
505 | } | |
506 | } | |
507 | argv_init[i] = param; | |
508 | return 0; | |
509 | } | |
510 | ||
a99cd112 CM |
511 | /* |
512 | * Unknown boot options get handed to init, unless they look like | |
513 | * unused parameters (modprobe will find them in /proc/cmdline). | |
514 | */ | |
ecc86170 LR |
515 | static int __init unknown_bootoption(char *param, char *val, |
516 | const char *unused, void *arg) | |
a99cd112 | 517 | { |
283900e8 AS |
518 | size_t len = strlen(param); |
519 | ||
7e2762e1 | 520 | repair_env_string(param, val); |
1da177e4 LT |
521 | |
522 | /* Handle obsolete-style parameters */ | |
523 | if (obsolete_checksetup(param)) | |
524 | return 0; | |
525 | ||
f066a4f6 | 526 | /* Unused module parameter. */ |
283900e8 | 527 | if (strnchr(param, len, '.')) |
1da177e4 | 528 | return 0; |
1da177e4 LT |
529 | |
530 | if (panic_later) | |
531 | return 0; | |
532 | ||
533 | if (val) { | |
534 | /* Environment option */ | |
535 | unsigned int i; | |
536 | for (i = 0; envp_init[i]; i++) { | |
537 | if (i == MAX_INIT_ENVS) { | |
499a4584 | 538 | panic_later = "env"; |
1da177e4 LT |
539 | panic_param = param; |
540 | } | |
283900e8 | 541 | if (!strncmp(param, envp_init[i], len+1)) |
1da177e4 LT |
542 | break; |
543 | } | |
544 | envp_init[i] = param; | |
545 | } else { | |
546 | /* Command line option */ | |
547 | unsigned int i; | |
548 | for (i = 0; argv_init[i]; i++) { | |
549 | if (i == MAX_INIT_ARGS) { | |
499a4584 | 550 | panic_later = "init"; |
1da177e4 LT |
551 | panic_param = param; |
552 | } | |
553 | } | |
554 | argv_init[i] = param; | |
555 | } | |
556 | return 0; | |
557 | } | |
558 | ||
559 | static int __init init_setup(char *str) | |
560 | { | |
561 | unsigned int i; | |
562 | ||
563 | execute_command = str; | |
564 | /* | |
565 | * In case LILO is going to boot us with default command line, | |
566 | * it prepends "auto" before the whole cmdline which makes | |
567 | * the shell think it should execute a script with such name. | |
568 | * So we ignore all arguments entered _before_ init=... [MJ] | |
569 | */ | |
570 | for (i = 1; i < MAX_INIT_ARGS; i++) | |
571 | argv_init[i] = NULL; | |
572 | return 1; | |
573 | } | |
574 | __setup("init=", init_setup); | |
575 | ||
ffdfc409 OJ |
576 | static int __init rdinit_setup(char *str) |
577 | { | |
578 | unsigned int i; | |
579 | ||
580 | ramdisk_execute_command = str; | |
581 | /* See "auto" comment in init_setup */ | |
582 | for (i = 1; i < MAX_INIT_ARGS; i++) | |
583 | argv_init[i] = NULL; | |
584 | return 1; | |
585 | } | |
586 | __setup("rdinit=", rdinit_setup); | |
587 | ||
1da177e4 | 588 | #ifndef CONFIG_SMP |
34db18a0 | 589 | static const unsigned int setup_max_cpus = NR_CPUS; |
e0982e90 | 590 | static inline void setup_nr_cpu_ids(void) { } |
1da177e4 | 591 | static inline void smp_prepare_cpus(unsigned int maxcpus) { } |
1da177e4 LT |
592 | #endif |
593 | ||
30d7e0d4 ABL |
594 | /* |
595 | * We need to store the untouched command line for future reference. | |
596 | * We also need to store the touched command line since the parameter | |
597 | * parsing is performed in place, and we should allow a component to | |
598 | * store reference of name/value for future reference. | |
599 | */ | |
600 | static void __init setup_command_line(char *command_line) | |
601 | { | |
13199162 | 602 | size_t len, xlen = 0, ilen = 0; |
f5c7310a | 603 | |
51887d03 MH |
604 | if (extra_command_line) |
605 | xlen = strlen(extra_command_line); | |
13199162 MH |
606 | if (extra_init_args) |
607 | ilen = strlen(extra_init_args) + 4; /* for " -- " */ | |
f5c7310a | 608 | |
51887d03 | 609 | len = xlen + strlen(boot_command_line) + 1; |
f5c7310a | 610 | |
13199162 | 611 | saved_command_line = memblock_alloc(len + ilen, SMP_CACHE_BYTES); |
f5c7310a | 612 | if (!saved_command_line) |
13199162 | 613 | panic("%s: Failed to allocate %zu bytes\n", __func__, len + ilen); |
f5c7310a MR |
614 | |
615 | static_command_line = memblock_alloc(len, SMP_CACHE_BYTES); | |
616 | if (!static_command_line) | |
617 | panic("%s: Failed to allocate %zu bytes\n", __func__, len); | |
618 | ||
51887d03 MH |
619 | if (xlen) { |
620 | /* | |
621 | * We have to put extra_command_line before boot command | |
622 | * lines because there could be dashes (separator of init | |
623 | * command line) in the command lines. | |
624 | */ | |
625 | strcpy(saved_command_line, extra_command_line); | |
626 | strcpy(static_command_line, extra_command_line); | |
627 | } | |
628 | strcpy(saved_command_line + xlen, boot_command_line); | |
629 | strcpy(static_command_line + xlen, command_line); | |
13199162 MH |
630 | |
631 | if (ilen) { | |
632 | /* | |
633 | * Append supplemental init boot args to saved_command_line | |
634 | * so that user can check what command line options passed | |
635 | * to init. | |
636 | */ | |
637 | len = strlen(saved_command_line); | |
f61872bb SRV |
638 | if (initargs_found) { |
639 | saved_command_line[len++] = ' '; | |
640 | } else { | |
13199162 MH |
641 | strcpy(saved_command_line + len, " -- "); |
642 | len += 4; | |
f61872bb | 643 | } |
13199162 MH |
644 | |
645 | strcpy(saved_command_line + len, extra_init_args); | |
646 | } | |
30d7e0d4 ABL |
647 | } |
648 | ||
1da177e4 LT |
649 | /* |
650 | * We need to finalize in a non-__init function or else race conditions | |
651 | * between the root thread and the init thread may cause start_kernel to | |
652 | * be reaped by free_initmem before the root thread has proceeded to | |
653 | * cpu_idle. | |
654 | * | |
655 | * gcc-3.4 accidentally inlines this function, so use noinline. | |
656 | */ | |
657 | ||
b433c3d4 PZ |
658 | static __initdata DECLARE_COMPLETION(kthreadd_done); |
659 | ||
53c99bd6 | 660 | noinline void __ref rest_init(void) |
1da177e4 | 661 | { |
8fb12156 | 662 | struct task_struct *tsk; |
73c27992 EB |
663 | int pid; |
664 | ||
7db905e6 | 665 | rcu_scheduler_starting(); |
b433c3d4 | 666 | /* |
97158569 | 667 | * We need to spawn init first so that it obtains pid 1, however |
b433c3d4 PZ |
668 | * the init task will end up wanting to create kthreads, which, if |
669 | * we schedule it before we create kthreadd, will OOPS. | |
670 | */ | |
8fb12156 TG |
671 | pid = kernel_thread(kernel_init, NULL, CLONE_FS); |
672 | /* | |
673 | * Pin init on the boot CPU. Task migration is not properly working | |
674 | * until sched_init_smp() has been run. It will set the allowed | |
675 | * CPUs for init to the non isolated CPUs. | |
676 | */ | |
677 | rcu_read_lock(); | |
678 | tsk = find_task_by_pid_ns(pid, &init_pid_ns); | |
679 | set_cpus_allowed_ptr(tsk, cpumask_of(smp_processor_id())); | |
680 | rcu_read_unlock(); | |
681 | ||
1da177e4 | 682 | numa_default_policy(); |
73c27992 | 683 | pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES); |
d11c563d | 684 | rcu_read_lock(); |
5cd20455 | 685 | kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns); |
d11c563d | 686 | rcu_read_unlock(); |
1c3c5eab TG |
687 | |
688 | /* | |
689 | * Enable might_sleep() and smp_processor_id() checks. | |
c1a280b6 | 690 | * They cannot be enabled earlier because with CONFIG_PREEMPTION=y |
1c3c5eab TG |
691 | * kernel_thread() would trigger might_sleep() splats. With |
692 | * CONFIG_PREEMPT_VOLUNTARY=y the init task might have scheduled | |
693 | * already, but it's stuck on the kthreadd_done completion. | |
694 | */ | |
695 | system_state = SYSTEM_SCHEDULING; | |
696 | ||
b433c3d4 | 697 | complete(&kthreadd_done); |
f340c0d1 IM |
698 | |
699 | /* | |
700 | * The boot idle thread must execute schedule() | |
1df21055 | 701 | * at least once to get things moving: |
f340c0d1 | 702 | */ |
bd2f5536 | 703 | schedule_preempt_disabled(); |
5bfb5d69 | 704 | /* Call into cpu_idle with preempt disabled */ |
a1a04ec3 | 705 | cpu_startup_entry(CPUHP_ONLINE); |
1df21055 | 706 | } |
1da177e4 LT |
707 | |
708 | /* Check for early params. */ | |
ecc86170 LR |
709 | static int __init do_early_param(char *param, char *val, |
710 | const char *unused, void *arg) | |
1da177e4 | 711 | { |
914dcaa8 | 712 | const struct obs_kernel_param *p; |
1da177e4 LT |
713 | |
714 | for (p = __setup_start; p < __setup_end; p++) { | |
b1e4d20c | 715 | if ((p->early && parameq(param, p->str)) || |
18a8bd94 YL |
716 | (strcmp(param, "console") == 0 && |
717 | strcmp(p->str, "earlycon") == 0) | |
718 | ) { | |
1da177e4 | 719 | if (p->setup_func(val) != 0) |
ea676e84 | 720 | pr_warn("Malformed early option '%s'\n", param); |
1da177e4 LT |
721 | } |
722 | } | |
723 | /* We accept everything at this stage. */ | |
724 | return 0; | |
725 | } | |
726 | ||
13977091 MD |
727 | void __init parse_early_options(char *cmdline) |
728 | { | |
ecc86170 LR |
729 | parse_args("early options", cmdline, NULL, 0, 0, 0, NULL, |
730 | do_early_param); | |
13977091 MD |
731 | } |
732 | ||
1da177e4 LT |
733 | /* Arch code calls this early on, or if not, just before other parsing. */ |
734 | void __init parse_early_param(void) | |
735 | { | |
dd4d9fec FF |
736 | static int done __initdata; |
737 | static char tmp_cmdline[COMMAND_LINE_SIZE] __initdata; | |
1da177e4 LT |
738 | |
739 | if (done) | |
740 | return; | |
741 | ||
742 | /* All fall through to do_early_param. */ | |
30d7e0d4 | 743 | strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE); |
13977091 | 744 | parse_early_options(tmp_cmdline); |
1da177e4 LT |
745 | done = 1; |
746 | } | |
747 | ||
e7ff3a47 TG |
748 | void __init __weak arch_post_acpi_subsys_init(void) { } |
749 | ||
839ad62e | 750 | void __init __weak smp_setup_processor_id(void) |
033ab7f8 AM |
751 | { |
752 | } | |
753 | ||
eded09cc | 754 | # if THREAD_SIZE >= PAGE_SIZE |
b235beea | 755 | void __init __weak thread_stack_cache_init(void) |
8c9843e5 BH |
756 | { |
757 | } | |
eded09cc | 758 | #endif |
8c9843e5 | 759 | |
c7753208 TL |
760 | void __init __weak mem_encrypt_init(void) { } |
761 | ||
4fc19708 NA |
762 | void __init __weak poking_init(void) { } |
763 | ||
782de70c | 764 | void __init __weak pgtable_cache_init(void) { } |
caa84136 | 765 | |
4e37958d SRV |
766 | bool initcall_debug; |
767 | core_param(initcall_debug, initcall_debug, bool, 0644); | |
b0dc52f1 SRV |
768 | |
769 | #ifdef TRACEPOINTS_ENABLED | |
4e37958d | 770 | static void __init initcall_debug_enable(void); |
b0dc52f1 SRV |
771 | #else |
772 | static inline void initcall_debug_enable(void) | |
773 | { | |
774 | } | |
775 | #endif | |
4e37958d | 776 | |
23a5c8cb AP |
777 | /* Report memory auto-initialization states for this boot. */ |
778 | static void __init report_meminit(void) | |
779 | { | |
780 | const char *stack; | |
781 | ||
782 | if (IS_ENABLED(CONFIG_INIT_STACK_ALL)) | |
783 | stack = "all"; | |
784 | else if (IS_ENABLED(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL)) | |
785 | stack = "byref_all"; | |
786 | else if (IS_ENABLED(CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF)) | |
787 | stack = "byref"; | |
788 | else if (IS_ENABLED(CONFIG_GCC_PLUGIN_STRUCTLEAK_USER)) | |
789 | stack = "__user"; | |
790 | else | |
791 | stack = "off"; | |
792 | ||
793 | pr_info("mem auto-init: stack:%s, heap alloc:%s, heap free:%s\n", | |
794 | stack, want_init_on_alloc(GFP_KERNEL) ? "on" : "off", | |
795 | want_init_on_free() ? "on" : "off"); | |
796 | if (want_init_on_free()) | |
797 | pr_info("mem auto-init: clearing system memory may take some time...\n"); | |
798 | } | |
799 | ||
444f478f PE |
800 | /* |
801 | * Set up kernel memory allocators | |
802 | */ | |
803 | static void __init mm_init(void) | |
804 | { | |
eefa864b JK |
805 | /* |
806 | * page_ext requires contiguous pages, | |
807 | * bigger than MAX_ORDER unless SPARSEMEM. | |
808 | */ | |
809 | page_ext_init_flatmem(); | |
8e57f8ac | 810 | init_debug_pagealloc(); |
23a5c8cb | 811 | report_meminit(); |
444f478f PE |
812 | mem_init(); |
813 | kmem_cache_init(); | |
c5665868 | 814 | kmemleak_init(); |
b35f1819 | 815 | pgtable_init(); |
a9ee3a63 | 816 | debug_objects_mem_init(); |
444f478f | 817 | vmalloc_init(); |
0ddab1d2 | 818 | ioremap_huge_init(); |
613e396b TG |
819 | /* Should be run before the first non-init thread is created */ |
820 | init_espfix_bsp(); | |
aa8c6248 TG |
821 | /* Should be run after espfix64 is set up. */ |
822 | pti_init(); | |
444f478f PE |
823 | } |
824 | ||
53c99bd6 MS |
825 | void __init __weak arch_call_rest_init(void) |
826 | { | |
827 | rest_init(); | |
828 | } | |
829 | ||
722a9f92 | 830 | asmlinkage __visible void __init start_kernel(void) |
1da177e4 | 831 | { |
dd4d9fec FF |
832 | char *command_line; |
833 | char *after_dashes; | |
033ab7f8 | 834 | |
d4311ff1 | 835 | set_task_stack_end_magic(&init_task); |
73839c5b | 836 | smp_setup_processor_id(); |
3ac7fe5a | 837 | debug_objects_early_init(); |
42059429 | 838 | |
ddbcc7e8 | 839 | cgroup_init_early(); |
fbb9ce95 IM |
840 | |
841 | local_irq_disable(); | |
2ce802f6 | 842 | early_boot_irqs_disabled = true; |
fbb9ce95 | 843 | |
1b3b3b49 VK |
844 | /* |
845 | * Interrupts are still disabled. Do necessary setups, then | |
846 | * enable them. | |
847 | */ | |
44fd2299 | 848 | boot_cpu_init(); |
1da177e4 | 849 | page_address_init(); |
ea676e84 | 850 | pr_notice("%s", linux_banner); |
e6b1db98 | 851 | early_security_init(); |
1da177e4 | 852 | setup_arch(&command_line); |
7495e092 | 853 | setup_boot_config(command_line); |
30d7e0d4 | 854 | setup_command_line(command_line); |
e0982e90 | 855 | setup_nr_cpu_ids(); |
d6647bdf | 856 | setup_per_cpu_areas(); |
44fd2299 | 857 | smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */ |
b5b1404d | 858 | boot_cpu_hotplug_init(); |
1da177e4 | 859 | |
72675e13 | 860 | build_all_zonelists(NULL); |
83b519e8 PE |
861 | page_alloc_init(); |
862 | ||
51887d03 | 863 | pr_notice("Kernel command line: %s\n", saved_command_line); |
6041186a DW |
864 | /* parameters may set static keys */ |
865 | jump_label_init(); | |
83b519e8 | 866 | parse_early_param(); |
51e158c1 RR |
867 | after_dashes = parse_args("Booting kernel", |
868 | static_command_line, __start___param, | |
869 | __stop___param - __start___param, | |
ecc86170 | 870 | -1, -1, NULL, &unknown_bootoption); |
3438cf54 | 871 | if (!IS_ERR_OR_NULL(after_dashes)) |
51e158c1 | 872 | parse_args("Setting init args", after_dashes, NULL, 0, -1, -1, |
ecc86170 | 873 | NULL, set_init_arg); |
13199162 MH |
874 | if (extra_init_args) |
875 | parse_args("Setting extra init args", extra_init_args, | |
876 | NULL, 0, -1, -1, NULL, set_init_arg); | |
97ce2c88 | 877 | |
83b519e8 PE |
878 | /* |
879 | * These use large bootmem allocations and must precede | |
880 | * kmem_cache_init() | |
881 | */ | |
162a7e75 | 882 | setup_log_buf(0); |
83b519e8 PE |
883 | vfs_caches_init_early(); |
884 | sort_main_extable(); | |
885 | trap_init(); | |
444f478f | 886 | mm_init(); |
de03c72c | 887 | |
f631718d SRV |
888 | ftrace_init(); |
889 | ||
e725c731 SRV |
890 | /* trace_printk can be enabled here */ |
891 | early_trace_init(); | |
892 | ||
1da177e4 LT |
893 | /* |
894 | * Set up the scheduler prior starting any interrupts (such as the | |
895 | * timer interrupt). Full topology setup happens at smp_init() | |
896 | * time - but meanwhile we still have a functioning scheduler. | |
897 | */ | |
898 | sched_init(); | |
899 | /* | |
900 | * Disable preemption - early bootup scheduling is extremely | |
901 | * fragile until we cpu_idle() for the first time. | |
902 | */ | |
903 | preempt_disable(); | |
dd4d9fec FF |
904 | if (WARN(!irqs_disabled(), |
905 | "Interrupts were enabled *very* early, fixing it\n")) | |
c4a68306 | 906 | local_irq_disable(); |
0a835c4f | 907 | radix_tree_init(); |
3347fa09 | 908 | |
7d229c66 TS |
909 | /* |
910 | * Set up housekeeping before setting up workqueues to allow the unbound | |
911 | * workqueue to take non-housekeeping into account. | |
912 | */ | |
913 | housekeeping_init(); | |
914 | ||
3347fa09 TH |
915 | /* |
916 | * Allow workqueue creation and work item queueing/cancelling | |
917 | * early. Work item execution depends on kthreads and starts after | |
918 | * workqueue_init(). | |
919 | */ | |
920 | workqueue_init_early(); | |
921 | ||
1da177e4 | 922 | rcu_init(); |
5f893b26 | 923 | |
e725c731 | 924 | /* Trace events are available after this */ |
5f893b26 SRRH |
925 | trace_init(); |
926 | ||
4e37958d SRV |
927 | if (initcall_debug) |
928 | initcall_debug_enable(); | |
929 | ||
65f382fd | 930 | context_tracking_init(); |
0b8f1efa YL |
931 | /* init some links before init_ISA_irqs() */ |
932 | early_irq_init(); | |
1da177e4 | 933 | init_IRQ(); |
ad2b1353 | 934 | tick_init(); |
d6dd50e0 | 935 | rcu_init_nohz(); |
1da177e4 | 936 | init_timers(); |
c0a31329 | 937 | hrtimers_init(); |
1da177e4 | 938 | softirq_init(); |
ad596171 | 939 | timekeeping_init(); |
d5553523 KC |
940 | |
941 | /* | |
942 | * For best initial stack canary entropy, prepare it after: | |
943 | * - setup_arch() for any UEFI RNG entropy and boot cmdline access | |
944 | * - timekeeping_init() for ktime entropy used in rand_initialize() | |
945 | * - rand_initialize() to get any arch-specific entropy like RDRAND | |
946 | * - add_latent_entropy() to get any latent entropy | |
947 | * - adding command line entropy | |
948 | */ | |
949 | rand_initialize(); | |
950 | add_latent_entropy(); | |
951 | add_device_randomness(command_line, strlen(command_line)); | |
952 | boot_init_stack_canary(); | |
953 | ||
88fecaa2 | 954 | time_init(); |
9e630205 | 955 | perf_event_init(); |
93e02814 | 956 | profile_init(); |
d8ad7d11 | 957 | call_function_init(); |
f91eb62f | 958 | WARN(!irqs_disabled(), "Interrupts were enabled early\n"); |
c3bc8fd6 | 959 | |
2ce802f6 | 960 | early_boot_irqs_disabled = false; |
93e02814 | 961 | local_irq_enable(); |
dcce284a | 962 | |
7e85ee0c | 963 | kmem_cache_init_late(); |
1da177e4 LT |
964 | |
965 | /* | |
966 | * HACK ALERT! This is early. We're enabling the console before | |
967 | * we've done PCI setups etc, and console_init() must be aware of | |
968 | * this. But we do want output early, in case something goes wrong. | |
969 | */ | |
970 | console_init(); | |
971 | if (panic_later) | |
499a4584 TH |
972 | panic("Too many boot %s vars at `%s'", panic_later, |
973 | panic_param); | |
fbb9ce95 | 974 | |
c3bc8fd6 | 975 | lockdep_init(); |
fbb9ce95 | 976 | |
9a11b49a IM |
977 | /* |
978 | * Need to run this when irqs are enabled, because it wants | |
979 | * to self-test [hard/soft]-irqs on/off lock inversion bugs | |
980 | * too: | |
981 | */ | |
982 | locking_selftest(); | |
983 | ||
c7753208 TL |
984 | /* |
985 | * This needs to be called before any devices perform DMA | |
986 | * operations that might use the SWIOTLB bounce buffers. It will | |
987 | * mark the bounce buffers as decrypted so that their usage will | |
988 | * not cause "plain-text" data to be decrypted when accessed. | |
989 | */ | |
990 | mem_encrypt_init(); | |
991 | ||
1da177e4 LT |
992 | #ifdef CONFIG_BLK_DEV_INITRD |
993 | if (initrd_start && !initrd_below_start_ok && | |
bd673c7c | 994 | page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) { |
ea676e84 | 995 | pr_crit("initrd overwritten (0x%08lx < 0x%08lx) - disabling it.\n", |
bd673c7c GU |
996 | page_to_pfn(virt_to_page((void *)initrd_start)), |
997 | min_low_pfn); | |
1da177e4 LT |
998 | initrd_start = 0; |
999 | } | |
1000 | #endif | |
e7c8d5c9 | 1001 | setup_per_cpu_pageset(); |
1da177e4 | 1002 | numa_policy_init(); |
9c71206d | 1003 | acpi_early_init(); |
1da177e4 LT |
1004 | if (late_time_init) |
1005 | late_time_init(); | |
857baa87 | 1006 | sched_clock_init(); |
1da177e4 | 1007 | calibrate_delay(); |
95846ecf | 1008 | pid_idr_init(); |
1da177e4 | 1009 | anon_vma_init(); |
11520e5e | 1010 | #ifdef CONFIG_X86 |
83e68189 | 1011 | if (efi_enabled(EFI_RUNTIME_SERVICES)) |
11520e5e LT |
1012 | efi_enter_virtual_mode(); |
1013 | #endif | |
b235beea | 1014 | thread_stack_cache_init(); |
d84f4f99 | 1015 | cred_init(); |
ff691f6e | 1016 | fork_init(); |
1da177e4 | 1017 | proc_caches_init(); |
3ea056c5 | 1018 | uts_ns_init(); |
1da177e4 | 1019 | buffer_init(); |
1da177e4 LT |
1020 | key_init(); |
1021 | security_init(); | |
0b4b3827 | 1022 | dbg_late_init(); |
4248b0da | 1023 | vfs_caches_init(); |
62906027 | 1024 | pagecache_init(); |
1da177e4 | 1025 | signals_init(); |
09652320 | 1026 | seq_file_init(); |
1da177e4 | 1027 | proc_root_init(); |
e149ed2b | 1028 | nsfs_init(); |
1da177e4 | 1029 | cpuset_init(); |
695df213 | 1030 | cgroup_init(); |
c757249a | 1031 | taskstats_init_early(); |
ca74e92b | 1032 | delayacct_init(); |
1da177e4 | 1033 | |
4fc19708 | 1034 | poking_init(); |
1da177e4 LT |
1035 | check_bugs(); |
1036 | ||
b064a8fa | 1037 | acpi_subsystem_init(); |
e7ff3a47 | 1038 | arch_post_acpi_subsys_init(); |
6ae6996a | 1039 | sfi_init_late(); |
dfd402a4 | 1040 | kcsan_init(); |
1da177e4 LT |
1041 | |
1042 | /* Do the rest non-__init'ed, we're now alive */ | |
53c99bd6 | 1043 | arch_call_rest_init(); |
a9a3ed1e BP |
1044 | |
1045 | prevent_tail_call_optimization(); | |
1da177e4 LT |
1046 | } |
1047 | ||
b99b87f7 PO |
1048 | /* Call all constructor functions linked into the kernel. */ |
1049 | static void __init do_ctors(void) | |
1050 | { | |
1051 | #ifdef CONFIG_CONSTRUCTORS | |
196a15b4 | 1052 | ctor_fn_t *fn = (ctor_fn_t *) __ctors_start; |
b99b87f7 | 1053 | |
196a15b4 HS |
1054 | for (; fn < (ctor_fn_t *) __ctors_end; fn++) |
1055 | (*fn)(); | |
b99b87f7 PO |
1056 | #endif |
1057 | } | |
1058 | ||
7b0b73d7 PB |
1059 | #ifdef CONFIG_KALLSYMS |
1060 | struct blacklist_entry { | |
1061 | struct list_head next; | |
1062 | char *buf; | |
1063 | }; | |
1064 | ||
1065 | static __initdata_or_module LIST_HEAD(blacklisted_initcalls); | |
1066 | ||
1067 | static int __init initcall_blacklist(char *str) | |
1068 | { | |
1069 | char *str_entry; | |
1070 | struct blacklist_entry *entry; | |
1071 | ||
1072 | /* str argument is a comma-separated list of functions */ | |
1073 | do { | |
1074 | str_entry = strsep(&str, ","); | |
1075 | if (str_entry) { | |
1076 | pr_debug("blacklisting initcall %s\n", str_entry); | |
7e1c4e27 MR |
1077 | entry = memblock_alloc(sizeof(*entry), |
1078 | SMP_CACHE_BYTES); | |
f5c7310a MR |
1079 | if (!entry) |
1080 | panic("%s: Failed to allocate %zu bytes\n", | |
1081 | __func__, sizeof(*entry)); | |
7e1c4e27 MR |
1082 | entry->buf = memblock_alloc(strlen(str_entry) + 1, |
1083 | SMP_CACHE_BYTES); | |
f5c7310a MR |
1084 | if (!entry->buf) |
1085 | panic("%s: Failed to allocate %zu bytes\n", | |
1086 | __func__, strlen(str_entry) + 1); | |
7b0b73d7 PB |
1087 | strcpy(entry->buf, str_entry); |
1088 | list_add(&entry->next, &blacklisted_initcalls); | |
1089 | } | |
1090 | } while (str_entry); | |
1091 | ||
1092 | return 0; | |
1093 | } | |
1094 | ||
1095 | static bool __init_or_module initcall_blacklisted(initcall_t fn) | |
1096 | { | |
7b0b73d7 | 1097 | struct blacklist_entry *entry; |
c8cdd2be | 1098 | char fn_name[KSYM_SYMBOL_LEN]; |
0fd5ed8d | 1099 | unsigned long addr; |
7b0b73d7 | 1100 | |
c8cdd2be | 1101 | if (list_empty(&blacklisted_initcalls)) |
7b0b73d7 PB |
1102 | return false; |
1103 | ||
0fd5ed8d RV |
1104 | addr = (unsigned long) dereference_function_descriptor(fn); |
1105 | sprint_symbol_no_offset(fn_name, addr); | |
c8cdd2be | 1106 | |
841c06d7 PB |
1107 | /* |
1108 | * fn will be "function_name [module_name]" where [module_name] is not | |
1109 | * displayed for built-in init functions. Strip off the [module_name]. | |
1110 | */ | |
1111 | strreplace(fn_name, ' ', '\0'); | |
1112 | ||
e6fd1fb3 | 1113 | list_for_each_entry(entry, &blacklisted_initcalls, next) { |
7b0b73d7 PB |
1114 | if (!strcmp(fn_name, entry->buf)) { |
1115 | pr_debug("initcall %s blacklisted\n", fn_name); | |
7b0b73d7 PB |
1116 | return true; |
1117 | } | |
1118 | } | |
1119 | ||
7b0b73d7 PB |
1120 | return false; |
1121 | } | |
1122 | #else | |
1123 | static int __init initcall_blacklist(char *str) | |
1124 | { | |
1125 | pr_warn("initcall_blacklist requires CONFIG_KALLSYMS\n"); | |
1126 | return 0; | |
1127 | } | |
1128 | ||
1129 | static bool __init_or_module initcall_blacklisted(initcall_t fn) | |
1130 | { | |
1131 | return false; | |
1132 | } | |
1133 | #endif | |
1134 | __setup("initcall_blacklist=", initcall_blacklist); | |
1135 | ||
4e37958d SRV |
1136 | static __init_or_module void |
1137 | trace_initcall_start_cb(void *data, initcall_t fn) | |
1da177e4 | 1138 | { |
4e37958d | 1139 | ktime_t *calltime = (ktime_t *)data; |
1da177e4 | 1140 | |
d75f773c | 1141 | printk(KERN_DEBUG "calling %pS @ %i\n", fn, task_pid_nr(current)); |
4e37958d SRV |
1142 | *calltime = ktime_get(); |
1143 | } | |
1144 | ||
1145 | static __init_or_module void | |
1146 | trace_initcall_finish_cb(void *data, initcall_t fn, int ret) | |
1147 | { | |
1148 | ktime_t *calltime = (ktime_t *)data; | |
1149 | ktime_t delta, rettime; | |
1150 | unsigned long long duration; | |
1151 | ||
22c5c03b | 1152 | rettime = ktime_get(); |
4e37958d | 1153 | delta = ktime_sub(rettime, *calltime); |
22c5c03b | 1154 | duration = (unsigned long long) ktime_to_ns(delta) >> 10; |
d75f773c | 1155 | printk(KERN_DEBUG "initcall %pS returned %d after %lld usecs\n", |
ea676e84 | 1156 | fn, ret, duration); |
4e37958d | 1157 | } |
1da177e4 | 1158 | |
4e37958d SRV |
1159 | static ktime_t initcall_calltime; |
1160 | ||
b0dc52f1 | 1161 | #ifdef TRACEPOINTS_ENABLED |
4e37958d SRV |
1162 | static void __init initcall_debug_enable(void) |
1163 | { | |
1164 | int ret; | |
1165 | ||
1166 | ret = register_trace_initcall_start(trace_initcall_start_cb, | |
1167 | &initcall_calltime); | |
1168 | ret |= register_trace_initcall_finish(trace_initcall_finish_cb, | |
1169 | &initcall_calltime); | |
1170 | WARN(ret, "Failed to register initcall tracepoints\n"); | |
22c5c03b | 1171 | } |
b0dc52f1 SRV |
1172 | # define do_trace_initcall_start trace_initcall_start |
1173 | # define do_trace_initcall_finish trace_initcall_finish | |
1174 | #else | |
1175 | static inline void do_trace_initcall_start(initcall_t fn) | |
1176 | { | |
1177 | if (!initcall_debug) | |
1178 | return; | |
1179 | trace_initcall_start_cb(&initcall_calltime, fn); | |
1180 | } | |
1181 | static inline void do_trace_initcall_finish(initcall_t fn, int ret) | |
1182 | { | |
1183 | if (!initcall_debug) | |
1184 | return; | |
1185 | trace_initcall_finish_cb(&initcall_calltime, fn, ret); | |
1186 | } | |
1187 | #endif /* !TRACEPOINTS_ENABLED */ | |
22c5c03b | 1188 | |
e4461271 | 1189 | int __init_or_module do_one_initcall(initcall_t fn) |
22c5c03b KW |
1190 | { |
1191 | int count = preempt_count(); | |
ff1c8fac | 1192 | char msgbuf[64]; |
4e37958d | 1193 | int ret; |
22c5c03b | 1194 | |
7b0b73d7 PB |
1195 | if (initcall_blacklisted(fn)) |
1196 | return -EPERM; | |
1197 | ||
b0dc52f1 | 1198 | do_trace_initcall_start(fn); |
4e37958d | 1199 | ret = fn(); |
b0dc52f1 | 1200 | do_trace_initcall_finish(fn, ret); |
8f0c45cd | 1201 | |
e0df154f | 1202 | msgbuf[0] = 0; |
e662e1cf | 1203 | |
e0df154f | 1204 | if (preempt_count() != count) { |
bf5d770b | 1205 | sprintf(msgbuf, "preemption imbalance "); |
4a2b4b22 | 1206 | preempt_count_set(count); |
1da177e4 | 1207 | } |
e0df154f | 1208 | if (irqs_disabled()) { |
a76bfd0d | 1209 | strlcat(msgbuf, "disabled interrupts ", sizeof(msgbuf)); |
e0df154f LT |
1210 | local_irq_enable(); |
1211 | } | |
d75f773c | 1212 | WARN(msgbuf[0], "initcall %pS returned with %s\n", fn, msgbuf); |
59f9415f | 1213 | |
38addce8 | 1214 | add_latent_entropy(); |
30dbb20e | 1215 | return ret; |
e0df154f LT |
1216 | } |
1217 | ||
1218 | ||
1b1eeca7 AB |
1219 | extern initcall_entry_t __initcall_start[]; |
1220 | extern initcall_entry_t __initcall0_start[]; | |
1221 | extern initcall_entry_t __initcall1_start[]; | |
1222 | extern initcall_entry_t __initcall2_start[]; | |
1223 | extern initcall_entry_t __initcall3_start[]; | |
1224 | extern initcall_entry_t __initcall4_start[]; | |
1225 | extern initcall_entry_t __initcall5_start[]; | |
1226 | extern initcall_entry_t __initcall6_start[]; | |
1227 | extern initcall_entry_t __initcall7_start[]; | |
1228 | extern initcall_entry_t __initcall_end[]; | |
1229 | ||
1230 | static initcall_entry_t *initcall_levels[] __initdata = { | |
026cee00 PM |
1231 | __initcall0_start, |
1232 | __initcall1_start, | |
1233 | __initcall2_start, | |
1234 | __initcall3_start, | |
1235 | __initcall4_start, | |
1236 | __initcall5_start, | |
1237 | __initcall6_start, | |
1238 | __initcall7_start, | |
1239 | __initcall_end, | |
1240 | }; | |
1241 | ||
96263d28 | 1242 | /* Keep these in sync with initcalls in include/linux/init.h */ |
7c8f7193 | 1243 | static const char *initcall_level_names[] __initdata = { |
a6fb6012 | 1244 | "pure", |
9fb48c74 JC |
1245 | "core", |
1246 | "postcore", | |
1247 | "arch", | |
1248 | "subsys", | |
1249 | "fs", | |
1250 | "device", | |
1251 | "late", | |
026cee00 PM |
1252 | }; |
1253 | ||
7e2762e1 AS |
1254 | static int __init ignore_unknown_bootoption(char *param, char *val, |
1255 | const char *unused, void *arg) | |
1256 | { | |
1257 | return 0; | |
1258 | } | |
1259 | ||
0068c92a | 1260 | static void __init do_initcall_level(int level, char *command_line) |
e0df154f | 1261 | { |
1b1eeca7 | 1262 | initcall_entry_t *fn; |
e0df154f | 1263 | |
026cee00 | 1264 | parse_args(initcall_level_names[level], |
0068c92a | 1265 | command_line, __start___param, |
026cee00 PM |
1266 | __stop___param - __start___param, |
1267 | level, level, | |
7e2762e1 | 1268 | NULL, ignore_unknown_bootoption); |
026cee00 | 1269 | |
4ee7c60d | 1270 | trace_initcall_level(initcall_level_names[level]); |
026cee00 | 1271 | for (fn = initcall_levels[level]; fn < initcall_levels[level+1]; fn++) |
1b1eeca7 | 1272 | do_one_initcall(initcall_from_entry(fn)); |
1da177e4 LT |
1273 | } |
1274 | ||
026cee00 PM |
1275 | static void __init do_initcalls(void) |
1276 | { | |
1277 | int level; | |
0068c92a MH |
1278 | size_t len = strlen(saved_command_line) + 1; |
1279 | char *command_line; | |
1280 | ||
1281 | command_line = kzalloc(len, GFP_KERNEL); | |
1282 | if (!command_line) | |
1283 | panic("%s: Failed to allocate %zu bytes\n", __func__, len); | |
1284 | ||
1285 | for (level = 0; level < ARRAY_SIZE(initcall_levels) - 1; level++) { | |
1286 | /* Parser modifies command_line, restore it each time */ | |
1287 | strcpy(command_line, saved_command_line); | |
1288 | do_initcall_level(level, command_line); | |
1289 | } | |
026cee00 | 1290 | |
0068c92a | 1291 | kfree(command_line); |
026cee00 PM |
1292 | } |
1293 | ||
1da177e4 LT |
1294 | /* |
1295 | * Ok, the machine is now initialized. None of the devices | |
1296 | * have been touched yet, but the CPU subsystem is up and | |
1297 | * running, and memory and process management works. | |
1298 | * | |
1299 | * Now we can finally start doing some real work.. | |
1300 | */ | |
1301 | static void __init do_basic_setup(void) | |
1302 | { | |
759ee091 | 1303 | cpuset_init_smp(); |
1da177e4 | 1304 | driver_init(); |
b04c3afb | 1305 | init_irq_proc(); |
b99b87f7 | 1306 | do_ctors(); |
d5767c53 | 1307 | usermodehelper_enable(); |
b0f84374 | 1308 | do_initcalls(); |
1da177e4 LT |
1309 | } |
1310 | ||
7babe8db | 1311 | static void __init do_pre_smp_initcalls(void) |
c2147a50 | 1312 | { |
1b1eeca7 | 1313 | initcall_entry_t *fn; |
c2147a50 | 1314 | |
4ee7c60d | 1315 | trace_initcall_level("early"); |
026cee00 | 1316 | for (fn = __initcall_start; fn < __initcall0_start; fn++) |
1b1eeca7 | 1317 | do_one_initcall(initcall_from_entry(fn)); |
c2147a50 EGM |
1318 | } |
1319 | ||
a74fb73c | 1320 | static int run_init_process(const char *init_filename) |
1da177e4 | 1321 | { |
b88c50ac AS |
1322 | const char *const *p; |
1323 | ||
1da177e4 | 1324 | argv_init[0] = init_filename; |
3f5c15d8 | 1325 | pr_info("Run %s as init process\n", init_filename); |
b88c50ac AS |
1326 | pr_debug(" with arguments:\n"); |
1327 | for (p = argv_init; *p; p++) | |
1328 | pr_debug(" %s\n", *p); | |
1329 | pr_debug(" with environment:\n"); | |
1330 | for (p = envp_init; *p; p++) | |
1331 | pr_debug(" %s\n", *p); | |
c4ad8f98 | 1332 | return do_execve(getname_kernel(init_filename), |
ae903caa AV |
1333 | (const char __user *const __user *)argv_init, |
1334 | (const char __user *const __user *)envp_init); | |
1da177e4 LT |
1335 | } |
1336 | ||
ba24762b MO |
1337 | static int try_to_run_init_process(const char *init_filename) |
1338 | { | |
1339 | int ret; | |
1340 | ||
1341 | ret = run_init_process(init_filename); | |
1342 | ||
1343 | if (ret && ret != -ENOENT) { | |
1344 | pr_err("Starting init: %s exists but couldn't execute it (error %d)\n", | |
1345 | init_filename, ret); | |
1346 | } | |
1347 | ||
1348 | return ret; | |
1349 | } | |
1350 | ||
f80b0c90 | 1351 | static noinline void __init kernel_init_freeable(void); |
d6b21238 | 1352 | |
0f5bf6d0 | 1353 | #if defined(CONFIG_STRICT_KERNEL_RWX) || defined(CONFIG_STRICT_MODULE_RWX) |
39290b38 | 1354 | bool rodata_enabled __ro_after_init = true; |
d2aa1aca KC |
1355 | static int __init set_debug_rodata(char *str) |
1356 | { | |
1357 | return strtobool(str, &rodata_enabled); | |
1358 | } | |
1359 | __setup("rodata=", set_debug_rodata); | |
39290b38 | 1360 | #endif |
d2aa1aca | 1361 | |
0f5bf6d0 | 1362 | #ifdef CONFIG_STRICT_KERNEL_RWX |
d2aa1aca KC |
1363 | static void mark_readonly(void) |
1364 | { | |
2959a5f7 | 1365 | if (rodata_enabled) { |
ae646f0b | 1366 | /* |
ba180314 PM |
1367 | * load_module() results in W+X mappings, which are cleaned |
1368 | * up with call_rcu(). Let's make sure that queued work is | |
ae646f0b JH |
1369 | * flushed so that we don't hit false positives looking for |
1370 | * insecure pages which are W+X. | |
1371 | */ | |
ba180314 | 1372 | rcu_barrier(); |
d2aa1aca | 1373 | mark_rodata_ro(); |
2959a5f7 JP |
1374 | rodata_test(); |
1375 | } else | |
d2aa1aca KC |
1376 | pr_info("Kernel memory protection disabled.\n"); |
1377 | } | |
f596ded1 CL |
1378 | #elif defined(CONFIG_ARCH_HAS_STRICT_KERNEL_RWX) |
1379 | static inline void mark_readonly(void) | |
1380 | { | |
1381 | pr_warn("Kernel memory protection not selected by kernel config.\n"); | |
1382 | } | |
d2aa1aca KC |
1383 | #else |
1384 | static inline void mark_readonly(void) | |
1385 | { | |
1386 | pr_warn("This architecture does not have kernel memory protection.\n"); | |
1387 | } | |
1388 | #endif | |
1389 | ||
997aef68 MR |
1390 | void __weak free_initmem(void) |
1391 | { | |
f4039999 | 1392 | free_initmem_default(POISON_FREE_INITMEM); |
997aef68 MR |
1393 | } |
1394 | ||
d6b21238 | 1395 | static int __ref kernel_init(void *unused) |
ee5bfa64 | 1396 | { |
ba24762b MO |
1397 | int ret; |
1398 | ||
d6b21238 | 1399 | kernel_init_freeable(); |
22a9d645 AV |
1400 | /* need to finish all async __init code before freeing the memory */ |
1401 | async_synchronize_full(); | |
b80f0f6c | 1402 | ftrace_free_init_mem(); |
ee5bfa64 | 1403 | free_initmem(); |
d2aa1aca | 1404 | mark_readonly(); |
b976690f JR |
1405 | |
1406 | /* | |
1407 | * Kernel mappings are now finalized - update the userspace page-table | |
1408 | * to finalize PTI. | |
1409 | */ | |
1410 | pti_finalize(); | |
1411 | ||
ee5bfa64 VG |
1412 | system_state = SYSTEM_RUNNING; |
1413 | numa_default_policy(); | |
1414 | ||
967dcb8f PM |
1415 | rcu_end_inkernel_boot(); |
1416 | ||
3db978d4 VB |
1417 | do_sysctl_args(); |
1418 | ||
ee5bfa64 | 1419 | if (ramdisk_execute_command) { |
ba24762b MO |
1420 | ret = run_init_process(ramdisk_execute_command); |
1421 | if (!ret) | |
a74fb73c | 1422 | return 0; |
ba24762b MO |
1423 | pr_err("Failed to execute %s (error %d)\n", |
1424 | ramdisk_execute_command, ret); | |
ee5bfa64 VG |
1425 | } |
1426 | ||
1427 | /* | |
1428 | * We try each of these until one succeeds. | |
1429 | * | |
1430 | * The Bourne shell can be used instead of init if we are | |
1431 | * trying to recover a really broken machine. | |
1432 | */ | |
1433 | if (execute_command) { | |
ba24762b MO |
1434 | ret = run_init_process(execute_command); |
1435 | if (!ret) | |
a74fb73c | 1436 | return 0; |
6ef4536e AL |
1437 | panic("Requested init %s failed (error %d).", |
1438 | execute_command, ret); | |
ee5bfa64 | 1439 | } |
ada4ab7a CD |
1440 | |
1441 | if (CONFIG_DEFAULT_INIT[0] != '\0') { | |
1442 | ret = run_init_process(CONFIG_DEFAULT_INIT); | |
1443 | if (ret) | |
1444 | pr_err("Default init %s failed (error %d)\n", | |
1445 | CONFIG_DEFAULT_INIT, ret); | |
1446 | else | |
1447 | return 0; | |
1448 | } | |
1449 | ||
ba24762b MO |
1450 | if (!try_to_run_init_process("/sbin/init") || |
1451 | !try_to_run_init_process("/etc/init") || | |
1452 | !try_to_run_init_process("/bin/init") || | |
1453 | !try_to_run_init_process("/bin/sh")) | |
a74fb73c | 1454 | return 0; |
ee5bfa64 | 1455 | |
ba24762b | 1456 | panic("No working init found. Try passing init= option to kernel. " |
8c27ceff | 1457 | "See Linux Documentation/admin-guide/init.rst for guidance."); |
ee5bfa64 VG |
1458 | } |
1459 | ||
b49a733d DB |
1460 | void console_on_rootfs(void) |
1461 | { | |
74f1a299 DB |
1462 | /* Open the /dev/console as stdin, this should never fail */ |
1463 | if (ksys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0) | |
1464 | pr_err("Warning: unable to open an initial console.\n"); | |
b49a733d | 1465 | |
74f1a299 DB |
1466 | /* create stdout/stderr */ |
1467 | (void) ksys_dup(0); | |
1468 | (void) ksys_dup(0); | |
b49a733d DB |
1469 | } |
1470 | ||
f80b0c90 | 1471 | static noinline void __init kernel_init_freeable(void) |
1da177e4 | 1472 | { |
b433c3d4 PZ |
1473 | /* |
1474 | * Wait until kthreadd is all set-up. | |
1475 | */ | |
1476 | wait_for_completion(&kthreadd_done); | |
31a67102 LT |
1477 | |
1478 | /* Now the scheduler is fully set up and can do blocking allocations */ | |
1479 | gfp_allowed_mask = __GFP_BITS_MASK; | |
1480 | ||
58568d2a MX |
1481 | /* |
1482 | * init can allocate pages on any node | |
1483 | */ | |
3c466d46 | 1484 | set_mems_allowed(node_states[N_MEMORY]); |
1da177e4 | 1485 | |
9ec52099 CLG |
1486 | cad_pid = task_pid(current); |
1487 | ||
ca74a6f8 | 1488 | smp_prepare_cpus(setup_max_cpus); |
1da177e4 | 1489 | |
3347fa09 TH |
1490 | workqueue_init(); |
1491 | ||
597b7305 MH |
1492 | init_mm_internals(); |
1493 | ||
1da177e4 | 1494 | do_pre_smp_initcalls(); |
004417a6 | 1495 | lockup_detector_init(); |
1da177e4 | 1496 | |
1da177e4 LT |
1497 | smp_init(); |
1498 | sched_init_smp(); | |
1499 | ||
f1b192b1 | 1500 | padata_init(); |
0e1cc95b | 1501 | page_alloc_init_late(); |
2f1ee091 QC |
1502 | /* Initialize page ext after all struct pages are initialized. */ |
1503 | page_ext_init(); | |
0e1cc95b | 1504 | |
1da177e4 LT |
1505 | do_basic_setup(); |
1506 | ||
b49a733d | 1507 | console_on_rootfs(); |
2bd3a997 | 1508 | |
1da177e4 LT |
1509 | /* |
1510 | * check if there is an early userspace init. If yes, let it do all | |
1511 | * the work | |
1512 | */ | |
ffdfc409 OJ |
1513 | |
1514 | if (!ramdisk_execute_command) | |
1515 | ramdisk_execute_command = "/init"; | |
1516 | ||
cbfe20f5 DB |
1517 | if (ksys_access((const char __user *) |
1518 | ramdisk_execute_command, 0) != 0) { | |
ffdfc409 | 1519 | ramdisk_execute_command = NULL; |
1da177e4 | 1520 | prepare_namespace(); |
ffdfc409 | 1521 | } |
1da177e4 LT |
1522 | |
1523 | /* | |
1524 | * Ok, we have completed the initial bootup, and | |
1525 | * we're essentially up and running. Get rid of the | |
1526 | * initmem segments and start the user-mode stuff.. | |
c9cd2ce2 DK |
1527 | * |
1528 | * rootfs is available now, try loading the public keys | |
1529 | * and default modules | |
1da177e4 | 1530 | */ |
bb813f4c | 1531 | |
c9cd2ce2 | 1532 | integrity_load_keys(); |
1da177e4 | 1533 | } |