sun.c 4.44 KB
Newer Older
1 2 3
/* sun.c - Read SUN style partition tables.  */
/*
 *  GRUB  --  GRand Unified Bootloader
4
 *  Copyright (C) 2002,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 10
 *  (at your option) any later version.
 *
11
 *  GRUB is distributed in the hope that it will be useful,
12 13 14 15 16
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  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 21 22 23 24 25 26 27 28
 */

#include <grub/partition.h>
#include <grub/disk.h>
#include <grub/mm.h>
#include <grub/misc.h>
#include <grub/dl.h>
#include <grub/symbol.h>
#include <grub/types.h>
#include <grub/err.h>

29 30
GRUB_MOD_LICENSE ("GPLv3+");

31 32 33 34 35 36 37 38 39 40
#define GRUB_PARTMAP_SUN_MAGIC 0xDABE
#define GRUB_PARTMAP_SUN_MAX_PARTS 8
#define GRUB_PARTMAP_SUN_WHOLE_DISK_ID 0x05

struct grub_sun_partition_info
{
  grub_uint8_t spare1;
  grub_uint8_t id;
  grub_uint8_t spare2;
  grub_uint8_t flags;
41
} GRUB_PACKED;
42 43 44 45 46

struct grub_sun_partition_descriptor
{
  grub_uint32_t start_cylinder;
  grub_uint32_t num_sectors;
47
} GRUB_PACKED;
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

struct grub_sun_block
{
  grub_uint8_t  info[128];      /* Informative text string.  */
  grub_uint8_t  spare0[14];
  struct grub_sun_partition_info infos[8];
  grub_uint8_t  spare1[246];    /* Boot information etc.  */
  grub_uint16_t  rspeed;        /* Disk rotational speed.  */
  grub_uint16_t  pcylcount;     /* Physical cylinder count.  */
  grub_uint16_t  sparecyl;      /* extra sects per cylinder.  */
  grub_uint8_t  spare2[4];      /* More magic...  */
  grub_uint16_t  ilfact;        /* Interleave factor.  */
  grub_uint16_t  ncyl;          /* Data cylinder count.  */
  grub_uint16_t  nacyl;         /* Alt. cylinder count.  */
  grub_uint16_t  ntrks;         /* Tracks per cylinder.  */
  grub_uint16_t  nsect;         /* Sectors per track.  */
  grub_uint8_t  spare3[4];      /* Even more magic...  */
  struct grub_sun_partition_descriptor partitions[8];
  grub_uint16_t  magic;         /* Magic number.  */
  grub_uint16_t  csum;          /* Label xor'd checksum.  */
68
} GRUB_PACKED;
69 70 71 72 73

static struct grub_partition_map grub_sun_partition_map;

/* Verify checksum (true=ok).  */
static int
74
grub_sun_is_valid (grub_uint16_t *label)
75 76 77
{
  grub_uint16_t *pos;
  grub_uint16_t sum = 0;
78

79 80
  for (pos = label;
       pos < (label + sizeof (struct grub_sun_block) / 2);
81
       pos++)
82
    sum ^= *pos;
83

84
  return ! sum;
85 86 87 88
}

static grub_err_t
sun_partition_map_iterate (grub_disk_t disk,
89
			   grub_partition_iterate_hook_t hook, void *hook_data)
90
{
91
  struct grub_partition p;
92 93
  union
  {
94
    struct grub_sun_block sun_block;
95 96
    grub_uint16_t raw[0];
  } block;
97
  int partnum;
98
  grub_err_t err;
99

100
  p.partmap = &grub_sun_partition_map;
101
  err = grub_disk_read (disk, 0, 0, sizeof (struct grub_sun_block),
102 103
			&block);
  if (err)
104
    return err;
105

106
  if (GRUB_PARTMAP_SUN_MAGIC != grub_be_to_cpu16 (block.sun_block.magic))
107
    return grub_error (GRUB_ERR_BAD_PART_TABLE, "not a sun partition table");
108

109
  if (! grub_sun_is_valid (block.raw))
110
      return grub_error (GRUB_ERR_BAD_PART_TABLE, "invalid checksum");
111
  
112 113 114 115 116
  /* Maybe another error value would be better, because partition
     table _is_ recognized but invalid.  */
  for (partnum = 0; partnum < GRUB_PARTMAP_SUN_MAX_PARTS; partnum++)
    {
      struct grub_sun_partition_descriptor *desc;
117

118 119
      if (block.sun_block.infos[partnum].id == 0
	  || block.sun_block.infos[partnum].id == GRUB_PARTMAP_SUN_WHOLE_DISK_ID)
120 121
	continue;

122
      desc = &block.sun_block.partitions[partnum];
123
      p.start = ((grub_uint64_t) grub_be_to_cpu32 (desc->start_cylinder)
124 125
		  * grub_be_to_cpu16 (block.sun_block.ntrks)
		  * grub_be_to_cpu16 (block.sun_block.nsect));
126 127 128
      p.len = grub_be_to_cpu32 (desc->num_sectors);
      p.number = p.index = partnum;
      if (p.len)
129
	{
130
	  if (hook (disk, &p, hook_data))
131
	    partnum = GRUB_PARTMAP_SUN_MAX_PARTS;
132 133
	}
    }
134

135 136 137 138 139 140
  return grub_errno;
}

/* Partition map type.  */
static struct grub_partition_map grub_sun_partition_map =
  {
141
    .name = "sun",
142 143 144
    .iterate = sun_partition_map_iterate,
  };

145
GRUB_MOD_INIT(part_sun)
146 147 148 149
{
  grub_partition_map_register (&grub_sun_partition_map);
}

150
GRUB_MOD_FINI(part_sun)
151 152 153
{
  grub_partition_map_unregister (&grub_sun_partition_map);
}
154