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

« back to all changes in this revision

Viewing changes to grub-core/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/machine/loader.h>
 
22
#include <grub/machine/chainloader.h>
 
23
#include <grub/machine/memory.h>
 
24
#include <grub/file.h>
 
25
#include <grub/err.h>
 
26
#include <grub/device.h>
 
27
#include <grub/disk.h>
 
28
#include <grub/misc.h>
 
29
#include <grub/types.h>
 
30
#include <grub/partition.h>
 
31
#include <grub/memory.h>
 
32
#include <grub/dl.h>
 
33
#include <grub/command.h>
 
34
#include <grub/msdos_partition.h>
 
35
#include <grub/machine/biosnum.h>
 
36
#include <grub/cpu/floppy.h>
 
37
#include <grub/i18n.h>
 
38
#include <grub/video.h>
 
39
#include <grub/mm.h>
 
40
 
 
41
static grub_dl_t my_mod;
 
42
static int boot_drive;
 
43
static void *boot_part_addr;
 
44
 
 
45
static grub_err_t
 
46
grub_chainloader_boot (void)
 
47
{
 
48
  grub_video_set_mode ("text", 0, 0);
 
49
  grub_chainloader_real_boot (boot_drive, boot_part_addr);
 
50
 
 
51
  /* Never reach here.  */
 
52
  return GRUB_ERR_NONE;
 
53
}
 
54
 
 
55
static grub_err_t
 
56
grub_chainloader_unload (void)
 
57
{
 
58
  grub_dl_unref (my_mod);
 
59
  return GRUB_ERR_NONE;
 
60
}
 
61
 
 
62
static void
 
63
grub_chainloader_cmd (const char *filename, grub_chainloader_flags_t flags)
 
64
{
 
65
  grub_file_t file = 0;
 
66
  grub_uint16_t signature;
 
67
  grub_device_t dev;
 
68
  int drive = -1;
 
69
  void *part_addr = 0;
 
70
 
 
71
  grub_dl_ref (my_mod);
 
72
 
 
73
  grub_file_filter_disable_compression ();
 
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_t disk = dev->disk;
 
105
 
 
106
      if (disk)
 
107
        {
 
108
          grub_partition_t p = disk->partition;
 
109
 
 
110
          if (p && grub_strcmp (p->partmap->name, "msdos") == 0)
 
111
            {
 
112
              disk->partition = p->parent;
 
113
              grub_disk_read (disk, p->offset, 446, 64,
 
114
                              (void *) GRUB_MEMORY_MACHINE_PART_TABLE_ADDR);
 
115
              part_addr = (void *) (GRUB_MEMORY_MACHINE_PART_TABLE_ADDR
 
116
                                    + (p->index << 4));
 
117
              disk->partition = p;
 
118
            }
 
119
        }
 
120
    }
 
121
 
 
122
  if (dev)
 
123
    grub_device_close (dev);
 
124
 
 
125
  /* Ignore errors. Perhaps it's not fatal.  */
 
126
  grub_errno = GRUB_ERR_NONE;
 
127
 
 
128
  boot_drive = drive;
 
129
  boot_part_addr = part_addr;
 
130
 
 
131
  grub_loader_set (grub_chainloader_boot, grub_chainloader_unload, 1);
 
132
  return;
 
133
 
 
134
 fail:
 
135
 
 
136
  if (file)
 
137
    grub_file_close (file);
 
138
 
 
139
  grub_dl_unref (my_mod);
 
140
}
 
141
 
 
142
static grub_err_t
 
143
grub_cmd_chainloader (grub_command_t cmd __attribute__ ((unused)),
 
144
                      int argc, char *argv[])
 
145
{
 
146
  grub_chainloader_flags_t flags = 0;
 
147
 
 
148
  if (argc > 0 && grub_strcmp (argv[0], "--force") == 0)
 
149
    {
 
150
      flags |= GRUB_CHAINLOADER_FORCE;
 
151
      argc--;
 
152
      argv++;
 
153
    }
 
154
 
 
155
  if (argc == 0)
 
156
    return grub_error (GRUB_ERR_BAD_ARGUMENT, "no file specified");
 
157
  else
 
158
    grub_chainloader_cmd (argv[0], flags);
 
159
 
 
160
  return grub_errno;
 
161
}
 
162
 
 
163
static grub_command_t cmd;
 
164
 
 
165
GRUB_MOD_INIT(chainloader)
 
166
{
 
167
  cmd = grub_register_command ("chainloader", grub_cmd_chainloader,
 
168
                               0, N_("Load another boot loader."));
 
169
  my_mod = mod;
 
170
}
 
171
 
 
172
GRUB_MOD_FINI(chainloader)
 
173
{
 
174
  grub_unregister_command (cmd);
 
175
}