2003-01-07 07:54:07 +00:00
|
|
|
/* main.c - the kernel main routine */
|
2002-12-27 08:53:07 +00:00
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2010-01-03 22:05:07 +00:00
|
|
|
* Copyright (C) 2002,2003,2005,2006,2008,2009 Free Software Foundation, Inc.
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2002-12-27 08:53:07 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2002-12-27 08:53:07 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2002-12-27 08:53:07 +00:00
|
|
|
* 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
|
2007-07-21 23:32:33 +00:00
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2002-12-27 08:53:07 +00:00
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/kernel.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/symbol.h>
|
|
|
|
#include <grub/dl.h>
|
|
|
|
#include <grub/term.h>
|
|
|
|
#include <grub/file.h>
|
|
|
|
#include <grub/device.h>
|
|
|
|
#include <grub/env.h>
|
2008-08-04 22:54:06 +00:00
|
|
|
#include <grub/mm.h>
|
2009-05-02 Bean <bean123ch@gmail.com>
* conf/common.rmk (grub_script.tab.c): Change normal/parser.y to
script/sh/parser.y.
(pkglib_MODULES): Add normal.mod and sh.mod.
(normal_SOURCES): New variable.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
(sh_mod_SOURCES): Likewise.
(sh_mod_CFLAGS): Likewise.
(sh_mod_LDFLAGS): Likewise.
* conf/i386-pc.rmk (normal/lexer.c_DEPENDENCIES): Changed to
script/sh/lexer.c_DEPENDENCIES.
(kernel_img_SOURCES): Remove kern/rescue.c, and kern/reader.c,
kern/rescue_reader.c and kern/rescue_parser.c.
(kernel_img_HEADERS): Remove rescue.h, add reader.h.
(grub_emu_SOURCES): Change source files.
(pkglib_MODULES): Remove normal.mod.
(normal_SOURCES): Removed.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
* conf/i386-coreboot.rmk: Likewise.
* conf/i386-efi.rmk: Likewise.
* conf/i386-ieee1276.rmk: Likewise.
* conf/powerpc-ieee1275.rmk: Likewise.
* conf/sparc64-ieee1275.rmk: Likewise.
* conf/x86_64-efi.rmk: Likewise.
* include/grub/command.h (grub_command_execute): New inline function.
* include/grub/menu.h (grub_menu_entry): Removed commands field.
* include/grub/normal.h: Remove <grub/setjmp.h>.
(grub_fs_module_list): Moved to normal/autofs.c.
(grub_exit_env): Removed.
(grub_command_execute): Likewise.
(grub_normal_menu_addentry): Renamed to grub_menu_addentry, removed
parameter script.
(read_command_list): New function declaration.
(read_fs_list): Likewise.
* include/parser.h: Include <grub/reader.h>.
(grub_parser_split_cmdline): Change type of getline parameter.
(grub_parser): New structure.
(grub_parser_class): New variable.
(grub_parser_execute): New function declaration.
(grub_register_rescue_parser): Likewise.
(grub_parser_register): New inline function.
(grub_parser_unregister): Likewise.
(grub_parser_get_current): Likewise.
(grub_parser_set_current): Likewise.
* include/grub/reader.h: New file.
* kern/reader.c: Likewise.
* kern/rescue_parser.c: Likewise.
* kern/rescue_reader.c: Likewise.
* normal/autofs.c: Likewise.
* normal/dyncmd.c: Likewise.
* include/grub/rescue.h: Removed.
* normal/command.h: Likewise.
* include/grub/script.h: Moved to ...
* include/grub/script_sh.h: ... Moved here.
* normal/execute.c: Moved to ...
* script/sh/execute.c: ... Moved here.
* normal/function.c: Moved to ...
* script/sh/function.c: ... Moved here.
* normal/lexer.c: Moved to ...
* script/sh/lexer.c: ... Moved here.
* normal/parser.y: Moved to ...
* script/sh/parser.y: ... Moved here.
* normal/script.c: Moved to ...
* script/sh/script.c: ... Moved here.
* normal/main.c: Remove <grub/rescue.h> and <grub/script.h>, include
<grub/reader.h>.
(grub_exit_env): Removed.
(fs_module_list): Moved to normal/autofs.c.
(grub_file_getline): Don't handle comment here.
(free_menu): Skip removed field entry->commands.
(grub_normal_menu_addentry): Removed as grub_menu_entry, removed
script parameter.
(read_config_file): Removed nested parameter, change getline function.
(grub_enter_normal_mode): Removed.
(grub_dyncmd_dispatcher): Moved to normal/dyncmd.c.
(read_command_list): Likewise.
(autoload_fs_module): Moved to normal/autofs.c.
(read_fs_list): Likewise.
(reader_nested): New variable.
(grub_normal_execute): Run parser.sh to switch to sh parser.
(grub_cmd_rescue): Removed.
(cmd_normal): Removed.
(grub_cmd_normal): Unregister itself at the beginning. Don't register
rescue command.
(grub_cmdline_run): New function.
(grub_normal_reader_init): Likewise.
(grub_normal_read_line): Likewise.
(grub_env_write_pager): Likewise.
(cmdline): New variable.
(grub_normal_reader): Likewise.
(GRUB_MOD_INIT): Register normal reader and set as current, register
pager hook, register normal command with grub_register_command_prio,
so that it won't show up in command.lst.
(GRUB_MOD_FINI): Unregister normal reader, unhook pager, clear
grub_fs_autoload_hook.
* normal/menu.c: Remove <grub/script.h>, add <grub/command.h>.
(grub_menu_execute_entry): Replace grub_script_execute with
grub_parser_execute, change parameter to grub_command_execute.
* normal/menu_text.c: Remove <grub/script.h>.
* normal/menu_entry.c: Remove <grub/script.h>, add <grub/command.h>
and <grub/parser.h>.
(run): Change editor_getline to use new parser interface. Change
parameter to grub_command_execute.
* kern/main.c: Remove <grub/rescue.h>, include <grub/command.h>,
<grub/reader.h> and <grub/parser.h>.
(grub_load_normal_mode): Execute normal command.
(grub_main): Call grub_register_core_commands,
grub_register_rescue_parser and grub_register_rescue_reader, use
grub_reader_loop to enter input loop.
* kern/parser.c (grub_parser_spli_cmdline): Change type of getline
parameter.
(grub_parser_class): New variable.
(grub_parser_execute): New function.
* loader/i386/multiboot.c: Remove <grub/rescue.h>.
* loader/multiboot2.c: Likewise.
* loader/sparc64/ieee1275/linux.c: Likewise.
* util/grub-emu.c (read_command_list): New dummy function.
2009-05-02 19:49:34 +00:00
|
|
|
#include <grub/command.h>
|
|
|
|
#include <grub/reader.h>
|
|
|
|
#include <grub/parser.h>
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2013-03-07 07:17:24 +00:00
|
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
|
|
|
#include <grub/machine/memory.h>
|
|
|
|
#endif
|
|
|
|
|
2010-02-13 15:26:50 +00:00
|
|
|
grub_addr_t
|
|
|
|
grub_modules_get_end (void)
|
|
|
|
{
|
|
|
|
struct grub_module_info *modinfo;
|
|
|
|
|
2011-10-16 13:23:29 +00:00
|
|
|
modinfo = (struct grub_module_info *) grub_modbase;
|
2010-02-13 15:26:50 +00:00
|
|
|
|
|
|
|
/* Check if there are any modules. */
|
|
|
|
if ((modinfo == 0) || modinfo->magic != GRUB_MODULE_MAGIC)
|
2011-10-16 13:23:29 +00:00
|
|
|
return grub_modbase;
|
2010-02-13 15:26:50 +00:00
|
|
|
|
2011-10-16 13:23:29 +00:00
|
|
|
return grub_modbase + modinfo->size;
|
2010-02-13 15:26:50 +00:00
|
|
|
}
|
|
|
|
|
2008-08-02 12:17:44 +00:00
|
|
|
/* Load all modules in core. */
|
|
|
|
static void
|
|
|
|
grub_load_modules (void)
|
|
|
|
{
|
2011-10-16 13:23:29 +00:00
|
|
|
struct grub_module_header *header;
|
|
|
|
FOR_MODULES (header)
|
|
|
|
{
|
|
|
|
/* Not an ELF module, skip. */
|
|
|
|
if (header->type != OBJ_TYPE_ELF)
|
|
|
|
continue;
|
2010-03-04 20:32:11 +00:00
|
|
|
|
2011-10-16 13:23:29 +00:00
|
|
|
if (! grub_dl_load_core ((char *) header + sizeof (struct grub_module_header),
|
|
|
|
(header->size - sizeof (struct grub_module_header))))
|
|
|
|
grub_fatal ("%s", grub_errmsg);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2011-10-16 13:23:29 +00:00
|
|
|
if (grub_errno)
|
|
|
|
grub_print_error ();
|
|
|
|
}
|
2002-12-27 08:53:07 +00:00
|
|
|
}
|
|
|
|
|
2013-03-07 07:17:24 +00:00
|
|
|
static char *load_config;
|
|
|
|
|
2009-05-16 12:12:12 +00:00
|
|
|
static void
|
|
|
|
grub_load_config (void)
|
|
|
|
{
|
2011-10-16 13:23:29 +00:00
|
|
|
struct grub_module_header *header;
|
|
|
|
FOR_MODULES (header)
|
|
|
|
{
|
|
|
|
/* Not an embedded config, skip. */
|
|
|
|
if (header->type != OBJ_TYPE_CONFIG)
|
|
|
|
continue;
|
2013-03-07 07:17:24 +00:00
|
|
|
|
|
|
|
load_config = grub_malloc (header->size - sizeof (struct grub_module_header) + 1);
|
|
|
|
if (!load_config)
|
|
|
|
{
|
|
|
|
grub_print_error ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
grub_memcpy (load_config, (char *) header +
|
|
|
|
sizeof (struct grub_module_header),
|
|
|
|
header->size - sizeof (struct grub_module_header));
|
|
|
|
load_config[header->size - sizeof (struct grub_module_header)] = 0;
|
2011-10-16 13:23:29 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-05-16 12:12:12 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 20:30:46 +00:00
|
|
|
/* Write hook for the environment variables of root. Remove surrounding
|
|
|
|
parentheses, if any. */
|
|
|
|
static char *
|
2005-08-12 19:53:33 +00:00
|
|
|
grub_env_write_root (struct grub_env_var *var __attribute__ ((unused)),
|
|
|
|
const char *val)
|
2005-07-20 20:30:46 +00:00
|
|
|
{
|
|
|
|
/* XXX Is it better to check the existence of the device? */
|
|
|
|
grub_size_t len = grub_strlen (val);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2005-07-20 20:30:46 +00:00
|
|
|
if (val[0] == '(' && val[len - 1] == ')')
|
|
|
|
return grub_strndup (val + 1, len - 2);
|
|
|
|
|
|
|
|
return grub_strdup (val);
|
|
|
|
}
|
|
|
|
|
2003-01-07 07:54:07 +00:00
|
|
|
static void
|
2011-07-02 12:09:36 +00:00
|
|
|
grub_set_prefix_and_root (void)
|
2003-01-07 07:54:07 +00:00
|
|
|
{
|
2011-07-02 12:09:36 +00:00
|
|
|
char *device = NULL;
|
|
|
|
char *path = NULL;
|
|
|
|
char *fwdevice = NULL;
|
|
|
|
char *fwpath = NULL;
|
2011-10-19 18:30:06 +00:00
|
|
|
char *prefix = NULL;
|
2011-10-18 13:21:51 +00:00
|
|
|
struct grub_module_header *header;
|
|
|
|
|
|
|
|
FOR_MODULES (header)
|
|
|
|
if (header->type == OBJ_TYPE_PREFIX)
|
|
|
|
prefix = (char *) header + sizeof (struct grub_module_header);
|
2003-01-07 07:54:07 +00:00
|
|
|
|
2005-07-20 20:30:46 +00:00
|
|
|
grub_register_variable_hook ("root", 0, grub_env_write_root);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-11-14 14:53:32 +00:00
|
|
|
grub_machine_get_bootlocation (&fwdevice, &fwpath);
|
|
|
|
|
|
|
|
if (fwdevice)
|
|
|
|
{
|
|
|
|
char *cmdpath;
|
|
|
|
|
|
|
|
cmdpath = grub_xasprintf ("(%s)%s", fwdevice, fwpath ? : "");
|
|
|
|
if (cmdpath)
|
|
|
|
{
|
|
|
|
grub_env_set ("cmdpath", cmdpath);
|
|
|
|
grub_env_export ("cmdpath");
|
|
|
|
grub_free (cmdpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-18 13:21:51 +00:00
|
|
|
if (prefix)
|
|
|
|
{
|
|
|
|
char *pptr = NULL;
|
|
|
|
if (prefix[0] == '(')
|
|
|
|
{
|
|
|
|
pptr = grub_strrchr (prefix, ')');
|
|
|
|
if (pptr)
|
|
|
|
{
|
|
|
|
device = grub_strndup (prefix + 1, pptr - prefix - 1);
|
|
|
|
pptr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pptr)
|
|
|
|
pptr = prefix;
|
|
|
|
if (pptr[0])
|
|
|
|
path = grub_strdup (pptr);
|
|
|
|
}
|
2011-07-02 12:09:36 +00:00
|
|
|
|
|
|
|
if (!device && fwdevice)
|
|
|
|
device = fwdevice;
|
|
|
|
else if (fwdevice && (device[0] == ',' || !device[0]))
|
2003-01-07 07:54:07 +00:00
|
|
|
{
|
2011-07-02 12:09:36 +00:00
|
|
|
/* We have a partition, but still need to fill in the drive. */
|
|
|
|
char *comma, *new_device;
|
|
|
|
|
2012-06-20 21:33:34 +00:00
|
|
|
for (comma = fwdevice; *comma; )
|
|
|
|
{
|
|
|
|
if (comma[0] == '\\' && comma[1] == ',')
|
|
|
|
{
|
|
|
|
comma += 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (*comma == ',')
|
|
|
|
break;
|
|
|
|
comma++;
|
|
|
|
}
|
|
|
|
if (*comma)
|
2011-07-02 12:09:36 +00:00
|
|
|
{
|
|
|
|
char *drive = grub_strndup (fwdevice, comma - fwdevice);
|
|
|
|
new_device = grub_xasprintf ("%s%s", drive, device);
|
|
|
|
grub_free (drive);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
new_device = grub_xasprintf ("%s%s", fwdevice, device);
|
2003-01-07 07:54:07 +00:00
|
|
|
|
2011-07-02 12:09:36 +00:00
|
|
|
grub_free (fwdevice);
|
|
|
|
grub_free (device);
|
|
|
|
device = new_device;
|
|
|
|
}
|
2012-06-22 09:51:48 +00:00
|
|
|
else
|
|
|
|
grub_free (fwdevice);
|
2011-07-02 12:09:36 +00:00
|
|
|
if (fwpath && !path)
|
2013-03-01 09:35:51 +00:00
|
|
|
{
|
|
|
|
grub_size_t len = grub_strlen (fwpath);
|
|
|
|
while (len > 1 && fwpath[len - 1] == '/')
|
|
|
|
fwpath[--len] = 0;
|
|
|
|
if (len >= sizeof (GRUB_TARGET_CPU "-" GRUB_PLATFORM) - 1
|
|
|
|
&& grub_memcmp (fwpath + len - (sizeof (GRUB_TARGET_CPU "-" GRUB_PLATFORM) - 1), GRUB_TARGET_CPU "-" GRUB_PLATFORM,
|
|
|
|
sizeof (GRUB_TARGET_CPU "-" GRUB_PLATFORM) - 1) == 0)
|
|
|
|
fwpath[len - (sizeof (GRUB_TARGET_CPU "-" GRUB_PLATFORM) - 1)] = 0;
|
|
|
|
path = fwpath;
|
|
|
|
}
|
2012-06-22 09:51:48 +00:00
|
|
|
else
|
|
|
|
grub_free (fwpath);
|
2011-07-02 12:09:36 +00:00
|
|
|
if (device)
|
|
|
|
{
|
2011-10-18 13:21:51 +00:00
|
|
|
char *prefix_set;
|
2011-07-02 12:09:36 +00:00
|
|
|
|
2011-10-18 13:21:51 +00:00
|
|
|
prefix_set = grub_xasprintf ("(%s)%s", device, path ? : "");
|
|
|
|
if (prefix_set)
|
2003-01-07 07:54:07 +00:00
|
|
|
{
|
2011-10-18 13:21:51 +00:00
|
|
|
grub_env_set ("prefix", prefix_set);
|
|
|
|
grub_free (prefix_set);
|
2003-01-07 07:54:07 +00:00
|
|
|
}
|
2011-07-02 12:09:36 +00:00
|
|
|
grub_env_set ("root", device);
|
2003-01-07 07:54:07 +00:00
|
|
|
}
|
2011-07-02 12:09:36 +00:00
|
|
|
|
|
|
|
grub_free (device);
|
|
|
|
grub_free (path);
|
|
|
|
grub_print_error ();
|
2003-01-07 07:54:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Load the normal mode module and execute the normal mode if possible. */
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_load_normal_mode (void)
|
2003-01-07 07:54:07 +00:00
|
|
|
{
|
2003-01-20 04:13:46 +00:00
|
|
|
/* Load the module. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_load ("normal");
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2011-06-24 23:09:32 +00:00
|
|
|
/* Print errors if any. */
|
2008-02-10 17:05:10 +00:00
|
|
|
grub_print_error ();
|
2009-05-02 Bean <bean123ch@gmail.com>
* conf/common.rmk (grub_script.tab.c): Change normal/parser.y to
script/sh/parser.y.
(pkglib_MODULES): Add normal.mod and sh.mod.
(normal_SOURCES): New variable.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
(sh_mod_SOURCES): Likewise.
(sh_mod_CFLAGS): Likewise.
(sh_mod_LDFLAGS): Likewise.
* conf/i386-pc.rmk (normal/lexer.c_DEPENDENCIES): Changed to
script/sh/lexer.c_DEPENDENCIES.
(kernel_img_SOURCES): Remove kern/rescue.c, and kern/reader.c,
kern/rescue_reader.c and kern/rescue_parser.c.
(kernel_img_HEADERS): Remove rescue.h, add reader.h.
(grub_emu_SOURCES): Change source files.
(pkglib_MODULES): Remove normal.mod.
(normal_SOURCES): Removed.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
* conf/i386-coreboot.rmk: Likewise.
* conf/i386-efi.rmk: Likewise.
* conf/i386-ieee1276.rmk: Likewise.
* conf/powerpc-ieee1275.rmk: Likewise.
* conf/sparc64-ieee1275.rmk: Likewise.
* conf/x86_64-efi.rmk: Likewise.
* include/grub/command.h (grub_command_execute): New inline function.
* include/grub/menu.h (grub_menu_entry): Removed commands field.
* include/grub/normal.h: Remove <grub/setjmp.h>.
(grub_fs_module_list): Moved to normal/autofs.c.
(grub_exit_env): Removed.
(grub_command_execute): Likewise.
(grub_normal_menu_addentry): Renamed to grub_menu_addentry, removed
parameter script.
(read_command_list): New function declaration.
(read_fs_list): Likewise.
* include/parser.h: Include <grub/reader.h>.
(grub_parser_split_cmdline): Change type of getline parameter.
(grub_parser): New structure.
(grub_parser_class): New variable.
(grub_parser_execute): New function declaration.
(grub_register_rescue_parser): Likewise.
(grub_parser_register): New inline function.
(grub_parser_unregister): Likewise.
(grub_parser_get_current): Likewise.
(grub_parser_set_current): Likewise.
* include/grub/reader.h: New file.
* kern/reader.c: Likewise.
* kern/rescue_parser.c: Likewise.
* kern/rescue_reader.c: Likewise.
* normal/autofs.c: Likewise.
* normal/dyncmd.c: Likewise.
* include/grub/rescue.h: Removed.
* normal/command.h: Likewise.
* include/grub/script.h: Moved to ...
* include/grub/script_sh.h: ... Moved here.
* normal/execute.c: Moved to ...
* script/sh/execute.c: ... Moved here.
* normal/function.c: Moved to ...
* script/sh/function.c: ... Moved here.
* normal/lexer.c: Moved to ...
* script/sh/lexer.c: ... Moved here.
* normal/parser.y: Moved to ...
* script/sh/parser.y: ... Moved here.
* normal/script.c: Moved to ...
* script/sh/script.c: ... Moved here.
* normal/main.c: Remove <grub/rescue.h> and <grub/script.h>, include
<grub/reader.h>.
(grub_exit_env): Removed.
(fs_module_list): Moved to normal/autofs.c.
(grub_file_getline): Don't handle comment here.
(free_menu): Skip removed field entry->commands.
(grub_normal_menu_addentry): Removed as grub_menu_entry, removed
script parameter.
(read_config_file): Removed nested parameter, change getline function.
(grub_enter_normal_mode): Removed.
(grub_dyncmd_dispatcher): Moved to normal/dyncmd.c.
(read_command_list): Likewise.
(autoload_fs_module): Moved to normal/autofs.c.
(read_fs_list): Likewise.
(reader_nested): New variable.
(grub_normal_execute): Run parser.sh to switch to sh parser.
(grub_cmd_rescue): Removed.
(cmd_normal): Removed.
(grub_cmd_normal): Unregister itself at the beginning. Don't register
rescue command.
(grub_cmdline_run): New function.
(grub_normal_reader_init): Likewise.
(grub_normal_read_line): Likewise.
(grub_env_write_pager): Likewise.
(cmdline): New variable.
(grub_normal_reader): Likewise.
(GRUB_MOD_INIT): Register normal reader and set as current, register
pager hook, register normal command with grub_register_command_prio,
so that it won't show up in command.lst.
(GRUB_MOD_FINI): Unregister normal reader, unhook pager, clear
grub_fs_autoload_hook.
* normal/menu.c: Remove <grub/script.h>, add <grub/command.h>.
(grub_menu_execute_entry): Replace grub_script_execute with
grub_parser_execute, change parameter to grub_command_execute.
* normal/menu_text.c: Remove <grub/script.h>.
* normal/menu_entry.c: Remove <grub/script.h>, add <grub/command.h>
and <grub/parser.h>.
(run): Change editor_getline to use new parser interface. Change
parameter to grub_command_execute.
* kern/main.c: Remove <grub/rescue.h>, include <grub/command.h>,
<grub/reader.h> and <grub/parser.h>.
(grub_load_normal_mode): Execute normal command.
(grub_main): Call grub_register_core_commands,
grub_register_rescue_parser and grub_register_rescue_reader, use
grub_reader_loop to enter input loop.
* kern/parser.c (grub_parser_spli_cmdline): Change type of getline
parameter.
(grub_parser_class): New variable.
(grub_parser_execute): New function.
* loader/i386/multiboot.c: Remove <grub/rescue.h>.
* loader/multiboot2.c: Likewise.
* loader/sparc64/ieee1275/linux.c: Likewise.
* util/grub-emu.c (read_command_list): New dummy function.
2009-05-02 19:49:34 +00:00
|
|
|
grub_errno = 0;
|
|
|
|
|
|
|
|
grub_command_execute ("normal", 0, 0);
|
2003-01-07 07:54:07 +00:00
|
|
|
}
|
|
|
|
|
2013-03-07 07:17:24 +00:00
|
|
|
static void
|
|
|
|
reclaim_module_space (void)
|
|
|
|
{
|
|
|
|
grub_addr_t modstart, modend;
|
|
|
|
|
|
|
|
if (!grub_modbase)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef GRUB_MACHINE_PCBIOS
|
|
|
|
modstart = GRUB_MEMORY_MACHINE_DECOMPRESSION_ADDR;
|
|
|
|
#else
|
|
|
|
modstart = grub_modbase;
|
|
|
|
#endif
|
|
|
|
modend = grub_modules_get_end ();
|
|
|
|
grub_modbase = 0;
|
|
|
|
|
|
|
|
#if GRUB_KERNEL_PRELOAD_SPACE_REUSABLE
|
|
|
|
grub_mm_init_region ((void *) modstart, modend - modstart);
|
|
|
|
#else
|
|
|
|
(void) modstart;
|
|
|
|
(void) modend;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* The main routine. */
|
2011-12-13 14:13:51 +00:00
|
|
|
void __attribute__ ((noreturn))
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_main (void)
|
2002-12-27 08:53:07 +00:00
|
|
|
{
|
|
|
|
/* First of all, initialize the machine. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_machine_init ();
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2013-03-19 19:25:09 +00:00
|
|
|
grub_boot_time ("After machine init.");
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
/* Hello. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
|
|
|
|
grub_printf ("Welcome to GRUB!\n\n");
|
|
|
|
grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2013-03-07 07:17:24 +00:00
|
|
|
grub_load_config ();
|
|
|
|
|
2013-03-19 19:25:09 +00:00
|
|
|
grub_boot_time ("Before loading embedded modules.");
|
|
|
|
|
2003-01-07 07:54:07 +00:00
|
|
|
/* Load pre-loaded modules and free the space. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_register_exported_symbols ();
|
2009-11-21 16:33:52 +00:00
|
|
|
#ifdef GRUB_LINKER_HAVE_INIT
|
|
|
|
grub_arch_dl_init_linker ();
|
|
|
|
#endif
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_load_modules ();
|
2002-12-27 08:53:07 +00:00
|
|
|
|
2013-03-19 19:25:09 +00:00
|
|
|
grub_boot_time ("After loading embedded modules.");
|
|
|
|
|
2006-04-25 20:08:31 +00:00
|
|
|
/* It is better to set the root device as soon as possible,
|
|
|
|
for convenience. */
|
2011-07-02 12:09:36 +00:00
|
|
|
grub_set_prefix_and_root ();
|
2011-01-11 10:51:05 +00:00
|
|
|
grub_env_export ("root");
|
|
|
|
grub_env_export ("prefix");
|
2006-04-25 20:08:31 +00:00
|
|
|
|
2013-03-07 07:17:24 +00:00
|
|
|
/* Reclaim space used for modules. */
|
|
|
|
reclaim_module_space ();
|
|
|
|
|
2013-03-19 19:25:09 +00:00
|
|
|
grub_boot_time ("After reclaiming module space.");
|
|
|
|
|
2009-05-02 Bean <bean123ch@gmail.com>
* conf/common.rmk (grub_script.tab.c): Change normal/parser.y to
script/sh/parser.y.
(pkglib_MODULES): Add normal.mod and sh.mod.
(normal_SOURCES): New variable.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
(sh_mod_SOURCES): Likewise.
(sh_mod_CFLAGS): Likewise.
(sh_mod_LDFLAGS): Likewise.
* conf/i386-pc.rmk (normal/lexer.c_DEPENDENCIES): Changed to
script/sh/lexer.c_DEPENDENCIES.
(kernel_img_SOURCES): Remove kern/rescue.c, and kern/reader.c,
kern/rescue_reader.c and kern/rescue_parser.c.
(kernel_img_HEADERS): Remove rescue.h, add reader.h.
(grub_emu_SOURCES): Change source files.
(pkglib_MODULES): Remove normal.mod.
(normal_SOURCES): Removed.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
* conf/i386-coreboot.rmk: Likewise.
* conf/i386-efi.rmk: Likewise.
* conf/i386-ieee1276.rmk: Likewise.
* conf/powerpc-ieee1275.rmk: Likewise.
* conf/sparc64-ieee1275.rmk: Likewise.
* conf/x86_64-efi.rmk: Likewise.
* include/grub/command.h (grub_command_execute): New inline function.
* include/grub/menu.h (grub_menu_entry): Removed commands field.
* include/grub/normal.h: Remove <grub/setjmp.h>.
(grub_fs_module_list): Moved to normal/autofs.c.
(grub_exit_env): Removed.
(grub_command_execute): Likewise.
(grub_normal_menu_addentry): Renamed to grub_menu_addentry, removed
parameter script.
(read_command_list): New function declaration.
(read_fs_list): Likewise.
* include/parser.h: Include <grub/reader.h>.
(grub_parser_split_cmdline): Change type of getline parameter.
(grub_parser): New structure.
(grub_parser_class): New variable.
(grub_parser_execute): New function declaration.
(grub_register_rescue_parser): Likewise.
(grub_parser_register): New inline function.
(grub_parser_unregister): Likewise.
(grub_parser_get_current): Likewise.
(grub_parser_set_current): Likewise.
* include/grub/reader.h: New file.
* kern/reader.c: Likewise.
* kern/rescue_parser.c: Likewise.
* kern/rescue_reader.c: Likewise.
* normal/autofs.c: Likewise.
* normal/dyncmd.c: Likewise.
* include/grub/rescue.h: Removed.
* normal/command.h: Likewise.
* include/grub/script.h: Moved to ...
* include/grub/script_sh.h: ... Moved here.
* normal/execute.c: Moved to ...
* script/sh/execute.c: ... Moved here.
* normal/function.c: Moved to ...
* script/sh/function.c: ... Moved here.
* normal/lexer.c: Moved to ...
* script/sh/lexer.c: ... Moved here.
* normal/parser.y: Moved to ...
* script/sh/parser.y: ... Moved here.
* normal/script.c: Moved to ...
* script/sh/script.c: ... Moved here.
* normal/main.c: Remove <grub/rescue.h> and <grub/script.h>, include
<grub/reader.h>.
(grub_exit_env): Removed.
(fs_module_list): Moved to normal/autofs.c.
(grub_file_getline): Don't handle comment here.
(free_menu): Skip removed field entry->commands.
(grub_normal_menu_addentry): Removed as grub_menu_entry, removed
script parameter.
(read_config_file): Removed nested parameter, change getline function.
(grub_enter_normal_mode): Removed.
(grub_dyncmd_dispatcher): Moved to normal/dyncmd.c.
(read_command_list): Likewise.
(autoload_fs_module): Moved to normal/autofs.c.
(read_fs_list): Likewise.
(reader_nested): New variable.
(grub_normal_execute): Run parser.sh to switch to sh parser.
(grub_cmd_rescue): Removed.
(cmd_normal): Removed.
(grub_cmd_normal): Unregister itself at the beginning. Don't register
rescue command.
(grub_cmdline_run): New function.
(grub_normal_reader_init): Likewise.
(grub_normal_read_line): Likewise.
(grub_env_write_pager): Likewise.
(cmdline): New variable.
(grub_normal_reader): Likewise.
(GRUB_MOD_INIT): Register normal reader and set as current, register
pager hook, register normal command with grub_register_command_prio,
so that it won't show up in command.lst.
(GRUB_MOD_FINI): Unregister normal reader, unhook pager, clear
grub_fs_autoload_hook.
* normal/menu.c: Remove <grub/script.h>, add <grub/command.h>.
(grub_menu_execute_entry): Replace grub_script_execute with
grub_parser_execute, change parameter to grub_command_execute.
* normal/menu_text.c: Remove <grub/script.h>.
* normal/menu_entry.c: Remove <grub/script.h>, add <grub/command.h>
and <grub/parser.h>.
(run): Change editor_getline to use new parser interface. Change
parameter to grub_command_execute.
* kern/main.c: Remove <grub/rescue.h>, include <grub/command.h>,
<grub/reader.h> and <grub/parser.h>.
(grub_load_normal_mode): Execute normal command.
(grub_main): Call grub_register_core_commands,
grub_register_rescue_parser and grub_register_rescue_reader, use
grub_reader_loop to enter input loop.
* kern/parser.c (grub_parser_spli_cmdline): Change type of getline
parameter.
(grub_parser_class): New variable.
(grub_parser_execute): New function.
* loader/i386/multiboot.c: Remove <grub/rescue.h>.
* loader/multiboot2.c: Likewise.
* loader/sparc64/ieee1275/linux.c: Likewise.
* util/grub-emu.c (read_command_list): New dummy function.
2009-05-02 19:49:34 +00:00
|
|
|
grub_register_core_commands ();
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2013-03-19 19:25:09 +00:00
|
|
|
grub_boot_time ("Before execution of embedded config.");
|
|
|
|
|
2013-03-07 07:17:24 +00:00
|
|
|
if (load_config)
|
|
|
|
grub_parser_execute (load_config);
|
|
|
|
|
2013-03-19 19:25:09 +00:00
|
|
|
grub_boot_time ("After execution of embedded config. Attempt to go to normal mode");
|
|
|
|
|
2009-05-02 Bean <bean123ch@gmail.com>
* conf/common.rmk (grub_script.tab.c): Change normal/parser.y to
script/sh/parser.y.
(pkglib_MODULES): Add normal.mod and sh.mod.
(normal_SOURCES): New variable.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
(sh_mod_SOURCES): Likewise.
(sh_mod_CFLAGS): Likewise.
(sh_mod_LDFLAGS): Likewise.
* conf/i386-pc.rmk (normal/lexer.c_DEPENDENCIES): Changed to
script/sh/lexer.c_DEPENDENCIES.
(kernel_img_SOURCES): Remove kern/rescue.c, and kern/reader.c,
kern/rescue_reader.c and kern/rescue_parser.c.
(kernel_img_HEADERS): Remove rescue.h, add reader.h.
(grub_emu_SOURCES): Change source files.
(pkglib_MODULES): Remove normal.mod.
(normal_SOURCES): Removed.
(normal_mod_CFLAGS): Likewise.
(normal_mod_LDFLAGS): Likewise.
* conf/i386-coreboot.rmk: Likewise.
* conf/i386-efi.rmk: Likewise.
* conf/i386-ieee1276.rmk: Likewise.
* conf/powerpc-ieee1275.rmk: Likewise.
* conf/sparc64-ieee1275.rmk: Likewise.
* conf/x86_64-efi.rmk: Likewise.
* include/grub/command.h (grub_command_execute): New inline function.
* include/grub/menu.h (grub_menu_entry): Removed commands field.
* include/grub/normal.h: Remove <grub/setjmp.h>.
(grub_fs_module_list): Moved to normal/autofs.c.
(grub_exit_env): Removed.
(grub_command_execute): Likewise.
(grub_normal_menu_addentry): Renamed to grub_menu_addentry, removed
parameter script.
(read_command_list): New function declaration.
(read_fs_list): Likewise.
* include/parser.h: Include <grub/reader.h>.
(grub_parser_split_cmdline): Change type of getline parameter.
(grub_parser): New structure.
(grub_parser_class): New variable.
(grub_parser_execute): New function declaration.
(grub_register_rescue_parser): Likewise.
(grub_parser_register): New inline function.
(grub_parser_unregister): Likewise.
(grub_parser_get_current): Likewise.
(grub_parser_set_current): Likewise.
* include/grub/reader.h: New file.
* kern/reader.c: Likewise.
* kern/rescue_parser.c: Likewise.
* kern/rescue_reader.c: Likewise.
* normal/autofs.c: Likewise.
* normal/dyncmd.c: Likewise.
* include/grub/rescue.h: Removed.
* normal/command.h: Likewise.
* include/grub/script.h: Moved to ...
* include/grub/script_sh.h: ... Moved here.
* normal/execute.c: Moved to ...
* script/sh/execute.c: ... Moved here.
* normal/function.c: Moved to ...
* script/sh/function.c: ... Moved here.
* normal/lexer.c: Moved to ...
* script/sh/lexer.c: ... Moved here.
* normal/parser.y: Moved to ...
* script/sh/parser.y: ... Moved here.
* normal/script.c: Moved to ...
* script/sh/script.c: ... Moved here.
* normal/main.c: Remove <grub/rescue.h> and <grub/script.h>, include
<grub/reader.h>.
(grub_exit_env): Removed.
(fs_module_list): Moved to normal/autofs.c.
(grub_file_getline): Don't handle comment here.
(free_menu): Skip removed field entry->commands.
(grub_normal_menu_addentry): Removed as grub_menu_entry, removed
script parameter.
(read_config_file): Removed nested parameter, change getline function.
(grub_enter_normal_mode): Removed.
(grub_dyncmd_dispatcher): Moved to normal/dyncmd.c.
(read_command_list): Likewise.
(autoload_fs_module): Moved to normal/autofs.c.
(read_fs_list): Likewise.
(reader_nested): New variable.
(grub_normal_execute): Run parser.sh to switch to sh parser.
(grub_cmd_rescue): Removed.
(cmd_normal): Removed.
(grub_cmd_normal): Unregister itself at the beginning. Don't register
rescue command.
(grub_cmdline_run): New function.
(grub_normal_reader_init): Likewise.
(grub_normal_read_line): Likewise.
(grub_env_write_pager): Likewise.
(cmdline): New variable.
(grub_normal_reader): Likewise.
(GRUB_MOD_INIT): Register normal reader and set as current, register
pager hook, register normal command with grub_register_command_prio,
so that it won't show up in command.lst.
(GRUB_MOD_FINI): Unregister normal reader, unhook pager, clear
grub_fs_autoload_hook.
* normal/menu.c: Remove <grub/script.h>, add <grub/command.h>.
(grub_menu_execute_entry): Replace grub_script_execute with
grub_parser_execute, change parameter to grub_command_execute.
* normal/menu_text.c: Remove <grub/script.h>.
* normal/menu_entry.c: Remove <grub/script.h>, add <grub/command.h>
and <grub/parser.h>.
(run): Change editor_getline to use new parser interface. Change
parameter to grub_command_execute.
* kern/main.c: Remove <grub/rescue.h>, include <grub/command.h>,
<grub/reader.h> and <grub/parser.h>.
(grub_load_normal_mode): Execute normal command.
(grub_main): Call grub_register_core_commands,
grub_register_rescue_parser and grub_register_rescue_reader, use
grub_reader_loop to enter input loop.
* kern/parser.c (grub_parser_spli_cmdline): Change type of getline
parameter.
(grub_parser_class): New variable.
(grub_parser_execute): New function.
* loader/i386/multiboot.c: Remove <grub/rescue.h>.
* loader/multiboot2.c: Likewise.
* loader/sparc64/ieee1275/linux.c: Likewise.
* util/grub-emu.c (read_command_list): New dummy function.
2009-05-02 19:49:34 +00:00
|
|
|
grub_load_normal_mode ();
|
2009-12-23 23:37:11 +00:00
|
|
|
grub_rescue_run ();
|
2002-12-27 08:53:07 +00:00
|
|
|
}
|