blob: 96f748702fd5f9a410d49544a26ea91479ae9c56 [file] [log] [blame]
Tom Rini10e47792018-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
Simon Glass655306c2020-05-10 11:39:58 -060016#include <blk.h>
wdenkfe8c2802002-11-03 00:38:21 +000017#include <command.h>
18#include <ide.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060019#include <memalign.h>
Tom Rinidec7ea02024-05-20 13:35:03 -060020#include <vsprintf.h>
Marek Szyprowski552f79c2020-12-23 13:55:12 +010021#include <asm/unaligned.h>
Marek Szyprowskicbea6472020-12-23 13:55:13 +010022#include <linux/compiler.h>
wdenkfe8c2802002-11-03 00:38:21 +000023#include "part_dos.h"
Simon Glass655306c2020-05-10 11:39:58 -060024#include <part.h>
wdenkfe8c2802002-11-03 00:38:21 +000025
Darwin Dingel2c1e1b62014-06-06 15:48:26 +120026#define DOS_PART_DEFAULT_SECTOR 512
27
Paul Emge61494122019-07-08 16:37:03 -070028/* should this be configurable? It looks like it's not very common at all
29 * to use large numbers of partitions */
30#define MAX_EXT_PARTS 256
31
wdenkfe8c2802002-11-03 00:38:21 +000032static inline int is_extended(int part_type)
33{
Marek Szyprowski654fa832020-12-23 13:55:11 +010034 return (part_type == DOS_PART_TYPE_EXTENDED ||
35 part_type == DOS_PART_TYPE_EXTENDED_LBA ||
36 part_type == DOS_PART_TYPE_EXTENDED_LINUX);
wdenkfe8c2802002-11-03 00:38:21 +000037}
38
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010039static int get_bootable(dos_partition_t *p)
Rob Herringeda51112012-08-23 11:31:43 +000040{
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010041 int ret = 0;
42
43 if (p->sys_ind == 0xef)
44 ret |= PART_EFI_SYSTEM_PARTITION;
45 if (p->boot_ind == 0x80)
46 ret |= PART_BOOTABLE;
47 return ret;
Rob Herringeda51112012-08-23 11:31:43 +000048}
49
Stefan Monnier4c6e9602015-08-25 15:24:13 -040050static void print_one_part(dos_partition_t *p, lbaint_t ext_part_sector,
Stephen Warren37c88ea2012-10-08 08:14:40 +000051 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +000052{
Marek Szyprowski552f79c2020-12-23 13:55:12 +010053 lbaint_t lba_start = ext_part_sector + get_unaligned_le32(p->start4);
54 lbaint_t lba_size = get_unaligned_le32(p->size4);
wdenkfe8c2802002-11-03 00:38:21 +000055
Stefan Monnier4c6e9602015-08-25 15:24:13 -040056 printf("%3d\t%-10" LBAFlength "u\t%-10" LBAFlength
57 "u\t%08x-%02x\t%02x%s%s\n",
Stephen Warren37c88ea2012-10-08 08:14:40 +000058 part_num, lba_start, lba_size, disksig, part_num, p->sys_ind,
Rob Herringeda51112012-08-23 11:31:43 +000059 (is_extended(p->sys_ind) ? " Extd" : ""),
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010060 (get_bootable(p) ? " Boot" : ""));
wdenkfe8c2802002-11-03 00:38:21 +000061}
62
wdenk2c9b05d2003-09-10 22:30:53 +000063static int test_block_type(unsigned char *buffer)
64{
Egbert Eich300494b2013-04-09 05:46:14 +000065 int slot;
66 struct dos_partition *p;
Heinrich Schuchardt86c8dd42019-10-15 20:43:42 +020067 int part_count = 0;
Egbert Eich300494b2013-04-09 05:46:14 +000068
wdenk2c9b05d2003-09-10 22:30:53 +000069 if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
70 (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
71 return (-1);
72 } /* no DOS Signature at all */
Egbert Eich300494b2013-04-09 05:46:14 +000073 p = (struct dos_partition *)&buffer[DOS_PART_TBL_OFFSET];
Heinrich Schuchardt86c8dd42019-10-15 20:43:42 +020074
75 /* Check that the boot indicators are valid and count the partitions. */
76 for (slot = 0; slot < 4; ++slot, ++p) {
77 if (p->boot_ind != 0 && p->boot_ind != 0x80)
78 break;
79 if (p->sys_ind)
80 ++part_count;
Wolfgang Denk7b2290c2010-07-19 11:36:57 +020081 }
wdenk2c9b05d2003-09-10 22:30:53 +000082
Heinrich Schuchardt86c8dd42019-10-15 20:43:42 +020083 /*
84 * If the partition table is invalid or empty,
85 * check if this is a DOS PBR
86 */
87 if (slot != 4 || !part_count) {
88 if (!strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],
89 "FAT", 3) ||
90 !strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],
91 "FAT32", 5))
92 return DOS_PBR; /* This is a DOS PBR and not an MBR */
93 }
94 if (slot == 4)
95 return DOS_MBR; /* This is an DOS MBR */
96
97 /* This is neither a DOS MBR nor a DOS PBR */
98 return -1;
99}
wdenkfe8c2802002-11-03 00:38:21 +0000100
Simon Glassd0633952023-08-24 13:55:26 -0600101static int part_test_dos(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +0000102{
Simon Glass0e84d962024-09-29 19:49:50 -0600103#ifndef CONFIG_XPL_BUILD
Faiz Abbas1bca8de2019-09-04 20:10:12 +0530104 ALLOC_CACHE_ALIGN_BUFFER(legacy_mbr, mbr,
Simon Glassd0633952023-08-24 13:55:26 -0600105 DIV_ROUND_UP(desc->blksz, sizeof(legacy_mbr)));
wdenkfe8c2802002-11-03 00:38:21 +0000106
Simon Glassd0633952023-08-24 13:55:26 -0600107 if (blk_dread(desc, 0, 1, (ulong *)mbr) != 1)
Stephen Warren71b4e3b2012-10-05 13:17:40 +0000108 return -1;
109
Peter Jonesc27e1c12017-09-13 18:05:25 -0400110 if (test_block_type((unsigned char *)mbr) != DOS_MBR)
Stephen Warren71b4e3b2012-10-05 13:17:40 +0000111 return -1;
112
Simon Glassd0633952023-08-24 13:55:26 -0600113 if (desc->sig_type == SIG_TYPE_NONE && mbr->unique_mbr_signature) {
114 desc->sig_type = SIG_TYPE_MBR;
115 desc->mbr_sig = mbr->unique_mbr_signature;
Peter Jonesc27e1c12017-09-13 18:05:25 -0400116 }
Fabio Estevamf0c82a82017-10-04 13:29:57 -0300117#else
Simon Glassd0633952023-08-24 13:55:26 -0600118 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, desc->blksz);
Fabio Estevamf0c82a82017-10-04 13:29:57 -0300119
Simon Glassd0633952023-08-24 13:55:26 -0600120 if (blk_dread(desc, 0, 1, (ulong *)buffer) != 1)
Fabio Estevamf0c82a82017-10-04 13:29:57 -0300121 return -1;
122
123 if (test_block_type(buffer) != DOS_MBR)
124 return -1;
125#endif
Peter Jonesc27e1c12017-09-13 18:05:25 -0400126
Stephen Warren71b4e3b2012-10-05 13:17:40 +0000127 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000128}
129
130/* Print a partition that is relative to its Extended partition table
131 */
Simon Glassd0633952023-08-24 13:55:26 -0600132static void print_partition_extended(struct blk_desc *desc,
Stefan Monnier4c6e9602015-08-25 15:24:13 -0400133 lbaint_t ext_part_sector,
134 lbaint_t relative,
Stephen Warren37c88ea2012-10-08 08:14:40 +0000135 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000136{
Simon Glassd0633952023-08-24 13:55:26 -0600137 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000138 dos_partition_t *pt;
139 int i;
140
Paul Emge61494122019-07-08 16:37:03 -0700141 /* set a maximum recursion level */
142 if (part_num > MAX_EXT_PARTS)
143 {
144 printf("** Nested DOS partitions detected, stopping **\n");
145 return;
146 }
147
Simon Glassd0633952023-08-24 13:55:26 -0600148 if (blk_dread(desc, ext_part_sector, 1, (ulong *)buffer) != 1) {
Stefan Monnier4c6e9602015-08-25 15:24:13 -0400149 printf ("** Can't read partition table on %d:" LBAFU " **\n",
Simon Glassd0633952023-08-24 13:55:26 -0600150 desc->devnum, ext_part_sector);
wdenkfe8c2802002-11-03 00:38:21 +0000151 return;
152 }
wdenk2c9b05d2003-09-10 22:30:53 +0000153 i=test_block_type(buffer);
Stephen Warren71b4e3b2012-10-05 13:17:40 +0000154 if (i != DOS_MBR) {
wdenkfe8c2802002-11-03 00:38:21 +0000155 printf ("bad MBR sector signature 0x%02x%02x\n",
156 buffer[DOS_PART_MAGIC_OFFSET],
157 buffer[DOS_PART_MAGIC_OFFSET + 1]);
158 return;
159 }
Stephen Warren71b4e3b2012-10-05 13:17:40 +0000160
Stephen Warren37c88ea2012-10-08 08:14:40 +0000161 if (!ext_part_sector)
Marek Szyprowski552f79c2020-12-23 13:55:12 +0100162 disksig = get_unaligned_le32(&buffer[DOS_PART_DISKSIG_OFFSET]);
Stephen Warren37c88ea2012-10-08 08:14:40 +0000163
wdenkfe8c2802002-11-03 00:38:21 +0000164 /* Print all primary/logical partitions */
165 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
166 for (i = 0; i < 4; i++, pt++) {
167 /*
wdenk57b2d802003-06-27 21:31:46 +0000168 * fdisk does not show the extended partitions that
wdenkfe8c2802002-11-03 00:38:21 +0000169 * are not in the MBR
170 */
171
172 if ((pt->sys_ind != 0) &&
173 (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
Stephen Warren37c88ea2012-10-08 08:14:40 +0000174 print_one_part(pt, ext_part_sector, part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000175 }
176
177 /* Reverse engr the fdisk part# assignment rule! */
178 if ((ext_part_sector == 0) ||
179 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
180 part_num++;
181 }
182 }
183
184 /* Follows the extended partitions */
185 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
186 for (i = 0; i < 4; i++, pt++) {
187 if (is_extended (pt->sys_ind)) {
Stefan Monnier4c6e9602015-08-25 15:24:13 -0400188 lbaint_t lba_start
Marek Szyprowski552f79c2020-12-23 13:55:12 +0100189 = get_unaligned_le32 (pt->start4) + relative;
wdenkfe8c2802002-11-03 00:38:21 +0000190
Simon Glassd0633952023-08-24 13:55:26 -0600191 print_partition_extended(desc, lba_start,
192 !ext_part_sector ? lba_start :
193 relative, part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000194 }
195 }
196
197 return;
198}
199
wdenkfe8c2802002-11-03 00:38:21 +0000200/* Print a partition that is relative to its Extended partition table
201 */
Simon Glassd0633952023-08-24 13:55:26 -0600202static int part_get_info_extended(struct blk_desc *desc,
Simon Glassb89a8442016-02-29 15:25:48 -0700203 lbaint_t ext_part_sector, lbaint_t relative,
204 int part_num, int which_part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600205 struct disk_partition *info, uint disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000206{
Simon Glassd0633952023-08-24 13:55:26 -0600207 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, desc->blksz);
Marek Vasutb393da52023-08-14 01:48:45 +0200208 struct disk_partition wdinfo = { 0 };
wdenkfe8c2802002-11-03 00:38:21 +0000209 dos_partition_t *pt;
Marek Vasutb393da52023-08-14 01:48:45 +0200210 int i, ret;
Darwin Dingel2c1e1b62014-06-06 15:48:26 +1200211 int dos_type;
wdenkfe8c2802002-11-03 00:38:21 +0000212
Paul Emge61494122019-07-08 16:37:03 -0700213 /* set a maximum recursion level */
214 if (part_num > MAX_EXT_PARTS)
215 {
216 printf("** Nested DOS partitions detected, stopping **\n");
217 return -1;
218 }
219
Simon Glassd0633952023-08-24 13:55:26 -0600220 if (blk_dread(desc, ext_part_sector, 1, (ulong *)buffer) != 1) {
Stefan Monnier4c6e9602015-08-25 15:24:13 -0400221 printf ("** Can't read partition table on %d:" LBAFU " **\n",
Simon Glassd0633952023-08-24 13:55:26 -0600222 desc->devnum, ext_part_sector);
wdenkfe8c2802002-11-03 00:38:21 +0000223 return -1;
224 }
225 if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
226 buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
227 printf ("bad MBR sector signature 0x%02x%02x\n",
228 buffer[DOS_PART_MAGIC_OFFSET],
229 buffer[DOS_PART_MAGIC_OFFSET + 1]);
230 return -1;
231 }
232
Simon Glass23e34532023-08-24 13:55:31 -0600233 if (CONFIG_IS_ENABLED(PARTITION_UUIDS) && !ext_part_sector)
Marek Szyprowski552f79c2020-12-23 13:55:12 +0100234 disksig = get_unaligned_le32(&buffer[DOS_PART_DISKSIG_OFFSET]);
Stephen Warrenb287a872012-09-21 09:51:00 +0000235
Simon Glassd0633952023-08-24 13:55:26 -0600236 ret = part_get_info_whole_disk(desc, &wdinfo);
Marek Vasutb393da52023-08-14 01:48:45 +0200237 if (ret)
238 return ret;
239
wdenkfe8c2802002-11-03 00:38:21 +0000240 /* Print all primary/logical partitions */
241 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
242 for (i = 0; i < 4; i++, pt++) {
243 /*
wdenk57b2d802003-06-27 21:31:46 +0000244 * fdisk does not show the extended partitions that
245 * are not in the MBR
wdenkfe8c2802002-11-03 00:38:21 +0000246 */
Daniel Mack9a2671f2009-09-28 11:40:38 +0200247 if (((pt->boot_ind & ~0x80) == 0) &&
248 (pt->sys_ind != 0) &&
wdenk0893c472003-05-20 14:25:27 +0000249 (part_num == which_part) &&
Shawn Guo1c6d6792017-11-02 16:46:34 +0800250 (ext_part_sector == 0 || is_extended(pt->sys_ind) == 0)) {
Marek Vasutb393da52023-08-14 01:48:45 +0200251 if (wdinfo.blksz > DOS_PART_DEFAULT_SECTOR)
252 info->blksz = wdinfo.blksz;
253 else
254 info->blksz = DOS_PART_DEFAULT_SECTOR;
Steve Raed30cbae2014-05-26 11:52:23 -0700255 info->start = (lbaint_t)(ext_part_sector +
Marek Szyprowski552f79c2020-12-23 13:55:12 +0100256 get_unaligned_le32(pt->start4));
257 info->size = (lbaint_t)get_unaligned_le32(pt->size4);
Simon Glassd0633952023-08-24 13:55:26 -0600258 part_set_generic_name(desc, part_num,
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200259 (char *)info->name);
wdenkfe8c2802002-11-03 00:38:21 +0000260 /* sprintf(info->type, "%d, pt->sys_ind); */
Ben Whitten34fd6c92015-12-30 13:05:58 +0000261 strcpy((char *)info->type, "U-Boot");
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +0100262 info->bootable = get_bootable(pt);
Simon Glass23e34532023-08-24 13:55:31 -0600263 if (CONFIG_IS_ENABLED(PARTITION_UUIDS)) {
264 char str[12];
265
266 sprintf(str, "%08x-%02x", disksig, part_num);
267 disk_partition_set_uuid(info, str);
268 }
Dalon Westergreen8d770f42017-02-10 17:15:34 -0800269 info->sys_ind = pt->sys_ind;
wdenkfe8c2802002-11-03 00:38:21 +0000270 return 0;
271 }
272
273 /* Reverse engr the fdisk part# assignment rule! */
274 if ((ext_part_sector == 0) ||
275 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
276 part_num++;
277 }
278 }
279
280 /* Follows the extended partitions */
281 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
282 for (i = 0; i < 4; i++, pt++) {
283 if (is_extended (pt->sys_ind)) {
Stefan Monnier4c6e9602015-08-25 15:24:13 -0400284 lbaint_t lba_start
Marek Szyprowski552f79c2020-12-23 13:55:12 +0100285 = get_unaligned_le32 (pt->start4) + relative;
wdenkfe8c2802002-11-03 00:38:21 +0000286
Simon Glassd0633952023-08-24 13:55:26 -0600287 return part_get_info_extended(desc, lba_start,
wdenkfe8c2802002-11-03 00:38:21 +0000288 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrenb287a872012-09-21 09:51:00 +0000289 part_num, which_part, info, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000290 }
291 }
Darwin Dingel2c1e1b62014-06-06 15:48:26 +1200292
293 /* Check for DOS PBR if no partition is found */
294 dos_type = test_block_type(buffer);
295
296 if (dos_type == DOS_PBR) {
297 info->start = 0;
Simon Glassd0633952023-08-24 13:55:26 -0600298 info->size = desc->lba;
Marek Vasutb393da52023-08-14 01:48:45 +0200299 if (wdinfo.blksz > DOS_PART_DEFAULT_SECTOR)
300 info->blksz = wdinfo.blksz;
301 else
302 info->blksz = DOS_PART_DEFAULT_SECTOR;
Darwin Dingel2c1e1b62014-06-06 15:48:26 +1200303 info->bootable = 0;
Ben Whitten34fd6c92015-12-30 13:05:58 +0000304 strcpy((char *)info->type, "U-Boot");
Simon Glass23e34532023-08-24 13:55:31 -0600305 disk_partition_clr_uuid(info);
Darwin Dingel2c1e1b62014-06-06 15:48:26 +1200306 return 0;
307 }
308
wdenkfe8c2802002-11-03 00:38:21 +0000309 return -1;
310}
311
Simon Glassd0633952023-08-24 13:55:26 -0600312static void __maybe_unused part_print_dos(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +0000313{
Stephen Warren37c88ea2012-10-08 08:14:40 +0000314 printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n");
Simon Glassd0633952023-08-24 13:55:26 -0600315 print_partition_extended(desc, 0, 0, 1, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000316}
317
Simon Glassd0633952023-08-24 13:55:26 -0600318static int __maybe_unused part_get_info_dos(struct blk_desc *desc, int part,
319 struct disk_partition *info)
wdenkfe8c2802002-11-03 00:38:21 +0000320{
Simon Glassd0633952023-08-24 13:55:26 -0600321 return part_get_info_extended(desc, 0, 0, 1, part, info, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000322}
323
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200324int is_valid_dos_buf(void *buf)
325{
326 return test_block_type(buf) == DOS_MBR ? 0 : -1;
327}
328
Simon Glassc4001de2023-02-05 15:36:33 -0700329#if IS_ENABLED(CONFIG_CMD_MBR)
Marek Szyprowski6a60b672020-12-23 13:55:14 +0100330static void lba_to_chs(lbaint_t lba, unsigned char *rc, unsigned char *rh,
331 unsigned char *rs)
332{
333 unsigned int c, h, s;
334 /* use fixed CHS geometry */
335 unsigned int sectpertrack = 63;
336 unsigned int heads = 255;
337
338 c = (lba + 1) / sectpertrack / heads;
339 h = (lba + 1) / sectpertrack - c * heads;
340 s = (lba + 1) - (c * heads + h) * sectpertrack;
341
342 if (c > 1023) {
343 c = 1023;
344 h = 254;
345 s = 63;
346 }
347
348 *rc = c & 0xff;
349 *rh = h;
350 *rs = s + ((c & 0x300) >> 2);
351}
352
353static void mbr_fill_pt_entry(dos_partition_t *pt, lbaint_t start,
354 lbaint_t relative, lbaint_t size, uchar sys_ind, bool bootable)
355{
356 pt->boot_ind = bootable ? 0x80 : 0x00;
357 pt->sys_ind = sys_ind;
358 lba_to_chs(start, &pt->cyl, &pt->head, &pt->sector);
359 lba_to_chs(start + size - 1, &pt->end_cyl, &pt->end_head, &pt->end_sector);
360 put_unaligned_le32(relative, &pt->start4);
361 put_unaligned_le32(size, &pt->size4);
362}
363
364int write_mbr_partitions(struct blk_desc *dev,
365 struct disk_partition *p, int count, unsigned int disksig)
366{
367 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev->blksz);
368 lbaint_t ext_part_start = 0, ext_part_size = 0, ext_part_sect = 0;
369 dos_partition_t *pt;
370 int i;
371
372 memset(buffer, 0, dev->blksz);
373 buffer[DOS_PART_MAGIC_OFFSET] = 0x55;
374 buffer[DOS_PART_MAGIC_OFFSET + 1] = 0xaa;
375 put_unaligned_le32(disksig, &buffer[DOS_PART_DISKSIG_OFFSET]);
376 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
377
378 /* create all primary partitions */
379 for (i = 0; i < 4 && i < count; i++, pt++) {
380 mbr_fill_pt_entry(pt, p[i].start, p[i].start, p[i].size,
381 p[i].sys_ind, p[i].bootable);
382 if (is_extended(p[i].sys_ind)) {
383 ext_part_start = p[i].start;
384 ext_part_size = p[i].size;
385 ext_part_sect = p[i].start;
386 }
387 }
388
389 if (i < count && !ext_part_start) {
390 printf("%s: extended partition is needed for more than 4 partitions\n",
391 __func__);
392 return -1;
393 }
394
395 /* write MBR */
396 if (blk_dwrite(dev, 0, 1, buffer) != 1) {
397 printf("%s: failed writing 'MBR' (1 blks at 0x0)\n",
398 __func__);
399 return -1;
400 }
401
402 /* create extended volumes */
403 for (; i < count; i++) {
404 lbaint_t next_ebr = 0;
405
406 memset(buffer, 0, dev->blksz);
407 buffer[DOS_PART_MAGIC_OFFSET] = 0x55;
408 buffer[DOS_PART_MAGIC_OFFSET + 1] = 0xaa;
409 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
410
411 mbr_fill_pt_entry(pt, p[i].start, p[i].start - ext_part_sect,
412 p[i].size, p[i].sys_ind, p[i].bootable);
413
414 if (i + 1 < count) {
415 pt++;
416 next_ebr = p[i].start + p[i].size;
417 mbr_fill_pt_entry(pt, next_ebr,
418 next_ebr - ext_part_start,
419 p[i+1].start + p[i+1].size - next_ebr,
420 DOS_PART_TYPE_EXTENDED, 0);
421 }
422
423 /* write EBR */
424 if (blk_dwrite(dev, ext_part_sect, 1, buffer) != 1) {
425 printf("%s: failed writing 'EBR' (1 blks at 0x%lx)\n",
426 __func__, ext_part_sect);
427 return -1;
428 }
429 ext_part_sect = next_ebr;
430 }
431
Gary Bisson75b4b622021-01-28 09:10:07 +0100432 /* Update the partition table entries*/
Christian Melki34be5602021-06-07 11:21:15 +0200433 part_init(dev);
Gary Bisson75b4b622021-01-28 09:10:07 +0100434
Marek Szyprowski6a60b672020-12-23 13:55:14 +0100435 return 0;
436}
437
438int layout_mbr_partitions(struct disk_partition *p, int count,
439 lbaint_t total_sectors)
440{
441 struct disk_partition *ext = NULL;
442 int i, j;
443 lbaint_t ext_vol_start;
444
445 /* calculate primary partitions start and size if needed */
446 if (!p[0].start)
447 p[0].start = DOS_PART_DEFAULT_GAP;
448 for (i = 0; i < 4 && i < count; i++) {
449 if (!p[i].start)
450 p[i].start = p[i - 1].start + p[i - 1].size;
451 if (!p[i].size) {
452 lbaint_t end = total_sectors;
453 lbaint_t allocated = 0;
454
455 for (j = i + 1; j < 4 && j < count; j++) {
456 if (p[j].start) {
457 end = p[j].start;
458 break;
459 }
460 allocated += p[j].size;
461 }
462 p[i].size = end - allocated - p[i].start;
463 }
464 if (p[i].sys_ind == 0x05)
465 ext = &p[i];
466 }
467
Alexander Gendin038cb022023-10-09 01:24:36 +0000468 if (count <= 4)
Simon Glassb94d2042021-10-23 17:26:02 -0600469 return 0;
470
471 if (!ext) {
472 log_err("extended partition is needed for more than 4 partitions\n");
473 return -EINVAL;
Marek Szyprowski6a60b672020-12-23 13:55:14 +0100474 }
475
476 /* calculate extended volumes start and size if needed */
477 ext_vol_start = ext->start;
478 for (i = 4; i < count; i++) {
479 if (!p[i].start)
480 p[i].start = ext_vol_start + DOS_PART_DEFAULT_GAP;
481 if (!p[i].size) {
482 lbaint_t end = ext->start + ext->size;
483 lbaint_t allocated = 0;
484
485 for (j = i + 1; j < count; j++) {
486 if (p[j].start) {
487 end = p[j].start - DOS_PART_DEFAULT_GAP;
488 break;
489 }
490 allocated += p[j].size + DOS_PART_DEFAULT_GAP;
491 }
492 p[i].size = end - allocated - p[i].start;
493 }
494 ext_vol_start = p[i].start + p[i].size;
495 }
496
497 return 0;
498}
499#endif
500
Simon Glassd0633952023-08-24 13:55:26 -0600501int write_mbr_sector(struct blk_desc *desc, void *buf)
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200502{
503 if (is_valid_dos_buf(buf))
504 return -1;
505
506 /* write MBR */
Simon Glassd0633952023-08-24 13:55:26 -0600507 if (blk_dwrite(desc, 0, 1, buf) != 1) {
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200508 printf("%s: failed writing '%s' (1 blks at 0x0)\n",
509 __func__, "MBR");
510 return 1;
511 }
512
Gary Bisson75b4b622021-01-28 09:10:07 +0100513 /* Update the partition table entries*/
Simon Glassd0633952023-08-24 13:55:26 -0600514 part_init(desc);
Gary Bisson75b4b622021-01-28 09:10:07 +0100515
Petr Kulhavy9f174c92016-09-09 10:27:16 +0200516 return 0;
517}
518
Simon Glass83ce5632016-02-29 15:25:47 -0700519U_BOOT_PART_TYPE(dos) = {
520 .name = "DOS",
521 .part_type = PART_TYPE_DOS,
Petr Kulhavy712257e2016-09-09 10:27:15 +0200522 .max_entries = DOS_ENTRY_NUMBERS,
Simon Glassb89a8442016-02-29 15:25:48 -0700523 .get_info = part_get_info_ptr(part_get_info_dos),
Simon Glass0f1c9522016-02-29 15:26:04 -0700524 .print = part_print_ptr(part_print_dos),
525 .test = part_test_dos,
Simon Glass83ce5632016-02-29 15:25:47 -0700526};