main.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  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
  9. * Simplified starting of init: Michael A. Griffith <grif@acm.org>
  10. */
  11. #include <linux/types.h>
  12. #include <linux/module.h>
  13. #include <linux/proc_fs.h>
  14. #include <linux/kernel.h>
  15. #include <linux/syscalls.h>
  16. #include <linux/string.h>
  17. #include <linux/ctype.h>
  18. #include <linux/delay.h>
  19. #include <linux/utsname.h>
  20. #include <linux/ioport.h>
  21. #include <linux/init.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/initrd.h>
  24. #include <linux/hdreg.h>
  25. #include <linux/bootmem.h>
  26. #include <linux/tty.h>
  27. #include <linux/gfp.h>
  28. #include <linux/percpu.h>
  29. #include <linux/kmod.h>
  30. #include <linux/kernel_stat.h>
  31. #include <linux/start_kernel.h>
  32. #include <linux/security.h>
  33. #include <linux/workqueue.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/efi.h>
  42. #include <linux/tick.h>
  43. #include <linux/taskstats_kern.h>
  44. #include <linux/delayacct.h>
  45. #include <linux/unistd.h>
  46. #include <linux/rmap.h>
  47. #include <linux/mempolicy.h>
  48. #include <linux/key.h>
  49. #include <linux/unwind.h>
  50. #include <linux/buffer_head.h>
  51. #include <linux/debug_locks.h>
  52. #include <linux/lockdep.h>
  53. #include <linux/pid_namespace.h>
  54. #include <linux/device.h>
  55. #include <asm/io.h>
  56. #include <asm/bugs.h>
  57. #include <asm/setup.h>
  58. #include <asm/sections.h>
  59. #include <asm/cacheflush.h>
  60. #ifdef CONFIG_X86_LOCAL_APIC
  61. #include <asm/smp.h>
  62. #endif
  63. /*
  64. * This is one of the first .c files built. Error out early if we have compiler
  65. * trouble.
  66. *
  67. * Versions of gcc older than that listed below may actually compile and link
  68. * okay, but the end product can have subtle run time bugs. To avoid associated
  69. * bogus bug reports, we flatly refuse to compile with a gcc that is known to be
  70. * too old from the very beginning.
  71. */
  72. #if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 2)
  73. #error Sorry, your GCC is too old. It builds incorrect kernels.
  74. #endif
  75. #if __GNUC__ == 4 && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ == 0
  76. #warning gcc-4.1.0 is known to miscompile the kernel. A different compiler version is recommended.
  77. #endif
  78. static int init(void *);
  79. extern void init_IRQ(void);
  80. extern void fork_init(unsigned long);
  81. extern void mca_init(void);
  82. extern void sbus_init(void);
  83. extern void signals_init(void);
  84. extern void pidhash_init(void);
  85. extern void pidmap_init(void);
  86. extern void prio_tree_init(void);
  87. extern void radix_tree_init(void);
  88. extern void free_initmem(void);
  89. extern void prepare_namespace(void);
  90. #ifdef CONFIG_ACPI
  91. extern void acpi_early_init(void);
  92. #else
  93. static inline void acpi_early_init(void) { }
  94. #endif
  95. #ifndef CONFIG_DEBUG_RODATA
  96. static inline void mark_rodata_ro(void) { }
  97. #endif
  98. #ifdef CONFIG_TC
  99. extern void tc_init(void);
  100. #endif
  101. enum system_states system_state;
  102. EXPORT_SYMBOL(system_state);
  103. /*
  104. * Boot command-line arguments
  105. */
  106. #define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
  107. #define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
  108. extern void time_init(void);
  109. /* Default late time init is NULL. archs can override this later. */
  110. void (*late_time_init)(void);
  111. extern void softirq_init(void);
  112. /* Untouched command line saved by arch-specific code. */
  113. char __initdata boot_command_line[COMMAND_LINE_SIZE];
  114. /* Untouched saved command line (eg. for /proc) */
  115. char *saved_command_line;
  116. /* Command line for parameter parsing */
  117. static char *static_command_line;
  118. static char *execute_command;
  119. static char *ramdisk_execute_command;
  120. /* Setup configured maximum number of CPUs to activate */
  121. static unsigned int max_cpus = NR_CPUS;
  122. /*
  123. * If set, this is an indication to the drivers that reset the underlying
  124. * device before going ahead with the initialization otherwise driver might
  125. * rely on the BIOS and skip the reset operation.
  126. *
  127. * This is useful if kernel is booting in an unreliable environment.
  128. * For ex. kdump situaiton where previous kernel has crashed, BIOS has been
  129. * skipped and devices will be in unknown state.
  130. */
  131. unsigned int reset_devices;
  132. EXPORT_SYMBOL(reset_devices);
  133. /*
  134. * Setup routine for controlling SMP activation
  135. *
  136. * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
  137. * activation entirely (the MPS table probe still happens, though).
  138. *
  139. * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
  140. * greater than 0, limits the maximum number of CPUs activated in
  141. * SMP mode to <NUM>.
  142. */
  143. static int __init nosmp(char *str)
  144. {
  145. max_cpus = 0;
  146. return 1;
  147. }
  148. __setup("nosmp", nosmp);
  149. static int __init maxcpus(char *str)
  150. {
  151. get_option(&str, &max_cpus);
  152. return 1;
  153. }
  154. __setup("maxcpus=", maxcpus);
  155. static int __init set_reset_devices(char *str)
  156. {
  157. reset_devices = 1;
  158. return 1;
  159. }
  160. __setup("reset_devices", set_reset_devices);
  161. static char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
  162. char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
  163. static const char *panic_later, *panic_param;
  164. extern struct obs_kernel_param __setup_start[], __setup_end[];
  165. static int __init obsolete_checksetup(char *line)
  166. {
  167. struct obs_kernel_param *p;
  168. int had_early_param = 0;
  169. p = __setup_start;
  170. do {
  171. int n = strlen(p->str);
  172. if (!strncmp(line, p->str, n)) {
  173. if (p->early) {
  174. /* Already done in parse_early_param?
  175. * (Needs exact match on param part).
  176. * Keep iterating, as we can have early
  177. * params and __setups of same names 8( */
  178. if (line[n] == '\0' || line[n] == '=')
  179. had_early_param = 1;
  180. } else if (!p->setup_func) {
  181. printk(KERN_WARNING "Parameter %s is obsolete,"
  182. " ignored\n", p->str);
  183. return 1;
  184. } else if (p->setup_func(line + n))
  185. return 1;
  186. }
  187. p++;
  188. } while (p < __setup_end);
  189. return had_early_param;
  190. }
  191. /*
  192. * This should be approx 2 Bo*oMips to start (note initial shift), and will
  193. * still work even if initially too large, it will just take slightly longer
  194. */
  195. unsigned long loops_per_jiffy = (1<<12);
  196. EXPORT_SYMBOL(loops_per_jiffy);
  197. static int __init debug_kernel(char *str)
  198. {
  199. if (*str)
  200. return 0;
  201. console_loglevel = 10;
  202. return 1;
  203. }
  204. static int __init quiet_kernel(char *str)
  205. {
  206. if (*str)
  207. return 0;
  208. console_loglevel = 4;
  209. return 1;
  210. }
  211. __setup("debug", debug_kernel);
  212. __setup("quiet", quiet_kernel);
  213. static int __init loglevel(char *str)
  214. {
  215. get_option(&str, &console_loglevel);
  216. return 1;
  217. }
  218. __setup("loglevel=", loglevel);
  219. /*
  220. * Unknown boot options get handed to init, unless they look like
  221. * failed parameters
  222. */
  223. static int __init unknown_bootoption(char *param, char *val)
  224. {
  225. /* Change NUL term back to "=", to make "param" the whole string. */
  226. if (val) {
  227. /* param=val or param="val"? */
  228. if (val == param+strlen(param)+1)
  229. val[-1] = '=';
  230. else if (val == param+strlen(param)+2) {
  231. val[-2] = '=';
  232. memmove(val-1, val, strlen(val)+1);
  233. val--;
  234. } else
  235. BUG();
  236. }
  237. /* Handle obsolete-style parameters */
  238. if (obsolete_checksetup(param))
  239. return 0;
  240. /*
  241. * Preemptive maintenance for "why didn't my mispelled command
  242. * line work?"
  243. */
  244. if (strchr(param, '.') && (!val || strchr(param, '.') < val)) {
  245. printk(KERN_ERR "Unknown boot option `%s': ignoring\n", param);
  246. return 0;
  247. }
  248. if (panic_later)
  249. return 0;
  250. if (val) {
  251. /* Environment option */
  252. unsigned int i;
  253. for (i = 0; envp_init[i]; i++) {
  254. if (i == MAX_INIT_ENVS) {
  255. panic_later = "Too many boot env vars at `%s'";
  256. panic_param = param;
  257. }
  258. if (!strncmp(param, envp_init[i], val - param))
  259. break;
  260. }
  261. envp_init[i] = param;
  262. } else {
  263. /* Command line option */
  264. unsigned int i;
  265. for (i = 0; argv_init[i]; i++) {
  266. if (i == MAX_INIT_ARGS) {
  267. panic_later = "Too many boot init vars at `%s'";
  268. panic_param = param;
  269. }
  270. }
  271. argv_init[i] = param;
  272. }
  273. return 0;
  274. }
  275. static int __init init_setup(char *str)
  276. {
  277. unsigned int i;
  278. execute_command = str;
  279. /*
  280. * In case LILO is going to boot us with default command line,
  281. * it prepends "auto" before the whole cmdline which makes
  282. * the shell think it should execute a script with such name.
  283. * So we ignore all arguments entered _before_ init=... [MJ]
  284. */
  285. for (i = 1; i < MAX_INIT_ARGS; i++)
  286. argv_init[i] = NULL;
  287. return 1;
  288. }
  289. __setup("init=", init_setup);
  290. static int __init rdinit_setup(char *str)
  291. {
  292. unsigned int i;
  293. ramdisk_execute_command = str;
  294. /* See "auto" comment in init_setup */
  295. for (i = 1; i < MAX_INIT_ARGS; i++)
  296. argv_init[i] = NULL;
  297. return 1;
  298. }
  299. __setup("rdinit=", rdinit_setup);
  300. #ifndef CONFIG_SMP
  301. #ifdef CONFIG_X86_LOCAL_APIC
  302. static void __init smp_init(void)
  303. {
  304. APIC_init_uniprocessor();
  305. }
  306. #else
  307. #define smp_init() do { } while (0)
  308. #endif
  309. static inline void setup_per_cpu_areas(void) { }
  310. static inline void smp_prepare_cpus(unsigned int maxcpus) { }
  311. #else
  312. #ifdef __GENERIC_PER_CPU
  313. unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
  314. EXPORT_SYMBOL(__per_cpu_offset);
  315. static void __init setup_per_cpu_areas(void)
  316. {
  317. unsigned long size, i;
  318. char *ptr;
  319. unsigned long nr_possible_cpus = num_possible_cpus();
  320. /* Copy section for each CPU (we discard the original) */
  321. size = ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES);
  322. #ifdef CONFIG_MODULES
  323. if (size < PERCPU_ENOUGH_ROOM)
  324. size = PERCPU_ENOUGH_ROOM;
  325. #endif
  326. ptr = alloc_bootmem(size * nr_possible_cpus);
  327. for_each_possible_cpu(i) {
  328. __per_cpu_offset[i] = ptr - __per_cpu_start;
  329. memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
  330. ptr += size;
  331. }
  332. }
  333. #endif /* !__GENERIC_PER_CPU */
  334. /* Called by boot processor to activate the rest. */
  335. static void __init smp_init(void)
  336. {
  337. unsigned int i;
  338. /* FIXME: This should be done in userspace --RR */
  339. for_each_present_cpu(i) {
  340. if (num_online_cpus() >= max_cpus)
  341. break;
  342. if (!cpu_online(i))
  343. cpu_up(i);
  344. }
  345. /* Any cleanup work */
  346. printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus());
  347. smp_cpus_done(max_cpus);
  348. }
  349. #endif
  350. /*
  351. * We need to store the untouched command line for future reference.
  352. * We also need to store the touched command line since the parameter
  353. * parsing is performed in place, and we should allow a component to
  354. * store reference of name/value for future reference.
  355. */
  356. static void __init setup_command_line(char *command_line)
  357. {
  358. saved_command_line = alloc_bootmem(strlen (boot_command_line)+1);
  359. static_command_line = alloc_bootmem(strlen (command_line)+1);
  360. strcpy (saved_command_line, boot_command_line);
  361. strcpy (static_command_line, command_line);
  362. }
  363. /*
  364. * We need to finalize in a non-__init function or else race conditions
  365. * between the root thread and the init thread may cause start_kernel to
  366. * be reaped by free_initmem before the root thread has proceeded to
  367. * cpu_idle.
  368. *
  369. * gcc-3.4 accidentally inlines this function, so use noinline.
  370. */
  371. static void noinline rest_init(void)
  372. __releases(kernel_lock)
  373. {
  374. kernel_thread(init, NULL, CLONE_FS | CLONE_SIGHAND);
  375. numa_default_policy();
  376. unlock_kernel();
  377. /*
  378. * The boot idle thread must execute schedule()
  379. * at least one to get things moving:
  380. */
  381. preempt_enable_no_resched();
  382. schedule();
  383. preempt_disable();
  384. /* Call into cpu_idle with preempt disabled */
  385. cpu_idle();
  386. }
  387. /* Check for early params. */
  388. static int __init do_early_param(char *param, char *val)
  389. {
  390. struct obs_kernel_param *p;
  391. for (p = __setup_start; p < __setup_end; p++) {
  392. if (p->early && strcmp(param, p->str) == 0) {
  393. if (p->setup_func(val) != 0)
  394. printk(KERN_WARNING
  395. "Malformed early option '%s'\n", param);
  396. }
  397. }
  398. /* We accept everything at this stage. */
  399. return 0;
  400. }
  401. /* Arch code calls this early on, or if not, just before other parsing. */
  402. void __init parse_early_param(void)
  403. {
  404. static __initdata int done = 0;
  405. static __initdata char tmp_cmdline[COMMAND_LINE_SIZE];
  406. if (done)
  407. return;
  408. /* All fall through to do_early_param. */
  409. strlcpy(tmp_cmdline, boot_command_line, COMMAND_LINE_SIZE);
  410. parse_args("early options", tmp_cmdline, NULL, 0, do_early_param);
  411. done = 1;
  412. }
  413. /*
  414. * Activate the first processor.
  415. */
  416. static void __init boot_cpu_init(void)
  417. {
  418. int cpu = smp_processor_id();
  419. /* Mark the boot cpu "present", "online" etc for SMP and UP case */
  420. cpu_set(cpu, cpu_online_map);
  421. cpu_set(cpu, cpu_present_map);
  422. cpu_set(cpu, cpu_possible_map);
  423. }
  424. void __init __attribute__((weak)) smp_setup_processor_id(void)
  425. {
  426. }
  427. asmlinkage void __init start_kernel(void)
  428. {
  429. char * command_line;
  430. extern struct kernel_param __start___param[], __stop___param[];
  431. smp_setup_processor_id();
  432. /*
  433. * Need to run as early as possible, to initialize the
  434. * lockdep hash:
  435. */
  436. unwind_init();
  437. lockdep_init();
  438. local_irq_disable();
  439. early_boot_irqs_off();
  440. early_init_irq_lock_class();
  441. /*
  442. * Interrupts are still disabled. Do necessary setups, then
  443. * enable them
  444. */
  445. lock_kernel();
  446. tick_init();
  447. boot_cpu_init();
  448. page_address_init();
  449. printk(KERN_NOTICE);
  450. printk(linux_banner);
  451. setup_arch(&command_line);
  452. setup_command_line(command_line);
  453. unwind_setup();
  454. setup_per_cpu_areas();
  455. smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
  456. /*
  457. * Set up the scheduler prior starting any interrupts (such as the
  458. * timer interrupt). Full topology setup happens at smp_init()
  459. * time - but meanwhile we still have a functioning scheduler.
  460. */
  461. sched_init();
  462. /*
  463. * Disable preemption - early bootup scheduling is extremely
  464. * fragile until we cpu_idle() for the first time.
  465. */
  466. preempt_disable();
  467. build_all_zonelists();
  468. page_alloc_init();
  469. printk(KERN_NOTICE "Kernel command line: %s\n", boot_command_line);
  470. parse_early_param();
  471. parse_args("Booting kernel", static_command_line, __start___param,
  472. __stop___param - __start___param,
  473. &unknown_bootoption);
  474. if (!irqs_disabled()) {
  475. printk(KERN_WARNING "start_kernel(): bug: interrupts were "
  476. "enabled *very* early, fixing it\n");
  477. local_irq_disable();
  478. }
  479. sort_main_extable();
  480. trap_init();
  481. rcu_init();
  482. init_IRQ();
  483. pidhash_init();
  484. init_timers();
  485. hrtimers_init();
  486. softirq_init();
  487. timekeeping_init();
  488. time_init();
  489. profile_init();
  490. if (!irqs_disabled())
  491. printk("start_kernel(): bug: interrupts were enabled early\n");
  492. early_boot_irqs_on();
  493. local_irq_enable();
  494. /*
  495. * HACK ALERT! This is early. We're enabling the console before
  496. * we've done PCI setups etc, and console_init() must be aware of
  497. * this. But we do want output early, in case something goes wrong.
  498. */
  499. console_init();
  500. if (panic_later)
  501. panic(panic_later, panic_param);
  502. lockdep_info();
  503. /*
  504. * Need to run this when irqs are enabled, because it wants
  505. * to self-test [hard/soft]-irqs on/off lock inversion bugs
  506. * too:
  507. */
  508. locking_selftest();
  509. #ifdef CONFIG_BLK_DEV_INITRD
  510. if (initrd_start && !initrd_below_start_ok &&
  511. initrd_start < min_low_pfn << PAGE_SHIFT) {
  512. printk(KERN_CRIT "initrd overwritten (0x%08lx < 0x%08lx) - "
  513. "disabling it.\n",initrd_start,min_low_pfn << PAGE_SHIFT);
  514. initrd_start = 0;
  515. }
  516. #endif
  517. vfs_caches_init_early();
  518. cpuset_init_early();
  519. mem_init();
  520. kmem_cache_init();
  521. setup_per_cpu_pageset();
  522. numa_policy_init();
  523. if (late_time_init)
  524. late_time_init();
  525. calibrate_delay();
  526. pidmap_init();
  527. pgtable_cache_init();
  528. prio_tree_init();
  529. anon_vma_init();
  530. #ifdef CONFIG_X86
  531. if (efi_enabled)
  532. efi_enter_virtual_mode();
  533. #endif
  534. fork_init(num_physpages);
  535. proc_caches_init();
  536. buffer_init();
  537. unnamed_dev_init();
  538. key_init();
  539. security_init();
  540. vfs_caches_init(num_physpages);
  541. radix_tree_init();
  542. signals_init();
  543. /* rootfs populating might need page-writeback */
  544. page_writeback_init();
  545. #ifdef CONFIG_PROC_FS
  546. proc_root_init();
  547. #endif
  548. cpuset_init();
  549. taskstats_init_early();
  550. delayacct_init();
  551. check_bugs();
  552. acpi_early_init(); /* before LAPIC and SMP init */
  553. /* Do the rest non-__init'ed, we're now alive */
  554. rest_init();
  555. }
  556. static int __initdata initcall_debug;
  557. static int __init initcall_debug_setup(char *str)
  558. {
  559. initcall_debug = 1;
  560. return 1;
  561. }
  562. __setup("initcall_debug", initcall_debug_setup);
  563. extern initcall_t __initcall_start[], __initcall_end[];
  564. static void __init do_initcalls(void)
  565. {
  566. initcall_t *call;
  567. int count = preempt_count();
  568. for (call = __initcall_start; call < __initcall_end; call++) {
  569. char *msg = NULL;
  570. char msgbuf[40];
  571. int result;
  572. if (initcall_debug) {
  573. printk("Calling initcall 0x%p", *call);
  574. print_fn_descriptor_symbol(": %s()",
  575. (unsigned long) *call);
  576. printk("\n");
  577. }
  578. result = (*call)();
  579. if (result && result != -ENODEV && initcall_debug) {
  580. sprintf(msgbuf, "error code %d", result);
  581. msg = msgbuf;
  582. }
  583. if (preempt_count() != count) {
  584. msg = "preemption imbalance";
  585. preempt_count() = count;
  586. }
  587. if (irqs_disabled()) {
  588. msg = "disabled interrupts";
  589. local_irq_enable();
  590. }
  591. if (msg) {
  592. printk(KERN_WARNING "initcall at 0x%p", *call);
  593. print_fn_descriptor_symbol(": %s()",
  594. (unsigned long) *call);
  595. printk(": returned with %s\n", msg);
  596. }
  597. }
  598. /* Make sure there is no pending stuff from the initcall sequence */
  599. flush_scheduled_work();
  600. }
  601. /*
  602. * Ok, the machine is now initialized. None of the devices
  603. * have been touched yet, but the CPU subsystem is up and
  604. * running, and memory and process management works.
  605. *
  606. * Now we can finally start doing some real work..
  607. */
  608. static void __init do_basic_setup(void)
  609. {
  610. /* drivers will send hotplug events */
  611. init_workqueues();
  612. usermodehelper_init();
  613. driver_init();
  614. #ifdef CONFIG_PROC_FS
  615. init_irq_proc();
  616. #endif
  617. do_initcalls();
  618. }
  619. static void __init do_pre_smp_initcalls(void)
  620. {
  621. extern int spawn_ksoftirqd(void);
  622. #ifdef CONFIG_SMP
  623. extern int migration_init(void);
  624. migration_init();
  625. #endif
  626. spawn_ksoftirqd();
  627. spawn_softlockup_task();
  628. }
  629. static void run_init_process(char *init_filename)
  630. {
  631. argv_init[0] = init_filename;
  632. kernel_execve(init_filename, argv_init, envp_init);
  633. }
  634. /* This is a non __init function. Force it to be noinline otherwise gcc
  635. * makes it inline to init() and it becomes part of init.text section
  636. */
  637. static int noinline init_post(void)
  638. {
  639. free_initmem();
  640. unlock_kernel();
  641. mark_rodata_ro();
  642. system_state = SYSTEM_RUNNING;
  643. numa_default_policy();
  644. if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
  645. printk(KERN_WARNING "Warning: unable to open an initial console.\n");
  646. (void) sys_dup(0);
  647. (void) sys_dup(0);
  648. if (ramdisk_execute_command) {
  649. run_init_process(ramdisk_execute_command);
  650. printk(KERN_WARNING "Failed to execute %s\n",
  651. ramdisk_execute_command);
  652. }
  653. /*
  654. * We try each of these until one succeeds.
  655. *
  656. * The Bourne shell can be used instead of init if we are
  657. * trying to recover a really broken machine.
  658. */
  659. if (execute_command) {
  660. run_init_process(execute_command);
  661. printk(KERN_WARNING "Failed to execute %s. Attempting "
  662. "defaults...\n", execute_command);
  663. }
  664. run_init_process("/sbin/init");
  665. run_init_process("/etc/init");
  666. run_init_process("/bin/init");
  667. run_init_process("/bin/sh");
  668. panic("No init found. Try passing init= option to kernel.");
  669. }
  670. static int __init init(void * unused)
  671. {
  672. lock_kernel();
  673. /*
  674. * init can run on any cpu.
  675. */
  676. set_cpus_allowed(current, CPU_MASK_ALL);
  677. /*
  678. * Tell the world that we're going to be the grim
  679. * reaper of innocent orphaned children.
  680. *
  681. * We don't want people to have to make incorrect
  682. * assumptions about where in the task array this
  683. * can be found.
  684. */
  685. init_pid_ns.child_reaper = current;
  686. cad_pid = task_pid(current);
  687. smp_prepare_cpus(max_cpus);
  688. do_pre_smp_initcalls();
  689. smp_init();
  690. sched_init_smp();
  691. cpuset_init_smp();
  692. do_basic_setup();
  693. /*
  694. * check if there is an early userspace init. If yes, let it do all
  695. * the work
  696. */
  697. if (!ramdisk_execute_command)
  698. ramdisk_execute_command = "/init";
  699. if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
  700. ramdisk_execute_command = NULL;
  701. prepare_namespace();
  702. }
  703. /*
  704. * Ok, we have completed the initial bootup, and
  705. * we're essentially up and running. Get rid of the
  706. * initmem segments and start the user-mode stuff..
  707. */
  708. init_post();
  709. return 0;
  710. }