blob: 7a24e33d189f40a8785cd7d816f0449f6b83791f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
richardretanubun07f3d782008-09-26 11:13:22 -04002/*
3 * Copyright (C) 2008 RuggedCom, Inc.
4 * Richard Retanubun <RichardRetanubun@RuggedCom.com>
richardretanubun07f3d782008-09-26 11:13:22 -04005 */
6
7/*
Steve Raee04350d2014-05-26 11:52:23 -07008 * NOTE:
9 * when CONFIG_SYS_64BIT_LBA is not defined, lbaint_t is 32 bits; this
Heinrich Schuchardt643b5e72020-09-17 17:57:21 +020010 * limits the maximum size of addressable storage to < 2 tebibytes
richardretanubun07f3d782008-09-26 11:13:22 -040011 */
Simon Glasse6f6f9e2020-05-10 11:39:58 -060012#include <common.h>
13#include <blk.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060015#include <part.h>
Simon Glassba06b3c2020-05-10 11:39:52 -060016#include <uuid.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Marc Dietrich8faefad2013-03-29 07:57:10 +000018#include <asm/unaligned.h>
richardretanubun07f3d782008-09-26 11:13:22 -040019#include <command.h>
Philipp Tomsich02e43532017-03-01 21:10:39 +010020#include <fdtdec.h>
richardretanubun07f3d782008-09-26 11:13:22 -040021#include <ide.h>
22#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060023#include <memalign.h>
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +010024#include <part_efi.h>
Philipp Tomsich02e43532017-03-01 21:10:39 +010025#include <linux/compiler.h>
Lei Wen6eecc032011-09-07 18:11:19 +000026#include <linux/ctype.h>
Simon Glass3db71102019-11-14 12:57:16 -070027#include <u-boot/crc.h>
richardretanubun07f3d782008-09-26 11:13:22 -040028
Lukasz Majewski40684dd2012-12-11 11:09:46 +010029DECLARE_GLOBAL_DATA_PTR;
30
Heinrich Schuchardt44ab2d32018-06-09 17:50:18 +020031/*
32 * GUID for basic data partions.
33 */
34static const efi_guid_t partition_basic_data_guid = PARTITION_BASIC_DATA_GUID;
35
Adam Ford1811a922018-02-06 12:43:56 -060036#ifdef CONFIG_HAVE_BLOCK_DEVICE
richardretanubun07f3d782008-09-26 11:13:22 -040037/**
38 * efi_crc32() - EFI version of crc32 function
39 * @buf: buffer to calculate crc32 of
40 * @len - length of buf
41 *
42 * Description: Returns EFI-style CRC32 value for @buf
43 */
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +010044static inline u32 efi_crc32(const void *buf, u32 len)
richardretanubun07f3d782008-09-26 11:13:22 -040045{
46 return crc32(0, buf, len);
47}
48
49/*
50 * Private function prototypes
51 */
52
53static int pmbr_part_valid(struct partition *part);
54static int is_pmbr_valid(legacy_mbr * mbr);
Simon Glass4101f682016-02-29 15:25:34 -070055static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
Steve Raee04350d2014-05-26 11:52:23 -070056 gpt_header *pgpt_head, gpt_entry **pgpt_pte);
Simon Glass4101f682016-02-29 15:25:34 -070057static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
58 gpt_header *pgpt_head);
richardretanubun07f3d782008-09-26 11:13:22 -040059static int is_pte_valid(gpt_entry * pte);
Urja Rannikko20c568c2019-04-11 20:27:50 +000060static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head,
61 gpt_entry **pgpt_pte);
richardretanubun07f3d782008-09-26 11:13:22 -040062
Lei Wen6eecc032011-09-07 18:11:19 +000063static char *print_efiname(gpt_entry *pte)
64{
65 static char name[PARTNAME_SZ + 1];
66 int i;
67 for (i = 0; i < PARTNAME_SZ; i++) {
68 u8 c;
69 c = pte->partition_name[i] & 0xff;
70 c = (c && !isprint(c)) ? '.' : c;
71 name[i] = c;
72 }
73 name[PARTNAME_SZ] = 0;
74 return name;
75}
76
Heinrich Schuchardt7de24b22019-01-12 11:25:25 +010077static const efi_guid_t system_guid = PARTITION_SYSTEM_GUID;
Stephen Warrenb4414f42012-10-08 08:14:37 +000078
Heinrich Schuchardt25801ac2020-03-19 13:49:34 +010079static int get_bootable(gpt_entry *p)
Stephen Warrenb4414f42012-10-08 08:14:37 +000080{
Heinrich Schuchardt25801ac2020-03-19 13:49:34 +010081 int ret = 0;
82
83 if (!memcmp(&p->partition_type_guid, &system_guid, sizeof(efi_guid_t)))
84 ret |= PART_EFI_SYSTEM_PARTITION;
85 if (p->attributes.fields.legacy_bios_bootable)
86 ret |= PART_BOOTABLE;
87 return ret;
Stephen Warrenb4414f42012-10-08 08:14:37 +000088}
89
Steve Raee1f6b0a2014-12-18 12:13:42 +010090static int validate_gpt_header(gpt_header *gpt_h, lbaint_t lba,
91 lbaint_t lastlba)
92{
93 uint32_t crc32_backup = 0;
94 uint32_t calc_crc32;
95
96 /* Check the GPT header signature */
Simon Glass67b90522018-10-01 12:22:35 -060097 if (le64_to_cpu(gpt_h->signature) != GPT_HEADER_SIGNATURE_UBOOT) {
Steve Raee1f6b0a2014-12-18 12:13:42 +010098 printf("%s signature is wrong: 0x%llX != 0x%llX\n",
99 "GUID Partition Table Header",
100 le64_to_cpu(gpt_h->signature),
Simon Glass67b90522018-10-01 12:22:35 -0600101 GPT_HEADER_SIGNATURE_UBOOT);
Steve Raee1f6b0a2014-12-18 12:13:42 +0100102 return -1;
103 }
104
105 /* Check the GUID Partition Table CRC */
106 memcpy(&crc32_backup, &gpt_h->header_crc32, sizeof(crc32_backup));
107 memset(&gpt_h->header_crc32, 0, sizeof(gpt_h->header_crc32));
108
109 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
110 le32_to_cpu(gpt_h->header_size));
111
112 memcpy(&gpt_h->header_crc32, &crc32_backup, sizeof(crc32_backup));
113
114 if (calc_crc32 != le32_to_cpu(crc32_backup)) {
115 printf("%s CRC is wrong: 0x%x != 0x%x\n",
116 "GUID Partition Table Header",
117 le32_to_cpu(crc32_backup), calc_crc32);
118 return -1;
119 }
120
121 /*
122 * Check that the my_lba entry points to the LBA that contains the GPT
123 */
124 if (le64_to_cpu(gpt_h->my_lba) != lba) {
125 printf("GPT: my_lba incorrect: %llX != " LBAF "\n",
126 le64_to_cpu(gpt_h->my_lba),
127 lba);
128 return -1;
129 }
130
131 /*
132 * Check that the first_usable_lba and that the last_usable_lba are
133 * within the disk.
134 */
135 if (le64_to_cpu(gpt_h->first_usable_lba) > lastlba) {
136 printf("GPT: first_usable_lba incorrect: %llX > " LBAF "\n",
137 le64_to_cpu(gpt_h->first_usable_lba), lastlba);
138 return -1;
139 }
140 if (le64_to_cpu(gpt_h->last_usable_lba) > lastlba) {
141 printf("GPT: last_usable_lba incorrect: %llX > " LBAF "\n",
142 le64_to_cpu(gpt_h->last_usable_lba), lastlba);
143 return -1;
144 }
145
146 debug("GPT: first_usable_lba: %llX last_usable_lba: %llX last lba: "
147 LBAF "\n", le64_to_cpu(gpt_h->first_usable_lba),
148 le64_to_cpu(gpt_h->last_usable_lba), lastlba);
149
150 return 0;
151}
152
153static int validate_gpt_entries(gpt_header *gpt_h, gpt_entry *gpt_e)
154{
155 uint32_t calc_crc32;
156
157 /* Check the GUID Partition Table Entry Array CRC */
158 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
159 le32_to_cpu(gpt_h->num_partition_entries) *
160 le32_to_cpu(gpt_h->sizeof_partition_entry));
161
162 if (calc_crc32 != le32_to_cpu(gpt_h->partition_entry_array_crc32)) {
163 printf("%s: 0x%x != 0x%x\n",
164 "GUID Partition Table Entry Array CRC is wrong",
165 le32_to_cpu(gpt_h->partition_entry_array_crc32),
166 calc_crc32);
167 return -1;
168 }
169
170 return 0;
171}
172
173static void prepare_backup_gpt_header(gpt_header *gpt_h)
174{
175 uint32_t calc_crc32;
176 uint64_t val;
177
178 /* recalculate the values for the Backup GPT Header */
179 val = le64_to_cpu(gpt_h->my_lba);
180 gpt_h->my_lba = gpt_h->alternate_lba;
181 gpt_h->alternate_lba = cpu_to_le64(val);
Steve Rae0ff7e582014-12-12 15:51:54 -0800182 gpt_h->partition_entry_lba =
183 cpu_to_le64(le64_to_cpu(gpt_h->last_usable_lba) + 1);
Steve Raee1f6b0a2014-12-18 12:13:42 +0100184 gpt_h->header_crc32 = 0;
185
186 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
187 le32_to_cpu(gpt_h->header_size));
188 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
189}
190
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100191#if CONFIG_IS_ENABLED(EFI_PARTITION)
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000192/*
193 * Public Functions (include/part.h)
194 */
195
Alison Chaiken73d6d182017-06-25 16:43:23 -0700196/*
197 * UUID is displayed as 32 hexadecimal digits, in 5 groups,
198 * separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters
199 */
200int get_disk_guid(struct blk_desc * dev_desc, char *guid)
201{
202 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
203 gpt_entry *gpt_pte = NULL;
204 unsigned char *guid_bin;
205
206 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko20c568c2019-04-11 20:27:50 +0000207 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
208 return -EINVAL;
Alison Chaiken73d6d182017-06-25 16:43:23 -0700209
210 guid_bin = gpt_head->disk_guid.b;
211 uuid_bin_to_str(guid_bin, guid, UUID_STR_FORMAT_GUID);
212
Eugeniu Rosca1cfe9692019-04-30 04:53:44 +0200213 /* Remember to free pte */
214 free(gpt_pte);
Alison Chaiken73d6d182017-06-25 16:43:23 -0700215 return 0;
216}
217
Simon Glass084bf4c2016-02-29 15:26:04 -0700218void part_print_efi(struct blk_desc *dev_desc)
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000219{
Egbert Eichae1768a2013-04-09 06:03:36 +0000220 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000221 gpt_entry *gpt_pte = NULL;
222 int i = 0;
Alison Chaikendb9b6202017-06-25 16:43:17 -0700223 char uuid[UUID_STR_LEN + 1];
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200224 unsigned char *uuid_bin;
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000225
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000226 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko20c568c2019-04-11 20:27:50 +0000227 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
228 return;
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000229
230 debug("%s: gpt-entry at %p\n", __func__, gpt_pte);
231
232 printf("Part\tStart LBA\tEnd LBA\t\tName\n");
Stephen Warren13bf2f52012-10-08 08:14:36 +0000233 printf("\tAttributes\n");
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200234 printf("\tType GUID\n");
235 printf("\tPartition GUID\n");
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000236
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +0100237 for (i = 0; i < le32_to_cpu(gpt_head->num_partition_entries); i++) {
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000238 /* Stop at the first non valid PTE */
239 if (!is_pte_valid(&gpt_pte[i]))
240 break;
241
242 printf("%3d\t0x%08llx\t0x%08llx\t\"%s\"\n", (i + 1),
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +0100243 le64_to_cpu(gpt_pte[i].starting_lba),
244 le64_to_cpu(gpt_pte[i].ending_lba),
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000245 print_efiname(&gpt_pte[i]));
Stephen Warren13bf2f52012-10-08 08:14:36 +0000246 printf("\tattrs:\t0x%016llx\n", gpt_pte[i].attributes.raw);
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200247 uuid_bin = (unsigned char *)gpt_pte[i].partition_type_guid.b;
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200248 uuid_bin_to_str(uuid_bin, uuid, UUID_STR_FORMAT_GUID);
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000249 printf("\ttype:\t%s\n", uuid);
Rasmus Villemoes31ce3672020-11-20 11:45:35 +0100250 if (CONFIG_IS_ENABLED(PARTITION_TYPE_GUID)) {
251 const char *type = uuid_guid_get_str(uuid_bin);
252 if (type)
253 printf("\ttype:\t%s\n", type);
254 }
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200255 uuid_bin = (unsigned char *)gpt_pte[i].unique_partition_guid.b;
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200256 uuid_bin_to_str(uuid_bin, uuid, UUID_STR_FORMAT_GUID);
257 printf("\tguid:\t%s\n", uuid);
Stephen Warrenf07cd2c2012-10-08 08:14:34 +0000258 }
259
260 /* Remember to free pte */
261 free(gpt_pte);
262 return;
263}
Stephen Warren894bfbb2012-09-21 09:50:59 +0000264
Simon Glass3e8bd462016-02-29 15:25:48 -0700265int part_get_info_efi(struct blk_desc *dev_desc, int part,
Simon Glass05289792020-05-10 11:39:57 -0600266 struct disk_partition *info)
richardretanubun07f3d782008-09-26 11:13:22 -0400267{
Egbert Eichae1768a2013-04-09 06:03:36 +0000268 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
Doug Andersondeb5ca82011-10-19 09:47:31 +0000269 gpt_entry *gpt_pte = NULL;
richardretanubun07f3d782008-09-26 11:13:22 -0400270
271 /* "part" argument must be at least 1 */
Simon Glass4708a072016-03-16 07:45:36 -0600272 if (part < 1) {
Doug Andersondf70b1c2011-10-19 08:04:46 +0000273 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubun07f3d782008-09-26 11:13:22 -0400274 return -1;
275 }
276
277 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko20c568c2019-04-11 20:27:50 +0000278 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
279 return -1;
richardretanubun07f3d782008-09-26 11:13:22 -0400280
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +0100281 if (part > le32_to_cpu(gpt_head->num_partition_entries) ||
Stephen Warrenc04d68c2012-09-21 09:50:58 +0000282 !is_pte_valid(&gpt_pte[part - 1])) {
Mark Langsdorf6d2ee5a2013-09-10 15:14:56 -0500283 debug("%s: *** ERROR: Invalid partition number %d ***\n",
Stephen Warrenc04d68c2012-09-21 09:50:58 +0000284 __func__, part);
Mark Langsdorf6d2ee5a2013-09-10 15:14:56 -0500285 free(gpt_pte);
Stephen Warrenc04d68c2012-09-21 09:50:58 +0000286 return -1;
287 }
288
Steve Raee04350d2014-05-26 11:52:23 -0700289 /* The 'lbaint_t' casting may limit the maximum disk size to 2 TB */
290 info->start = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].starting_lba);
Richard Retanubun50970832009-01-26 08:45:14 -0500291 /* The ending LBA is inclusive, to calculate size, add 1 to it */
Steve Raee04350d2014-05-26 11:52:23 -0700292 info->size = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].ending_lba) + 1
Richard Retanubun50970832009-01-26 08:45:14 -0500293 - info->start;
Egbert Eichae1768a2013-04-09 06:03:36 +0000294 info->blksz = dev_desc->blksz;
richardretanubun07f3d782008-09-26 11:13:22 -0400295
Heinrich Schuchardt5375ee52019-07-05 21:27:13 +0200296 snprintf((char *)info->name, sizeof(info->name), "%s",
297 print_efiname(&gpt_pte[part - 1]));
Ben Whitten192bc692015-12-30 13:05:58 +0000298 strcpy((char *)info->type, "U-Boot");
Heinrich Schuchardt25801ac2020-03-19 13:49:34 +0100299 info->bootable = get_bootable(&gpt_pte[part - 1]);
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100300#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200301 uuid_bin_to_str(gpt_pte[part - 1].unique_partition_guid.b, info->uuid,
302 UUID_STR_FORMAT_GUID);
Stephen Warren894bfbb2012-09-21 09:50:59 +0000303#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100304#ifdef CONFIG_PARTITION_TYPE_GUID
305 uuid_bin_to_str(gpt_pte[part - 1].partition_type_guid.b,
306 info->type_guid, UUID_STR_FORMAT_GUID);
307#endif
richardretanubun07f3d782008-09-26 11:13:22 -0400308
Steve Rae60bf9412014-05-26 11:52:24 -0700309 debug("%s: start 0x" LBAF ", size 0x" LBAF ", name %s\n", __func__,
Frederic Leroy04735e92013-06-26 18:11:25 +0200310 info->start, info->size, info->name);
richardretanubun07f3d782008-09-26 11:13:22 -0400311
312 /* Remember to free pte */
Doug Andersondeb5ca82011-10-19 09:47:31 +0000313 free(gpt_pte);
richardretanubun07f3d782008-09-26 11:13:22 -0400314 return 0;
315}
316
Simon Glass084bf4c2016-02-29 15:26:04 -0700317static int part_test_efi(struct blk_desc *dev_desc)
richardretanubun07f3d782008-09-26 11:13:22 -0400318{
Egbert Eichae1768a2013-04-09 06:03:36 +0000319 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, legacymbr, 1, dev_desc->blksz);
richardretanubun07f3d782008-09-26 11:13:22 -0400320
321 /* Read legacy MBR from block 0 and validate it */
Simon Glass2a981dc2016-02-29 15:25:52 -0700322 if ((blk_dread(dev_desc, 0, 1, (ulong *)legacymbr) != 1)
Anton staaff75dd582011-10-12 13:56:04 +0000323 || (is_pmbr_valid(legacymbr) != 1)) {
richardretanubun07f3d782008-09-26 11:13:22 -0400324 return -1;
325 }
326 return 0;
327}
328
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100329/**
330 * set_protective_mbr(): Set the EFI protective MBR
331 * @param dev_desc - block device descriptor
332 *
333 * @return - zero on success, otherwise error
334 */
Simon Glass4101f682016-02-29 15:25:34 -0700335static int set_protective_mbr(struct blk_desc *dev_desc)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100336{
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100337 /* Setup the Protective MBR */
Patrick Delaunay3cc56612017-11-17 10:08:18 +0100338 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, p_mbr, 1, dev_desc->blksz);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100339 if (p_mbr == NULL) {
340 printf("%s: calloc failed!\n", __func__);
341 return -1;
342 }
Vincent Tinellie163a932017-01-30 15:46:07 +0300343
344 /* Read MBR to backup boot code if it exists */
345 if (blk_dread(dev_desc, 0, 1, p_mbr) != 1) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900346 pr_err("** Can't read from device %d **\n", dev_desc->devnum);
Vincent Tinellie163a932017-01-30 15:46:07 +0300347 return -1;
348 }
349
Sam Protsenko955575c2018-05-22 02:04:21 +0300350 /* Clear all data in MBR except of backed up boot code */
351 memset((char *)p_mbr + MSDOS_MBR_BOOT_CODE_SIZE, 0, sizeof(*p_mbr) -
352 MSDOS_MBR_BOOT_CODE_SIZE);
353
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100354 /* Append signature */
355 p_mbr->signature = MSDOS_MBR_SIGNATURE;
356 p_mbr->partition_record[0].sys_ind = EFI_PMBR_OSTYPE_EFI_GPT;
357 p_mbr->partition_record[0].start_sect = 1;
Maxime Ripardb349abb2015-01-08 12:26:44 +0100358 p_mbr->partition_record[0].nr_sects = (u32) dev_desc->lba - 1;
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100359
360 /* Write MBR sector to the MMC device */
Simon Glass2a981dc2016-02-29 15:25:52 -0700361 if (blk_dwrite(dev_desc, 0, 1, p_mbr) != 1) {
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100362 printf("** Can't write to device %d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700363 dev_desc->devnum);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100364 return -1;
365 }
366
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100367 return 0;
368}
369
Simon Glass4101f682016-02-29 15:25:34 -0700370int write_gpt_table(struct blk_desc *dev_desc,
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100371 gpt_header *gpt_h, gpt_entry *gpt_e)
372{
Egbert Eichae1768a2013-04-09 06:03:36 +0000373 const int pte_blk_cnt = BLOCK_CNT((gpt_h->num_partition_entries
374 * sizeof(gpt_entry)), dev_desc);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100375 u32 calc_crc32;
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100376
377 debug("max lba: %x\n", (u32) dev_desc->lba);
378 /* Setup the Protective MBR */
379 if (set_protective_mbr(dev_desc) < 0)
380 goto err;
381
382 /* Generate CRC for the Primary GPT Header */
383 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
384 le32_to_cpu(gpt_h->num_partition_entries) *
385 le32_to_cpu(gpt_h->sizeof_partition_entry));
386 gpt_h->partition_entry_array_crc32 = cpu_to_le32(calc_crc32);
387
388 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
389 le32_to_cpu(gpt_h->header_size));
390 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
391
392 /* Write the First GPT to the block right after the Legacy MBR */
Simon Glass2a981dc2016-02-29 15:25:52 -0700393 if (blk_dwrite(dev_desc, 1, 1, gpt_h) != 1)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100394 goto err;
395
Philipp Tomsich02e43532017-03-01 21:10:39 +0100396 if (blk_dwrite(dev_desc, le64_to_cpu(gpt_h->partition_entry_lba),
397 pte_blk_cnt, gpt_e) != pte_blk_cnt)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100398 goto err;
399
Steve Raee1f6b0a2014-12-18 12:13:42 +0100400 prepare_backup_gpt_header(gpt_h);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100401
Simon Glass2a981dc2016-02-29 15:25:52 -0700402 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->last_usable_lba)
403 + 1, pte_blk_cnt, gpt_e) != pte_blk_cnt)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100404 goto err;
405
Simon Glass2a981dc2016-02-29 15:25:52 -0700406 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->my_lba), 1,
407 gpt_h) != 1)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100408 goto err;
409
410 debug("GPT successfully written to block device!\n");
411 return 0;
412
413 err:
Simon Glassbcce53d2016-02-29 15:25:51 -0700414 printf("** Can't write to device %d **\n", dev_desc->devnum);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100415 return -1;
416}
417
Maxime Ripard47d7ee42017-08-23 16:01:32 +0200418int gpt_fill_pte(struct blk_desc *dev_desc,
419 gpt_header *gpt_h, gpt_entry *gpt_e,
Simon Glass05289792020-05-10 11:39:57 -0600420 struct disk_partition *partitions, int parts)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100421{
Steve Raee04350d2014-05-26 11:52:23 -0700422 lbaint_t offset = (lbaint_t)le64_to_cpu(gpt_h->first_usable_lba);
Steve Raee04350d2014-05-26 11:52:23 -0700423 lbaint_t last_usable_lba = (lbaint_t)
424 le64_to_cpu(gpt_h->last_usable_lba);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100425 int i, k;
Marek Vasut67cd4a62013-05-19 12:53:34 +0000426 size_t efiname_len, dosname_len;
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100427#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100428 char *str_uuid;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200429 unsigned char *bin_uuid;
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100430#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100431#ifdef CONFIG_PARTITION_TYPE_GUID
432 char *str_type_guid;
433 unsigned char *bin_type_guid;
434#endif
Maxime Ripard79c59122017-08-23 16:01:33 +0200435 size_t hdr_start = gpt_h->my_lba;
436 size_t hdr_end = hdr_start + 1;
437
438 size_t pte_start = gpt_h->partition_entry_lba;
439 size_t pte_end = pte_start +
440 gpt_h->num_partition_entries * gpt_h->sizeof_partition_entry /
441 dev_desc->blksz;
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100442
443 for (i = 0; i < parts; i++) {
444 /* partition starting lba */
Maxime Ripard5276e8b2017-08-23 16:01:31 +0200445 lbaint_t start = partitions[i].start;
446 lbaint_t size = partitions[i].size;
447
Maxime Ripard79c59122017-08-23 16:01:33 +0200448 if (start) {
449 offset = start + size;
450 } else {
451 start = offset;
452 offset += size;
453 }
454
455 /*
456 * If our partition overlaps with either the GPT
457 * header, or the partition entry, reject it.
458 */
Patrick Delaunayae0e0222017-10-18 15:11:05 +0200459 if (((start < hdr_end && hdr_start < (start + size)) ||
460 (start < pte_end && pte_start < (start + size)))) {
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100461 printf("Partition overlap\n");
462 return -1;
463 }
Maxime Ripard5276e8b2017-08-23 16:01:31 +0200464
Maxime Ripard79c59122017-08-23 16:01:33 +0200465 gpt_e[i].starting_lba = cpu_to_le64(start);
466
Patrick Delaunaya5653862016-05-02 14:43:33 +0200467 if (offset > (last_usable_lba + 1)) {
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100468 printf("Partitions layout exceds disk size\n");
469 return -1;
470 }
471 /* partition ending lba */
Maxime Ripard5276e8b2017-08-23 16:01:31 +0200472 if ((i == parts - 1) && (size == 0))
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100473 /* extend the last partition to maximuim */
474 gpt_e[i].ending_lba = gpt_h->last_usable_lba;
475 else
476 gpt_e[i].ending_lba = cpu_to_le64(offset - 1);
477
Patrick Delaunay7561b252015-10-27 11:00:27 +0100478#ifdef CONFIG_PARTITION_TYPE_GUID
479 str_type_guid = partitions[i].type_guid;
480 bin_type_guid = gpt_e[i].partition_type_guid.b;
481 if (strlen(str_type_guid)) {
482 if (uuid_str_to_bin(str_type_guid, bin_type_guid,
483 UUID_STR_FORMAT_GUID)) {
484 printf("Partition no. %d: invalid type guid: %s\n",
485 i, str_type_guid);
486 return -1;
487 }
488 } else {
489 /* default partition type GUID */
490 memcpy(bin_type_guid,
Heinrich Schuchardt44ab2d32018-06-09 17:50:18 +0200491 &partition_basic_data_guid, 16);
Patrick Delaunay7561b252015-10-27 11:00:27 +0100492 }
493#else
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100494 /* partition type GUID */
495 memcpy(gpt_e[i].partition_type_guid.b,
Heinrich Schuchardt44ab2d32018-06-09 17:50:18 +0200496 &partition_basic_data_guid, 16);
Patrick Delaunay7561b252015-10-27 11:00:27 +0100497#endif
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100498
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100499#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100500 str_uuid = partitions[i].uuid;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200501 bin_uuid = gpt_e[i].unique_partition_guid.b;
502
Vincent Tinelli9da52f82017-02-27 16:11:15 +0200503 if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_GUID)) {
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100504 printf("Partition no. %d: invalid guid: %s\n",
505 i, str_uuid);
506 return -1;
507 }
508#endif
509
510 /* partition attributes */
511 memset(&gpt_e[i].attributes, 0,
512 sizeof(gpt_entry_attributes));
513
Heinrich Schuchardt25801ac2020-03-19 13:49:34 +0100514 if (partitions[i].bootable & PART_BOOTABLE)
Patrick Delaunaycfdaf4c2015-11-17 11:36:52 +0100515 gpt_e[i].attributes.fields.legacy_bios_bootable = 1;
516
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100517 /* partition name */
Marek Vasut67cd4a62013-05-19 12:53:34 +0000518 efiname_len = sizeof(gpt_e[i].partition_name)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100519 / sizeof(efi_char16_t);
Marek Vasut67cd4a62013-05-19 12:53:34 +0000520 dosname_len = sizeof(partitions[i].name);
521
522 memset(gpt_e[i].partition_name, 0,
523 sizeof(gpt_e[i].partition_name));
524
525 for (k = 0; k < min(dosname_len, efiname_len); k++)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100526 gpt_e[i].partition_name[k] =
527 (efi_char16_t)(partitions[i].name[k]);
528
Steve Raee04350d2014-05-26 11:52:23 -0700529 debug("%s: name: %s offset[%d]: 0x" LBAF
530 " size[%d]: 0x" LBAF "\n",
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100531 __func__, partitions[i].name, i,
Maxime Ripard5276e8b2017-08-23 16:01:31 +0200532 offset, i, size);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100533 }
534
535 return 0;
536}
537
Philipp Tomsich02e43532017-03-01 21:10:39 +0100538static uint32_t partition_entries_offset(struct blk_desc *dev_desc)
539{
540 uint32_t offset_blks = 2;
Maxime Ripard89d33a22017-08-23 16:01:30 +0200541 uint32_t __maybe_unused offset_bytes;
Philipp Tomsich02e43532017-03-01 21:10:39 +0100542 int __maybe_unused config_offset;
543
544#if defined(CONFIG_EFI_PARTITION_ENTRIES_OFF)
545 /*
546 * Some architectures require their SPL loader at a fixed
547 * address within the first 16KB of the disk. To avoid an
548 * overlap with the partition entries of the EFI partition
549 * table, the first safe offset (in bytes, from the start of
550 * the disk) for the entries can be set in
551 * CONFIG_EFI_PARTITION_ENTRIES_OFF.
552 */
Maxime Ripard89d33a22017-08-23 16:01:30 +0200553 offset_bytes =
Philipp Tomsich02e43532017-03-01 21:10:39 +0100554 PAD_TO_BLOCKSIZE(CONFIG_EFI_PARTITION_ENTRIES_OFF, dev_desc);
Maxime Ripard89d33a22017-08-23 16:01:30 +0200555 offset_blks = offset_bytes / dev_desc->blksz;
Philipp Tomsich02e43532017-03-01 21:10:39 +0100556#endif
557
558#if defined(CONFIG_OF_CONTROL)
559 /*
560 * Allow the offset of the first partition entires (in bytes
561 * from the start of the device) to be specified as a property
562 * of the device tree '/config' node.
563 */
564 config_offset = fdtdec_get_config_int(gd->fdt_blob,
565 "u-boot,efi-partition-entries-offset",
566 -EINVAL);
Maxime Ripard89d33a22017-08-23 16:01:30 +0200567 if (config_offset != -EINVAL) {
568 offset_bytes = PAD_TO_BLOCKSIZE(config_offset, dev_desc);
569 offset_blks = offset_bytes / dev_desc->blksz;
570 }
Philipp Tomsich02e43532017-03-01 21:10:39 +0100571#endif
572
573 debug("efi: partition entries offset (in blocks): %d\n", offset_blks);
574
575 /*
576 * The earliest LBA this can be at is LBA#2 (i.e. right behind
577 * the (protective) MBR and the GPT header.
578 */
579 if (offset_blks < 2)
580 offset_blks = 2;
581
582 return offset_blks;
583}
584
Simon Glass4101f682016-02-29 15:25:34 -0700585int gpt_fill_header(struct blk_desc *dev_desc, gpt_header *gpt_h,
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100586 char *str_guid, int parts_count)
587{
Simon Glass67b90522018-10-01 12:22:35 -0600588 gpt_h->signature = cpu_to_le64(GPT_HEADER_SIGNATURE_UBOOT);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100589 gpt_h->revision = cpu_to_le32(GPT_HEADER_REVISION_V1);
590 gpt_h->header_size = cpu_to_le32(sizeof(gpt_header));
591 gpt_h->my_lba = cpu_to_le64(1);
592 gpt_h->alternate_lba = cpu_to_le64(dev_desc->lba - 1);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100593 gpt_h->last_usable_lba = cpu_to_le64(dev_desc->lba - 34);
Philipp Tomsich02e43532017-03-01 21:10:39 +0100594 gpt_h->partition_entry_lba =
595 cpu_to_le64(partition_entries_offset(dev_desc));
596 gpt_h->first_usable_lba =
597 cpu_to_le64(le64_to_cpu(gpt_h->partition_entry_lba) + 32);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100598 gpt_h->num_partition_entries = cpu_to_le32(GPT_ENTRY_NUMBERS);
599 gpt_h->sizeof_partition_entry = cpu_to_le32(sizeof(gpt_entry));
600 gpt_h->header_crc32 = 0;
601 gpt_h->partition_entry_array_crc32 = 0;
602
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200603 if (uuid_str_to_bin(str_guid, gpt_h->disk_guid.b, UUID_STR_FORMAT_GUID))
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100604 return -1;
605
606 return 0;
607}
608
Simon Glass4101f682016-02-29 15:25:34 -0700609int gpt_restore(struct blk_desc *dev_desc, char *str_disk_guid,
Simon Glass05289792020-05-10 11:39:57 -0600610 struct disk_partition *partitions, int parts_count)
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100611{
Lukasz Majewskibb021012017-10-27 12:28:10 +0200612 gpt_header *gpt_h;
Egbert Eichae1768a2013-04-09 06:03:36 +0000613 gpt_entry *gpt_e;
Lukasz Majewskibb021012017-10-27 12:28:10 +0200614 int ret, size;
Egbert Eichae1768a2013-04-09 06:03:36 +0000615
Lukasz Majewskibb021012017-10-27 12:28:10 +0200616 size = PAD_TO_BLOCKSIZE(sizeof(gpt_header), dev_desc);
617 gpt_h = malloc_cache_aligned(size);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100618 if (gpt_h == NULL) {
619 printf("%s: calloc failed!\n", __func__);
620 return -1;
621 }
Lukasz Majewskibb021012017-10-27 12:28:10 +0200622 memset(gpt_h, 0, size);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100623
Lukasz Majewskibb021012017-10-27 12:28:10 +0200624 size = PAD_TO_BLOCKSIZE(GPT_ENTRY_NUMBERS * sizeof(gpt_entry),
625 dev_desc);
626 gpt_e = malloc_cache_aligned(size);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100627 if (gpt_e == NULL) {
628 printf("%s: calloc failed!\n", __func__);
629 free(gpt_h);
630 return -1;
631 }
Lukasz Majewskibb021012017-10-27 12:28:10 +0200632 memset(gpt_e, 0, size);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100633
634 /* Generate Primary GPT header (LBA1) */
635 ret = gpt_fill_header(dev_desc, gpt_h, str_disk_guid, parts_count);
636 if (ret)
637 goto err;
638
639 /* Generate partition entries */
Maxime Ripard47d7ee42017-08-23 16:01:32 +0200640 ret = gpt_fill_pte(dev_desc, gpt_h, gpt_e, partitions, parts_count);
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100641 if (ret)
642 goto err;
643
644 /* Write GPT partition table */
645 ret = write_gpt_table(dev_desc, gpt_h, gpt_e);
646
647err:
648 free(gpt_e);
649 free(gpt_h);
650 return ret;
651}
Steve Rae0ff7e582014-12-12 15:51:54 -0800652
Heinrich Schuchardt06e921b2019-07-14 18:12:32 +0200653/**
654 * gpt_convert_efi_name_to_char() - convert u16 string to char string
655 *
656 * TODO: this conversion only supports ANSI characters
657 *
658 * @s: target buffer
659 * @es: u16 string to be converted
660 * @n: size of target buffer
661 */
662static void gpt_convert_efi_name_to_char(char *s, void *es, int n)
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100663{
Heinrich Schuchardt06e921b2019-07-14 18:12:32 +0200664 char *ess = es;
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100665 int i, j;
666
667 memset(s, '\0', n);
668
669 for (i = 0, j = 0; j < n; i += 2, j++) {
670 s[j] = ess[i];
671 if (!ess[i])
672 return;
673 }
674}
675
Simon Glass4101f682016-02-29 15:25:34 -0700676int gpt_verify_headers(struct blk_desc *dev_desc, gpt_header *gpt_head,
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100677 gpt_entry **gpt_pte)
678{
679 /*
680 * This function validates AND
681 * fills in the GPT header and PTE
682 */
683 if (is_gpt_valid(dev_desc,
684 GPT_PRIMARY_PARTITION_TABLE_LBA,
685 gpt_head, gpt_pte) != 1) {
686 printf("%s: *** ERROR: Invalid GPT ***\n",
687 __func__);
688 return -1;
689 }
Eugeniu Rosca716f9192019-04-30 04:53:45 +0200690
691 /* Free pte before allocating again */
692 free(*gpt_pte);
693
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100694 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
695 gpt_head, gpt_pte) != 1) {
696 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
697 __func__);
698 return -1;
699 }
700
701 return 0;
702}
703
Simon Glass4101f682016-02-29 15:25:34 -0700704int gpt_verify_partitions(struct blk_desc *dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600705 struct disk_partition *partitions, int parts,
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100706 gpt_header *gpt_head, gpt_entry **gpt_pte)
707{
708 char efi_str[PARTNAME_SZ + 1];
709 u64 gpt_part_size;
710 gpt_entry *gpt_e;
711 int ret, i;
712
713 ret = gpt_verify_headers(dev_desc, gpt_head, gpt_pte);
714 if (ret)
715 return ret;
716
717 gpt_e = *gpt_pte;
718
719 for (i = 0; i < parts; i++) {
720 if (i == gpt_head->num_partition_entries) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900721 pr_err("More partitions than allowed!\n");
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100722 return -1;
723 }
724
725 /* Check if GPT and ENV partition names match */
726 gpt_convert_efi_name_to_char(efi_str, gpt_e[i].partition_name,
727 PARTNAME_SZ + 1);
728
729 debug("%s: part: %2d name - GPT: %16s, ENV: %16s ",
730 __func__, i, efi_str, partitions[i].name);
731
732 if (strncmp(efi_str, (char *)partitions[i].name,
733 sizeof(partitions->name))) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900734 pr_err("Partition name: %s does not match %s!\n",
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100735 efi_str, (char *)partitions[i].name);
736 return -1;
737 }
738
739 /* Check if GPT and ENV sizes match */
740 gpt_part_size = le64_to_cpu(gpt_e[i].ending_lba) -
741 le64_to_cpu(gpt_e[i].starting_lba) + 1;
742 debug("size(LBA) - GPT: %8llu, ENV: %8llu ",
Simon Glassf8d61652016-02-29 15:25:36 -0700743 (unsigned long long)gpt_part_size,
744 (unsigned long long)partitions[i].size);
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100745
746 if (le64_to_cpu(gpt_part_size) != partitions[i].size) {
Kever Yangc2fdd342016-07-29 11:12:18 +0800747 /* We do not check the extend partition size */
748 if ((i == parts - 1) && (partitions[i].size == 0))
749 continue;
750
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900751 pr_err("Partition %s size: %llu does not match %llu!\n",
Simon Glassf8d61652016-02-29 15:25:36 -0700752 efi_str, (unsigned long long)gpt_part_size,
753 (unsigned long long)partitions[i].size);
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100754 return -1;
755 }
756
757 /*
758 * Start address is optional - check only if provided
759 * in '$partition' variable
760 */
761 if (!partitions[i].start) {
762 debug("\n");
763 continue;
764 }
765
766 /* Check if GPT and ENV start LBAs match */
767 debug("start LBA - GPT: %8llu, ENV: %8llu\n",
768 le64_to_cpu(gpt_e[i].starting_lba),
Simon Glassf8d61652016-02-29 15:25:36 -0700769 (unsigned long long)partitions[i].start);
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100770
771 if (le64_to_cpu(gpt_e[i].starting_lba) != partitions[i].start) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900772 pr_err("Partition %s start: %llu does not match %llu!\n",
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100773 efi_str, le64_to_cpu(gpt_e[i].starting_lba),
Simon Glassf8d61652016-02-29 15:25:36 -0700774 (unsigned long long)partitions[i].start);
Lukasz Majewskicef68bf2015-11-20 08:06:16 +0100775 return -1;
776 }
777 }
778
779 return 0;
780}
781
Simon Glass4101f682016-02-29 15:25:34 -0700782int is_valid_gpt_buf(struct blk_desc *dev_desc, void *buf)
Steve Rae0ff7e582014-12-12 15:51:54 -0800783{
784 gpt_header *gpt_h;
785 gpt_entry *gpt_e;
786
787 /* determine start of GPT Header in the buffer */
788 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
789 dev_desc->blksz);
790 if (validate_gpt_header(gpt_h, GPT_PRIMARY_PARTITION_TABLE_LBA,
791 dev_desc->lba))
792 return -1;
793
794 /* determine start of GPT Entries in the buffer */
795 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
796 dev_desc->blksz);
797 if (validate_gpt_entries(gpt_h, gpt_e))
798 return -1;
799
800 return 0;
801}
802
Simon Glass4101f682016-02-29 15:25:34 -0700803int write_mbr_and_gpt_partitions(struct blk_desc *dev_desc, void *buf)
Steve Rae0ff7e582014-12-12 15:51:54 -0800804{
805 gpt_header *gpt_h;
806 gpt_entry *gpt_e;
807 int gpt_e_blk_cnt;
808 lbaint_t lba;
809 int cnt;
810
811 if (is_valid_gpt_buf(dev_desc, buf))
812 return -1;
813
814 /* determine start of GPT Header in the buffer */
815 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
816 dev_desc->blksz);
817
818 /* determine start of GPT Entries in the buffer */
819 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
820 dev_desc->blksz);
821 gpt_e_blk_cnt = BLOCK_CNT((le32_to_cpu(gpt_h->num_partition_entries) *
822 le32_to_cpu(gpt_h->sizeof_partition_entry)),
823 dev_desc);
824
825 /* write MBR */
826 lba = 0; /* MBR is always at 0 */
827 cnt = 1; /* MBR (1 block) */
Simon Glass2a981dc2016-02-29 15:25:52 -0700828 if (blk_dwrite(dev_desc, lba, cnt, buf) != cnt) {
Steve Rae0ff7e582014-12-12 15:51:54 -0800829 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
830 __func__, "MBR", cnt, lba);
831 return 1;
832 }
833
834 /* write Primary GPT */
835 lba = GPT_PRIMARY_PARTITION_TABLE_LBA;
836 cnt = 1; /* GPT Header (1 block) */
Simon Glass2a981dc2016-02-29 15:25:52 -0700837 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
Steve Rae0ff7e582014-12-12 15:51:54 -0800838 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
839 __func__, "Primary GPT Header", cnt, lba);
840 return 1;
841 }
842
843 lba = le64_to_cpu(gpt_h->partition_entry_lba);
844 cnt = gpt_e_blk_cnt;
Simon Glass2a981dc2016-02-29 15:25:52 -0700845 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
Steve Rae0ff7e582014-12-12 15:51:54 -0800846 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
847 __func__, "Primary GPT Entries", cnt, lba);
848 return 1;
849 }
850
851 prepare_backup_gpt_header(gpt_h);
852
853 /* write Backup GPT */
854 lba = le64_to_cpu(gpt_h->partition_entry_lba);
855 cnt = gpt_e_blk_cnt;
Simon Glass2a981dc2016-02-29 15:25:52 -0700856 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
Steve Rae0ff7e582014-12-12 15:51:54 -0800857 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
858 __func__, "Backup GPT Entries", cnt, lba);
859 return 1;
860 }
861
862 lba = le64_to_cpu(gpt_h->my_lba);
863 cnt = 1; /* GPT Header (1 block) */
Simon Glass2a981dc2016-02-29 15:25:52 -0700864 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
Steve Rae0ff7e582014-12-12 15:51:54 -0800865 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
866 __func__, "Backup GPT Header", cnt, lba);
867 return 1;
868 }
869
Gary Bisson4e9bd062021-01-26 14:56:23 +0100870 /* Update the partition table entries*/
871 part_init(dev_desc);
872
Steve Rae0ff7e582014-12-12 15:51:54 -0800873 return 0;
874}
Lukasz Majewski40684dd2012-12-11 11:09:46 +0100875#endif
876
richardretanubun07f3d782008-09-26 11:13:22 -0400877/*
878 * Private functions
879 */
880/*
881 * pmbr_part_valid(): Check for EFI partition signature
882 *
883 * Returns: 1 if EFI GPT partition type is found.
884 */
885static int pmbr_part_valid(struct partition *part)
886{
887 if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
Marc Dietrich8faefad2013-03-29 07:57:10 +0000888 get_unaligned_le32(&part->start_sect) == 1UL) {
richardretanubun07f3d782008-09-26 11:13:22 -0400889 return 1;
890 }
891
892 return 0;
893}
894
895/*
896 * is_pmbr_valid(): test Protective MBR for validity
897 *
898 * Returns: 1 if PMBR is valid, 0 otherwise.
899 * Validity depends on two things:
900 * 1) MSDOS signature is in the last two bytes of the MBR
901 * 2) One partition of type 0xEE is found, checked by pmbr_part_valid()
902 */
903static int is_pmbr_valid(legacy_mbr * mbr)
904{
905 int i = 0;
906
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +0100907 if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
richardretanubun07f3d782008-09-26 11:13:22 -0400908 return 0;
richardretanubun07f3d782008-09-26 11:13:22 -0400909
910 for (i = 0; i < 4; i++) {
911 if (pmbr_part_valid(&mbr->partition_record[i])) {
912 return 1;
913 }
914 }
915 return 0;
916}
917
918/**
919 * is_gpt_valid() - tests one GPT header and PTEs for validity
920 *
921 * lba is the logical block address of the GPT header to test
922 * gpt is a GPT header ptr, filled on return.
923 * ptes is a PTEs ptr, filled on return.
924 *
Urja Rannikko0557d462019-04-11 20:27:51 +0000925 * Description: returns 1 if valid, 0 on error, 2 if ignored header
richardretanubun07f3d782008-09-26 11:13:22 -0400926 * If valid, returns pointers to PTEs.
927 */
Simon Glass4101f682016-02-29 15:25:34 -0700928static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
Steve Raee04350d2014-05-26 11:52:23 -0700929 gpt_header *pgpt_head, gpt_entry **pgpt_pte)
richardretanubun07f3d782008-09-26 11:13:22 -0400930{
Tom Rinib351ccf2017-10-03 09:38:44 -0400931 /* Confirm valid arguments prior to allocation. */
richardretanubun07f3d782008-09-26 11:13:22 -0400932 if (!dev_desc || !pgpt_head) {
Doug Andersondf70b1c2011-10-19 08:04:46 +0000933 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubun07f3d782008-09-26 11:13:22 -0400934 return 0;
935 }
936
Patrick Delaunay3cc56612017-11-17 10:08:18 +0100937 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, mbr, 1, dev_desc->blksz);
Tom Rinib351ccf2017-10-03 09:38:44 -0400938
Peter Jonesff98cb92017-09-13 18:05:25 -0400939 /* Read MBR Header from device */
940 if (blk_dread(dev_desc, 0, 1, (ulong *)mbr) != 1) {
941 printf("*** ERROR: Can't read MBR header ***\n");
942 return 0;
943 }
944
richardretanubun07f3d782008-09-26 11:13:22 -0400945 /* Read GPT Header from device */
Simon Glass2a981dc2016-02-29 15:25:52 -0700946 if (blk_dread(dev_desc, (lbaint_t)lba, 1, pgpt_head) != 1) {
richardretanubun07f3d782008-09-26 11:13:22 -0400947 printf("*** ERROR: Can't read GPT header ***\n");
948 return 0;
949 }
950
Urja Rannikko0557d462019-04-11 20:27:51 +0000951 /* Invalid but nothing to yell about. */
952 if (le64_to_cpu(pgpt_head->signature) == GPT_HEADER_CHROMEOS_IGNORE) {
953 debug("ChromeOS 'IGNOREME' GPT header found and ignored\n");
954 return 2;
955 }
956
Steve Raee1f6b0a2014-12-18 12:13:42 +0100957 if (validate_gpt_header(pgpt_head, (lbaint_t)lba, dev_desc->lba))
richardretanubun07f3d782008-09-26 11:13:22 -0400958 return 0;
richardretanubun07f3d782008-09-26 11:13:22 -0400959
Peter Jonesff98cb92017-09-13 18:05:25 -0400960 if (dev_desc->sig_type == SIG_TYPE_NONE) {
961 efi_guid_t empty = {};
962 if (memcmp(&pgpt_head->disk_guid, &empty, sizeof(empty))) {
963 dev_desc->sig_type = SIG_TYPE_GUID;
964 memcpy(&dev_desc->guid_sig, &pgpt_head->disk_guid,
965 sizeof(empty));
966 } else if (mbr->unique_mbr_signature != 0) {
967 dev_desc->sig_type = SIG_TYPE_MBR;
968 dev_desc->mbr_sig = mbr->unique_mbr_signature;
969 }
970 }
971
richardretanubun07f3d782008-09-26 11:13:22 -0400972 /* Read and allocate Partition Table Entries */
973 *pgpt_pte = alloc_read_gpt_entries(dev_desc, pgpt_head);
974 if (*pgpt_pte == NULL) {
975 printf("GPT: Failed to allocate memory for PTE\n");
976 return 0;
977 }
978
Steve Raee1f6b0a2014-12-18 12:13:42 +0100979 if (validate_gpt_entries(pgpt_head, *pgpt_pte)) {
Doug Andersondeb5ca82011-10-19 09:47:31 +0000980 free(*pgpt_pte);
richardretanubun07f3d782008-09-26 11:13:22 -0400981 return 0;
982 }
983
984 /* We're done, all's well */
985 return 1;
986}
987
988/**
Urja Rannikko20c568c2019-04-11 20:27:50 +0000989 * find_valid_gpt() - finds a valid GPT header and PTEs
990 *
991 * gpt is a GPT header ptr, filled on return.
992 * ptes is a PTEs ptr, filled on return.
993 *
994 * Description: returns 1 if found a valid gpt, 0 on error.
995 * If valid, returns pointers to PTEs.
996 */
997static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head,
998 gpt_entry **pgpt_pte)
999{
Urja Rannikko0557d462019-04-11 20:27:51 +00001000 int r;
1001
1002 r = is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA, gpt_head,
1003 pgpt_pte);
1004
1005 if (r != 1) {
1006 if (r != 2)
1007 printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
1008
1009 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1), gpt_head,
1010 pgpt_pte) != 1) {
Urja Rannikko20c568c2019-04-11 20:27:50 +00001011 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
1012 __func__);
1013 return 0;
1014 }
Urja Rannikko0557d462019-04-11 20:27:51 +00001015 if (r != 2)
1016 printf("%s: *** Using Backup GPT ***\n",
1017 __func__);
Urja Rannikko20c568c2019-04-11 20:27:50 +00001018 }
1019 return 1;
1020}
1021
1022/**
richardretanubun07f3d782008-09-26 11:13:22 -04001023 * alloc_read_gpt_entries(): reads partition entries from disk
1024 * @dev_desc
1025 * @gpt - GPT header
1026 *
1027 * Description: Returns ptes on success, NULL on error.
1028 * Allocates space for PTEs based on information found in @gpt.
1029 * Notes: remember to free pte when you're done!
1030 */
Simon Glass4101f682016-02-29 15:25:34 -07001031static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
1032 gpt_header *pgpt_head)
richardretanubun07f3d782008-09-26 11:13:22 -04001033{
Egbert Eichae1768a2013-04-09 06:03:36 +00001034 size_t count = 0, blk_cnt;
Stephen Warren7c4213f2015-12-07 11:38:48 -07001035 lbaint_t blk;
richardretanubun07f3d782008-09-26 11:13:22 -04001036 gpt_entry *pte = NULL;
1037
1038 if (!dev_desc || !pgpt_head) {
Doug Andersondf70b1c2011-10-19 08:04:46 +00001039 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubun07f3d782008-09-26 11:13:22 -04001040 return NULL;
1041 }
1042
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +01001043 count = le32_to_cpu(pgpt_head->num_partition_entries) *
1044 le32_to_cpu(pgpt_head->sizeof_partition_entry);
richardretanubun07f3d782008-09-26 11:13:22 -04001045
Simon Glass5afb8d12016-07-22 09:22:47 -06001046 debug("%s: count = %u * %u = %lu\n", __func__,
Chang Hyun Parkfae2bf22012-12-11 11:09:45 +01001047 (u32) le32_to_cpu(pgpt_head->num_partition_entries),
Simon Glass5afb8d12016-07-22 09:22:47 -06001048 (u32) le32_to_cpu(pgpt_head->sizeof_partition_entry),
1049 (ulong)count);
richardretanubun07f3d782008-09-26 11:13:22 -04001050
1051 /* Allocate memory for PTE, remember to FREE */
1052 if (count != 0) {
Egbert Eichae1768a2013-04-09 06:03:36 +00001053 pte = memalign(ARCH_DMA_MINALIGN,
1054 PAD_TO_BLOCKSIZE(count, dev_desc));
richardretanubun07f3d782008-09-26 11:13:22 -04001055 }
1056
1057 if (count == 0 || pte == NULL) {
Simon Glass5afb8d12016-07-22 09:22:47 -06001058 printf("%s: ERROR: Can't allocate %#lX bytes for GPT Entries\n",
1059 __func__, (ulong)count);
richardretanubun07f3d782008-09-26 11:13:22 -04001060 return NULL;
1061 }
1062
1063 /* Read GPT Entries from device */
Stephen Warren7c4213f2015-12-07 11:38:48 -07001064 blk = le64_to_cpu(pgpt_head->partition_entry_lba);
Egbert Eichae1768a2013-04-09 06:03:36 +00001065 blk_cnt = BLOCK_CNT(count, dev_desc);
Simon Glass2a981dc2016-02-29 15:25:52 -07001066 if (blk_dread(dev_desc, blk, (lbaint_t)blk_cnt, pte) != blk_cnt) {
richardretanubun07f3d782008-09-26 11:13:22 -04001067 printf("*** ERROR: Can't read GPT Entries ***\n");
1068 free(pte);
1069 return NULL;
1070 }
1071 return pte;
1072}
1073
1074/**
1075 * is_pte_valid(): validates a single Partition Table Entry
1076 * @gpt_entry - Pointer to a single Partition Table Entry
1077 *
1078 * Description: returns 1 if valid, 0 on error.
1079 */
1080static int is_pte_valid(gpt_entry * pte)
1081{
1082 efi_guid_t unused_guid;
1083
1084 if (!pte) {
Doug Andersondf70b1c2011-10-19 08:04:46 +00001085 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubun07f3d782008-09-26 11:13:22 -04001086 return 0;
1087 }
1088
1089 /* Only one validation for now:
1090 * The GUID Partition Type != Unused Entry (ALL-ZERO)
1091 */
1092 memset(unused_guid.b, 0, sizeof(unused_guid.b));
1093
1094 if (memcmp(pte->partition_type_guid.b, unused_guid.b,
1095 sizeof(unused_guid.b)) == 0) {
1096
Doug Andersondf70b1c2011-10-19 08:04:46 +00001097 debug("%s: Found an unused PTE GUID at 0x%08X\n", __func__,
Taylor Hutt9936be32012-10-12 14:26:09 +00001098 (unsigned int)(uintptr_t)pte);
richardretanubun07f3d782008-09-26 11:13:22 -04001099
1100 return 0;
1101 } else {
1102 return 1;
1103 }
1104}
Simon Glass96e5b032016-02-29 15:25:47 -07001105
1106/*
1107 * Add an 'a_' prefix so it comes before 'dos' in the linker list. We need to
1108 * check EFI first, since a DOS partition is often used as a 'protective MBR'
1109 * with EFI.
1110 */
1111U_BOOT_PART_TYPE(a_efi) = {
1112 .name = "EFI",
1113 .part_type = PART_TYPE_EFI,
Petr Kulhavy87b85302016-09-09 10:27:15 +02001114 .max_entries = GPT_ENTRY_NUMBERS,
Simon Glass3e8bd462016-02-29 15:25:48 -07001115 .get_info = part_get_info_ptr(part_get_info_efi),
Simon Glass084bf4c2016-02-29 15:26:04 -07001116 .print = part_print_ptr(part_print_efi),
1117 .test = part_test_efi,
Simon Glass96e5b032016-02-29 15:25:47 -07001118};
richardretanubun07f3d782008-09-26 11:13:22 -04001119#endif