1. 程式人生 > >linux核心啟動流程(文章最後流程圖)

linux核心啟動流程(文章最後流程圖)

本文以Linux3.14版本原始碼為例分析其啟動流程。各版本啟動程式碼略有不同,但核心流程與思想萬變不離其宗。

核心映像被載入到記憶體並獲得控制權之後,核心啟動流程開始。通常,核心映像以壓縮形式儲存,並不是一個可以執行的核心。因此,核心階段的首要工作是自解壓核心映像。

核心編譯生成vmliunx後,通常會對其進行壓縮,得到zImage(小核心,小於512KB)或bzImage(大核心,大於512KB)。在它們的頭部嵌有解壓縮程式。

通過linux/arch/arm/boot/compressed目錄下的Makefile尋找到vmlinux檔案的連結指令碼(vmlinux.lds),從中查詢系統啟動入口函式。

$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
		$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) $(ashldi3) \
		$(bswapsdi2) FORCE
	@$(check_for_multiple_zreladdr)
	$(call if_changed,ld)
	@$(check_for_bad_syms)

vmlinux.lds(linux/arch/arm/kernel/vmlinux.lds)連結指令碼開頭內容

OUTPUT_ARCH(arm)
ENTRY(stext)
jiffies = jiffies_64;
SECTIONS
{
	。
	。
	。

得到核心入口函式為 stext(linux/arch/arm/kernel/head.S)

核心引導階段

ENTRY(stext)
	。
	。
	。
	bl	__lookup_processor_type	@ r5=procinfo r9=cpuid                             //處理器是否支援
	movs	r10, r5				@ invalid processor (r5=0)?
 THUMB( it	eq )		@ force fixup-able long branch encoding
	beq	__error_p			@ yes, error 'p'                           //不支援則列印錯誤資訊
 
          。
	。
	。
	bl	__create_page_tables                                                       //建立頁表
 
	/*
	 * The following calls CPU specific code in a position independent
	 * manner.  See arch/arm/mm/proc-*.S for details.  r10 = base of
	 * xxx_proc_info structure selected by __lookup_processor_type
	 * above.  On return, the CPU will be ready for the MMU to be
	 * turned on, and r0 will hold the CPU control register value.
	 */
	ldr	r13, =__mmap_switched		@ address to jump to after                 //儲存MMU使能後跳轉地址
						@ mmu has been enabled
	adr	lr, BSYM(1f)			@ return (PIC) address
	mov	r8, r4				@ set TTBR1 to swapper_pg_dir
 ARM(	add	pc, r10, #PROCINFO_INITFUNC	)
 THUMB(	add	r12, r10, #PROCINFO_INITFUNC	)
 THUMB(	mov	pc, r12				)
1:	b	__enable_mmu                                                                           //使能MMU後跳轉到__mmap_switched
查詢標籤__mmap_switched所在位置:/linux/arch/arm/kernel/head-common.S
__mmap_switched:
	/*
	 * The following fragment of code is executed with the MMU on in MMU mode,
	 * and uses absolute addresses; this is not position independent.
	 *
	 *  r0  = cp#15 control register
	 *  r1  = machine ID
	 *  r2  = atags/dtb pointer
	 *  r9  = processor ID
	 */
	//儲存裝置資訊、裝置樹及啟動引數儲存地址
	。
	。
	。
	b	start_kernel

核心初始化階段

從start_kernel函式開始,核心進入C語言部分,完成核心的大部分初始化工作。

函式所在位置:/linux/init/Main.c

start_kernel涉及大量初始化工作,只例舉重要的初始化工作。

asmlinkage void __init start_kernel(void)
{
	……                                                                              //型別判斷
	smp_setup_processor_id();                                                         //smp相關,返回啟動CPU號
	……
	local_irq_disable();                                                                   //關閉當前CPU中斷
	early_boot_irqs_disabled = true;
/*
 * Interrupts are still disabled. Do necessary setups, then
 * enable them
 */
	boot_cpu_init();
	page_address_init();                                                            //初始化頁地址
	pr_notice("%s", linux_banner);                                                   //顯示核心版本資訊
	setup_arch(&command_line);
	mm_init_owner(&init_mm, &init_task);
	mm_init_cpumask(&init_mm);
	setup_command_line(command_line);
	setup_nr_cpu_ids();
	setup_per_cpu_areas();
	smp_prepare_boot_cpu();	/* arch-specific boot-cpu hooks */
 
	build_all_zonelists(NULL, NULL);
	page_alloc_init();                                                                            //頁記憶體申請初始化
 
	pr_notice("Kernel command line: %s\n", boot_command_line);                                     //列印核心啟動命令列引數
	parse_early_param();
	parse_args("Booting kernel", static_command_line, __start___param,
		   __stop___param - __start___param,
		   -1, -1, &unknown_bootoption);
 
	……
	/*
	 * Set up the scheduler prior starting any interrupts (such as the
	 * timer interrupt). Full topology setup happens at smp_init()
	 * time - but meanwhile we still have a functioning scheduler.
	 */
	sched_init();                                                                                    //程序排程器初始化
	/*
	 * Disable preemption - early bootup scheduling is extremely
	 * fragile until we cpu_idle() for the first time.
	 */
	preempt_disable();                                                                                    //禁止核心搶佔
	if (WARN(!irqs_disabled(), "Interrupts were enabled *very* early, fixing it\n"))
		local_irq_disable();                                                                      //檢查關閉CPU中斷
	
	
          /*大量初始化內容 見名知意*/
	idr_init_cache();
	rcu_init();
	tick_nohz_init();
	context_tracking_init();
	radix_tree_init();
	/* init some links before init_ISA_irqs() */
	early_irq_init();
	init_IRQ();
	tick_init();
	init_timers();
	hrtimers_init();
	softirq_init();
	timekeeping_init();
	time_init();
	sched_clock_postinit();
	perf_event_init();
	profile_init();
	call_function_init();
	WARN(!irqs_disabled(), "Interrupts were enabled early\n");
	early_boot_irqs_disabled = false;
	local_irq_enable();                                                                            //本地中斷可以使用了
 
	kmem_cache_init_late();
 
	/*
	 * HACK ALERT! This is early. We're enabling the console before
	 * we've done PCI setups etc, and console_init() must be aware of
	 * this. But we do want output early, in case something goes wrong.
	 */
	console_init();                                                                            //初始化控制檯,可以使用printk了
	if (panic_later)
		panic("Too many boot %s vars at `%s'", panic_later,
		      panic_param);
 
	lockdep_info();
 
	/*
	 * Need to run this when irqs are enabled, because it wants
	 * to self-test [hard/soft]-irqs on/off lock inversion bugs
	 * too:
	 */
	locking_selftest();
 
#ifdef CONFIG_BLK_DEV_INITRD
	if (initrd_start && !initrd_below_start_ok &&
	    page_to_pfn(virt_to_page((void *)initrd_start)) < min_low_pfn) {
		pr_crit("initrd overwritten (0x%08lx < 0x%08lx) - disabling it.\n",
		    page_to_pfn(virt_to_page((void *)initrd_start)),
		    min_low_pfn);
		initrd_start = 0;
	}
#endif
	page_cgroup_init();
	debug_objects_mem_init();
	kmemleak_init();
	setup_per_cpu_pageset();
	numa_policy_init();
	if (late_time_init)
		late_time_init();
	sched_clock_init();
	calibrate_delay();
	pidmap_init();
	anon_vma_init();
	acpi_early_init();
#ifdef CONFIG_X86
	if (efi_enabled(EFI_RUNTIME_SERVICES))
		efi_enter_virtual_mode();
#endif
#ifdef CONFIG_X86_ESPFIX64
	/* Should be run before the first non-init thread is created */
	init_espfix_bsp();
#endif
	thread_info_cache_init();
	cred_init();
	fork_init(totalram_pages);                                                             //初始化fork
	proc_caches_init();
	buffer_init();
	key_init();
	security_init();
	dbg_late_init();
	vfs_caches_init(totalram_pages);                                                      //虛擬檔案系統初始化
	signals_init();
	/* rootfs populating might need page-writeback */
	page_writeback_init();
#ifdef CONFIG_PROC_FS
	proc_root_init();
#endif
	cgroup_init();
	cpuset_init();
	taskstats_init_early();
	delayacct_init();
 
	check_bugs();
 
	sfi_init_late();
 
	if (efi_enabled(EFI_RUNTIME_SERVICES)) {
		efi_late_init();
		efi_free_boot_services();
	}
 
	ftrace_init();
 
	/* Do the rest non-__init'ed, we're now alive */
	rest_init();
}

函式最後呼叫rest_init()函式

/*最重要使命:建立kernel_init程序,並進行後續初始化*/
static noinline void __init_refok rest_init(void)
{
	int pid;
 
	rcu_scheduler_starting();
	/*
	 * We need to spawn init first so that it obtains pid 1, however
	 * the init task will end up wanting to create kthreads, which, if
	 * we schedule it before we create kthreadd, will OOPS.
	 */
	
	kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND);                             //建立kernel_init程序
	
	numa_default_policy();
	pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);
	rcu_read_lock();
	kthreadd_task = find_task_by_pid_ns(pid, &init_pid_ns);
	rcu_read_unlock();
	complete(&kthreadd_done);
 
	/*
	 * The boot idle thread must execute schedule()
	 * at least once to get things moving:
	 */
	init_idle_bootup_task(current);
	schedule_preempt_disabled();
	/* Call into cpu_idle with preempt disabled */
	//cpu_idle就是在系統閒置時用來降低電力的使用和減少熱的產生的空轉函式,函式至此不再返回,其餘工作從kernel_init程序處發起
	cpu_startup_entry(CPUHP_ONLINE);
}

kernel_init函式將完成裝置驅動程式的初始化,並呼叫init_post函式啟動使用者程序

部分書籍介紹的核心啟動流程基於經典的2.6版本,kernel_init函式還會呼叫init_post函式專門負責_init程序的啟動,現版本已經被整合到了一起。

static int __ref kernel_init(void *unused)
{
	int ret;
 
	kernel_init_freeable();                 //該函式中完成smp開啟  驅動初始化 共享記憶體初始化等工作
	/* need to finish all async __init code before freeing the memory */
	async_synchronize_full();
	free_initmem();                         //初始化尾聲,清除記憶體無用資料
	mark_rodata_ro();
	system_state = SYSTEM_RUNNING;
	numa_default_policy();
 
	flush_delayed_fput();
 
	if (ramdisk_execute_command) {
		ret = run_init_process(ramdisk_execute_command);
		if (!ret)
			return 0;
		pr_err("Failed to execute %s (error %d)\n",
		       ramdisk_execute_command, ret);
	}
 
	/*
	 * We try each of these until one succeeds.
	 *
	 * The Bourne shell can be used instead of init if we are
	 * trying to recover a really broken machine.
	                                                      *尋找init函式,建立一號程序_init (第一個使用者空間程序)*/
	if (execute_command) {
		ret = run_init_process(execute_command);
		if (!ret)
			return 0;
		pr_err("Failed to execute %s (error %d).  Attempting defaults...\n",
			execute_command, ret);
	}
	if (!try_to_run_init_process("/sbin/init") ||
	    !try_to_run_init_process("/etc/init") ||
	    !try_to_run_init_process("/bin/init") ||
	    !try_to_run_init_process("/bin/sh"))
		return 0;
 
	panic("No working init found.  Try passing init= option to kernel. "
	      "See Linux Documentation/init.txt for guidance.");
}
static int __ref kernel_init(void *unused)
{
	int ret;
 
	kernel_init_freeable();                 //該函式中完成smp開啟  驅動初始化 共享記憶體初始化等工作
	/* need to finish all async __init code before freeing the memory */
	async_synchronize_full();
	free_initmem();                         //初始化尾聲,清除記憶體無用資料
	mark_rodata_ro();
	system_state = SYSTEM_RUNNING;
	numa_default_policy();
 
	flush_delayed_fput();
 
	if (ramdisk_execute_command) {
		ret = run_init_process(ramdisk_execute_command);
		if (!ret)
			return 0;
		pr_err("Failed to execute %s (error %d)\n",
		       ramdisk_execute_command, ret);
	}
 
	/*
	 * We try each of these until one succeeds.
	 *
	 * The Bourne shell can be used instead of init if we are
	 * trying to recover a really broken machine.
	                                                      *尋找init函式,建立一號程序_init (第一個使用者空間程序)*/
	if (execute_command) {
		ret = run_init_process(execute_command);
		if (!ret)
			return 0;
		pr_err("Failed to execute %s (error %d).  Attempting defaults...\n",
			execute_command, ret);
	}
	if (!try_to_run_init_process("/sbin/init") ||
	    !try_to_run_init_process("/etc/init") ||
	    !try_to_run_init_process("/bin/init") ||
	    !try_to_run_init_process("/bin/sh"))
		return 0;
 
	panic("No working init found.  Try passing init= option to kernel. "
	      "See Linux Documentation/init.txt for guidance.");
}

到此,核心初始化已經接近尾聲,所有的初始化函式都已經呼叫,因此free_initmem函式可以捨棄記憶體的__init_begin至__init_end之間的資料。

當核心被引導並進行初始化後,核心啟動了自己的第一個使用者空間應用程式_init,這是呼叫的第一個使用標準C庫編譯的程式,其程序編號時鐘為1.

_init負責出發其他必須的程序,以使系統進入整體可用的狀態。

以下為核心啟動流程圖: