1 /* chainloader.c - boot another boot loader */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2002,2004,2007 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/loader.h>
21 #include <grub/machine/loader.h>
22 #include <grub/machine/chainloader.h>
23 #include <grub/file.h>
25 #include <grub/device.h>
26 #include <grub/disk.h>
27 #include <grub/misc.h>
28 #include <grub/types.h>
29 #include <grub/machine/init.h>
30 #include <grub/partition.h>
31 #include <grub/machine/memory.h>
32 #include <grub/rescue.h>
35 static grub_dl_t my_mod
;
36 static int boot_drive
;
37 static void *boot_part_addr
;
40 grub_chainloader_boot (void)
42 grub_chainloader_real_boot (boot_drive
, boot_part_addr
);
44 /* Never reach here. */
49 grub_chainloader_unload (void)
51 grub_dl_unref (my_mod
);
56 grub_chainloader_cmd (const char *filename
, grub_chainloader_flags_t flags
)
59 grub_uint16_t signature
;
66 file
= grub_file_open (filename
);
70 /* Read the first block. */
71 if (grub_file_read (file
, (char *) 0x7C00, GRUB_DISK_SECTOR_SIZE
)
72 != GRUB_DISK_SECTOR_SIZE
)
74 if (grub_errno
== GRUB_ERR_NONE
)
75 grub_error (GRUB_ERR_BAD_OS
, "too small");
80 /* Check the signature. */
81 signature
= *((grub_uint16_t
*) (0x7C00 + GRUB_DISK_SECTOR_SIZE
- 2));
82 if (signature
!= grub_le_to_cpu16 (0xaa55)
83 && ! (flags
& GRUB_CHAINLOADER_FORCE
))
85 grub_error (GRUB_ERR_BAD_OS
, "invalid signature");
89 grub_file_close (file
);
91 /* Obtain the partition table from the root device. */
92 dev
= grub_device_open (0);
95 grub_disk_t disk
= dev
->disk
;
99 grub_partition_t p
= disk
->partition
;
101 /* In i386-pc, the id is equal to the BIOS drive number. */
102 drive
= (int) disk
->id
;
106 grub_disk_read (disk
, p
->offset
, 446, 64,
107 (char *) GRUB_MEMORY_MACHINE_PART_TABLE_ADDR
);
108 part_addr
= (void *) (GRUB_MEMORY_MACHINE_PART_TABLE_ADDR
113 grub_device_close (dev
);
116 /* Ignore errors. Perhaps it's not fatal. */
117 grub_errno
= GRUB_ERR_NONE
;
120 boot_part_addr
= part_addr
;
122 grub_loader_set (grub_chainloader_boot
, grub_chainloader_unload
, 1);
128 grub_file_close (file
);
130 grub_dl_unref (my_mod
);
134 grub_rescue_cmd_chainloader (int argc
, char *argv
[])
136 grub_chainloader_flags_t flags
= 0;
138 if (argc
> 0 && grub_strcmp (argv
[0], "--force") == 0)
140 flags
|= GRUB_CHAINLOADER_FORCE
;
146 grub_error (GRUB_ERR_BAD_ARGUMENT
, "no file specified");
148 grub_chainloader_cmd (argv
[0], flags
);
151 static const char loader_name
[] = "chainloader";
153 GRUB_MOD_INIT(chainloader
)
155 grub_rescue_register_command (loader_name
,
156 grub_rescue_cmd_chainloader
,
157 "load another boot loader");
161 GRUB_MOD_FINI(chainloader
)
163 grub_rescue_unregister_command (loader_name
);