blob: f6a31025dc8a0a1a1a484105285ae060b8765b2d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +00002/*
3 * (C) Copyright 2001
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkaffae2b2002-08-17 09:36:01 +00005 */
6
7#include <common.h>
Simon Glass655306c2020-05-10 11:39:58 -06008#include <blk.h>
wdenkaffae2b2002-08-17 09:36:01 +00009#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060010#include <env.h>
Simon Glass83ce5632016-02-29 15:25:47 -070011#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000012#include <ide.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Stephen Warrenc87ff222012-09-21 09:50:57 +000014#include <malloc.h>
Grant Likelyffc2dd72007-02-20 09:04:34 +010015#include <part.h>
Hans de Goede690c7962015-09-17 18:46:58 -040016#include <ubifs_uboot.h>
wdenkaffae2b2002-08-17 09:36:01 +000017
18#undef PART_DEBUG
19
20#ifdef PART_DEBUG
21#define PRINTF(fmt,args...) printf (fmt ,##args)
22#else
23#define PRINTF(fmt,args...)
24#endif
25
Sam Protsenkodee80382017-09-22 01:51:58 +030026/* Check all partition types */
27#define PART_TYPE_ALL -1
28
Kever Yang1c636242018-02-10 17:55:37 +080029static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
Simon Glass83ce5632016-02-29 15:25:47 -070030{
31 struct part_driver *drv =
32 ll_entry_start(struct part_driver, part_driver);
33 const int n_ents = ll_entry_count(struct part_driver, part_driver);
34 struct part_driver *entry;
35
Kever Yang1c636242018-02-10 17:55:37 +080036 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
37 for (entry = drv; entry != drv + n_ents; entry++) {
38 int ret;
39
40 ret = entry->test(dev_desc);
41 if (!ret) {
42 dev_desc->part_type = entry->part_type;
43 return entry;
44 }
45 }
46 } else {
47 for (entry = drv; entry != drv + n_ents; entry++) {
48 if (dev_desc->part_type == entry->part_type)
49 return entry;
50 }
Simon Glass83ce5632016-02-29 15:25:47 -070051 }
52
53 /* Not found */
54 return NULL;
55}
56
Kever Yang91829662018-02-10 17:55:38 +080057#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glasse3394752016-02-29 15:25:34 -070058static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likelyffc2dd72007-02-20 09:04:34 +010059{
Simon Glasse3dfa912016-05-01 13:52:32 -060060 struct blk_desc *dev_desc;
61 int ret;
Grant Likelyffc2dd72007-02-20 09:04:34 +010062
Simon Glasse3dfa912016-05-01 13:52:32 -060063 dev_desc = blk_get_devnum_by_typename(ifname, dev);
64 if (!dev_desc) {
65 debug("%s: No device for iface '%s', dev %d\n", __func__,
66 ifname, dev);
Tim Kientzle47e444c2012-03-27 11:43:25 +020067 return NULL;
Grant Likelyffc2dd72007-02-20 09:04:34 +010068 }
Simon Glasse3dfa912016-05-01 13:52:32 -060069 ret = blk_dselect_hwpart(dev_desc, hwpart);
70 if (ret) {
71 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
72 ret);
73 return NULL;
74 }
75
76 return dev_desc;
Grant Likelyffc2dd72007-02-20 09:04:34 +010077}
Stephen Warrenaeca52f2014-05-07 12:19:01 -060078
Simon Glassbe1e9bb2016-02-29 15:25:42 -070079struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warrenaeca52f2014-05-07 12:19:01 -060080{
Stephen Warrenad17c0f2014-05-23 12:48:11 -060081 return get_dev_hwpart(ifname, dev, 0);
Stephen Warrenaeca52f2014-05-07 12:19:01 -060082}
Grant Likelyffc2dd72007-02-20 09:04:34 +010083#else
Simon Glasse3394752016-02-29 15:25:34 -070084struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warrenaeca52f2014-05-07 12:19:01 -060085{
86 return NULL;
87}
88
Simon Glassbe1e9bb2016-02-29 15:25:42 -070089struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likelyffc2dd72007-02-20 09:04:34 +010090{
91 return NULL;
92}
93#endif
94
Adam Fordb10ba902018-02-06 12:43:56 -060095#ifdef CONFIG_HAVE_BLOCK_DEVICE
Grant Likelyffc2dd72007-02-20 09:04:34 +010096
wdenkaffae2b2002-08-17 09:36:01 +000097/* ------------------------------------------------------------------------- */
98/*
99 * reports device info to the user
100 */
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300101
wdenkc35ba4e2004-03-14 22:25:36 +0000102#ifdef CONFIG_LBA48
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300103typedef uint64_t lba512_t;
wdenkf602aa02004-03-13 23:29:43 +0000104#else
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300105typedef lbaint_t lba512_t;
wdenkf602aa02004-03-13 23:29:43 +0000106#endif
wdenkaffae2b2002-08-17 09:36:01 +0000107
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300108/*
Heinrich Schuchardt296d4dc2020-01-16 20:36:58 +0100109 * Overflowless variant of (block_count * mul_by / 2**right_shift)
110 * when 2**right_shift > mul_by
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300111 */
Heinrich Schuchardt296d4dc2020-01-16 20:36:58 +0100112static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
113 int right_shift)
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300114{
115 lba512_t bc_quot, bc_rem;
116
117 /* x * m / d == x / d * m + (x % d) * m / d */
Heinrich Schuchardt296d4dc2020-01-16 20:36:58 +0100118 bc_quot = block_count >> right_shift;
119 bc_rem = block_count - (bc_quot << right_shift);
120 return bc_quot * mul_by + ((bc_rem * mul_by) >> right_shift);
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300121}
122
Simon Glasse3394752016-02-29 15:25:34 -0700123void dev_print (struct blk_desc *dev_desc)
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300124{
125 lba512_t lba512; /* number of blocks if 512bytes block size */
126
Wolfgang Denk8561e712009-05-15 09:27:58 +0200127 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
128 puts ("not available\n");
129 return;
130 }
131
Tor Krill03ff3302008-05-29 11:10:30 +0200132 switch (dev_desc->if_type) {
Detlev Zundelbec6b322008-05-05 16:11:21 +0200133 case IF_TYPE_SCSI:
134 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
135 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000136 dev_desc->vendor,
Detlev Zundelbec6b322008-05-05 16:11:21 +0200137 dev_desc->product,
138 dev_desc->revision);
139 break;
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200140 case IF_TYPE_ATAPI:
Detlev Zundelbec6b322008-05-05 16:11:21 +0200141 case IF_TYPE_IDE:
142 case IF_TYPE_SATA:
Dave Liu76596ba2008-03-26 22:49:44 +0800143 printf ("Model: %s Firm: %s Ser#: %s\n",
144 dev_desc->vendor,
145 dev_desc->revision,
146 dev_desc->product);
Detlev Zundelbec6b322008-05-05 16:11:21 +0200147 break;
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200148 case IF_TYPE_SD:
149 case IF_TYPE_MMC:
Nícolas Carneiro Lebedencoef3edd42008-09-04 15:35:46 -0300150 case IF_TYPE_USB:
Zhikang Zhang182fccd2017-08-03 02:30:56 -0700151 case IF_TYPE_NVME:
Nícolas Carneiro Lebedencoef3edd42008-09-04 15:35:46 -0300152 printf ("Vendor: %s Rev: %s Prod: %s\n",
153 dev_desc->vendor,
154 dev_desc->revision,
155 dev_desc->product);
156 break;
Tuomas Tynkkynend4580062018-10-15 02:21:10 -0700157 case IF_TYPE_VIRTIO:
158 printf("%s VirtIO Block Device\n", dev_desc->vendor);
159 break;
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200160 case IF_TYPE_DOC:
161 puts("device type DOC\n");
162 return;
Tor Krill03ff3302008-05-29 11:10:30 +0200163 case IF_TYPE_UNKNOWN:
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200164 puts("device type unknown\n");
165 return;
Detlev Zundelbec6b322008-05-05 16:11:21 +0200166 default:
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200167 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundelbec6b322008-05-05 16:11:21 +0200168 return;
wdenkaffae2b2002-08-17 09:36:01 +0000169 }
170 puts (" Type: ");
171 if (dev_desc->removable)
172 puts ("Removable ");
173 switch (dev_desc->type & 0x1F) {
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200174 case DEV_TYPE_HARDDISK:
175 puts ("Hard Disk");
176 break;
177 case DEV_TYPE_CDROM:
178 puts ("CD ROM");
179 break;
180 case DEV_TYPE_OPDISK:
181 puts ("Optical Device");
182 break;
183 case DEV_TYPE_TAPE:
184 puts ("Tape");
185 break;
186 default:
187 printf ("# %02X #", dev_desc->type & 0x1F);
188 break;
wdenkaffae2b2002-08-17 09:36:01 +0000189 }
190 puts ("\n");
Jerry Huang6a4feb42012-11-06 15:33:12 +0000191 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000192 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkf602aa02004-03-13 23:29:43 +0000193 lbaint_t lba;
wdenk05939202004-04-18 17:39:38 +0000194
195 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000196
wdenkf602aa02004-03-13 23:29:43 +0000197 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000198 /* round to 1 digit */
Pavel Macheka4264e12014-09-09 15:19:42 +0200199 /* 2048 = (1024 * 1024) / 512 MB */
Heinrich Schuchardt2cb615e2019-06-02 00:04:50 +0200200 mb = lba512_muldiv(lba512, 10, 11);
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300201
wdenkaffae2b2002-08-17 09:36:01 +0000202 mb_quot = mb / 10;
203 mb_rem = mb - (10 * mb_quot);
204
205 gb = mb / 1024;
206 gb_quot = gb / 10;
207 gb_rem = gb - (10 * gb_quot);
wdenkc35ba4e2004-03-14 22:25:36 +0000208#ifdef CONFIG_LBA48
wdenk05939202004-04-18 17:39:38 +0000209 if (dev_desc->lba48)
wdenkf602aa02004-03-13 23:29:43 +0000210 printf (" Supports 48-bit addressing\n");
211#endif
Heiko Schocher0f602e12009-12-03 11:21:21 +0100212#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblotccbb9152016-12-23 10:45:43 +0100213 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkf602aa02004-03-13 23:29:43 +0000214 mb_quot, mb_rem,
215 gb_quot, gb_rem,
216 lba,
217 dev_desc->blksz);
218#else
Jean-Jacques Hiblotccbb9152016-12-23 10:45:43 +0100219 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000220 mb_quot, mb_rem,
221 gb_quot, gb_rem,
wdenkf602aa02004-03-13 23:29:43 +0000222 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000223 dev_desc->blksz);
wdenkf602aa02004-03-13 23:29:43 +0000224#endif
wdenkaffae2b2002-08-17 09:36:01 +0000225 } else {
226 puts (" Capacity: not available\n");
227 }
228}
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500229#endif
wdenkaffae2b2002-08-17 09:36:01 +0000230
Adam Fordb10ba902018-02-06 12:43:56 -0600231#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000232
Simon Glassb89a8442016-02-29 15:25:48 -0700233void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000234{
Simon Glass83ce5632016-02-29 15:25:47 -0700235 struct part_driver *drv =
236 ll_entry_start(struct part_driver, part_driver);
237 const int n_ents = ll_entry_count(struct part_driver, part_driver);
238 struct part_driver *entry;
richardretanubune6745592008-09-26 11:13:22 -0400239
Eric Nelsonfaf4f052016-03-28 10:05:44 -0700240 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
241
Simon Glass83ce5632016-02-29 15:25:47 -0700242 dev_desc->part_type = PART_TYPE_UNKNOWN;
243 for (entry = drv; entry != drv + n_ents; entry++) {
244 int ret;
wdenk452cfd62002-11-19 11:04:11 +0000245
Simon Glass83ce5632016-02-29 15:25:47 -0700246 ret = entry->test(dev_desc);
247 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
248 if (!ret) {
249 dev_desc->part_type = entry->part_type;
250 break;
251 }
wdenk452cfd62002-11-19 11:04:11 +0000252 }
wdenkaffae2b2002-08-17 09:36:01 +0000253}
254
Simon Glass83ce5632016-02-29 15:25:47 -0700255static void print_part_header(const char *type, struct blk_desc *dev_desc)
256{
Patrick Delaunayc4bbbec2017-01-27 11:00:36 +0100257#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayf7e07722017-01-27 11:00:37 +0100258 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay21d3bce2017-01-27 11:00:38 +0100259 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay1aa32a82017-01-27 11:00:39 +0100260 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +0100261 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000262 puts ("\nPartition Map for ");
263 switch (dev_desc->if_type) {
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200264 case IF_TYPE_IDE:
265 puts ("IDE");
266 break;
267 case IF_TYPE_SATA:
268 puts ("SATA");
269 break;
270 case IF_TYPE_SCSI:
271 puts ("SCSI");
272 break;
273 case IF_TYPE_ATAPI:
274 puts ("ATAPI");
275 break;
276 case IF_TYPE_USB:
277 puts ("USB");
278 break;
279 case IF_TYPE_DOC:
280 puts ("DOC");
281 break;
Lei Wen61dba932010-09-13 22:07:28 +0800282 case IF_TYPE_MMC:
283 puts ("MMC");
284 break;
Henrik Nordström26f9a6c2013-11-10 10:26:56 -0700285 case IF_TYPE_HOST:
Zhikang Zhang182fccd2017-08-03 02:30:56 -0700286 puts ("HOST");
287 break;
288 case IF_TYPE_NVME:
289 puts ("NVMe");
Henrik Nordström26f9a6c2013-11-10 10:26:56 -0700290 break;
Tuomas Tynkkynend4580062018-10-15 02:21:10 -0700291 case IF_TYPE_VIRTIO:
292 puts("VirtIO");
293 break;
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200294 default:
295 puts ("UNKNOWN");
296 break;
wdenkaffae2b2002-08-17 09:36:01 +0000297 }
298 printf (" device %d -- Partition Type: %s\n\n",
Simon Glass2f26fff2016-02-29 15:25:51 -0700299 dev_desc->devnum, type);
Gabe Black0fc71b52012-10-12 14:26:08 +0000300#endif /* any CONFIG_..._PARTITION */
Simon Glass83ce5632016-02-29 15:25:47 -0700301}
Gabe Black0fc71b52012-10-12 14:26:08 +0000302
Simon Glassb89a8442016-02-29 15:25:48 -0700303void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000304{
Simon Glass83ce5632016-02-29 15:25:47 -0700305 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000306
Kever Yang1c636242018-02-10 17:55:37 +0800307 drv = part_driver_lookup_type(dev_desc);
Simon Glass83ce5632016-02-29 15:25:47 -0700308 if (!drv) {
309 printf("## Unknown partition table type %x\n",
310 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000311 return;
wdenkaffae2b2002-08-17 09:36:01 +0000312 }
Simon Glass83ce5632016-02-29 15:25:47 -0700313
314 PRINTF("## Testing for valid %s partition ##\n", drv->name);
315 print_part_header(drv->name, dev_desc);
316 if (drv->print)
317 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000318}
319
Adam Fordb10ba902018-02-06 12:43:56 -0600320#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren07c5bff2012-09-21 12:46:54 +0000321
Simon Glassb89a8442016-02-29 15:25:48 -0700322int part_get_info(struct blk_desc *dev_desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600323 struct disk_partition *info)
Stephen Warren07c5bff2012-09-21 12:46:54 +0000324{
Adam Fordb10ba902018-02-06 12:43:56 -0600325#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass83ce5632016-02-29 15:25:47 -0700326 struct part_driver *drv;
Stephen Warren07c5bff2012-09-21 12:46:54 +0000327
Patrick Delaunay73287092017-01-27 11:00:42 +0100328#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000329 /* The common case is no UUID support */
330 info->uuid[0] = 0;
331#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100332#ifdef CONFIG_PARTITION_TYPE_GUID
333 info->type_guid[0] = 0;
334#endif
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000335
Kever Yang1c636242018-02-10 17:55:37 +0800336 drv = part_driver_lookup_type(dev_desc);
Simon Glass83ce5632016-02-29 15:25:47 -0700337 if (!drv) {
338 debug("## Unknown partition table type %x\n",
339 dev_desc->part_type);
340 return -EPROTONOSUPPORT;
341 }
342 if (!drv->get_info) {
Nishanth Menonef1851a2016-03-15 16:15:32 -0500343 PRINTF("## Driver %s does not have the get_info() method\n",
344 drv->name);
Simon Glass83ce5632016-02-29 15:25:47 -0700345 return -ENOSYS;
346 }
347 if (drv->get_info(dev_desc, part, info) == 0) {
348 PRINTF("## Valid %s partition found ##\n", drv->name);
349 return 0;
Stephen Warren07c5bff2012-09-21 12:46:54 +0000350 }
Adam Fordb10ba902018-02-06 12:43:56 -0600351#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren07c5bff2012-09-21 12:46:54 +0000352
353 return -1;
354}
Rob Herringd586cec2012-09-21 04:08:17 +0000355
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600356int part_get_info_whole_disk(struct blk_desc *dev_desc,
357 struct disk_partition *info)
Rob Clark2b7bfd92017-09-09 13:15:55 -0400358{
359 info->start = 0;
360 info->size = dev_desc->lba;
361 info->blksz = dev_desc->blksz;
362 info->bootable = 0;
363 strcpy((char *)info->type, BOOT_PART_TYPE);
364 strcpy((char *)info->name, "Whole Disk");
365#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
366 info->uuid[0] = 0;
367#endif
368#ifdef CONFIG_PARTITION_TYPE_GUID
369 info->type_guid[0] = 0;
370#endif
371
372 return 0;
373}
374
Simon Glasse6649a62016-02-29 15:25:43 -0700375int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
376 struct blk_desc **dev_desc)
Stephen Warrenafd909c2012-09-21 09:50:56 +0000377{
378 char *ep;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600379 char *dup_str = NULL;
380 const char *dev_str, *hwpart_str;
381 int dev, hwpart;
382
383 hwpart_str = strchr(dev_hwpart_str, '.');
384 if (hwpart_str) {
385 dup_str = strdup(dev_hwpart_str);
386 dup_str[hwpart_str - dev_hwpart_str] = 0;
387 dev_str = dup_str;
388 hwpart_str++;
389 } else {
390 dev_str = dev_hwpart_str;
Stephen Warrenad17c0f2014-05-23 12:48:11 -0600391 hwpart = 0;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600392 }
Stephen Warrenafd909c2012-09-21 09:50:56 +0000393
394 dev = simple_strtoul(dev_str, &ep, 16);
395 if (*ep) {
396 printf("** Bad device specification %s %s **\n",
397 ifname, dev_str);
Simon Glass356e0e62016-05-01 13:52:36 -0600398 dev = -EINVAL;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600399 goto cleanup;
400 }
401
402 if (hwpart_str) {
403 hwpart = simple_strtoul(hwpart_str, &ep, 16);
404 if (*ep) {
405 printf("** Bad HW partition specification %s %s **\n",
406 ifname, hwpart_str);
Simon Glass356e0e62016-05-01 13:52:36 -0600407 dev = -EINVAL;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600408 goto cleanup;
409 }
Stephen Warrenafd909c2012-09-21 09:50:56 +0000410 }
411
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600412 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warrenafd909c2012-09-21 09:50:56 +0000413 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Sam Protsenko6839baf2018-07-30 19:19:27 +0300414 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Simon Glass356e0e62016-05-01 13:52:36 -0600415 dev = -ENOENT;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600416 goto cleanup;
Stephen Warrenafd909c2012-09-21 09:50:56 +0000417 }
418
Adam Fordb10ba902018-02-06 12:43:56 -0600419#ifdef CONFIG_HAVE_BLOCK_DEVICE
Erik Tideman8d11b8e2016-01-11 13:39:07 +0000420 /*
421 * Updates the partition table for the specified hw partition.
Robert Hancock219907e2019-06-18 09:53:04 -0600422 * Always should be done, otherwise hw partition 0 will return stale
423 * data after displaying a non-zero hw partition.
Erik Tideman8d11b8e2016-01-11 13:39:07 +0000424 */
Robert Hancock219907e2019-06-18 09:53:04 -0600425 part_init(*dev_desc);
Erik Tideman8d11b8e2016-01-11 13:39:07 +0000426#endif
427
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600428cleanup:
429 free(dup_str);
Stephen Warrenafd909c2012-09-21 09:50:56 +0000430 return dev;
431}
432
Stephen Warrenc87ff222012-09-21 09:50:57 +0000433#define PART_UNSPECIFIED -2
434#define PART_AUTO -1
Simon Glasse76ee972016-02-29 15:25:44 -0700435int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glasse3394752016-02-29 15:25:34 -0700436 struct blk_desc **dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600437 struct disk_partition *info, int allow_whole_dev)
Rob Herringd586cec2012-09-21 04:08:17 +0000438{
Stephen Warrenc87ff222012-09-21 09:50:57 +0000439 int ret = -1;
440 const char *part_str;
441 char *dup_str = NULL;
442 const char *dev_str;
Rob Herringd586cec2012-09-21 04:08:17 +0000443 int dev;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000444 char *ep;
445 int p;
446 int part;
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600447 struct disk_partition tmpinfo;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000448
Hans de Goede4763ee32015-09-17 18:46:55 -0400449#ifdef CONFIG_SANDBOX
Stephen Warrenbff6c312014-06-12 10:28:32 -0600450 /*
Pavel Machek13334e72014-07-19 23:50:44 +0200451 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warrenbff6c312014-06-12 10:28:32 -0600452 * host's own filesystem.
453 */
454 if (0 == strcmp(ifname, "hostfs")) {
455 *dev_desc = NULL;
456 info->start = 0;
457 info->size = 0;
458 info->blksz = 0;
459 info->bootable = 0;
460 strcpy((char *)info->type, BOOT_PART_TYPE);
461 strcpy((char *)info->name, "Sandbox host");
Patrick Delaunay73287092017-01-27 11:00:42 +0100462#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warrenbff6c312014-06-12 10:28:32 -0600463 info->uuid[0] = 0;
464#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100465#ifdef CONFIG_PARTITION_TYPE_GUID
466 info->type_guid[0] = 0;
467#endif
Stephen Warrenbff6c312014-06-12 10:28:32 -0600468
Hans de Goede690c7962015-09-17 18:46:58 -0400469 return 0;
470 }
471#endif
472
473#ifdef CONFIG_CMD_UBIFS
474 /*
Heinrich Schuchardta4388bb2019-04-10 18:59:26 +0200475 * Special-case ubi, ubi goes through a mtd, rather than through
Hans de Goede690c7962015-09-17 18:46:58 -0400476 * a regular block device.
477 */
478 if (0 == strcmp(ifname, "ubi")) {
479 if (!ubifs_is_mounted()) {
480 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
481 return -1;
482 }
483
484 *dev_desc = NULL;
485 memset(info, 0, sizeof(*info));
486 strcpy((char *)info->type, BOOT_PART_TYPE);
487 strcpy((char *)info->name, "UBI");
Patrick Delaunay73287092017-01-27 11:00:42 +0100488#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede690c7962015-09-17 18:46:58 -0400489 info->uuid[0] = 0;
490#endif
Stephen Warrenbff6c312014-06-12 10:28:32 -0600491 return 0;
492 }
Hans de Goede4763ee32015-09-17 18:46:55 -0400493#endif
Stephen Warrenbff6c312014-06-12 10:28:32 -0600494
Stephen Warrenc87ff222012-09-21 09:50:57 +0000495 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena95af942012-09-28 05:34:09 +0000496 if (!dev_part_str || !strlen(dev_part_str) ||
497 !strcmp(dev_part_str, "-"))
Simon Glass64b723f2017-08-03 12:22:12 -0600498 dev_part_str = env_get("bootdevice");
Stephen Warrenc87ff222012-09-21 09:50:57 +0000499
500 /* If still no dev_part_str, it's an error */
501 if (!dev_part_str) {
502 printf("** No device specified **\n");
503 goto cleanup;
504 }
505
506 /* Separate device and partition ID specification */
507 part_str = strchr(dev_part_str, ':');
508 if (part_str) {
509 dup_str = strdup(dev_part_str);
510 dup_str[part_str - dev_part_str] = 0;
511 dev_str = dup_str;
512 part_str++;
513 } else {
514 dev_str = dev_part_str;
515 }
Rob Herringd586cec2012-09-21 04:08:17 +0000516
Stephen Warrenc87ff222012-09-21 09:50:57 +0000517 /* Look up the device */
Simon Glasse6649a62016-02-29 15:25:43 -0700518 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000519 if (dev < 0)
520 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000521
Stephen Warrenc87ff222012-09-21 09:50:57 +0000522 /* Convert partition ID string to number */
523 if (!part_str || !*part_str) {
524 part = PART_UNSPECIFIED;
525 } else if (!strcmp(part_str, "auto")) {
526 part = PART_AUTO;
527 } else {
528 /* Something specified -> use exactly that */
529 part = (int)simple_strtoul(part_str, &ep, 16);
530 /*
531 * Less than whole string converted,
532 * or request for whole device, but caller requires partition.
533 */
534 if (*ep || (part == 0 && !allow_whole_dev)) {
535 printf("** Bad partition specification %s %s **\n",
536 ifname, dev_part_str);
537 goto cleanup;
538 }
Rob Herringd586cec2012-09-21 04:08:17 +0000539 }
540
Stephen Warrenc87ff222012-09-21 09:50:57 +0000541 /*
542 * No partition table on device,
543 * or user requested partition 0 (entire device).
544 */
545 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
546 (part == 0)) {
547 if (!(*dev_desc)->lba) {
548 printf("** Bad device size - %s %s **\n", ifname,
549 dev_str);
550 goto cleanup;
551 }
Rob Herringd586cec2012-09-21 04:08:17 +0000552
Stephen Warrenc87ff222012-09-21 09:50:57 +0000553 /*
554 * If user specified a partition ID other than 0,
555 * or the calling command only accepts partitions,
556 * it's an error.
557 */
558 if ((part > 0) || (!allow_whole_dev)) {
559 printf("** No partition table - %s %s **\n", ifname,
560 dev_str);
561 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000562 }
Stephen Warrenc87ff222012-09-21 09:50:57 +0000563
Lan Yixun (dlan)138914e2013-07-20 08:17:59 +0800564 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
565
Rob Clark2b7bfd92017-09-09 13:15:55 -0400566 part_get_info_whole_disk(*dev_desc, info);
Rob Herringd586cec2012-09-21 04:08:17 +0000567
Stephen Warrenc87ff222012-09-21 09:50:57 +0000568 ret = 0;
569 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000570 }
571
Stephen Warrenc87ff222012-09-21 09:50:57 +0000572 /*
573 * Now there's known to be a partition table,
574 * not specifying a partition means to pick partition 1.
575 */
576 if (part == PART_UNSPECIFIED)
577 part = 1;
Rob Herringd586cec2012-09-21 04:08:17 +0000578
Stephen Warrenc87ff222012-09-21 09:50:57 +0000579 /*
580 * If user didn't specify a partition number, or did specify something
581 * other than "auto", use that partition number directly.
582 */
583 if (part != PART_AUTO) {
Simon Glassb89a8442016-02-29 15:25:48 -0700584 ret = part_get_info(*dev_desc, part, info);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000585 if (ret) {
586 printf("** Invalid partition %d **\n", part);
587 goto cleanup;
588 }
589 } else {
590 /*
591 * Find the first bootable partition.
592 * If none are bootable, fall back to the first valid partition.
593 */
594 part = 0;
595 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glassb89a8442016-02-29 15:25:48 -0700596 ret = part_get_info(*dev_desc, p, info);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000597 if (ret)
598 continue;
599
600 /*
601 * First valid partition, or new better partition?
602 * If so, save partition ID.
603 */
604 if (!part || info->bootable)
605 part = p;
606
607 /* Best possible partition? Stop searching. */
608 if (info->bootable)
609 break;
610
611 /*
612 * We now need to search further for best possible.
613 * If we what we just queried was the best so far,
614 * save the info since we over-write it next loop.
615 */
616 if (part == p)
617 tmpinfo = *info;
618 }
619 /* If we found any acceptable partition */
620 if (part) {
621 /*
622 * If we searched all possible partition IDs,
623 * return the first valid partition we found.
624 */
625 if (p == MAX_SEARCH_PARTITIONS + 1)
626 *info = tmpinfo;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000627 } else {
628 printf("** No valid partitions found **\n");
Stephen Warren3c28be92012-10-08 07:45:54 +0000629 ret = -1;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000630 goto cleanup;
631 }
Rob Herringd586cec2012-09-21 04:08:17 +0000632 }
633 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
634 printf("** Invalid partition type \"%.32s\""
635 " (expect \"" BOOT_PART_TYPE "\")\n",
636 info->type);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000637 ret = -1;
638 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000639 }
640
Lan Yixun (dlan)138914e2013-07-20 08:17:59 +0800641 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
642
Stephen Warrenc87ff222012-09-21 09:50:57 +0000643 ret = part;
644 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000645
Stephen Warrenc87ff222012-09-21 09:50:57 +0000646cleanup:
647 free(dup_str);
648 return ret;
Rob Herringd586cec2012-09-21 04:08:17 +0000649}
Petr Kulhavy712257e2016-09-09 10:27:15 +0200650
Sam Protsenkodee80382017-09-22 01:51:58 +0300651int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600652 struct disk_partition *info, int part_type)
Petr Kulhavy712257e2016-09-09 10:27:15 +0200653{
Petr Kulhavy712257e2016-09-09 10:27:15 +0200654 struct part_driver *part_drv;
Kever Yang91829662018-02-10 17:55:38 +0800655 int ret;
656 int i;
Petr Kulhavy712257e2016-09-09 10:27:15 +0200657
Kever Yang91829662018-02-10 17:55:38 +0800658 part_drv = part_driver_lookup_type(dev_desc);
659 if (!part_drv)
660 return -1;
661 for (i = 1; i < part_drv->max_entries; i++) {
662 ret = part_drv->get_info(dev_desc, i, info);
663 if (ret != 0) {
664 /* no more entries in table */
665 break;
666 }
667 if (strcmp(name, (const char *)info->name) == 0) {
668 /* matched */
669 return i;
Petr Kulhavy712257e2016-09-09 10:27:15 +0200670 }
671 }
Kever Yang91829662018-02-10 17:55:38 +0800672
Petr Kulhavy712257e2016-09-09 10:27:15 +0200673 return -1;
674}
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200675
Sam Protsenkodee80382017-09-22 01:51:58 +0300676int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600677 struct disk_partition *info)
Sam Protsenkodee80382017-09-22 01:51:58 +0300678{
679 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
680}
681
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300682/**
683 * Get partition info from device number and partition name.
684 *
685 * Parse a device number and partition name string in the form of
686 * "device_num#partition_name", for example "0#misc". If the partition
687 * is found, sets dev_desc and part_info accordingly with the information
688 * of the partition with the given partition_name.
689 *
690 * @param[in] dev_iface Device interface
691 * @param[in] dev_part_str Input string argument, like "0#misc"
692 * @param[out] dev_desc Place to store the device description pointer
693 * @param[out] part_info Place to store the partition information
694 * @return 0 on success, or a negative on error
695 */
696static int part_get_info_by_dev_and_name(const char *dev_iface,
697 const char *dev_part_str,
698 struct blk_desc **dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600699 struct disk_partition *part_info)
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300700{
701 char *ep;
702 const char *part_str;
703 int dev_num;
704
705 part_str = strchr(dev_part_str, '#');
706 if (!part_str || part_str == dev_part_str)
707 return -EINVAL;
708
709 dev_num = simple_strtoul(dev_part_str, &ep, 16);
710 if (ep != part_str) {
711 /* Not all the first part before the # was parsed. */
712 return -EINVAL;
713 }
714 part_str++;
715
716 *dev_desc = blk_get_dev(dev_iface, dev_num);
717 if (!*dev_desc) {
718 printf("Could not find %s %d\n", dev_iface, dev_num);
719 return -EINVAL;
720 }
721 if (part_get_info_by_name(*dev_desc, part_str, part_info) < 0) {
722 printf("Could not find \"%s\" partition\n", part_str);
723 return -EINVAL;
724 }
725 return 0;
726}
727
728int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
729 const char *dev_part_str,
730 struct blk_desc **dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600731 struct disk_partition *part_info)
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300732{
733 /* Split the part_name if passed as "$dev_num#part_name". */
734 if (!part_get_info_by_dev_and_name(dev_iface, dev_part_str,
735 dev_desc, part_info))
736 return 0;
737 /*
738 * Couldn't lookup by name, try looking up the partition description
739 * directly.
740 */
741 if (blk_get_device_part_str(dev_iface, dev_part_str,
742 dev_desc, part_info, 1) < 0) {
743 printf("Couldn't find partition %s %s\n",
744 dev_iface, dev_part_str);
745 return -EINVAL;
746 }
747 return 0;
748}
749
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200750void part_set_generic_name(const struct blk_desc *dev_desc,
751 int part_num, char *name)
752{
753 char *devtype;
754
755 switch (dev_desc->if_type) {
756 case IF_TYPE_IDE:
757 case IF_TYPE_SATA:
758 case IF_TYPE_ATAPI:
759 devtype = "hd";
760 break;
761 case IF_TYPE_SCSI:
762 devtype = "sd";
763 break;
764 case IF_TYPE_USB:
765 devtype = "usbd";
766 break;
767 case IF_TYPE_DOC:
768 devtype = "docd";
769 break;
770 case IF_TYPE_MMC:
771 case IF_TYPE_SD:
772 devtype = "mmcsd";
773 break;
774 default:
775 devtype = "xx";
776 break;
777 }
778
779 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
780}