rulimine/stage23/entry.s2.c

122 lines
2.6 KiB
C
Raw Normal View History

#include <lib/term.h>
#include <lib/real.h>
#include <lib/blib.h>
#include <lib/libc.h>
#include <lib/part.h>
#include <lib/config.h>
#include <lib/trace.h>
#include <sys/e820.h>
#include <sys/a20.h>
#include <lib/print.h>
#include <fs/file.h>
#include <lib/elf.h>
#include <mm/pmm.h>
#include <protos/stivale.h>
#include <protos/stivale2.h>
#include <protos/linux.h>
#include <protos/chainload.h>
#include <menu.h>
#include <pxe/pxe.h>
#include <pxe/tftp.h>
2021-03-04 11:15:10 +03:00
#include <drivers/disk.h>
2021-03-13 05:21:01 +03:00
#include <sys/idt.h>
struct volume *boot_volume;
2021-03-02 12:23:43 +03:00
#if bios == 1
2021-03-02 12:23:43 +03:00
bool stage3_loaded = false;
static bool stage3_found = false;
extern symbol stage3_addr;
extern symbol limine_sys_size;
extern symbol build_id_s2;
extern symbol build_id_s3;
static bool stage3_init(struct volume *part) {
2021-10-21 02:27:05 +03:00
struct file_handle *stage3;
2021-10-21 02:27:05 +03:00
if ((stage3 = fopen(part, "/limine.sys")) == NULL
&& (stage3 = fopen(part, "/boot/limine.sys")) == NULL) {
return false;
}
stage3_found = true;
2021-10-21 02:27:05 +03:00
if (stage3->size != (size_t)limine_sys_size) {
2021-11-20 23:47:51 +03:00
term_textmode();
print("limine.sys size incorrect.\n");
return false;
}
2021-10-21 02:27:05 +03:00
fread(stage3, stage3_addr,
(uintptr_t)stage3_addr - 0x8000,
2021-10-21 02:27:05 +03:00
stage3->size - ((uintptr_t)stage3_addr - 0x8000));
fclose(stage3);
if (memcmp(build_id_s2 + 16, build_id_s3 + 16, 20) != 0) {
2021-11-20 23:47:51 +03:00
term_textmode();
print("limine.sys build ID mismatch.\n");
return false;
}
stage3_loaded = true;
return true;
}
enum {
BOOTED_FROM_HDD,
BOOTED_FROM_PXE,
BOOTED_FROM_CD
};
__attribute__((noreturn))
void entry(uint8_t boot_drive, int boot_from) {
// XXX DO NOT MOVE A20 ENABLE CALL
if (!a20_enable())
panic("Could not enable A20 line");
2021-11-20 23:47:51 +03:00
term_notready();
init_e820();
init_memmap();
2021-03-13 05:21:01 +03:00
init_idt();
2021-03-04 11:15:10 +03:00
disk_create_index();
if (boot_from == BOOTED_FROM_HDD || boot_from == BOOTED_FROM_CD) {
2021-06-12 14:13:19 +03:00
boot_volume = volume_get_by_bios_drive(boot_drive);
2021-03-13 11:08:01 +03:00
} else if (boot_from == BOOTED_FROM_PXE) {
pxe_init();
boot_volume = pxe_bind_volume();
}
2021-03-04 11:15:10 +03:00
volume_iterate_parts(boot_volume,
if (stage3_init(_PART)) {
break;
}
2021-03-04 11:15:10 +03:00
);
2021-11-20 23:47:51 +03:00
if (!stage3_found) {
term_textmode();
print("\n"
"!! Stage 3 file not found!\n"
"!! Have you copied limine.sys to the root or /boot directories of\n"
"!! one of the partitions on the boot device?\n\n");
2021-11-20 23:47:51 +03:00
}
2021-11-20 23:47:51 +03:00
if (!stage3_loaded) {
2021-03-13 05:21:01 +03:00
panic("Failed to load stage 3.");
2021-11-20 23:47:51 +03:00
}
__attribute__((noreturn))
void (*stage3)(int boot_from) = (void *)stage3_addr;
stage3(boot_from);
}
2021-03-02 12:23:43 +03:00
#endif