2004-04-04 13:46:03 +00:00
|
|
|
|
/* grub-mkimage.c - make a bootable image */
|
2002-12-27 08:53:07 +00:00
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2007-07-21 23:32:33 +00:00
|
|
|
|
* Copyright (C) 2002,2003,2004,2005,2006,2007 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#include <grub/types.h>
|
|
|
|
|
#include <grub/machine/boot.h>
|
|
|
|
|
#include <grub/machine/kernel.h>
|
|
|
|
|
#include <grub/kernel.h>
|
|
|
|
|
#include <grub/disk.h>
|
|
|
|
|
#include <grub/util/misc.h>
|
|
|
|
|
#include <grub/util/resolve.h>
|
2008-01-20 23:20:36 +00:00
|
|
|
|
#include <grub/misc.h>
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
#define _GNU_SOURCE 1
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
2005-08-08 23:15:21 +00:00
|
|
|
|
#if defined(HAVE_LZO_LZO1X_H)
|
|
|
|
|
# include <lzo/lzo1x.h>
|
|
|
|
|
#elif defined(HAVE_LZO1X_H)
|
|
|
|
|
# include <lzo1x.h>
|
|
|
|
|
#endif
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
compress_kernel (char *kernel_img, size_t kernel_size,
|
|
|
|
|
char **core_img, size_t *core_size)
|
|
|
|
|
{
|
|
|
|
|
lzo_uint size;
|
|
|
|
|
char *wrkmem;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_info ("kernel_img=%p, kernel_size=0x%x", kernel_img, kernel_size);
|
|
|
|
|
if (kernel_size < GRUB_KERNEL_MACHINE_RAW_SIZE)
|
|
|
|
|
grub_util_error ("the core image is too small");
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
|
|
if (lzo_init () != LZO_E_OK)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_error ("cannot initialize LZO");
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
|
|
*core_img = xmalloc (kernel_size + kernel_size / 64 + 16 + 3);
|
|
|
|
|
wrkmem = xmalloc (LZO1X_999_MEM_COMPRESS);
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
memcpy (*core_img, kernel_img, GRUB_KERNEL_MACHINE_RAW_SIZE);
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_info ("compressing the core image");
|
2006-04-26 21:58:36 +00:00
|
|
|
|
if (lzo1x_999_compress ((const lzo_byte *) (kernel_img
|
|
|
|
|
+ GRUB_KERNEL_MACHINE_RAW_SIZE),
|
2004-04-04 13:46:03 +00:00
|
|
|
|
kernel_size - GRUB_KERNEL_MACHINE_RAW_SIZE,
|
2006-04-26 21:58:36 +00:00
|
|
|
|
(lzo_byte *) (*core_img
|
|
|
|
|
+ GRUB_KERNEL_MACHINE_RAW_SIZE),
|
2003-01-31 03:26:56 +00:00
|
|
|
|
&size, wrkmem)
|
|
|
|
|
!= LZO_E_OK)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_error ("cannot compress the kernel image");
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
|
|
|
|
free (wrkmem);
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
*core_size = (size_t) size + GRUB_KERNEL_MACHINE_RAW_SIZE;
|
2003-01-31 03:26:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
|
static void
|
2008-01-20 23:20:36 +00:00
|
|
|
|
generate_image (const char *dir, char *prefix, FILE *out, char *mods[], char *memdisk_path)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_addr_t module_addr = 0;
|
2003-01-31 03:26:56 +00:00
|
|
|
|
char *kernel_img, *boot_img, *core_img;
|
2008-01-20 23:20:36 +00:00
|
|
|
|
size_t kernel_size, boot_size, total_module_size, core_size, memdisk_size = 0;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
char *kernel_path, *boot_path;
|
|
|
|
|
unsigned num;
|
2003-01-31 03:26:56 +00:00
|
|
|
|
size_t offset;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
struct grub_util_path_list *path_list, *p, *next;
|
2005-01-04 14:01:45 +00:00
|
|
|
|
struct grub_module_info *modinfo;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
path_list = grub_util_resolve_dependencies (dir, "moddep.lst", mods);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
kernel_path = grub_util_get_path (dir, "kernel.img");
|
|
|
|
|
kernel_size = grub_util_get_image_size (kernel_path);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2005-01-04 14:01:45 +00:00
|
|
|
|
total_module_size = sizeof (struct grub_module_info);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
for (p = path_list; p; p = p->next)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
total_module_size += (grub_util_get_image_size (p->name)
|
|
|
|
|
+ sizeof (struct grub_module_header));
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_info ("the total module size is 0x%x", total_module_size);
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
2008-01-20 23:20:36 +00:00
|
|
|
|
if (memdisk_path)
|
|
|
|
|
{
|
|
|
|
|
memdisk_size = ALIGN_UP(grub_util_get_image_size (memdisk_path), 512);
|
|
|
|
|
grub_util_info ("the size of memory disk is 0x%x", memdisk_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kernel_img = xmalloc (kernel_size + total_module_size + memdisk_size);
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_load_image (kernel_path, kernel_img);
|
2005-01-04 14:01:45 +00:00
|
|
|
|
|
2007-06-21 21:01:11 +00:00
|
|
|
|
if (GRUB_KERNEL_MACHINE_PREFIX + strlen (prefix) + 1 > GRUB_KERNEL_MACHINE_DATA_END)
|
|
|
|
|
grub_util_error ("prefix too long");
|
|
|
|
|
strcpy (kernel_img + GRUB_KERNEL_MACHINE_PREFIX, prefix);
|
|
|
|
|
|
2005-01-04 14:01:45 +00:00
|
|
|
|
/* Fill in the grub_module_info structure. */
|
|
|
|
|
modinfo = (struct grub_module_info *) (kernel_img + kernel_size);
|
|
|
|
|
modinfo->magic = GRUB_MODULE_MAGIC;
|
|
|
|
|
modinfo->offset = sizeof (struct grub_module_info);
|
|
|
|
|
modinfo->size = total_module_size;
|
|
|
|
|
|
|
|
|
|
offset = kernel_size + sizeof (struct grub_module_info);
|
2003-01-31 03:26:56 +00:00
|
|
|
|
for (p = path_list; p; p = p->next)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
struct grub_module_header *header;
|
2003-01-31 03:26:56 +00:00
|
|
|
|
size_t mod_size;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
mod_size = grub_util_get_image_size (p->name);
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
header = (struct grub_module_header *) (kernel_img + offset);
|
|
|
|
|
header->offset = grub_cpu_to_le32 (sizeof (*header));
|
|
|
|
|
header->size = grub_cpu_to_le32 (mod_size + sizeof (*header));
|
2008-01-20 23:20:36 +00:00
|
|
|
|
offset += sizeof (*header);
|
|
|
|
|
|
|
|
|
|
grub_util_load_image (p->name, kernel_img + offset);
|
|
|
|
|
offset += mod_size;
|
|
|
|
|
}
|
2003-01-31 03:26:56 +00:00
|
|
|
|
|
2008-01-20 23:20:36 +00:00
|
|
|
|
if (memdisk_path)
|
|
|
|
|
{
|
|
|
|
|
grub_util_load_image (memdisk_path, kernel_img + offset);
|
|
|
|
|
offset += memdisk_size;
|
2003-01-31 03:26:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-01-20 23:20:36 +00:00
|
|
|
|
compress_kernel (kernel_img, kernel_size + total_module_size + memdisk_size,
|
2003-01-31 03:26:56 +00:00
|
|
|
|
&core_img, &core_size);
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_info ("the core size is 0x%x", core_size);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
num = ((core_size + GRUB_DISK_SECTOR_SIZE - 1) >> GRUB_DISK_SECTOR_BITS);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (num > 0xffff)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_error ("the core image is too big");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
boot_path = grub_util_get_path (dir, "diskboot.img");
|
|
|
|
|
boot_size = grub_util_get_image_size (boot_path);
|
|
|
|
|
if (boot_size != GRUB_DISK_SECTOR_SIZE)
|
|
|
|
|
grub_util_error ("diskboot.img is not one sector size");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
boot_img = grub_util_read_image (boot_path);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
/* i386 is a little endian architecture. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
*((grub_uint16_t *) (boot_img + GRUB_DISK_SECTOR_SIZE
|
2006-11-25 03:21:29 +00:00
|
|
|
|
- GRUB_BOOT_MACHINE_LIST_SIZE + 8))
|
2004-04-04 13:46:03 +00:00
|
|
|
|
= grub_cpu_to_le16 (num);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_write_image (boot_img, boot_size, out);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
free (boot_img);
|
|
|
|
|
free (boot_path);
|
|
|
|
|
|
|
|
|
|
module_addr = (path_list
|
2004-04-04 13:46:03 +00:00
|
|
|
|
? (GRUB_BOOT_MACHINE_KERNEL_ADDR + GRUB_DISK_SECTOR_SIZE
|
2002-12-27 08:53:07 +00:00
|
|
|
|
+ kernel_size)
|
|
|
|
|
: 0);
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_info ("the first module address is 0x%x", module_addr);
|
|
|
|
|
*((grub_uint32_t *) (core_img + GRUB_KERNEL_MACHINE_TOTAL_MODULE_SIZE))
|
|
|
|
|
= grub_cpu_to_le32 (total_module_size);
|
|
|
|
|
*((grub_uint32_t *) (core_img + GRUB_KERNEL_MACHINE_KERNEL_IMAGE_SIZE))
|
|
|
|
|
= grub_cpu_to_le32 (kernel_size);
|
2008-01-20 23:20:36 +00:00
|
|
|
|
*((grub_uint32_t *) (core_img + GRUB_KERNEL_MACHINE_MEMDISK_IMAGE_SIZE))
|
|
|
|
|
= grub_cpu_to_le32 (memdisk_size);
|
2004-04-04 13:46:03 +00:00
|
|
|
|
*((grub_uint32_t *) (core_img + GRUB_KERNEL_MACHINE_COMPRESSED_SIZE))
|
|
|
|
|
= grub_cpu_to_le32 (core_size - GRUB_KERNEL_MACHINE_RAW_SIZE);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_write_image (core_img, core_size, out);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
free (kernel_img);
|
2003-01-31 03:26:56 +00:00
|
|
|
|
free (core_img);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
free (kernel_path);
|
|
|
|
|
|
|
|
|
|
while (path_list)
|
|
|
|
|
{
|
|
|
|
|
next = path_list->next;
|
|
|
|
|
free ((void *) path_list->name);
|
|
|
|
|
free (path_list);
|
|
|
|
|
path_list = next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct option options[] =
|
|
|
|
|
{
|
|
|
|
|
{"directory", required_argument, 0, 'd'},
|
2007-06-21 21:01:11 +00:00
|
|
|
|
{"prefix", required_argument, 0, 'p'},
|
2008-01-20 23:20:36 +00:00
|
|
|
|
{"memdisk", required_argument, 0, 'm'},
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{"output", required_argument, 0, 'o'},
|
|
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
|
{"version", no_argument, 0, 'V'},
|
|
|
|
|
{"verbose", no_argument, 0, 'v'},
|
|
|
|
|
{0, 0, 0, 0}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
usage (int status)
|
|
|
|
|
{
|
|
|
|
|
if (status)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
fprintf (stderr, "Try ``grub-mkimage --help'' for more information.\n");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
else
|
|
|
|
|
printf ("\
|
2004-04-04 13:46:03 +00:00
|
|
|
|
Usage: grub-mkimage [OPTION]... [MODULES]\n\
|
2002-12-27 08:53:07 +00:00
|
|
|
|
\n\
|
2004-04-04 13:46:03 +00:00
|
|
|
|
Make a bootable image of GRUB.\n\
|
2002-12-27 08:53:07 +00:00
|
|
|
|
\n\
|
|
|
|
|
-d, --directory=DIR use images and modules under DIR [default=%s]\n\
|
2007-06-21 21:01:11 +00:00
|
|
|
|
-p, --prefix=DIR set grub_prefix directory [default=%s]\n\
|
2008-01-20 23:20:36 +00:00
|
|
|
|
-m, --memdisk=FILE embed FILE as a memdisk image\n\
|
2002-12-27 08:53:07 +00:00
|
|
|
|
-o, --output=FILE output a generated image to FILE [default=stdout]\n\
|
2003-01-02 20:12:33 +00:00
|
|
|
|
-h, --help display this message and exit\n\
|
2002-12-27 08:53:07 +00:00
|
|
|
|
-V, --version print version information and exit\n\
|
|
|
|
|
-v, --verbose print verbose messages\n\
|
|
|
|
|
\n\
|
2004-03-14 17:48:25 +00:00
|
|
|
|
Report bugs to <%s>.\n\
|
2007-06-21 21:01:11 +00:00
|
|
|
|
", GRUB_LIBDIR, DEFAULT_DIRECTORY, PACKAGE_BUGREPORT);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
exit (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
|
{
|
2007-06-21 21:01:11 +00:00
|
|
|
|
char *output = NULL;
|
|
|
|
|
char *dir = NULL;
|
|
|
|
|
char *prefix = NULL;
|
2008-01-20 23:20:36 +00:00
|
|
|
|
char *memdisk = NULL;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
FILE *fp = stdout;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
progname = "grub-mkimage";
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
2008-01-20 23:20:36 +00:00
|
|
|
|
int c = getopt_long (argc, argv, "d:p:m:o:hVv", options, 0);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
if (c == -1)
|
|
|
|
|
break;
|
|
|
|
|
else
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case 'o':
|
|
|
|
|
if (output)
|
|
|
|
|
free (output);
|
|
|
|
|
|
|
|
|
|
output = xstrdup (optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
if (dir)
|
|
|
|
|
free (dir);
|
|
|
|
|
|
|
|
|
|
dir = xstrdup (optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
2008-01-20 23:20:36 +00:00
|
|
|
|
case 'm':
|
|
|
|
|
if (memdisk)
|
|
|
|
|
free (memdisk);
|
|
|
|
|
|
|
|
|
|
memdisk = xstrdup (optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
|
case 'h':
|
|
|
|
|
usage (0);
|
|
|
|
|
break;
|
|
|
|
|
|
2007-06-21 21:01:11 +00:00
|
|
|
|
case 'p':
|
|
|
|
|
if (prefix)
|
|
|
|
|
free (prefix);
|
|
|
|
|
|
|
|
|
|
prefix = xstrdup (optarg);
|
|
|
|
|
break;
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
|
case 'V':
|
2004-04-04 13:46:03 +00:00
|
|
|
|
printf ("grub-mkimage (%s) %s\n", PACKAGE_NAME, PACKAGE_VERSION);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case 'v':
|
|
|
|
|
verbosity++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
usage (1);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (output)
|
|
|
|
|
{
|
|
|
|
|
fp = fopen (output, "wb");
|
|
|
|
|
if (! fp)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_util_error ("cannot open %s", output);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-01-20 23:20:36 +00:00
|
|
|
|
generate_image (dir ? : GRUB_LIBDIR, prefix ? : DEFAULT_DIRECTORY, fp, argv + optind, memdisk);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
|
|
if (dir)
|
|
|
|
|
free (dir);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|