blob: 8570e3a4bc97fc1439ec7626be71fefb85c06084 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
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
9 * Simplified starting of init: Michael A. Griffith <grif@acm.org>
10 */
11
12#include <linux/types.h>
13#include <linux/module.h>
14#include <linux/proc_fs.h>
15#include <linux/kernel.h>
16#include <linux/syscalls.h>
17#include <linux/stackprotector.h>
18#include <linux/string.h>
19#include <linux/ctype.h>
20#include <linux/delay.h>
21#include <linux/ioport.h>
22#include <linux/init.h>
23#include <linux/initrd.h>
24#include <linux/bootmem.h>
25#include <linux/acpi.h>
26#include <linux/tty.h>
27#include <linux/percpu.h>
28#include <linux/kmod.h>
29#include <linux/vmalloc.h>
30#include <linux/kernel_stat.h>
31#include <linux/start_kernel.h>
32#include <linux/security.h>
33#include <linux/smp.h>
34#include <linux/profile.h>
35#include <linux/rcupdate.h>
36#include <linux/moduleparam.h>
37#include <linux/kallsyms.h>
38#include <linux/writeback.h>
39#include <linux/cpu.h>
40#include <linux/cpuset.h>
41#include <linux/cgroup.h>
42#include <linux/efi.h>
43#include <linux/tick.h>
44#include <linux/interrupt.h>
45#include <linux/taskstats_kern.h>
46#include <linux/delayacct.h>
47#include <linux/unistd.h>
48#include <linux/rmap.h>
49#include <linux/mempolicy.h>
50#include <linux/key.h>
51#include <linux/buffer_head.h>
52#include <linux/page_cgroup.h>
53#include <linux/debug_locks.h>
54#include <linux/debugobjects.h>
55#include <linux/lockdep.h>
56#include <linux/kmemleak.h>
57#include <linux/pid_namespace.h>
58#include <linux/device.h>
59#include <linux/kthread.h>
60#include <linux/sched.h>
61#include <linux/signal.h>
62#include <linux/idr.h>
63#include <linux/kgdb.h>
64#include <linux/ftrace.h>
65#include <linux/async.h>
66#include <linux/kmemcheck.h>
67#include <linux/sfi.h>
68#include <linux/shmem_fs.h>
69#include <linux/slab.h>
70#include <linux/perf_event.h>
71#include <linux/posix-timers.h>
72#include <linux/random.h>
73
74#include <asm/io.h>
75#include <asm/bugs.h>
76#include <asm/setup.h>
77#include <asm/sections.h>
78#include <asm/cacheflush.h>
79
80#ifdef CONFIG_X86_LOCAL_APIC
81#include <asm/smp.h>
82#endif
83
xf.lie31de8b2023-12-26 23:38:58 -080084#ifdef CONFIG_FLAGS_UTILS
85#include <linux/reboot.h>
86#include "pub_flags.h"
87#endif
88
lh9ed821d2023-04-07 01:36:19 -070089static int kernel_init(void *);
90
91extern void init_IRQ(void);
92extern void fork_init(unsigned long);
93extern void mca_init(void);
94extern void sbus_init(void);
95extern void prio_tree_init(void);
96extern void radix_tree_init(void);
97#ifndef CONFIG_DEBUG_RODATA
98static inline void mark_rodata_ro(void) { }
99#endif
100
101#ifdef CONFIG_TC
102extern void tc_init(void);
103#endif
104
105#ifdef CONFIG_SLOB
106extern void slob_sizes_init(void);
107#endif
108
109/*
110 * Debug helper: via this flag we know that we are in 'early bootup code'
111 * where only the boot processor is running with IRQ disabled. This means
112 * two things - IRQ must not be enabled before the flag is cleared and some
113 * operations which are not allowed with IRQ disabled are allowed while the
114 * flag is set.
115 */
116bool early_boot_irqs_disabled __read_mostly;
117
118enum system_states system_state __read_mostly;
119EXPORT_SYMBOL(system_state);
120int KERNEL_START_END=0;
121EXPORT_SYMBOL(KERNEL_START_END);
122
123/*
124 * Boot command-line arguments
125 */
126#define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
127#define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
128
129extern void time_init(void);
130/* Default late time init is NULL. archs can override this later. */
131void (*__initdata late_time_init)(void);
132extern void softirq_init(void);
133
134/* Untouched command line saved by arch-specific code. */
135char __initdata boot_command_line[COMMAND_LINE_SIZE];
136/* Untouched saved command line (eg. for /proc) */
137char *saved_command_line;
138/* Command line for parameter parsing */
139static char *static_command_line;
140
141static char *execute_command;
142static char *ramdisk_execute_command;
143
144/*
145 * If set, this is an indication to the drivers that reset the underlying
146 * device before going ahead with the initialization otherwise driver might
147 * rely on the BIOS and skip the reset operation.
148 *
149 * This is useful if kernel is booting in an unreliable environment.
150 * For ex. kdump situaiton where previous kernel has crashed, BIOS has been
151 * skipped and devices will be in unknown state.
152 */
153unsigned int reset_devices;
154EXPORT_SYMBOL(reset_devices);
155
156static int __init set_reset_devices(char *str)
157{
158 reset_devices = 1;
159 return 1;
160}
161
162__setup("reset_devices", set_reset_devices);
163
164static const char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
165const char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
166static const char *panic_later, *panic_param;
167
168extern const struct obs_kernel_param __setup_start[], __setup_end[];
169
170static int __init obsolete_checksetup(char *line)
171{
172 const struct obs_kernel_param *p;
173 int had_early_param = 0;
174
175 p = __setup_start;
176 do {
177 int n = strlen(p->str);
178 if (parameqn(line, p->str, n)) {
179 if (p->early) {
180 /* Already done in parse_early_param?
181 * (Needs exact match on param part).
182 * Keep iterating, as we can have early
183 * params and __setups of same names 8( */
184 if (line[n] == '\0' || line[n] == '=')
185 had_early_param = 1;
186 } else if (!p->setup_func) {
187 printk(KERN_WARNING "Parameter %s is obsolete,"
188 " ignored\n", p->str);
189 return 1;
190 } else if (p->setup_func(line + n))
191 return 1;
192 }
193 p++;
194 } while (p < __setup_end);
195
196 return had_early_param;
197}
198
199/*
200 * This should be approx 2 Bo*oMips to start (note initial shift), and will
201 * still work even if initially too large, it will just take slightly longer
202 */
203unsigned long loops_per_jiffy = (1<<12);
204
205EXPORT_SYMBOL(loops_per_jiffy);
206
207static int __init debug_kernel(char *str)
208{
209 console_loglevel = 10;
210 return 0;
211}
212
213static int __init quiet_kernel(char *str)
214{
215 console_loglevel = 4;
216 return 0;
217}
218
219early_param("debug", debug_kernel);
220early_param("quiet", quiet_kernel);
221
222static int __init loglevel(char *str)
223{
224 int newlevel;
225
226 /*
227 * Only update loglevel value when a correct setting was passed,
228 * to prevent blind crashes (when loglevel being set to 0) that
229 * are quite hard to debug
230 */
231 if (get_option(&str, &newlevel)) {
232 console_loglevel = newlevel;
233 return 0;
234 }
235
236 return -EINVAL;
237}
238
239early_param("loglevel", loglevel);
240
241/* Change NUL term back to "=", to make "param" the whole string. */
242static int __init repair_env_string(char *param, char *val)
243{
244 if (val) {
245 /* param=val or param="val"? */
246 if (val == param+strlen(param)+1)
247 val[-1] = '=';
248 else if (val == param+strlen(param)+2) {
249 val[-2] = '=';
250 memmove(val-1, val, strlen(val)+1);
251 val--;
252 } else
253 BUG();
254 }
255 return 0;
256}
257
258/*
259 * Unknown boot options get handed to init, unless they look like
260 * unused parameters (modprobe will find them in /proc/cmdline).
261 */
262static int __init unknown_bootoption(char *param, char *val)
263{
264 repair_env_string(param, val);
265
266 /* Handle obsolete-style parameters */
267 if (obsolete_checksetup(param))
268 return 0;
269
270 /* Unused module parameter. */
271 if (strchr(param, '.') && (!val || strchr(param, '.') < val))
272 return 0;
273
274 if (panic_later)
275 return 0;
276
277 if (val) {
278 /* Environment option */
279 unsigned int i;
280 for (i = 0; envp_init[i]; i++) {
281 if (i == MAX_INIT_ENVS) {
282 panic_later = "Too many boot env vars at `%s'";
283 panic_param = param;
284 }
285 if (!strncmp(param, envp_init[i], val - param))
286 break;
287 }
288 envp_init[i] = param;
289 } else {
290 /* Command line option */
291 unsigned int i;
292 for (i = 0; argv_init[i]; i++) {
293 if (i == MAX_INIT_ARGS) {
294 panic_later = "Too many boot init vars at `%s'";
295 panic_param = param;
296 }
297 }
298 argv_init[i] = param;
299 }
300 return 0;
301}
302
303static int __init init_setup(char *str)
304{
305 unsigned int i;
306
307 execute_command = str;
308 /*
309 * In case LILO is going to boot us with default command line,
310 * it prepends "auto" before the whole cmdline which makes
311 * the shell think it should execute a script with such name.
312 * So we ignore all arguments entered _before_ init=... [MJ]
313 */
314 for (i = 1; i < MAX_INIT_ARGS; i++)
315 argv_init[i] = NULL;
316 return 1;
317}
318__setup("init=", init_setup);
319
320static int __init rdinit_setup(char *str)
321{
322 unsigned int i;
323
324 ramdisk_execute_command = str;
325 /* See "auto" comment in init_setup */
326 for (i = 1; i < MAX_INIT_ARGS; i++)
327 argv_init[i] = NULL;
328 return 1;
329}
330__setup("rdinit=", rdinit_setup);
331
332#ifndef CONFIG_SMP
333static const unsigned int setup_max_cpus = NR_CPUS;
334#ifdef CONFIG_X86_LOCAL_APIC
335static void __init smp_init(void)
336{
337 APIC_init_uniprocessor();
338}
339#else
340#define smp_init() do { } while (0)
341#endif
342
343static inline void setup_nr_cpu_ids(void) { }
344static inline void smp_prepare_cpus(unsigned int maxcpus) { }
345#endif
346
347/*
348 * We need to store the untouched command line for future reference.
349 * We also need to store the touched command line since the parameter
350 * parsing is performed in place, and we should allow a component to
351 * store reference of name/value for future reference.
352 */
353static void __init setup_command_line(char *command_line)
354{
355 saved_command_line = alloc_bootmem(strlen (boot_command_line)+1);
356 static_command_line = alloc_bootmem(strlen (command_line)+1);
357 strcpy (saved_command_line, boot_command_line);
358 strcpy (static_command_line, command_line);
359}
360
361/*
362 * We need to finalize in a non-__init function or else race conditions
363 * between the root thread and the init thread may cause start_kernel to
364 * be reaped by free_initmem before the root thread has proceeded to
365 * cpu_idle.
366 *
367 * gcc-3.4 accidentally inlines this function, so use noinline.
368 */
369
370static __initdata DECLARE_COMPLETION(kthreadd_done);
371
372static noinline void __init_refok rest_init(void)
373{
374 int pid;
375
376 rcu_scheduler_starting();
377 /*
378 * We need to spawn init first so that it obtains pid 1, however
379 * the init task will end up wanting to create kthreads, which, if
380 * we schedule it before we create kthreadd, will OOPS.
381 */
382 kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND);
383 numa_default_policy();
384 pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);
385 rcu_read_lock();
386 kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns);
387 rcu_read_unlock();
388 complete(&kthreadd_done);
389
390 /*
391 * The boot idle thread must execute schedule()
392 * at least once to get things moving:
393 */
394 init_idle_bootup_task(current);
395 schedule_preempt_disabled();
396 /* Call into cpu_idle with preempt disabled */
397 cpu_idle();
398}
399
400/* Check for early params. */
401static int __init do_early_param(char *param, char *val)
402{
403 const struct obs_kernel_param *p;
404
405 for (p = __setup_start; p < __setup_end; p++) {
406 if ((p->early && parameq(param, p->str)) ||
407 (strcmp(param, "console") == 0 &&
408 strcmp(p->str, "earlycon") == 0)
409 ) {
410 if (p->setup_func(val) != 0)
411 printk(KERN_WARNING
412 "Malformed early option '%s'\n", param);
413 }
414 }
415 /* We accept everything at this stage. */
416 return 0;
417}
418
419void __init parse_early_options(char *cmdline)
420{
421 parse_args("early options", cmdline, NULL, 0, 0, 0, do_early_param);
422}
423
424/* Arch code calls this early on, or if not, just before other parsing. */
425void __init parse_early_param(void)
426{
427 static __initdata int done = 0;
428 static __initdata char tmp_cmdline[COMMAND_LINE_SIZE];
429
430 if (done)
431 return;
432
433 /* All fall through to do_early_param. */
434 strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE);
435 parse_early_options(tmp_cmdline);
436 done = 1;
437}
438
439/*
440 * Activate the first processor.
441 */
442
443static void __init boot_cpu_init(void)
444{
445 int cpu = smp_processor_id();
446 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
447 set_cpu_online(cpu, true);
448 set_cpu_active(cpu, true);
449 set_cpu_present(cpu, true);
450 set_cpu_possible(cpu, true);
451}
452
453void __init __weak smp_setup_processor_id(void)
454{
455}
456
457void __init __weak thread_info_cache_init(void)
458{
459}
460
461/*
462 * Set up kernel memory allocators
463 */
464static void __init mm_init(void)
465{
466 /*
467 * page_cgroup requires contiguous pages,
468 * bigger than MAX_ORDER unless SPARSEMEM.
469 */
470 page_cgroup_init_flatmem();
471 mem_init();
472 kmem_cache_init();
473 percpu_init_late();
474 pgtable_cache_init();
475 vmalloc_init();
476}
477
478static void current_kernel_init(void)
479{
480#ifdef CONFIG_STACK_SIZE
481 current_kernel_thread = &init_thread_info;
482#endif
483}
484
485asmlinkage void __init start_kernel(void)
486{
487
488 char * command_line;
489 extern const struct kernel_param __start___param[], __stop___param[];
490
491#ifdef CONFIG_SLOB
492 slob_sizes_init();
493#endif
494
495 /*
496 * Need to run as early as possible, to initialize the
497 * lockdep hash:
498 */
499 current_kernel_init();
500
501 lockdep_init();
502 smp_setup_processor_id();
503 debug_objects_early_init();
504
505 /*
506 * Set up the the initial canary ASAP:
507 */
508 boot_init_stack_canary();
509
510 cgroup_init_early();
511
512 local_irq_disable();
513 early_boot_irqs_disabled = true;
514
515
516
517/*
518 * Interrupts are still disabled. Do necessary setups, then
519 * enable them
520 */
521 tick_init();
522 boot_cpu_init();
523 page_address_init();
524 /* printk(KERN_NOTICE "%s", linux_banner); */
525 setup_arch(&command_line);
526 mm_init_owner(&init_mm, &init_task);
527 mm_init_cpumask(&init_mm);
528 setup_command_line(command_line);
529 setup_nr_cpu_ids();
530 setup_per_cpu_areas();
531 softirq_early_init();
532 smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
533
534 build_all_zonelists(NULL);
535 page_alloc_init();
536
537 /* printk(KERN_NOTICE "Kernel command line: %s\n", boot_command_line); */
538 parse_early_param();
539 parse_args("Booting kernel", static_command_line, __start___param,
540 __stop___param - __start___param,
541 -1, -1, &unknown_bootoption);
542
543 jump_label_init();
544
545 /*
546 * These use large bootmem allocations and must precede
547 * kmem_cache_init()
548 */
549 setup_log_buf(0);
550 pidhash_init();
551 vfs_caches_init_early();
552 sort_main_extable();
553 trap_init();
554 mm_init();
555
556 /*
557 * Set up the scheduler prior starting any interrupts (such as the
558 * timer interrupt). Full topology setup happens at smp_init()
559 * time - but meanwhile we still have a functioning scheduler.
560 */
561 sched_init();
562 /*
563 * Disable preemption - early bootup scheduling is extremely
564 * fragile until we cpu_idle() for the first time.
565 */
566 preempt_disable();
567 if (!irqs_disabled()) {
568 printk(KERN_WARNING "start_kernel(): bug: interrupts were "
569 "enabled *very* early, fixing it\n");
570 local_irq_disable();
571 }
572 idr_init_cache();
573 perf_event_init();
574 rcu_init();
575 radix_tree_init();
576 /* init some links before init_ISA_irqs() */
577 early_irq_init();
578 init_IRQ();
579 prio_tree_init();
580 init_timers();
581 hrtimers_init();
582 softirq_init();
583 timekeeping_init();
584 time_init();
585 profile_init();
586 call_function_init();
587 if (!irqs_disabled())
588 printk(KERN_CRIT "start_kernel(): bug: interrupts were "
589 "enabled early\n");
590 early_boot_irqs_disabled = false;
591 local_irq_enable();
592
593 kmem_cache_init_late();
594
595 /*
596 * HACK ALERT! This is early. We're enabling the console before
597 * we've done PCI setups etc, and console_init() must be aware of
598 * this. But we do want output early, in case something goes wrong.
599 */
600 console_init();
601 if (panic_later)
602 panic(panic_later, panic_param);
603
604 lockdep_info();
605
606 /*
607 * Need to run this when irqs are enabled, because it wants
608 * to self-test [hard/soft]-irqs on/off lock inversion bugs
609 * too:
610 */
611 locking_selftest();
612
613#ifdef CONFIG_BLK_DEV_INITRD
614 if (initrd_start && !initrd_below_start_ok &&
615 page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) {
616 printk(KERN_CRIT "initrd overwritten (0x%08lx < 0x%08lx) - "
617 "disabling it.\n",
618 page_to_pfn(virt_to_page((void *)initrd_start)),
619 min_low_pfn);
620 initrd_start = 0;
621 }
622#endif
623 page_cgroup_init();
624 debug_objects_mem_init();
625 kmemleak_init();
626 setup_per_cpu_pageset();
627 numa_policy_init();
628 if (late_time_init)
629 late_time_init();
630 sched_clock_init();
631 calibrate_delay();
632 pidmap_init();
633 anon_vma_init();
634#ifdef CONFIG_X86
635 if (efi_enabled(EFI_RUNTIME_SERVICES))
636 efi_enter_virtual_mode();
637#endif
638#ifdef CONFIG_X86_ESPFIX64
639 /* Should be run before the first non-init thread is created */
640 init_espfix_bsp();
641#endif
642 thread_info_cache_init();
643 cred_init();
644 fork_init(totalram_pages);
645 proc_caches_init();
646 buffer_init();
647 key_init();
648 security_init();
649 dbg_late_init();
650 vfs_caches_init(totalram_pages);
651 signals_init();
652 /* rootfs populating might need page-writeback */
653 page_writeback_init();
654#ifdef CONFIG_PROC_FS
655 proc_root_init();
656#endif
657 cgroup_init();
658 cpuset_init();
659 taskstats_init_early();
660 delayacct_init();
661
662 check_bugs();
663
664 acpi_early_init(); /* before LAPIC and SMP init */
665 sfi_init_late();
666
667 if (efi_enabled(EFI_RUNTIME_SERVICES))
668 efi_free_boot_services();
669
670 ftrace_init();
671
672 /* Do the rest non-__init'ed, we're now alive */
673 rest_init();
674}
675
676/* Call all constructor functions linked into the kernel. */
677static void __init do_ctors(void)
678{
679#ifdef CONFIG_CONSTRUCTORS
680 ctor_fn_t *fn = (ctor_fn_t *) __ctors_start;
681
682 for (; fn < (ctor_fn_t *) __ctors_end; fn++)
683 (*fn)();
684#endif
685}
686
687bool initcall_debug;
688core_param(initcall_debug, initcall_debug, bool, 0644);
689
690static char msgbuf[64];
691
692static int __init_or_module do_one_initcall_debug(initcall_t fn)
693{
694 ktime_t calltime, delta, rettime;
695 unsigned long long duration;
696 int ret;
697
698 printk(KERN_DEBUG "calling %pF @ %i\n", fn, task_pid_nr(current));
699 calltime = ktime_get();
700 ret = fn();
701 rettime = ktime_get();
702 delta = ktime_sub(rettime, calltime);
703 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
704 printk(KERN_DEBUG "initcall %pF returned %d after %lld usecs\n", fn,
705 ret, duration);
706
707 return ret;
708}
709
710int __init_or_module do_one_initcall(initcall_t fn)
711{
712 int count = preempt_count();
713 int ret;
714
715 if (initcall_debug)
716 ret = do_one_initcall_debug(fn);
717 else
718 ret = fn();
719
720 msgbuf[0] = 0;
721
722 if (ret && ret != -ENODEV && initcall_debug)
723 sprintf(msgbuf, "error code %d ", ret);
724
725 if (preempt_count() != count) {
726 strlcat(msgbuf, "preemption imbalance ", sizeof(msgbuf));
727 preempt_count() = count;
728 }
729 if (irqs_disabled()) {
730 strlcat(msgbuf, "disabled interrupts ", sizeof(msgbuf));
731 local_irq_enable();
732 }
733 if (msgbuf[0]) {
734 printk("initcall %pF returned with %s\n", fn, msgbuf);
735 }
736
737 return ret;
738}
739
740
741extern initcall_t __initcall_start[];
742extern initcall_t __initcall0_start[];
743extern initcall_t __initcall1_start[];
744extern initcall_t __initcall2_start[];
745extern initcall_t __initcall3_start[];
746extern initcall_t __initcall4_start[];
747extern initcall_t __initcall5_start[];
748extern initcall_t __initcall6_start[];
749extern initcall_t __initcall7_start[];
750extern initcall_t __initcall_end[];
751
752static initcall_t *initcall_levels[] __initdata = {
753 __initcall0_start,
754 __initcall1_start,
755 __initcall2_start,
756 __initcall3_start,
757 __initcall4_start,
758 __initcall5_start,
759 __initcall6_start,
760 __initcall7_start,
761 __initcall_end,
762};
763
764static char *initcall_level_names[] __initdata = {
765 "early parameters",
766 "core parameters",
767 "postcore parameters",
768 "arch parameters",
769 "subsys parameters",
770 "fs parameters",
771 "device parameters",
772 "late parameters",
773};
774
775static void __init do_initcall_level(int level)
776{
777 extern const struct kernel_param __start___param[], __stop___param[];
778 initcall_t *fn;
779
780 strcpy(static_command_line, saved_command_line);
781 parse_args(initcall_level_names[level],
782 static_command_line, __start___param,
783 __stop___param - __start___param,
784 level, level,
785 repair_env_string);
786
787 for (fn = initcall_levels[level]; fn < initcall_levels[level+1]; fn++)
788 do_one_initcall(*fn);
789}
790
791static void __init do_initcalls(void)
792{
793 int level;
794
795 for (level = 0; level < ARRAY_SIZE(initcall_levels) - 1; level++)
796 do_initcall_level(level);
797}
798
799/*
800 * Ok, the machine is now initialized. None of the devices
801 * have been touched yet, but the CPU subsystem is up and
802 * running, and memory and process management works.
803 *
804 * Now we can finally start doing some real work..
805 */
806static void __init do_basic_setup(void)
807{
808 cpuset_init_smp();
809 usermodehelper_init();
810 shmem_init();
811 driver_init();
812 init_irq_proc();
813 do_ctors();
814 usermodehelper_enable();
815 do_initcalls();
816 random_int_secret_init();
817}
818
819static void __init do_pre_smp_initcalls(void)
820{
821 initcall_t *fn;
822
823 for (fn = __initcall_start; fn < __initcall0_start; fn++)
824 do_one_initcall(*fn);
825}
826
827static void run_init_process(const char *init_filename)
828{
829 argv_init[0] = init_filename;
830 kernel_execve(init_filename, argv_init, envp_init);
831}
832
833/* This is a non __init function. Force it to be noinline otherwise gcc
834 * makes it inline to init() and it becomes part of init.text section
835 */
836static noinline int init_post(void)
837{
838 /* need to finish all async __init code before freeing the memory */
839 async_synchronize_full();
840 free_initmem();
841 mark_rodata_ro();
842 system_state = SYSTEM_RUNNING;
843 numa_default_policy();
844
845 KERNEL_START_END=1;
846
847
848 current->signal->flags |= SIGNAL_UNKILLABLE;
849
850 if (ramdisk_execute_command) {
851 run_init_process(ramdisk_execute_command);
852 printk(KERN_WARNING "Failed to execute %s\n",
853 ramdisk_execute_command);
854 }
855
856 /*
857 * We try each of these until one succeeds.
858 *
859 * The Bourne shell can be used instead of init if we are
860 * trying to recover a really broken machine.
861 */
862 if (execute_command) {
863 run_init_process(execute_command);
864 printk(KERN_WARNING "Failed to execute %s. Attempting "
865 "defaults...\n", execute_command);
866 }
867#ifdef CONFIG_SYSTEM_RECOVERY
868 run_init_process("/recovery/sbin/init");
869#else
870 run_init_process("/sbin/init");
871 run_init_process("/etc/init");
872 run_init_process("/bin/init");
873 run_init_process("/bin/sh");
874#endif
xf.lie31de8b2023-12-26 23:38:58 -0800875#ifdef CONFIG_FLAGS_UTILS
876{
877 extern int flags_sys_switch(void);
878 printk(KERN_EMERG "No init found. Try passing init= option to kernel. "
879 "See Linux Documentation/init.txt for guidance.");
880 if (flags_sys_switch() < 0)
881 panic("init: flags_sys_switch fail");
882 else
883 kernel_restart("init: Switch to another system, please reset machine");
884}
885#endif
lh9ed821d2023-04-07 01:36:19 -0700886 panic("No init found. Try passing init= option to kernel. "
887 "See Linux Documentation/init.txt for guidance.");
888}
889
890
891/*/PSBUFµÄÐéÄâµØÖ·ÓëÎïÀíµØÖ·µÄÓ³Éä¹ØÏµ
892unsigned long virtaddr_to_phys(unsigned long virt)
893{
894 if(virt >= (unsigned long)vir_addr_ddrnet && virt <= ((unsigned long)vir_addr_ddrnet+10*1024*1024))
895 {
896 return 0x27400000 + (virt - (unsigned long)vir_addr_ddrnet);
897 }
898 return __pa(virt);
899}
900unsigned long physaddr_to_virt(unsigned long phys)
901{
902 if(phys >= 0x27400000 && phys <= (0x27400000 + 10*1024*1024))
903 return (unsigned long)vir_addr_ddrnet + (phys - 0x27400000);
904 return __va(phys);
905}
906*/
907static int __init kernel_init(void * unused)
908{
909 /*
910 * cp ps_buf mmap, for temp test.
911 * add by jkz,2016-01-07.
912 */
913 //int *vir_addr = NULL;
914
915 /*
916 * Wait until kthreadd is all set-up.
917 */
918 wait_for_completion(&kthreadd_done);
919
920 /* Now the scheduler is fully set up and can do blocking allocations */
921 gfp_allowed_mask = __GFP_BITS_MASK;
922
923 /*
924 * init can allocate pages on any node
925 */
926 set_mems_allowed(node_states[N_HIGH_MEMORY]);
927 /*
928 * init can run on any cpu.
929 */
930 set_cpus_allowed_ptr(current, cpu_all_mask);
931
932 cad_pid = task_pid(current);
933
934 smp_prepare_cpus(setup_max_cpus);
935
936 do_pre_smp_initcalls();
937 lockup_detector_init();
938
939 smp_init();
940 sched_init_smp();
941
942 do_basic_setup();
943
944 /*
945 * cp ps_buf mmap, for temp test.
946 * add by jkz,2016-01-07.
947 */
948
949 /* Open the /dev/console on the rootfs, this should never fail */
950 if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
951 printk(KERN_WARNING "Warning: unable to open an initial console.\n");
952
953 (void) sys_dup(0);
954 (void) sys_dup(0);
955 /*
956 * check if there is an early userspace init. If yes, let it do all
957 * the work
958 */
959
960 if (!ramdisk_execute_command)
961 ramdisk_execute_command = "/init";
962
963 if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
964 ramdisk_execute_command = NULL;
965 prepare_namespace();
966 }
967
968 /*
969 * Ok, we have completed the initial bootup, and
970 * we're essentially up and running. Get rid of the
971 * initmem segments and start the user-mode stuff..
972 */
973
974 init_post();
975 return 0;
976}