2009-10-16 16:13:18 +00:00
|
|
|
|
/* linux.c - boot Linux */
|
|
|
|
|
/*
|
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2010-01-20 01:29:06 +00:00
|
|
|
|
* Copyright (C) 2003,2004,2005,2007,2009,2010 Free Software Foundation, Inc.
|
2009-10-16 16:13:18 +00:00
|
|
|
|
*
|
|
|
|
|
* GRUB 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.
|
|
|
|
|
*
|
|
|
|
|
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <grub/elf.h>
|
|
|
|
|
#include <grub/elfload.h>
|
|
|
|
|
#include <grub/loader.h>
|
|
|
|
|
#include <grub/dl.h>
|
|
|
|
|
#include <grub/mm.h>
|
|
|
|
|
#include <grub/misc.h>
|
|
|
|
|
#include <grub/command.h>
|
|
|
|
|
#include <grub/mips/relocator.h>
|
2010-09-04 15:10:10 +00:00
|
|
|
|
#include <grub/memory.h>
|
2010-01-20 07:01:48 +00:00
|
|
|
|
#include <grub/i18n.h>
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#include <grub/lib/cmdline.h>
|
2013-03-22 20:01:28 +00:00
|
|
|
|
#include <grub/linux.h>
|
2009-12-07 15:16:10 +00:00
|
|
|
|
|
2011-04-11 21:01:51 +00:00
|
|
|
|
GRUB_MOD_LICENSE ("GPLv3+");
|
|
|
|
|
|
2012-02-10 15:48:48 +00:00
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
|
|
|
|
|
2009-12-07 15:16:10 +00:00
|
|
|
|
/* For frequencies. */
|
2009-12-09 16:58:48 +00:00
|
|
|
|
#include <grub/machine/time.h>
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2011-02-19 12:18:05 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2011-05-13 14:36:41 +00:00
|
|
|
|
#include <grub/pci.h>
|
2011-01-18 14:28:44 +00:00
|
|
|
|
#include <grub/machine/kernel.h>
|
|
|
|
|
|
|
|
|
|
const char loongson_machtypes[][60] =
|
|
|
|
|
{
|
|
|
|
|
[GRUB_ARCH_MACHINE_YEELOONG] = "machtype=lemote-yeeloong-2f-8.9inches",
|
2011-10-30 18:30:04 +00:00
|
|
|
|
[GRUB_ARCH_MACHINE_FULOONG2F] = "machtype=lemote-fuloong-2f-box",
|
2011-08-19 20:46:11 +00:00
|
|
|
|
[GRUB_ARCH_MACHINE_FULOONG2E] = "machtype=lemote-fuloong-2e-unknown"
|
2011-01-18 14:28:44 +00:00
|
|
|
|
};
|
2010-11-05 18:48:55 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-10-16 16:13:18 +00:00
|
|
|
|
static grub_dl_t my_mod;
|
|
|
|
|
|
|
|
|
|
static int loaded;
|
|
|
|
|
|
|
|
|
|
static grub_size_t linux_size;
|
|
|
|
|
|
2010-01-23 12:30:24 +00:00
|
|
|
|
static struct grub_relocator *relocator;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
static grub_uint8_t *playground;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
static grub_addr_t target_addr, entry_addr;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
static char *params;
|
|
|
|
|
#else
|
2009-11-29 00:09:30 +00:00
|
|
|
|
static int linux_argc;
|
2011-05-13 14:36:41 +00:00
|
|
|
|
static grub_off_t argv_off;
|
2011-05-15 00:23:36 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2011-05-13 14:36:41 +00:00
|
|
|
|
static grub_off_t envp_off;
|
|
|
|
|
#endif
|
2009-11-29 02:24:11 +00:00
|
|
|
|
static grub_off_t rd_addr_arg_off, rd_size_arg_off;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#endif
|
2009-11-29 02:24:11 +00:00
|
|
|
|
static int initrd_loaded = 0;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_linux_boot (void)
|
|
|
|
|
{
|
|
|
|
|
struct grub_relocator32_state state;
|
|
|
|
|
|
2011-05-17 13:34:40 +00:00
|
|
|
|
grub_memset (&state, 0, sizeof (state));
|
|
|
|
|
|
2009-10-16 16:13:18 +00:00
|
|
|
|
/* Boot the kernel. */
|
|
|
|
|
state.gpr[1] = entry_addr;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
|
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
{
|
|
|
|
|
grub_err_t err;
|
|
|
|
|
grub_relocator_chunk_t ch;
|
2011-05-17 17:32:51 +00:00
|
|
|
|
grub_uint32_t *memsize;
|
|
|
|
|
grub_uint32_t *magic;
|
|
|
|
|
char *str;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
|
|
|
|
|
err = grub_relocator_alloc_chunk_addr (relocator, &ch,
|
2011-05-17 17:32:51 +00:00
|
|
|
|
((16 << 20) - 264),
|
|
|
|
|
grub_strlen (params) + 1 + 8);
|
2011-05-17 13:34:40 +00:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2011-05-17 17:32:51 +00:00
|
|
|
|
memsize = get_virtual_current_address (ch);
|
|
|
|
|
magic = memsize + 1;
|
|
|
|
|
*memsize = grub_mmap_get_lower ();
|
|
|
|
|
*magic = 0x12345678;
|
|
|
|
|
str = (char *) (magic + 1);
|
|
|
|
|
grub_strcpy (str, params);
|
2011-05-17 13:34:40 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef GRUB_MACHINE_MIPS_QEMU_MIPS
|
2009-11-29 00:09:30 +00:00
|
|
|
|
state.gpr[4] = linux_argc;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
state.gpr[5] = target_addr + argv_off;
|
2011-05-15 00:23:36 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2009-11-29 02:24:11 +00:00
|
|
|
|
state.gpr[6] = target_addr + envp_off;
|
2011-05-13 14:36:41 +00:00
|
|
|
|
#else
|
|
|
|
|
state.gpr[6] = 0;
|
|
|
|
|
#endif
|
|
|
|
|
state.gpr[7] = 0;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#endif
|
2009-10-16 16:13:18 +00:00
|
|
|
|
state.jumpreg = 1;
|
2010-01-23 12:30:24 +00:00
|
|
|
|
grub_relocator32_boot (relocator, state);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_linux_unload (void)
|
|
|
|
|
{
|
2010-01-23 12:30:24 +00:00
|
|
|
|
grub_relocator_unload (relocator);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
grub_dl_unref (my_mod);
|
|
|
|
|
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
grub_free (params);
|
|
|
|
|
params = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-10-16 16:13:18 +00:00
|
|
|
|
loaded = 0;
|
|
|
|
|
|
2010-01-23 12:30:24 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
2012-02-08 18:26:01 +00:00
|
|
|
|
grub_linux_load32 (grub_elf_t elf, const char *filename,
|
|
|
|
|
void **extra_mem, grub_size_t extra_size)
|
2009-10-16 16:13:18 +00:00
|
|
|
|
{
|
|
|
|
|
Elf32_Addr base;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
int extraoff;
|
2010-01-23 12:30:24 +00:00
|
|
|
|
grub_err_t err;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
/* Linux's entry point incorrectly contains a virtual address. */
|
2010-04-22 00:45:06 +00:00
|
|
|
|
entry_addr = elf->ehdr.ehdr32.e_entry;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2013-03-02 15:45:57 +00:00
|
|
|
|
linux_size = grub_elf32_size (elf, &base, 0);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
if (linux_size == 0)
|
|
|
|
|
return grub_errno;
|
|
|
|
|
target_addr = base;
|
|
|
|
|
/* Pad it; the kernel scribbles over memory beyond its load address. */
|
|
|
|
|
linux_size += 0x100000;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
linux_size = ALIGN_UP (base + linux_size, 4) - base;
|
|
|
|
|
extraoff = linux_size;
|
|
|
|
|
linux_size += extra_size;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2010-01-23 12:30:24 +00:00
|
|
|
|
relocator = grub_relocator_new ();
|
|
|
|
|
if (!relocator)
|
2009-10-16 16:13:18 +00:00
|
|
|
|
return grub_errno;
|
|
|
|
|
|
2010-04-22 00:45:06 +00:00
|
|
|
|
{
|
|
|
|
|
grub_relocator_chunk_t ch;
|
|
|
|
|
err = grub_relocator_alloc_chunk_addr (relocator, &ch,
|
|
|
|
|
target_addr & 0x1fffffff,
|
|
|
|
|
linux_size);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
playground = get_virtual_current_address (ch);
|
|
|
|
|
}
|
2010-01-23 12:30:24 +00:00
|
|
|
|
|
2009-10-19 11:00:34 +00:00
|
|
|
|
*extra_mem = playground + extraoff;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
/* Now load the segments into the area we claimed. */
|
2013-03-02 15:45:57 +00:00
|
|
|
|
return grub_elf32_load (elf, filename, playground - base, GRUB_ELF_LOAD_FLAGS_NONE, 0, 0);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
2012-02-08 18:26:01 +00:00
|
|
|
|
grub_linux_load64 (grub_elf_t elf, const char *filename,
|
|
|
|
|
void **extra_mem, grub_size_t extra_size)
|
2009-10-16 16:13:18 +00:00
|
|
|
|
{
|
|
|
|
|
Elf64_Addr base;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
int extraoff;
|
2010-01-23 12:30:24 +00:00
|
|
|
|
grub_err_t err;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
/* Linux's entry point incorrectly contains a virtual address. */
|
2010-04-22 00:45:06 +00:00
|
|
|
|
entry_addr = elf->ehdr.ehdr64.e_entry;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2013-03-02 15:45:57 +00:00
|
|
|
|
linux_size = grub_elf64_size (elf, &base, 0);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
if (linux_size == 0)
|
|
|
|
|
return grub_errno;
|
|
|
|
|
target_addr = base;
|
|
|
|
|
/* Pad it; the kernel scribbles over memory beyond its load address. */
|
|
|
|
|
linux_size += 0x100000;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
linux_size = ALIGN_UP (base + linux_size, 4) - base;
|
|
|
|
|
extraoff = linux_size;
|
|
|
|
|
linux_size += extra_size;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2010-01-23 12:30:24 +00:00
|
|
|
|
relocator = grub_relocator_new ();
|
|
|
|
|
if (!relocator)
|
2009-10-16 16:13:18 +00:00
|
|
|
|
return grub_errno;
|
|
|
|
|
|
2010-04-22 00:45:06 +00:00
|
|
|
|
{
|
|
|
|
|
grub_relocator_chunk_t ch;
|
|
|
|
|
err = grub_relocator_alloc_chunk_addr (relocator, &ch,
|
|
|
|
|
target_addr & 0x1fffffff,
|
|
|
|
|
linux_size);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
playground = get_virtual_current_address (ch);
|
|
|
|
|
}
|
2010-01-23 12:30:24 +00:00
|
|
|
|
|
2009-10-19 11:00:34 +00:00
|
|
|
|
*extra_mem = playground + extraoff;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
/* Now load the segments into the area we claimed. */
|
2013-03-02 15:45:57 +00:00
|
|
|
|
return grub_elf64_load (elf, filename, playground - base, GRUB_ELF_LOAD_FLAGS_NONE, 0, 0);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_cmd_linux (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
|
int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
grub_elf_t elf = 0;
|
|
|
|
|
int size;
|
2009-12-02 13:05:56 +00:00
|
|
|
|
void *extra = NULL;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#ifndef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
int i;
|
2011-05-13 14:36:41 +00:00
|
|
|
|
grub_uint32_t *linux_argv;
|
|
|
|
|
char *linux_args;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#endif
|
2009-10-19 11:00:34 +00:00
|
|
|
|
grub_err_t err;
|
2011-05-15 00:23:36 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2011-05-13 14:36:41 +00:00
|
|
|
|
char *linux_envs;
|
|
|
|
|
grub_uint32_t *linux_envp;
|
|
|
|
|
#endif
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
if (argc == 0)
|
2012-02-08 18:26:01 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2013-11-20 01:28:29 +00:00
|
|
|
|
elf = grub_elf_open (argv[0], GRUB_FILE_TYPE_LINUX_KERNEL);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
if (! elf)
|
2009-10-19 11:00:34 +00:00
|
|
|
|
return grub_errno;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
if (elf->ehdr.ehdr32.e_type != ET_EXEC)
|
|
|
|
|
{
|
2009-10-19 11:00:34 +00:00
|
|
|
|
grub_elf_close (elf);
|
|
|
|
|
return grub_error (GRUB_ERR_UNKNOWN_OS,
|
2012-02-08 18:26:01 +00:00
|
|
|
|
N_("this ELF file is not of the right type"));
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Release the previously used memory. */
|
|
|
|
|
grub_loader_unset ();
|
2009-10-19 11:00:34 +00:00
|
|
|
|
loaded = 0;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
size = 0;
|
|
|
|
|
#else
|
2009-11-29 00:09:30 +00:00
|
|
|
|
/* For arguments. */
|
|
|
|
|
linux_argc = argc;
|
2011-02-19 12:18:05 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2010-11-05 18:48:55 +00:00
|
|
|
|
linux_argc++;
|
|
|
|
|
#endif
|
2009-11-29 02:24:11 +00:00
|
|
|
|
/* Main arguments. */
|
2009-12-07 15:51:21 +00:00
|
|
|
|
size = (linux_argc) * sizeof (grub_uint32_t);
|
2009-11-29 02:24:11 +00:00
|
|
|
|
/* Initrd address and size. */
|
|
|
|
|
size += 2 * sizeof (grub_uint32_t);
|
|
|
|
|
/* NULL terminator. */
|
|
|
|
|
size += sizeof (grub_uint32_t);
|
|
|
|
|
|
2009-12-07 15:51:21 +00:00
|
|
|
|
/* First argument is always "a0". */
|
2009-11-29 02:24:11 +00:00
|
|
|
|
size += ALIGN_UP (sizeof ("a0"), 4);
|
|
|
|
|
/* Normal arguments. */
|
2009-10-16 16:13:18 +00:00
|
|
|
|
for (i = 1; i < argc; i++)
|
2009-10-19 11:00:34 +00:00
|
|
|
|
size += ALIGN_UP (grub_strlen (argv[i]) + 1, 4);
|
2011-02-19 12:18:05 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2011-01-18 14:28:44 +00:00
|
|
|
|
size += ALIGN_UP (sizeof (loongson_machtypes[0]), 4);
|
2010-11-05 18:48:55 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-11-29 02:24:11 +00:00
|
|
|
|
/* rd arguments. */
|
|
|
|
|
size += ALIGN_UP (sizeof ("rd_start=0xXXXXXXXXXXXXXXXX"), 4);
|
|
|
|
|
size += ALIGN_UP (sizeof ("rd_size=0xXXXXXXXXXXXXXXXX"), 4);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2009-11-29 00:09:30 +00:00
|
|
|
|
/* For the environment. */
|
2009-12-07 15:16:10 +00:00
|
|
|
|
size += sizeof (grub_uint32_t);
|
|
|
|
|
size += 4 * sizeof (grub_uint32_t);
|
|
|
|
|
size += ALIGN_UP (sizeof ("memsize=XXXXXXXXXXXXXXXXXXXX"), 4)
|
|
|
|
|
+ ALIGN_UP (sizeof ("highmemsize=XXXXXXXXXXXXXXXXXXXX"), 4)
|
|
|
|
|
+ ALIGN_UP (sizeof ("busclock=XXXXXXXXXX"), 4)
|
|
|
|
|
+ ALIGN_UP (sizeof ("cpuclock=XXXXXXXXXX"), 4);
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#endif
|
2009-11-29 00:09:30 +00:00
|
|
|
|
|
2009-10-16 16:13:18 +00:00
|
|
|
|
if (grub_elf_is_elf32 (elf))
|
2012-02-08 18:26:01 +00:00
|
|
|
|
err = grub_linux_load32 (elf, argv[0], &extra, size);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
else
|
|
|
|
|
if (grub_elf_is_elf64 (elf))
|
2012-02-08 18:26:01 +00:00
|
|
|
|
err = grub_linux_load64 (elf, argv[0], &extra, size);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
else
|
2012-02-26 16:28:05 +00:00
|
|
|
|
err = grub_error (GRUB_ERR_BAD_OS, N_("invalid arch-dependent ELF magic"));
|
2009-10-19 11:00:34 +00:00
|
|
|
|
|
|
|
|
|
grub_elf_close (elf);
|
|
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2009-11-29 00:09:30 +00:00
|
|
|
|
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
/* Create kernel command line. */
|
|
|
|
|
size = grub_loader_cmdline_size(argc, argv);
|
|
|
|
|
params = grub_malloc (size + sizeof (LINUX_IMAGE));
|
|
|
|
|
if (! params)
|
|
|
|
|
{
|
|
|
|
|
grub_linux_unload ();
|
|
|
|
|
return grub_errno;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
grub_memcpy (params, LINUX_IMAGE, sizeof (LINUX_IMAGE));
|
|
|
|
|
grub_create_loader_cmdline (argc, argv, params + sizeof (LINUX_IMAGE) - 1,
|
|
|
|
|
size);
|
|
|
|
|
#else
|
2009-10-19 11:00:34 +00:00
|
|
|
|
linux_argv = extra;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
argv_off = (grub_uint8_t *) linux_argv - (grub_uint8_t *) playground;
|
2009-12-07 15:51:21 +00:00
|
|
|
|
extra = linux_argv + (linux_argc + 1 + 2);
|
2009-10-19 11:00:34 +00:00
|
|
|
|
linux_args = extra;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
|
|
|
|
|
grub_memcpy (linux_args, "a0", sizeof ("a0"));
|
2009-10-19 16:07:58 +00:00
|
|
|
|
*linux_argv = (grub_uint8_t *) linux_args - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
linux_argv++;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
linux_args += ALIGN_UP (sizeof ("a0"), 4);
|
|
|
|
|
|
2017-02-07 01:10:14 +00:00
|
|
|
|
char *params = linux_args;
|
|
|
|
|
|
2011-02-19 12:18:05 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2011-01-18 14:28:44 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned mtype = grub_arch_machine;
|
|
|
|
|
if (mtype >= ARRAY_SIZE (loongson_machtypes))
|
|
|
|
|
mtype = 0;
|
|
|
|
|
/* In Loongson platform, it is the responsibility of the bootloader/firmware
|
|
|
|
|
to supply the OS kernel with machine type information. */
|
|
|
|
|
grub_memcpy (linux_args, loongson_machtypes[mtype],
|
|
|
|
|
sizeof (loongson_machtypes[mtype]));
|
|
|
|
|
*linux_argv = (grub_uint8_t *) linux_args - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
|
|
|
|
linux_argv++;
|
|
|
|
|
linux_args += ALIGN_UP (sizeof (loongson_machtypes[mtype]), 4);
|
|
|
|
|
}
|
2010-11-05 18:48:55 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-10-19 11:00:34 +00:00
|
|
|
|
for (i = 1; i < argc; i++)
|
2009-10-16 16:13:18 +00:00
|
|
|
|
{
|
2009-11-29 00:09:30 +00:00
|
|
|
|
grub_memcpy (linux_args, argv[i], grub_strlen (argv[i]) + 1);
|
2009-10-19 16:07:58 +00:00
|
|
|
|
*linux_argv = (grub_uint8_t *) linux_args - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
linux_argv++;
|
2009-11-29 00:09:30 +00:00
|
|
|
|
linux_args += ALIGN_UP (grub_strlen (argv[i]) + 1, 4);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
2009-11-29 02:24:11 +00:00
|
|
|
|
|
2017-02-07 01:10:14 +00:00
|
|
|
|
*linux_args = '\0';
|
|
|
|
|
|
|
|
|
|
err = grub_verify_string (params, GRUB_VERIFY_KERNEL_CMDLINE);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
2009-11-29 02:24:11 +00:00
|
|
|
|
/* Reserve space for rd arguments. */
|
|
|
|
|
rd_addr_arg_off = (grub_uint8_t *) linux_args - (grub_uint8_t *) playground;
|
|
|
|
|
linux_args += ALIGN_UP (sizeof ("rd_start=0xXXXXXXXXXXXXXXXX"), 4);
|
|
|
|
|
*linux_argv = 0;
|
|
|
|
|
linux_argv++;
|
|
|
|
|
|
|
|
|
|
rd_size_arg_off = (grub_uint8_t *) linux_args - (grub_uint8_t *) playground;
|
|
|
|
|
linux_args += ALIGN_UP (sizeof ("rd_size=0xXXXXXXXXXXXXXXXX"), 4);
|
|
|
|
|
*linux_argv = 0;
|
|
|
|
|
linux_argv++;
|
|
|
|
|
|
2009-11-29 00:09:30 +00:00
|
|
|
|
*linux_argv = 0;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
|
2009-10-19 16:07:58 +00:00
|
|
|
|
extra = linux_args;
|
2009-11-29 00:09:30 +00:00
|
|
|
|
|
2011-05-15 00:23:36 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_LOONGSON
|
2009-10-19 16:07:58 +00:00
|
|
|
|
linux_envp = extra;
|
2009-11-29 02:24:11 +00:00
|
|
|
|
envp_off = (grub_uint8_t *) linux_envp - (grub_uint8_t *) playground;
|
2009-12-07 15:16:10 +00:00
|
|
|
|
linux_envs = (char *) (linux_envp + 5);
|
2010-01-20 08:02:01 +00:00
|
|
|
|
grub_snprintf (linux_envs, sizeof ("memsize=XXXXXXXXXXXXXXXXXXXX"),
|
2010-01-20 06:36:17 +00:00
|
|
|
|
"memsize=%lld",
|
|
|
|
|
(unsigned long long) grub_mmap_get_lower () >> 20);
|
2009-12-07 15:16:10 +00:00
|
|
|
|
linux_envp[0] = (grub_uint8_t *) linux_envs - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
|
|
|
|
linux_envs += ALIGN_UP (grub_strlen (linux_envs) + 1, 4);
|
2010-01-20 06:36:17 +00:00
|
|
|
|
grub_snprintf (linux_envs, sizeof ("highmemsize=XXXXXXXXXXXXXXXXXXXX"),
|
|
|
|
|
"highmemsize=%lld",
|
|
|
|
|
(unsigned long long) grub_mmap_get_upper () >> 20);
|
2009-12-07 15:16:10 +00:00
|
|
|
|
linux_envp[1] = (grub_uint8_t *) linux_envs - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
|
|
|
|
linux_envs += ALIGN_UP (grub_strlen (linux_envs) + 1, 4);
|
|
|
|
|
|
2010-01-20 08:02:01 +00:00
|
|
|
|
grub_snprintf (linux_envs, sizeof ("busclock=XXXXXXXXXX"),
|
2010-01-20 06:36:17 +00:00
|
|
|
|
"busclock=%d", grub_arch_busclock);
|
2009-12-07 15:16:10 +00:00
|
|
|
|
linux_envp[2] = (grub_uint8_t *) linux_envs - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
|
|
|
|
linux_envs += ALIGN_UP (grub_strlen (linux_envs) + 1, 4);
|
2010-01-20 08:02:01 +00:00
|
|
|
|
grub_snprintf (linux_envs, sizeof ("cpuclock=XXXXXXXXXX"),
|
2010-01-20 06:36:17 +00:00
|
|
|
|
"cpuclock=%d", grub_arch_cpuclock);
|
2009-12-07 15:16:10 +00:00
|
|
|
|
linux_envp[3] = (grub_uint8_t *) linux_envs - (grub_uint8_t *) playground
|
|
|
|
|
+ target_addr;
|
|
|
|
|
linux_envs += ALIGN_UP (grub_strlen (linux_envs) + 1, 4);
|
|
|
|
|
|
|
|
|
|
linux_envp[4] = 0;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#endif
|
2011-05-13 14:36:41 +00:00
|
|
|
|
#endif
|
2009-10-19 16:07:58 +00:00
|
|
|
|
|
2009-10-19 11:00:34 +00:00
|
|
|
|
grub_loader_set (grub_linux_boot, grub_linux_unload, 1);
|
2009-11-29 02:24:11 +00:00
|
|
|
|
initrd_loaded = 0;
|
2009-10-19 11:00:34 +00:00
|
|
|
|
loaded = 1;
|
|
|
|
|
grub_dl_ref (my_mod);
|
|
|
|
|
|
|
|
|
|
return GRUB_ERR_NONE;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_cmd_initrd (grub_command_t cmd __attribute__ ((unused)),
|
|
|
|
|
int argc, char *argv[])
|
|
|
|
|
{
|
2012-01-13 12:54:24 +00:00
|
|
|
|
grub_size_t size = 0;
|
2010-01-23 12:30:24 +00:00
|
|
|
|
void *initrd_src;
|
|
|
|
|
grub_addr_t initrd_dest;
|
|
|
|
|
grub_err_t err;
|
2014-10-14 16:12:15 +00:00
|
|
|
|
struct grub_linux_initrd_context initrd_ctx = { 0, 0, 0 };
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
if (argc == 0)
|
2012-02-08 18:26:01 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
|
|
|
|
if (!loaded)
|
2012-02-08 18:26:01 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("you need to load the kernel first"));
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2009-11-29 02:24:11 +00:00
|
|
|
|
if (initrd_loaded)
|
2012-01-13 12:54:24 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, "only one initrd command can be issued.");
|
2009-11-29 02:24:11 +00:00
|
|
|
|
|
2013-03-22 20:01:28 +00:00
|
|
|
|
if (grub_initrd_init (argc, argv, &initrd_ctx))
|
2012-01-13 12:54:24 +00:00
|
|
|
|
goto fail;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2013-03-22 20:01:28 +00:00
|
|
|
|
size = grub_get_initrd_size (&initrd_ctx);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2010-04-22 00:45:06 +00:00
|
|
|
|
{
|
|
|
|
|
grub_relocator_chunk_t ch;
|
|
|
|
|
|
|
|
|
|
err = grub_relocator_alloc_chunk_align (relocator, &ch,
|
2011-04-10 14:44:11 +00:00
|
|
|
|
(target_addr & 0x1fffffff)
|
|
|
|
|
+ linux_size + 0x10000,
|
|
|
|
|
(0x10000000 - size),
|
2010-04-22 00:45:06 +00:00
|
|
|
|
size, 0x10000,
|
2012-03-03 19:53:54 +00:00
|
|
|
|
GRUB_RELOCATOR_PREFERENCE_NONE, 0);
|
2010-04-22 00:45:06 +00:00
|
|
|
|
|
|
|
|
|
if (err)
|
2012-01-14 10:42:52 +00:00
|
|
|
|
goto fail;
|
2010-04-22 00:45:06 +00:00
|
|
|
|
initrd_src = get_virtual_current_address (ch);
|
|
|
|
|
initrd_dest = get_physical_target_address (ch) | 0x80000000;
|
|
|
|
|
}
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2013-03-22 20:01:28 +00:00
|
|
|
|
if (grub_initrd_load (&initrd_ctx, argv, initrd_src))
|
|
|
|
|
goto fail;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#ifdef GRUB_MACHINE_MIPS_QEMU_MIPS
|
|
|
|
|
{
|
|
|
|
|
char *tmp;
|
|
|
|
|
tmp = grub_xasprintf ("%s rd_start=0x%" PRIxGRUB_ADDR
|
|
|
|
|
" rd_size=0x%" PRIxGRUB_ADDR, params,
|
|
|
|
|
initrd_dest, size);
|
|
|
|
|
if (!tmp)
|
2012-01-14 10:42:52 +00:00
|
|
|
|
goto fail;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
grub_free (params);
|
|
|
|
|
params = tmp;
|
|
|
|
|
}
|
|
|
|
|
#else
|
2010-01-20 06:36:17 +00:00
|
|
|
|
grub_snprintf ((char *) playground + rd_addr_arg_off,
|
2010-01-20 08:02:01 +00:00
|
|
|
|
sizeof ("rd_start=0xXXXXXXXXXXXXXXXX"), "rd_start=0x%llx",
|
2010-01-23 12:30:24 +00:00
|
|
|
|
(unsigned long long) initrd_dest);
|
2009-11-29 02:24:11 +00:00
|
|
|
|
((grub_uint32_t *) (playground + argv_off))[linux_argc]
|
|
|
|
|
= target_addr + rd_addr_arg_off;
|
|
|
|
|
linux_argc++;
|
|
|
|
|
|
2010-01-20 06:36:17 +00:00
|
|
|
|
grub_snprintf ((char *) playground + rd_size_arg_off,
|
2010-01-20 08:02:01 +00:00
|
|
|
|
sizeof ("rd_size=0xXXXXXXXXXXXXXXXXX"), "rd_size=0x%llx",
|
2009-11-29 02:24:11 +00:00
|
|
|
|
(unsigned long long) size);
|
|
|
|
|
((grub_uint32_t *) (playground + argv_off))[linux_argc]
|
|
|
|
|
= target_addr + rd_size_arg_off;
|
|
|
|
|
linux_argc++;
|
2011-05-17 13:34:40 +00:00
|
|
|
|
#endif
|
2009-11-29 02:24:11 +00:00
|
|
|
|
|
|
|
|
|
initrd_loaded = 1;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2012-01-14 10:42:52 +00:00
|
|
|
|
fail:
|
2013-03-22 20:01:28 +00:00
|
|
|
|
grub_initrd_close (&initrd_ctx);
|
2009-10-16 16:13:18 +00:00
|
|
|
|
|
2012-01-14 10:42:52 +00:00
|
|
|
|
return grub_errno;
|
2009-10-16 16:13:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static grub_command_t cmd_linux, cmd_initrd;
|
|
|
|
|
|
|
|
|
|
GRUB_MOD_INIT(linux)
|
|
|
|
|
{
|
|
|
|
|
cmd_linux = grub_register_command ("linux", grub_cmd_linux,
|
2010-01-20 01:29:06 +00:00
|
|
|
|
0, N_("Load Linux."));
|
2009-10-16 16:13:18 +00:00
|
|
|
|
cmd_initrd = grub_register_command ("initrd", grub_cmd_initrd,
|
2010-01-20 01:29:06 +00:00
|
|
|
|
0, N_("Load initrd."));
|
2009-10-16 16:13:18 +00:00
|
|
|
|
my_mod = mod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GRUB_MOD_FINI(linux)
|
|
|
|
|
{
|
|
|
|
|
grub_unregister_command (cmd_linux);
|
|
|
|
|
grub_unregister_command (cmd_initrd);
|
|
|
|
|
}
|