rulimine/common/menu.c

1014 lines
32 KiB
C
Raw Normal View History

2020-06-05 21:27:52 +03:00
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
2021-12-31 12:58:05 +03:00
#include <stdnoreturn.h>
#include <config.h>
2020-06-05 21:27:52 +03:00
#include <menu.h>
#include <lib/print.h>
2022-08-27 00:44:47 +03:00
#include <lib/misc.h>
2020-06-05 21:27:52 +03:00
#include <lib/libc.h>
#include <lib/config.h>
2020-09-02 10:55:56 +03:00
#include <lib/term.h>
#include <lib/gterm.h>
2020-10-27 10:09:27 +03:00
#include <lib/readline.h>
2020-11-02 11:20:34 +03:00
#include <lib/uri.h>
2020-09-20 13:03:44 +03:00
#include <mm/pmm.h>
#include <drivers/vbe.h>
#include <drivers/vga_textmode.h>
2021-10-09 14:32:57 +03:00
#include <console.h>
#include <protos/linux.h>
#include <protos/chainload.h>
#include <protos/chainload_next.h>
#include <protos/multiboot1.h>
#include <protos/multiboot2.h>
#include <protos/limine.h>
2020-06-05 21:27:52 +03:00
static char *menu_branding = NULL;
static char *menu_branding_colour = NULL;
2020-11-18 02:13:54 +03:00
#define EDITOR_MAX_BUFFER_SIZE 4096
2021-07-07 02:27:07 +03:00
#define TOK_KEY 0
#define TOK_EQUALS 1
#define TOK_VALUE 2
#define TOK_BADKEY 3
#define TOK_COMMENT 4
2020-11-18 02:13:54 +03:00
static size_t get_line_offset(size_t *displacement, size_t index, const char *buffer) {
size_t offset = 0;
size_t _index = index;
for (size_t i = 0; buffer[i]; i++) {
if (!_index--)
break;
if (buffer[i] == '\n')
offset = i + 1;
}
if (displacement)
*displacement = index - offset;
return offset;
}
static size_t get_line_length(size_t index, const char *buffer) {
size_t i;
for (i = index; buffer[i] != '\n' && buffer[i] != 0; i++);
return i - index;
}
static size_t get_next_line(size_t index, const char *buffer) {
if (buffer[index] == 0)
return index;
size_t displacement;
get_line_offset(&displacement, index, buffer);
while (buffer[index] != '\n') {
if (buffer[index] == 0)
return index;
index++;
}
index++;
2020-11-18 02:13:54 +03:00
size_t next_line_length = get_line_length(index, buffer);
if (displacement > next_line_length)
displacement = next_line_length;
return index + displacement;
}
static size_t get_prev_line(size_t index, const char *buffer) {
size_t offset, displacement, prev_line_offset, prev_line_length;
offset = get_line_offset(&displacement, index, buffer);
if (offset) {
prev_line_offset = get_line_offset(NULL, offset - 1, buffer);
prev_line_length = get_line_length(prev_line_offset, buffer);
if (displacement > prev_line_length)
displacement = prev_line_length;
return prev_line_offset + displacement;
}
return offset;
}
2021-07-07 02:27:07 +03:00
static const char *VALID_KEYS[] = {
2021-08-17 01:58:02 +03:00
"COMMENT",
2021-07-07 02:27:07 +03:00
"PROTOCOL",
"CMDLINE",
"KERNEL_CMDLINE",
"KERNEL_PATH",
"INITRD_PATH",
2021-07-07 02:27:07 +03:00
"MODULE_PATH",
"MODULE_STRING",
2022-03-16 08:49:41 +03:00
"MODULE_CMDLINE",
2021-07-07 02:27:07 +03:00
"RESOLUTION",
2021-08-17 01:58:02 +03:00
"TEXTMODE",
2021-07-07 02:27:07 +03:00
"KASLR",
"DRIVE",
"PARTITION",
"IMAGE_PATH",
"TERM_CONFIG_OVERRIDE",
2022-10-06 06:36:02 +03:00
"TERM_PALETTE",
"TERM_PALETTE_BRIGHT",
"TERM_BACKGROUND",
"TERM_FOREGROUND",
"TERM_WALLPAPER",
"TERM_MARGIN",
"TERM_MARGIN_GRADIENT",
"TERM_WALLPAPER_STYLE",
"TERM_BACKDROP",
"TERM_FONT_SIZE",
"TERM_FONT",
"TERM_FONT_SPACING",
"TERM_FONT_SCALE",
2021-07-07 02:27:07 +03:00
NULL
};
static bool validation_enabled = true;
static bool invalid_syntax = false;
static int validate_line(const char *buffer) {
if (!validation_enabled) return TOK_KEY;
if (buffer[0] == '#')
return TOK_COMMENT;
2021-07-07 02:27:07 +03:00
char keybuf[64];
size_t i;
2021-07-07 02:27:07 +03:00
for (i = 0; buffer[i] && i < 64; i++) {
if (buffer[i] == '=') goto found_equals;
keybuf[i] = buffer[i];
}
fail:
if (i < 64) keybuf[i] = 0;
if (keybuf[0] == '\n' || (!keybuf[0] && buffer[0] != '=')) return TOK_KEY; // blank line is valid
2021-07-07 02:56:01 +03:00
invalid_syntax = true;
2021-07-07 02:27:07 +03:00
return TOK_BADKEY;
found_equals:
if (i < 64) keybuf[i] = 0;
for (i = 0; VALID_KEYS[i]; i++) {
if (!strcmp(keybuf, VALID_KEYS[i])) {
return TOK_KEY;
}
}
goto fail;
}
2021-09-25 05:52:18 +03:00
static void putchar_tokencol(int type, char c) {
switch (type) {
case TOK_KEY:
print("\e[36m%c\e[0m", c);
break;
case TOK_EQUALS:
print("\e[32m%c\e[0m", c);
break;
default:
case TOK_VALUE:
print("\e[39m%c\e[0m", c);
break;
case TOK_BADKEY:
print("\e[31m%c\e[0m", c);
break;
case TOK_COMMENT:
print("\e[33m%c\e[0m", c);
break;
}
}
static bool editor_no_term_reset = false;
2021-12-12 00:22:48 +03:00
char *config_entry_editor(const char *title, const char *orig_entry) {
FOR_TERM(TERM->autoflush = false);
2021-12-12 00:22:48 +03:00
FOR_TERM(TERM->cursor_enabled = true);
2021-12-12 00:22:48 +03:00
print("\e[2J\e[H");
2021-12-12 00:22:48 +03:00
size_t cursor_offset = 0;
size_t entry_size = strlen(orig_entry);
size_t _window_size = terms[0]->rows - 8;
size_t window_offset = 0;
size_t line_size = terms[0]->cols - 2;
2020-11-18 02:13:54 +03:00
bool display_overflow_error = false;
2020-11-18 02:13:54 +03:00
// Skip leading newlines
while (*orig_entry == '\n') {
orig_entry++;
entry_size--;
}
2021-07-07 02:27:07 +03:00
if (entry_size >= EDITOR_MAX_BUFFER_SIZE) {
2021-12-11 21:58:00 +03:00
panic(true, "Entry is too big to be edited.");
2021-07-07 02:27:07 +03:00
}
2020-11-18 02:13:54 +03:00
2021-07-07 02:27:07 +03:00
bool syntax_highlighting_enabled = true;
char *syntax_highlighting_enabled_config = config_get_value(NULL, 0, "EDITOR_HIGHLIGHTING");
2022-04-22 17:42:30 +03:00
if (syntax_highlighting_enabled_config != NULL
&& strcmp(syntax_highlighting_enabled_config, "no") == 0) {
syntax_highlighting_enabled = false;
}
2021-07-07 02:27:07 +03:00
validation_enabled = true;
char *validation_enabled_config = config_get_value(NULL, 0, "EDITOR_VALIDATION");
2022-04-22 17:42:30 +03:00
if (validation_enabled_config != NULL
&& strcmp(validation_enabled_config, "no") == 0) {
validation_enabled = false;
}
char *buffer = ext_mem_alloc(EDITOR_MAX_BUFFER_SIZE);
2020-11-18 02:13:54 +03:00
memcpy(buffer, orig_entry, entry_size);
buffer[entry_size] = 0;
refresh:
2021-07-07 02:56:01 +03:00
invalid_syntax = false;
print("\e[2J\e[H");
FOR_TERM(TERM->cursor_enabled = false);
2021-07-07 05:23:34 +03:00
{
size_t x, y;
2021-07-07 05:23:34 +03:00
print("\n");
terms[0]->get_cursor_pos(terms[0], &x, &y);
set_cursor_pos_helper(terms[0]->cols / 2 - DIV_ROUNDUP(strlen(menu_branding), 2), y);
print("\e[3%sm%s\e[37m", menu_branding_colour, menu_branding);
2021-07-07 05:23:34 +03:00
print("\n\n");
}
2021-07-07 02:27:07 +03:00
print(" \e[32mESC\e[0m Discard and Exit \e[32mF10\e[0m Boot\n\n");
2020-11-18 02:13:54 +03:00
print(serial ? "/" : "");
for (size_t i = 0; i < terms[0]->cols - 2; i++) {
switch (i) {
case 1: case 2: case 3:
if (window_offset > 0) {
print(serial ? "^" : "");
break;
}
// FALLTHRU
2021-07-07 02:56:01 +03:00
default: {
size_t title_length = strlen(title);
if (i == (terms[0]->cols / 2) - DIV_ROUNDUP(title_length, 2) - 1) {
2021-07-07 02:56:01 +03:00
print("%s", title);
i += title_length - 1;
2021-07-07 02:27:07 +03:00
} else {
print(serial ? "-" : "");
2021-07-07 02:27:07 +03:00
}
2021-07-07 02:56:01 +03:00
}
}
}
size_t tmpx, tmpy;
terms[0]->get_cursor_pos(terms[0], &tmpx, &tmpy);
print(serial ? "\\" : "");
set_cursor_pos_helper(0, tmpy + 1);
print(serial ? "|" : "");
2020-11-18 02:13:54 +03:00
size_t cursor_x, cursor_y;
size_t current_line = 0, line_offset = 0, window_size = _window_size;
bool printed_cursor = false;
2021-09-25 05:52:18 +03:00
bool printed_early = false;
2021-07-07 02:27:07 +03:00
int token_type = validate_line(buffer);
2020-11-18 02:13:54 +03:00
for (size_t i = 0; ; i++) {
2021-07-07 02:27:07 +03:00
// newline
if (buffer[i] == '\n'
&& current_line < window_offset + window_size
&& current_line >= window_offset) {
size_t x, y;
terms[0]->get_cursor_pos(terms[0], &x, &y);
if (i == cursor_offset) {
cursor_x = x;
cursor_y = y;
printed_cursor = true;
}
set_cursor_pos_helper(terms[0]->cols - 1, y);
if (current_line == window_offset + window_size - 1) {
terms[0]->get_cursor_pos(terms[0], &tmpx, &tmpy);
print(serial ? "|" : "");
set_cursor_pos_helper(0, tmpy + 1);
print(serial ? "\\" : "");
} else {
terms[0]->get_cursor_pos(terms[0], &tmpx, &tmpy);
print(serial ? "|" : "");
set_cursor_pos_helper(0, tmpy + 1);
print(serial ? "|" : "");
}
line_offset = 0;
2021-09-25 05:52:18 +03:00
token_type = validate_line(buffer + i + 1);
current_line++;
continue;
}
2021-09-25 05:52:18 +03:00
// switch to token type 1 if equals sign
if (token_type == TOK_KEY && buffer[i] == '=') token_type = TOK_EQUALS;
if (buffer[i] != 0 && line_offset % line_size == line_size - 1) {
if (current_line < window_offset + window_size
&& current_line >= window_offset) {
if (i == cursor_offset) {
terms[0]->get_cursor_pos(terms[0], &cursor_x, &cursor_y);
printed_cursor = true;
}
2021-09-25 05:52:18 +03:00
if (syntax_highlighting_enabled) {
putchar_tokencol(token_type, buffer[i]);
} else {
print("%c", buffer[i]);
}
printed_early = true;
size_t x, y;
terms[0]->get_cursor_pos(terms[0], &x, &y);
if (y == terms[0]->rows - 3) {
print(serial ? ">" : "");
set_cursor_pos_helper(0, y + 1);
print(serial ? "\\" : "");
} else {
print(serial ? ">" : "");
set_cursor_pos_helper(0, y + 1);
print(serial ? "<" : "");
}
2021-09-25 05:52:18 +03:00
}
window_size--;
}
if (i == cursor_offset
&& current_line < window_offset + window_size
&& current_line >= window_offset
&& !printed_cursor) {
terms[0]->get_cursor_pos(terms[0], &cursor_x, &cursor_y);
printed_cursor = true;
}
if (buffer[i] == 0 || current_line >= window_offset + window_size) {
if (!printed_cursor) {
if (i <= cursor_offset) {
window_offset++;
goto refresh;
}
if (i > cursor_offset) {
window_offset--;
goto refresh;
}
}
2020-11-18 02:13:54 +03:00
break;
}
if (buffer[i] == '\n') {
line_offset = 0;
2021-09-25 05:52:18 +03:00
token_type = validate_line(buffer + i + 1);
current_line++;
continue;
}
if (current_line >= window_offset) {
line_offset++;
2021-07-07 02:27:07 +03:00
// syntax highlighting
2021-09-25 05:52:18 +03:00
if (!printed_early) {
if (syntax_highlighting_enabled) {
putchar_tokencol(token_type, buffer[i]);
} else {
print("%c", buffer[i]);
}
}
printed_early = false;
// switch to token type 2 after equals sign
if (token_type == TOK_EQUALS) token_type = TOK_VALUE;
}
}
2021-07-07 02:27:07 +03:00
// syntax error alert
if (validation_enabled) {
size_t x, y;
terms[0]->get_cursor_pos(terms[0], &x, &y);
set_cursor_pos_helper(0, terms[0]->rows - 1);
FOR_TERM(TERM->scroll_enabled = false);
2021-07-07 02:27:07 +03:00
if (invalid_syntax) {
print("\e[31mConfiguration is INVALID.\e[0m");
} else {
print("\e[32mConfiguration is valid.\e[0m");
}
FOR_TERM(TERM->scroll_enabled = true);
set_cursor_pos_helper(x, y);
2021-07-07 02:27:07 +03:00
}
2020-11-18 02:13:54 +03:00
if (current_line - window_offset < window_size) {
size_t x, y;
for (size_t i = 0; i < (window_size - (current_line - window_offset)) - 1; i++) {
terms[0]->get_cursor_pos(terms[0], &x, &y);
set_cursor_pos_helper(terms[0]->cols - 1, y);
print(serial ? "|" : "");
set_cursor_pos_helper(0, y + 1);
print(serial ? "|" : "");
}
terms[0]->get_cursor_pos(terms[0], &x, &y);
set_cursor_pos_helper(terms[0]->cols - 1, y);
print(serial ? "|" : "");
set_cursor_pos_helper(0, y + 1);
print(serial ? "\\" : "");
2020-11-18 02:13:54 +03:00
}
for (size_t i = 0; i < terms[0]->cols - 2; i++) {
switch (i) {
case 1: case 2: case 3:
if (current_line - window_offset >= window_size) {
print(serial ? "v" : "");
break;
}
// FALLTHRU
default:
print(serial ? "-" : "");
}
}
terms[0]->get_cursor_pos(terms[0], &tmpx, &tmpy);
print(serial ? "/" : "");
set_cursor_pos_helper(0, tmpy + 1);
2020-11-18 02:13:54 +03:00
if (display_overflow_error) {
FOR_TERM(TERM->scroll_enabled = false);
2021-07-07 05:23:34 +03:00
print("\e[31mText buffer not big enough, delete something instead.");
FOR_TERM(TERM->scroll_enabled = true);
display_overflow_error = false;
}
2020-11-18 02:13:54 +03:00
// Hack to redraw the cursor
set_cursor_pos_helper(cursor_x, cursor_y);
FOR_TERM(TERM->cursor_enabled = true);
2020-11-18 02:13:54 +03:00
FOR_TERM(TERM->double_buffer_flush(TERM));
2020-11-20 21:55:18 +03:00
2020-11-18 02:13:54 +03:00
int c = getchar();
2022-06-19 13:57:05 +03:00
size_t buffer_len = strlen(buffer);
2020-11-18 02:13:54 +03:00
switch (c) {
case GETCHAR_CURSOR_DOWN:
cursor_offset = get_next_line(cursor_offset, buffer);
break;
case GETCHAR_CURSOR_UP:
cursor_offset = get_prev_line(cursor_offset, buffer);
break;
case GETCHAR_CURSOR_LEFT:
if (cursor_offset) {
cursor_offset--;
}
break;
case GETCHAR_CURSOR_RIGHT:
2022-06-19 13:57:05 +03:00
if (cursor_offset < buffer_len) {
2020-11-18 02:13:54 +03:00
cursor_offset++;
}
break;
case GETCHAR_HOME: {
size_t displacement;
get_line_offset(&displacement, cursor_offset, buffer);
cursor_offset -= displacement;
break;
}
case GETCHAR_END: {
cursor_offset += get_line_length(cursor_offset, buffer);
break;
}
2020-11-18 02:13:54 +03:00
case '\b':
if (cursor_offset) {
cursor_offset--;
case GETCHAR_DELETE:
for (size_t i = cursor_offset; ; i++) {
buffer[i] = buffer[i+1];
if (!buffer[i])
break;
}
}
break;
case GETCHAR_F10:
editor_no_term_reset ? editor_no_term_reset = false : reset_term();
2020-11-18 02:13:54 +03:00
return buffer;
case GETCHAR_ESCAPE:
pmm_free(buffer, EDITOR_MAX_BUFFER_SIZE);
editor_no_term_reset ? editor_no_term_reset = false : reset_term();
return NULL;
2020-11-18 02:13:54 +03:00
default:
2022-06-19 13:57:05 +03:00
if (buffer_len < EDITOR_MAX_BUFFER_SIZE - 1) {
if (isprint(c) || c == '\n') {
2022-06-19 13:57:05 +03:00
for (size_t i = buffer_len; ; i--) {
buffer[i+1] = buffer[i];
if (i == cursor_offset)
break;
}
buffer[cursor_offset++] = c;
2020-11-18 02:13:54 +03:00
}
} else {
display_overflow_error = true;
2020-11-18 02:13:54 +03:00
}
break;
}
goto refresh;
}
static size_t print_tree(size_t offset, size_t window, const char *shift, size_t level, size_t base_index, size_t selected_entry,
struct menu_entry *current_entry,
2023-07-28 06:50:17 +03:00
struct menu_entry **selected_menu_entry,
size_t *max_len) {
size_t max_entries = 0;
bool no_print = false;
size_t dummy_max_len = 0;
if (max_len == NULL) {
max_len = &dummy_max_len;
}
if (!level) {
*max_len = 0;
}
if (shift == NULL) {
no_print = true;
}
for (;;) {
size_t cur_len = 0;
if (current_entry == NULL)
break;
if (!no_print && base_index + max_entries < offset) {
goto skip_line;
}
if (!no_print && base_index + max_entries >= offset + window) {
goto skip_line;
}
if (!no_print) print("%s", shift);
2020-11-17 02:50:26 +03:00
if (level) {
2021-08-17 01:00:23 +03:00
for (size_t i = level - 1; i > 0; i--) {
2020-11-17 02:50:26 +03:00
struct menu_entry *actual_parent = current_entry;
for (size_t j = 0; j < i; j++)
2020-11-17 02:50:26 +03:00
actual_parent = actual_parent->parent;
if (actual_parent->next != NULL) {
if (!no_print) print(serial ? " |" : "");
} else {
if (!no_print) print(" ");
}
2023-07-28 06:50:17 +03:00
cur_len += 2;
}
if (current_entry->next == NULL) {
if (!no_print) print(serial ? " `" : "");
} else {
if (!no_print) print(serial ? " |" : "");
2020-11-17 02:50:26 +03:00
}
2023-07-28 06:50:17 +03:00
cur_len += 2;
2020-11-17 02:50:26 +03:00
}
if (current_entry->sub) {
if (!no_print) print(current_entry->expanded ? "[-]" : "[+]");
} else if (level) {
if (!no_print) print(serial ? "-> " : "─> ");
} else {
if (!no_print) print(" ");
}
2023-07-28 06:50:17 +03:00
cur_len += 3;
if (base_index + max_entries == selected_entry) {
*selected_menu_entry = current_entry;
if (!no_print) print("\e[7m");
}
if (!no_print) print(" %s \e[27m\n", current_entry->name);
2023-07-28 06:50:17 +03:00
cur_len += 1 + strlen(current_entry->name) + 1;
skip_line:
if (current_entry->sub && current_entry->expanded) {
max_entries += print_tree(offset, window, shift, level + 1, base_index + max_entries + 1,
selected_entry,
current_entry->sub,
2023-07-28 06:50:17 +03:00
selected_menu_entry,
max_len);
}
max_entries++;
current_entry = current_entry->next;
2023-07-28 06:50:17 +03:00
if (cur_len > *max_len) {
*max_len = cur_len;
}
}
return max_entries;
}
2020-06-05 21:27:52 +03:00
static struct memmap_entry *rewound_memmap = NULL;
2021-12-11 21:58:00 +03:00
static size_t rewound_memmap_entries = 0;
2022-09-17 16:09:08 +03:00
static no_unwind uint8_t *rewound_data;
#if defined (BIOS)
2022-09-17 16:09:08 +03:00
static no_unwind uint8_t *rewound_s2_data;
2021-12-19 03:08:34 +03:00
#endif
2021-12-11 21:58:00 +03:00
2021-12-12 20:40:27 +03:00
extern symbol data_begin;
extern symbol data_end;
#if defined (BIOS)
2021-12-19 03:08:34 +03:00
extern symbol s2_data_begin;
extern symbol s2_data_end;
#endif
2021-12-11 21:58:00 +03:00
static void menu_init_term(void) {
// If there is GRAPHICS config key and the value is "yes", enable graphics
#if defined (BIOS)
char *graphics = config_get_value(NULL, 0, "GRAPHICS");
#elif defined (UEFI)
char *graphics = "yes";
#endif
if (graphics == NULL || strcmp(graphics, "no") != 0) {
size_t req_width = 0, req_height = 0, req_bpp = 0;
char *menu_resolution = config_get_value(NULL, 0, "INTERFACE_RESOLUTION");
if (menu_resolution != NULL)
parse_resolution(&req_width, &req_height, &req_bpp, menu_resolution);
if (!quiet && !gterm_init(NULL, NULL, NULL, req_width, req_height)) {
2022-10-04 09:21:59 +03:00
#if defined (BIOS)
vga_textmode_init(true);
#elif defined (UEFI)
term_fallback();
2022-10-04 09:21:59 +03:00
#endif
}
} else {
#if defined (BIOS)
if (!quiet) {
vga_textmode_init(true);
}
#endif
}
}
noreturn void _menu(bool first_run) {
2021-12-12 20:40:27 +03:00
size_t data_size = (uintptr_t)data_end - (uintptr_t)data_begin;
#if defined (BIOS)
2021-12-19 03:08:34 +03:00
size_t s2_data_size = (uintptr_t)s2_data_end - (uintptr_t)s2_data_begin;
#endif
2021-12-11 21:58:00 +03:00
if (rewound_memmap != NULL) {
2021-12-12 20:40:27 +03:00
memcpy(data_begin, rewound_data, data_size);
#if defined (BIOS)
2021-12-19 03:08:34 +03:00
memcpy(s2_data_begin, rewound_s2_data, s2_data_size);
#endif
memcpy(memmap, rewound_memmap, rewound_memmap_entries * sizeof(struct memmap_entry));
2021-12-11 21:58:00 +03:00
memmap_entries = rewound_memmap_entries;
} else {
2021-12-12 20:40:27 +03:00
rewound_data = ext_mem_alloc(data_size);
#if defined (BIOS)
2021-12-19 03:08:34 +03:00
rewound_s2_data = ext_mem_alloc(s2_data_size);
#endif
rewound_memmap = ext_mem_alloc(256 * sizeof(struct memmap_entry));
memcpy(rewound_memmap, memmap, memmap_entries * sizeof(struct memmap_entry));
2021-12-11 21:58:00 +03:00
rewound_memmap_entries = memmap_entries;
2021-12-12 20:40:27 +03:00
memcpy(rewound_data, data_begin, data_size);
#if defined (BIOS)
2021-12-19 03:08:34 +03:00
memcpy(rewound_s2_data, s2_data_begin, s2_data_size);
#endif
2021-12-11 21:58:00 +03:00
}
term_fallback();
2021-12-12 20:48:36 +03:00
if (bad_config == false) {
#if defined (UEFI)
if (init_config_disk(boot_volume)) {
#endif
2021-12-11 21:58:00 +03:00
volume_iterate_parts(boot_volume,
if (!init_config_disk(_PART)) {
boot_volume = _PART;
break;
}
);
#if defined (UEFI)
}
#endif
2021-12-11 21:58:00 +03:00
}
char *quiet_str = config_get_value(NULL, 0, "QUIET");
quiet = quiet_str != NULL && strcmp(quiet_str, "yes") == 0;
char *verbose_str = config_get_value(NULL, 0, "VERBOSE");
verbose = verbose_str != NULL && strcmp(verbose_str, "yes") == 0;
char *serial_str = config_get_value(NULL, 0, "SERIAL");
serial = serial_str != NULL && strcmp(serial_str, "yes") == 0;
2022-09-11 21:47:57 +03:00
char *hash_mismatch_panic_str = config_get_value(NULL, 0, "HASH_MISMATCH_PANIC");
hash_mismatch_panic = hash_mismatch_panic_str == NULL || strcmp(hash_mismatch_panic_str, "yes") == 0;
char *randomise_mem_str = config_get_value(NULL, 0, "RANDOMISE_MEMORY");
if (randomise_mem_str == NULL)
randomise_mem_str = config_get_value(NULL, 0, "RANDOMIZE_MEMORY");
bool randomise_mem = randomise_mem_str != NULL && strcmp(randomise_mem_str, "yes") == 0;
if (randomise_mem) {
pmm_randomise_memory();
}
char *editor_enabled_str = config_get_value(NULL, 0, "EDITOR_ENABLED");
if (editor_enabled_str != NULL) {
editor_enabled = strcmp(editor_enabled_str, "yes") == 0;
}
2022-03-22 06:39:51 +03:00
menu_branding = config_get_value(NULL, 0, "INTERFACE_BRANDING");
if (menu_branding == NULL)
menu_branding = "Limine " LIMINE_VERSION;
2022-03-22 06:39:51 +03:00
menu_branding_colour = config_get_value(NULL, 0, "INTERFACE_BRANDING_COLOUR");
if (menu_branding_colour == NULL)
2022-03-22 06:39:51 +03:00
menu_branding_colour = config_get_value(NULL, 0, "INTERFACE_BRANDING_COLOR");
if (menu_branding_colour == NULL)
menu_branding_colour = "6";
bool skip_timeout = false;
struct menu_entry *selected_menu_entry = NULL;
size_t selected_entry = 0;
char *default_entry = config_get_value(NULL, 0, "DEFAULT_ENTRY");
if (default_entry != NULL) {
selected_entry = strtoui(default_entry, NULL, 10);
if (selected_entry)
selected_entry--;
}
size_t timeout = 5;
char *timeout_config = config_get_value(NULL, 0, "TIMEOUT");
if (timeout_config != NULL) {
if (!strcmp(timeout_config, "no"))
skip_timeout = true;
else
timeout = strtoui(timeout_config, NULL, 10);
}
if (!first_run) {
skip_timeout = true;
}
if (!skip_timeout && !timeout) {
// Use print tree to load up selected_menu_entry and determine if the
// default entry is valid.
2023-07-28 06:50:17 +03:00
print_tree(0, 0, NULL, 0, 0, selected_entry, menu_tree, &selected_menu_entry, NULL);
if (selected_menu_entry == NULL || selected_menu_entry->sub != NULL) {
quiet = false;
print("Default entry is not valid or directory, booting to menu.\n");
skip_timeout = true;
} else {
goto autoboot;
}
}
menu_init_term();
2020-06-05 21:27:52 +03:00
size_t tree_offset = 0;
2021-10-09 14:32:57 +03:00
refresh:
if (selected_entry >= tree_offset + terms[0]->rows - 10) {
tree_offset = selected_entry - (terms[0]->rows - 11);
}
if (selected_entry < tree_offset) {
tree_offset = selected_entry;
}
FOR_TERM(TERM->autoflush = false);
2020-11-20 21:55:18 +03:00
FOR_TERM(TERM->cursor_enabled = false);
print("\e[2J\e[H");
2021-07-07 05:23:34 +03:00
{
size_t x, y;
2021-07-07 05:23:34 +03:00
print("\n");
terms[0]->get_cursor_pos(terms[0], &x, &y);
set_cursor_pos_helper(terms[0]->cols / 2 - DIV_ROUNDUP(strlen(menu_branding), 2), y);
print("\e[3%sm%s\e[37m", menu_branding_colour, menu_branding);
2021-07-07 05:23:34 +03:00
print("\n\n\n\n");
}
2020-06-05 21:27:52 +03:00
2021-12-12 00:22:48 +03:00
while (menu_tree == NULL) {
if (quiet) {
quiet = false;
menu_init_term();
FOR_TERM(TERM->autoflush = false);
FOR_TERM(TERM->cursor_enabled = false);
}
print("Config file %s.\n\n", config_ready ? "contains no valid entries" : "not found");
print("For information on the format of Limine config entries, consult CONFIG.md in\n");
print("the root of the Limine source repository.\n\n");
2021-12-12 00:22:48 +03:00
print("Press a key to enter the Limine console...");
FOR_TERM(TERM->double_buffer_flush(TERM));
getchar();
2021-12-12 00:22:48 +03:00
reset_term();
console();
}
2021-07-08 17:07:33 +03:00
{ // Draw box around boot menu
size_t x, y;
terms[0]->get_cursor_pos(terms[0], &x, &y);
2021-07-08 17:07:33 +03:00
print(serial ? "/" : "");
for (size_t i = 0; i < terms[0]->cols - 2; i++) {
switch (i) {
case 1: case 2: case 3:
if (tree_offset > 0) {
print(serial ? "^" : ""); break;
}
// FALLTHRU
default:
print(serial ? "-" : ""); break;
}
2021-07-08 17:07:33 +03:00
}
print(serial ? "\\" : "");
2021-07-08 17:07:33 +03:00
for (size_t i = y + 1; i < terms[0]->rows - 2; i++) {
set_cursor_pos_helper(0, i);
print(serial ? "|" : "");
set_cursor_pos_helper(terms[0]->cols - 1, i);
print(serial ? "|" : "");
2021-07-08 17:07:33 +03:00
}
set_cursor_pos_helper(0, terms[0]->rows - 2);
2021-07-08 17:07:33 +03:00
print(serial ? "\\" : "");
for (size_t i = 0; i < terms[0]->cols - 2; i++) {
print(serial ? "-" : "");
2021-07-08 17:07:33 +03:00
}
print(serial ? "/" : "");
2021-07-08 17:07:33 +03:00
set_cursor_pos_helper(x, y + 2);
2021-07-08 17:07:33 +03:00
}
2023-07-28 06:50:17 +03:00
size_t max_tree_len;
print_tree(tree_offset, terms[0]->rows - 10, NULL, 0, 0, selected_entry, menu_tree,
&selected_menu_entry, &max_tree_len);
size_t tree_prefix_len = terms[0]->cols / 2 - DIV_ROUNDUP(max_tree_len, 2);
2023-07-28 06:50:17 +03:00
if (!serial) tree_prefix_len += strlen("") - 1;
char *tree_prefix = ext_mem_alloc(tree_prefix_len);
memset(tree_prefix, ' ', tree_prefix_len);
memcpy(tree_prefix, serial ? "|" : "", strlen(serial ? "|" : ""));
size_t max_entries = print_tree(tree_offset, terms[0]->rows - 10, tree_prefix, 0, 0, selected_entry, menu_tree,
&selected_menu_entry, NULL);
pmm_free(tree_prefix, tree_prefix_len);
2020-06-05 21:27:52 +03:00
2021-07-07 02:27:07 +03:00
{
size_t x, y;
terms[0]->get_cursor_pos(terms[0], &x, &y);
if (tree_offset + (terms[0]->rows - 10) < max_entries) {
set_cursor_pos_helper(2, terms[0]->rows - 2);
print(serial ? "vvv" : "↓↓↓");
}
set_cursor_pos_helper(0, 3);
2021-07-07 02:27:07 +03:00
if (editor_enabled && selected_menu_entry->sub == NULL) {
2021-07-07 05:23:34 +03:00
print(" \e[32mARROWS\e[0m Select \e[32mENTER\e[0m Boot \e[32mE\e[0m Edit");
2021-07-07 02:27:07 +03:00
} else {
print(" \e[32mARROWS\e[0m Select \e[32mENTER\e[0m %s",
selected_menu_entry->expanded ? "Collapse" : "Expand");
2021-07-07 02:27:07 +03:00
}
set_cursor_pos_helper(terms[0]->cols - 13, 3);
2021-10-09 14:32:57 +03:00
print("\e[32mC\e[0m Console");
set_cursor_pos_helper(x, y);
2021-07-07 02:27:07 +03:00
}
if (selected_menu_entry->sub != NULL)
skip_timeout = true;
int c;
2020-06-05 21:27:52 +03:00
if (skip_timeout == false) {
print("\n\n");
for (size_t i = timeout; i; i--) {
set_cursor_pos_helper(0, terms[0]->rows - 1);
FOR_TERM(TERM->scroll_enabled = false);
print("\e[2K\e[32mBooting automatically in \e[92m%u\e[32m, press any key to stop the countdown...\e[0m", i);
FOR_TERM(TERM->scroll_enabled = true);
FOR_TERM(TERM->double_buffer_flush(TERM));
2021-03-04 15:48:31 +03:00
if ((c = pit_sleep_and_quit_on_keypress(1))) {
2020-06-05 21:27:52 +03:00
skip_timeout = true;
if (quiet) {
quiet = false;
menu_init_term();
goto timeout_aborted;
}
print("\e[2K");
FOR_TERM(TERM->double_buffer_flush(TERM));
goto timeout_aborted;
2020-06-05 21:27:52 +03:00
}
}
goto autoboot;
}
set_cursor_pos_helper(0, terms[0]->rows - 1);
if (selected_menu_entry->comment != NULL) {
FOR_TERM(TERM->scroll_enabled = false);
print("\e[36m%s\e[0m", selected_menu_entry->comment);
FOR_TERM(TERM->scroll_enabled = true);
}
2021-07-08 17:57:40 +03:00
FOR_TERM(TERM->double_buffer_flush(TERM));
2020-11-20 21:55:18 +03:00
2020-06-05 21:27:52 +03:00
for (;;) {
c = getchar();
timeout_aborted:
2020-06-05 21:27:52 +03:00
switch (c) {
case '1': case '2': case '3': case '4': case '5':
case '6': case '7': case '8': case '9': {
int ent = (c - '0') - 1;
if (ent < (int)max_entries) {
selected_entry = ent;
print_tree(0, 0, NULL, 0, 0, selected_entry, menu_tree,
2023-07-28 06:50:17 +03:00
&selected_menu_entry, NULL);
goto autoboot;
}
goto refresh;
}
2022-02-05 00:30:53 +03:00
case GETCHAR_HOME:
selected_entry = 0;
goto refresh;
case GETCHAR_END:
selected_entry = max_entries - 1;
goto refresh;
2020-06-05 21:27:52 +03:00
case GETCHAR_CURSOR_UP:
if (selected_entry == 0)
2020-06-05 21:27:52 +03:00
selected_entry = max_entries - 1;
else
selected_entry--;
2020-06-05 21:27:52 +03:00
goto refresh;
case GETCHAR_CURSOR_DOWN:
if (++selected_entry == max_entries)
selected_entry = 0;
goto refresh;
case GETCHAR_CURSOR_RIGHT:
case '\n':
case ' ':
2020-06-05 21:27:52 +03:00
autoboot:
if (selected_menu_entry->sub != NULL) {
selected_menu_entry->expanded = !selected_menu_entry->expanded;
goto refresh;
}
2022-10-04 20:10:38 +03:00
if (!quiet) {
if (term_backend == FALLBACK) {
if (!gterm_init(NULL, NULL, NULL, 0, 0)) {
#if defined (BIOS)
2022-10-04 20:10:38 +03:00
vga_textmode_init(true);
2022-10-04 09:21:59 +03:00
#elif defined (UEFI)
term_fallback();
#endif
2022-10-04 20:10:38 +03:00
}
} else {
reset_term();
2022-10-04 09:21:59 +03:00
}
}
2021-12-12 00:22:48 +03:00
boot(selected_menu_entry->body);
case 'e':
case 'E': {
2021-07-07 02:27:07 +03:00
if (editor_enabled) {
if (selected_menu_entry->sub != NULL)
goto refresh;
editor_no_term_reset = true;
2021-07-07 02:27:07 +03:00
char *new_body = config_entry_editor(selected_menu_entry->name, selected_menu_entry->body);
if (new_body == NULL)
goto refresh;
selected_menu_entry->body = new_body;
goto autoboot;
}
2021-10-09 14:32:57 +03:00
break;
}
case 'c':
case 'C': {
2021-10-09 14:32:57 +03:00
reset_term();
console();
goto refresh;
2020-11-18 02:13:54 +03:00
}
2020-06-05 21:27:52 +03:00
}
}
2021-12-12 00:22:48 +03:00
}
2021-12-31 12:58:05 +03:00
noreturn void boot(char *config) {
2021-12-12 00:22:48 +03:00
char *cmdline = config_get_value(config, 0, "KERNEL_CMDLINE");
if (!cmdline) {
cmdline = config_get_value(config, 0, "CMDLINE");
}
if (!cmdline) {
cmdline = "";
}
char *proto = config_get_value(config, 0, "PROTOCOL");
if (proto == NULL) {
2022-06-15 03:12:27 +03:00
panic(true, "Boot protocol not specified for this entry");
}
if (!strcmp(proto, "stivale1") || !strcmp(proto, "stivale") || !strcmp(proto, "stivale2")) {
quiet = false;
2022-06-15 03:12:27 +03:00
print("The stivale and stivale2 protocols are no longer supported as of Limine 4.x\n");
print("Please notify kernel maintainers to move to the Limine boot protocol or\n");
print("roll back to Limine 3.x.\n\n");
} else if (!strcmp(proto, "limine")) {
2022-06-15 03:12:27 +03:00
limine_load(config, cmdline);
} else if (!strcmp(proto, "linux")) {
#if defined (__x86_64__) || defined (__i386__)
2022-06-15 03:12:27 +03:00
linux_load(config, cmdline);
#else
quiet = false;
print("TODO: Linux is not available on aarch64 or riscv64.\n\n");
#endif
} else if (!strcmp(proto, "multiboot1") || !strcmp(proto, "multiboot")) {
#if defined (__x86_64__) || defined (__i386__)
2022-06-15 03:12:27 +03:00
multiboot1_load(config, cmdline);
#else
quiet = false;
print("Multiboot 1 is not available on aarch64 or riscv64.\n\n");
#endif
} else if (!strcmp(proto, "multiboot2")) {
#if defined (__x86_64__) || defined (__i386__)
2022-06-15 03:12:27 +03:00
multiboot2_load(config, cmdline);
#else
quiet = false;
print("Multiboot 2 is not available on aarch64 or riscv64.\n\n");
#endif
} else if (!strcmp(proto, "chainload_next")) {
chainload_next(config, cmdline);
} else if (!strcmp(proto, "chainload")) {
chainload(config, cmdline);
}
panic(true, "Unsupported protocol specified for kernel.");
2020-06-05 21:27:52 +03:00
}