~hamo/ubuntu/precise/grub2/grub2.hi_res

« back to all changes in this revision

Viewing changes to loader/i386/pc/chainloader.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson, Colin Watson, Robert Millan, Updated translations
  • Date: 2010-11-22 12:24:56 UTC
  • mfrom: (1.26.4 upstream) (17.3.36 sid)
  • mto: (17.3.43 sid)
  • mto: This revision was merged to the branch mainline in revision 89.
  • Revision ID: james.westby@ubuntu.com-20101122122456-y82z3sfb7k4zfdcc
Tags: 1.99~20101122-1
[ Colin Watson ]
* New Bazaar snapshot.  Too many changes to list in full, but some of the
  more user-visible ones are as follows:
  - GRUB script:
    + Function parameters, "break", "continue", "shift", "setparams",
      "return", and "!".
    + "export" command supports multiple variable names.
    + Multi-line quoted strings support.
    + Wildcard expansion.
  - sendkey support.
  - USB hotunplugging and USB serial support.
  - Rename CD-ROM to cd on BIOS.
  - Add new --boot-directory option to grub-install, grub-reboot, and
    grub-set-default; the old --root-directory option is still accepted
    but was often confusing.
  - Basic btrfs detection/UUID support (but no file reading yet).
  - bash-completion for utilities.
  - If a device is listed in device.map, always assume that it is
    BIOS-visible rather than using extra layers such as LVM or RAID.
  - Add grub-mknetdir script (closes: #550658).
  - Remove deprecated "root" command.
  - Handle RAID devices containing virtio components.
  - GRUB Legacy configuration file support (via grub-menulst2cfg).
  - Keyboard layout support (via grub-mklayout and grub-kbdcomp).
  - Check generated grub.cfg for syntax errors before saving.
  - Pause execution for at most ten seconds if any errors are displayed,
    so that the user has a chance to see them.
  - Support submenus.
  - Write embedding zone using Reed-Solomon, so that it's robust against
    being partially overwritten (closes: #550702, #591416, #593347).
  - GRUB_DISABLE_LINUX_RECOVERY and GRUB_DISABLE_NETBSD_RECOVERY merged
    into a single GRUB_DISABLE_RECOVERY variable.
  - Fix loader memory allocation failure (closes: #551627).
  - Don't call savedefault on recovery entries (closes: #589325).
  - Support triple-indirect blocks on ext2 (closes: #543924).
  - Recognise DDF1 fake RAID (closes: #603354).

[ Robert Millan ]
* Use dpkg architecture wildcards.

[ Updated translations ]
* Slovenian (Vanja Cvelbar).  Closes: #604003
* Dzongkha (dawa pemo via Tenzin Dendup).  Closes: #604102

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* chainloader.c - boot another boot loader */
2
 
/*
3
 
 *  GRUB  --  GRand Unified Bootloader
4
 
 *  Copyright (C) 2002,2004,2007,2009,2010  Free Software Foundation, Inc.
5
 
 *
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.
10
 
 *
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.
15
 
 *
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/>.
18
 
 */
19
 
 
20
 
#include <grub/loader.h>
21
 
#include <grub/cpu/loader.h>
22
 
#include <grub/machine/chainloader.h>
23
 
#include <grub/file.h>
24
 
#include <grub/err.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/dl.h>
33
 
#include <grub/command.h>
34
 
#include <grub/machine/biosnum.h>
35
 
#include <grub/i18n.h>
36
 
#include <grub/video.h>
37
 
#include <grub/mm.h>
38
 
 
39
 
/* This is an asm part of the chainloader.  */
40
 
void grub_chainloader_real_boot (int drive, void *part_addr) __attribute__ ((noreturn));
41
 
 
42
 
static grub_dl_t my_mod;
43
 
static int boot_drive;
44
 
static void *boot_part_addr;
45
 
 
46
 
static grub_err_t
47
 
grub_chainloader_boot (void)
48
 
{
49
 
  grub_video_set_mode ("text", 0, 0);
50
 
  grub_chainloader_real_boot (boot_drive, boot_part_addr);
51
 
 
52
 
  /* Never reach here.  */
53
 
  return GRUB_ERR_NONE;
54
 
}
55
 
 
56
 
static grub_err_t
57
 
grub_chainloader_unload (void)
58
 
{
59
 
  grub_dl_unref (my_mod);
60
 
  return GRUB_ERR_NONE;
61
 
}
62
 
 
63
 
static void
64
 
grub_chainloader_cmd (const char *filename, grub_chainloader_flags_t flags)
65
 
{
66
 
  grub_file_t file = 0;
67
 
  grub_uint16_t signature;
68
 
  grub_device_t dev;
69
 
  int drive = -1;
70
 
  void *part_addr = 0;
71
 
 
72
 
  grub_dl_ref (my_mod);
73
 
 
74
 
  file = grub_file_open (filename);
75
 
  if (! file)
76
 
    goto fail;
77
 
 
78
 
  /* Read the first block.  */
79
 
  if (grub_file_read (file, (void *) 0x7C00, GRUB_DISK_SECTOR_SIZE)
80
 
      != GRUB_DISK_SECTOR_SIZE)
81
 
    {
82
 
      if (grub_errno == GRUB_ERR_NONE)
83
 
        grub_error (GRUB_ERR_BAD_OS, "too small");
84
 
 
85
 
      goto fail;
86
 
    }
87
 
 
88
 
  /* Check the signature.  */
89
 
  signature = *((grub_uint16_t *) (0x7C00 + GRUB_DISK_SECTOR_SIZE - 2));
90
 
  if (signature != grub_le_to_cpu16 (0xaa55)
91
 
      && ! (flags & GRUB_CHAINLOADER_FORCE))
92
 
    {
93
 
      grub_error (GRUB_ERR_BAD_OS, "invalid signature");
94
 
      goto fail;
95
 
    }
96
 
 
97
 
  grub_file_close (file);
98
 
 
99
 
  /* Obtain the partition table from the root device.  */
100
 
  drive = grub_get_root_biosnumber ();
101
 
  dev = grub_device_open (0);
102
 
  if (dev && dev->disk && dev->disk->partition)
103
 
    {
104
 
      grub_disk_read (dev->disk, dev->disk->partition->offset, 446, 64,
105
 
                      (void *) GRUB_MEMORY_MACHINE_PART_TABLE_ADDR);
106
 
      part_addr = (void *) (GRUB_MEMORY_MACHINE_PART_TABLE_ADDR
107
 
                            + (dev->disk->partition->index << 4));
108
 
    }
109
 
 
110
 
  if (dev)
111
 
    grub_device_close (dev);
112
 
 
113
 
  /* Ignore errors. Perhaps it's not fatal.  */
114
 
  grub_errno = GRUB_ERR_NONE;
115
 
 
116
 
  boot_drive = drive;
117
 
  boot_part_addr = part_addr;
118
 
 
119
 
  grub_loader_set (grub_chainloader_boot, grub_chainloader_unload, 1);
120
 
  return;
121
 
 
122
 
 fail:
123
 
 
124
 
  if (file)
125
 
    grub_file_close (file);
126
 
 
127
 
  grub_dl_unref (my_mod);
128
 
}
129
 
 
130
 
static grub_err_t
131
 
grub_cmd_chainloader (grub_command_t cmd __attribute__ ((unused)),
132
 
                      int argc, char *argv[])
133
 
{
134
 
  grub_chainloader_flags_t flags = 0;
135
 
 
136
 
  if (argc > 0 && grub_strcmp (argv[0], "--force") == 0)
137
 
    {
138
 
      flags |= GRUB_CHAINLOADER_FORCE;
139
 
      argc--;
140
 
      argv++;
141
 
    }
142
 
 
143
 
  if (argc == 0)
144
 
    return grub_error (GRUB_ERR_BAD_ARGUMENT, "no file specified");
145
 
  else
146
 
    grub_chainloader_cmd (argv[0], flags);
147
 
 
148
 
  return grub_errno;
149
 
}
150
 
 
151
 
static grub_command_t cmd;
152
 
 
153
 
GRUB_MOD_INIT(chainloader)
154
 
{
155
 
  cmd = grub_register_command ("chainloader", grub_cmd_chainloader,
156
 
                               0, N_("Load another boot loader."));
157
 
  my_mod = mod;
158
 
}
159
 
 
160
 
GRUB_MOD_FINI(chainloader)
161
 
{
162
 
  grub_unregister_command (cmd);
163
 
}