1 // SPDX-License-Identifier: GPL-2.0+
3 * cmd_gpt.c -- GPT (GUID Partition Table) handling command
6 * Lukasz Majewski <l.majewski@majess.pl>
8 * Copyright (C) 2012 Samsung Electronics
9 * author: Lukasz Majewski <l.majewski@samsung.com>
10 * author: Piotr Wilczek <p.wilczek@samsung.com>
22 #include <u-boot/uuid.h>
23 #include <linux/ctype.h>
26 #include <linux/compat.h>
27 #include <linux/err.h>
28 #include <linux/sizes.h>
31 static LIST_HEAD(disk_partitions
);
34 * extract_env(): Expand env name from string format '&{env_name}'
35 * and return pointer to the env (if the env is set)
37 * @param str - pointer to string
38 * @param env - pointer to pointer to extracted env
40 * Return: - zero on successful expand and env is set
42 static int extract_env(const char *str
, char **env
)
46 #ifdef CONFIG_RANDOM_UUID
47 char uuid_str
[UUID_STR_LEN
+ 1];
50 if (!str
|| strlen(str
) < 4)
53 if (!((strncmp(str
, "${", 2) == 0) && (str
[strlen(str
) - 1] == '}')))
60 memset(s
+ strlen(s
) - 1, '\0', 1);
61 memmove(s
, s
+ 2, strlen(s
) - 1);
65 #ifdef CONFIG_RANDOM_UUID
66 debug("%s unset. ", str
);
67 gen_rand_uuid_str(uuid_str
, UUID_STR_FORMAT_GUID
);
72 debug("Set to random.\n");
75 debug("Can't get random UUID.\n");
78 debug("%s unset.\n", str
);
81 debug("%s get from environment.\n", str
);
92 * extract_val(): Extract value from a key=value pair list (comma separated).
93 * Only value for the given key is returend.
94 * Function allocates memory for the value, remember to free!
96 * @param str - pointer to string with key=values pairs
97 * @param key - pointer to the key to search for
99 * Return: - pointer to allocated string with the value
101 static char *extract_val(const char *str
, const char *key
)
107 strcopy
= strdup(str
);
119 k
+= strspn(k
, " \t");
120 if (strcmp(k
, key
) == 0) {
132 * found_key(): Found key without value in parameter list (comma separated).
134 * @param str - pointer to string with key
135 * @param key - pointer to the key to search for
137 * Return: - true on found key
139 static bool found_key(const char *str
, const char *key
)
145 strcopy
= strdup(str
);
154 k
+= strspn(k
, " \t");
155 if (strcmp(k
, key
) == 0) {
167 * calc_parts_list_len() - get size of partition table description
169 * @numparts: number of partitions
170 * Return: string size including terminating NUL
172 static int calc_parts_list_len(int numparts
)
174 /* number of hexadecimal digits of the lbaint_t representation */
175 const int lbaint_size
= 2 * sizeof(lbaint_t
);
178 /* media description including terminating NUL */
179 partlistlen
= strlen("uuid_disk=;") + UUID_STR_LEN
+ 1;
180 /* per-partition descriptions; numparts */
181 partlistlen
+= numparts
* (strlen("name=,") + PART_NAME_LEN
);
182 /* see part.h for definition of struct disk_partition */
183 partlistlen
+= numparts
* (strlen("start=0x,") + lbaint_size
);
184 partlistlen
+= numparts
* (strlen("size=0x,") + lbaint_size
);
185 if (IS_ENABLED(CONFIG_PARTITION_UUIDS
))
186 partlistlen
+= numparts
* (strlen("uuid=,") + UUID_STR_LEN
);
187 if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID
))
188 partlistlen
+= numparts
* (strlen("type=;") + UUID_STR_LEN
);
189 debug("Length of partitions_list is %d for %d partitions\n",
190 partlistlen
, numparts
);
194 #ifdef CONFIG_CMD_GPT_RENAME
195 static void del_gpt_info(void)
197 struct list_head
*pos
= &disk_partitions
;
198 struct disk_part
*curr
;
199 while (!list_empty(pos
)) {
200 curr
= list_entry(pos
->next
, struct disk_part
, list
);
206 static struct disk_part
*allocate_disk_part(struct disk_partition
*info
,
209 struct disk_part
*newpart
;
210 newpart
= calloc(1, sizeof(struct disk_part
));
212 return ERR_PTR(-ENOMEM
);
214 newpart
->gpt_part_info
.start
= info
->start
;
215 newpart
->gpt_part_info
.size
= info
->size
;
216 newpart
->gpt_part_info
.blksz
= info
->blksz
;
217 strncpy((char *)newpart
->gpt_part_info
.name
, (const char *)info
->name
,
219 newpart
->gpt_part_info
.name
[PART_NAME_LEN
- 1] = '\0';
220 strncpy((char *)newpart
->gpt_part_info
.type
, (const char *)info
->type
,
222 newpart
->gpt_part_info
.type
[PART_TYPE_LEN
- 1] = '\0';
223 newpart
->gpt_part_info
.bootable
= info
->bootable
;
224 if (IS_ENABLED(CONFIG_PARTITION_UUIDS
))
225 disk_partition_set_uuid(&newpart
->gpt_part_info
,
226 disk_partition_uuid(info
));
227 if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID
))
228 disk_partition_set_type_guid(&newpart
->gpt_part_info
,
229 disk_partition_type_guid(info
));
230 newpart
->partnum
= partnum
;
235 static void prettyprint_part_size(char *sizestr
, lbaint_t partsize
,
238 unsigned long long partbytes
, partmegabytes
;
240 partbytes
= partsize
* blksize
;
241 partmegabytes
= lldiv(partbytes
, SZ_1M
);
242 snprintf(sizestr
, 16, "%lluMiB", partmegabytes
);
245 static void print_gpt_info(void)
247 struct list_head
*pos
;
248 struct disk_part
*curr
;
249 char partstartstr
[16];
250 char partsizestr
[16];
252 list_for_each(pos
, &disk_partitions
) {
253 curr
= list_entry(pos
, struct disk_part
, list
);
254 prettyprint_part_size(partstartstr
, curr
->gpt_part_info
.start
,
255 curr
->gpt_part_info
.blksz
);
256 prettyprint_part_size(partsizestr
, curr
->gpt_part_info
.size
,
257 curr
->gpt_part_info
.blksz
);
259 printf("Partition %d:\n", curr
->partnum
);
260 printf("Start %s, size %s\n", partstartstr
, partsizestr
);
261 printf("Block size %lu, name %s\n", curr
->gpt_part_info
.blksz
,
262 curr
->gpt_part_info
.name
);
263 printf("Type %s, bootable %d\n", curr
->gpt_part_info
.type
,
264 curr
->gpt_part_info
.bootable
& PART_BOOTABLE
);
265 if (CONFIG_IS_ENABLED(PARTITION_UUIDS
))
267 disk_partition_uuid(&curr
->gpt_part_info
));
268 if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID
))
269 printf("Type GUID %s\n",
270 disk_partition_type_guid(&curr
->gpt_part_info
));
276 * create the string that upstream 'gpt write' command will accept as an
279 * From doc/README.gpt, Format of partitions layout:
280 * "uuid_disk=...;name=u-boot,size=60MiB,uuid=...;
281 * name=kernel,size=60MiB,uuid=...;"
282 * The fields 'name' and 'size' are mandatory for every partition.
283 * The field 'start' is optional. The fields 'uuid' and 'uuid_disk'
284 * are optional if CONFIG_RANDOM_UUID is enabled.
286 static int create_gpt_partitions_list(int numparts
, const char *guid
,
287 char *partitions_list
)
289 struct list_head
*pos
;
290 struct disk_part
*curr
;
291 char partstr
[PART_NAME_LEN
+ 1];
293 if (!partitions_list
)
296 strcpy(partitions_list
, "uuid_disk=");
297 strncat(partitions_list
, guid
, UUID_STR_LEN
+ 1);
298 strcat(partitions_list
, ";");
300 list_for_each(pos
, &disk_partitions
) {
301 curr
= list_entry(pos
, struct disk_part
, list
);
302 strcat(partitions_list
, "name=");
303 strncat(partitions_list
, (const char *)curr
->gpt_part_info
.name
,
305 sprintf(partstr
, ",start=0x%llx",
306 (unsigned long long)curr
->gpt_part_info
.start
*
307 curr
->gpt_part_info
.blksz
);
308 /* one extra byte for NULL */
309 strncat(partitions_list
, partstr
, PART_NAME_LEN
+ 1);
310 sprintf(partstr
, ",size=0x%llx",
311 (unsigned long long)curr
->gpt_part_info
.size
*
312 curr
->gpt_part_info
.blksz
);
313 strncat(partitions_list
, partstr
, PART_NAME_LEN
+ 1);
315 if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID
)) {
316 strcat(partitions_list
, ",type=");
317 strncat(partitions_list
,
318 disk_partition_type_guid(&curr
->gpt_part_info
),
321 if (CONFIG_IS_ENABLED(PARTITION_UUIDS
)) {
322 strcat(partitions_list
, ",uuid=");
323 strncat(partitions_list
,
324 disk_partition_uuid(&curr
->gpt_part_info
),
327 if (curr
->gpt_part_info
.bootable
& PART_BOOTABLE
)
328 strcat(partitions_list
, ",bootable");
329 strcat(partitions_list
, ";");
335 * read partition info into disk_partitions list where
336 * it can be printed or modified
338 static int get_gpt_info(struct blk_desc
*dev_desc
)
340 /* start partition numbering at 1, as U-Boot does */
341 int valid_parts
= 0, p
, ret
;
342 struct disk_partition info
;
343 struct disk_part
*new_disk_part
;
346 * Always re-read partition info from device, in case
349 INIT_LIST_HEAD(&disk_partitions
);
351 for (p
= 1; p
<= MAX_SEARCH_PARTITIONS
; p
++) {
352 ret
= part_get_info(dev_desc
, p
, &info
);
356 /* Add 1 here because counter is zero-based but p1 is
357 the first partition */
358 new_disk_part
= allocate_disk_part(&info
, valid_parts
+1);
359 if (IS_ERR(new_disk_part
))
362 list_add_tail(&new_disk_part
->list
, &disk_partitions
);
365 if (valid_parts
== 0) {
366 printf("** No valid partitions found **\n");
371 if (valid_parts
>= 1)
376 /* a wrapper to test get_gpt_info */
377 static int do_get_gpt_info(struct blk_desc
*dev_desc
, char * const namestr
)
381 numparts
= get_gpt_info(dev_desc
);
385 char disk_guid
[UUID_STR_LEN
+ 1];
386 char *partitions_list
;
390 ret
= get_disk_guid(dev_desc
, disk_guid
);
394 partlistlen
= calc_parts_list_len(numparts
);
395 partitions_list
= malloc(partlistlen
);
396 if (!partitions_list
) {
400 memset(partitions_list
, '\0', partlistlen
);
402 ret
= create_gpt_partitions_list(numparts
, disk_guid
,
405 printf("Error: Could not create partition list string!\n");
407 env_set(namestr
, partitions_list
);
409 free(partitions_list
);
421 * set_gpt_info(): Fill partition information from string
422 * function allocates memory, remember to free!
424 * @param dev_desc - pointer block device descriptor
425 * @param str_part - pointer to string with partition information
426 * @param str_disk_guid - pointer to pointer to allocated string with disk guid
427 * @param partitions - pointer to pointer to allocated partitions array
428 * @param parts_count - number of partitions
430 * Return: - zero on success, otherwise error
433 static int set_gpt_info(struct blk_desc
*dev_desc
,
434 const char *str_part
,
435 char **str_disk_guid
,
436 struct disk_partition
**partitions
,
443 struct disk_partition
*parts
;
445 uint64_t size_ll
, start_ll
;
447 int max_str_part
= calc_parts_list_len(MAX_SEARCH_PARTITIONS
);
449 debug("%s: lba num: 0x%x %d\n", __func__
,
450 (unsigned int)dev_desc
->lba
, (unsigned int)dev_desc
->lba
);
452 if (str_part
== NULL
)
455 str
= strdup(str_part
);
459 /* extract disk guid */
461 val
= extract_val(str
, "uuid_disk");
463 #ifdef CONFIG_RANDOM_UUID
464 *str_disk_guid
= malloc(UUID_STR_LEN
+ 1);
465 if (*str_disk_guid
== NULL
)
467 gen_rand_uuid_str(*str_disk_guid
, UUID_STR_FORMAT_STD
);
473 val
= strsep(&val
, ";");
474 if (extract_env(val
, &p
))
476 *str_disk_guid
= strdup(p
);
478 /* Move s to first partition */
482 printf("Error: is the partitions string NULL-terminated?\n");
485 if (strnlen(s
, max_str_part
) == 0)
488 i
= strnlen(s
, max_str_part
) - 1;
492 /* calculate expected number of partitions */
500 /* allocate memory for partitions */
501 parts
= calloc(sizeof(struct disk_partition
), p_count
);
505 /* retrieve partitions data from string */
506 for (i
= 0; i
< p_count
; i
++) {
507 tok
= strsep(&s
, ";");
513 val
= extract_val(tok
, "uuid");
515 /* 'uuid' is optional if random uuid's are enabled */
516 #ifdef CONFIG_RANDOM_UUID
517 gen_rand_uuid_str(parts
[i
].uuid
, UUID_STR_FORMAT_STD
);
523 if (extract_env(val
, &p
))
525 if (strnlen(p
, max_str_part
) >= sizeof(parts
[i
].uuid
)) {
526 printf("Wrong uuid format for partition %d\n", i
);
530 strncpy((char *)parts
[i
].uuid
, p
, max_str_part
);
533 #ifdef CONFIG_PARTITION_TYPE_GUID
535 val
= extract_val(tok
, "type");
537 /* 'type' is optional */
538 if (extract_env(val
, &p
))
540 if (strnlen(p
, max_str_part
) >= sizeof(parts
[i
].type_guid
)) {
541 printf("Wrong type guid format for partition %d\n",
546 strncpy((char *)parts
[i
].type_guid
, p
, max_str_part
);
551 val
= extract_val(tok
, "name");
552 if (!val
) { /* name is mandatory */
556 if (extract_env(val
, &p
))
558 if (strnlen(p
, max_str_part
) >= sizeof(parts
[i
].name
)) {
562 strncpy((char *)parts
[i
].name
, p
, max_str_part
);
566 val
= extract_val(tok
, "size");
567 if (!val
) { /* 'size' is mandatory */
571 if (extract_env(val
, &p
))
573 if ((strcmp(p
, "-") == 0)) {
574 /* Let part efi module to auto extend the size */
577 size_ll
= ustrtoull(p
, &p
, 0);
578 parts
[i
].size
= lldiv(size_ll
, dev_desc
->blksz
);
584 val
= extract_val(tok
, "start");
585 if (val
) { /* start address is optional */
586 if (extract_env(val
, &p
))
588 start_ll
= ustrtoull(p
, &p
, 0);
589 parts
[i
].start
= lldiv(start_ll
, dev_desc
->blksz
);
593 offset
+= parts
[i
].size
+ parts
[i
].start
;
596 if (found_key(tok
, "bootable"))
597 parts
[i
].bootable
= PART_BOOTABLE
;
600 *parts_count
= p_count
;
607 free(*str_disk_guid
);
613 static int gpt_repair(struct blk_desc
*blk_dev_desc
)
617 ret
= gpt_repair_headers(blk_dev_desc
);
622 static int gpt_default(struct blk_desc
*blk_dev_desc
, const char *str_part
)
627 struct disk_partition
*partitions
= NULL
;
629 /* fill partitions */
630 ret
= set_gpt_info(blk_dev_desc
, str_part
,
631 &str_disk_guid
, &partitions
, &part_count
);
634 printf("No partition list provided\n");
636 printf("Missing disk guid\n");
637 if ((ret
== -3) || (ret
== -4))
638 printf("Partition list incomplete\n");
642 /* save partitions layout to disk */
643 ret
= gpt_restore(blk_dev_desc
, str_disk_guid
, partitions
, part_count
);
647 /* initialize partition table */
649 part_init(blk_dev_desc
);
654 static int gpt_verify(struct blk_desc
*blk_dev_desc
, const char *str_part
)
656 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header
, gpt_head
, 1,
657 blk_dev_desc
->blksz
);
658 struct disk_partition
*partitions
= NULL
;
659 gpt_entry
*gpt_pte
= NULL
;
664 /* fill partitions */
665 ret
= set_gpt_info(blk_dev_desc
, str_part
,
666 &str_disk_guid
, &partitions
, &part_count
);
669 printf("No partition list provided - only basic check\n");
670 ret
= gpt_verify_headers(blk_dev_desc
, gpt_head
,
675 printf("Missing disk guid\n");
676 if ((ret
== -3) || (ret
== -4))
677 printf("Partition list incomplete\n");
681 /* Check partition layout with provided pattern */
682 ret
= gpt_verify_partitions(blk_dev_desc
, partitions
, part_count
,
693 * gpt_enumerate() - Enumerate partition names into environment variable.
695 * Enumerate partition names. Partition names are stored in gpt_partition_list
696 * environment variable. Each partition name is delimited by space.
698 * @desc: block device descriptor
700 * @Return: '0' on success and -ve error on failure
702 static int gpt_enumerate(struct blk_desc
*desc
)
704 struct part_driver
*first_drv
, *part_drv
;
705 int str_len
= 0, tmp_len
;
706 char part_list
[2048];
711 n_drvs
= part_driver_get_count();
713 printf("Failed to get partition driver count\n");
717 first_drv
= part_driver_get_first();
718 for (part_drv
= first_drv
; part_drv
!= first_drv
+ n_drvs
; part_drv
++) {
719 struct disk_partition pinfo
;
723 if (part_drv
->test(desc
))
726 for (i
= 1; i
< part_drv
->max_entries
; i
++) {
727 ret
= part_drv
->get_info(desc
, i
, &pinfo
);
731 ptr
= &part_list
[str_len
];
732 tmp_len
= strlen((const char *)pinfo
.name
);
736 if (str_len
> sizeof(part_list
)) {
737 printf("Error insufficient memory\n");
740 strcpy(ptr
, (const char *)pinfo
.name
);
741 /* One byte for space(" ") delimiter */
745 part_list
[strlen(part_list
) - 1] = 0;
748 debug("setenv gpt_partition_list %s\n", part_list
);
750 return env_set("gpt_partition_list", part_list
);
754 * gpt_setenv_part_variables() - setup partition environmental variables
756 * Setup the gpt_partition_name, gpt_partition_entry, gpt_partition_addr
757 * and gpt_partition_size, gpt_partition_bootable environment variables.
759 * @pinfo: pointer to disk partition
760 * @i: partition entry
762 * @Return: '0' on success and -ENOENT on failure
764 static int gpt_setenv_part_variables(struct disk_partition
*pinfo
, int i
)
768 ret
= env_set_hex("gpt_partition_addr", pinfo
->start
);
772 ret
= env_set_hex("gpt_partition_size", pinfo
->size
);
776 ret
= env_set_hex("gpt_partition_entry", i
);
780 ret
= env_set("gpt_partition_name", (const char *)pinfo
->name
);
784 ret
= env_set_ulong("gpt_partition_bootable", !!(pinfo
->bootable
& PART_BOOTABLE
));
795 * gpt_setenv() - Dynamically setup environment variables.
797 * Dynamically setup environment variables for name, index, offset and size
798 * for partition in GPT table after running "gpt setenv" for a partition name.
800 * @desc: block device descriptor
801 * @name: partition name
803 * @Return: '0' on success and -ve err on failure
805 static int gpt_setenv(struct blk_desc
*desc
, const char *name
)
807 struct part_driver
*first_drv
, *part_drv
;
811 n_drvs
= part_driver_get_count();
813 printf("Failed to get partition driver count\n");
817 first_drv
= part_driver_get_first();
818 for (part_drv
= first_drv
; part_drv
!= first_drv
+ n_drvs
; part_drv
++) {
819 struct disk_partition pinfo
;
822 for (i
= 1; i
< part_drv
->max_entries
; i
++) {
823 ret
= part_drv
->get_info(desc
, i
, &pinfo
);
827 if (!strcmp(name
, (const char *)pinfo
.name
)) {
828 /* match found, setup environment variables */
829 ret
= gpt_setenv_part_variables(&pinfo
, i
);
842 static int do_disk_guid(struct blk_desc
*dev_desc
, char * const namestr
)
845 char disk_guid
[UUID_STR_LEN
+ 1];
847 ret
= get_disk_guid(dev_desc
, disk_guid
);
849 return CMD_RET_FAILURE
;
852 env_set(namestr
, disk_guid
);
854 printf("%s\n", disk_guid
);
859 #ifdef CONFIG_CMD_GPT_RENAME
860 static int do_rename_gpt_parts(struct blk_desc
*dev_desc
, char *subcomm
,
861 char *name1
, char *name2
)
863 struct list_head
*pos
;
864 struct disk_part
*curr
;
865 struct disk_partition
*new_partitions
= NULL
;
866 char disk_guid
[UUID_STR_LEN
+ 1];
867 char *partitions_list
, *str_disk_guid
= NULL
;
869 int partlistlen
, ret
, numparts
= 0, partnum
, i
= 1, ctr1
= 0, ctr2
= 0;
871 if (!subcomm
|| !name1
|| !name2
||
872 (strcmp(subcomm
, "swap") && strcmp(subcomm
, "rename") &&
873 strcmp(subcomm
, "transpose")))
876 ret
= get_disk_guid(dev_desc
, disk_guid
);
880 * Allocates disk_partitions, requiring matching call to del_gpt_info()
883 numparts
= get_gpt_info(dev_desc
);
885 return numparts
? numparts
: -ENODEV
;
887 partlistlen
= calc_parts_list_len(numparts
);
888 partitions_list
= malloc(partlistlen
);
889 if (!partitions_list
) {
893 memset(partitions_list
, '\0', partlistlen
);
895 ret
= create_gpt_partitions_list(numparts
, disk_guid
, partitions_list
);
897 free(partitions_list
);
901 * Uncomment the following line to print a string that 'gpt write'
902 * or 'gpt verify' will accept as input.
904 debug("OLD partitions_list is %s with %u chars\n", partitions_list
,
905 (unsigned)strlen(partitions_list
));
907 /* set_gpt_info allocates new_partitions and str_disk_guid */
908 ret
= set_gpt_info(dev_desc
, partitions_list
, &str_disk_guid
,
909 &new_partitions
, &part_count
);
913 if (!strcmp(subcomm
, "swap")) {
914 if ((strlen(name1
) > PART_NAME_LEN
) || (strlen(name2
) > PART_NAME_LEN
)) {
915 printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN
);
919 list_for_each(pos
, &disk_partitions
) {
920 curr
= list_entry(pos
, struct disk_part
, list
);
921 if (!strcmp((char *)curr
->gpt_part_info
.name
, name1
)) {
922 strcpy((char *)curr
->gpt_part_info
.name
, name2
);
924 } else if (!strcmp((char *)curr
->gpt_part_info
.name
, name2
)) {
925 strcpy((char *)curr
->gpt_part_info
.name
, name1
);
929 if ((ctr1
+ ctr2
< 2) || (ctr1
!= ctr2
)) {
930 printf("Cannot swap partition names except in pairs.\n");
934 } else if (!strcmp(subcomm
, "transpose")) {
936 struct disk_partition
* first
= NULL
;
937 struct disk_partition
* second
= NULL
;
938 struct disk_partition tmp_part
;
940 idx1
= simple_strtoul(name1
, NULL
, 10);
941 idx2
= simple_strtoul(name2
, NULL
, 10);
943 printf("Cannot swap partition with itself\n");
948 list_for_each(pos
, &disk_partitions
) {
949 curr
= list_entry(pos
, struct disk_part
, list
);
950 if (curr
->partnum
== idx1
)
951 first
= &curr
->gpt_part_info
;
952 else if (curr
->partnum
== idx2
)
953 second
= &curr
->gpt_part_info
;
956 printf("Illegal partition number %s\n", name1
);
961 printf("Illegal partition number %s\n", name2
);
969 } else { /* rename */
970 if (strlen(name2
) > PART_NAME_LEN
) {
971 printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN
);
975 partnum
= (int)simple_strtol(name1
, NULL
, 10);
976 if ((partnum
< 0) || (partnum
> numparts
)) {
977 printf("Illegal partition number %s\n", name1
);
981 ret
= part_get_info(dev_desc
, partnum
, new_partitions
);
985 /* U-Boot partition numbering starts at 1 */
986 list_for_each(pos
, &disk_partitions
) {
987 curr
= list_entry(pos
, struct disk_part
, list
);
989 strcpy((char *)curr
->gpt_part_info
.name
, name2
);
996 ret
= create_gpt_partitions_list(numparts
, disk_guid
, partitions_list
);
999 debug("NEW partitions_list is %s with %u chars\n", partitions_list
,
1000 (unsigned)strlen(partitions_list
));
1002 ret
= set_gpt_info(dev_desc
, partitions_list
, &str_disk_guid
,
1003 &new_partitions
, &part_count
);
1005 * Even though valid pointers are here passed into set_gpt_info(),
1006 * it mallocs again, and there's no way to tell which failed.
1011 debug("Writing new partition table\n");
1012 ret
= gpt_restore(dev_desc
, disk_guid
, new_partitions
, numparts
);
1014 printf("Writing new partition table failed\n");
1018 debug("Reading back new partition table\n");
1020 * Empty the existing disk_partitions list, as otherwise the memory in
1021 * the original list is unreachable.
1024 numparts
= get_gpt_info(dev_desc
);
1025 if (numparts
<= 0) {
1026 ret
= numparts
? numparts
: -ENODEV
;
1029 printf("new partition table with %d partitions is:\n", numparts
);
1033 #ifdef CONFIG_RANDOM_UUID
1034 free(str_disk_guid
);
1036 free(new_partitions
);
1037 free(partitions_list
);
1042 * gpt_set_bootable() - Set bootable flags for partitions
1044 * Sets the bootable flag for any partition names in the comma separated list of
1045 * partition names. Any partitions not in the list have their bootable flag
1048 * @desc: block device descriptor
1049 * @name: Comma separated list of partition names
1051 * @Return: '0' on success and -ve error on failure
1053 static int gpt_set_bootable(struct blk_desc
*blk_dev_desc
, char *const part_list
)
1056 char disk_guid
[UUID_STR_LEN
+ 1];
1057 struct list_head
*pos
;
1058 struct disk_part
*curr
;
1059 struct disk_partition
*partitions
= NULL
;
1061 int ret
= get_disk_guid(blk_dev_desc
, disk_guid
);
1066 ret
= get_gpt_info(blk_dev_desc
);
1071 partitions
= malloc(sizeof(*partitions
) * part_count
);
1077 /* Copy partitions and clear bootable flag */
1079 list_for_each(pos
, &disk_partitions
) {
1080 curr
= list_entry(pos
, struct disk_part
, list
);
1081 partitions
[part_count
] = curr
->gpt_part_info
;
1082 partitions
[part_count
].bootable
&= ~PART_BOOTABLE
;
1086 name
= strtok(part_list
, ",");
1090 for (int i
= 0; i
< part_count
; i
++) {
1091 if (strcmp((char *)partitions
[i
].name
, name
) == 0) {
1092 partitions
[i
].bootable
|= PART_BOOTABLE
;
1098 printf("Warning: No partition matching '%s' found\n",
1102 name
= strtok(NULL
, ",");
1105 ret
= gpt_restore(blk_dev_desc
, disk_guid
, partitions
, part_count
);
1118 * do_gpt(): Perform GPT operations
1120 * @param cmdtp - command name
1125 * Return: zero on success; otherwise error
1127 static int do_gpt(struct cmd_tbl
*cmdtp
, int flag
, int argc
, char *const argv
[])
1129 int ret
= CMD_RET_SUCCESS
;
1132 struct blk_desc
*blk_dev_desc
= NULL
;
1134 #ifndef CONFIG_CMD_GPT_RENAME
1135 if (argc
< 4 || argc
> 5)
1137 if (argc
< 4 || argc
> 6)
1139 return CMD_RET_USAGE
;
1141 dev
= (int)dectoul(argv
[3], &ep
);
1142 if (!ep
|| ep
[0] != '\0') {
1143 printf("'%s' is not a number\n", argv
[3]);
1144 return CMD_RET_USAGE
;
1146 blk_dev_desc
= blk_get_dev(argv
[2], dev
);
1147 if (!blk_dev_desc
) {
1148 printf("%s: %s dev %d NOT available\n",
1149 __func__
, argv
[2], dev
);
1150 return CMD_RET_FAILURE
;
1153 if (strcmp(argv
[1], "repair") == 0) {
1154 printf("Repairing GPT: ");
1155 ret
= gpt_repair(blk_dev_desc
);
1156 } else if ((strcmp(argv
[1], "write") == 0) && (argc
== 5)) {
1157 printf("Writing GPT: ");
1158 ret
= gpt_default(blk_dev_desc
, argv
[4]);
1159 } else if ((strcmp(argv
[1], "verify") == 0)) {
1160 ret
= gpt_verify(blk_dev_desc
, argv
[4]);
1161 printf("Verify GPT: ");
1162 } else if ((strcmp(argv
[1], "setenv") == 0)) {
1163 ret
= gpt_setenv(blk_dev_desc
, argv
[4]);
1164 } else if ((strcmp(argv
[1], "enumerate") == 0)) {
1165 ret
= gpt_enumerate(blk_dev_desc
);
1166 } else if (strcmp(argv
[1], "guid") == 0) {
1167 ret
= do_disk_guid(blk_dev_desc
, argv
[4]);
1168 #ifdef CONFIG_CMD_GPT_RENAME
1169 } else if (strcmp(argv
[1], "read") == 0) {
1170 ret
= do_get_gpt_info(blk_dev_desc
, (argc
== 5) ? argv
[4] : NULL
);
1171 } else if ((strcmp(argv
[1], "swap") == 0) ||
1172 (strcmp(argv
[1], "rename") == 0) ||
1173 (strcmp(argv
[1], "transpose") == 0)) {
1174 ret
= do_rename_gpt_parts(blk_dev_desc
, argv
[1], argv
[4], argv
[5]);
1175 } else if ((strcmp(argv
[1], "set-bootable") == 0)) {
1176 ret
= gpt_set_bootable(blk_dev_desc
, argv
[4]);
1179 return CMD_RET_USAGE
;
1184 return CMD_RET_FAILURE
;
1187 printf("success!\n");
1188 return CMD_RET_SUCCESS
;
1191 U_BOOT_CMD(gpt
, CONFIG_SYS_MAXARGS
, 1, do_gpt
,
1192 "GUID Partition Table",
1193 "<command> <interface> <dev> <partitions_list>\n"
1194 " - GUID partition table restoration and validity check\n"
1195 " Restore or verify GPT information on a device connected\n"
1198 " gpt repair mmc 0\n"
1199 " - repair the GPT on the device\n"
1200 " gpt write mmc 0 $partitions\n"
1201 " - write the GPT to device\n"
1202 " gpt verify mmc 0 $partitions\n"
1203 " - verify the GPT on device against $partitions\n"
1204 " gpt setenv mmc 0 $name\n"
1205 " - setup environment variables for partition $name:\n"
1206 " gpt_partition_addr, gpt_partition_size,\n"
1207 " gpt_partition_name, gpt_partition_entry,\n"
1208 " gpt_partition_bootable\n"
1209 " gpt enumerate mmc 0\n"
1210 " - store list of partitions to gpt_partition_list environment variable\n"
1211 " gpt guid <interface> <dev>\n"
1212 " - print disk GUID\n"
1213 " gpt guid <interface> <dev> <varname>\n"
1214 " - set environment variable to disk GUID\n"
1217 " gpt guid mmc 0 varname\n"
1218 #ifdef CONFIG_CMD_GPT_RENAME
1219 "gpt partition renaming commands:\n"
1220 " gpt read <interface> <dev> [<varname>]\n"
1221 " - read GPT into a data structure for manipulation\n"
1222 " - read GPT partitions into environment variable\n"
1223 " gpt swap <interface> <dev> <name1> <name2>\n"
1224 " - change all partitions named name1 to name2\n"
1226 " gpt transpose <interface> <dev> <part1> <part2>\n"
1227 " - Swap the order of the entries for part1 and part2 in the partition table\n"
1228 " gpt rename <interface> <dev> <part> <name>\n"
1229 " - rename the specified partition\n"
1230 " gpt set-bootable <interface> <dev> <list>\n"
1231 " - make partition names in list bootable\n"
1233 " gpt swap mmc 0 foo bar\n"
1234 " gpt rename mmc 0 3 foo\n"
1235 " gpt set-bootable mmc 0 boot_a,boot_b\n"
1236 " gpt transpose mmc 0 1 2\n"