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