]> git.ipfire.org Git - people/ms/u-boot.git/blame - disk/part_efi.c
part: efi: make gpt_fill_pte take the device descriptor
[people/ms/u-boot.git] / disk / part_efi.c
CommitLineData
07f3d789 1/*
2 * Copyright (C) 2008 RuggedCom, Inc.
3 * Richard Retanubun <RichardRetanubun@RuggedCom.com>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
07f3d789 6 */
7
8/*
e04350d2
SR
9 * NOTE:
10 * when CONFIG_SYS_64BIT_LBA is not defined, lbaint_t is 32 bits; this
11 * limits the maximum size of addressable storage to < 2 Terra Bytes
07f3d789 12 */
8faefadb 13#include <asm/unaligned.h>
07f3d789 14#include <common.h>
15#include <command.h>
02e43537 16#include <fdtdec.h>
07f3d789 17#include <ide.h>
e48f3741 18#include <inttypes.h>
07f3d789 19#include <malloc.h>
cf92e05c 20#include <memalign.h>
fae2bf22 21#include <part_efi.h>
02e43537 22#include <linux/compiler.h>
6eecc030 23#include <linux/ctype.h>
07f3d789 24
40684ddb
ŁM
25DECLARE_GLOBAL_DATA_PTR;
26
2c1af9dc 27#ifdef HAVE_BLOCK_DEVICE
07f3d789 28/**
29 * efi_crc32() - EFI version of crc32 function
30 * @buf: buffer to calculate crc32 of
31 * @len - length of buf
32 *
33 * Description: Returns EFI-style CRC32 value for @buf
34 */
fae2bf22 35static inline u32 efi_crc32(const void *buf, u32 len)
07f3d789 36{
37 return crc32(0, buf, len);
38}
39
40/*
41 * Private function prototypes
42 */
43
44static int pmbr_part_valid(struct partition *part);
45static int is_pmbr_valid(legacy_mbr * mbr);
4101f687 46static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
e04350d2 47 gpt_header *pgpt_head, gpt_entry **pgpt_pte);
4101f687
SG
48static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
49 gpt_header *pgpt_head);
07f3d789 50static int is_pte_valid(gpt_entry * pte);
51
6eecc030
LW
52static char *print_efiname(gpt_entry *pte)
53{
54 static char name[PARTNAME_SZ + 1];
55 int i;
56 for (i = 0; i < PARTNAME_SZ; i++) {
57 u8 c;
58 c = pte->partition_name[i] & 0xff;
59 c = (c && !isprint(c)) ? '.' : c;
60 name[i] = c;
61 }
62 name[PARTNAME_SZ] = 0;
63 return name;
64}
65
b4414f4a
SW
66static efi_guid_t system_guid = PARTITION_SYSTEM_GUID;
67
68static inline int is_bootable(gpt_entry *p)
69{
70 return p->attributes.fields.legacy_bios_bootable ||
71 !memcmp(&(p->partition_type_guid), &system_guid,
72 sizeof(efi_guid_t));
73}
74
e1f6b0a0
SR
75static int validate_gpt_header(gpt_header *gpt_h, lbaint_t lba,
76 lbaint_t lastlba)
77{
78 uint32_t crc32_backup = 0;
79 uint32_t calc_crc32;
80
81 /* Check the GPT header signature */
82 if (le64_to_cpu(gpt_h->signature) != GPT_HEADER_SIGNATURE) {
83 printf("%s signature is wrong: 0x%llX != 0x%llX\n",
84 "GUID Partition Table Header",
85 le64_to_cpu(gpt_h->signature),
86 GPT_HEADER_SIGNATURE);
87 return -1;
88 }
89
90 /* Check the GUID Partition Table CRC */
91 memcpy(&crc32_backup, &gpt_h->header_crc32, sizeof(crc32_backup));
92 memset(&gpt_h->header_crc32, 0, sizeof(gpt_h->header_crc32));
93
94 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
95 le32_to_cpu(gpt_h->header_size));
96
97 memcpy(&gpt_h->header_crc32, &crc32_backup, sizeof(crc32_backup));
98
99 if (calc_crc32 != le32_to_cpu(crc32_backup)) {
100 printf("%s CRC is wrong: 0x%x != 0x%x\n",
101 "GUID Partition Table Header",
102 le32_to_cpu(crc32_backup), calc_crc32);
103 return -1;
104 }
105
106 /*
107 * Check that the my_lba entry points to the LBA that contains the GPT
108 */
109 if (le64_to_cpu(gpt_h->my_lba) != lba) {
110 printf("GPT: my_lba incorrect: %llX != " LBAF "\n",
111 le64_to_cpu(gpt_h->my_lba),
112 lba);
113 return -1;
114 }
115
116 /*
117 * Check that the first_usable_lba and that the last_usable_lba are
118 * within the disk.
119 */
120 if (le64_to_cpu(gpt_h->first_usable_lba) > lastlba) {
121 printf("GPT: first_usable_lba incorrect: %llX > " LBAF "\n",
122 le64_to_cpu(gpt_h->first_usable_lba), lastlba);
123 return -1;
124 }
125 if (le64_to_cpu(gpt_h->last_usable_lba) > lastlba) {
126 printf("GPT: last_usable_lba incorrect: %llX > " LBAF "\n",
127 le64_to_cpu(gpt_h->last_usable_lba), lastlba);
128 return -1;
129 }
130
131 debug("GPT: first_usable_lba: %llX last_usable_lba: %llX last lba: "
132 LBAF "\n", le64_to_cpu(gpt_h->first_usable_lba),
133 le64_to_cpu(gpt_h->last_usable_lba), lastlba);
134
135 return 0;
136}
137
138static int validate_gpt_entries(gpt_header *gpt_h, gpt_entry *gpt_e)
139{
140 uint32_t calc_crc32;
141
142 /* Check the GUID Partition Table Entry Array CRC */
143 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
144 le32_to_cpu(gpt_h->num_partition_entries) *
145 le32_to_cpu(gpt_h->sizeof_partition_entry));
146
147 if (calc_crc32 != le32_to_cpu(gpt_h->partition_entry_array_crc32)) {
148 printf("%s: 0x%x != 0x%x\n",
149 "GUID Partition Table Entry Array CRC is wrong",
150 le32_to_cpu(gpt_h->partition_entry_array_crc32),
151 calc_crc32);
152 return -1;
153 }
154
155 return 0;
156}
157
158static void prepare_backup_gpt_header(gpt_header *gpt_h)
159{
160 uint32_t calc_crc32;
161 uint64_t val;
162
163 /* recalculate the values for the Backup GPT Header */
164 val = le64_to_cpu(gpt_h->my_lba);
165 gpt_h->my_lba = gpt_h->alternate_lba;
166 gpt_h->alternate_lba = cpu_to_le64(val);
0ff7e585
SR
167 gpt_h->partition_entry_lba =
168 cpu_to_le64(le64_to_cpu(gpt_h->last_usable_lba) + 1);
e1f6b0a0
SR
169 gpt_h->header_crc32 = 0;
170
171 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
172 le32_to_cpu(gpt_h->header_size));
173 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
174}
175
bd42a942 176#if CONFIG_IS_ENABLED(EFI_PARTITION)
07f3d789 177/*
178 * Public Functions (include/part.h)
179 */
180
73d6d18b
AC
181/*
182 * UUID is displayed as 32 hexadecimal digits, in 5 groups,
183 * separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters
184 */
185int get_disk_guid(struct blk_desc * dev_desc, char *guid)
186{
187 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
188 gpt_entry *gpt_pte = NULL;
189 unsigned char *guid_bin;
190
191 /* This function validates AND fills in the GPT header and PTE */
192 if (is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA,
193 gpt_head, &gpt_pte) != 1) {
194 printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
195 if (is_gpt_valid(dev_desc, dev_desc->lba - 1,
196 gpt_head, &gpt_pte) != 1) {
197 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
198 __func__);
199 return -EINVAL;
200 } else {
201 printf("%s: *** Using Backup GPT ***\n",
202 __func__);
203 }
204 }
205
206 guid_bin = gpt_head->disk_guid.b;
207 uuid_bin_to_str(guid_bin, guid, UUID_STR_FORMAT_GUID);
208
209 return 0;
210}
211
084bf4c2 212void part_print_efi(struct blk_desc *dev_desc)
07f3d789 213{
ae1768a7 214 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
deb5ca80 215 gpt_entry *gpt_pte = NULL;
07f3d789 216 int i = 0;
db9b6200 217 char uuid[UUID_STR_LEN + 1];
a96a0e61 218 unsigned char *uuid_bin;
07f3d789 219
07f3d789 220 /* This function validates AND fills in the GPT header and PTE */
221 if (is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA,
4715a811 222 gpt_head, &gpt_pte) != 1) {
df70b1c2 223 printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
ae95fad5
SR
224 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
225 gpt_head, &gpt_pte) != 1) {
226 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
227 __func__);
228 return;
229 } else {
230 printf("%s: *** Using Backup GPT ***\n",
231 __func__);
232 }
07f3d789 233 }
234
deb5ca80 235 debug("%s: gpt-entry at %p\n", __func__, gpt_pte);
07f3d789 236
788a8c1f 237 printf("Part\tStart LBA\tEnd LBA\t\tName\n");
13bf2f55 238 printf("\tAttributes\n");
d718ded0
PM
239 printf("\tType GUID\n");
240 printf("\tPartition GUID\n");
f07cd2c4 241
fae2bf22 242 for (i = 0; i < le32_to_cpu(gpt_head->num_partition_entries); i++) {
38a3021e
SW
243 /* Stop at the first non valid PTE */
244 if (!is_pte_valid(&gpt_pte[i]))
245 break;
246
788a8c1f 247 printf("%3d\t0x%08llx\t0x%08llx\t\"%s\"\n", (i + 1),
fae2bf22
CHP
248 le64_to_cpu(gpt_pte[i].starting_lba),
249 le64_to_cpu(gpt_pte[i].ending_lba),
788a8c1f 250 print_efiname(&gpt_pte[i]));
13bf2f55 251 printf("\tattrs:\t0x%016llx\n", gpt_pte[i].attributes.raw);
a96a0e61 252 uuid_bin = (unsigned char *)gpt_pte[i].partition_type_guid.b;
d718ded0 253 uuid_bin_to_str(uuid_bin, uuid, UUID_STR_FORMAT_GUID);
f07cd2c4 254 printf("\ttype:\t%s\n", uuid);
bcb41dca
PD
255#ifdef CONFIG_PARTITION_TYPE_GUID
256 if (!uuid_guid_get_str(uuid_bin, uuid))
257 printf("\ttype:\t%s\n", uuid);
258#endif
a96a0e61 259 uuid_bin = (unsigned char *)gpt_pte[i].unique_partition_guid.b;
d718ded0
PM
260 uuid_bin_to_str(uuid_bin, uuid, UUID_STR_FORMAT_GUID);
261 printf("\tguid:\t%s\n", uuid);
07f3d789 262 }
263
264 /* Remember to free pte */
deb5ca80 265 free(gpt_pte);
07f3d789 266 return;
267}
268
3e8bd469
SG
269int part_get_info_efi(struct blk_desc *dev_desc, int part,
270 disk_partition_t *info)
07f3d789 271{
ae1768a7 272 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
deb5ca80 273 gpt_entry *gpt_pte = NULL;
07f3d789 274
275 /* "part" argument must be at least 1 */
4708a07c 276 if (part < 1) {
df70b1c2 277 printf("%s: Invalid Argument(s)\n", __func__);
07f3d789 278 return -1;
279 }
280
281 /* This function validates AND fills in the GPT header and PTE */
282 if (is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA,
4715a811 283 gpt_head, &gpt_pte) != 1) {
df70b1c2 284 printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
ae95fad5
SR
285 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
286 gpt_head, &gpt_pte) != 1) {
287 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
288 __func__);
289 return -1;
290 } else {
291 printf("%s: *** Using Backup GPT ***\n",
292 __func__);
293 }
07f3d789 294 }
295
fae2bf22 296 if (part > le32_to_cpu(gpt_head->num_partition_entries) ||
c04d68c6 297 !is_pte_valid(&gpt_pte[part - 1])) {
6d2ee5a3 298 debug("%s: *** ERROR: Invalid partition number %d ***\n",
c04d68c6 299 __func__, part);
6d2ee5a3 300 free(gpt_pte);
c04d68c6
SW
301 return -1;
302 }
303
e04350d2
SR
304 /* The 'lbaint_t' casting may limit the maximum disk size to 2 TB */
305 info->start = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].starting_lba);
50970839 306 /* The ending LBA is inclusive, to calculate size, add 1 to it */
e04350d2 307 info->size = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].ending_lba) + 1
50970839 308 - info->start;
ae1768a7 309 info->blksz = dev_desc->blksz;
07f3d789 310
6eecc030 311 sprintf((char *)info->name, "%s",
deb5ca80 312 print_efiname(&gpt_pte[part - 1]));
192bc694 313 strcpy((char *)info->type, "U-Boot");
b4414f4a 314 info->bootable = is_bootable(&gpt_pte[part - 1]);
b331cd62 315#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
d718ded0
PM
316 uuid_bin_to_str(gpt_pte[part - 1].unique_partition_guid.b, info->uuid,
317 UUID_STR_FORMAT_GUID);
894bfbbf 318#endif
7561b258
PD
319#ifdef CONFIG_PARTITION_TYPE_GUID
320 uuid_bin_to_str(gpt_pte[part - 1].partition_type_guid.b,
321 info->type_guid, UUID_STR_FORMAT_GUID);
322#endif
07f3d789 323
60bf9416 324 debug("%s: start 0x" LBAF ", size 0x" LBAF ", name %s\n", __func__,
04735e9c 325 info->start, info->size, info->name);
07f3d789 326
327 /* Remember to free pte */
deb5ca80 328 free(gpt_pte);
07f3d789 329 return 0;
330}
331
084bf4c2 332static int part_test_efi(struct blk_desc *dev_desc)
07f3d789 333{
ae1768a7 334 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, legacymbr, 1, dev_desc->blksz);
07f3d789 335
336 /* Read legacy MBR from block 0 and validate it */
2a981dc2 337 if ((blk_dread(dev_desc, 0, 1, (ulong *)legacymbr) != 1)
f75dd584 338 || (is_pmbr_valid(legacymbr) != 1)) {
07f3d789 339 return -1;
340 }
341 return 0;
342}
343
40684ddb
ŁM
344/**
345 * set_protective_mbr(): Set the EFI protective MBR
346 * @param dev_desc - block device descriptor
347 *
348 * @return - zero on success, otherwise error
349 */
4101f687 350static int set_protective_mbr(struct blk_desc *dev_desc)
40684ddb 351{
40684ddb 352 /* Setup the Protective MBR */
61fcc7d2
HP
353 ALLOC_CACHE_ALIGN_BUFFER(legacy_mbr, p_mbr, 1);
354 memset(p_mbr, 0, sizeof(*p_mbr));
355
40684ddb
ŁM
356 if (p_mbr == NULL) {
357 printf("%s: calloc failed!\n", __func__);
358 return -1;
359 }
e163a931
VT
360
361 /* Read MBR to backup boot code if it exists */
362 if (blk_dread(dev_desc, 0, 1, p_mbr) != 1) {
363 error("** Can't read from device %d **\n", dev_desc->devnum);
364 return -1;
365 }
366
40684ddb
ŁM
367 /* Append signature */
368 p_mbr->signature = MSDOS_MBR_SIGNATURE;
369 p_mbr->partition_record[0].sys_ind = EFI_PMBR_OSTYPE_EFI_GPT;
370 p_mbr->partition_record[0].start_sect = 1;
b349abbf 371 p_mbr->partition_record[0].nr_sects = (u32) dev_desc->lba - 1;
40684ddb
ŁM
372
373 /* Write MBR sector to the MMC device */
2a981dc2 374 if (blk_dwrite(dev_desc, 0, 1, p_mbr) != 1) {
40684ddb 375 printf("** Can't write to device %d **\n",
bcce53d0 376 dev_desc->devnum);
40684ddb
ŁM
377 return -1;
378 }
379
40684ddb
ŁM
380 return 0;
381}
382
4101f687 383int write_gpt_table(struct blk_desc *dev_desc,
40684ddb
ŁM
384 gpt_header *gpt_h, gpt_entry *gpt_e)
385{
ae1768a7
EE
386 const int pte_blk_cnt = BLOCK_CNT((gpt_h->num_partition_entries
387 * sizeof(gpt_entry)), dev_desc);
40684ddb 388 u32 calc_crc32;
40684ddb
ŁM
389
390 debug("max lba: %x\n", (u32) dev_desc->lba);
391 /* Setup the Protective MBR */
392 if (set_protective_mbr(dev_desc) < 0)
393 goto err;
394
395 /* Generate CRC for the Primary GPT Header */
396 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
397 le32_to_cpu(gpt_h->num_partition_entries) *
398 le32_to_cpu(gpt_h->sizeof_partition_entry));
399 gpt_h->partition_entry_array_crc32 = cpu_to_le32(calc_crc32);
400
401 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
402 le32_to_cpu(gpt_h->header_size));
403 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
404
405 /* Write the First GPT to the block right after the Legacy MBR */
2a981dc2 406 if (blk_dwrite(dev_desc, 1, 1, gpt_h) != 1)
40684ddb
ŁM
407 goto err;
408
02e43537
PT
409 if (blk_dwrite(dev_desc, le64_to_cpu(gpt_h->partition_entry_lba),
410 pte_blk_cnt, gpt_e) != pte_blk_cnt)
40684ddb
ŁM
411 goto err;
412
e1f6b0a0 413 prepare_backup_gpt_header(gpt_h);
40684ddb 414
2a981dc2
SG
415 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->last_usable_lba)
416 + 1, pte_blk_cnt, gpt_e) != pte_blk_cnt)
40684ddb
ŁM
417 goto err;
418
2a981dc2
SG
419 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->my_lba), 1,
420 gpt_h) != 1)
40684ddb
ŁM
421 goto err;
422
423 debug("GPT successfully written to block device!\n");
424 return 0;
425
426 err:
bcce53d0 427 printf("** Can't write to device %d **\n", dev_desc->devnum);
40684ddb
ŁM
428 return -1;
429}
430
47d7ee47
MR
431int gpt_fill_pte(struct blk_desc *dev_desc,
432 gpt_header *gpt_h, gpt_entry *gpt_e,
433 disk_partition_t *partitions, int parts)
40684ddb 434{
e04350d2 435 lbaint_t offset = (lbaint_t)le64_to_cpu(gpt_h->first_usable_lba);
e04350d2
SR
436 lbaint_t last_usable_lba = (lbaint_t)
437 le64_to_cpu(gpt_h->last_usable_lba);
40684ddb 438 int i, k;
67cd4a63 439 size_t efiname_len, dosname_len;
b331cd62 440#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
40684ddb 441 char *str_uuid;
a96a0e61 442 unsigned char *bin_uuid;
40684ddb 443#endif
7561b258
PD
444#ifdef CONFIG_PARTITION_TYPE_GUID
445 char *str_type_guid;
446 unsigned char *bin_type_guid;
447#endif
40684ddb
ŁM
448
449 for (i = 0; i < parts; i++) {
450 /* partition starting lba */
5276e8b6
MR
451 lbaint_t start = partitions[i].start;
452 lbaint_t size = partitions[i].size;
453
40684ddb
ŁM
454 if (start && (start < offset)) {
455 printf("Partition overlap\n");
456 return -1;
457 }
5276e8b6 458
40684ddb
ŁM
459 if (start) {
460 gpt_e[i].starting_lba = cpu_to_le64(start);
5276e8b6 461 offset = start + size;
40684ddb
ŁM
462 } else {
463 gpt_e[i].starting_lba = cpu_to_le64(offset);
5276e8b6 464 offset += size;
40684ddb 465 }
a5653867 466 if (offset > (last_usable_lba + 1)) {
40684ddb
ŁM
467 printf("Partitions layout exceds disk size\n");
468 return -1;
469 }
470 /* partition ending lba */
5276e8b6 471 if ((i == parts - 1) && (size == 0))
40684ddb
ŁM
472 /* extend the last partition to maximuim */
473 gpt_e[i].ending_lba = gpt_h->last_usable_lba;
474 else
475 gpt_e[i].ending_lba = cpu_to_le64(offset - 1);
476
7561b258
PD
477#ifdef CONFIG_PARTITION_TYPE_GUID
478 str_type_guid = partitions[i].type_guid;
479 bin_type_guid = gpt_e[i].partition_type_guid.b;
480 if (strlen(str_type_guid)) {
481 if (uuid_str_to_bin(str_type_guid, bin_type_guid,
482 UUID_STR_FORMAT_GUID)) {
483 printf("Partition no. %d: invalid type guid: %s\n",
484 i, str_type_guid);
485 return -1;
486 }
487 } else {
488 /* default partition type GUID */
489 memcpy(bin_type_guid,
490 &PARTITION_BASIC_DATA_GUID, 16);
491 }
492#else
40684ddb
ŁM
493 /* partition type GUID */
494 memcpy(gpt_e[i].partition_type_guid.b,
495 &PARTITION_BASIC_DATA_GUID, 16);
7561b258 496#endif
40684ddb 497
b331cd62 498#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
40684ddb 499 str_uuid = partitions[i].uuid;
a96a0e61
PM
500 bin_uuid = gpt_e[i].unique_partition_guid.b;
501
9da52f8f 502 if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_GUID)) {
40684ddb
ŁM
503 printf("Partition no. %d: invalid guid: %s\n",
504 i, str_uuid);
505 return -1;
506 }
507#endif
508
509 /* partition attributes */
510 memset(&gpt_e[i].attributes, 0,
511 sizeof(gpt_entry_attributes));
512
cfdaf4ca
PD
513 if (partitions[i].bootable)
514 gpt_e[i].attributes.fields.legacy_bios_bootable = 1;
515
40684ddb 516 /* partition name */
67cd4a63 517 efiname_len = sizeof(gpt_e[i].partition_name)
40684ddb 518 / sizeof(efi_char16_t);
67cd4a63
MV
519 dosname_len = sizeof(partitions[i].name);
520
521 memset(gpt_e[i].partition_name, 0,
522 sizeof(gpt_e[i].partition_name));
523
524 for (k = 0; k < min(dosname_len, efiname_len); k++)
40684ddb
ŁM
525 gpt_e[i].partition_name[k] =
526 (efi_char16_t)(partitions[i].name[k]);
527
e04350d2
SR
528 debug("%s: name: %s offset[%d]: 0x" LBAF
529 " size[%d]: 0x" LBAF "\n",
40684ddb 530 __func__, partitions[i].name, i,
5276e8b6 531 offset, i, size);
40684ddb
ŁM
532 }
533
534 return 0;
535}
536
02e43537
PT
537static uint32_t partition_entries_offset(struct blk_desc *dev_desc)
538{
539 uint32_t offset_blks = 2;
89d33a2c 540 uint32_t __maybe_unused offset_bytes;
02e43537
PT
541 int __maybe_unused config_offset;
542
543#if defined(CONFIG_EFI_PARTITION_ENTRIES_OFF)
544 /*
545 * Some architectures require their SPL loader at a fixed
546 * address within the first 16KB of the disk. To avoid an
547 * overlap with the partition entries of the EFI partition
548 * table, the first safe offset (in bytes, from the start of
549 * the disk) for the entries can be set in
550 * CONFIG_EFI_PARTITION_ENTRIES_OFF.
551 */
89d33a2c 552 offset_bytes =
02e43537 553 PAD_TO_BLOCKSIZE(CONFIG_EFI_PARTITION_ENTRIES_OFF, dev_desc);
89d33a2c 554 offset_blks = offset_bytes / dev_desc->blksz;
02e43537
PT
555#endif
556
557#if defined(CONFIG_OF_CONTROL)
558 /*
559 * Allow the offset of the first partition entires (in bytes
560 * from the start of the device) to be specified as a property
561 * of the device tree '/config' node.
562 */
563 config_offset = fdtdec_get_config_int(gd->fdt_blob,
564 "u-boot,efi-partition-entries-offset",
565 -EINVAL);
89d33a2c
MR
566 if (config_offset != -EINVAL) {
567 offset_bytes = PAD_TO_BLOCKSIZE(config_offset, dev_desc);
568 offset_blks = offset_bytes / dev_desc->blksz;
569 }
02e43537
PT
570#endif
571
572 debug("efi: partition entries offset (in blocks): %d\n", offset_blks);
573
574 /*
575 * The earliest LBA this can be at is LBA#2 (i.e. right behind
576 * the (protective) MBR and the GPT header.
577 */
578 if (offset_blks < 2)
579 offset_blks = 2;
580
581 return offset_blks;
582}
583
4101f687 584int gpt_fill_header(struct blk_desc *dev_desc, gpt_header *gpt_h,
40684ddb
ŁM
585 char *str_guid, int parts_count)
586{
587 gpt_h->signature = cpu_to_le64(GPT_HEADER_SIGNATURE);
588 gpt_h->revision = cpu_to_le32(GPT_HEADER_REVISION_V1);
589 gpt_h->header_size = cpu_to_le32(sizeof(gpt_header));
590 gpt_h->my_lba = cpu_to_le64(1);
591 gpt_h->alternate_lba = cpu_to_le64(dev_desc->lba - 1);
40684ddb 592 gpt_h->last_usable_lba = cpu_to_le64(dev_desc->lba - 34);
02e43537
PT
593 gpt_h->partition_entry_lba =
594 cpu_to_le64(partition_entries_offset(dev_desc));
595 gpt_h->first_usable_lba =
596 cpu_to_le64(le64_to_cpu(gpt_h->partition_entry_lba) + 32);
40684ddb
ŁM
597 gpt_h->num_partition_entries = cpu_to_le32(GPT_ENTRY_NUMBERS);
598 gpt_h->sizeof_partition_entry = cpu_to_le32(sizeof(gpt_entry));
599 gpt_h->header_crc32 = 0;
600 gpt_h->partition_entry_array_crc32 = 0;
601
d718ded0 602 if (uuid_str_to_bin(str_guid, gpt_h->disk_guid.b, UUID_STR_FORMAT_GUID))
40684ddb
ŁM
603 return -1;
604
605 return 0;
606}
607
4101f687 608int gpt_restore(struct blk_desc *dev_desc, char *str_disk_guid,
40684ddb
ŁM
609 disk_partition_t *partitions, int parts_count)
610{
611 int ret;
612
ae1768a7
EE
613 gpt_header *gpt_h = calloc(1, PAD_TO_BLOCKSIZE(sizeof(gpt_header),
614 dev_desc));
615 gpt_entry *gpt_e;
616
40684ddb
ŁM
617 if (gpt_h == NULL) {
618 printf("%s: calloc failed!\n", __func__);
619 return -1;
620 }
621
ae1768a7
EE
622 gpt_e = calloc(1, PAD_TO_BLOCKSIZE(GPT_ENTRY_NUMBERS
623 * sizeof(gpt_entry),
624 dev_desc));
40684ddb
ŁM
625 if (gpt_e == NULL) {
626 printf("%s: calloc failed!\n", __func__);
627 free(gpt_h);
628 return -1;
629 }
630
631 /* Generate Primary GPT header (LBA1) */
632 ret = gpt_fill_header(dev_desc, gpt_h, str_disk_guid, parts_count);
633 if (ret)
634 goto err;
635
636 /* Generate partition entries */
47d7ee47 637 ret = gpt_fill_pte(dev_desc, gpt_h, gpt_e, partitions, parts_count);
40684ddb
ŁM
638 if (ret)
639 goto err;
640
641 /* Write GPT partition table */
642 ret = write_gpt_table(dev_desc, gpt_h, gpt_e);
643
644err:
645 free(gpt_e);
646 free(gpt_h);
647 return ret;
648}
0ff7e585 649
cef68bf9
LM
650static void gpt_convert_efi_name_to_char(char *s, efi_char16_t *es, int n)
651{
652 char *ess = (char *)es;
653 int i, j;
654
655 memset(s, '\0', n);
656
657 for (i = 0, j = 0; j < n; i += 2, j++) {
658 s[j] = ess[i];
659 if (!ess[i])
660 return;
661 }
662}
663
4101f687 664int gpt_verify_headers(struct blk_desc *dev_desc, gpt_header *gpt_head,
cef68bf9
LM
665 gpt_entry **gpt_pte)
666{
667 /*
668 * This function validates AND
669 * fills in the GPT header and PTE
670 */
671 if (is_gpt_valid(dev_desc,
672 GPT_PRIMARY_PARTITION_TABLE_LBA,
673 gpt_head, gpt_pte) != 1) {
674 printf("%s: *** ERROR: Invalid GPT ***\n",
675 __func__);
676 return -1;
677 }
678 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
679 gpt_head, gpt_pte) != 1) {
680 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
681 __func__);
682 return -1;
683 }
684
685 return 0;
686}
687
4101f687 688int gpt_verify_partitions(struct blk_desc *dev_desc,
cef68bf9
LM
689 disk_partition_t *partitions, int parts,
690 gpt_header *gpt_head, gpt_entry **gpt_pte)
691{
692 char efi_str[PARTNAME_SZ + 1];
693 u64 gpt_part_size;
694 gpt_entry *gpt_e;
695 int ret, i;
696
697 ret = gpt_verify_headers(dev_desc, gpt_head, gpt_pte);
698 if (ret)
699 return ret;
700
701 gpt_e = *gpt_pte;
702
703 for (i = 0; i < parts; i++) {
704 if (i == gpt_head->num_partition_entries) {
705 error("More partitions than allowed!\n");
706 return -1;
707 }
708
709 /* Check if GPT and ENV partition names match */
710 gpt_convert_efi_name_to_char(efi_str, gpt_e[i].partition_name,
711 PARTNAME_SZ + 1);
712
713 debug("%s: part: %2d name - GPT: %16s, ENV: %16s ",
714 __func__, i, efi_str, partitions[i].name);
715
716 if (strncmp(efi_str, (char *)partitions[i].name,
717 sizeof(partitions->name))) {
718 error("Partition name: %s does not match %s!\n",
719 efi_str, (char *)partitions[i].name);
720 return -1;
721 }
722
723 /* Check if GPT and ENV sizes match */
724 gpt_part_size = le64_to_cpu(gpt_e[i].ending_lba) -
725 le64_to_cpu(gpt_e[i].starting_lba) + 1;
726 debug("size(LBA) - GPT: %8llu, ENV: %8llu ",
f8d6165d
SG
727 (unsigned long long)gpt_part_size,
728 (unsigned long long)partitions[i].size);
cef68bf9
LM
729
730 if (le64_to_cpu(gpt_part_size) != partitions[i].size) {
c2fdd345
KY
731 /* We do not check the extend partition size */
732 if ((i == parts - 1) && (partitions[i].size == 0))
733 continue;
734
cef68bf9 735 error("Partition %s size: %llu does not match %llu!\n",
f8d6165d
SG
736 efi_str, (unsigned long long)gpt_part_size,
737 (unsigned long long)partitions[i].size);
cef68bf9
LM
738 return -1;
739 }
740
741 /*
742 * Start address is optional - check only if provided
743 * in '$partition' variable
744 */
745 if (!partitions[i].start) {
746 debug("\n");
747 continue;
748 }
749
750 /* Check if GPT and ENV start LBAs match */
751 debug("start LBA - GPT: %8llu, ENV: %8llu\n",
752 le64_to_cpu(gpt_e[i].starting_lba),
f8d6165d 753 (unsigned long long)partitions[i].start);
cef68bf9
LM
754
755 if (le64_to_cpu(gpt_e[i].starting_lba) != partitions[i].start) {
756 error("Partition %s start: %llu does not match %llu!\n",
757 efi_str, le64_to_cpu(gpt_e[i].starting_lba),
f8d6165d 758 (unsigned long long)partitions[i].start);
cef68bf9
LM
759 return -1;
760 }
761 }
762
763 return 0;
764}
765
4101f687 766int is_valid_gpt_buf(struct blk_desc *dev_desc, void *buf)
0ff7e585
SR
767{
768 gpt_header *gpt_h;
769 gpt_entry *gpt_e;
770
771 /* determine start of GPT Header in the buffer */
772 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
773 dev_desc->blksz);
774 if (validate_gpt_header(gpt_h, GPT_PRIMARY_PARTITION_TABLE_LBA,
775 dev_desc->lba))
776 return -1;
777
778 /* determine start of GPT Entries in the buffer */
779 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
780 dev_desc->blksz);
781 if (validate_gpt_entries(gpt_h, gpt_e))
782 return -1;
783
784 return 0;
785}
786
4101f687 787int write_mbr_and_gpt_partitions(struct blk_desc *dev_desc, void *buf)
0ff7e585
SR
788{
789 gpt_header *gpt_h;
790 gpt_entry *gpt_e;
791 int gpt_e_blk_cnt;
792 lbaint_t lba;
793 int cnt;
794
795 if (is_valid_gpt_buf(dev_desc, buf))
796 return -1;
797
798 /* determine start of GPT Header in the buffer */
799 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
800 dev_desc->blksz);
801
802 /* determine start of GPT Entries in the buffer */
803 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
804 dev_desc->blksz);
805 gpt_e_blk_cnt = BLOCK_CNT((le32_to_cpu(gpt_h->num_partition_entries) *
806 le32_to_cpu(gpt_h->sizeof_partition_entry)),
807 dev_desc);
808
809 /* write MBR */
810 lba = 0; /* MBR is always at 0 */
811 cnt = 1; /* MBR (1 block) */
2a981dc2 812 if (blk_dwrite(dev_desc, lba, cnt, buf) != cnt) {
0ff7e585
SR
813 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
814 __func__, "MBR", cnt, lba);
815 return 1;
816 }
817
818 /* write Primary GPT */
819 lba = GPT_PRIMARY_PARTITION_TABLE_LBA;
820 cnt = 1; /* GPT Header (1 block) */
2a981dc2 821 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
0ff7e585
SR
822 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
823 __func__, "Primary GPT Header", cnt, lba);
824 return 1;
825 }
826
827 lba = le64_to_cpu(gpt_h->partition_entry_lba);
828 cnt = gpt_e_blk_cnt;
2a981dc2 829 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
0ff7e585
SR
830 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
831 __func__, "Primary GPT Entries", cnt, lba);
832 return 1;
833 }
834
835 prepare_backup_gpt_header(gpt_h);
836
837 /* write Backup GPT */
838 lba = le64_to_cpu(gpt_h->partition_entry_lba);
839 cnt = gpt_e_blk_cnt;
2a981dc2 840 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
0ff7e585
SR
841 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
842 __func__, "Backup GPT Entries", cnt, lba);
843 return 1;
844 }
845
846 lba = le64_to_cpu(gpt_h->my_lba);
847 cnt = 1; /* GPT Header (1 block) */
2a981dc2 848 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
0ff7e585
SR
849 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
850 __func__, "Backup GPT Header", cnt, lba);
851 return 1;
852 }
853
854 return 0;
855}
40684ddb
ŁM
856#endif
857
07f3d789 858/*
859 * Private functions
860 */
861/*
862 * pmbr_part_valid(): Check for EFI partition signature
863 *
864 * Returns: 1 if EFI GPT partition type is found.
865 */
866static int pmbr_part_valid(struct partition *part)
867{
868 if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
8faefadb 869 get_unaligned_le32(&part->start_sect) == 1UL) {
07f3d789 870 return 1;
871 }
872
873 return 0;
874}
875
876/*
877 * is_pmbr_valid(): test Protective MBR for validity
878 *
879 * Returns: 1 if PMBR is valid, 0 otherwise.
880 * Validity depends on two things:
881 * 1) MSDOS signature is in the last two bytes of the MBR
882 * 2) One partition of type 0xEE is found, checked by pmbr_part_valid()
883 */
884static int is_pmbr_valid(legacy_mbr * mbr)
885{
886 int i = 0;
887
fae2bf22 888 if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
07f3d789 889 return 0;
07f3d789 890
891 for (i = 0; i < 4; i++) {
892 if (pmbr_part_valid(&mbr->partition_record[i])) {
893 return 1;
894 }
895 }
896 return 0;
897}
898
899/**
900 * is_gpt_valid() - tests one GPT header and PTEs for validity
901 *
902 * lba is the logical block address of the GPT header to test
903 * gpt is a GPT header ptr, filled on return.
904 * ptes is a PTEs ptr, filled on return.
905 *
906 * Description: returns 1 if valid, 0 on error.
907 * If valid, returns pointers to PTEs.
908 */
4101f687 909static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
e04350d2 910 gpt_header *pgpt_head, gpt_entry **pgpt_pte)
07f3d789 911{
07f3d789 912 if (!dev_desc || !pgpt_head) {
df70b1c2 913 printf("%s: Invalid Argument(s)\n", __func__);
07f3d789 914 return 0;
915 }
916
917 /* Read GPT Header from device */
2a981dc2 918 if (blk_dread(dev_desc, (lbaint_t)lba, 1, pgpt_head) != 1) {
07f3d789 919 printf("*** ERROR: Can't read GPT header ***\n");
920 return 0;
921 }
922
e1f6b0a0 923 if (validate_gpt_header(pgpt_head, (lbaint_t)lba, dev_desc->lba))
07f3d789 924 return 0;
07f3d789 925
926 /* Read and allocate Partition Table Entries */
927 *pgpt_pte = alloc_read_gpt_entries(dev_desc, pgpt_head);
928 if (*pgpt_pte == NULL) {
929 printf("GPT: Failed to allocate memory for PTE\n");
930 return 0;
931 }
932
e1f6b0a0 933 if (validate_gpt_entries(pgpt_head, *pgpt_pte)) {
deb5ca80 934 free(*pgpt_pte);
07f3d789 935 return 0;
936 }
937
938 /* We're done, all's well */
939 return 1;
940}
941
942/**
943 * alloc_read_gpt_entries(): reads partition entries from disk
944 * @dev_desc
945 * @gpt - GPT header
946 *
947 * Description: Returns ptes on success, NULL on error.
948 * Allocates space for PTEs based on information found in @gpt.
949 * Notes: remember to free pte when you're done!
950 */
4101f687
SG
951static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
952 gpt_header *pgpt_head)
07f3d789 953{
ae1768a7 954 size_t count = 0, blk_cnt;
7c4213f6 955 lbaint_t blk;
07f3d789 956 gpt_entry *pte = NULL;
957
958 if (!dev_desc || !pgpt_head) {
df70b1c2 959 printf("%s: Invalid Argument(s)\n", __func__);
07f3d789 960 return NULL;
961 }
962
fae2bf22
CHP
963 count = le32_to_cpu(pgpt_head->num_partition_entries) *
964 le32_to_cpu(pgpt_head->sizeof_partition_entry);
07f3d789 965
5afb8d15 966 debug("%s: count = %u * %u = %lu\n", __func__,
fae2bf22 967 (u32) le32_to_cpu(pgpt_head->num_partition_entries),
5afb8d15
SG
968 (u32) le32_to_cpu(pgpt_head->sizeof_partition_entry),
969 (ulong)count);
07f3d789 970
971 /* Allocate memory for PTE, remember to FREE */
972 if (count != 0) {
ae1768a7
EE
973 pte = memalign(ARCH_DMA_MINALIGN,
974 PAD_TO_BLOCKSIZE(count, dev_desc));
07f3d789 975 }
976
977 if (count == 0 || pte == NULL) {
5afb8d15
SG
978 printf("%s: ERROR: Can't allocate %#lX bytes for GPT Entries\n",
979 __func__, (ulong)count);
07f3d789 980 return NULL;
981 }
982
983 /* Read GPT Entries from device */
7c4213f6 984 blk = le64_to_cpu(pgpt_head->partition_entry_lba);
ae1768a7 985 blk_cnt = BLOCK_CNT(count, dev_desc);
2a981dc2 986 if (blk_dread(dev_desc, blk, (lbaint_t)blk_cnt, pte) != blk_cnt) {
07f3d789 987 printf("*** ERROR: Can't read GPT Entries ***\n");
988 free(pte);
989 return NULL;
990 }
991 return pte;
992}
993
994/**
995 * is_pte_valid(): validates a single Partition Table Entry
996 * @gpt_entry - Pointer to a single Partition Table Entry
997 *
998 * Description: returns 1 if valid, 0 on error.
999 */
1000static int is_pte_valid(gpt_entry * pte)
1001{
1002 efi_guid_t unused_guid;
1003
1004 if (!pte) {
df70b1c2 1005 printf("%s: Invalid Argument(s)\n", __func__);
07f3d789 1006 return 0;
1007 }
1008
1009 /* Only one validation for now:
1010 * The GUID Partition Type != Unused Entry (ALL-ZERO)
1011 */
1012 memset(unused_guid.b, 0, sizeof(unused_guid.b));
1013
1014 if (memcmp(pte->partition_type_guid.b, unused_guid.b,
1015 sizeof(unused_guid.b)) == 0) {
1016
df70b1c2 1017 debug("%s: Found an unused PTE GUID at 0x%08X\n", __func__,
9936be31 1018 (unsigned int)(uintptr_t)pte);
07f3d789 1019
1020 return 0;
1021 } else {
1022 return 1;
1023 }
1024}
96e5b03c
SG
1025
1026/*
1027 * Add an 'a_' prefix so it comes before 'dos' in the linker list. We need to
1028 * check EFI first, since a DOS partition is often used as a 'protective MBR'
1029 * with EFI.
1030 */
1031U_BOOT_PART_TYPE(a_efi) = {
1032 .name = "EFI",
1033 .part_type = PART_TYPE_EFI,
87b8530f 1034 .max_entries = GPT_ENTRY_NUMBERS,
3e8bd469 1035 .get_info = part_get_info_ptr(part_get_info_efi),
084bf4c2
SG
1036 .print = part_print_ptr(part_print_efi),
1037 .test = part_test_efi,
96e5b03c 1038};
07f3d789 1039#endif