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

« back to all changes in this revision

Viewing changes to grub-core/partmap/acorn.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
/* acorn.c - Read Linux/ADFS partition tables.  */
 
2
/*
 
3
 *  GRUB  --  GRand Unified Bootloader
 
4
 *  Copyright (C) 2005,2007  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/disk.h>
 
21
#include <grub/misc.h>
 
22
#include <grub/mm.h>
 
23
#include <grub/partition.h>
 
24
#include <grub/acorn_filecore.h>
 
25
 
 
26
#define LINUX_NATIVE_MAGIC grub_cpu_to_le32 (0xdeafa1de)
 
27
#define LINUX_SWAP_MAGIC   grub_cpu_to_le32 (0xdeafab1e)
 
28
#define LINUX_MAP_ENTRIES  (512 / 12)
 
29
 
 
30
#define NONADFS_PARTITION_TYPE_LINUX 9
 
31
#define NONADFS_PARTITION_TYPE_MASK 15
 
32
 
 
33
struct grub_acorn_boot_block
 
34
{
 
35
  grub_uint8_t misc[0x1C0];
 
36
  struct grub_filecore_disc_record disc_record;
 
37
  grub_uint8_t flags;
 
38
  grub_uint16_t start_cylinder;
 
39
  grub_uint8_t checksum;
 
40
} __attribute__ ((packed, aligned));
 
41
 
 
42
struct linux_part
 
43
{
 
44
  grub_uint32_t magic;
 
45
  grub_uint32_t start;
 
46
  grub_uint32_t size;
 
47
};
 
48
 
 
49
static struct grub_partition_map grub_acorn_partition_map;
 
50
 
 
51
static grub_err_t
 
52
acorn_partition_map_find (grub_disk_t disk, struct linux_part *m,
 
53
                          grub_disk_addr_t *sector)
 
54
{
 
55
  struct grub_acorn_boot_block boot;
 
56
  grub_err_t err;
 
57
  unsigned int checksum = 0;
 
58
  unsigned int heads;
 
59
  unsigned int sectors_per_cylinder;
 
60
  int i;
 
61
 
 
62
  err = grub_disk_read (disk, 0xC00 / GRUB_DISK_SECTOR_SIZE, 0,
 
63
                        sizeof (struct grub_acorn_boot_block),
 
64
                        &boot);
 
65
  if (err)
 
66
    return err;
 
67
 
 
68
  if ((boot.flags & NONADFS_PARTITION_TYPE_MASK) != NONADFS_PARTITION_TYPE_LINUX)
 
69
    goto fail;
 
70
 
 
71
  for (i = 0; i != 0x1ff; ++i)
 
72
    checksum = (checksum & 0xff) + (checksum >> 8) + boot.misc[i];
 
73
 
 
74
  if ((grub_uint8_t) checksum != boot.checksum)
 
75
    goto fail;
 
76
 
 
77
  heads = (boot.disc_record.heads
 
78
                    + ((boot.disc_record.lowsector >> 6) & 1));
 
79
  sectors_per_cylinder = boot.disc_record.secspertrack * heads;
 
80
  *sector = grub_le_to_cpu16 (boot.start_cylinder) * sectors_per_cylinder;
 
81
 
 
82
  return grub_disk_read (disk, *sector, 0,
 
83
                         sizeof (struct linux_part) * LINUX_MAP_ENTRIES,
 
84
                         m);
 
85
 
 
86
fail:
 
87
  return grub_error (GRUB_ERR_BAD_PART_TABLE,
 
88
                     "Linux/ADFS partition map not found");
 
89
 
 
90
}
 
91
 
 
92
 
 
93
static grub_err_t
 
94
acorn_partition_map_iterate (grub_disk_t disk,
 
95
                             int (*hook) (grub_disk_t disk,
 
96
                                          const grub_partition_t partition))
 
97
{
 
98
  struct grub_partition part;
 
99
  struct linux_part map[LINUX_MAP_ENTRIES];
 
100
  int i;
 
101
  grub_disk_addr_t sector = 0;
 
102
  grub_err_t err;
 
103
 
 
104
  err = acorn_partition_map_find (disk, map, &sector);
 
105
  if (err)
 
106
    return err;
 
107
 
 
108
  part.partmap = &grub_acorn_partition_map;
 
109
 
 
110
  for (i = 0; i != LINUX_MAP_ENTRIES; ++i)
 
111
    {
 
112
      if (map[i].magic != LINUX_NATIVE_MAGIC
 
113
          && map[i].magic != LINUX_SWAP_MAGIC)
 
114
        return GRUB_ERR_NONE;
 
115
 
 
116
      part.start = sector + map[i].start;
 
117
      part.len = map[i].size;
 
118
      part.offset = 6;
 
119
      part.number = part.index = i;
 
120
 
 
121
      if (hook (disk, &part))
 
122
        return grub_errno;
 
123
    }
 
124
 
 
125
  return GRUB_ERR_NONE;
 
126
}
 
127
 
 
128
 
 
129
 
 
130
/* Partition map type.  */
 
131
static struct grub_partition_map grub_acorn_partition_map =
 
132
{
 
133
  .name = "acorn",
 
134
  .iterate = acorn_partition_map_iterate,
 
135
};
 
136
 
 
137
GRUB_MOD_INIT(part_acorn)
 
138
{
 
139
  grub_partition_map_register (&grub_acorn_partition_map);
 
140
}
 
141
 
 
142
GRUB_MOD_FINI(part_acorn)
 
143
{
 
144
  grub_partition_map_unregister (&grub_acorn_partition_map);
 
145
}