1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
/*
* lib/scheme/eesox.c
*
* Partition backend for Eesox SCSI partitioning scheme on the
* Acorn machines.
*
* Copyright (C) 1998 Russell King
*/
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include "util/debug.h"
#include "util/error.h"
#include "util/types.h"
#include "part/part.h"
#include "part/utils.h"
#define EESOX_SECTOR_SIZE 512
#define EESOX_PART_SECTOR 7
#define EESOX_NR_PARTITIONS 8
#define NOSAVE_POWERTEC
typedef struct {
char magic[6];
char discname[10];
u32 start;
u32 unused6;
u32 unused7;
u32 unused8;
} ep_t;
typedef union {
ep_t ep[EESOX_NR_PARTITIONS];
u8 sector[EESOX_SECTOR_SIZE];
} eesox_psect_t;
static const char eesox_name[] = {
'N', 'e', 'i', 'l', ' ',
'C', 'r', 'i', 't', 'c', 'h', 'e', 'l', 'l', ' ', ' '
};
/* Prototype: u_int eesox_detect(part_t *part)
* Function : detect a drive partitioned with an ICS IDE table
* Params : part - partitionable device
* Returns : FALSE if not detected
*/
static u_int
eesox_detect(part_t *part)
{
eesox_psect_t sector;
u_int ret = 0;
dbg_printf("eesox_detect()");
dbg_level_up();
assert(part != NULL);
do {
u_int i;
if (blkio_setblocksize(part->blkio, EESOX_SECTOR_SIZE) != EESOX_SECTOR_SIZE)
break;
if (blkio_read(part->blkio, sector.sector, EESOX_PART_SECTOR, 1) != 1)
break;
for (i = 0; i < EESOX_SECTOR_SIZE; i++)
sector.sector[i] ^= eesox_name[i & 15];
if (memcmp(sector.sector, "Eesox", 6) == 0)
ret = 1;
} while (0);
dbg_level_down();
dbg_printf("ret%s detected", ret ? "" : " not");
return ret;
}
/* Prototype: u_int eesox_readinfo(part_t *part)
* Function : read all partition information from the drive
* Params : part - partitionable device
* Returns : FALSE on error
*/
static u_int
eesox_readinfo(part_t *part)
{
u_int ret = 0;
dbg_printf("eesox_readinfo()");
dbg_level_up();
assert(part != NULL);
do {
eesox_psect_t sector;
partinfo_i_t pinfo;
u_int part_no, i;
if (blkio_read(part->blkio, sector.sector, EESOX_PART_SECTOR, 1) != 1)
break;
for (i = 0; i < EESOX_SECTOR_SIZE; i++)
sector.sector[i] ^= eesox_name[i & 15];
ret = 1;
for (part_no = 0; part_no < EESOX_NR_PARTITIONS; part_no++)
if (memcmp(sector.ep[part_no].magic, "Eesox", 6) == 0) {
pinfo.info.chs_valid = 0;
pinfo.info.blk_start = sector.ep[part_no].start;
pinfo.info.blk_end = sector.ep[part_no].start + 1;
pinfo.info.kern_part_no = part_no + 1;
pinfo.info.type = ptyp_filecore;
dbg_memdump(§or.ep[part_no], sizeof(sector.ep[part_no]));
if (!part_add(part, part_no + 1, &pinfo)) {
ret = 0;
break;
}
/* should we check the filecore boot sector? */
}
} while (0);
dbg_level_down();
dbg_printf("ret %s", ret ? "ok" : "error");
return ret;
}
/* Prototype: u_int eesox_writeinfo(part_t *part)
* Function : write all partition information back to the drive
* Params : part - partitionable device
* Returns : FALSE on error
*/
static u_int
eesox_writeinfo(part_t *part)
{
u_int ret = 0;
dbg_printf("eesox_writeinfo()");
dbg_level_up();
assert(part != NULL);
assert(part->nr_partitions <= EESOX_NR_PARTITIONS);
set_error("EESOX partition information cannot be saved with this build");
dbg_level_down();
dbg_printf("ret %s", ret ? "ok" : "error");
return ret;
}
/* Prototype: u_int eesox_allocate(part_t *part, partinfo_t *pnew)
* Function : allocate a partition entry number and a kernel
* partition number for a new partition
* Params : part - partitionable device
* Returns : partition number, or PARN_ERROR on error
*/
static u_int
eesox_allocate(part_t *part, partinfo_t *pnew)
{
u_int parn = PARN_ERROR;
assert(part != NULL);
dbg_printf("eesox_allocate()");
dbg_level_up();
dbg_level_down();
dbg_printf("ret %d", parn);
return parn;
}
/* Prototype: u_int eesox_validate_change(part_t *part, u_int parn,
* const partinfo_t *pold, const partinfo_t *pnew)
* Function : validate changes made to a partition
* Params : part - partitionable device
* : parn - partition number
* : pold - old partition information
* : pnew - new partition information
* Returns : FALSE if we reject the change
*/
static u_int
eesox_validate_change(part_t *part, u_int parn, const partinfo_t *pold, const partinfo_t *pnew)
{
u_int ret = 0;
dbg_printf("eesox_validate_change(parn=%d)", parn);
dbg_level_up();
dbg_level_down();
dbg_printf("ret %svalid", ret ? "" : "in");
return ret;
}
/* Prototype: u_int eesox_validate_creation(part_t *part, u_int parn,
* const partinfo_t *pold, const partinfo_t *pnew)
* Function : validate changes made to a partition
* Params : part - partitionable device
* : parn - partition number
* : pold - old partition information (NULL if none)
* : pnew - new partition information
* Returns : FALSE if we reject the creation
*/
static u_int
eesox_validate_creation(part_t *part, u_int parn, const partinfo_t *pold, const partinfo_t *pnew)
{
u_int ret = 0;
dbg_printf("eesox_validate_creation(parn=%d)", parn);
dbg_level_up();
assert(part != NULL);
assert(parn < part->nr_partitions);
dbg_level_down();
dbg_printf("ret %svalid", ret ? "" : "in");
return ret;
}
/* Prototype: u_int eesox_validate_deletion(part_t *part, u_int parn, const partinfo_t *pold)
* Function : validate a deletion of a partition
* Params : part - partitionable device
* : parn - partition number
* : pold - old partition information
* Returns : FALSE if we reject the deletion
*/
static u_int
eesox_validate_deletion(part_t *part, u_int parn, const partinfo_t *pold)
{
u_int ret = 0;
dbg_printf("eesox_validate_deletion(parn=%d)", parn);
dbg_level_up();
assert(part != NULL);
assert(parn < part->nr_partitions);
dbg_level_down();
dbg_printf("ret %svalid", ret ? "" : "in");
return ret;
}
/* Prototype: u_int eesox_validate_partno(part_t *part, u_int parn)
* Function : validate a partition number
* Params : part - partitionable device
* : parn - partition number
* Returns : FALSE if we reject the partition number
*/
static u_int
eesox_validate_partno(part_t *part, u_int parn)
{
u_int ret = 0;
assert(part != NULL);
dbg_printf("eesox_validate_partno(parn=%d)", parn);
dbg_level_up();
dbg_level_down();
dbg_printf("ret %svalid", ret ? "" : "in");
return ret;
}
/* Prototype: ptyp_t eesox_nexttype(part_t *part, u_int parn, ptyp_t current, int dir)
* Purpose : return next valid partition type for an entry
* Params : part - partitionable device
* : parn - partition number
* : current - currently selected partition type
* : dir - next/previous flag
* Returns : next valid partition type
*/
static ptyp_t
eesox_nexttype(part_t *part, u_int parn, ptyp_t current, int dir)
{
ptyp_t ptype = current;
dbg_printf("eesox_nexttype(parn=%d, current=0x%X, %s)", parn, current,
dir > 0 ? "next" : dir < 0 ? "previous" : "???");
dbg_level_up();
assert(part != NULL);
assert(parn < part->nr_partitions);
dbg_level_down();
dbg_printf("ret 0x%X", ptype);
return ptype;
}
scheme_t eesox_scheme = {
"EESOX",
eesox_detect,
eesox_readinfo,
eesox_writeinfo,
eesox_allocate,
eesox_validate_change,
eesox_validate_creation,
eesox_validate_deletion,
eesox_validate_partno,
eesox_nexttype
};
|