]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - init/main.c
sched/headers: Prepare to move sched_info_on() and force_schedstat_enabled() from...
[mirror_ubuntu-artful-kernel.git] / init / main.c
CommitLineData
1da177e4
LT
1/*
2 * linux/init/main.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * GK 2/5/95 - Changed to support mounting root fs via NFS
7 * Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96
8 * Moan early if gcc is old, avoiding bogus kernels - Paul Gortmaker, May '96
dd4d9fec 9 * Simplified starting of init: Michael A. Griffith <grif@acm.org>
1da177e4
LT
10 */
11
ea676e84
AM
12#define DEBUG /* Enable initcall_debug */
13
1da177e4 14#include <linux/types.h>
8a293be0 15#include <linux/extable.h>
1da177e4
LT
16#include <linux/module.h>
17#include <linux/proc_fs.h>
1da177e4
LT
18#include <linux/kernel.h>
19#include <linux/syscalls.h>
9b5609fd 20#include <linux/stackprotector.h>
1da177e4
LT
21#include <linux/string.h>
22#include <linux/ctype.h>
23#include <linux/delay.h>
1da177e4
LT
24#include <linux/ioport.h>
25#include <linux/init.h>
1da177e4 26#include <linux/initrd.h>
1da177e4 27#include <linux/bootmem.h>
4a7a16dc 28#include <linux/acpi.h>
1da177e4 29#include <linux/tty.h>
38b8d208 30#include <linux/nmi.h>
1da177e4
LT
31#include <linux/percpu.h>
32#include <linux/kmod.h>
db64fe02 33#include <linux/vmalloc.h>
1da177e4 34#include <linux/kernel_stat.h>
d7cd5611 35#include <linux/start_kernel.h>
1da177e4 36#include <linux/security.h>
3d442233 37#include <linux/smp.h>
1da177e4
LT
38#include <linux/profile.h>
39#include <linux/rcupdate.h>
40#include <linux/moduleparam.h>
41#include <linux/kallsyms.h>
42#include <linux/writeback.h>
43#include <linux/cpu.h>
44#include <linux/cpuset.h>
ddbcc7e8 45#include <linux/cgroup.h>
1da177e4 46#include <linux/efi.h>
906568c9 47#include <linux/tick.h>
6168a702 48#include <linux/interrupt.h>
c757249a 49#include <linux/taskstats_kern.h>
ca74e92b 50#include <linux/delayacct.h>
1da177e4
LT
51#include <linux/unistd.h>
52#include <linux/rmap.h>
53#include <linux/mempolicy.h>
54#include <linux/key.h>
b6cd0b77 55#include <linux/buffer_head.h>
eefa864b 56#include <linux/page_ext.h>
9a11b49a 57#include <linux/debug_locks.h>
3ac7fe5a 58#include <linux/debugobjects.h>
fbb9ce95 59#include <linux/lockdep.h>
3c7b4e6b 60#include <linux/kmemleak.h>
84d73786 61#include <linux/pid_namespace.h>
1f21782e 62#include <linux/device.h>
73c27992 63#include <linux/kthread.h>
e6fe6649 64#include <linux/sched.h>
a1c9eea9 65#include <linux/signal.h>
199f0ca5 66#include <linux/idr.h>
0b4b3827 67#include <linux/kgdb.h>
68bf21aa 68#include <linux/ftrace.h>
22a9d645 69#include <linux/async.h>
dfec072e 70#include <linux/kmemcheck.h>
6ae6996a 71#include <linux/sfi.h>
2b2af54a 72#include <linux/shmem_fs.h>
5a0e3ad6 73#include <linux/slab.h>
24a24bb6 74#include <linux/perf_event.h>
a74fb73c 75#include <linux/ptrace.h>
bb813f4c
TH
76#include <linux/blkdev.h>
77#include <linux/elevator.h>
38ff87f7 78#include <linux/sched_clock.h>
29930025 79#include <linux/sched/task.h>
68db0cf1 80#include <linux/sched/task_stack.h>
65f382fd 81#include <linux/context_tracking.h>
47d06e53 82#include <linux/random.h>
7b0b73d7 83#include <linux/list.h>
c9cd2ce2 84#include <linux/integrity.h>
e149ed2b 85#include <linux/proc_ns.h>
0ddab1d2 86#include <linux/io.h>
39290b38 87#include <linux/cache.h>
2959a5f7 88#include <linux/rodata_test.h>
1da177e4
LT
89
90#include <asm/io.h>
91#include <asm/bugs.h>
92#include <asm/setup.h>
a940199f 93#include <asm/sections.h>
37b73c82 94#include <asm/cacheflush.h>
1da177e4 95
aae5f662 96static int kernel_init(void *);
1da177e4
LT
97
98extern void init_IRQ(void);
ff691f6e 99extern void fork_init(void);
1da177e4 100extern void radix_tree_init(void);
1da177e4 101
2ce802f6
TH
102/*
103 * Debug helper: via this flag we know that we are in 'early bootup code'
104 * where only the boot processor is running with IRQ disabled. This means
105 * two things - IRQ must not be enabled before the flag is cleared and some
106 * operations which are not allowed with IRQ disabled are allowed while the
107 * flag is set.
108 */
109bool early_boot_irqs_disabled __read_mostly;
110
a6826048 111enum system_states system_state __read_mostly;
1da177e4
LT
112EXPORT_SYMBOL(system_state);
113
114/*
115 * Boot command-line arguments
116 */
117#define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
118#define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
119
120extern void time_init(void);
121/* Default late time init is NULL. archs can override this later. */
d2e3192b 122void (*__initdata late_time_init)(void);
1da177e4 123
30d7e0d4
ABL
124/* Untouched command line saved by arch-specific code. */
125char __initdata boot_command_line[COMMAND_LINE_SIZE];
126/* Untouched saved command line (eg. for /proc) */
127char *saved_command_line;
128/* Command line for parameter parsing */
129static char *static_command_line;
08746a65
KM
130/* Command line for per-initcall parameter parsing */
131static char *initcall_command_line;
1da177e4
LT
132
133static char *execute_command;
ffdfc409 134static char *ramdisk_execute_command;
1da177e4 135
c4b2c0c5
HFS
136/*
137 * Used to generate warnings if static_key manipulation functions are used
138 * before jump_label_init is called.
139 */
dd4d9fec 140bool static_key_initialized __read_mostly;
c4b2c0c5
HFS
141EXPORT_SYMBOL_GPL(static_key_initialized);
142
8b3b2955
JB
143/*
144 * If set, this is an indication to the drivers that reset the underlying
145 * device before going ahead with the initialization otherwise driver might
146 * rely on the BIOS and skip the reset operation.
147 *
148 * This is useful if kernel is booting in an unreliable environment.
fc454fdc 149 * For ex. kdump situation where previous kernel has crashed, BIOS has been
8b3b2955
JB
150 * skipped and devices will be in unknown state.
151 */
152unsigned int reset_devices;
153EXPORT_SYMBOL(reset_devices);
1da177e4 154
7e96287d
VG
155static int __init set_reset_devices(char *str)
156{
157 reset_devices = 1;
158 return 1;
159}
160
161__setup("reset_devices", set_reset_devices);
162
dd4d9fec
FF
163static const char *argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
164const char *envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
1da177e4
LT
165static const char *panic_later, *panic_param;
166
914dcaa8 167extern const struct obs_kernel_param __setup_start[], __setup_end[];
1da177e4 168
31c025b5 169static bool __init obsolete_checksetup(char *line)
1da177e4 170{
914dcaa8 171 const struct obs_kernel_param *p;
31c025b5 172 bool had_early_param = false;
1da177e4
LT
173
174 p = __setup_start;
175 do {
176 int n = strlen(p->str);
b1e4d20c 177 if (parameqn(line, p->str, n)) {
1da177e4 178 if (p->early) {
33df0d19
RR
179 /* Already done in parse_early_param?
180 * (Needs exact match on param part).
181 * Keep iterating, as we can have early
182 * params and __setups of same names 8( */
1da177e4 183 if (line[n] == '\0' || line[n] == '=')
31c025b5 184 had_early_param = true;
1da177e4 185 } else if (!p->setup_func) {
ea676e84
AM
186 pr_warn("Parameter %s is obsolete, ignored\n",
187 p->str);
31c025b5 188 return true;
1da177e4 189 } else if (p->setup_func(line + n))
31c025b5 190 return true;
1da177e4
LT
191 }
192 p++;
193 } while (p < __setup_end);
33df0d19
RR
194
195 return had_early_param;
1da177e4
LT
196}
197
198/*
199 * This should be approx 2 Bo*oMips to start (note initial shift), and will
200 * still work even if initially too large, it will just take slightly longer
201 */
202unsigned long loops_per_jiffy = (1<<12);
1da177e4
LT
203EXPORT_SYMBOL(loops_per_jiffy);
204
205static int __init debug_kernel(char *str)
206{
a8fe19eb 207 console_loglevel = CONSOLE_LOGLEVEL_DEBUG;
f6f21c81 208 return 0;
1da177e4
LT
209}
210
211static int __init quiet_kernel(char *str)
212{
a8fe19eb 213 console_loglevel = CONSOLE_LOGLEVEL_QUIET;
f6f21c81 214 return 0;
1da177e4
LT
215}
216
f6f21c81
YL
217early_param("debug", debug_kernel);
218early_param("quiet", quiet_kernel);
1da177e4
LT
219
220static int __init loglevel(char *str)
221{
808bf29b
AS
222 int newlevel;
223
224 /*
225 * Only update loglevel value when a correct setting was passed,
226 * to prevent blind crashes (when loglevel being set to 0) that
227 * are quite hard to debug
228 */
229 if (get_option(&str, &newlevel)) {
230 console_loglevel = newlevel;
231 return 0;
232 }
233
234 return -EINVAL;
1da177e4
LT
235}
236
f6f21c81 237early_param("loglevel", loglevel);
1da177e4 238
a99cd112 239/* Change NUL term back to "=", to make "param" the whole string. */
ecc86170
LR
240static int __init repair_env_string(char *param, char *val,
241 const char *unused, void *arg)
1da177e4 242{
1da177e4
LT
243 if (val) {
244 /* param=val or param="val"? */
245 if (val == param+strlen(param)+1)
246 val[-1] = '=';
247 else if (val == param+strlen(param)+2) {
248 val[-2] = '=';
249 memmove(val-1, val, strlen(val)+1);
250 val--;
251 } else
252 BUG();
253 }
a99cd112
CM
254 return 0;
255}
256
51e158c1 257/* Anything after -- gets handed straight to init. */
ecc86170
LR
258static int __init set_init_arg(char *param, char *val,
259 const char *unused, void *arg)
51e158c1
RR
260{
261 unsigned int i;
262
263 if (panic_later)
264 return 0;
265
ecc86170 266 repair_env_string(param, val, unused, NULL);
51e158c1
RR
267
268 for (i = 0; argv_init[i]; i++) {
269 if (i == MAX_INIT_ARGS) {
270 panic_later = "init";
271 panic_param = param;
272 return 0;
273 }
274 }
275 argv_init[i] = param;
276 return 0;
277}
278
a99cd112
CM
279/*
280 * Unknown boot options get handed to init, unless they look like
281 * unused parameters (modprobe will find them in /proc/cmdline).
282 */
ecc86170
LR
283static int __init unknown_bootoption(char *param, char *val,
284 const char *unused, void *arg)
a99cd112 285{
ecc86170 286 repair_env_string(param, val, unused, NULL);
1da177e4
LT
287
288 /* Handle obsolete-style parameters */
289 if (obsolete_checksetup(param))
290 return 0;
291
f066a4f6
RR
292 /* Unused module parameter. */
293 if (strchr(param, '.') && (!val || strchr(param, '.') < val))
1da177e4 294 return 0;
1da177e4
LT
295
296 if (panic_later)
297 return 0;
298
299 if (val) {
300 /* Environment option */
301 unsigned int i;
302 for (i = 0; envp_init[i]; i++) {
303 if (i == MAX_INIT_ENVS) {
499a4584 304 panic_later = "env";
1da177e4
LT
305 panic_param = param;
306 }
307 if (!strncmp(param, envp_init[i], val - param))
308 break;
309 }
310 envp_init[i] = param;
311 } else {
312 /* Command line option */
313 unsigned int i;
314 for (i = 0; argv_init[i]; i++) {
315 if (i == MAX_INIT_ARGS) {
499a4584 316 panic_later = "init";
1da177e4
LT
317 panic_param = param;
318 }
319 }
320 argv_init[i] = param;
321 }
322 return 0;
323}
324
325static int __init init_setup(char *str)
326{
327 unsigned int i;
328
329 execute_command = str;
330 /*
331 * In case LILO is going to boot us with default command line,
332 * it prepends "auto" before the whole cmdline which makes
333 * the shell think it should execute a script with such name.
334 * So we ignore all arguments entered _before_ init=... [MJ]
335 */
336 for (i = 1; i < MAX_INIT_ARGS; i++)
337 argv_init[i] = NULL;
338 return 1;
339}
340__setup("init=", init_setup);
341
ffdfc409
OJ
342static int __init rdinit_setup(char *str)
343{
344 unsigned int i;
345
346 ramdisk_execute_command = str;
347 /* See "auto" comment in init_setup */
348 for (i = 1; i < MAX_INIT_ARGS; i++)
349 argv_init[i] = NULL;
350 return 1;
351}
352__setup("rdinit=", rdinit_setup);
353
1da177e4 354#ifndef CONFIG_SMP
34db18a0 355static const unsigned int setup_max_cpus = NR_CPUS;
e0982e90 356static inline void setup_nr_cpu_ids(void) { }
1da177e4 357static inline void smp_prepare_cpus(unsigned int maxcpus) { }
1da177e4
LT
358#endif
359
30d7e0d4
ABL
360/*
361 * We need to store the untouched command line for future reference.
362 * We also need to store the touched command line since the parameter
363 * parsing is performed in place, and we should allow a component to
364 * store reference of name/value for future reference.
365 */
366static void __init setup_command_line(char *command_line)
367{
098b081b
SS
368 saved_command_line =
369 memblock_virt_alloc(strlen(boot_command_line) + 1, 0);
370 initcall_command_line =
371 memblock_virt_alloc(strlen(boot_command_line) + 1, 0);
372 static_command_line = memblock_virt_alloc(strlen(command_line) + 1, 0);
dd4d9fec
FF
373 strcpy(saved_command_line, boot_command_line);
374 strcpy(static_command_line, command_line);
30d7e0d4
ABL
375}
376
1da177e4
LT
377/*
378 * We need to finalize in a non-__init function or else race conditions
379 * between the root thread and the init thread may cause start_kernel to
380 * be reaped by free_initmem before the root thread has proceeded to
381 * cpu_idle.
382 *
383 * gcc-3.4 accidentally inlines this function, so use noinline.
384 */
385
b433c3d4
PZ
386static __initdata DECLARE_COMPLETION(kthreadd_done);
387
bd721ea7 388static noinline void __ref rest_init(void)
1da177e4 389{
73c27992
EB
390 int pid;
391
7db905e6 392 rcu_scheduler_starting();
b433c3d4 393 /*
97158569 394 * We need to spawn init first so that it obtains pid 1, however
b433c3d4
PZ
395 * the init task will end up wanting to create kthreads, which, if
396 * we schedule it before we create kthreadd, will OOPS.
397 */
34a1b723 398 kernel_thread(kernel_init, NULL, CLONE_FS);
1da177e4 399 numa_default_policy();
73c27992 400 pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);
d11c563d 401 rcu_read_lock();
5cd20455 402 kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns);
d11c563d 403 rcu_read_unlock();
b433c3d4 404 complete(&kthreadd_done);
f340c0d1
IM
405
406 /*
407 * The boot idle thread must execute schedule()
1df21055 408 * at least once to get things moving:
f340c0d1 409 */
1df21055 410 init_idle_bootup_task(current);
bd2f5536 411 schedule_preempt_disabled();
5bfb5d69 412 /* Call into cpu_idle with preempt disabled */
a1a04ec3 413 cpu_startup_entry(CPUHP_ONLINE);
1df21055 414}
1da177e4
LT
415
416/* Check for early params. */
ecc86170
LR
417static int __init do_early_param(char *param, char *val,
418 const char *unused, void *arg)
1da177e4 419{
914dcaa8 420 const struct obs_kernel_param *p;
1da177e4
LT
421
422 for (p = __setup_start; p < __setup_end; p++) {
b1e4d20c 423 if ((p->early && parameq(param, p->str)) ||
18a8bd94
YL
424 (strcmp(param, "console") == 0 &&
425 strcmp(p->str, "earlycon") == 0)
426 ) {
1da177e4 427 if (p->setup_func(val) != 0)
ea676e84 428 pr_warn("Malformed early option '%s'\n", param);
1da177e4
LT
429 }
430 }
431 /* We accept everything at this stage. */
432 return 0;
433}
434
13977091
MD
435void __init parse_early_options(char *cmdline)
436{
ecc86170
LR
437 parse_args("early options", cmdline, NULL, 0, 0, 0, NULL,
438 do_early_param);
13977091
MD
439}
440
1da177e4
LT
441/* Arch code calls this early on, or if not, just before other parsing. */
442void __init parse_early_param(void)
443{
dd4d9fec
FF
444 static int done __initdata;
445 static char tmp_cmdline[COMMAND_LINE_SIZE] __initdata;
1da177e4
LT
446
447 if (done)
448 return;
449
450 /* All fall through to do_early_param. */
30d7e0d4 451 strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE);
13977091 452 parse_early_options(tmp_cmdline);
1da177e4
LT
453 done = 1;
454}
455
e7ff3a47
TG
456void __init __weak arch_post_acpi_subsys_init(void) { }
457
839ad62e 458void __init __weak smp_setup_processor_id(void)
033ab7f8
AM
459{
460}
461
eded09cc 462# if THREAD_SIZE >= PAGE_SIZE
b235beea 463void __init __weak thread_stack_cache_init(void)
8c9843e5
BH
464{
465}
eded09cc 466#endif
8c9843e5 467
444f478f
PE
468/*
469 * Set up kernel memory allocators
470 */
471static void __init mm_init(void)
472{
eefa864b
JK
473 /*
474 * page_ext requires contiguous pages,
475 * bigger than MAX_ORDER unless SPARSEMEM.
476 */
477 page_ext_init_flatmem();
444f478f
PE
478 mem_init();
479 kmem_cache_init();
099a19d9 480 percpu_init_late();
b35f1819 481 pgtable_init();
444f478f 482 vmalloc_init();
0ddab1d2 483 ioremap_huge_init();
444f478f
PE
484}
485
722a9f92 486asmlinkage __visible void __init start_kernel(void)
1da177e4 487{
dd4d9fec
FF
488 char *command_line;
489 char *after_dashes;
033ab7f8 490
d4311ff1 491 set_task_stack_end_magic(&init_task);
73839c5b 492 smp_setup_processor_id();
3ac7fe5a 493 debug_objects_early_init();
42059429
IM
494
495 /*
496 * Set up the the initial canary ASAP:
497 */
498 boot_init_stack_canary();
499
ddbcc7e8 500 cgroup_init_early();
fbb9ce95
IM
501
502 local_irq_disable();
2ce802f6 503 early_boot_irqs_disabled = true;
fbb9ce95 504
1da177e4
LT
505/*
506 * Interrupts are still disabled. Do necessary setups, then
507 * enable them
508 */
44fd2299 509 boot_cpu_init();
1da177e4 510 page_address_init();
ea676e84 511 pr_notice("%s", linux_banner);
1da177e4 512 setup_arch(&command_line);
6345d24d 513 mm_init_cpumask(&init_mm);
30d7e0d4 514 setup_command_line(command_line);
e0982e90 515 setup_nr_cpu_ids();
d6647bdf 516 setup_per_cpu_areas();
cff7d378 517 boot_cpu_state_init();
44fd2299 518 smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
1da177e4 519
9adb62a5 520 build_all_zonelists(NULL, NULL);
83b519e8
PE
521 page_alloc_init();
522
ea676e84 523 pr_notice("Kernel command line: %s\n", boot_command_line);
83b519e8 524 parse_early_param();
51e158c1
RR
525 after_dashes = parse_args("Booting kernel",
526 static_command_line, __start___param,
527 __stop___param - __start___param,
ecc86170 528 -1, -1, NULL, &unknown_bootoption);
3438cf54 529 if (!IS_ERR_OR_NULL(after_dashes))
51e158c1 530 parse_args("Setting init args", after_dashes, NULL, 0, -1, -1,
ecc86170 531 NULL, set_init_arg);
97ce2c88
JF
532
533 jump_label_init();
534
83b519e8
PE
535 /*
536 * These use large bootmem allocations and must precede
537 * kmem_cache_init()
538 */
162a7e75 539 setup_log_buf(0);
83b519e8 540 pidhash_init();
83b519e8
PE
541 vfs_caches_init_early();
542 sort_main_extable();
543 trap_init();
444f478f 544 mm_init();
de03c72c 545
1da177e4
LT
546 /*
547 * Set up the scheduler prior starting any interrupts (such as the
548 * timer interrupt). Full topology setup happens at smp_init()
549 * time - but meanwhile we still have a functioning scheduler.
550 */
551 sched_init();
552 /*
553 * Disable preemption - early bootup scheduling is extremely
554 * fragile until we cpu_idle() for the first time.
555 */
556 preempt_disable();
dd4d9fec
FF
557 if (WARN(!irqs_disabled(),
558 "Interrupts were enabled *very* early, fixing it\n"))
c4a68306 559 local_irq_disable();
0a835c4f 560 radix_tree_init();
3347fa09
TH
561
562 /*
563 * Allow workqueue creation and work item queueing/cancelling
564 * early. Work item execution depends on kthreads and starts after
565 * workqueue_init().
566 */
567 workqueue_init_early();
568
1da177e4 569 rcu_init();
5f893b26
SRRH
570
571 /* trace_printk() and trace points may be used after this */
572 trace_init();
573
65f382fd 574 context_tracking_init();
0b8f1efa
YL
575 /* init some links before init_ISA_irqs() */
576 early_irq_init();
1da177e4 577 init_IRQ();
ad2b1353 578 tick_init();
d6dd50e0 579 rcu_init_nohz();
1da177e4 580 init_timers();
c0a31329 581 hrtimers_init();
1da177e4 582 softirq_init();
ad596171 583 timekeeping_init();
88fecaa2 584 time_init();
38ff87f7 585 sched_clock_postinit();
f92bac3b 586 printk_safe_init();
9e630205 587 perf_event_init();
93e02814 588 profile_init();
d8ad7d11 589 call_function_init();
f91eb62f 590 WARN(!irqs_disabled(), "Interrupts were enabled early\n");
2ce802f6 591 early_boot_irqs_disabled = false;
93e02814 592 local_irq_enable();
dcce284a 593
7e85ee0c 594 kmem_cache_init_late();
1da177e4
LT
595
596 /*
597 * HACK ALERT! This is early. We're enabling the console before
598 * we've done PCI setups etc, and console_init() must be aware of
599 * this. But we do want output early, in case something goes wrong.
600 */
601 console_init();
602 if (panic_later)
499a4584
TH
603 panic("Too many boot %s vars at `%s'", panic_later,
604 panic_param);
fbb9ce95
IM
605
606 lockdep_info();
607
9a11b49a
IM
608 /*
609 * Need to run this when irqs are enabled, because it wants
610 * to self-test [hard/soft]-irqs on/off lock inversion bugs
611 * too:
612 */
613 locking_selftest();
614
1da177e4
LT
615#ifdef CONFIG_BLK_DEV_INITRD
616 if (initrd_start && !initrd_below_start_ok &&
bd673c7c 617 page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) {
ea676e84 618 pr_crit("initrd overwritten (0x%08lx < 0x%08lx) - disabling it.\n",
bd673c7c
GU
619 page_to_pfn(virt_to_page((void *)initrd_start)),
620 min_low_pfn);
1da177e4
LT
621 initrd_start = 0;
622 }
623#endif
fe53ca54 624 page_ext_init();
3ac7fe5a 625 debug_objects_mem_init();
9b090f2d 626 kmemleak_init();
e7c8d5c9 627 setup_per_cpu_pageset();
1da177e4
LT
628 numa_policy_init();
629 if (late_time_init)
630 late_time_init();
631 calibrate_delay();
632 pidmap_init();
1da177e4 633 anon_vma_init();
c4e1acbb 634 acpi_early_init();
11520e5e 635#ifdef CONFIG_X86
83e68189 636 if (efi_enabled(EFI_RUNTIME_SERVICES))
11520e5e 637 efi_enter_virtual_mode();
3891a04a 638#endif
197725de 639#ifdef CONFIG_X86_ESPFIX64
3891a04a
PA
640 /* Should be run before the first non-init thread is created */
641 init_espfix_bsp();
11520e5e 642#endif
b235beea 643 thread_stack_cache_init();
d84f4f99 644 cred_init();
ff691f6e 645 fork_init();
1da177e4
LT
646 proc_caches_init();
647 buffer_init();
1da177e4
LT
648 key_init();
649 security_init();
0b4b3827 650 dbg_late_init();
4248b0da 651 vfs_caches_init();
62906027 652 pagecache_init();
1da177e4 653 signals_init();
1da177e4 654 proc_root_init();
e149ed2b 655 nsfs_init();
1da177e4 656 cpuset_init();
695df213 657 cgroup_init();
c757249a 658 taskstats_init_early();
ca74e92b 659 delayacct_init();
1da177e4
LT
660
661 check_bugs();
662
b064a8fa 663 acpi_subsystem_init();
e7ff3a47 664 arch_post_acpi_subsys_init();
6ae6996a 665 sfi_init_late();
1da177e4 666
83e68189 667 if (efi_enabled(EFI_RUNTIME_SERVICES)) {
78510792 668 efi_free_boot_services();
2223af38 669 }
78510792 670
68bf21aa
SR
671 ftrace_init();
672
1da177e4
LT
673 /* Do the rest non-__init'ed, we're now alive */
674 rest_init();
675}
676
b99b87f7
PO
677/* Call all constructor functions linked into the kernel. */
678static void __init do_ctors(void)
679{
680#ifdef CONFIG_CONSTRUCTORS
196a15b4 681 ctor_fn_t *fn = (ctor_fn_t *) __ctors_start;
b99b87f7 682
196a15b4
HS
683 for (; fn < (ctor_fn_t *) __ctors_end; fn++)
684 (*fn)();
b99b87f7
PO
685#endif
686}
687
2329abfa 688bool initcall_debug;
d0ea3d7d 689core_param(initcall_debug, initcall_debug, bool, 0644);
1da177e4 690
7b0b73d7
PB
691#ifdef CONFIG_KALLSYMS
692struct blacklist_entry {
693 struct list_head next;
694 char *buf;
695};
696
697static __initdata_or_module LIST_HEAD(blacklisted_initcalls);
698
699static int __init initcall_blacklist(char *str)
700{
701 char *str_entry;
702 struct blacklist_entry *entry;
703
704 /* str argument is a comma-separated list of functions */
705 do {
706 str_entry = strsep(&str, ",");
707 if (str_entry) {
708 pr_debug("blacklisting initcall %s\n", str_entry);
709 entry = alloc_bootmem(sizeof(*entry));
710 entry->buf = alloc_bootmem(strlen(str_entry) + 1);
711 strcpy(entry->buf, str_entry);
712 list_add(&entry->next, &blacklisted_initcalls);
713 }
714 } while (str_entry);
715
716 return 0;
717}
718
719static bool __init_or_module initcall_blacklisted(initcall_t fn)
720{
7b0b73d7 721 struct blacklist_entry *entry;
c8cdd2be 722 char fn_name[KSYM_SYMBOL_LEN];
0fd5ed8d 723 unsigned long addr;
7b0b73d7 724
c8cdd2be 725 if (list_empty(&blacklisted_initcalls))
7b0b73d7
PB
726 return false;
727
0fd5ed8d
RV
728 addr = (unsigned long) dereference_function_descriptor(fn);
729 sprint_symbol_no_offset(fn_name, addr);
c8cdd2be 730
841c06d7
PB
731 /*
732 * fn will be "function_name [module_name]" where [module_name] is not
733 * displayed for built-in init functions. Strip off the [module_name].
734 */
735 strreplace(fn_name, ' ', '\0');
736
e6fd1fb3 737 list_for_each_entry(entry, &blacklisted_initcalls, next) {
7b0b73d7
PB
738 if (!strcmp(fn_name, entry->buf)) {
739 pr_debug("initcall %s blacklisted\n", fn_name);
7b0b73d7
PB
740 return true;
741 }
742 }
743
7b0b73d7
PB
744 return false;
745}
746#else
747static int __init initcall_blacklist(char *str)
748{
749 pr_warn("initcall_blacklist requires CONFIG_KALLSYMS\n");
750 return 0;
751}
752
753static bool __init_or_module initcall_blacklisted(initcall_t fn)
754{
755 return false;
756}
757#endif
758__setup("initcall_blacklist=", initcall_blacklist);
759
e4461271 760static int __init_or_module do_one_initcall_debug(initcall_t fn)
1da177e4 761{
74239072 762 ktime_t calltime, delta, rettime;
30dbb20e
AW
763 unsigned long long duration;
764 int ret;
1da177e4 765
d62cf815 766 printk(KERN_DEBUG "calling %pF @ %i\n", fn, task_pid_nr(current));
22c5c03b 767 calltime = ktime_get();
30dbb20e 768 ret = fn();
22c5c03b
KW
769 rettime = ktime_get();
770 delta = ktime_sub(rettime, calltime);
771 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
d62cf815 772 printk(KERN_DEBUG "initcall %pF returned %d after %lld usecs\n",
ea676e84 773 fn, ret, duration);
1da177e4 774
22c5c03b
KW
775 return ret;
776}
777
e4461271 778int __init_or_module do_one_initcall(initcall_t fn)
22c5c03b
KW
779{
780 int count = preempt_count();
781 int ret;
ff1c8fac 782 char msgbuf[64];
22c5c03b 783
7b0b73d7
PB
784 if (initcall_blacklisted(fn))
785 return -EPERM;
786
22c5c03b
KW
787 if (initcall_debug)
788 ret = do_one_initcall_debug(fn);
789 else
790 ret = fn();
8f0c45cd 791
e0df154f 792 msgbuf[0] = 0;
e662e1cf 793
e0df154f 794 if (preempt_count() != count) {
bf5d770b 795 sprintf(msgbuf, "preemption imbalance ");
4a2b4b22 796 preempt_count_set(count);
1da177e4 797 }
e0df154f 798 if (irqs_disabled()) {
a76bfd0d 799 strlcat(msgbuf, "disabled interrupts ", sizeof(msgbuf));
e0df154f
LT
800 local_irq_enable();
801 }
f91eb62f 802 WARN(msgbuf[0], "initcall %pF returned with %s\n", fn, msgbuf);
59f9415f 803
38addce8 804 add_latent_entropy();
30dbb20e 805 return ret;
e0df154f
LT
806}
807
808
026cee00
PM
809extern initcall_t __initcall_start[];
810extern initcall_t __initcall0_start[];
811extern initcall_t __initcall1_start[];
812extern initcall_t __initcall2_start[];
813extern initcall_t __initcall3_start[];
814extern initcall_t __initcall4_start[];
815extern initcall_t __initcall5_start[];
816extern initcall_t __initcall6_start[];
817extern initcall_t __initcall7_start[];
818extern initcall_t __initcall_end[];
819
820static initcall_t *initcall_levels[] __initdata = {
821 __initcall0_start,
822 __initcall1_start,
823 __initcall2_start,
824 __initcall3_start,
825 __initcall4_start,
826 __initcall5_start,
827 __initcall6_start,
828 __initcall7_start,
829 __initcall_end,
830};
831
96263d28 832/* Keep these in sync with initcalls in include/linux/init.h */
026cee00 833static char *initcall_level_names[] __initdata = {
9fb48c74
JC
834 "early",
835 "core",
836 "postcore",
837 "arch",
838 "subsys",
839 "fs",
840 "device",
841 "late",
026cee00
PM
842};
843
026cee00 844static void __init do_initcall_level(int level)
e0df154f 845{
196a15b4 846 initcall_t *fn;
e0df154f 847
08746a65 848 strcpy(initcall_command_line, saved_command_line);
026cee00 849 parse_args(initcall_level_names[level],
08746a65 850 initcall_command_line, __start___param,
026cee00
PM
851 __stop___param - __start___param,
852 level, level,
ecc86170 853 NULL, &repair_env_string);
026cee00
PM
854
855 for (fn = initcall_levels[level]; fn < initcall_levels[level+1]; fn++)
196a15b4 856 do_one_initcall(*fn);
1da177e4
LT
857}
858
026cee00
PM
859static void __init do_initcalls(void)
860{
861 int level;
862
19efb72f 863 for (level = 0; level < ARRAY_SIZE(initcall_levels) - 1; level++)
026cee00
PM
864 do_initcall_level(level);
865}
866
1da177e4
LT
867/*
868 * Ok, the machine is now initialized. None of the devices
869 * have been touched yet, but the CPU subsystem is up and
870 * running, and memory and process management works.
871 *
872 * Now we can finally start doing some real work..
873 */
874static void __init do_basic_setup(void)
875{
759ee091 876 cpuset_init_smp();
41ffe5d5 877 shmem_init();
1da177e4 878 driver_init();
b04c3afb 879 init_irq_proc();
b99b87f7 880 do_ctors();
d5767c53 881 usermodehelper_enable();
b0f84374 882 do_initcalls();
47d06e53 883 random_int_secret_init();
1da177e4
LT
884}
885
7babe8db 886static void __init do_pre_smp_initcalls(void)
c2147a50 887{
196a15b4 888 initcall_t *fn;
c2147a50 889
026cee00 890 for (fn = __initcall_start; fn < __initcall0_start; fn++)
196a15b4 891 do_one_initcall(*fn);
c2147a50
EGM
892}
893
bb813f4c
TH
894/*
895 * This function requests modules which should be loaded by default and is
896 * called twice right after initrd is mounted and right before init is
897 * exec'd. If such modules are on either initrd or rootfs, they will be
898 * loaded before control is passed to userland.
899 */
900void __init load_default_modules(void)
901{
902 load_default_elevator_module();
903}
904
a74fb73c 905static int run_init_process(const char *init_filename)
1da177e4
LT
906{
907 argv_init[0] = init_filename;
c4ad8f98 908 return do_execve(getname_kernel(init_filename),
ae903caa
AV
909 (const char __user *const __user *)argv_init,
910 (const char __user *const __user *)envp_init);
1da177e4
LT
911}
912
ba24762b
MO
913static int try_to_run_init_process(const char *init_filename)
914{
915 int ret;
916
917 ret = run_init_process(init_filename);
918
919 if (ret && ret != -ENOENT) {
920 pr_err("Starting init: %s exists but couldn't execute it (error %d)\n",
921 init_filename, ret);
922 }
923
924 return ret;
925}
926
f80b0c90 927static noinline void __init kernel_init_freeable(void);
d6b21238 928
0f5bf6d0 929#if defined(CONFIG_STRICT_KERNEL_RWX) || defined(CONFIG_STRICT_MODULE_RWX)
39290b38 930bool rodata_enabled __ro_after_init = true;
d2aa1aca
KC
931static int __init set_debug_rodata(char *str)
932{
933 return strtobool(str, &rodata_enabled);
934}
935__setup("rodata=", set_debug_rodata);
39290b38 936#endif
d2aa1aca 937
0f5bf6d0 938#ifdef CONFIG_STRICT_KERNEL_RWX
d2aa1aca
KC
939static void mark_readonly(void)
940{
2959a5f7 941 if (rodata_enabled) {
d2aa1aca 942 mark_rodata_ro();
2959a5f7
JP
943 rodata_test();
944 } else
d2aa1aca
KC
945 pr_info("Kernel memory protection disabled.\n");
946}
947#else
948static inline void mark_readonly(void)
949{
950 pr_warn("This architecture does not have kernel memory protection.\n");
951}
952#endif
953
d6b21238 954static int __ref kernel_init(void *unused)
ee5bfa64 955{
ba24762b
MO
956 int ret;
957
d6b21238 958 kernel_init_freeable();
22a9d645
AV
959 /* need to finish all async __init code before freeing the memory */
960 async_synchronize_full();
ee5bfa64 961 free_initmem();
d2aa1aca 962 mark_readonly();
ee5bfa64
VG
963 system_state = SYSTEM_RUNNING;
964 numa_default_policy();
965
967dcb8f
PM
966 rcu_end_inkernel_boot();
967
ee5bfa64 968 if (ramdisk_execute_command) {
ba24762b
MO
969 ret = run_init_process(ramdisk_execute_command);
970 if (!ret)
a74fb73c 971 return 0;
ba24762b
MO
972 pr_err("Failed to execute %s (error %d)\n",
973 ramdisk_execute_command, ret);
ee5bfa64
VG
974 }
975
976 /*
977 * We try each of these until one succeeds.
978 *
979 * The Bourne shell can be used instead of init if we are
980 * trying to recover a really broken machine.
981 */
982 if (execute_command) {
ba24762b
MO
983 ret = run_init_process(execute_command);
984 if (!ret)
a74fb73c 985 return 0;
6ef4536e
AL
986 panic("Requested init %s failed (error %d).",
987 execute_command, ret);
ee5bfa64 988 }
ba24762b
MO
989 if (!try_to_run_init_process("/sbin/init") ||
990 !try_to_run_init_process("/etc/init") ||
991 !try_to_run_init_process("/bin/init") ||
992 !try_to_run_init_process("/bin/sh"))
a74fb73c 993 return 0;
ee5bfa64 994
ba24762b 995 panic("No working init found. Try passing init= option to kernel. "
8c27ceff 996 "See Linux Documentation/admin-guide/init.rst for guidance.");
ee5bfa64
VG
997}
998
f80b0c90 999static noinline void __init kernel_init_freeable(void)
1da177e4 1000{
b433c3d4
PZ
1001 /*
1002 * Wait until kthreadd is all set-up.
1003 */
1004 wait_for_completion(&kthreadd_done);
31a67102
LT
1005
1006 /* Now the scheduler is fully set up and can do blocking allocations */
1007 gfp_allowed_mask = __GFP_BITS_MASK;
1008
58568d2a
MX
1009 /*
1010 * init can allocate pages on any node
1011 */
3c466d46 1012 set_mems_allowed(node_states[N_MEMORY]);
1da177e4
LT
1013 /*
1014 * init can run on any cpu.
1015 */
1a2142af 1016 set_cpus_allowed_ptr(current, cpu_all_mask);
1da177e4 1017
9ec52099
CLG
1018 cad_pid = task_pid(current);
1019
ca74a6f8 1020 smp_prepare_cpus(setup_max_cpus);
1da177e4 1021
3347fa09
TH
1022 workqueue_init();
1023
1da177e4 1024 do_pre_smp_initcalls();
004417a6 1025 lockup_detector_init();
1da177e4 1026
1da177e4
LT
1027 smp_init();
1028 sched_init_smp();
1029
0e1cc95b
MG
1030 page_alloc_init_late();
1031
1da177e4
LT
1032 do_basic_setup();
1033
2bd3a997
EB
1034 /* Open the /dev/console on the rootfs, this should never fail */
1035 if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
ea676e84 1036 pr_err("Warning: unable to open an initial console.\n");
2bd3a997
EB
1037
1038 (void) sys_dup(0);
1039 (void) sys_dup(0);
1da177e4
LT
1040 /*
1041 * check if there is an early userspace init. If yes, let it do all
1042 * the work
1043 */
ffdfc409
OJ
1044
1045 if (!ramdisk_execute_command)
1046 ramdisk_execute_command = "/init";
1047
1048 if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
1049 ramdisk_execute_command = NULL;
1da177e4 1050 prepare_namespace();
ffdfc409 1051 }
1da177e4
LT
1052
1053 /*
1054 * Ok, we have completed the initial bootup, and
1055 * we're essentially up and running. Get rid of the
1056 * initmem segments and start the user-mode stuff..
c9cd2ce2
DK
1057 *
1058 * rootfs is available now, try loading the public keys
1059 * and default modules
1da177e4 1060 */
bb813f4c 1061
c9cd2ce2 1062 integrity_load_keys();
bb813f4c 1063 load_default_modules();
1da177e4 1064}