blob: b5d5c229cc3b94cb06ab51d30798581326927e75 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * fs/partitions/msdos.c
4 *
5 * Code extracted from drivers/block/genhd.c
6 * Copyright (C) 1991-1998 Linus Torvalds
7 *
8 * Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
9 * in the early extended-partition checks and added DM partitions
10 *
11 * Support for DiskManager v6.0x added by Mark Lord,
12 * with information provided by OnTrack. This now works for linux fdisk
13 * and LILO, as well as loadlin and bootln. Note that disks other than
14 * /dev/hda *must* have a "DOS" type 0x51 partition in the first slot (hda1).
15 *
16 * More flexible handling of extended partitions - aeb, 950831
17 *
18 * Check partition table on IDE disks for common CHS translations
19 *
20 * Re-organised Feb 1998 Russell King
Christoph Hellwig3f4fc592020-03-24 08:25:29 +010021 *
22 * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
23 * updated by Marc Espie <Marc.Espie@openbsd.org>
24 *
25 * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
26 * and Krzysztof G. Baranowski <kgb@knm.org.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
Frank Seidel0607fd02008-04-28 02:16:31 -070028#include <linux/msdos_fs.h>
Christoph Hellwig1442f762020-03-24 08:25:26 +010029#include <linux/msdos_partition.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include "check.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "efi.h"
33
34/*
35 * Many architectures don't like unaligned accesses, while
36 * the nr_sects and start_sect partition table entries are
37 * at a 2 (mod 4) address.
38 */
39#include <asm/unaligned.h>
40
Christoph Hellwig1442f762020-03-24 08:25:26 +010041static inline sector_t nr_sects(struct msdos_partition *p)
Daniel Taylor3fbf5862010-03-23 13:35:50 -070042{
43 return (sector_t)get_unaligned_le32(&p->nr_sects);
44}
45
Christoph Hellwig1442f762020-03-24 08:25:26 +010046static inline sector_t start_sect(struct msdos_partition *p)
Daniel Taylor3fbf5862010-03-23 13:35:50 -070047{
48 return (sector_t)get_unaligned_le32(&p->start_sect);
49}
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Christoph Hellwig1442f762020-03-24 08:25:26 +010051static inline int is_extended_partition(struct msdos_partition *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Arnd Bergmann1b177492021-05-08 00:07:53 +020053 return (p->sys_ind == DOS_EXTENDED_PARTITION ||
54 p->sys_ind == WIN98_EXTENDED_PARTITION ||
55 p->sys_ind == LINUX_EXTENDED_PARTITION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
58#define MSDOS_LABEL_MAGIC1 0x55
59#define MSDOS_LABEL_MAGIC2 0xAA
60
61static inline int
62msdos_magic_present(unsigned char *p)
63{
64 return (p[0] == MSDOS_LABEL_MAGIC1 && p[1] == MSDOS_LABEL_MAGIC2);
65}
66
Olaf Heringe1dfa922006-09-29 01:59:39 -070067/* Value is EBCDIC 'IBMA' */
68#define AIX_LABEL_MAGIC1 0xC9
69#define AIX_LABEL_MAGIC2 0xC2
70#define AIX_LABEL_MAGIC3 0xD4
71#define AIX_LABEL_MAGIC4 0xC1
Tejun Heo1493bf22010-05-15 20:09:30 +020072static int aix_magic_present(struct parsed_partitions *state, unsigned char *p)
Olaf Heringe1dfa922006-09-29 01:59:39 -070073{
Christoph Hellwig1442f762020-03-24 08:25:26 +010074 struct msdos_partition *pt = (struct msdos_partition *) (p + 0x1be);
Olaf Heringe1dfa922006-09-29 01:59:39 -070075 Sector sect;
76 unsigned char *d;
Olaf Hering4419d1a2007-02-10 01:45:47 -080077 int slot, ret = 0;
Olaf Heringe1dfa922006-09-29 01:59:39 -070078
Olaf Heringa470e182007-02-10 01:45:48 -080079 if (!(p[0] == AIX_LABEL_MAGIC1 &&
80 p[1] == AIX_LABEL_MAGIC2 &&
81 p[2] == AIX_LABEL_MAGIC3 &&
82 p[3] == AIX_LABEL_MAGIC4))
Olaf Heringe1dfa922006-09-29 01:59:39 -070083 return 0;
Christoph Hellwigcb0ab522020-03-24 08:25:28 +010084
85 /*
86 * Assume the partition table is valid if Linux partitions exists.
87 * Note that old Solaris/x86 partitions use the same indicator as
88 * Linux swap partitions, so we consider that a Linux partition as
89 * well.
90 */
Olaf Hering4419d1a2007-02-10 01:45:47 -080091 for (slot = 1; slot <= 4; slot++, pt++) {
Christoph Hellwigcb0ab522020-03-24 08:25:28 +010092 if (pt->sys_ind == SOLARIS_X86_PARTITION ||
93 pt->sys_ind == LINUX_RAID_PARTITION ||
94 pt->sys_ind == LINUX_DATA_PARTITION ||
95 pt->sys_ind == LINUX_LVM_PARTITION ||
96 is_extended_partition(pt))
Olaf Hering4419d1a2007-02-10 01:45:47 -080097 return 0;
98 }
Tejun Heo1493bf22010-05-15 20:09:30 +020099 d = read_part_sector(state, 7, &sect);
Olaf Heringe1dfa922006-09-29 01:59:39 -0700100 if (d) {
101 if (d[0] == '_' && d[1] == 'L' && d[2] == 'V' && d[3] == 'M')
102 ret = 1;
103 put_dev_sector(sect);
Philippe De Muyter1d04f3c2013-07-08 16:01:28 -0700104 }
Olaf Heringe1dfa922006-09-29 01:59:39 -0700105 return ret;
106}
107
Stephen Warrend33b98f2012-11-08 16:12:28 -0800108static void set_info(struct parsed_partitions *state, int slot,
109 u32 disksig)
110{
111 struct partition_meta_info *info = &state->parts[slot].info;
112
113 snprintf(info->uuid, sizeof(info->uuid), "%08x-%02x", disksig,
114 slot);
115 info->volname[0] = 0;
116 state->parts[slot].has_info = true;
117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/*
120 * Create devices for each logical partition in an extended partition.
121 * The logical partitions form a linked list, with each entry being
122 * a partition table with two entries. The first entry
123 * is the real data partition (with a start relative to the partition
124 * table start). The second is a pointer to the next logical partition
125 * (with a start relative to the entire extended partition).
126 * We do not create a Linux partition for the partition tables, but
127 * only for the actual data partitions.
128 */
129
Tejun Heo1493bf22010-05-15 20:09:30 +0200130static void parse_extended(struct parsed_partitions *state,
Stephen Warrend33b98f2012-11-08 16:12:28 -0800131 sector_t first_sector, sector_t first_size,
132 u32 disksig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Christoph Hellwig1442f762020-03-24 08:25:26 +0100134 struct msdos_partition *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 Sector sect;
136 unsigned char *data;
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700137 sector_t this_sector, this_size;
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200138 sector_t sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int loopct = 0; /* number of links followed
140 without finding a data partition */
141 int i;
142
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200143 sector_size = queue_logical_block_size(state->disk->queue) / 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 this_sector = first_sector;
145 this_size = first_size;
146
147 while (1) {
148 if (++loopct > 100)
149 return;
150 if (state->next == state->limit)
151 return;
Tejun Heo1493bf22010-05-15 20:09:30 +0200152 data = read_part_sector(state, this_sector, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!data)
154 return;
155
156 if (!msdos_magic_present(data + 510))
Philippe De Muyter1d04f3c2013-07-08 16:01:28 -0700157 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Christoph Hellwig1442f762020-03-24 08:25:26 +0100159 p = (struct msdos_partition *) (data + 0x1be);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /*
162 * Usually, the first entry is the real data partition,
163 * the 2nd entry is the next extended partition, or empty,
164 * and the 3rd and 4th entries are unused.
165 * However, DRDOS sometimes has the extended partition as
166 * the first entry (when the data partition is empty),
167 * and OS/2 seems to use all four entries.
168 */
169
Philippe De Muyter1d04f3c2013-07-08 16:01:28 -0700170 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * First process the data partition(s)
172 */
Fabian Frederickdce14c22014-06-12 20:16:57 +0200173 for (i = 0; i < 4; i++, p++) {
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700174 sector_t offs, size, next;
Fabian Frederickdce14c22014-06-12 20:16:57 +0200175
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700176 if (!nr_sects(p) || is_extended_partition(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 continue;
178
179 /* Check the 3rd and 4th entries -
180 these sometimes contain random garbage */
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700181 offs = start_sect(p)*sector_size;
182 size = nr_sects(p)*sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 next = this_sector + offs;
184 if (i >= 2) {
185 if (offs + size > this_size)
186 continue;
187 if (next < first_sector)
188 continue;
189 if (next + size > first_sector + first_size)
190 continue;
191 }
192
193 put_partition(state, state->next, next, size);
Stephen Warrend33b98f2012-11-08 16:12:28 -0800194 set_info(state, state->next, disksig);
Arnd Bergmann1b177492021-05-08 00:07:53 +0200195 if (p->sys_ind == LINUX_RAID_PARTITION)
Fabio Massimo Di Nittod18d7682007-02-10 23:50:00 -0800196 state->parts[state->next].flags = ADDPART_FLAG_RAID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 loopct = 0;
198 if (++state->next == state->limit)
199 goto done;
200 }
201 /*
202 * Next, process the (first) extended partition, if present.
203 * (So far, there seems to be no reason to make
204 * parse_extended() recursive and allow a tree
205 * of extended partitions.)
206 * It should be a link to the next logical partition.
207 */
208 p -= 4;
Fabian Frederickdce14c22014-06-12 20:16:57 +0200209 for (i = 0; i < 4; i++, p++)
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700210 if (nr_sects(p) && is_extended_partition(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 break;
212 if (i == 4)
213 goto done; /* nothing left to do */
214
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700215 this_sector = first_sector + start_sect(p) * sector_size;
216 this_size = nr_sects(p) * sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 put_dev_sector(sect);
218 }
219done:
220 put_dev_sector(sect);
221}
222
Christoph Hellwig3f4fc592020-03-24 08:25:29 +0100223#define SOLARIS_X86_NUMSLICE 16
224#define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
225
226struct solaris_x86_slice {
227 __le16 s_tag; /* ID tag of partition */
228 __le16 s_flag; /* permission flags */
229 __le32 s_start; /* start sector no of partition */
230 __le32 s_size; /* # of blocks in partition */
231};
232
233struct solaris_x86_vtoc {
234 unsigned int v_bootinfo[3]; /* info needed by mboot */
235 __le32 v_sanity; /* to verify vtoc sanity */
236 __le32 v_version; /* layout version */
237 char v_volume[8]; /* volume name */
238 __le16 v_sectorsz; /* sector size in bytes */
239 __le16 v_nparts; /* number of partitions */
240 unsigned int v_reserved[10]; /* free space */
241 struct solaris_x86_slice
242 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
243 unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp */
244 char v_asciilabel[128]; /* for compatibility */
245};
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/* james@bpgc.com: Solaris has a nasty indicator: 0x82 which also
248 indicates linux swap. Be careful before believing this is Solaris. */
249
Tejun Heo1493bf22010-05-15 20:09:30 +0200250static void parse_solaris_x86(struct parsed_partitions *state,
251 sector_t offset, sector_t size, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253#ifdef CONFIG_SOLARIS_X86_PARTITION
254 Sector sect;
255 struct solaris_x86_vtoc *v;
256 int i;
Mark Fortescueb84d8792007-07-25 18:30:08 -0700257 short max_nparts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Tejun Heo1493bf22010-05-15 20:09:30 +0200259 v = read_part_sector(state, offset + 1, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (!v)
261 return;
262 if (le32_to_cpu(v->v_sanity) != SOLARIS_X86_VTOC_SANE) {
263 put_dev_sector(sect);
264 return;
265 }
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700266 {
267 char tmp[1 + BDEVNAME_SIZE + 10 + 11 + 1];
268
269 snprintf(tmp, sizeof(tmp), " %s%d: <solaris:", state->name, origin);
270 strlcat(state->pp_buf, tmp, PAGE_SIZE);
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (le32_to_cpu(v->v_version) != 1) {
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700273 char tmp[64];
274
275 snprintf(tmp, sizeof(tmp), " cannot handle version %d vtoc>\n",
276 le32_to_cpu(v->v_version));
277 strlcat(state->pp_buf, tmp, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 put_dev_sector(sect);
279 return;
280 }
Mark Fortescueb84d8792007-07-25 18:30:08 -0700281 /* Ensure we can handle previous case of VTOC with 8 entries gracefully */
Fabian Frederickdce14c22014-06-12 20:16:57 +0200282 max_nparts = le16_to_cpu(v->v_nparts) > 8 ? SOLARIS_X86_NUMSLICE : 8;
283 for (i = 0; i < max_nparts && state->next < state->limit; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct solaris_x86_slice *s = &v->v_slice[i];
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700285 char tmp[3 + 10 + 1 + 1];
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (s->s_size == 0)
288 continue;
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700289 snprintf(tmp, sizeof(tmp), " [s%d]", i);
290 strlcat(state->pp_buf, tmp, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* solaris partitions are relative to current MS-DOS
292 * one; must add the offset of the current partition */
293 put_partition(state, state->next++,
294 le32_to_cpu(s->s_start)+offset,
295 le32_to_cpu(s->s_size));
296 }
297 put_dev_sector(sect);
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700298 strlcat(state->pp_buf, " >\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#endif
300}
301
Christoph Hellwig3f4fc592020-03-24 08:25:29 +0100302/* check against BSD src/sys/sys/disklabel.h for consistency */
303#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
304#define BSD_MAXPARTITIONS 16
305#define OPENBSD_MAXPARTITIONS 16
306#define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
307struct bsd_disklabel {
308 __le32 d_magic; /* the magic number */
309 __s16 d_type; /* drive type */
310 __s16 d_subtype; /* controller/d_type specific */
311 char d_typename[16]; /* type name, e.g. "eagle" */
312 char d_packname[16]; /* pack identifier */
313 __u32 d_secsize; /* # of bytes per sector */
314 __u32 d_nsectors; /* # of data sectors per track */
315 __u32 d_ntracks; /* # of tracks per cylinder */
316 __u32 d_ncylinders; /* # of data cylinders per unit */
317 __u32 d_secpercyl; /* # of data sectors per cylinder */
318 __u32 d_secperunit; /* # of data sectors per unit */
319 __u16 d_sparespertrack; /* # of spare sectors per track */
320 __u16 d_sparespercyl; /* # of spare sectors per cylinder */
321 __u32 d_acylinders; /* # of alt. cylinders per unit */
322 __u16 d_rpm; /* rotational speed */
323 __u16 d_interleave; /* hardware sector interleave */
324 __u16 d_trackskew; /* sector 0 skew, per track */
325 __u16 d_cylskew; /* sector 0 skew, per cylinder */
326 __u32 d_headswitch; /* head switch time, usec */
327 __u32 d_trkseek; /* track-to-track seek, usec */
328 __u32 d_flags; /* generic flags */
329#define NDDATA 5
330 __u32 d_drivedata[NDDATA]; /* drive-type specific information */
331#define NSPARE 5
332 __u32 d_spare[NSPARE]; /* reserved for future use */
333 __le32 d_magic2; /* the magic number (again) */
334 __le16 d_checksum; /* xor of data incl. partitions */
335
336 /* filesystem and partition information: */
337 __le16 d_npartitions; /* number of partitions in following */
338 __le32 d_bbsize; /* size of boot area at sn0, bytes */
339 __le32 d_sbsize; /* max size of fs superblock, bytes */
340 struct bsd_partition { /* the partition table */
341 __le32 p_size; /* number of sectors in partition */
342 __le32 p_offset; /* starting sector */
343 __le32 p_fsize; /* filesystem basic fragment size */
344 __u8 p_fstype; /* filesystem type, see below */
345 __u8 p_frag; /* filesystem fragments per block */
346 __le16 p_cpg; /* filesystem cylinders per group */
347 } d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
348};
349
Adrian Bunk486fd402005-06-25 14:58:47 -0700350#if defined(CONFIG_BSD_DISKLABEL)
Philippe De Muyter1d04f3c2013-07-08 16:01:28 -0700351/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * Create devices for BSD partitions listed in a disklabel, under a
353 * dos-like partition. See parse_extended() for more information.
354 */
Tejun Heo1493bf22010-05-15 20:09:30 +0200355static void parse_bsd(struct parsed_partitions *state,
356 sector_t offset, sector_t size, int origin, char *flavour,
357 int max_partitions)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 Sector sect;
360 struct bsd_disklabel *l;
361 struct bsd_partition *p;
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700362 char tmp[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Tejun Heo1493bf22010-05-15 20:09:30 +0200364 l = read_part_sector(state, offset + 1, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (!l)
366 return;
367 if (le32_to_cpu(l->d_magic) != BSD_DISKMAGIC) {
368 put_dev_sector(sect);
369 return;
370 }
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700371
372 snprintf(tmp, sizeof(tmp), " %s%d: <%s:", state->name, origin, flavour);
373 strlcat(state->pp_buf, tmp, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 if (le16_to_cpu(l->d_npartitions) < max_partitions)
376 max_partitions = le16_to_cpu(l->d_npartitions);
377 for (p = l->d_partitions; p - l->d_partitions < max_partitions; p++) {
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700378 sector_t bsd_start, bsd_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (state->next == state->limit)
381 break;
Philippe De Muyter1d04f3c2013-07-08 16:01:28 -0700382 if (p->p_fstype == BSD_FS_UNUSED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 continue;
384 bsd_start = le32_to_cpu(p->p_offset);
385 bsd_size = le32_to_cpu(p->p_size);
Richard Narron5f156842018-01-10 09:12:16 -0700386 /* FreeBSD has relative offset if C partition offset is zero */
387 if (memcmp(flavour, "bsd\0", 4) == 0 &&
388 le32_to_cpu(l->d_partitions[2].p_offset) == 0)
Richard22322032017-05-21 12:27:00 -0700389 bsd_start += offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (offset == bsd_start && size == bsd_size)
391 /* full parent partition, we have it already */
392 continue;
393 if (offset > bsd_start || offset+size < bsd_start+bsd_size) {
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700394 strlcat(state->pp_buf, "bad subpartition - ignored\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 continue;
396 }
397 put_partition(state, state->next++, bsd_start, bsd_size);
398 }
399 put_dev_sector(sect);
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700400 if (le16_to_cpu(l->d_npartitions) > max_partitions) {
401 snprintf(tmp, sizeof(tmp), " (ignored %d more)",
402 le16_to_cpu(l->d_npartitions) - max_partitions);
403 strlcat(state->pp_buf, tmp, PAGE_SIZE);
404 }
405 strlcat(state->pp_buf, " >\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407#endif
408
Tejun Heo1493bf22010-05-15 20:09:30 +0200409static void parse_freebsd(struct parsed_partitions *state,
410 sector_t offset, sector_t size, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412#ifdef CONFIG_BSD_DISKLABEL
Tejun Heo1493bf22010-05-15 20:09:30 +0200413 parse_bsd(state, offset, size, origin, "bsd", BSD_MAXPARTITIONS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414#endif
415}
416
Tejun Heo1493bf22010-05-15 20:09:30 +0200417static void parse_netbsd(struct parsed_partitions *state,
418 sector_t offset, sector_t size, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420#ifdef CONFIG_BSD_DISKLABEL
Tejun Heo1493bf22010-05-15 20:09:30 +0200421 parse_bsd(state, offset, size, origin, "netbsd", BSD_MAXPARTITIONS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#endif
423}
424
Tejun Heo1493bf22010-05-15 20:09:30 +0200425static void parse_openbsd(struct parsed_partitions *state,
426 sector_t offset, sector_t size, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428#ifdef CONFIG_BSD_DISKLABEL
Tejun Heo1493bf22010-05-15 20:09:30 +0200429 parse_bsd(state, offset, size, origin, "openbsd",
430 OPENBSD_MAXPARTITIONS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431#endif
432}
433
Christoph Hellwig3f4fc592020-03-24 08:25:29 +0100434#define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
435#define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
436#define UNIXWARE_NUMSLICE 16
437#define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
438
439struct unixware_slice {
440 __le16 s_label; /* label */
441 __le16 s_flags; /* permission flags */
442 __le32 start_sect; /* starting sector */
443 __le32 nr_sects; /* number of sectors in slice */
444};
445
446struct unixware_disklabel {
447 __le32 d_type; /* drive type */
448 __le32 d_magic; /* the magic number */
449 __le32 d_version; /* version number */
450 char d_serial[12]; /* serial number of the device */
451 __le32 d_ncylinders; /* # of data cylinders per device */
452 __le32 d_ntracks; /* # of tracks per cylinder */
453 __le32 d_nsectors; /* # of data sectors per track */
454 __le32 d_secsize; /* # of bytes per sector */
455 __le32 d_part_start; /* # of first sector of this partition*/
456 __le32 d_unknown1[12]; /* ? */
457 __le32 d_alt_tbl; /* byte offset of alternate table */
458 __le32 d_alt_len; /* byte length of alternate table */
459 __le32 d_phys_cyl; /* # of physical cylinders per device */
460 __le32 d_phys_trk; /* # of physical tracks per cylinder */
461 __le32 d_phys_sec; /* # of physical sectors per track */
462 __le32 d_phys_bytes; /* # of physical bytes per sector */
463 __le32 d_unknown2; /* ? */
464 __le32 d_unknown3; /* ? */
465 __le32 d_pad[8]; /* pad */
466
467 struct unixware_vtoc {
468 __le32 v_magic; /* the magic number */
469 __le32 v_version; /* version number */
470 char v_name[8]; /* volume name */
471 __le16 v_nslices; /* # of slices */
472 __le16 v_unknown1; /* ? */
473 __le32 v_reserved[10]; /* reserved */
474 struct unixware_slice
475 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
476 } vtoc;
477}; /* 408 */
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
480 * Create devices for Unixware partitions listed in a disklabel, under a
481 * dos-like partition. See parse_extended() for more information.
482 */
Tejun Heo1493bf22010-05-15 20:09:30 +0200483static void parse_unixware(struct parsed_partitions *state,
484 sector_t offset, sector_t size, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486#ifdef CONFIG_UNIXWARE_DISKLABEL
487 Sector sect;
488 struct unixware_disklabel *l;
489 struct unixware_slice *p;
490
Tejun Heo1493bf22010-05-15 20:09:30 +0200491 l = read_part_sector(state, offset + 29, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (!l)
493 return;
494 if (le32_to_cpu(l->d_magic) != UNIXWARE_DISKMAGIC ||
495 le32_to_cpu(l->vtoc.v_magic) != UNIXWARE_DISKMAGIC2) {
496 put_dev_sector(sect);
497 return;
498 }
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700499 {
500 char tmp[1 + BDEVNAME_SIZE + 10 + 12 + 1];
501
502 snprintf(tmp, sizeof(tmp), " %s%d: <unixware:", state->name, origin);
503 strlcat(state->pp_buf, tmp, PAGE_SIZE);
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 p = &l->vtoc.v_slice[1];
506 /* I omit the 0th slice as it is the same as whole disk. */
507 while (p - &l->vtoc.v_slice[0] < UNIXWARE_NUMSLICE) {
508 if (state->next == state->limit)
509 break;
510
511 if (p->s_label != UNIXWARE_FS_UNUSED)
512 put_partition(state, state->next++,
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700513 le32_to_cpu(p->start_sect),
514 le32_to_cpu(p->nr_sects));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 p++;
516 }
517 put_dev_sector(sect);
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700518 strlcat(state->pp_buf, " >\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519#endif
520}
521
Christoph Hellwig3f4fc592020-03-24 08:25:29 +0100522#define MINIX_NR_SUBPARTITIONS 4
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
525 * Minix 2.0.0/2.0.2 subpartition support.
526 * Anand Krishnamurthy <anandk@wiproge.med.ge.com>
527 * Rajeev V. Pillai <rajeevvp@yahoo.com>
528 */
Tejun Heo1493bf22010-05-15 20:09:30 +0200529static void parse_minix(struct parsed_partitions *state,
530 sector_t offset, sector_t size, int origin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532#ifdef CONFIG_MINIX_SUBPARTITION
533 Sector sect;
534 unsigned char *data;
Christoph Hellwig1442f762020-03-24 08:25:26 +0100535 struct msdos_partition *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int i;
537
Tejun Heo1493bf22010-05-15 20:09:30 +0200538 data = read_part_sector(state, offset, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (!data)
540 return;
541
Christoph Hellwig1442f762020-03-24 08:25:26 +0100542 p = (struct msdos_partition *)(data + 0x1be);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* The first sector of a Minix partition can have either
545 * a secondary MBR describing its subpartitions, or
546 * the normal boot sector. */
Fabian Frederickdce14c22014-06-12 20:16:57 +0200547 if (msdos_magic_present(data + 510) &&
Arnd Bergmann1b177492021-05-08 00:07:53 +0200548 p->sys_ind == MINIX_PARTITION) { /* subpartition table present */
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700549 char tmp[1 + BDEVNAME_SIZE + 10 + 9 + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700551 snprintf(tmp, sizeof(tmp), " %s%d: <minix:", state->name, origin);
552 strlcat(state->pp_buf, tmp, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 for (i = 0; i < MINIX_NR_SUBPARTITIONS; i++, p++) {
554 if (state->next == state->limit)
555 break;
556 /* add each partition in use */
Arnd Bergmann1b177492021-05-08 00:07:53 +0200557 if (p->sys_ind == MINIX_PARTITION)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 put_partition(state, state->next++,
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700559 start_sect(p), nr_sects(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700561 strlcat(state->pp_buf, " >\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563 put_dev_sector(sect);
564#endif /* CONFIG_MINIX_SUBPARTITION */
565}
566
567static struct {
568 unsigned char id;
Tejun Heo1493bf22010-05-15 20:09:30 +0200569 void (*parse)(struct parsed_partitions *, sector_t, sector_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570} subtypes[] = {
571 {FREEBSD_PARTITION, parse_freebsd},
572 {NETBSD_PARTITION, parse_netbsd},
573 {OPENBSD_PARTITION, parse_openbsd},
574 {MINIX_PARTITION, parse_minix},
575 {UNIXWARE_PARTITION, parse_unixware},
576 {SOLARIS_X86_PARTITION, parse_solaris_x86},
577 {NEW_SOLARIS_X86_PARTITION, parse_solaris_x86},
578 {0, NULL},
579};
Philippe De Muyter1d04f3c2013-07-08 16:01:28 -0700580
Tejun Heo1493bf22010-05-15 20:09:30 +0200581int msdos_partition(struct parsed_partitions *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200583 sector_t sector_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 Sector sect;
585 unsigned char *data;
Christoph Hellwig1442f762020-03-24 08:25:26 +0100586 struct msdos_partition *p;
Frank Seidel0607fd02008-04-28 02:16:31 -0700587 struct fat_boot_sector *fb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int slot;
Stephen Warrend33b98f2012-11-08 16:12:28 -0800589 u32 disksig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Christoph Hellwiga08aa9b2021-08-10 17:45:09 +0200591 sector_size = queue_logical_block_size(state->disk->queue) / 512;
Tejun Heo1493bf22010-05-15 20:09:30 +0200592 data = read_part_sector(state, 0, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (!data)
594 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Philippe De Muyter86ee8ba2013-02-27 17:05:16 -0800596 /*
597 * Note order! (some AIX disks, e.g. unbootable kind,
598 * have no MSDOS 55aa)
599 */
Tejun Heo1493bf22010-05-15 20:09:30 +0200600 if (aix_magic_present(state, data)) {
Olaf Heringe1dfa922006-09-29 01:59:39 -0700601 put_dev_sector(sect);
Philippe De Muyterf8f06602013-07-08 16:01:30 -0700602#ifdef CONFIG_AIX_PARTITION
603 return aix_partition(state);
604#else
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700605 strlcat(state->pp_buf, " [AIX]", PAGE_SIZE);
Olaf Heringe1dfa922006-09-29 01:59:39 -0700606 return 0;
Philippe De Muyterf8f06602013-07-08 16:01:30 -0700607#endif
Olaf Heringe1dfa922006-09-29 01:59:39 -0700608 }
609
Philippe De Muyter86ee8ba2013-02-27 17:05:16 -0800610 if (!msdos_magic_present(data + 510)) {
611 put_dev_sector(sect);
612 return 0;
613 }
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * Now that the 55aa signature is present, this is probably
617 * either the boot sector of a FAT filesystem or a DOS-type
618 * partition table. Reject this in case the boot indicator
619 * is not 0 or 0x80.
620 */
Christoph Hellwig1442f762020-03-24 08:25:26 +0100621 p = (struct msdos_partition *) (data + 0x1be);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 for (slot = 1; slot <= 4; slot++, p++) {
623 if (p->boot_ind != 0 && p->boot_ind != 0x80) {
Frank Seidel0607fd02008-04-28 02:16:31 -0700624 /*
Thomas Bracht Laumann Jespersenddcc5c52021-06-19 21:51:31 +0200625 * Even without a valid boot indicator value
Frank Seidel0607fd02008-04-28 02:16:31 -0700626 * its still possible this is valid FAT filesystem
627 * without a partition table.
628 */
629 fb = (struct fat_boot_sector *) data;
630 if (slot == 1 && fb->reserved && fb->fats
631 && fat_valid_media(fb->media)) {
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700632 strlcat(state->pp_buf, "\n", PAGE_SIZE);
Frank Seidel0607fd02008-04-28 02:16:31 -0700633 put_dev_sector(sect);
634 return 1;
635 } else {
636 put_dev_sector(sect);
637 return 0;
638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640 }
641
642#ifdef CONFIG_EFI_PARTITION
Christoph Hellwig1442f762020-03-24 08:25:26 +0100643 p = (struct msdos_partition *) (data + 0x1be);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 for (slot = 1 ; slot <= 4 ; slot++, p++) {
645 /* If this is an EFI GPT disk, msdos should ignore it. */
Arnd Bergmann1b177492021-05-08 00:07:53 +0200646 if (p->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 put_dev_sector(sect);
648 return 0;
649 }
650 }
651#endif
Christoph Hellwig1442f762020-03-24 08:25:26 +0100652 p = (struct msdos_partition *) (data + 0x1be);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Stephen Warrend33b98f2012-11-08 16:12:28 -0800654 disksig = le32_to_cpup((__le32 *)(data + 0x1b8));
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /*
657 * Look for partitions in two passes:
658 * First find the primary and DOS-type extended partitions.
659 * On the second pass look inside *BSD, Unixware and Solaris partitions.
660 */
661
662 state->next = 5;
663 for (slot = 1 ; slot <= 4 ; slot++, p++) {
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700664 sector_t start = start_sect(p)*sector_size;
665 sector_t size = nr_sects(p)*sector_size;
Fabian Frederickdce14c22014-06-12 20:16:57 +0200666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (!size)
668 continue;
669 if (is_extended_partition(p)) {
OGAWA Hirofumi8e0cc812010-03-23 13:35:50 -0700670 /*
671 * prevent someone doing mkfs or mkswap on an
672 * extended partition, but leave room for LILO
673 * FIXME: this uses one logical sector for > 512b
674 * sector, although it may not be enough/proper.
675 */
676 sector_t n = 2;
Fabian Frederickdce14c22014-06-12 20:16:57 +0200677
OGAWA Hirofumi8e0cc812010-03-23 13:35:50 -0700678 n = min(size, max(sector_size, n));
679 put_partition(state, slot, start, n);
680
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700681 strlcat(state->pp_buf, " <", PAGE_SIZE);
Stephen Warrend33b98f2012-11-08 16:12:28 -0800682 parse_extended(state, start, size, disksig);
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700683 strlcat(state->pp_buf, " >", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 continue;
685 }
686 put_partition(state, slot, start, size);
Stephen Warrend33b98f2012-11-08 16:12:28 -0800687 set_info(state, slot, disksig);
Arnd Bergmann1b177492021-05-08 00:07:53 +0200688 if (p->sys_ind == LINUX_RAID_PARTITION)
Cesar Eduardo Barroscc910622010-04-17 19:28:09 -0300689 state->parts[slot].flags = ADDPART_FLAG_RAID;
Arnd Bergmann1b177492021-05-08 00:07:53 +0200690 if (p->sys_ind == DM6_PARTITION)
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700691 strlcat(state->pp_buf, "[DM]", PAGE_SIZE);
Arnd Bergmann1b177492021-05-08 00:07:53 +0200692 if (p->sys_ind == EZD_PARTITION)
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700693 strlcat(state->pp_buf, "[EZD]", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700696 strlcat(state->pp_buf, "\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 /* second pass - output for each on a separate line */
Christoph Hellwig1442f762020-03-24 08:25:26 +0100699 p = (struct msdos_partition *) (0x1be + data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 for (slot = 1 ; slot <= 4 ; slot++, p++) {
Arnd Bergmann1b177492021-05-08 00:07:53 +0200701 unsigned char id = p->sys_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 int n;
703
Daniel Taylor3fbf5862010-03-23 13:35:50 -0700704 if (!nr_sects(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 continue;
706
707 for (n = 0; subtypes[n].parse && id != subtypes[n].id; n++)
708 ;
709
710 if (!subtypes[n].parse)
711 continue;
Tejun Heo1493bf22010-05-15 20:09:30 +0200712 subtypes[n].parse(state, start_sect(p) * sector_size,
713 nr_sects(p) * sector_size, slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715 put_dev_sector(sect);
716 return 1;
717}