1
2
3
4
5
6
7
8
9
10
11#include "check.h"
12#include "sun.h"
13
14int sun_partition(struct parsed_partitions *state)
15{
16 int i;
17 __be16 csum;
18 int slot = 1;
19 __be16 *ush;
20 Sector sect;
21 struct sun_disklabel {
22 unsigned char info[128];
23 struct sun_vtoc {
24 __be32 version;
25 char volume[8];
26 __be16 nparts;
27 struct sun_info {
28 __be16 id;
29 __be16 flags;
30 } infos[8];
31 __be16 padding;
32 __be32 bootinfo[3];
33 __be32 sanity;
34 __be32 reserved[10];
35 __be32 timestamp[8];
36 } vtoc;
37 __be32 write_reinstruct;
38 __be32 read_reinstruct;
39 unsigned char spare[148];
40 __be16 rspeed;
41 __be16 pcylcount;
42 __be16 sparecyl;
43 __be16 obs1;
44 __be16 obs2;
45 __be16 ilfact;
46 __be16 ncyl;
47 __be16 nacyl;
48 __be16 ntrks;
49 __be16 nsect;
50 __be16 obs3;
51 __be16 obs4;
52 struct sun_partition {
53 __be32 start_cylinder;
54 __be32 num_sectors;
55 } partitions[8];
56 __be16 magic;
57 __be16 csum;
58 } * label;
59 struct sun_partition *p;
60 unsigned long spc;
61 char b[BDEVNAME_SIZE];
62 int use_vtoc;
63 int nparts;
64
65 label = read_part_sector(state, 0, §);
66 if (!label)
67 return -1;
68
69 p = label->partitions;
70 if (be16_to_cpu(label->magic) != SUN_LABEL_MAGIC) {
71
72
73 put_dev_sector(sect);
74 return 0;
75 }
76
77 ush = ((__be16 *) (label+1)) - 1;
78 for (csum = 0; ush >= ((__be16 *) label);)
79 csum ^= *ush--;
80 if (csum) {
81 printk("Dev %s Sun disklabel: Csum bad, label corrupted\n",
82 bdevname(state->bdev, b));
83 put_dev_sector(sect);
84 return 0;
85 }
86
87
88 use_vtoc = ((be32_to_cpu(label->vtoc.sanity) == SUN_VTOC_SANITY) &&
89 (be32_to_cpu(label->vtoc.version) == 1) &&
90 (be16_to_cpu(label->vtoc.nparts) <= 8));
91
92
93 nparts = (use_vtoc) ? be16_to_cpu(label->vtoc.nparts) : 8;
94
95
96
97
98
99 use_vtoc = use_vtoc || !(label->vtoc.sanity ||
100 label->vtoc.version || label->vtoc.nparts);
101 spc = be16_to_cpu(label->ntrks) * be16_to_cpu(label->nsect);
102 for (i = 0; i < nparts; i++, p++) {
103 unsigned long st_sector;
104 unsigned int num_sectors;
105
106 st_sector = be32_to_cpu(p->start_cylinder) * spc;
107 num_sectors = be32_to_cpu(p->num_sectors);
108 if (num_sectors) {
109 put_partition(state, slot, st_sector, num_sectors);
110 state->parts[slot].flags = 0;
111 if (use_vtoc) {
112 if (be16_to_cpu(label->vtoc.infos[i].id) == LINUX_RAID_PARTITION)
113 state->parts[slot].flags |= ADDPART_FLAG_RAID;
114 else if (be16_to_cpu(label->vtoc.infos[i].id) == SUN_WHOLE_DISK)
115 state->parts[slot].flags |= ADDPART_FLAG_WHOLEDISK;
116 }
117 }
118 slot++;
119 }
120 strlcat(state->pp_buf, "\n", PAGE_SIZE);
121 put_dev_sector(sect);
122 return 1;
123}
124