]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
8b096237 PW |
2 | /* |
3 | * cmd_gpt.c -- GPT (GUID Partition Table) handling command | |
4 | * | |
bbb9ffac LM |
5 | * Copyright (C) 2015 |
6 | * Lukasz Majewski <[email protected]> | |
7 | * | |
8b096237 PW |
8 | * Copyright (C) 2012 Samsung Electronics |
9 | * author: Lukasz Majewski <[email protected]> | |
10 | * author: Piotr Wilczek <[email protected]> | |
8b096237 PW |
11 | */ |
12 | ||
e6f6f9e6 | 13 | #include <blk.h> |
9fb625ce | 14 | #include <env.h> |
f7ae49fc | 15 | #include <log.h> |
8b096237 PW |
16 | #include <malloc.h> |
17 | #include <command.h> | |
e6f6f9e6 | 18 | #include <part.h> |
8b096237 | 19 | #include <part_efi.h> |
12fc1f3b | 20 | #include <part.h> |
8b096237 | 21 | #include <exports.h> |
58d825fb | 22 | #include <u-boot/uuid.h> |
8b096237 | 23 | #include <linux/ctype.h> |
3e34cf7b | 24 | #include <div64.h> |
bbb9ffac | 25 | #include <memalign.h> |
09a49930 | 26 | #include <linux/compat.h> |
61b29b82 | 27 | #include <linux/err.h> |
203f9b48 AC |
28 | #include <linux/sizes.h> |
29 | #include <stdlib.h> | |
09a49930 AC |
30 | |
31 | static LIST_HEAD(disk_partitions); | |
8b096237 | 32 | |
8b096237 PW |
33 | /** |
34 | * extract_env(): Expand env name from string format '&{env_name}' | |
35 | * and return pointer to the env (if the env is set) | |
36 | * | |
37 | * @param str - pointer to string | |
38 | * @param env - pointer to pointer to extracted env | |
39 | * | |
185f812c | 40 | * Return: - zero on successful expand and env is set |
8b096237 | 41 | */ |
39206382 | 42 | static int extract_env(const char *str, char **env) |
8b096237 | 43 | { |
39206382 | 44 | int ret = -1; |
8b096237 | 45 | char *e, *s; |
39206382 PM |
46 | #ifdef CONFIG_RANDOM_UUID |
47 | char uuid_str[UUID_STR_LEN + 1]; | |
48 | #endif | |
8b096237 PW |
49 | |
50 | if (!str || strlen(str) < 4) | |
51 | return -1; | |
52 | ||
39206382 PM |
53 | if (!((strncmp(str, "${", 2) == 0) && (str[strlen(str) - 1] == '}'))) |
54 | return -1; | |
55 | ||
56 | s = strdup(str); | |
57 | if (s == NULL) | |
58 | return -1; | |
59 | ||
60 | memset(s + strlen(s) - 1, '\0', 1); | |
61 | memmove(s, s + 2, strlen(s) - 1); | |
62 | ||
00caae6d | 63 | e = env_get(s); |
39206382 PM |
64 | if (e == NULL) { |
65 | #ifdef CONFIG_RANDOM_UUID | |
66 | debug("%s unset. ", str); | |
9da52f8f | 67 | gen_rand_uuid_str(uuid_str, UUID_STR_FORMAT_GUID); |
382bee57 | 68 | env_set(s, uuid_str); |
39206382 | 69 | |
00caae6d | 70 | e = env_get(s); |
39206382 PM |
71 | if (e) { |
72 | debug("Set to random.\n"); | |
73 | ret = 0; | |
74 | } else { | |
75 | debug("Can't get random UUID.\n"); | |
8b096237 | 76 | } |
39206382 PM |
77 | #else |
78 | debug("%s unset.\n", str); | |
79 | #endif | |
80 | } else { | |
81 | debug("%s get from environment.\n", str); | |
82 | ret = 0; | |
8b096237 PW |
83 | } |
84 | ||
39206382 PM |
85 | *env = e; |
86 | free(s); | |
87 | ||
88 | return ret; | |
8b096237 PW |
89 | } |
90 | ||
91 | /** | |
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! | |
95 | * | |
96 | * @param str - pointer to string with key=values pairs | |
97 | * @param key - pointer to the key to search for | |
98 | * | |
185f812c | 99 | * Return: - pointer to allocated string with the value |
8b096237 PW |
100 | */ |
101 | static char *extract_val(const char *str, const char *key) | |
102 | { | |
103 | char *v, *k; | |
104 | char *s, *strcopy; | |
105 | char *new = NULL; | |
106 | ||
107 | strcopy = strdup(str); | |
108 | if (strcopy == NULL) | |
109 | return NULL; | |
110 | ||
111 | s = strcopy; | |
112 | while (s) { | |
113 | v = strsep(&s, ","); | |
114 | if (!v) | |
115 | break; | |
116 | k = strsep(&v, "="); | |
117 | if (!k) | |
118 | break; | |
72e77ab1 | 119 | k += strspn(k, " \t"); |
8b096237 PW |
120 | if (strcmp(k, key) == 0) { |
121 | new = strdup(v); | |
122 | break; | |
123 | } | |
124 | } | |
125 | ||
126 | free(strcopy); | |
127 | ||
128 | return new; | |
129 | } | |
130 | ||
cfdaf4ca PD |
131 | /** |
132 | * found_key(): Found key without value in parameter list (comma separated). | |
133 | * | |
134 | * @param str - pointer to string with key | |
135 | * @param key - pointer to the key to search for | |
136 | * | |
185f812c | 137 | * Return: - true on found key |
cfdaf4ca PD |
138 | */ |
139 | static bool found_key(const char *str, const char *key) | |
140 | { | |
141 | char *k; | |
142 | char *s, *strcopy; | |
143 | bool result = false; | |
144 | ||
145 | strcopy = strdup(str); | |
146 | if (!strcopy) | |
147 | return NULL; | |
148 | ||
149 | s = strcopy; | |
150 | while (s) { | |
151 | k = strsep(&s, ","); | |
152 | if (!k) | |
153 | break; | |
72e77ab1 | 154 | k += strspn(k, " \t"); |
cfdaf4ca PD |
155 | if (strcmp(k, key) == 0) { |
156 | result = true; | |
157 | break; | |
158 | } | |
159 | } | |
160 | ||
161 | free(strcopy); | |
162 | ||
163 | return result; | |
164 | } | |
165 | ||
69f4d373 HS |
166 | /** |
167 | * calc_parts_list_len() - get size of partition table description | |
168 | * | |
169 | * @numparts: number of partitions | |
170 | * Return: string size including terminating NUL | |
171 | */ | |
2fcaa413 AC |
172 | static int calc_parts_list_len(int numparts) |
173 | { | |
69f4d373 HS |
174 | /* number of hexadecimal digits of the lbaint_t representation */ |
175 | const int lbaint_size = 2 * sizeof(lbaint_t); | |
176 | int partlistlen; | |
177 | ||
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); | |
2fcaa413 | 182 | /* see part.h for definition of struct disk_partition */ |
69f4d373 HS |
183 | partlistlen += numparts * (strlen("start=0x,") + lbaint_size); |
184 | partlistlen += numparts * (strlen("size=0x,") + lbaint_size); | |
69f4d373 | 185 | if (IS_ENABLED(CONFIG_PARTITION_UUIDS)) |
f5e4b056 HS |
186 | partlistlen += numparts * (strlen("uuid=,") + UUID_STR_LEN); |
187 | if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID)) | |
188 | partlistlen += numparts * (strlen("type=;") + UUID_STR_LEN); | |
69f4d373 HS |
189 | debug("Length of partitions_list is %d for %d partitions\n", |
190 | partlistlen, numparts); | |
2fcaa413 AC |
191 | return partlistlen; |
192 | } | |
193 | ||
09a49930 AC |
194 | #ifdef CONFIG_CMD_GPT_RENAME |
195 | static void del_gpt_info(void) | |
196 | { | |
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); | |
201 | list_del(pos->next); | |
202 | free(curr); | |
203 | } | |
204 | } | |
205 | ||
0528979f SG |
206 | static struct disk_part *allocate_disk_part(struct disk_partition *info, |
207 | int partnum) | |
09a49930 AC |
208 | { |
209 | struct disk_part *newpart; | |
f66bc0e0 | 210 | newpart = calloc(1, sizeof(struct disk_part)); |
09a49930 AC |
211 | if (!newpart) |
212 | return ERR_PTR(-ENOMEM); | |
09a49930 AC |
213 | |
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, | |
218 | PART_NAME_LEN); | |
219 | newpart->gpt_part_info.name[PART_NAME_LEN - 1] = '\0'; | |
220 | strncpy((char *)newpart->gpt_part_info.type, (const char *)info->type, | |
221 | PART_TYPE_LEN); | |
222 | newpart->gpt_part_info.type[PART_TYPE_LEN - 1] = '\0'; | |
223 | newpart->gpt_part_info.bootable = info->bootable; | |
396f3155 HS |
224 | if (IS_ENABLED(CONFIG_PARTITION_UUIDS)) |
225 | disk_partition_set_uuid(&newpart->gpt_part_info, | |
226 | disk_partition_uuid(info)); | |
f5e4b056 HS |
227 | if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID)) |
228 | disk_partition_set_type_guid(&newpart->gpt_part_info, | |
229 | disk_partition_type_guid(info)); | |
09a49930 AC |
230 | newpart->partnum = partnum; |
231 | ||
232 | return newpart; | |
233 | } | |
234 | ||
203f9b48 AC |
235 | static void prettyprint_part_size(char *sizestr, lbaint_t partsize, |
236 | lbaint_t blksize) | |
237 | { | |
238 | unsigned long long partbytes, partmegabytes; | |
239 | ||
240 | partbytes = partsize * blksize; | |
241 | partmegabytes = lldiv(partbytes, SZ_1M); | |
242 | snprintf(sizestr, 16, "%lluMiB", partmegabytes); | |
243 | } | |
244 | ||
09a49930 AC |
245 | static void print_gpt_info(void) |
246 | { | |
247 | struct list_head *pos; | |
248 | struct disk_part *curr; | |
203f9b48 AC |
249 | char partstartstr[16]; |
250 | char partsizestr[16]; | |
09a49930 AC |
251 | |
252 | list_for_each(pos, &disk_partitions) { | |
253 | curr = list_entry(pos, struct disk_part, list); | |
203f9b48 AC |
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); | |
258 | ||
09a49930 | 259 | printf("Partition %d:\n", curr->partnum); |
203f9b48 | 260 | printf("Start %s, size %s\n", partstartstr, partsizestr); |
09a49930 AC |
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, | |
25801acc | 264 | curr->gpt_part_info.bootable & PART_BOOTABLE); |
396f3155 HS |
265 | if (CONFIG_IS_ENABLED(PARTITION_UUIDS)) |
266 | printf("UUID %s\n", | |
267 | disk_partition_uuid(&curr->gpt_part_info)); | |
f5e4b056 HS |
268 | if (IS_ENABLED(CONFIG_PARTITION_TYPE_GUID)) |
269 | printf("Type GUID %s\n", | |
270 | disk_partition_type_guid(&curr->gpt_part_info)); | |
09a49930 AC |
271 | printf("\n"); |
272 | } | |
273 | } | |
274 | ||
203f9b48 AC |
275 | /* |
276 | * create the string that upstream 'gpt write' command will accept as an | |
277 | * argument | |
278 | * | |
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. | |
285 | */ | |
286 | static int create_gpt_partitions_list(int numparts, const char *guid, | |
287 | char *partitions_list) | |
288 | { | |
289 | struct list_head *pos; | |
290 | struct disk_part *curr; | |
291 | char partstr[PART_NAME_LEN + 1]; | |
292 | ||
293 | if (!partitions_list) | |
294 | return -EINVAL; | |
295 | ||
296 | strcpy(partitions_list, "uuid_disk="); | |
297 | strncat(partitions_list, guid, UUID_STR_LEN + 1); | |
298 | strcat(partitions_list, ";"); | |
299 | ||
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, | |
304 | PART_NAME_LEN + 1); | |
3a2605fa PD |
305 | sprintf(partstr, ",start=0x%llx", |
306 | (unsigned long long)curr->gpt_part_info.start * | |
307 | curr->gpt_part_info.blksz); | |
203f9b48 AC |
308 | /* one extra byte for NULL */ |
309 | strncat(partitions_list, partstr, PART_NAME_LEN + 1); | |
3a2605fa PD |
310 | sprintf(partstr, ",size=0x%llx", |
311 | (unsigned long long)curr->gpt_part_info.size * | |
312 | curr->gpt_part_info.blksz); | |
203f9b48 AC |
313 | strncat(partitions_list, partstr, PART_NAME_LEN + 1); |
314 | ||
f5e4b056 HS |
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), | |
319 | UUID_STR_LEN + 1); | |
320 | } | |
396f3155 HS |
321 | if (CONFIG_IS_ENABLED(PARTITION_UUIDS)) { |
322 | strcat(partitions_list, ",uuid="); | |
323 | strncat(partitions_list, | |
324 | disk_partition_uuid(&curr->gpt_part_info), | |
325 | UUID_STR_LEN + 1); | |
326 | } | |
648140f7 JW |
327 | if (curr->gpt_part_info.bootable & PART_BOOTABLE) |
328 | strcat(partitions_list, ",bootable"); | |
203f9b48 AC |
329 | strcat(partitions_list, ";"); |
330 | } | |
331 | return 0; | |
332 | } | |
333 | ||
09a49930 AC |
334 | /* |
335 | * read partition info into disk_partitions list where | |
336 | * it can be printed or modified | |
337 | */ | |
338 | static int get_gpt_info(struct blk_desc *dev_desc) | |
339 | { | |
340 | /* start partition numbering at 1, as U-Boot does */ | |
341 | int valid_parts = 0, p, ret; | |
0528979f | 342 | struct disk_partition info; |
09a49930 AC |
343 | struct disk_part *new_disk_part; |
344 | ||
203f9b48 AC |
345 | /* |
346 | * Always re-read partition info from device, in case | |
347 | * it has changed | |
348 | */ | |
349 | INIT_LIST_HEAD(&disk_partitions); | |
09a49930 AC |
350 | |
351 | for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) { | |
352 | ret = part_get_info(dev_desc, p, &info); | |
353 | if (ret) | |
354 | continue; | |
355 | ||
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)) | |
360 | goto out; | |
361 | ||
362 | list_add_tail(&new_disk_part->list, &disk_partitions); | |
363 | valid_parts++; | |
364 | } | |
365 | if (valid_parts == 0) { | |
366 | printf("** No valid partitions found **\n"); | |
367 | goto out; | |
368 | } | |
369 | return valid_parts; | |
370 | out: | |
371 | if (valid_parts >= 1) | |
372 | del_gpt_info(); | |
373 | return -ENODEV; | |
374 | } | |
375 | ||
376 | /* a wrapper to test get_gpt_info */ | |
653cd92d | 377 | static int do_get_gpt_info(struct blk_desc *dev_desc, char * const namestr) |
09a49930 | 378 | { |
653cd92d FA |
379 | int numparts; |
380 | ||
381 | numparts = get_gpt_info(dev_desc); | |
382 | ||
383 | if (numparts > 0) { | |
384 | if (namestr) { | |
385 | char disk_guid[UUID_STR_LEN + 1]; | |
386 | char *partitions_list; | |
387 | int partlistlen; | |
388 | int ret = -1; | |
389 | ||
390 | ret = get_disk_guid(dev_desc, disk_guid); | |
391 | if (ret < 0) | |
392 | return ret; | |
393 | ||
394 | partlistlen = calc_parts_list_len(numparts); | |
395 | partitions_list = malloc(partlistlen); | |
396 | if (!partitions_list) { | |
397 | del_gpt_info(); | |
398 | return -ENOMEM; | |
399 | } | |
400 | memset(partitions_list, '\0', partlistlen); | |
401 | ||
402 | ret = create_gpt_partitions_list(numparts, disk_guid, | |
403 | partitions_list); | |
404 | if (ret < 0) | |
405 | printf("Error: Could not create partition list string!\n"); | |
406 | else | |
407 | env_set(namestr, partitions_list); | |
09a49930 | 408 | |
653cd92d FA |
409 | free(partitions_list); |
410 | } else { | |
411 | print_gpt_info(); | |
412 | } | |
09a49930 AC |
413 | del_gpt_info(); |
414 | return 0; | |
415 | } | |
653cd92d | 416 | return numparts; |
09a49930 AC |
417 | } |
418 | #endif | |
419 | ||
8b096237 PW |
420 | /** |
421 | * set_gpt_info(): Fill partition information from string | |
422 | * function allocates memory, remember to free! | |
423 | * | |
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 | |
429 | * | |
185f812c | 430 | * Return: - zero on success, otherwise error |
8b096237 PW |
431 | * |
432 | */ | |
4101f687 | 433 | static int set_gpt_info(struct blk_desc *dev_desc, |
8b096237 PW |
434 | const char *str_part, |
435 | char **str_disk_guid, | |
0528979f | 436 | struct disk_partition **partitions, |
8b096237 PW |
437 | u8 *parts_count) |
438 | { | |
439 | char *tok, *str, *s; | |
440 | int i; | |
441 | char *val, *p; | |
442 | int p_count; | |
0528979f | 443 | struct disk_partition *parts; |
8b096237 | 444 | int errno = 0; |
3e34cf7b | 445 | uint64_t size_ll, start_ll; |
66636235 | 446 | lbaint_t offset = 0; |
2fcaa413 | 447 | int max_str_part = calc_parts_list_len(MAX_SEARCH_PARTITIONS); |
8b096237 | 448 | |
619f0fdf | 449 | debug("%s: lba num: 0x%x %d\n", __func__, |
8b096237 PW |
450 | (unsigned int)dev_desc->lba, (unsigned int)dev_desc->lba); |
451 | ||
452 | if (str_part == NULL) | |
453 | return -1; | |
454 | ||
455 | str = strdup(str_part); | |
203f9b48 AC |
456 | if (str == NULL) |
457 | return -ENOMEM; | |
8b096237 PW |
458 | |
459 | /* extract disk guid */ | |
460 | s = str; | |
0c7e8d13 | 461 | val = extract_val(str, "uuid_disk"); |
8b096237 | 462 | if (!val) { |
0c7e8d13 RH |
463 | #ifdef CONFIG_RANDOM_UUID |
464 | *str_disk_guid = malloc(UUID_STR_LEN + 1); | |
bf52fcde | 465 | if (*str_disk_guid == NULL) |
2fcaa413 | 466 | return -ENOMEM; |
0c7e8d13 RH |
467 | gen_rand_uuid_str(*str_disk_guid, UUID_STR_FORMAT_STD); |
468 | #else | |
8b096237 PW |
469 | free(str); |
470 | return -2; | |
0c7e8d13 RH |
471 | #endif |
472 | } else { | |
473 | val = strsep(&val, ";"); | |
474 | if (extract_env(val, &p)) | |
475 | p = val; | |
476 | *str_disk_guid = strdup(p); | |
477 | free(val); | |
478 | /* Move s to first partition */ | |
479 | strsep(&s, ";"); | |
8b096237 | 480 | } |
2fcaa413 AC |
481 | if (s == NULL) { |
482 | printf("Error: is the partitions string NULL-terminated?\n"); | |
483 | return -EINVAL; | |
484 | } | |
485 | if (strnlen(s, max_str_part) == 0) | |
8b096237 PW |
486 | return -3; |
487 | ||
2fcaa413 | 488 | i = strnlen(s, max_str_part) - 1; |
8b096237 PW |
489 | if (s[i] == ';') |
490 | s[i] = '\0'; | |
491 | ||
492 | /* calculate expected number of partitions */ | |
493 | p_count = 1; | |
494 | p = s; | |
495 | while (*p) { | |
496 | if (*p++ == ';') | |
497 | p_count++; | |
498 | } | |
499 | ||
500 | /* allocate memory for partitions */ | |
0528979f | 501 | parts = calloc(sizeof(struct disk_partition), p_count); |
2fcaa413 AC |
502 | if (parts == NULL) |
503 | return -ENOMEM; | |
8b096237 | 504 | |
1f8b546f | 505 | /* retrieve partitions data from string */ |
8b096237 PW |
506 | for (i = 0; i < p_count; i++) { |
507 | tok = strsep(&s, ";"); | |
508 | ||
509 | if (tok == NULL) | |
510 | break; | |
511 | ||
512 | /* uuid */ | |
513 | val = extract_val(tok, "uuid"); | |
0c7e8d13 RH |
514 | if (!val) { |
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); | |
518 | #else | |
8b096237 PW |
519 | errno = -4; |
520 | goto err; | |
0c7e8d13 RH |
521 | #endif |
522 | } else { | |
523 | if (extract_env(val, &p)) | |
524 | p = val; | |
2fcaa413 | 525 | if (strnlen(p, max_str_part) >= sizeof(parts[i].uuid)) { |
0c7e8d13 RH |
526 | printf("Wrong uuid format for partition %d\n", i); |
527 | errno = -4; | |
528 | goto err; | |
529 | } | |
2fcaa413 | 530 | strncpy((char *)parts[i].uuid, p, max_str_part); |
0c7e8d13 | 531 | free(val); |
8b096237 | 532 | } |
7561b258 PD |
533 | #ifdef CONFIG_PARTITION_TYPE_GUID |
534 | /* guid */ | |
535 | val = extract_val(tok, "type"); | |
536 | if (val) { | |
537 | /* 'type' is optional */ | |
538 | if (extract_env(val, &p)) | |
539 | p = val; | |
2fcaa413 | 540 | if (strnlen(p, max_str_part) >= sizeof(parts[i].type_guid)) { |
7561b258 PD |
541 | printf("Wrong type guid format for partition %d\n", |
542 | i); | |
543 | errno = -4; | |
544 | goto err; | |
545 | } | |
2fcaa413 | 546 | strncpy((char *)parts[i].type_guid, p, max_str_part); |
7561b258 PD |
547 | free(val); |
548 | } | |
549 | #endif | |
8b096237 PW |
550 | /* name */ |
551 | val = extract_val(tok, "name"); | |
552 | if (!val) { /* name is mandatory */ | |
553 | errno = -4; | |
554 | goto err; | |
555 | } | |
556 | if (extract_env(val, &p)) | |
557 | p = val; | |
2fcaa413 | 558 | if (strnlen(p, max_str_part) >= sizeof(parts[i].name)) { |
8b096237 PW |
559 | errno = -4; |
560 | goto err; | |
561 | } | |
2fcaa413 | 562 | strncpy((char *)parts[i].name, p, max_str_part); |
8b096237 PW |
563 | free(val); |
564 | ||
565 | /* size */ | |
566 | val = extract_val(tok, "size"); | |
567 | if (!val) { /* 'size' is mandatory */ | |
568 | errno = -4; | |
569 | goto err; | |
570 | } | |
571 | if (extract_env(val, &p)) | |
572 | p = val; | |
66636235 | 573 | if ((strcmp(p, "-") == 0)) { |
c2fdd345 KY |
574 | /* Let part efi module to auto extend the size */ |
575 | parts[i].size = 0; | |
66636235 MT |
576 | } else { |
577 | size_ll = ustrtoull(p, &p, 0); | |
578 | parts[i].size = lldiv(size_ll, dev_desc->blksz); | |
579 | } | |
580 | ||
8b096237 PW |
581 | free(val); |
582 | ||
583 | /* start address */ | |
584 | val = extract_val(tok, "start"); | |
585 | if (val) { /* start address is optional */ | |
586 | if (extract_env(val, &p)) | |
587 | p = val; | |
3e34cf7b PW |
588 | start_ll = ustrtoull(p, &p, 0); |
589 | parts[i].start = lldiv(start_ll, dev_desc->blksz); | |
8b096237 PW |
590 | free(val); |
591 | } | |
cfdaf4ca | 592 | |
66636235 MT |
593 | offset += parts[i].size + parts[i].start; |
594 | ||
cfdaf4ca PD |
595 | /* bootable */ |
596 | if (found_key(tok, "bootable")) | |
25801acc | 597 | parts[i].bootable = PART_BOOTABLE; |
8b096237 PW |
598 | } |
599 | ||
600 | *parts_count = p_count; | |
601 | *partitions = parts; | |
602 | free(str); | |
603 | ||
604 | return 0; | |
605 | err: | |
606 | free(str); | |
607 | free(*str_disk_guid); | |
608 | free(parts); | |
609 | ||
610 | return errno; | |
611 | } | |
612 | ||
26f404c7 PR |
613 | static int gpt_repair(struct blk_desc *blk_dev_desc) |
614 | { | |
615 | int ret = 0; | |
616 | ||
617 | ret = gpt_repair_headers(blk_dev_desc); | |
618 | ||
619 | return ret; | |
620 | } | |
621 | ||
4101f687 | 622 | static int gpt_default(struct blk_desc *blk_dev_desc, const char *str_part) |
8b096237 PW |
623 | { |
624 | int ret; | |
625 | char *str_disk_guid; | |
626 | u8 part_count = 0; | |
0528979f | 627 | struct disk_partition *partitions = NULL; |
8b096237 | 628 | |
8b096237 | 629 | /* fill partitions */ |
619f0fdf | 630 | ret = set_gpt_info(blk_dev_desc, str_part, |
8b096237 PW |
631 | &str_disk_guid, &partitions, &part_count); |
632 | if (ret) { | |
633 | if (ret == -1) | |
634 | printf("No partition list provided\n"); | |
635 | if (ret == -2) | |
636 | printf("Missing disk guid\n"); | |
637 | if ((ret == -3) || (ret == -4)) | |
638 | printf("Partition list incomplete\n"); | |
639 | return -1; | |
640 | } | |
641 | ||
642 | /* save partitions layout to disk */ | |
a150e6c9 | 643 | ret = gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count); |
8b096237 PW |
644 | free(str_disk_guid); |
645 | free(partitions); | |
646 | ||
8024d577 KD |
647 | /* initialize partition table */ |
648 | if (blk_enabled()) | |
649 | part_init(blk_dev_desc); | |
650 | ||
a150e6c9 | 651 | return ret; |
8b096237 PW |
652 | } |
653 | ||
4101f687 | 654 | static int gpt_verify(struct blk_desc *blk_dev_desc, const char *str_part) |
bbb9ffac LM |
655 | { |
656 | ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, | |
657 | blk_dev_desc->blksz); | |
0528979f | 658 | struct disk_partition *partitions = NULL; |
bbb9ffac LM |
659 | gpt_entry *gpt_pte = NULL; |
660 | char *str_disk_guid; | |
661 | u8 part_count = 0; | |
662 | int ret = 0; | |
663 | ||
664 | /* fill partitions */ | |
665 | ret = set_gpt_info(blk_dev_desc, str_part, | |
666 | &str_disk_guid, &partitions, &part_count); | |
667 | if (ret) { | |
668 | if (ret == -1) { | |
669 | printf("No partition list provided - only basic check\n"); | |
670 | ret = gpt_verify_headers(blk_dev_desc, gpt_head, | |
671 | &gpt_pte); | |
672 | goto out; | |
673 | } | |
674 | if (ret == -2) | |
675 | printf("Missing disk guid\n"); | |
676 | if ((ret == -3) || (ret == -4)) | |
677 | printf("Partition list incomplete\n"); | |
678 | return -1; | |
679 | } | |
680 | ||
681 | /* Check partition layout with provided pattern */ | |
682 | ret = gpt_verify_partitions(blk_dev_desc, partitions, part_count, | |
683 | gpt_head, &gpt_pte); | |
684 | free(str_disk_guid); | |
685 | free(partitions); | |
686 | out: | |
04c63f13 SP |
687 | if (!ret) |
688 | free(gpt_pte); | |
bbb9ffac LM |
689 | return ret; |
690 | } | |
691 | ||
12fc1f3b CD |
692 | /** |
693 | * gpt_enumerate() - Enumerate partition names into environment variable. | |
694 | * | |
695 | * Enumerate partition names. Partition names are stored in gpt_partition_list | |
696 | * environment variable. Each partition name is delimited by space. | |
697 | * | |
698 | * @desc: block device descriptor | |
699 | * | |
700 | * @Return: '0' on success and -ve error on failure | |
701 | */ | |
702 | static int gpt_enumerate(struct blk_desc *desc) | |
703 | { | |
704 | struct part_driver *first_drv, *part_drv; | |
705 | int str_len = 0, tmp_len; | |
706 | char part_list[2048]; | |
707 | int n_drvs; | |
708 | char *ptr; | |
709 | ||
710 | part_list[0] = 0; | |
711 | n_drvs = part_driver_get_count(); | |
712 | if (!n_drvs) { | |
713 | printf("Failed to get partition driver count\n"); | |
714 | return -ENOENT; | |
715 | } | |
716 | ||
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; | |
720 | int ret; | |
721 | int i; | |
722 | ||
41cd23b7 HS |
723 | if (part_drv->test(desc)) |
724 | continue; | |
725 | ||
12fc1f3b CD |
726 | for (i = 1; i < part_drv->max_entries; i++) { |
727 | ret = part_drv->get_info(desc, i, &pinfo); | |
41cd23b7 HS |
728 | if (ret) |
729 | continue; | |
12fc1f3b CD |
730 | |
731 | ptr = &part_list[str_len]; | |
732 | tmp_len = strlen((const char *)pinfo.name); | |
733 | str_len += tmp_len; | |
734 | /* +1 for space */ | |
735 | str_len++; | |
736 | if (str_len > sizeof(part_list)) { | |
737 | printf("Error insufficient memory\n"); | |
738 | return -ENOMEM; | |
739 | } | |
740 | strcpy(ptr, (const char *)pinfo.name); | |
741 | /* One byte for space(" ") delimiter */ | |
742 | ptr[tmp_len] = ' '; | |
743 | } | |
41cd23b7 HS |
744 | if (*part_list) |
745 | part_list[strlen(part_list) - 1] = 0; | |
746 | break; | |
12fc1f3b | 747 | } |
12fc1f3b CD |
748 | debug("setenv gpt_partition_list %s\n", part_list); |
749 | ||
750 | return env_set("gpt_partition_list", part_list); | |
751 | } | |
752 | ||
753 | /** | |
754 | * gpt_setenv_part_variables() - setup partition environmental variables | |
755 | * | |
756 | * Setup the gpt_partition_name, gpt_partition_entry, gpt_partition_addr | |
b1433aff | 757 | * and gpt_partition_size, gpt_partition_bootable environment variables. |
12fc1f3b CD |
758 | * |
759 | * @pinfo: pointer to disk partition | |
760 | * @i: partition entry | |
761 | * | |
762 | * @Return: '0' on success and -ENOENT on failure | |
763 | */ | |
764 | static int gpt_setenv_part_variables(struct disk_partition *pinfo, int i) | |
765 | { | |
766 | int ret; | |
767 | ||
768 | ret = env_set_hex("gpt_partition_addr", pinfo->start); | |
769 | if (ret) | |
770 | goto fail; | |
771 | ||
772 | ret = env_set_hex("gpt_partition_size", pinfo->size); | |
773 | if (ret) | |
774 | goto fail; | |
775 | ||
eeef5840 | 776 | ret = env_set_hex("gpt_partition_entry", i); |
12fc1f3b CD |
777 | if (ret) |
778 | goto fail; | |
779 | ||
780 | ret = env_set("gpt_partition_name", (const char *)pinfo->name); | |
781 | if (ret) | |
782 | goto fail; | |
783 | ||
b1433aff JW |
784 | ret = env_set_ulong("gpt_partition_bootable", !!(pinfo->bootable & PART_BOOTABLE)); |
785 | if (ret) | |
786 | goto fail; | |
787 | ||
12fc1f3b CD |
788 | return 0; |
789 | ||
790 | fail: | |
791 | return -ENOENT; | |
792 | } | |
793 | ||
794 | /** | |
795 | * gpt_setenv() - Dynamically setup environment variables. | |
796 | * | |
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. | |
799 | * | |
800 | * @desc: block device descriptor | |
801 | * @name: partition name | |
802 | * | |
803 | * @Return: '0' on success and -ve err on failure | |
804 | */ | |
805 | static int gpt_setenv(struct blk_desc *desc, const char *name) | |
806 | { | |
807 | struct part_driver *first_drv, *part_drv; | |
808 | int n_drvs; | |
809 | int ret = -1; | |
810 | ||
811 | n_drvs = part_driver_get_count(); | |
812 | if (!n_drvs) { | |
813 | printf("Failed to get partition driver count\n"); | |
814 | goto fail; | |
815 | } | |
816 | ||
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; | |
820 | int i; | |
821 | ||
822 | for (i = 1; i < part_drv->max_entries; i++) { | |
823 | ret = part_drv->get_info(desc, i, &pinfo); | |
01834677 HS |
824 | if (ret) |
825 | continue; | |
12fc1f3b CD |
826 | |
827 | if (!strcmp(name, (const char *)pinfo.name)) { | |
828 | /* match found, setup environment variables */ | |
829 | ret = gpt_setenv_part_variables(&pinfo, i); | |
830 | if (ret) | |
831 | goto fail; | |
832 | ||
833 | return 0; | |
834 | } | |
835 | } | |
836 | } | |
837 | ||
838 | fail: | |
839 | return ret; | |
840 | } | |
841 | ||
73d6d18b AC |
842 | static int do_disk_guid(struct blk_desc *dev_desc, char * const namestr) |
843 | { | |
844 | int ret; | |
845 | char disk_guid[UUID_STR_LEN + 1]; | |
846 | ||
847 | ret = get_disk_guid(dev_desc, disk_guid); | |
848 | if (ret < 0) | |
849 | return CMD_RET_FAILURE; | |
850 | ||
851 | if (namestr) | |
382bee57 | 852 | env_set(namestr, disk_guid); |
73d6d18b AC |
853 | else |
854 | printf("%s\n", disk_guid); | |
855 | ||
856 | return ret; | |
857 | } | |
858 | ||
203f9b48 AC |
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) | |
862 | { | |
863 | struct list_head *pos; | |
864 | struct disk_part *curr; | |
0528979f | 865 | struct disk_partition *new_partitions = NULL; |
203f9b48 | 866 | char disk_guid[UUID_STR_LEN + 1]; |
5749faa3 | 867 | char *partitions_list, *str_disk_guid = NULL; |
203f9b48 AC |
868 | u8 part_count = 0; |
869 | int partlistlen, ret, numparts = 0, partnum, i = 1, ctr1 = 0, ctr2 = 0; | |
870 | ||
7cc1d87d JW |
871 | if (!subcomm || !name1 || !name2 || |
872 | (strcmp(subcomm, "swap") && strcmp(subcomm, "rename") && | |
873 | strcmp(subcomm, "transpose"))) | |
203f9b48 AC |
874 | return -EINVAL; |
875 | ||
876 | ret = get_disk_guid(dev_desc, disk_guid); | |
877 | if (ret < 0) | |
878 | return ret; | |
18030d04 AC |
879 | /* |
880 | * Allocates disk_partitions, requiring matching call to del_gpt_info() | |
881 | * if successful. | |
882 | */ | |
203f9b48 AC |
883 | numparts = get_gpt_info(dev_desc); |
884 | if (numparts <= 0) | |
885 | return numparts ? numparts : -ENODEV; | |
886 | ||
887 | partlistlen = calc_parts_list_len(numparts); | |
888 | partitions_list = malloc(partlistlen); | |
18030d04 AC |
889 | if (!partitions_list) { |
890 | del_gpt_info(); | |
203f9b48 | 891 | return -ENOMEM; |
18030d04 | 892 | } |
203f9b48 AC |
893 | memset(partitions_list, '\0', partlistlen); |
894 | ||
895 | ret = create_gpt_partitions_list(numparts, disk_guid, partitions_list); | |
18030d04 AC |
896 | if (ret < 0) { |
897 | free(partitions_list); | |
203f9b48 | 898 | return ret; |
18030d04 | 899 | } |
203f9b48 AC |
900 | /* |
901 | * Uncomment the following line to print a string that 'gpt write' | |
902 | * or 'gpt verify' will accept as input. | |
903 | */ | |
904 | debug("OLD partitions_list is %s with %u chars\n", partitions_list, | |
905 | (unsigned)strlen(partitions_list)); | |
906 | ||
18030d04 | 907 | /* set_gpt_info allocates new_partitions and str_disk_guid */ |
203f9b48 AC |
908 | ret = set_gpt_info(dev_desc, partitions_list, &str_disk_guid, |
909 | &new_partitions, &part_count); | |
5749faa3 TR |
910 | if (ret < 0) |
911 | goto out; | |
203f9b48 AC |
912 | |
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); | |
18030d04 AC |
916 | ret = -EINVAL; |
917 | goto out; | |
203f9b48 AC |
918 | } |
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); | |
923 | ctr1++; | |
924 | } else if (!strcmp((char *)curr->gpt_part_info.name, name2)) { | |
925 | strcpy((char *)curr->gpt_part_info.name, name1); | |
926 | ctr2++; | |
927 | } | |
928 | } | |
929 | if ((ctr1 + ctr2 < 2) || (ctr1 != ctr2)) { | |
930 | printf("Cannot swap partition names except in pairs.\n"); | |
18030d04 AC |
931 | ret = -EINVAL; |
932 | goto out; | |
203f9b48 | 933 | } |
7cc1d87d JW |
934 | } else if (!strcmp(subcomm, "transpose")) { |
935 | int idx1, idx2; | |
936 | struct disk_partition* first = NULL; | |
937 | struct disk_partition* second= NULL; | |
938 | struct disk_partition tmp_part; | |
939 | ||
940 | idx1 = simple_strtoul(name1, NULL, 10); | |
941 | idx2 = simple_strtoul(name2, NULL, 10); | |
942 | if (idx1 == idx2) { | |
943 | printf("Cannot swap partition with itself\n"); | |
944 | ret = -EINVAL; | |
945 | goto out; | |
946 | } | |
947 | ||
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; | |
954 | } | |
955 | if (!first) { | |
956 | printf("Illegal partition number %s\n", name1); | |
957 | ret = -EINVAL; | |
958 | goto out; | |
959 | } | |
960 | if (!second) { | |
961 | printf("Illegal partition number %s\n", name2); | |
962 | ret = -EINVAL; | |
963 | goto out; | |
964 | } | |
965 | ||
966 | tmp_part = *first; | |
967 | *first = *second; | |
968 | *second = tmp_part; | |
203f9b48 AC |
969 | } else { /* rename */ |
970 | if (strlen(name2) > PART_NAME_LEN) { | |
971 | printf("Names longer than %d characters are truncated.\n", PART_NAME_LEN); | |
18030d04 AC |
972 | ret = -EINVAL; |
973 | goto out; | |
203f9b48 AC |
974 | } |
975 | partnum = (int)simple_strtol(name1, NULL, 10); | |
976 | if ((partnum < 0) || (partnum > numparts)) { | |
977 | printf("Illegal partition number %s\n", name1); | |
18030d04 AC |
978 | ret = -EINVAL; |
979 | goto out; | |
203f9b48 AC |
980 | } |
981 | ret = part_get_info(dev_desc, partnum, new_partitions); | |
982 | if (ret < 0) | |
18030d04 | 983 | goto out; |
203f9b48 AC |
984 | |
985 | /* U-Boot partition numbering starts at 1 */ | |
986 | list_for_each(pos, &disk_partitions) { | |
987 | curr = list_entry(pos, struct disk_part, list); | |
988 | if (i == partnum) { | |
989 | strcpy((char *)curr->gpt_part_info.name, name2); | |
990 | break; | |
991 | } | |
992 | i++; | |
993 | } | |
994 | } | |
995 | ||
996 | ret = create_gpt_partitions_list(numparts, disk_guid, partitions_list); | |
997 | if (ret < 0) | |
18030d04 | 998 | goto out; |
203f9b48 AC |
999 | debug("NEW partitions_list is %s with %u chars\n", partitions_list, |
1000 | (unsigned)strlen(partitions_list)); | |
1001 | ||
1002 | ret = set_gpt_info(dev_desc, partitions_list, &str_disk_guid, | |
1003 | &new_partitions, &part_count); | |
18030d04 AC |
1004 | /* |
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. | |
1007 | */ | |
5749faa3 TR |
1008 | if (ret < 0) |
1009 | goto out; | |
203f9b48 AC |
1010 | |
1011 | debug("Writing new partition table\n"); | |
1012 | ret = gpt_restore(dev_desc, disk_guid, new_partitions, numparts); | |
1013 | if (ret < 0) { | |
1014 | printf("Writing new partition table failed\n"); | |
18030d04 | 1015 | goto out; |
203f9b48 AC |
1016 | } |
1017 | ||
1018 | debug("Reading back new partition table\n"); | |
18030d04 AC |
1019 | /* |
1020 | * Empty the existing disk_partitions list, as otherwise the memory in | |
1021 | * the original list is unreachable. | |
1022 | */ | |
1023 | del_gpt_info(); | |
203f9b48 | 1024 | numparts = get_gpt_info(dev_desc); |
18030d04 AC |
1025 | if (numparts <= 0) { |
1026 | ret = numparts ? numparts : -ENODEV; | |
1027 | goto out; | |
1028 | } | |
203f9b48 AC |
1029 | printf("new partition table with %d partitions is:\n", numparts); |
1030 | print_gpt_info(); | |
18030d04 | 1031 | out: |
5749faa3 TR |
1032 | del_gpt_info(); |
1033 | #ifdef CONFIG_RANDOM_UUID | |
b142d0ac | 1034 | free(str_disk_guid); |
5749faa3 | 1035 | #endif |
b142d0ac | 1036 | free(new_partitions); |
18030d04 | 1037 | free(partitions_list); |
203f9b48 AC |
1038 | return ret; |
1039 | } | |
a1e793ad JW |
1040 | |
1041 | /** | |
1042 | * gpt_set_bootable() - Set bootable flags for partitions | |
1043 | * | |
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 | |
1046 | * cleared | |
1047 | * | |
1048 | * @desc: block device descriptor | |
1049 | * @name: Comma separated list of partition names | |
1050 | * | |
1051 | * @Return: '0' on success and -ve error on failure | |
1052 | */ | |
1053 | static int gpt_set_bootable(struct blk_desc *blk_dev_desc, char *const part_list) | |
1054 | { | |
1055 | char *name; | |
1056 | char disk_guid[UUID_STR_LEN + 1]; | |
1057 | struct list_head *pos; | |
1058 | struct disk_part *curr; | |
1059 | struct disk_partition *partitions = NULL; | |
1060 | int part_count = 0; | |
1061 | int ret = get_disk_guid(blk_dev_desc, disk_guid); | |
1062 | ||
1063 | if (ret < 0) | |
1064 | return ret; | |
1065 | ||
1066 | ret = get_gpt_info(blk_dev_desc); | |
1067 | if (ret <= 0) | |
1068 | goto out; | |
1069 | ||
1070 | part_count = ret; | |
1071 | partitions = malloc(sizeof(*partitions) * part_count); | |
1072 | if (!partitions) { | |
1073 | ret = -ENOMEM; | |
1074 | goto out; | |
1075 | } | |
1076 | ||
1077 | /* Copy partitions and clear bootable flag */ | |
1078 | part_count = 0; | |
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; | |
1083 | part_count++; | |
1084 | } | |
1085 | ||
1086 | name = strtok(part_list, ","); | |
1087 | while (name) { | |
1088 | bool found = false; | |
1089 | ||
1090 | for (int i = 0; i < part_count; i++) { | |
1091 | if (strcmp((char *)partitions[i].name, name) == 0) { | |
1092 | partitions[i].bootable |= PART_BOOTABLE; | |
1093 | found = true; | |
1094 | } | |
1095 | } | |
1096 | ||
1097 | if (!found) { | |
1098 | printf("Warning: No partition matching '%s' found\n", | |
1099 | name); | |
1100 | } | |
1101 | ||
1102 | name = strtok(NULL, ","); | |
1103 | } | |
1104 | ||
1105 | ret = gpt_restore(blk_dev_desc, disk_guid, partitions, part_count); | |
1106 | ||
1107 | out: | |
1108 | del_gpt_info(); | |
1109 | ||
1110 | if (partitions) | |
1111 | free(partitions); | |
1112 | ||
1113 | return ret; | |
1114 | } | |
203f9b48 AC |
1115 | #endif |
1116 | ||
8b096237 PW |
1117 | /** |
1118 | * do_gpt(): Perform GPT operations | |
1119 | * | |
1120 | * @param cmdtp - command name | |
1121 | * @param flag | |
1122 | * @param argc | |
1123 | * @param argv | |
1124 | * | |
185f812c | 1125 | * Return: zero on success; otherwise error |
8b096237 | 1126 | */ |
09140113 | 1127 | static int do_gpt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
8b096237 PW |
1128 | { |
1129 | int ret = CMD_RET_SUCCESS; | |
1130 | int dev = 0; | |
619f0fdf | 1131 | char *ep; |
4101f687 | 1132 | struct blk_desc *blk_dev_desc = NULL; |
8b096237 | 1133 | |
203f9b48 | 1134 | #ifndef CONFIG_CMD_GPT_RENAME |
bbb9ffac | 1135 | if (argc < 4 || argc > 5) |
203f9b48 AC |
1136 | #else |
1137 | if (argc < 4 || argc > 6) | |
1138 | #endif | |
8b096237 PW |
1139 | return CMD_RET_USAGE; |
1140 | ||
0b1284eb | 1141 | dev = (int)dectoul(argv[3], &ep); |
bbb9ffac LM |
1142 | if (!ep || ep[0] != '\0') { |
1143 | printf("'%s' is not a number\n", argv[3]); | |
1144 | return CMD_RET_USAGE; | |
1145 | } | |
db1d9e78 | 1146 | blk_dev_desc = blk_get_dev(argv[2], dev); |
bbb9ffac LM |
1147 | if (!blk_dev_desc) { |
1148 | printf("%s: %s dev %d NOT available\n", | |
1149 | __func__, argv[2], dev); | |
1150 | return CMD_RET_FAILURE; | |
1151 | } | |
39206382 | 1152 | |
26f404c7 PR |
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)) { | |
bbb9ffac | 1157 | printf("Writing GPT: "); |
39206382 | 1158 | ret = gpt_default(blk_dev_desc, argv[4]); |
bbb9ffac LM |
1159 | } else if ((strcmp(argv[1], "verify") == 0)) { |
1160 | ret = gpt_verify(blk_dev_desc, argv[4]); | |
1161 | printf("Verify GPT: "); | |
12fc1f3b CD |
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); | |
73d6d18b AC |
1166 | } else if (strcmp(argv[1], "guid") == 0) { |
1167 | ret = do_disk_guid(blk_dev_desc, argv[4]); | |
09a49930 AC |
1168 | #ifdef CONFIG_CMD_GPT_RENAME |
1169 | } else if (strcmp(argv[1], "read") == 0) { | |
653cd92d | 1170 | ret = do_get_gpt_info(blk_dev_desc, (argc == 5) ? argv[4] : NULL); |
203f9b48 | 1171 | } else if ((strcmp(argv[1], "swap") == 0) || |
7cc1d87d JW |
1172 | (strcmp(argv[1], "rename") == 0) || |
1173 | (strcmp(argv[1], "transpose") == 0)) { | |
203f9b48 | 1174 | ret = do_rename_gpt_parts(blk_dev_desc, argv[1], argv[4], argv[5]); |
a1e793ad JW |
1175 | } else if ((strcmp(argv[1], "set-bootable") == 0)) { |
1176 | ret = gpt_set_bootable(blk_dev_desc, argv[4]); | |
09a49930 | 1177 | #endif |
8b096237 PW |
1178 | } else { |
1179 | return CMD_RET_USAGE; | |
1180 | } | |
bbb9ffac LM |
1181 | |
1182 | if (ret) { | |
1183 | printf("error!\n"); | |
1184 | return CMD_RET_FAILURE; | |
1185 | } | |
1186 | ||
1187 | printf("success!\n"); | |
1188 | return CMD_RET_SUCCESS; | |
8b096237 PW |
1189 | } |
1190 | ||
1191 | U_BOOT_CMD(gpt, CONFIG_SYS_MAXARGS, 1, do_gpt, | |
1192 | "GUID Partition Table", | |
1f8b546f | 1193 | "<command> <interface> <dev> <partitions_list>\n" |
74f889b0 LM |
1194 | " - GUID partition table restoration and validity check\n" |
1195 | " Restore or verify GPT information on a device connected\n" | |
8b096237 | 1196 | " to interface\n" |
74f889b0 | 1197 | " Example usage:\n" |
26f404c7 PR |
1198 | " gpt repair mmc 0\n" |
1199 | " - repair the GPT on the device\n" | |
74f889b0 | 1200 | " gpt write mmc 0 $partitions\n" |
12fc1f3b | 1201 | " - write the GPT to device\n" |
74f889b0 | 1202 | " gpt verify mmc 0 $partitions\n" |
12fc1f3b CD |
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" | |
b1433aff JW |
1207 | " gpt_partition_name, gpt_partition_entry,\n" |
1208 | " gpt_partition_bootable\n" | |
12fc1f3b CD |
1209 | " gpt enumerate mmc 0\n" |
1210 | " - store list of partitions to gpt_partition_list environment variable\n" | |
d0266096 | 1211 | " gpt guid <interface> <dev>\n" |
73d6d18b | 1212 | " - print disk GUID\n" |
d0266096 | 1213 | " gpt guid <interface> <dev> <varname>\n" |
73d6d18b AC |
1214 | " - set environment variable to disk GUID\n" |
1215 | " Example usage:\n" | |
1216 | " gpt guid mmc 0\n" | |
1217 | " gpt guid mmc 0 varname\n" | |
203f9b48 AC |
1218 | #ifdef CONFIG_CMD_GPT_RENAME |
1219 | "gpt partition renaming commands:\n" | |
653cd92d | 1220 | " gpt read <interface> <dev> [<varname>]\n" |
d0266096 | 1221 | " - read GPT into a data structure for manipulation\n" |
653cd92d | 1222 | " - read GPT partitions into environment variable\n" |
d0266096 | 1223 | " gpt swap <interface> <dev> <name1> <name2>\n" |
203f9b48 AC |
1224 | " - change all partitions named name1 to name2\n" |
1225 | " and vice-versa\n" | |
7cc1d87d JW |
1226 | " gpt transpose <interface> <dev> <part1> <part2>\n" |
1227 | " - Swap the order of the entries for part1 and part2 in the partition table\n" | |
d0266096 | 1228 | " gpt rename <interface> <dev> <part> <name>\n" |
203f9b48 | 1229 | " - rename the specified partition\n" |
a1e793ad JW |
1230 | " gpt set-bootable <interface> <dev> <list>\n" |
1231 | " - make partition names in list bootable\n" | |
203f9b48 AC |
1232 | " Example usage:\n" |
1233 | " gpt swap mmc 0 foo bar\n" | |
1234 | " gpt rename mmc 0 3 foo\n" | |
a1e793ad | 1235 | " gpt set-bootable mmc 0 boot_a,boot_b\n" |
7cc1d87d | 1236 | " gpt transpose mmc 0 1 2\n" |
203f9b48 | 1237 | #endif |
8b096237 | 1238 | ); |