rulimine/stage23/entry.s3.c

128 lines
3.2 KiB
C
Raw Normal View History

2020-09-02 10:55:56 +03:00
#include <lib/term.h>
#include <lib/real.h>
2020-01-22 07:02:12 +03:00
#include <lib/blib.h>
#include <lib/libc.h>
2020-04-15 14:21:44 +03:00
#include <lib/part.h>
2020-01-22 09:13:19 +03:00
#include <lib/config.h>
2020-11-15 19:56:10 +03:00
#include <lib/trace.h>
2020-09-18 21:02:10 +03:00
#include <sys/e820.h>
#include <sys/a20.h>
2020-05-10 01:38:27 +03:00
#include <lib/print.h>
2020-04-14 06:20:55 +03:00
#include <fs/file.h>
2020-03-25 03:04:18 +03:00
#include <lib/elf.h>
2020-09-20 13:03:44 +03:00
#include <mm/pmm.h>
#include <protos/stivale.h>
#include <protos/stivale2.h>
2020-04-19 11:14:49 +03:00
#include <protos/linux.h>
2020-05-06 18:00:41 +03:00
#include <protos/chainload.h>
2020-06-05 21:27:52 +03:00
#include <menu.h>
2020-11-05 03:37:45 +03:00
#include <pxe/pxe.h>
#include <pxe/tftp.h>
#include <drivers/disk.h>
2020-04-21 19:27:05 +03:00
void stage3_common(void);
2021-03-04 00:38:28 +03:00
2021-03-02 12:23:43 +03:00
#if defined (uefi)
2021-05-20 02:16:39 +03:00
__attribute__((naked))
EFI_STATUS efi_main(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {
2021-05-06 05:31:05 +03:00
// Invalid return address of 0 to end stacktraces here
2021-05-20 02:16:39 +03:00
asm (
2021-05-07 01:27:49 +03:00
"push 0\n\t"
2021-05-06 05:31:05 +03:00
"push 0\n\t"
"xor eax, eax\n\t"
"jmp uefi_entry\n\t"
);
2021-05-20 02:16:39 +03:00
(void)ImageHandle; (void)SystemTable;
2021-05-06 05:31:05 +03:00
}
__attribute__((noreturn))
void uefi_entry(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) {
2021-03-02 12:23:43 +03:00
gST = SystemTable;
gBS = SystemTable->BootServices;
gRT = SystemTable->RuntimeServices;
efi_image_handle = ImageHandle;
2021-03-02 12:23:43 +03:00
2021-05-06 05:31:05 +03:00
EFI_STATUS status;
2021-03-05 08:10:58 +03:00
init_memmap();
2021-04-11 03:30:48 +03:00
term_vbe(0, 0);
early_term = true;
print("Limine " LIMINE_VERSION "\n\n");
2021-03-04 11:15:10 +03:00
disk_create_index();
2021-03-04 00:38:28 +03:00
2021-05-06 05:31:05 +03:00
EFI_HANDLE current_handle = ImageHandle;
for (;;) {
EFI_GUID loaded_img_prot_guid = EFI_LOADED_IMAGE_PROTOCOL_GUID;
EFI_LOADED_IMAGE_PROTOCOL *loaded_image = NULL;
2021-03-04 00:38:28 +03:00
2021-05-06 05:31:05 +03:00
status = uefi_call_wrapper(gBS->HandleProtocol, 3,
current_handle, &loaded_img_prot_guid,
&loaded_image);
2021-03-04 00:38:28 +03:00
2021-05-06 05:31:05 +03:00
if (status) {
2021-05-20 02:16:39 +03:00
panic("HandleProtocol failure (%x)", status);
2021-05-06 05:31:05 +03:00
}
2021-03-04 00:38:28 +03:00
2021-05-06 05:31:05 +03:00
boot_volume = disk_volume_from_efi_handle(loaded_image->DeviceHandle);
2021-05-06 05:31:05 +03:00
if (boot_volume != NULL)
stage3_common();
current_handle = loaded_image->ParentHandle;
}
2021-03-02 12:23:43 +03:00
}
#endif
2021-03-04 00:38:28 +03:00
#if defined (bios)
__attribute__((section(".stage3_build_id")))
uint64_t stage3_build_id = BUILD_ID;
__attribute__((section(".stage3_entry")))
2021-03-04 11:22:08 +03:00
#endif
__attribute__((noreturn))
void stage3_common(void) {
2021-03-04 11:15:10 +03:00
volume_iterate_parts(boot_volume,
if (!init_config_disk(_PART)) {
boot_volume = _PART;
2021-02-26 03:30:27 +03:00
break;
}
2021-03-04 11:15:10 +03:00
);
2021-02-26 03:30:27 +03:00
2021-05-11 07:46:42 +03:00
char *verbose_str = config_get_value(NULL, 0, "VERBOSE");
verbose = verbose_str != NULL && strcmp(verbose_str, "yes") == 0;
if (verbose) {
print("Boot drive: %x\n", boot_volume->drive);
print("Boot partition: %d\n", boot_volume->partition);
}
2021-03-04 11:22:08 +03:00
char *cmdline;
char *config = menu(&cmdline);
2020-09-02 10:55:56 +03:00
char *proto = config_get_value(config, 0, "PROTOCOL");
if (proto == NULL) {
panic("PROTOCOL not specified");
}
if (!strcmp(proto, "stivale")) {
stivale_load(config, cmdline);
} else if (!strcmp(proto, "stivale2")) {
#if defined (bios)
void *efi_system_table = NULL;
#elif defined (uefi)
void *efi_system_table = gST;
#endif
stivale2_load(config, cmdline, boot_volume->pxe, efi_system_table);
} else if (!strcmp(proto, "linux")) {
linux_load(config, cmdline);
} else if (!strcmp(proto, "chainload")) {
chainload(config);
}
2021-03-04 00:38:28 +03:00
panic("Invalid protocol specified");
2020-04-15 14:21:44 +03:00
}