blob: 41cc9578273ee4b5b8732c28486933f5c3c843da (
plain)
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
|
#include "kpartx.h"
#include <stdio.h>
#define UNIXWARE_FS_UNUSED 0
#define UNIXWARE_NUMSLICE 16
#define UNIXWARE_DISKMAGIC (0xCA5E600D)
#define UNIXWARE_DISKMAGIC2 (0x600DDEEE)
struct unixware_slice {
unsigned short s_label; /* label */
unsigned short s_flags; /* permission flags */
unsigned int start_sect; /* starting sector */
unsigned int nr_sects; /* number of sectors in slice */
};
struct unixware_disklabel {
unsigned int d_type; /* drive type */
unsigned char d_magic[4]; /* the magic number */
unsigned int d_version; /* version number */
char d_serial[12]; /* serial number of the device */
unsigned int d_ncylinders; /* # of data cylinders per device */
unsigned int d_ntracks; /* # of tracks per cylinder */
unsigned int d_nsectors; /* # of data sectors per track */
unsigned int d_secsize; /* # of bytes per sector */
unsigned int d_part_start; /* # of first sector of this partition */
unsigned int d_unknown1[12]; /* ? */
unsigned int d_alt_tbl; /* byte offset of alternate table */
unsigned int d_alt_len; /* byte length of alternate table */
unsigned int d_phys_cyl; /* # of physical cylinders per device */
unsigned int d_phys_trk; /* # of physical tracks per cylinder */
unsigned int d_phys_sec; /* # of physical sectors per track */
unsigned int d_phys_bytes; /* # of physical bytes per sector */
unsigned int d_unknown2; /* ? */
unsigned int d_unknown3; /* ? */
unsigned int d_pad[8]; /* pad */
struct unixware_vtoc {
unsigned char v_magic[4]; /* the magic number */
unsigned int v_version; /* version number */
char v_name[8]; /* volume name */
unsigned short v_nslices; /* # of slices */
unsigned short v_unknown1; /* ? */
unsigned int v_reserved[10]; /* reserved */
struct unixware_slice
v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
} vtoc;
}; /* 408 */
int
read_unixware_pt(int fd, struct slice all, struct slice *sp, int ns) {
struct unixware_disklabel *l;
struct unixware_slice *p;
unsigned int offset = all.start;
char *bp;
int n = 0;
bp = getblock(fd, offset+29); /* 1 sector suffices */
if (bp == NULL)
return -1;
l = (struct unixware_disklabel *) bp;
if (four2int(l->d_magic) != UNIXWARE_DISKMAGIC ||
four2int(l->vtoc.v_magic) != UNIXWARE_DISKMAGIC2)
return -1;
p = &l->vtoc.v_slice[1]; /* slice 0 is the whole disk. */
while (p - &l->vtoc.v_slice[0] < UNIXWARE_NUMSLICE) {
if (p->s_label == UNIXWARE_FS_UNUSED)
/* nothing */;
else if (n < ns) {
sp[n].start = p->start_sect;
sp[n].size = p->nr_sects;
n++;
} else {
fprintf(stderr,
"unixware_partition: too many slices\n");
break;
}
p++;
}
return n;
}
|