blob: 8ddc13b50c6ea379364ece7b45def29c73d66609 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkfe8c2802002-11-03 00:38:21 +00002/*
3 * (C) Copyright 2001
4 * Raymond Lo, lo@routefree.com
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkfe8c2802002-11-03 00:38:21 +00006 */
7
8/*
9 * Support for harddisk partitions.
10 *
11 * To be compatible with LinuxPPC and Apple we use the standard Apple
12 * SCSI disk partitioning scheme. For more information see:
13 * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92
14 */
15
16#include <common.h>
17#include <command.h>
18#include <ide.h>
Simon Glasscf92e052015-09-02 17:24:58 -060019#include <memalign.h>
wdenkfe8c2802002-11-03 00:38:21 +000020#include "part_dos.h"
21
Adam Ford1811a922018-02-06 12:43:56 -060022#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkfe8c2802002-11-03 00:38:21 +000023
Darwin Dingel4a36be92014-06-06 15:48:26 +120024#define DOS_PART_DEFAULT_SECTOR 512
25
Paul Emge232e2f42019-07-08 16:37:03 -070026/* should this be configurable? It looks like it's not very common at all
27 * to use large numbers of partitions */
28#define MAX_EXT_PARTS 256
29
wdenkfe8c2802002-11-03 00:38:21 +000030/* Convert char[4] in little endian format to the host format integer
31 */
Stefan Monnierd29892b2015-08-25 15:24:13 -040032static inline unsigned int le32_to_int(unsigned char *le32)
wdenkfe8c2802002-11-03 00:38:21 +000033{
34 return ((le32[3] << 24) +
35 (le32[2] << 16) +
36 (le32[1] << 8) +
37 le32[0]
38 );
39}
40
41static inline int is_extended(int part_type)
42{
43 return (part_type == 0x5 ||
44 part_type == 0xf ||
45 part_type == 0x85);
46}
47
Rob Herring40e0e562012-08-23 11:31:43 +000048static inline int is_bootable(dos_partition_t *p)
49{
Andre Przywaraeefa0a62017-07-06 10:14:03 +010050 return (p->sys_ind == 0xef) || (p->boot_ind == 0x80);
Rob Herring40e0e562012-08-23 11:31:43 +000051}
52
Stefan Monnierd29892b2015-08-25 15:24:13 -040053static void print_one_part(dos_partition_t *p, lbaint_t ext_part_sector,
Stephen Warrene2e9b372012-10-08 08:14:40 +000054 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +000055{
Stefan Monnierd29892b2015-08-25 15:24:13 -040056 lbaint_t lba_start = ext_part_sector + le32_to_int (p->start4);
57 lbaint_t lba_size = le32_to_int (p->size4);
wdenkfe8c2802002-11-03 00:38:21 +000058
Stefan Monnierd29892b2015-08-25 15:24:13 -040059 printf("%3d\t%-10" LBAFlength "u\t%-10" LBAFlength
60 "u\t%08x-%02x\t%02x%s%s\n",
Stephen Warrene2e9b372012-10-08 08:14:40 +000061 part_num, lba_start, lba_size, disksig, part_num, p->sys_ind,
Rob Herring40e0e562012-08-23 11:31:43 +000062 (is_extended(p->sys_ind) ? " Extd" : ""),
63 (is_bootable(p) ? " Boot" : ""));
wdenkfe8c2802002-11-03 00:38:21 +000064}
65
wdenk7205e402003-09-10 22:30:53 +000066static int test_block_type(unsigned char *buffer)
67{
Egbert Eich9d956e02013-04-09 05:46:14 +000068 int slot;
69 struct dos_partition *p;
70
wdenk7205e402003-09-10 22:30:53 +000071 if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
72 (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
73 return (-1);
74 } /* no DOS Signature at all */
Egbert Eich9d956e02013-04-09 05:46:14 +000075 p = (struct dos_partition *)&buffer[DOS_PART_TBL_OFFSET];
76 for (slot = 0; slot < 3; slot++) {
77 if (p->boot_ind != 0 && p->boot_ind != 0x80) {
78 if (!slot &&
79 (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],
80 "FAT", 3) == 0 ||
81 strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],
82 "FAT32", 5) == 0)) {
83 return DOS_PBR; /* is PBR */
84 } else {
85 return -1;
86 }
87 }
Wolfgang Denk66c2d732010-07-19 11:36:57 +020088 }
wdenk7205e402003-09-10 22:30:53 +000089 return DOS_MBR; /* Is MBR */
90}
91
wdenkfe8c2802002-11-03 00:38:21 +000092
Simon Glass084bf4c2016-02-29 15:26:04 -070093static int part_test_dos(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000094{
Fabio Estevam3ea05202017-10-04 13:29:57 -030095#ifndef CONFIG_SPL_BUILD
Faiz Abbas7aed3d32019-09-04 20:10:12 +053096 ALLOC_CACHE_ALIGN_BUFFER(legacy_mbr, mbr,
97 DIV_ROUND_UP(dev_desc->blksz, sizeof(legacy_mbr)));
wdenkfe8c2802002-11-03 00:38:21 +000098
Peter Jonesff98cb92017-09-13 18:05:25 -040099 if (blk_dread(dev_desc, 0, 1, (ulong *)mbr) != 1)
Stephen Warrend1efb642012-10-05 13:17:40 +0000100 return -1;
101
Peter Jonesff98cb92017-09-13 18:05:25 -0400102 if (test_block_type((unsigned char *)mbr) != DOS_MBR)
Stephen Warrend1efb642012-10-05 13:17:40 +0000103 return -1;
104
Peter Jonesff98cb92017-09-13 18:05:25 -0400105 if (dev_desc->sig_type == SIG_TYPE_NONE &&
106 mbr->unique_mbr_signature != 0) {
107 dev_desc->sig_type = SIG_TYPE_MBR;
108 dev_desc->mbr_sig = mbr->unique_mbr_signature;
109 }
Fabio Estevam3ea05202017-10-04 13:29:57 -0300110#else
111 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
112
113 if (blk_dread(dev_desc, 0, 1, (ulong *)buffer) != 1)
114 return -1;
115
116 if (test_block_type(buffer) != DOS_MBR)
117 return -1;
118#endif
Peter Jonesff98cb92017-09-13 18:05:25 -0400119
Stephen Warrend1efb642012-10-05 13:17:40 +0000120 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000121}
122
123/* Print a partition that is relative to its Extended partition table
124 */
Simon Glass4101f682016-02-29 15:25:34 -0700125static void print_partition_extended(struct blk_desc *dev_desc,
Stefan Monnierd29892b2015-08-25 15:24:13 -0400126 lbaint_t ext_part_sector,
127 lbaint_t relative,
Stephen Warrene2e9b372012-10-08 08:14:40 +0000128 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000129{
Eric Nelsondec049d2012-03-03 12:02:20 +0000130 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000131 dos_partition_t *pt;
132 int i;
133
Paul Emge232e2f42019-07-08 16:37:03 -0700134 /* set a maximum recursion level */
135 if (part_num > MAX_EXT_PARTS)
136 {
137 printf("** Nested DOS partitions detected, stopping **\n");
138 return;
139 }
140
Simon Glass2a981dc2016-02-29 15:25:52 -0700141 if (blk_dread(dev_desc, ext_part_sector, 1, (ulong *)buffer) != 1) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400142 printf ("** Can't read partition table on %d:" LBAFU " **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700143 dev_desc->devnum, ext_part_sector);
wdenkfe8c2802002-11-03 00:38:21 +0000144 return;
145 }
wdenk7205e402003-09-10 22:30:53 +0000146 i=test_block_type(buffer);
Stephen Warrend1efb642012-10-05 13:17:40 +0000147 if (i != DOS_MBR) {
wdenkfe8c2802002-11-03 00:38:21 +0000148 printf ("bad MBR sector signature 0x%02x%02x\n",
149 buffer[DOS_PART_MAGIC_OFFSET],
150 buffer[DOS_PART_MAGIC_OFFSET + 1]);
151 return;
152 }
Stephen Warrend1efb642012-10-05 13:17:40 +0000153
Stephen Warrene2e9b372012-10-08 08:14:40 +0000154 if (!ext_part_sector)
155 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
156
wdenkfe8c2802002-11-03 00:38:21 +0000157 /* Print all primary/logical partitions */
158 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
159 for (i = 0; i < 4; i++, pt++) {
160 /*
wdenk8bde7f72003-06-27 21:31:46 +0000161 * fdisk does not show the extended partitions that
wdenkfe8c2802002-11-03 00:38:21 +0000162 * are not in the MBR
163 */
164
165 if ((pt->sys_ind != 0) &&
166 (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
Stephen Warrene2e9b372012-10-08 08:14:40 +0000167 print_one_part(pt, ext_part_sector, part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000168 }
169
170 /* Reverse engr the fdisk part# assignment rule! */
171 if ((ext_part_sector == 0) ||
172 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
173 part_num++;
174 }
175 }
176
177 /* Follows the extended partitions */
178 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
179 for (i = 0; i < 4; i++, pt++) {
180 if (is_extended (pt->sys_ind)) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400181 lbaint_t lba_start
182 = le32_to_int (pt->start4) + relative;
wdenkfe8c2802002-11-03 00:38:21 +0000183
Stephen Warren304b5712012-10-08 08:14:38 +0000184 print_partition_extended(dev_desc, lba_start,
185 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrene2e9b372012-10-08 08:14:40 +0000186 part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000187 }
188 }
189
190 return;
191}
192
193
194/* Print a partition that is relative to its Extended partition table
195 */
Simon Glass3e8bd462016-02-29 15:25:48 -0700196static int part_get_info_extended(struct blk_desc *dev_desc,
197 lbaint_t ext_part_sector, lbaint_t relative,
198 int part_num, int which_part,
199 disk_partition_t *info, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000200{
Eric Nelsondec049d2012-03-03 12:02:20 +0000201 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000202 dos_partition_t *pt;
203 int i;
Darwin Dingel4a36be92014-06-06 15:48:26 +1200204 int dos_type;
wdenkfe8c2802002-11-03 00:38:21 +0000205
Paul Emge232e2f42019-07-08 16:37:03 -0700206 /* set a maximum recursion level */
207 if (part_num > MAX_EXT_PARTS)
208 {
209 printf("** Nested DOS partitions detected, stopping **\n");
210 return -1;
211 }
212
Simon Glass2a981dc2016-02-29 15:25:52 -0700213 if (blk_dread(dev_desc, ext_part_sector, 1, (ulong *)buffer) != 1) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400214 printf ("** Can't read partition table on %d:" LBAFU " **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700215 dev_desc->devnum, ext_part_sector);
wdenkfe8c2802002-11-03 00:38:21 +0000216 return -1;
217 }
218 if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
219 buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
220 printf ("bad MBR sector signature 0x%02x%02x\n",
221 buffer[DOS_PART_MAGIC_OFFSET],
222 buffer[DOS_PART_MAGIC_OFFSET + 1]);
223 return -1;
224 }
225
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100226#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warrend27b5f92012-09-21 09:51:00 +0000227 if (!ext_part_sector)
228 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
229#endif
230
wdenkfe8c2802002-11-03 00:38:21 +0000231 /* Print all primary/logical partitions */
232 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
233 for (i = 0; i < 4; i++, pt++) {
234 /*
wdenk8bde7f72003-06-27 21:31:46 +0000235 * fdisk does not show the extended partitions that
236 * are not in the MBR
wdenkfe8c2802002-11-03 00:38:21 +0000237 */
Daniel Mack78f4ca72009-09-28 11:40:38 +0200238 if (((pt->boot_ind & ~0x80) == 0) &&
239 (pt->sys_ind != 0) &&
wdenk7f70e852003-05-20 14:25:27 +0000240 (part_num == which_part) &&
Shawn Guo8f7102c2017-11-02 16:46:34 +0800241 (ext_part_sector == 0 || is_extended(pt->sys_ind) == 0)) {
Darwin Dingel4a36be92014-06-06 15:48:26 +1200242 info->blksz = DOS_PART_DEFAULT_SECTOR;
Steve Raee04350d2014-05-26 11:52:23 -0700243 info->start = (lbaint_t)(ext_part_sector +
244 le32_to_int(pt->start4));
245 info->size = (lbaint_t)le32_to_int(pt->size4);
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200246 part_set_generic_name(dev_desc, part_num,
247 (char *)info->name);
wdenkfe8c2802002-11-03 00:38:21 +0000248 /* sprintf(info->type, "%d, pt->sys_ind); */
Ben Whitten192bc692015-12-30 13:05:58 +0000249 strcpy((char *)info->type, "U-Boot");
Rob Herring40e0e562012-08-23 11:31:43 +0000250 info->bootable = is_bootable(pt);
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100251#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warrend27b5f92012-09-21 09:51:00 +0000252 sprintf(info->uuid, "%08x-%02x", disksig, part_num);
253#endif
Dalon Westergreenf0fb4fa2017-02-10 17:15:34 -0800254 info->sys_ind = pt->sys_ind;
wdenkfe8c2802002-11-03 00:38:21 +0000255 return 0;
256 }
257
258 /* Reverse engr the fdisk part# assignment rule! */
259 if ((ext_part_sector == 0) ||
260 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
261 part_num++;
262 }
263 }
264
265 /* Follows the extended partitions */
266 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
267 for (i = 0; i < 4; i++, pt++) {
268 if (is_extended (pt->sys_ind)) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400269 lbaint_t lba_start
270 = le32_to_int (pt->start4) + relative;
wdenkfe8c2802002-11-03 00:38:21 +0000271
Simon Glass3e8bd462016-02-29 15:25:48 -0700272 return part_get_info_extended(dev_desc, lba_start,
wdenkfe8c2802002-11-03 00:38:21 +0000273 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrend27b5f92012-09-21 09:51:00 +0000274 part_num, which_part, info, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000275 }
276 }
Darwin Dingel4a36be92014-06-06 15:48:26 +1200277
278 /* Check for DOS PBR if no partition is found */
279 dos_type = test_block_type(buffer);
280
281 if (dos_type == DOS_PBR) {
282 info->start = 0;
283 info->size = dev_desc->lba;
284 info->blksz = DOS_PART_DEFAULT_SECTOR;
285 info->bootable = 0;
Ben Whitten192bc692015-12-30 13:05:58 +0000286 strcpy((char *)info->type, "U-Boot");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100287#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Darwin Dingel4a36be92014-06-06 15:48:26 +1200288 info->uuid[0] = 0;
289#endif
290 return 0;
291 }
292
wdenkfe8c2802002-11-03 00:38:21 +0000293 return -1;
294}
295
Simon Glass084bf4c2016-02-29 15:26:04 -0700296void part_print_dos(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +0000297{
Stephen Warrene2e9b372012-10-08 08:14:40 +0000298 printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n");
299 print_partition_extended(dev_desc, 0, 0, 1, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000300}
301
Simon Glass3e8bd462016-02-29 15:25:48 -0700302int part_get_info_dos(struct blk_desc *dev_desc, int part,
303 disk_partition_t *info)
wdenkfe8c2802002-11-03 00:38:21 +0000304{
Simon Glass3e8bd462016-02-29 15:25:48 -0700305 return part_get_info_extended(dev_desc, 0, 0, 1, part, info, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000306}
307
Petr Kulhavyb6dd69a2016-09-09 10:27:16 +0200308int is_valid_dos_buf(void *buf)
309{
310 return test_block_type(buf) == DOS_MBR ? 0 : -1;
311}
312
313int write_mbr_partition(struct blk_desc *dev_desc, void *buf)
314{
315 if (is_valid_dos_buf(buf))
316 return -1;
317
318 /* write MBR */
319 if (blk_dwrite(dev_desc, 0, 1, buf) != 1) {
320 printf("%s: failed writing '%s' (1 blks at 0x0)\n",
321 __func__, "MBR");
322 return 1;
323 }
324
325 return 0;
326}
327
Simon Glass96e5b032016-02-29 15:25:47 -0700328U_BOOT_PART_TYPE(dos) = {
329 .name = "DOS",
330 .part_type = PART_TYPE_DOS,
Petr Kulhavy87b85302016-09-09 10:27:15 +0200331 .max_entries = DOS_ENTRY_NUMBERS,
Simon Glass3e8bd462016-02-29 15:25:48 -0700332 .get_info = part_get_info_ptr(part_get_info_dos),
Simon Glass084bf4c2016-02-29 15:26:04 -0700333 .print = part_print_ptr(part_print_dos),
334 .test = part_test_dos,
Simon Glass96e5b032016-02-29 15:25:47 -0700335};
wdenkfe8c2802002-11-03 00:38:21 +0000336
Jon Loeligercde5c642007-07-09 17:22:37 -0500337#endif