1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include "volume_id_internal.h"
22
23struct msdos_partition_entry {
24 uint8_t boot_ind;
25 uint8_t head;
26 uint8_t sector;
27 uint8_t cyl;
28 uint8_t sys_ind;
29 uint8_t end_head;
30 uint8_t end_sector;
31 uint8_t end_cyl;
32 uint32_t start_sect;
33 uint32_t nr_sects;
34} PACKED;
35
36#define MSDOS_PARTTABLE_OFFSET 0x1be
37#define MSDOS_SIG_OFF 0x1fe
38#define BSIZE 0x200
39#define DOS_EXTENDED_PARTITION 0x05
40#define LINUX_EXTENDED_PARTITION 0x85
41#define WIN98_EXTENDED_PARTITION 0x0f
42#define LINUX_RAID_PARTITION 0xfd
43#define is_extended(type) \
44 (type == DOS_EXTENDED_PARTITION || \
45 type == WIN98_EXTENDED_PARTITION || \
46 type == LINUX_EXTENDED_PARTITION)
47#define is_raid(type) \
48 (type == LINUX_RAID_PARTITION)
49
50int FAST_FUNC volume_id_probe_msdos_part_table(struct volume_id *id, uint64_t off)
51{
52 const uint8_t *buf;
53 int i;
54 uint64_t poff;
55 uint64_t plen;
56 uint64_t extended = 0;
57 uint64_t current;
58 uint64_t next;
59 int limit;
60 int empty = 1;
61 struct msdos_partition_entry *part;
62 struct volume_id_partition *p;
63
64 dbg("probing at offset 0x%llx", (unsigned long long) off);
65
66 buf = volume_id_get_buffer(id, off, 0x200);
67 if (buf == NULL)
68 return -1;
69
70 if (buf[MSDOS_SIG_OFF] != 0x55 || buf[MSDOS_SIG_OFF + 1] != 0xaa)
71 return -1;
72
73
74 part = (struct msdos_partition_entry*) &buf[MSDOS_PARTTABLE_OFFSET];
75 for (i = 0; i < 4; i++) {
76 if (part[i].boot_ind != 0
77 && part[i].boot_ind != 0x80
78 ) {
79 return -1;
80 }
81
82 if (part[i].nr_sects != 0)
83 empty = 0;
84 }
85 if (empty == 1)
86 return -1;
87
88 if (id->partitions != NULL)
89 free(id->partitions);
90 id->partitions = xzalloc(VOLUME_ID_PARTITIONS_MAX *
91 sizeof(struct volume_id_partition));
92
93 for (i = 0; i < 4; i++) {
94 poff = (uint64_t) le32_to_cpu(part[i].start_sect) * BSIZE;
95 plen = (uint64_t) le32_to_cpu(part[i].nr_sects) * BSIZE;
96
97 if (plen == 0)
98 continue;
99
100 p = &id->partitions[i];
101
102
103
104 if (is_extended(part[i].sys_ind)) {
105 dbg("found extended partition at 0x%llx", (unsigned long long) poff);
106
107
108 if (extended == 0)
109 extended = off + poff;
110 } else {
111 dbg("found 0x%x data partition at 0x%llx, len 0x%llx",
112 part[i].sys_ind, (unsigned long long) poff, (unsigned long long) plen);
113
114
115
116
117
118 }
119
120
121
122 id->partition_count = i+1;
123 }
124
125 next = extended;
126 current = extended;
127 limit = 50;
128
129
130 while (next != 0) {
131 if (limit-- == 0) {
132 dbg("extended chain limit reached");
133 break;
134 }
135
136 buf = volume_id_get_buffer(id, current, 0x200);
137 if (buf == NULL)
138 break;
139
140 part = (struct msdos_partition_entry*) &buf[MSDOS_PARTTABLE_OFFSET];
141
142 if (buf[MSDOS_SIG_OFF] != 0x55 || buf[MSDOS_SIG_OFF + 1] != 0xaa)
143 break;
144
145 next = 0;
146
147 for (i = 0; i < 4; i++) {
148 poff = (uint64_t) le32_to_cpu(part[i].start_sect) * BSIZE;
149 plen = (uint64_t) le32_to_cpu(part[i].nr_sects) * BSIZE;
150
151 if (plen == 0)
152 continue;
153
154 if (is_extended(part[i].sys_ind)) {
155 dbg("found extended partition at 0x%llx", (unsigned long long) poff);
156 if (next == 0)
157 next = extended + poff;
158 } else {
159 dbg("found 0x%x data partition at 0x%llx, len 0x%llx",
160 part[i].sys_ind, (unsigned long long) poff, (unsigned long long) plen);
161
162
163
164
165 if (id->partition_count < 4)
166 id->partition_count = 4;
167
168 p = &id->partitions[id->partition_count];
169
170
171
172
173
174
175
176
177 id->partition_count++;
178
179
180
181 if (id->partition_count >= VOLUME_ID_PARTITIONS_MAX) {
182 dbg("too many partitions");
183 next = 0;
184 }
185 }
186 }
187
188 current = next;
189 }
190
191
192
193
194 return 0;
195}
196