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

« back to all changes in this revision

Viewing changes to grub-core/partmap/amiga.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
/* amiga.c - Read amiga partition tables (RDB).  */
 
2
/*
 
3
 *  GRUB  --  GRand Unified Bootloader
 
4
 *  Copyright (C) 2002,2004,2005,2006,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/dl.h>
 
25
 
 
26
struct grub_amiga_rdsk
 
27
{
 
28
  /* "RDSK".  */
 
29
  grub_uint8_t magic[4];
 
30
  grub_uint32_t size;
 
31
  grub_int32_t checksum;
 
32
  grub_uint32_t scsihost;
 
33
  grub_uint32_t blksz;
 
34
  grub_uint32_t flags;
 
35
  grub_uint32_t badblcklst;
 
36
  grub_uint32_t partitionlst;
 
37
  grub_uint32_t fslst;
 
38
 
 
39
  /* The other information is not important for us.  */
 
40
} __attribute__ ((packed));
 
41
 
 
42
struct grub_amiga_partition
 
43
{
 
44
  /* "PART".  */
 
45
  grub_uint8_t magic[4];
 
46
  grub_int32_t size;
 
47
  grub_int32_t checksum;
 
48
  grub_uint32_t scsihost;
 
49
  grub_uint32_t next;
 
50
  grub_uint32_t flags;
 
51
  grub_uint32_t unused1[2];
 
52
  grub_uint32_t devflags;
 
53
  grub_uint8_t namelen;
 
54
  grub_uint8_t name[31];
 
55
  grub_uint32_t unused2[15];
 
56
 
 
57
  grub_uint32_t unused3[3];
 
58
  grub_uint32_t heads;
 
59
  grub_uint32_t unused4;
 
60
  grub_uint32_t block_per_track;
 
61
  grub_uint32_t unused5[3];
 
62
  grub_uint32_t lowcyl;
 
63
  grub_uint32_t highcyl;
 
64
 
 
65
  grub_uint32_t firstcyl;
 
66
} __attribute__ ((packed));
 
67
 
 
68
static struct grub_partition_map grub_amiga_partition_map;
 
69
 
 
70
 
 
71
 
 
72
static grub_err_t
 
73
amiga_partition_map_iterate (grub_disk_t disk,
 
74
                             int (*hook) (grub_disk_t disk,
 
75
                                          const grub_partition_t partition))
 
76
{
 
77
  struct grub_partition part;
 
78
  struct grub_amiga_rdsk rdsk;
 
79
  int partno = 0;
 
80
  int next = -1;
 
81
  unsigned pos;
 
82
 
 
83
  /* The RDSK block is one of the first 15 blocks.  */
 
84
  for (pos = 0; pos < 15; pos++)
 
85
    {
 
86
      /* Read the RDSK block which is a descriptor for the entire disk.  */
 
87
      if (grub_disk_read (disk, pos, 0, sizeof (rdsk), &rdsk))
 
88
        return grub_errno;
 
89
 
 
90
      if (grub_strcmp ((char *) rdsk.magic, "RDSK") == 0)
 
91
        {
 
92
          /* Found the first PART block.  */
 
93
          next = grub_be_to_cpu32 (rdsk.partitionlst);
 
94
          break;
 
95
        }
 
96
    }
 
97
 
 
98
  if (next == -1)
 
99
    return grub_error (GRUB_ERR_BAD_PART_TABLE,
 
100
                       "Amiga partition map not found");
 
101
 
 
102
  /* The end of the partition list is marked using "-1".  */
 
103
  while (next != -1)
 
104
    {
 
105
      struct grub_amiga_partition apart;
 
106
 
 
107
      /* Read the RDSK block which is a descriptor for the entire disk.  */
 
108
      if (grub_disk_read (disk, next, 0, sizeof (apart), &apart))
 
109
        return grub_errno;
 
110
 
 
111
      /* Calculate the first block and the size of the partition.  */
 
112
      part.start = (grub_be_to_cpu32 (apart.lowcyl)
 
113
                    * grub_be_to_cpu32 (apart.heads)
 
114
                    * grub_be_to_cpu32 (apart.block_per_track));
 
115
      part.len = ((grub_be_to_cpu32 (apart.highcyl)
 
116
                   - grub_be_to_cpu32 (apart.lowcyl) + 1)
 
117
                  * grub_be_to_cpu32 (apart.heads)
 
118
                  * grub_be_to_cpu32 (apart.block_per_track));
 
119
 
 
120
      part.offset = (grub_off_t) next * 512;
 
121
      part.number = partno;
 
122
      part.index = 0;
 
123
      part.partmap = &grub_amiga_partition_map;
 
124
 
 
125
      if (hook (disk, &part))
 
126
        return grub_errno;
 
127
 
 
128
      next = grub_be_to_cpu32 (apart.next);
 
129
      partno++;
 
130
    }
 
131
 
 
132
  return 0;
 
133
}
 
134
 
 
135
 
 
136
/* Partition map type.  */
 
137
static struct grub_partition_map grub_amiga_partition_map =
 
138
  {
 
139
    .name = "amiga",
 
140
    .iterate = amiga_partition_map_iterate,
 
141
  };
 
142
 
 
143
GRUB_MOD_INIT(part_amiga)
 
144
{
 
145
  grub_partition_map_register (&grub_amiga_partition_map);
 
146
}
 
147
 
 
148
GRUB_MOD_FINI(part_amiga)
 
149
{
 
150
  grub_partition_map_unregister (&grub_amiga_partition_map);
 
151
}