/* * Copyright 2003-2013, Axel Dörfler, axeld@pinc-software.de. * Distributed under the terms of the MIT License. */ #include "menu.h" #include "loader.h" #include "load_driver_settings.h" #include #include #include #include #include #include #include #include "file_systems/packagefs/packagefs.h" //#define TRACE_MAIN #ifdef TRACE_MAIN # define TRACE(x) dprintf x #else # define TRACE(x) ; #endif void *__dso_handle; extern "C" int main(stage2_args *args) { TRACE(("boot(): enter\n")); if (heap_init(args) < B_OK) panic("Could not initialize heap!\n"); TRACE(("boot(): heap initialized...\n")); // set debug syslog default #if KDEBUG_ENABLE_DEBUG_SYSLOG gKernelArgs.keep_debug_output_buffer = true; gKernelArgs.previous_debug_size = true; // used as a boolean indicator until initialized for the kernel #endif add_stage2_driver_settings(args); platform_init_video(); // the main platform dependent initialisation // has already taken place at this point. if (vfs_init(args) < B_OK) panic("Could not initialize VFS!\n"); dprintf("Welcome to the Haiku boot loader!\n"); bool mountedAllVolumes = false; BootVolume bootVolume; PathBlacklist pathBlacklist; if (get_boot_file_system(args, bootVolume) != B_OK || (platform_boot_options() & BOOT_OPTION_MENU) != 0) { if (!bootVolume.IsValid()) puts("\tno boot path found, scan for all partitions...\n"); if (mount_file_systems(args) < B_OK) { // That's unfortunate, but we still give the user the possibility // to insert a CD-ROM or just rescan the available devices puts("Could not locate any supported boot devices!\n"); } // ToDo: check if there is only one bootable volume! mountedAllVolumes = true; if (user_menu(bootVolume, pathBlacklist) < B_OK) { // user requested to quit the loader goto out; } } if (bootVolume.IsValid()) { // we got a volume to boot from! load_driver_settings(args, bootVolume.RootDirectory()); status_t status; while ((status = load_kernel(args, bootVolume)) < B_OK) { // loading the kernel failed, so let the user choose another // volume to boot from until it works bootVolume.Unset(); if (!mountedAllVolumes) { // mount all other file systems, if not already happened if (mount_file_systems(args) < B_OK) panic("Could not locate any supported boot devices!\n"); mountedAllVolumes = true; } if (user_menu(bootVolume, pathBlacklist) != B_OK || !bootVolume.IsValid()) { // user requested to quit the loader goto out; } } // if everything is okay, continue booting; the kernel // is already loaded at this point and we definitely // know our boot volume, too if (status == B_OK) { if (bootVolume.IsPackaged()) { packagefs_apply_path_blacklist(bootVolume.SystemDirectory(), pathBlacklist); } register_boot_file_system(bootVolume); if ((platform_boot_options() & BOOT_OPTION_DEBUG_OUTPUT) == 0) platform_switch_to_logo(); load_modules(args, bootVolume); gKernelArgs.ucode_data = NULL; gKernelArgs.ucode_data_size = 0; platform_load_ucode(bootVolume); // apply boot settings apply_boot_settings(); // set up kernel args version info gKernelArgs.kernel_args_size = sizeof(kernel_args); gKernelArgs.version = CURRENT_KERNEL_ARGS_VERSION; if (gKernelArgs.ucode_data == NULL) gKernelArgs.kernel_args_size = kernel_args_size_v1; // clone the boot_volume KMessage into kernel accessible memory // note, that we need to 8-byte align the buffer and thus allocate // 7 more bytes void* buffer = kernel_args_malloc(gBootVolume.ContentSize() + 7); if (!buffer) { panic("Could not allocate memory for the boot volume kernel " "arguments"); } buffer = (void*)(((addr_t)buffer + 7) & ~(addr_t)0x7); memcpy(buffer, gBootVolume.Buffer(), gBootVolume.ContentSize()); gKernelArgs.boot_volume = buffer; gKernelArgs.boot_volume_size = gBootVolume.ContentSize(); platform_cleanup_devices(); // TODO: cleanup, heap_release() etc. heap_print_statistics(); platform_start_kernel(); } } out: heap_release(args); return 0; }