/* rescue_reader.c - rescue mode reader */ /* * VasEBoot -- GRand Unified Bootloader * Copyright (C) 2009,2010 Free Software Foundation, Inc. * * VasEBoot is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * VasEBoot is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with VasEBoot. If not, see . */ #include #include #include #include #include #include #define VasEBoot_RESCUE_BUF_SIZE 256 static char linebuf[VasEBoot_RESCUE_BUF_SIZE]; /* Prompt to input a command and read the line. */ static VasEBoot_err_t VasEBoot_rescue_read_line (char **line, int cont, void *data __attribute__ ((unused))) { int c; int pos = 0; char str[4]; VasEBoot_printf ((cont) ? "> " : "VasEBoot rescue> "); VasEBoot_memset (linebuf, 0, VasEBoot_RESCUE_BUF_SIZE); while ((c = VasEBoot_getkey ()) != '\n' && c != '\r') { if (VasEBoot_isprint (c)) { if (pos < VasEBoot_RESCUE_BUF_SIZE - 1) { str[0] = c; str[1] = 0; linebuf[pos++] = c; VasEBoot_xputs (str); } } else if (c == '\b') { if (pos > 0) { str[0] = c; str[1] = ' '; str[2] = c; str[3] = 0; linebuf[--pos] = 0; VasEBoot_xputs (str); } } VasEBoot_refresh (); } VasEBoot_xputs ("\n"); VasEBoot_refresh (); *line = VasEBoot_strdup (linebuf); return 0; } void __attribute__ ((noreturn)) VasEBoot_rescue_run (void) { VasEBoot_printf ("Entering rescue mode...\n"); while (1) { char *line; /* Print an error, if any. */ VasEBoot_print_error (); VasEBoot_errno = VasEBoot_ERR_NONE; VasEBoot_rescue_read_line (&line, 0, NULL); if (! line || line[0] == '\0') continue; VasEBoot_rescue_parse_line (line, VasEBoot_rescue_read_line, NULL); VasEBoot_free (line); } }