1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/multiboot.c

167 lines
4.3 KiB
C
Raw Normal View History

2017-11-04 07:07:04 -04:00
#include "multiboot.h"
2017-11-01 08:57:56 -04:00
2017-11-04 07:43:55 -04:00
#include <kernelmq/stdlib.h>
2017-11-05 01:47:51 -04:00
#define MULTIBOOT_TAG_TYPE_END 0
#define MULTIBOOT_TAG_TYPE_CMDLINE 1
#define MULTIBOOT_TAG_TYPE_MODULE 3
#define MULTIBOOT_TAG_TYPE_MMAP 6
2017-11-02 00:21:25 -04:00
#define MULTIBOOT_MEMORY_AVAILABLE 1
#define MULTIBOOT_MEMORY_RESERVED 2
#define MULTIBOOT_MEMORY_ACPI_RECLAIMABLE 3
#define MULTIBOOT_MEMORY_NVS 4
struct multiboot_mmap_entry
{
unsigned long long base;
unsigned long long size;
2017-11-02 00:21:25 -04:00
unsigned int type;
unsigned int zero;
2017-11-06 03:41:11 -05:00
};
2017-11-02 00:21:25 -04:00
typedef struct multiboot_mmap_entry multiboot_memory_map_t;
2017-11-01 11:54:52 -04:00
struct multiboot_tag
{
unsigned int type;
unsigned int size;
};
struct multiboot_tag_string
{
unsigned int type;
unsigned int size;
char string[0];
};
struct multiboot_tag_module
{
unsigned int type;
unsigned int size;
unsigned int mod_start;
unsigned int mod_end;
char cmdline[0];
};
2017-11-02 00:21:25 -04:00
struct multiboot_tag_mmap
{
unsigned int type;
unsigned int size;
unsigned int entry_size;
unsigned int entry_version;
struct multiboot_mmap_entry entries[0];
};
2017-11-04 07:43:55 -04:00
static unsigned char print_multiboot_tag(struct KernelMQ_Info *kinfo, const struct multiboot_tag *tag);
2017-11-05 01:47:51 -04:00
static unsigned char print_multiboot_tag_cmdline(struct KernelMQ_Info *kinfo, const struct multiboot_tag_string *tag);
static unsigned char print_multiboot_tag_module (struct KernelMQ_Info *kinfo, const struct multiboot_tag_module *tag);
static unsigned char print_multiboot_tag_mmap (struct KernelMQ_Info *kinfo, const struct multiboot_tag_mmap *tag);
unsigned char multiboot_parse(struct KernelMQ_Info *kinfo, unsigned long base)
2017-11-01 08:57:56 -04:00
{
2017-11-04 07:07:04 -04:00
if (!kinfo) {
return 0;
}
// Unaligned address
if (base & 7) {
2017-11-04 07:07:04 -04:00
return 0;
}
2017-11-01 08:57:56 -04:00
for (
struct multiboot_tag *tag = (struct multiboot_tag*)(base + 8);
2017-11-01 08:57:56 -04:00
tag->type != MULTIBOOT_TAG_TYPE_END;
2017-11-01 12:01:02 -04:00
tag = (struct multiboot_tag*)((unsigned char*)tag + ((tag->size + 7) & ~7))
) {
2017-11-04 07:43:55 -04:00
if (!print_multiboot_tag(kinfo, tag)) {
return 0;
}
}
2017-11-04 07:07:04 -04:00
return 1;
}
2017-11-01 09:54:53 -04:00
2017-11-04 07:43:55 -04:00
unsigned char print_multiboot_tag(struct KernelMQ_Info *kinfo, const struct multiboot_tag *const tag)
{
switch (tag->type)
{
case MULTIBOOT_TAG_TYPE_CMDLINE:
2017-11-04 07:43:55 -04:00
return print_multiboot_tag_cmdline(kinfo, (struct multiboot_tag_string*)tag);
case MULTIBOOT_TAG_TYPE_MODULE:
2017-11-04 07:43:55 -04:00
return print_multiboot_tag_module(kinfo, (struct multiboot_tag_module*)tag);
case MULTIBOOT_TAG_TYPE_MMAP:
2017-11-04 07:43:55 -04:00
return print_multiboot_tag_mmap(kinfo, (struct multiboot_tag_mmap*)tag);
2017-11-01 08:57:56 -04:00
}
2017-11-04 07:43:55 -04:00
return 1;
2017-11-01 08:57:56 -04:00
}
2017-11-04 07:43:55 -04:00
unsigned char print_multiboot_tag_cmdline(struct KernelMQ_Info *kinfo, const struct multiboot_tag_string *const tag)
{
2017-11-08 03:33:24 -05:00
unsigned int slen = kstrlen(tag->string);
2017-11-04 07:43:55 -04:00
2017-11-08 03:33:24 -05:00
if (slen >= KERNELMQ_INFO_CMDLINE_SIZE_MAX) {
2017-11-04 07:43:55 -04:00
return 0;
}
2017-11-08 03:33:24 -05:00
kstrncpy(kinfo->cmdline, tag->string, slen);
2017-11-04 07:43:55 -04:00
return 1;
}
2017-11-04 07:43:55 -04:00
unsigned char print_multiboot_tag_module(struct KernelMQ_Info *kinfo, const struct multiboot_tag_module *const tag)
{
2017-11-04 07:43:55 -04:00
if (kinfo->modules_count >= KERNELMQ_INFO_MODULES_MAX) {
return 0;
}
2017-11-08 03:33:24 -05:00
unsigned int cmdline_slen = kstrlen(tag->cmdline);
2017-11-04 07:43:55 -04:00
2017-11-08 03:33:24 -05:00
if (cmdline_slen >= KERNELMQ_INFO_CMDLINE_SIZE_MAX) {
2017-11-04 07:43:55 -04:00
return 0;
}
struct KernelMQ_Info_Module *module = &kinfo->modules[kinfo->modules_count];
2017-11-08 03:33:24 -05:00
kstrncpy(module->cmdline, tag->cmdline, cmdline_slen);
2017-11-04 07:43:55 -04:00
module->base = tag->mod_start;
module->limit = tag->mod_end;
module->size = module->limit - module->base + 1;
++kinfo->modules_count;
2017-11-04 10:03:45 -04:00
kinfo->modules_total_size += module->size;
2017-11-04 07:43:55 -04:00
return 1;
}
2017-11-04 07:43:55 -04:00
unsigned char print_multiboot_tag_mmap(struct KernelMQ_Info *kinfo, const struct multiboot_tag_mmap *const tag)
{
for (
2017-11-02 04:53:14 -04:00
const multiboot_memory_map_t *mmap = tag->entries;
(unsigned char*)mmap < (unsigned char*)tag + tag->size;
mmap = (multiboot_memory_map_t*)((unsigned long) mmap + tag->entry_size)
) {
2017-11-04 07:43:55 -04:00
if (kinfo->areas_count >= KERNELMQ_INFO_AREAS_MAX) {
return 0;
}
struct KernelMQ_Info_Area *area = &kinfo->areas[kinfo->areas_count];
area->base = mmap->base;
area->size = mmap->size;
2017-11-04 07:43:55 -04:00
area->limit = area->base + area->size - 1;
area->is_available = mmap->type == MULTIBOOT_MEMORY_AVAILABLE;
++kinfo->areas_count;
}
2017-11-04 07:43:55 -04:00
return 1;
}