]> Git Repo - J-u-boot.git/blame - disk/part.c
disk: part: Extend API to get partition info
[J-u-boot.git] / disk / part.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
affae2bf
WD
2/*
3 * (C) Copyright 2001
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
affae2bf
WD
5 */
6
7#include <common.h>
8#include <command.h>
96e5b03c 9#include <errno.h>
affae2bf 10#include <ide.h>
10a37fd7 11#include <malloc.h>
735dd97b 12#include <part.h>
251cee0d 13#include <ubifs_uboot.h>
affae2bf
WD
14
15#undef PART_DEBUG
16
17#ifdef PART_DEBUG
18#define PRINTF(fmt,args...) printf (fmt ,##args)
19#else
20#define PRINTF(fmt,args...)
21#endif
22
30789095
SP
23/* Check all partition types */
24#define PART_TYPE_ALL -1
25
d4729269 26static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
96e5b03c
SG
27{
28 struct part_driver *drv =
29 ll_entry_start(struct part_driver, part_driver);
30 const int n_ents = ll_entry_count(struct part_driver, part_driver);
31 struct part_driver *entry;
32
d4729269
KY
33 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
34 for (entry = drv; entry != drv + n_ents; entry++) {
35 int ret;
36
37 ret = entry->test(dev_desc);
38 if (!ret) {
39 dev_desc->part_type = entry->part_type;
40 return entry;
41 }
42 }
43 } else {
44 for (entry = drv; entry != drv + n_ents; entry++) {
45 if (dev_desc->part_type == entry->part_type)
46 return entry;
47 }
96e5b03c
SG
48 }
49
50 /* Not found */
51 return NULL;
52}
53
56670d6f 54#ifdef CONFIG_HAVE_BLOCK_DEVICE
4101f687 55static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
735dd97b 56{
6dd9faf8
SG
57 struct blk_desc *dev_desc;
58 int ret;
735dd97b 59
6dd9faf8
SG
60 dev_desc = blk_get_devnum_by_typename(ifname, dev);
61 if (!dev_desc) {
62 debug("%s: No device for iface '%s', dev %d\n", __func__,
63 ifname, dev);
7e71dc68 64 return NULL;
735dd97b 65 }
6dd9faf8
SG
66 ret = blk_dselect_hwpart(dev_desc, hwpart);
67 if (ret) {
68 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
69 ret);
70 return NULL;
71 }
72
73 return dev_desc;
735dd97b 74}
336b6f90 75
db1d9e78 76struct blk_desc *blk_get_dev(const char *ifname, int dev)
336b6f90 77{
ecdd57e2 78 return get_dev_hwpart(ifname, dev, 0);
336b6f90 79}
735dd97b 80#else
4101f687 81struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
336b6f90
SW
82{
83 return NULL;
84}
85
db1d9e78 86struct blk_desc *blk_get_dev(const char *ifname, int dev)
735dd97b
GL
87{
88 return NULL;
89}
90#endif
91
1811a928 92#ifdef CONFIG_HAVE_BLOCK_DEVICE
affae2bf
WD
93
94/* ------------------------------------------------------------------------- */
95/*
96 * reports device info to the user
97 */
69a2a4d9 98
42dfe7a1 99#ifdef CONFIG_LBA48
69a2a4d9 100typedef uint64_t lba512_t;
c40b2956 101#else
69a2a4d9 102typedef lbaint_t lba512_t;
c40b2956 103#endif
affae2bf 104
69a2a4d9 105/*
17416eaf 106 * Overflowless variant of (block_count * mul_by / 2**div_by)
69a2a4d9
ST
107 * when div_by > mul_by
108 */
17416eaf 109static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, int div_by)
69a2a4d9
ST
110{
111 lba512_t bc_quot, bc_rem;
112
113 /* x * m / d == x / d * m + (x % d) * m / d */
17416eaf
HS
114 bc_quot = block_count >> div_by;
115 bc_rem = block_count - (bc_quot << div_by);
116 return bc_quot * mul_by + ((bc_rem * mul_by) >> div_by);
69a2a4d9
ST
117}
118
4101f687 119void dev_print (struct blk_desc *dev_desc)
69a2a4d9
ST
120{
121 lba512_t lba512; /* number of blocks if 512bytes block size */
122
af75a45d
WD
123 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
124 puts ("not available\n");
125 return;
126 }
127
8ec6e332 128 switch (dev_desc->if_type) {
574b3195
DZ
129 case IF_TYPE_SCSI:
130 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
131 dev_desc->target,dev_desc->lun,
affae2bf 132 dev_desc->vendor,
574b3195
DZ
133 dev_desc->product,
134 dev_desc->revision);
135 break;
6e24a1eb 136 case IF_TYPE_ATAPI:
574b3195
DZ
137 case IF_TYPE_IDE:
138 case IF_TYPE_SATA:
c7057b52
DL
139 printf ("Model: %s Firm: %s Ser#: %s\n",
140 dev_desc->vendor,
141 dev_desc->revision,
142 dev_desc->product);
574b3195 143 break;
6e24a1eb
RB
144 case IF_TYPE_SD:
145 case IF_TYPE_MMC:
47bebe34 146 case IF_TYPE_USB:
ffab6945 147 case IF_TYPE_NVME:
47bebe34
NCL
148 printf ("Vendor: %s Rev: %s Prod: %s\n",
149 dev_desc->vendor,
150 dev_desc->revision,
151 dev_desc->product);
152 break;
4ad54ec4
TT
153 case IF_TYPE_VIRTIO:
154 printf("%s VirtIO Block Device\n", dev_desc->vendor);
155 break;
6e24a1eb
RB
156 case IF_TYPE_DOC:
157 puts("device type DOC\n");
158 return;
8ec6e332 159 case IF_TYPE_UNKNOWN:
6e24a1eb
RB
160 puts("device type unknown\n");
161 return;
574b3195 162 default:
6e24a1eb 163 printf("Unhandled device type: %i\n", dev_desc->if_type);
574b3195 164 return;
affae2bf
WD
165 }
166 puts (" Type: ");
167 if (dev_desc->removable)
168 puts ("Removable ");
169 switch (dev_desc->type & 0x1F) {
726c0f1e
DZ
170 case DEV_TYPE_HARDDISK:
171 puts ("Hard Disk");
172 break;
173 case DEV_TYPE_CDROM:
174 puts ("CD ROM");
175 break;
176 case DEV_TYPE_OPDISK:
177 puts ("Optical Device");
178 break;
179 case DEV_TYPE_TAPE:
180 puts ("Tape");
181 break;
182 default:
183 printf ("# %02X #", dev_desc->type & 0x1F);
184 break;
affae2bf
WD
185 }
186 puts ("\n");
33699df1 187 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
affae2bf 188 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
c40b2956 189 lbaint_t lba;
6e592385
WD
190
191 lba = dev_desc->lba;
affae2bf 192
c40b2956 193 lba512 = (lba * (dev_desc->blksz/512));
affae2bf 194 /* round to 1 digit */
214b3f31 195 /* 2048 = (1024 * 1024) / 512 MB */
17416eaf 196 mb = lba512_muldiv(lba512, 10, 11);
69a2a4d9 197
affae2bf
WD
198 mb_quot = mb / 10;
199 mb_rem = mb - (10 * mb_quot);
200
201 gb = mb / 1024;
202 gb_quot = gb / 10;
203 gb_rem = gb - (10 * gb_quot);
42dfe7a1 204#ifdef CONFIG_LBA48
6e592385 205 if (dev_desc->lba48)
c40b2956
WD
206 printf (" Supports 48-bit addressing\n");
207#endif
4b142feb 208#if defined(CONFIG_SYS_64BIT_LBA)
139f7b1d 209 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
c40b2956
WD
210 mb_quot, mb_rem,
211 gb_quot, gb_rem,
212 lba,
213 dev_desc->blksz);
214#else
139f7b1d 215 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
affae2bf
WD
216 mb_quot, mb_rem,
217 gb_quot, gb_rem,
c40b2956 218 (ulong)lba,
affae2bf 219 dev_desc->blksz);
c40b2956 220#endif
affae2bf
WD
221 } else {
222 puts (" Capacity: not available\n");
223 }
224}
b3aff0cb 225#endif
affae2bf 226
1811a928 227#ifdef CONFIG_HAVE_BLOCK_DEVICE
affae2bf 228
3e8bd469 229void part_init(struct blk_desc *dev_desc)
affae2bf 230{
96e5b03c
SG
231 struct part_driver *drv =
232 ll_entry_start(struct part_driver, part_driver);
233 const int n_ents = ll_entry_count(struct part_driver, part_driver);
234 struct part_driver *entry;
affae2bf 235
e40cf34a
EN
236 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
237
99d2c205 238 dev_desc->part_type = PART_TYPE_UNKNOWN;
96e5b03c
SG
239 for (entry = drv; entry != drv + n_ents; entry++) {
240 int ret;
241
242 ret = entry->test(dev_desc);
243 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
244 if (!ret) {
245 dev_desc->part_type = entry->part_type;
246 break;
247 }
248 }
affae2bf
WD
249}
250
96e5b03c
SG
251static void print_part_header(const char *type, struct blk_desc *dev_desc)
252{
f18fa31c 253#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
b0cf7339 254 CONFIG_IS_ENABLED(DOS_PARTITION) || \
1acc0087 255 CONFIG_IS_ENABLED(ISO_PARTITION) || \
863c5b6c 256 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
bd42a942 257 CONFIG_IS_ENABLED(EFI_PARTITION)
affae2bf
WD
258 puts ("\nPartition Map for ");
259 switch (dev_desc->if_type) {
726c0f1e
DZ
260 case IF_TYPE_IDE:
261 puts ("IDE");
262 break;
263 case IF_TYPE_SATA:
264 puts ("SATA");
265 break;
266 case IF_TYPE_SCSI:
267 puts ("SCSI");
268 break;
269 case IF_TYPE_ATAPI:
270 puts ("ATAPI");
271 break;
272 case IF_TYPE_USB:
273 puts ("USB");
274 break;
275 case IF_TYPE_DOC:
276 puts ("DOC");
277 break;
8f3b9642
LW
278 case IF_TYPE_MMC:
279 puts ("MMC");
280 break;
f4d8de48 281 case IF_TYPE_HOST:
ffab6945
ZZ
282 puts ("HOST");
283 break;
284 case IF_TYPE_NVME:
285 puts ("NVMe");
f4d8de48 286 break;
4ad54ec4
TT
287 case IF_TYPE_VIRTIO:
288 puts("VirtIO");
289 break;
726c0f1e
DZ
290 default:
291 puts ("UNKNOWN");
292 break;
affae2bf
WD
293 }
294 printf (" device %d -- Partition Type: %s\n\n",
bcce53d0 295 dev_desc->devnum, type);
0c9c8fb5 296#endif /* any CONFIG_..._PARTITION */
96e5b03c 297}
0c9c8fb5 298
3e8bd469 299void part_print(struct blk_desc *dev_desc)
affae2bf 300{
96e5b03c 301 struct part_driver *drv;
affae2bf 302
d4729269 303 drv = part_driver_lookup_type(dev_desc);
96e5b03c
SG
304 if (!drv) {
305 printf("## Unknown partition table type %x\n",
306 dev_desc->part_type);
affae2bf 307 return;
affae2bf 308 }
96e5b03c
SG
309
310 PRINTF("## Testing for valid %s partition ##\n", drv->name);
311 print_part_header(drv->name, dev_desc);
312 if (drv->print)
313 drv->print(dev_desc);
affae2bf
WD
314}
315
1811a928 316#endif /* CONFIG_HAVE_BLOCK_DEVICE */
2f501646 317
3e8bd469 318int part_get_info(struct blk_desc *dev_desc, int part,
3f9eb6e1 319 disk_partition_t *info)
2f501646 320{
1811a928 321#ifdef CONFIG_HAVE_BLOCK_DEVICE
96e5b03c 322 struct part_driver *drv;
2f501646 323
b331cd62 324#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
894bfbbf
SW
325 /* The common case is no UUID support */
326 info->uuid[0] = 0;
327#endif
7561b258
PD
328#ifdef CONFIG_PARTITION_TYPE_GUID
329 info->type_guid[0] = 0;
330#endif
894bfbbf 331
d4729269 332 drv = part_driver_lookup_type(dev_desc);
96e5b03c
SG
333 if (!drv) {
334 debug("## Unknown partition table type %x\n",
335 dev_desc->part_type);
336 return -EPROTONOSUPPORT;
337 }
338 if (!drv->get_info) {
2ae67aec
NM
339 PRINTF("## Driver %s does not have the get_info() method\n",
340 drv->name);
96e5b03c
SG
341 return -ENOSYS;
342 }
343 if (drv->get_info(dev_desc, part, info) == 0) {
344 PRINTF("## Valid %s partition found ##\n", drv->name);
345 return 0;
2f501646 346 }
1811a928 347#endif /* CONFIG_HAVE_BLOCK_DEVICE */
2f501646
SW
348
349 return -1;
350}
99d2c205 351
4bbcc965
RC
352int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
353{
354 info->start = 0;
355 info->size = dev_desc->lba;
356 info->blksz = dev_desc->blksz;
357 info->bootable = 0;
358 strcpy((char *)info->type, BOOT_PART_TYPE);
359 strcpy((char *)info->name, "Whole Disk");
360#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
361 info->uuid[0] = 0;
362#endif
363#ifdef CONFIG_PARTITION_TYPE_GUID
364 info->type_guid[0] = 0;
365#endif
366
367 return 0;
368}
369
ebac37cf
SG
370int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
371 struct blk_desc **dev_desc)
2023e608
SW
372{
373 char *ep;
336b6f90
SW
374 char *dup_str = NULL;
375 const char *dev_str, *hwpart_str;
376 int dev, hwpart;
377
378 hwpart_str = strchr(dev_hwpart_str, '.');
379 if (hwpart_str) {
380 dup_str = strdup(dev_hwpart_str);
381 dup_str[hwpart_str - dev_hwpart_str] = 0;
382 dev_str = dup_str;
383 hwpart_str++;
384 } else {
385 dev_str = dev_hwpart_str;
ecdd57e2 386 hwpart = 0;
336b6f90 387 }
2023e608
SW
388
389 dev = simple_strtoul(dev_str, &ep, 16);
390 if (*ep) {
391 printf("** Bad device specification %s %s **\n",
392 ifname, dev_str);
1598dfcb 393 dev = -EINVAL;
336b6f90
SW
394 goto cleanup;
395 }
396
397 if (hwpart_str) {
398 hwpart = simple_strtoul(hwpart_str, &ep, 16);
399 if (*ep) {
400 printf("** Bad HW partition specification %s %s **\n",
401 ifname, hwpart_str);
1598dfcb 402 dev = -EINVAL;
336b6f90
SW
403 goto cleanup;
404 }
2023e608
SW
405 }
406
336b6f90 407 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
2023e608 408 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
8f690848 409 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
1598dfcb 410 dev = -ENOENT;
336b6f90 411 goto cleanup;
2023e608
SW
412 }
413
1811a928 414#ifdef CONFIG_HAVE_BLOCK_DEVICE
99e7fc8a
ET
415 /*
416 * Updates the partition table for the specified hw partition.
4edfabd9
RH
417 * Always should be done, otherwise hw partition 0 will return stale
418 * data after displaying a non-zero hw partition.
99e7fc8a 419 */
4edfabd9 420 part_init(*dev_desc);
99e7fc8a
ET
421#endif
422
336b6f90
SW
423cleanup:
424 free(dup_str);
2023e608
SW
425 return dev;
426}
427
10a37fd7
SW
428#define PART_UNSPECIFIED -2
429#define PART_AUTO -1
e35929e4 430int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
4101f687 431 struct blk_desc **dev_desc,
10a37fd7 432 disk_partition_t *info, int allow_whole_dev)
99d2c205 433{
10a37fd7
SW
434 int ret = -1;
435 const char *part_str;
436 char *dup_str = NULL;
437 const char *dev_str;
99d2c205 438 int dev;
10a37fd7
SW
439 char *ep;
440 int p;
441 int part;
442 disk_partition_t tmpinfo;
443
afc1744e 444#ifdef CONFIG_SANDBOX
4d907025 445 /*
3f9eb6e1 446 * Special-case a pseudo block device "hostfs", to allow access to the
4d907025
SW
447 * host's own filesystem.
448 */
449 if (0 == strcmp(ifname, "hostfs")) {
450 *dev_desc = NULL;
451 info->start = 0;
452 info->size = 0;
453 info->blksz = 0;
454 info->bootable = 0;
455 strcpy((char *)info->type, BOOT_PART_TYPE);
456 strcpy((char *)info->name, "Sandbox host");
b331cd62 457#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
4d907025
SW
458 info->uuid[0] = 0;
459#endif
7561b258
PD
460#ifdef CONFIG_PARTITION_TYPE_GUID
461 info->type_guid[0] = 0;
462#endif
4d907025
SW
463
464 return 0;
465 }
afc1744e 466#endif
4d907025 467
251cee0d
HG
468#ifdef CONFIG_CMD_UBIFS
469 /*
3174cafd 470 * Special-case ubi, ubi goes through a mtd, rather than through
251cee0d
HG
471 * a regular block device.
472 */
473 if (0 == strcmp(ifname, "ubi")) {
474 if (!ubifs_is_mounted()) {
475 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
476 return -1;
477 }
478
479 *dev_desc = NULL;
480 memset(info, 0, sizeof(*info));
481 strcpy((char *)info->type, BOOT_PART_TYPE);
482 strcpy((char *)info->name, "UBI");
b331cd62 483#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
251cee0d
HG
484 info->uuid[0] = 0;
485#endif
486 return 0;
487 }
488#endif
489
10a37fd7 490 /* If no dev_part_str, use bootdevice environment variable */
a10973e7
SW
491 if (!dev_part_str || !strlen(dev_part_str) ||
492 !strcmp(dev_part_str, "-"))
00caae6d 493 dev_part_str = env_get("bootdevice");
10a37fd7
SW
494
495 /* If still no dev_part_str, it's an error */
496 if (!dev_part_str) {
497 printf("** No device specified **\n");
498 goto cleanup;
499 }
500
501 /* Separate device and partition ID specification */
502 part_str = strchr(dev_part_str, ':');
503 if (part_str) {
504 dup_str = strdup(dev_part_str);
505 dup_str[part_str - dev_part_str] = 0;
506 dev_str = dup_str;
507 part_str++;
508 } else {
509 dev_str = dev_part_str;
99d2c205
RH
510 }
511
10a37fd7 512 /* Look up the device */
ebac37cf 513 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
10a37fd7
SW
514 if (dev < 0)
515 goto cleanup;
516
517 /* Convert partition ID string to number */
518 if (!part_str || !*part_str) {
519 part = PART_UNSPECIFIED;
520 } else if (!strcmp(part_str, "auto")) {
521 part = PART_AUTO;
522 } else {
523 /* Something specified -> use exactly that */
524 part = (int)simple_strtoul(part_str, &ep, 16);
525 /*
526 * Less than whole string converted,
527 * or request for whole device, but caller requires partition.
528 */
529 if (*ep || (part == 0 && !allow_whole_dev)) {
530 printf("** Bad partition specification %s %s **\n",
531 ifname, dev_part_str);
532 goto cleanup;
533 }
534 }
535
536 /*
537 * No partition table on device,
538 * or user requested partition 0 (entire device).
539 */
540 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
541 (part == 0)) {
542 if (!(*dev_desc)->lba) {
543 printf("** Bad device size - %s %s **\n", ifname,
544 dev_str);
545 goto cleanup;
546 }
99d2c205 547
10a37fd7
SW
548 /*
549 * If user specified a partition ID other than 0,
550 * or the calling command only accepts partitions,
551 * it's an error.
552 */
553 if ((part > 0) || (!allow_whole_dev)) {
554 printf("** No partition table - %s %s **\n", ifname,
555 dev_str);
556 goto cleanup;
99d2c205 557 }
10a37fd7 558
50ffc3b6
LY
559 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
560
4bbcc965 561 part_get_info_whole_disk(*dev_desc, info);
99d2c205 562
10a37fd7
SW
563 ret = 0;
564 goto cleanup;
99d2c205
RH
565 }
566
10a37fd7
SW
567 /*
568 * Now there's known to be a partition table,
569 * not specifying a partition means to pick partition 1.
570 */
571 if (part == PART_UNSPECIFIED)
572 part = 1;
573
574 /*
575 * If user didn't specify a partition number, or did specify something
576 * other than "auto", use that partition number directly.
577 */
578 if (part != PART_AUTO) {
3e8bd469 579 ret = part_get_info(*dev_desc, part, info);
10a37fd7
SW
580 if (ret) {
581 printf("** Invalid partition %d **\n", part);
582 goto cleanup;
583 }
584 } else {
585 /*
586 * Find the first bootable partition.
587 * If none are bootable, fall back to the first valid partition.
588 */
589 part = 0;
590 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
3e8bd469 591 ret = part_get_info(*dev_desc, p, info);
10a37fd7
SW
592 if (ret)
593 continue;
594
595 /*
596 * First valid partition, or new better partition?
597 * If so, save partition ID.
598 */
599 if (!part || info->bootable)
600 part = p;
601
602 /* Best possible partition? Stop searching. */
603 if (info->bootable)
604 break;
605
606 /*
607 * We now need to search further for best possible.
608 * If we what we just queried was the best so far,
609 * save the info since we over-write it next loop.
610 */
611 if (part == p)
612 tmpinfo = *info;
613 }
614 /* If we found any acceptable partition */
615 if (part) {
616 /*
617 * If we searched all possible partition IDs,
618 * return the first valid partition we found.
619 */
620 if (p == MAX_SEARCH_PARTITIONS + 1)
621 *info = tmpinfo;
10a37fd7
SW
622 } else {
623 printf("** No valid partitions found **\n");
71bba424 624 ret = -1;
10a37fd7
SW
625 goto cleanup;
626 }
99d2c205
RH
627 }
628 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
629 printf("** Invalid partition type \"%.32s\""
630 " (expect \"" BOOT_PART_TYPE "\")\n",
631 info->type);
10a37fd7
SW
632 ret = -1;
633 goto cleanup;
99d2c205
RH
634 }
635
50ffc3b6
LY
636 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
637
10a37fd7
SW
638 ret = part;
639 goto cleanup;
99d2c205 640
10a37fd7
SW
641cleanup:
642 free(dup_str);
643 return ret;
99d2c205 644}
87b8530f 645
30789095
SP
646int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
647 disk_partition_t *info, int part_type)
87b8530f 648{
87b8530f 649 struct part_driver *part_drv;
56670d6f
KY
650 int ret;
651 int i;
652
653 part_drv = part_driver_lookup_type(dev_desc);
654 if (!part_drv)
655 return -1;
656 for (i = 1; i < part_drv->max_entries; i++) {
657 ret = part_drv->get_info(dev_desc, i, info);
658 if (ret != 0) {
659 /* no more entries in table */
660 break;
661 }
662 if (strcmp(name, (const char *)info->name) == 0) {
663 /* matched */
664 return i;
87b8530f
PK
665 }
666 }
56670d6f 667
87b8530f
PK
668 return -1;
669}
da2ee24d 670
30789095
SP
671int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
672 disk_partition_t *info)
673{
674 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
675}
676
6eccd1f7
RT
677/**
678 * Get partition info from device number and partition name.
679 *
680 * Parse a device number and partition name string in the form of
681 * "device_num#partition_name", for example "0#misc". If the partition
682 * is found, sets dev_desc and part_info accordingly with the information
683 * of the partition with the given partition_name.
684 *
685 * @param[in] dev_iface Device interface
686 * @param[in] dev_part_str Input string argument, like "0#misc"
687 * @param[out] dev_desc Place to store the device description pointer
688 * @param[out] part_info Place to store the partition information
689 * @return 0 on success, or a negative on error
690 */
691static int part_get_info_by_dev_and_name(const char *dev_iface,
692 const char *dev_part_str,
693 struct blk_desc **dev_desc,
694 disk_partition_t *part_info)
695{
696 char *ep;
697 const char *part_str;
698 int dev_num;
699
700 part_str = strchr(dev_part_str, '#');
701 if (!part_str || part_str == dev_part_str)
702 return -EINVAL;
703
704 dev_num = simple_strtoul(dev_part_str, &ep, 16);
705 if (ep != part_str) {
706 /* Not all the first part before the # was parsed. */
707 return -EINVAL;
708 }
709 part_str++;
710
711 *dev_desc = blk_get_dev(dev_iface, dev_num);
712 if (!*dev_desc) {
713 printf("Could not find %s %d\n", dev_iface, dev_num);
714 return -EINVAL;
715 }
716 if (part_get_info_by_name(*dev_desc, part_str, part_info) < 0) {
717 printf("Could not find \"%s\" partition\n", part_str);
718 return -EINVAL;
719 }
720 return 0;
721}
722
723int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
724 const char *dev_part_str,
725 struct blk_desc **dev_desc,
726 disk_partition_t *part_info)
727{
728 /* Split the part_name if passed as "$dev_num#part_name". */
729 if (!part_get_info_by_dev_and_name(dev_iface, dev_part_str,
730 dev_desc, part_info))
731 return 0;
732 /*
733 * Couldn't lookup by name, try looking up the partition description
734 * directly.
735 */
736 if (blk_get_device_part_str(dev_iface, dev_part_str,
737 dev_desc, part_info, 1) < 0) {
738 printf("Couldn't find partition %s %s\n",
739 dev_iface, dev_part_str);
740 return -EINVAL;
741 }
742 return 0;
743}
744
da2ee24d
PK
745void part_set_generic_name(const struct blk_desc *dev_desc,
746 int part_num, char *name)
747{
748 char *devtype;
749
750 switch (dev_desc->if_type) {
751 case IF_TYPE_IDE:
752 case IF_TYPE_SATA:
753 case IF_TYPE_ATAPI:
754 devtype = "hd";
755 break;
756 case IF_TYPE_SCSI:
757 devtype = "sd";
758 break;
759 case IF_TYPE_USB:
760 devtype = "usbd";
761 break;
762 case IF_TYPE_DOC:
763 devtype = "docd";
764 break;
765 case IF_TYPE_MMC:
766 case IF_TYPE_SD:
767 devtype = "mmcsd";
768 break;
769 default:
770 devtype = "xx";
771 break;
772 }
773
774 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
775}
This page took 0.546275 seconds and 4 git commands to generate.