2003-11-16 16:36:39 +00:00
|
|
|
/* multiboot.c - boot a multiboot OS image. */
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2010-01-14 21:08:31 +00:00
|
|
|
* Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2007,2008,2009,2010 Free Software Foundation, Inc.
|
2003-11-16 16:36:39 +00:00
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2003-11-16 16:36:39 +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
|
2003-11-16 16:36:39 +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,
|
2003-11-16 16:36:39 +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/>.
|
2003-11-16 16:36:39 +00:00
|
|
|
*/
|
|
|
|
|
2008-02-19 16:40:45 +00:00
|
|
|
/*
|
2003-11-16 16:36:39 +00:00
|
|
|
* FIXME: The following features from the Multiboot specification still
|
|
|
|
* need to be implemented:
|
|
|
|
* - symbol table
|
|
|
|
* - drives table
|
|
|
|
* - ROM configuration table
|
|
|
|
* - APM table
|
|
|
|
*/
|
|
|
|
|
2010-01-07 19:55:16 +00:00
|
|
|
/* The bits in the required part of flags field we don't support. */
|
2010-01-14 14:54:14 +00:00
|
|
|
#define UNSUPPORTED_FLAGS 0x0000fff8
|
2010-01-07 19:55:16 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/loader.h>
|
|
|
|
#include <grub/machine/loader.h>
|
2007-07-25 00:44:03 +00:00
|
|
|
#include <grub/multiboot.h>
|
2009-03-22 12:28:00 +00:00
|
|
|
#include <grub/cpu/multiboot.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/elf.h>
|
2008-02-19 16:40:45 +00:00
|
|
|
#include <grub/aout.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/file.h>
|
|
|
|
#include <grub/err.h>
|
|
|
|
#include <grub/dl.h>
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/misc.h>
|
2005-08-22 17:28:59 +00:00
|
|
|
#include <grub/gzio.h>
|
2008-03-05 05:09:35 +00:00
|
|
|
#include <grub/env.h>
|
2009-11-25 22:39:59 +00:00
|
|
|
#include <grub/i386/relocator.h>
|
2010-01-14 21:08:31 +00:00
|
|
|
#include <grub/video.h>
|
2010-01-16 15:25:43 +00:00
|
|
|
#include <grub/memory.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
|
2010-01-15 20:11:51 +00:00
|
|
|
#ifdef GRUB_MACHINE_EFI
|
|
|
|
#include <grub/efi/efi.h>
|
|
|
|
#endif
|
|
|
|
|
2010-01-16 15:25:43 +00:00
|
|
|
#if defined (GRUB_MACHINE_PCBIOS) || defined (GRUB_MACHINE_COREBOOT) || defined (GRUB_MACHINE_QEMU)
|
|
|
|
#define DEFAULT_VIDEO_MODE "text"
|
|
|
|
#else
|
|
|
|
#define DEFAULT_VIDEO_MODE "auto"
|
|
|
|
#endif
|
|
|
|
|
2007-07-25 00:44:03 +00:00
|
|
|
extern grub_dl_t my_mod;
|
2010-01-10 17:58:18 +00:00
|
|
|
static grub_size_t code_size, alloc_mbi;
|
2008-08-02 12:12:14 +00:00
|
|
|
|
2009-11-25 22:39:59 +00:00
|
|
|
char *grub_multiboot_payload_orig;
|
|
|
|
grub_addr_t grub_multiboot_payload_dest;
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_size_t grub_multiboot_pure_size;
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_uint32_t grub_multiboot_payload_eip;
|
2010-01-16 15:25:43 +00:00
|
|
|
static int accepts_video;
|
|
|
|
|
|
|
|
/* Return the length of the Multiboot mmap that will be needed to allocate
|
|
|
|
our platform's map. */
|
|
|
|
grub_uint32_t
|
|
|
|
grub_get_multiboot_mmap_len (void)
|
|
|
|
{
|
|
|
|
grub_size_t count = 0;
|
|
|
|
|
|
|
|
auto int NESTED_FUNC_ATTR hook (grub_uint64_t, grub_uint64_t, grub_uint32_t);
|
|
|
|
int NESTED_FUNC_ATTR hook (grub_uint64_t addr __attribute__ ((unused)),
|
|
|
|
grub_uint64_t size __attribute__ ((unused)),
|
|
|
|
grub_uint32_t type __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_mmap_iterate (hook);
|
|
|
|
|
|
|
|
return count * sizeof (struct multiboot_mmap_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill previously allocated Multiboot mmap. */
|
|
|
|
void
|
|
|
|
grub_fill_multiboot_mmap (struct multiboot_mmap_entry *first_entry)
|
|
|
|
{
|
|
|
|
struct multiboot_mmap_entry *mmap_entry = (struct multiboot_mmap_entry *) first_entry;
|
|
|
|
|
|
|
|
auto int NESTED_FUNC_ATTR hook (grub_uint64_t, grub_uint64_t, grub_uint32_t);
|
|
|
|
int NESTED_FUNC_ATTR hook (grub_uint64_t addr, grub_uint64_t size, grub_uint32_t type)
|
|
|
|
{
|
|
|
|
mmap_entry->addr = addr;
|
|
|
|
mmap_entry->len = size;
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case GRUB_MACHINE_MEMORY_AVAILABLE:
|
|
|
|
mmap_entry->type = MULTIBOOT_MEMORY_AVAILABLE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
mmap_entry->type = MULTIBOOT_MEMORY_RESERVED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mmap_entry->size = sizeof (struct multiboot_mmap_entry) - sizeof (mmap_entry->size);
|
|
|
|
mmap_entry++;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_mmap_iterate (hook);
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_err_t
|
|
|
|
grub_multiboot_set_video_mode (void)
|
|
|
|
{
|
|
|
|
grub_err_t err;
|
|
|
|
const char *modevar;
|
|
|
|
|
|
|
|
if (accepts_video || !GRUB_MACHINE_HAS_VGA_TEXT)
|
|
|
|
{
|
|
|
|
modevar = grub_env_get ("gfxpayload");
|
|
|
|
if (! modevar || *modevar == 0)
|
|
|
|
err = grub_video_set_mode (DEFAULT_VIDEO_MODE, 0);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char *tmp;
|
|
|
|
tmp = grub_malloc (grub_strlen (modevar)
|
|
|
|
+ sizeof (DEFAULT_VIDEO_MODE) + 1);
|
|
|
|
if (! tmp)
|
|
|
|
return grub_errno;
|
|
|
|
grub_sprintf (tmp, "%s;" DEFAULT_VIDEO_MODE, modevar);
|
|
|
|
err = grub_video_set_mode (tmp, 0);
|
|
|
|
grub_free (tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
err = grub_video_set_mode ("text", 0);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if GRUB_MACHINE_HAS_VBE
|
|
|
|
grub_err_t
|
|
|
|
grub_multiboot_fill_vbe_info_real (struct grub_vbe_info_block *vbe_control_info,
|
|
|
|
struct grub_vbe_mode_info_block *vbe_mode_info,
|
|
|
|
multiboot_uint16_t *vbe_mode,
|
|
|
|
multiboot_uint16_t *vbe_interface_seg,
|
|
|
|
multiboot_uint16_t *vbe_interface_off,
|
|
|
|
multiboot_uint16_t *vbe_interface_len)
|
|
|
|
{
|
|
|
|
grub_vbe_status_t status;
|
|
|
|
void *scratch = (void *) GRUB_MEMORY_MACHINE_SCRATCH_ADDR;
|
|
|
|
|
|
|
|
status = grub_vbe_bios_get_controller_info (scratch);
|
|
|
|
if (status != GRUB_VBE_STATUS_OK)
|
|
|
|
return grub_error (GRUB_ERR_IO, "Can't get controller info.");
|
|
|
|
grub_memcpy (vbe_control_info, scratch, sizeof (struct grub_vbe_info_block));
|
|
|
|
|
|
|
|
status = grub_vbe_bios_get_mode (scratch);
|
|
|
|
*vbe_mode = *(grub_uint32_t *) scratch;
|
|
|
|
if (status != GRUB_VBE_STATUS_OK)
|
|
|
|
return grub_error (GRUB_ERR_IO, "can't get VBE mode");
|
|
|
|
|
|
|
|
/* get_mode_info isn't available for mode 3. */
|
|
|
|
if (*vbe_mode == 3)
|
|
|
|
{
|
|
|
|
grub_memset (vbe_mode_info, 0, sizeof (struct grub_vbe_mode_info_block));
|
|
|
|
vbe_mode_info->memory_model = GRUB_VBE_MEMORY_MODEL_TEXT;
|
|
|
|
vbe_mode_info->x_resolution = 80;
|
|
|
|
vbe_mode_info->y_resolution = 25;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
status = grub_vbe_bios_get_mode_info (*vbe_mode, scratch);
|
|
|
|
if (status != GRUB_VBE_STATUS_OK)
|
|
|
|
return grub_error (GRUB_ERR_IO, "can't get mode info");
|
|
|
|
grub_memcpy (vbe_mode_info, scratch,
|
|
|
|
sizeof (struct grub_vbe_mode_info_block));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: retrieve those. */
|
|
|
|
*vbe_interface_seg = 0;
|
|
|
|
*vbe_interface_off = 0;
|
|
|
|
*vbe_interface_len = 0;
|
|
|
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
#endif
|
2009-11-25 22:39:59 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_multiboot_boot (void)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_size_t mbi_size;
|
|
|
|
grub_err_t err;
|
2009-11-25 22:39:59 +00:00
|
|
|
struct grub_relocator32_state state =
|
|
|
|
{
|
2009-12-24 14:09:06 +00:00
|
|
|
.eax = MULTIBOOT_BOOTLOADER_MAGIC,
|
2009-11-25 22:39:59 +00:00
|
|
|
.ecx = 0,
|
|
|
|
.edx = 0,
|
|
|
|
.eip = grub_multiboot_payload_eip,
|
2009-12-13 17:10:53 +00:00
|
|
|
/* Set esp to some random location in low memory to avoid breaking
|
|
|
|
non-compliant kernels. */
|
|
|
|
.esp = 0x7ff00
|
2009-11-25 22:39:59 +00:00
|
|
|
};
|
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
mbi_size = grub_multiboot_get_mbi_size ();
|
|
|
|
if (alloc_mbi < mbi_size)
|
|
|
|
{
|
|
|
|
grub_multiboot_payload_orig
|
|
|
|
= grub_relocator32_realloc (grub_multiboot_payload_orig,
|
|
|
|
grub_multiboot_pure_size + mbi_size);
|
|
|
|
if (!grub_multiboot_payload_orig)
|
|
|
|
return grub_errno;
|
|
|
|
alloc_mbi = mbi_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
state.ebx = grub_multiboot_payload_dest + grub_multiboot_pure_size;
|
|
|
|
err = grub_multiboot_make_mbi (grub_multiboot_payload_orig,
|
|
|
|
grub_multiboot_payload_dest,
|
|
|
|
grub_multiboot_pure_size, mbi_size);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2010-01-15 20:11:51 +00:00
|
|
|
#ifdef GRUB_MACHINE_EFI
|
|
|
|
if (! grub_efi_finish_boot_services ())
|
|
|
|
grub_fatal ("cannot exit boot services");
|
|
|
|
#endif
|
|
|
|
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_relocator32_boot (grub_multiboot_payload_orig,
|
|
|
|
grub_multiboot_payload_dest,
|
|
|
|
state);
|
2003-11-16 16:36:39 +00:00
|
|
|
|
|
|
|
/* Not reached. */
|
2004-04-04 13:46:03 +00:00
|
|
|
return GRUB_ERR_NONE;
|
2003-11-16 16:36:39 +00:00
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_multiboot_unload (void)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_multiboot_free_mbi ();
|
|
|
|
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_relocator32_free (grub_multiboot_payload_orig);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
alloc_mbi = 0;
|
|
|
|
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_multiboot_payload_orig = NULL;
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_unref (my_mod);
|
2003-11-16 16:36:39 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
return GRUB_ERR_NONE;
|
2003-11-16 16:36:39 +00:00
|
|
|
}
|
|
|
|
|
2009-02-27 23:04:46 +00:00
|
|
|
#define MULTIBOOT_LOAD_ELF64
|
|
|
|
#include "multiboot_elfxx.c"
|
|
|
|
#undef MULTIBOOT_LOAD_ELF64
|
2005-07-31 16:12:29 +00:00
|
|
|
|
2009-02-27 23:04:46 +00:00
|
|
|
#define MULTIBOOT_LOAD_ELF32
|
|
|
|
#include "multiboot_elfxx.c"
|
|
|
|
#undef MULTIBOOT_LOAD_ELF32
|
2005-07-31 16:12:29 +00:00
|
|
|
|
|
|
|
/* Load ELF32 or ELF64. */
|
|
|
|
static grub_err_t
|
|
|
|
grub_multiboot_load_elf (grub_file_t file, void *buffer)
|
|
|
|
{
|
|
|
|
if (grub_multiboot_is_elf32 (buffer))
|
|
|
|
return grub_multiboot_load_elf32 (file, buffer);
|
|
|
|
else if (grub_multiboot_is_elf64 (buffer))
|
|
|
|
return grub_multiboot_load_elf64 (file, buffer);
|
2008-02-19 16:40:45 +00:00
|
|
|
|
2005-07-31 16:12:29 +00:00
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_OS, "unknown ELF class");
|
|
|
|
}
|
|
|
|
|
2003-11-16 16:36:39 +00:00
|
|
|
void
|
2007-07-25 00:44:03 +00:00
|
|
|
grub_multiboot (int argc, char *argv[])
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_t file = 0;
|
2010-01-10 17:58:18 +00:00
|
|
|
char buffer[MULTIBOOT_SEARCH];
|
2009-11-13 13:34:51 +00:00
|
|
|
struct multiboot_header *header;
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_ssize_t len;
|
2003-11-16 16:36:39 +00:00
|
|
|
|
2005-07-31 16:12:29 +00:00
|
|
|
grub_loader_unset ();
|
2008-02-19 16:40:45 +00:00
|
|
|
|
2003-11-16 16:36:39 +00:00
|
|
|
if (argc == 0)
|
|
|
|
{
|
2009-12-24 22:53:05 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "no kernel specified");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-22 17:28:59 +00:00
|
|
|
file = grub_gzfile_open (argv[0], 1);
|
2005-07-31 16:12:29 +00:00
|
|
|
if (! file)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2009-12-24 22:53:05 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "couldn't open file");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2007-07-25 00:44:03 +00:00
|
|
|
len = grub_file_read (file, buffer, MULTIBOOT_SEARCH);
|
2003-11-16 16:36:39 +00:00
|
|
|
if (len < 32)
|
|
|
|
{
|
2009-12-24 22:53:05 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_OS, "file too small");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look for the multiboot header in the buffer. The header should
|
|
|
|
be at least 12 bytes and aligned on a 4-byte boundary. */
|
2009-11-13 13:34:51 +00:00
|
|
|
for (header = (struct multiboot_header *) buffer;
|
2003-11-16 16:36:39 +00:00
|
|
|
((char *) header <= buffer + len - 12) || (header = 0);
|
2009-11-13 13:34:51 +00:00
|
|
|
header = (struct multiboot_header *) ((char *) header + 4))
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2009-12-24 14:09:06 +00:00
|
|
|
if (header->magic == MULTIBOOT_HEADER_MAGIC
|
2003-11-16 16:36:39 +00:00
|
|
|
&& !(header->magic + header->flags + header->checksum))
|
2005-07-31 16:12:29 +00:00
|
|
|
break;
|
2003-11-16 16:36:39 +00:00
|
|
|
}
|
2008-02-19 16:40:45 +00:00
|
|
|
|
2003-11-16 16:36:39 +00:00
|
|
|
if (header == 0)
|
|
|
|
{
|
2009-12-24 22:53:05 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "no multiboot header found");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2010-01-07 19:55:16 +00:00
|
|
|
if (header->flags & UNSUPPORTED_FLAGS)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2005-07-31 16:12:29 +00:00
|
|
|
grub_error (GRUB_ERR_UNKNOWN_OS,
|
2009-12-24 22:53:05 +00:00
|
|
|
"unsupported flag: 0x%x", header->flags);
|
2005-02-14 18:41:33 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_relocator32_free (grub_multiboot_payload_orig);
|
|
|
|
grub_multiboot_payload_orig = NULL;
|
2008-08-12 15:40:26 +00:00
|
|
|
|
2009-08-14 15:19:24 +00:00
|
|
|
/* Skip filename. */
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_multiboot_init_mbi (argc - 1, argv + 1);
|
2008-08-17 16:32:18 +00:00
|
|
|
|
2008-02-19 16:40:45 +00:00
|
|
|
if (header->flags & MULTIBOOT_AOUT_KLUDGE)
|
|
|
|
{
|
2008-08-12 15:40:26 +00:00
|
|
|
int offset = ((char *) header - buffer -
|
|
|
|
(header->header_addr - header->load_addr));
|
|
|
|
int load_size = ((header->load_end_addr == 0) ? file->size - offset :
|
|
|
|
header->load_end_addr - header->load_addr);
|
|
|
|
|
|
|
|
if (header->bss_end_addr)
|
2009-03-10 23:47:51 +00:00
|
|
|
code_size = (header->bss_end_addr - header->load_addr);
|
2008-08-12 15:40:26 +00:00
|
|
|
else
|
2009-03-10 23:47:51 +00:00
|
|
|
code_size = load_size;
|
2008-08-12 15:40:26 +00:00
|
|
|
grub_multiboot_payload_dest = header->load_addr;
|
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_multiboot_pure_size += code_size;
|
2008-08-12 15:40:26 +00:00
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
/* Allocate a bit more to avoid relocations in most cases. */
|
|
|
|
alloc_mbi = grub_multiboot_get_mbi_size () + 65536;
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_multiboot_payload_orig
|
2010-01-10 17:58:18 +00:00
|
|
|
= grub_relocator32_alloc (grub_multiboot_pure_size + alloc_mbi);
|
2009-11-25 22:39:59 +00:00
|
|
|
|
|
|
|
if (! grub_multiboot_payload_orig)
|
|
|
|
goto fail;
|
2008-08-12 15:40:26 +00:00
|
|
|
|
2009-12-13 17:10:53 +00:00
|
|
|
if ((grub_file_seek (file, offset)) == (grub_off_t) -1)
|
2008-08-12 15:40:26 +00:00
|
|
|
goto fail;
|
|
|
|
|
2008-08-31 20:43:03 +00:00
|
|
|
grub_file_read (file, (void *) grub_multiboot_payload_orig, load_size);
|
2008-08-12 15:40:26 +00:00
|
|
|
if (grub_errno)
|
|
|
|
goto fail;
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2008-08-12 15:40:26 +00:00
|
|
|
if (header->bss_end_addr)
|
2008-08-31 20:43:03 +00:00
|
|
|
grub_memset ((void *) (grub_multiboot_payload_orig + load_size), 0,
|
2008-08-12 15:40:26 +00:00
|
|
|
header->bss_end_addr - header->load_addr - load_size);
|
2009-06-10 21:04:23 +00:00
|
|
|
|
2009-11-25 22:39:59 +00:00
|
|
|
grub_multiboot_payload_eip = header->entry_addr;
|
2008-08-12 15:40:26 +00:00
|
|
|
|
2008-02-19 16:40:45 +00:00
|
|
|
}
|
|
|
|
else if (grub_multiboot_load_elf (file, buffer) != GRUB_ERR_NONE)
|
2005-07-31 16:12:29 +00:00
|
|
|
goto fail;
|
2008-02-19 16:40:45 +00:00
|
|
|
|
2010-01-14 14:54:14 +00:00
|
|
|
if (header->flags & MULTIBOOT_VIDEO_MODE)
|
|
|
|
{
|
|
|
|
switch (header->mode_type)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
grub_env_set ("gfxpayload", "text");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
char buf[sizeof ("XXXXXXXXXXxXXXXXXXXXXxXXXXXXXXXX,XXXXXXXXXXxXXXXXXXXXX,auto")];
|
|
|
|
if (header->depth && header->width && header->height)
|
|
|
|
grub_sprintf (buf, "%dx%dx%d,%dx%d,auto", header->width,
|
|
|
|
header->height, header->depth, header->width,
|
|
|
|
header->height);
|
|
|
|
else if (header->width && header->height)
|
|
|
|
grub_sprintf (buf, "%dx%d,auto", header->width, header->height);
|
|
|
|
else
|
|
|
|
grub_sprintf (buf, "auto");
|
|
|
|
|
|
|
|
grub_env_set ("gfxpayload", buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-16 15:25:43 +00:00
|
|
|
accepts_video = !!(header->flags & MULTIBOOT_VIDEO_MODE);
|
2010-01-14 14:54:14 +00:00
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_multiboot_set_bootdev ();
|
2003-11-16 16:36:39 +00:00
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_loader_set (grub_multiboot_boot, grub_multiboot_unload, 0);
|
2003-11-16 16:36:39 +00:00
|
|
|
|
|
|
|
fail:
|
|
|
|
if (file)
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_close (file);
|
2003-11-16 16:36:39 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_errno != GRUB_ERR_NONE)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_relocator32_free (grub_multiboot_payload_orig);
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_unref (my_mod);
|
2003-11-16 16:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-07-25 00:44:03 +00:00
|
|
|
grub_module (int argc, char *argv[])
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_t file = 0;
|
2010-01-10 17:58:18 +00:00
|
|
|
grub_ssize_t size;
|
|
|
|
char *module = 0;
|
|
|
|
grub_err_t err;
|
2003-11-16 16:36:39 +00:00
|
|
|
|
|
|
|
if (argc == 0)
|
|
|
|
{
|
2009-12-24 22:53:05 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "no module specified");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
if (!grub_multiboot_payload_orig)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2008-02-19 16:40:45 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT,
|
2009-12-24 22:53:05 +00:00
|
|
|
"you need to load the multiboot kernel first");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-22 17:28:59 +00:00
|
|
|
file = grub_gzfile_open (argv[0], 1);
|
2005-07-31 16:12:29 +00:00
|
|
|
if (! file)
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
size = grub_file_size (file);
|
2007-07-25 00:44:03 +00:00
|
|
|
module = grub_memalign (MULTIBOOT_MOD_ALIGN, size);
|
2005-07-31 16:12:29 +00:00
|
|
|
if (! module)
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
|
2010-01-10 17:58:18 +00:00
|
|
|
err = grub_multiboot_add_module ((grub_addr_t) module, size,
|
|
|
|
argc - 1, argv + 1);
|
|
|
|
if (err)
|
|
|
|
goto fail;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_file_read (file, module, size) != size)
|
2003-11-16 16:36:39 +00:00
|
|
|
{
|
2009-12-24 22:53:05 +00:00
|
|
|
grub_error (GRUB_ERR_FILE_READ_ERROR, "couldn't read file");
|
2003-11-16 16:36:39 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
2008-02-19 16:40:45 +00:00
|
|
|
|
2003-11-16 16:36:39 +00:00
|
|
|
fail:
|
|
|
|
if (file)
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_close (file);
|
2003-11-16 16:36:39 +00:00
|
|
|
}
|
2010-01-10 17:58:18 +00:00
|
|
|
|