blob: 26738a57d5d477adb67104ed81ec50997c86b603 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
richardretanubune6745592008-09-26 11:13:22 -04002/*
3 * Copyright (C) 2008 RuggedCom, Inc.
4 * Richard Retanubun <RichardRetanubun@RuggedCom.com>
richardretanubune6745592008-09-26 11:13:22 -04005 */
6
7/*
Steve Raed30cbae2014-05-26 11:52:23 -07008 * NOTE:
9 * when CONFIG_SYS_64BIT_LBA is not defined, lbaint_t is 32 bits; this
Heinrich Schuchardt932b9a92020-09-17 17:57:21 +020010 * limits the maximum size of addressable storage to < 2 tebibytes
richardretanubune6745592008-09-26 11:13:22 -040011 */
Simon Glass655306c2020-05-10 11:39:58 -060012#include <common.h>
13#include <blk.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass655306c2020-05-10 11:39:58 -060015#include <part.h>
Simon Glass6f044982020-05-10 11:39:52 -060016#include <uuid.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Marc Dietrich20ca3ad2013-03-29 07:57:10 +000019#include <asm/unaligned.h>
richardretanubune6745592008-09-26 11:13:22 -040020#include <command.h>
Philipp Tomsicha3da0e92017-03-01 21:10:39 +010021#include <fdtdec.h>
richardretanubune6745592008-09-26 11:13:22 -040022#include <ide.h>
23#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060024#include <memalign.h>
Chang Hyun Park823ffde2012-12-11 11:09:45 +010025#include <part_efi.h>
Simon Glass0034d962021-08-07 07:24:01 -060026#include <dm/ofnode.h>
Philipp Tomsicha3da0e92017-03-01 21:10:39 +010027#include <linux/compiler.h>
Lei Wen757ddfe2011-09-07 18:11:19 +000028#include <linux/ctype.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070029#include <u-boot/crc.h>
richardretanubune6745592008-09-26 11:13:22 -040030
Simon Glass56d59a62021-07-02 12:36:14 -060031/* GUID for basic data partitons */
32#if CONFIG_IS_ENABLED(EFI_PARTITION)
Heinrich Schuchardtfac78672018-06-09 17:50:18 +020033static const efi_guid_t partition_basic_data_guid = PARTITION_BASIC_DATA_GUID;
Simon Glass56d59a62021-07-02 12:36:14 -060034#endif
Heinrich Schuchardtfac78672018-06-09 17:50:18 +020035
richardretanubune6745592008-09-26 11:13:22 -040036/**
37 * efi_crc32() - EFI version of crc32 function
38 * @buf: buffer to calculate crc32 of
39 * @len - length of buf
40 *
41 * Description: Returns EFI-style CRC32 value for @buf
42 */
Chang Hyun Park823ffde2012-12-11 11:09:45 +010043static inline u32 efi_crc32(const void *buf, u32 len)
richardretanubune6745592008-09-26 11:13:22 -040044{
45 return crc32(0, buf, len);
46}
47
48/*
49 * Private function prototypes
50 */
51
52static int pmbr_part_valid(struct partition *part);
53static int is_pmbr_valid(legacy_mbr * mbr);
Simon Glasse3394752016-02-29 15:25:34 -070054static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
Steve Raed30cbae2014-05-26 11:52:23 -070055 gpt_header *pgpt_head, gpt_entry **pgpt_pte);
Simon Glasse3394752016-02-29 15:25:34 -070056static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
57 gpt_header *pgpt_head);
richardretanubune6745592008-09-26 11:13:22 -040058static int is_pte_valid(gpt_entry * pte);
Urja Rannikko80bded72019-04-11 20:27:50 +000059static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head,
60 gpt_entry **pgpt_pte);
richardretanubune6745592008-09-26 11:13:22 -040061
Lei Wen757ddfe2011-09-07 18:11:19 +000062static char *print_efiname(gpt_entry *pte)
63{
64 static char name[PARTNAME_SZ + 1];
65 int i;
66 for (i = 0; i < PARTNAME_SZ; i++) {
67 u8 c;
68 c = pte->partition_name[i] & 0xff;
69 c = (c && !isprint(c)) ? '.' : c;
70 name[i] = c;
71 }
72 name[PARTNAME_SZ] = 0;
73 return name;
74}
75
Heinrich Schuchardt35ea8682019-01-12 11:25:25 +010076static const efi_guid_t system_guid = PARTITION_SYSTEM_GUID;
Stephen Warrend0cf3b62012-10-08 08:14:37 +000077
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010078static int get_bootable(gpt_entry *p)
Stephen Warrend0cf3b62012-10-08 08:14:37 +000079{
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +010080 int ret = 0;
81
82 if (!memcmp(&p->partition_type_guid, &system_guid, sizeof(efi_guid_t)))
83 ret |= PART_EFI_SYSTEM_PARTITION;
84 if (p->attributes.fields.legacy_bios_bootable)
85 ret |= PART_BOOTABLE;
86 return ret;
Stephen Warrend0cf3b62012-10-08 08:14:37 +000087}
88
Steve Rae6f5e17d2014-12-18 12:13:42 +010089static int validate_gpt_header(gpt_header *gpt_h, lbaint_t lba,
90 lbaint_t lastlba)
91{
92 uint32_t crc32_backup = 0;
93 uint32_t calc_crc32;
94
95 /* Check the GPT header signature */
Simon Glass7903d212018-10-01 12:22:35 -060096 if (le64_to_cpu(gpt_h->signature) != GPT_HEADER_SIGNATURE_UBOOT) {
Steve Rae6f5e17d2014-12-18 12:13:42 +010097 printf("%s signature is wrong: 0x%llX != 0x%llX\n",
98 "GUID Partition Table Header",
99 le64_to_cpu(gpt_h->signature),
Simon Glass7903d212018-10-01 12:22:35 -0600100 GPT_HEADER_SIGNATURE_UBOOT);
Steve Rae6f5e17d2014-12-18 12:13:42 +0100101 return -1;
102 }
103
104 /* Check the GUID Partition Table CRC */
105 memcpy(&crc32_backup, &gpt_h->header_crc32, sizeof(crc32_backup));
106 memset(&gpt_h->header_crc32, 0, sizeof(gpt_h->header_crc32));
107
108 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
109 le32_to_cpu(gpt_h->header_size));
110
111 memcpy(&gpt_h->header_crc32, &crc32_backup, sizeof(crc32_backup));
112
113 if (calc_crc32 != le32_to_cpu(crc32_backup)) {
114 printf("%s CRC is wrong: 0x%x != 0x%x\n",
115 "GUID Partition Table Header",
116 le32_to_cpu(crc32_backup), calc_crc32);
117 return -1;
118 }
119
120 /*
121 * Check that the my_lba entry points to the LBA that contains the GPT
122 */
123 if (le64_to_cpu(gpt_h->my_lba) != lba) {
124 printf("GPT: my_lba incorrect: %llX != " LBAF "\n",
125 le64_to_cpu(gpt_h->my_lba),
126 lba);
127 return -1;
128 }
129
130 /*
131 * Check that the first_usable_lba and that the last_usable_lba are
132 * within the disk.
133 */
134 if (le64_to_cpu(gpt_h->first_usable_lba) > lastlba) {
135 printf("GPT: first_usable_lba incorrect: %llX > " LBAF "\n",
136 le64_to_cpu(gpt_h->first_usable_lba), lastlba);
137 return -1;
138 }
139 if (le64_to_cpu(gpt_h->last_usable_lba) > lastlba) {
140 printf("GPT: last_usable_lba incorrect: %llX > " LBAF "\n",
141 le64_to_cpu(gpt_h->last_usable_lba), lastlba);
142 return -1;
143 }
144
145 debug("GPT: first_usable_lba: %llX last_usable_lba: %llX last lba: "
146 LBAF "\n", le64_to_cpu(gpt_h->first_usable_lba),
147 le64_to_cpu(gpt_h->last_usable_lba), lastlba);
148
149 return 0;
150}
151
152static int validate_gpt_entries(gpt_header *gpt_h, gpt_entry *gpt_e)
153{
154 uint32_t calc_crc32;
155
156 /* Check the GUID Partition Table Entry Array CRC */
157 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
158 le32_to_cpu(gpt_h->num_partition_entries) *
159 le32_to_cpu(gpt_h->sizeof_partition_entry));
160
161 if (calc_crc32 != le32_to_cpu(gpt_h->partition_entry_array_crc32)) {
162 printf("%s: 0x%x != 0x%x\n",
163 "GUID Partition Table Entry Array CRC is wrong",
164 le32_to_cpu(gpt_h->partition_entry_array_crc32),
165 calc_crc32);
166 return -1;
167 }
168
169 return 0;
170}
171
172static void prepare_backup_gpt_header(gpt_header *gpt_h)
173{
174 uint32_t calc_crc32;
175 uint64_t val;
176
177 /* recalculate the values for the Backup GPT Header */
178 val = le64_to_cpu(gpt_h->my_lba);
179 gpt_h->my_lba = gpt_h->alternate_lba;
180 gpt_h->alternate_lba = cpu_to_le64(val);
Steve Rae7d059342014-12-12 15:51:54 -0800181 gpt_h->partition_entry_lba =
182 cpu_to_le64(le64_to_cpu(gpt_h->last_usable_lba) + 1);
Steve Rae6f5e17d2014-12-18 12:13:42 +0100183 gpt_h->header_crc32 = 0;
184
185 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
186 le32_to_cpu(gpt_h->header_size));
187 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
188}
189
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +0100190#if CONFIG_IS_ENABLED(EFI_PARTITION)
richardretanubune6745592008-09-26 11:13:22 -0400191/*
192 * Public Functions (include/part.h)
193 */
194
Alison Chaikene4222582017-06-25 16:43:23 -0700195/*
196 * UUID is displayed as 32 hexadecimal digits, in 5 groups,
197 * separated by hyphens, in the form 8-4-4-4-12 for a total of 36 characters
198 */
199int get_disk_guid(struct blk_desc * dev_desc, char *guid)
200{
201 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
202 gpt_entry *gpt_pte = NULL;
203 unsigned char *guid_bin;
204
205 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko80bded72019-04-11 20:27:50 +0000206 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
207 return -EINVAL;
Alison Chaikene4222582017-06-25 16:43:23 -0700208
209 guid_bin = gpt_head->disk_guid.b;
210 uuid_bin_to_str(guid_bin, guid, UUID_STR_FORMAT_GUID);
211
Eugeniu Roscaeb11c2e2019-04-30 04:53:44 +0200212 /* Remember to free pte */
213 free(gpt_pte);
Alison Chaikene4222582017-06-25 16:43:23 -0700214 return 0;
215}
216
Simon Glass0f1c9522016-02-29 15:26:04 -0700217void part_print_efi(struct blk_desc *dev_desc)
richardretanubune6745592008-09-26 11:13:22 -0400218{
Egbert Eich071e4232013-04-09 06:03:36 +0000219 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
Doug Anderson698a51d2011-10-19 09:47:31 +0000220 gpt_entry *gpt_pte = NULL;
richardretanubune6745592008-09-26 11:13:22 -0400221 int i = 0;
Heinrich Schuchardt79f29c82022-01-16 12:23:19 +0100222 unsigned char *uuid;
richardretanubune6745592008-09-26 11:13:22 -0400223
richardretanubune6745592008-09-26 11:13:22 -0400224 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko80bded72019-04-11 20:27:50 +0000225 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
226 return;
richardretanubune6745592008-09-26 11:13:22 -0400227
Doug Anderson698a51d2011-10-19 09:47:31 +0000228 debug("%s: gpt-entry at %p\n", __func__, gpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400229
Stephen Warren26163262012-10-08 08:14:33 +0000230 printf("Part\tStart LBA\tEnd LBA\t\tName\n");
Stephen Warren9fbc2b32012-10-08 08:14:36 +0000231 printf("\tAttributes\n");
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200232 printf("\tType GUID\n");
233 printf("\tPartition GUID\n");
Stephen Warren8b855b52012-10-08 08:14:34 +0000234
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100235 for (i = 0; i < le32_to_cpu(gpt_head->num_partition_entries); i++) {
Heinrich Schuchardt8c0435e2022-01-11 15:43:05 +0100236 /* Skip invalid PTE */
Stephen Warrene6df59e2012-10-08 08:14:32 +0000237 if (!is_pte_valid(&gpt_pte[i]))
Heinrich Schuchardt8c0435e2022-01-11 15:43:05 +0100238 continue;
richardretanubune6745592008-09-26 11:13:22 -0400239
Stephen Warren26163262012-10-08 08:14:33 +0000240 printf("%3d\t0x%08llx\t0x%08llx\t\"%s\"\n", (i + 1),
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100241 le64_to_cpu(gpt_pte[i].starting_lba),
242 le64_to_cpu(gpt_pte[i].ending_lba),
Stephen Warren26163262012-10-08 08:14:33 +0000243 print_efiname(&gpt_pte[i]));
Stephen Warren9fbc2b32012-10-08 08:14:36 +0000244 printf("\tattrs:\t0x%016llx\n", gpt_pte[i].attributes.raw);
Heinrich Schuchardt79f29c82022-01-16 12:23:19 +0100245 uuid = (unsigned char *)gpt_pte[i].partition_type_guid.b;
246 if (CONFIG_IS_ENABLED(PARTITION_TYPE_GUID))
247 printf("\ttype:\t%pUl\n\t\t(%pUs)\n", uuid, uuid);
248 else
249 printf("\ttype:\t%pUl\n", uuid);
250 uuid = (unsigned char *)gpt_pte[i].unique_partition_guid.b;
251 printf("\tguid:\t%pUl\n", uuid);
richardretanubune6745592008-09-26 11:13:22 -0400252 }
253
254 /* Remember to free pte */
Doug Anderson698a51d2011-10-19 09:47:31 +0000255 free(gpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400256 return;
257}
258
Simon Glassb89a8442016-02-29 15:25:48 -0700259int part_get_info_efi(struct blk_desc *dev_desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600260 struct disk_partition *info)
richardretanubune6745592008-09-26 11:13:22 -0400261{
Egbert Eich071e4232013-04-09 06:03:36 +0000262 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
Doug Anderson698a51d2011-10-19 09:47:31 +0000263 gpt_entry *gpt_pte = NULL;
richardretanubune6745592008-09-26 11:13:22 -0400264
265 /* "part" argument must be at least 1 */
Simon Glassc5b65372016-03-16 07:45:36 -0600266 if (part < 1) {
Simon Glass3862fab2022-10-11 09:47:11 -0600267 log_debug("Invalid Argument(s)\n");
268 return -EINVAL;
richardretanubune6745592008-09-26 11:13:22 -0400269 }
270
271 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko80bded72019-04-11 20:27:50 +0000272 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
Simon Glass3862fab2022-10-11 09:47:11 -0600273 return -EINVAL;
richardretanubune6745592008-09-26 11:13:22 -0400274
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100275 if (part > le32_to_cpu(gpt_head->num_partition_entries) ||
Stephen Warrene47dbba2012-09-21 09:50:58 +0000276 !is_pte_valid(&gpt_pte[part - 1])) {
Simon Glass3862fab2022-10-11 09:47:11 -0600277 log_debug("*** ERROR: Invalid partition number %d ***\n", part);
Mark Langsdorfe7775312013-09-10 15:14:56 -0500278 free(gpt_pte);
Simon Glass3862fab2022-10-11 09:47:11 -0600279 return -EPERM;
Stephen Warrene47dbba2012-09-21 09:50:58 +0000280 }
281
Steve Raed30cbae2014-05-26 11:52:23 -0700282 /* The 'lbaint_t' casting may limit the maximum disk size to 2 TB */
283 info->start = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].starting_lba);
Richard Retanubun413dfc72009-01-26 08:45:14 -0500284 /* The ending LBA is inclusive, to calculate size, add 1 to it */
Steve Raed30cbae2014-05-26 11:52:23 -0700285 info->size = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].ending_lba) + 1
Richard Retanubun413dfc72009-01-26 08:45:14 -0500286 - info->start;
Egbert Eich071e4232013-04-09 06:03:36 +0000287 info->blksz = dev_desc->blksz;
richardretanubune6745592008-09-26 11:13:22 -0400288
Heinrich Schuchardt08299a92019-07-05 21:27:13 +0200289 snprintf((char *)info->name, sizeof(info->name), "%s",
290 print_efiname(&gpt_pte[part - 1]));
Ben Whitten34fd6c92015-12-30 13:05:58 +0000291 strcpy((char *)info->type, "U-Boot");
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +0100292 info->bootable = get_bootable(&gpt_pte[part - 1]);
Patrick Delaunay73287092017-01-27 11:00:42 +0100293#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200294 uuid_bin_to_str(gpt_pte[part - 1].unique_partition_guid.b, info->uuid,
295 UUID_STR_FORMAT_GUID);
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000296#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100297#ifdef CONFIG_PARTITION_TYPE_GUID
298 uuid_bin_to_str(gpt_pte[part - 1].partition_type_guid.b,
299 info->type_guid, UUID_STR_FORMAT_GUID);
300#endif
richardretanubune6745592008-09-26 11:13:22 -0400301
Simon Glass3862fab2022-10-11 09:47:11 -0600302 log_debug("start 0x" LBAF ", size 0x" LBAF ", name %s\n", info->start,
303 info->size, info->name);
richardretanubune6745592008-09-26 11:13:22 -0400304
305 /* Remember to free pte */
Doug Anderson698a51d2011-10-19 09:47:31 +0000306 free(gpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400307 return 0;
308}
309
Simon Glass0f1c9522016-02-29 15:26:04 -0700310static int part_test_efi(struct blk_desc *dev_desc)
richardretanubune6745592008-09-26 11:13:22 -0400311{
Egbert Eich071e4232013-04-09 06:03:36 +0000312 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, legacymbr, 1, dev_desc->blksz);
richardretanubune6745592008-09-26 11:13:22 -0400313
314 /* Read legacy MBR from block 0 and validate it */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700315 if ((blk_dread(dev_desc, 0, 1, (ulong *)legacymbr) != 1)
Anton staaf3b3df4e2011-10-12 13:56:04 +0000316 || (is_pmbr_valid(legacymbr) != 1)) {
richardretanubune6745592008-09-26 11:13:22 -0400317 return -1;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100318 }
319 return 0;
320}
321
322/**
323 * set_protective_mbr(): Set the EFI protective MBR
324 * @param dev_desc - block device descriptor
325 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100326 * Return: - zero on success, otherwise error
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100327 */
Simon Glasse3394752016-02-29 15:25:34 -0700328static int set_protective_mbr(struct blk_desc *dev_desc)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100329{
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100330 /* Setup the Protective MBR */
Patrick Delaunaye54b5472017-11-17 10:08:18 +0100331 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, p_mbr, 1, dev_desc->blksz);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100332 if (p_mbr == NULL) {
333 printf("%s: calloc failed!\n", __func__);
334 return -1;
335 }
Vincent Tinelli35620492017-01-30 15:46:07 +0300336
337 /* Read MBR to backup boot code if it exists */
338 if (blk_dread(dev_desc, 0, 1, p_mbr) != 1) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900339 pr_err("** Can't read from device %d **\n", dev_desc->devnum);
Vincent Tinelli35620492017-01-30 15:46:07 +0300340 return -1;
341 }
342
Sam Protsenkoa3a51a42018-05-22 02:04:21 +0300343 /* Clear all data in MBR except of backed up boot code */
344 memset((char *)p_mbr + MSDOS_MBR_BOOT_CODE_SIZE, 0, sizeof(*p_mbr) -
345 MSDOS_MBR_BOOT_CODE_SIZE);
346
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100347 /* Append signature */
348 p_mbr->signature = MSDOS_MBR_SIGNATURE;
349 p_mbr->partition_record[0].sys_ind = EFI_PMBR_OSTYPE_EFI_GPT;
350 p_mbr->partition_record[0].start_sect = 1;
Maxime Ripard6d8a1522015-01-08 12:26:44 +0100351 p_mbr->partition_record[0].nr_sects = (u32) dev_desc->lba - 1;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100352
353 /* Write MBR sector to the MMC device */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700354 if (blk_dwrite(dev_desc, 0, 1, p_mbr) != 1) {
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100355 printf("** Can't write to device %d **\n",
Simon Glass2f26fff2016-02-29 15:25:51 -0700356 dev_desc->devnum);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100357 return -1;
358 }
359
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100360 return 0;
361}
362
Simon Glasse3394752016-02-29 15:25:34 -0700363int write_gpt_table(struct blk_desc *dev_desc,
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100364 gpt_header *gpt_h, gpt_entry *gpt_e)
365{
Egbert Eich071e4232013-04-09 06:03:36 +0000366 const int pte_blk_cnt = BLOCK_CNT((gpt_h->num_partition_entries
367 * sizeof(gpt_entry)), dev_desc);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100368 u32 calc_crc32;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100369
370 debug("max lba: %x\n", (u32) dev_desc->lba);
371 /* Setup the Protective MBR */
372 if (set_protective_mbr(dev_desc) < 0)
373 goto err;
374
375 /* Generate CRC for the Primary GPT Header */
376 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
377 le32_to_cpu(gpt_h->num_partition_entries) *
378 le32_to_cpu(gpt_h->sizeof_partition_entry));
379 gpt_h->partition_entry_array_crc32 = cpu_to_le32(calc_crc32);
380
381 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
382 le32_to_cpu(gpt_h->header_size));
383 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
384
385 /* Write the First GPT to the block right after the Legacy MBR */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700386 if (blk_dwrite(dev_desc, 1, 1, gpt_h) != 1)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100387 goto err;
388
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100389 if (blk_dwrite(dev_desc, le64_to_cpu(gpt_h->partition_entry_lba),
390 pte_blk_cnt, gpt_e) != pte_blk_cnt)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100391 goto err;
392
Steve Rae6f5e17d2014-12-18 12:13:42 +0100393 prepare_backup_gpt_header(gpt_h);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100394
Simon Glass2ee8ada2016-02-29 15:25:52 -0700395 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->last_usable_lba)
396 + 1, pte_blk_cnt, gpt_e) != pte_blk_cnt)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100397 goto err;
398
Simon Glass2ee8ada2016-02-29 15:25:52 -0700399 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->my_lba), 1,
400 gpt_h) != 1)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100401 goto err;
402
403 debug("GPT successfully written to block device!\n");
404 return 0;
405
406 err:
Simon Glass2f26fff2016-02-29 15:25:51 -0700407 printf("** Can't write to device %d **\n", dev_desc->devnum);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100408 return -1;
409}
410
Maxime Ripard0d390872017-08-23 16:01:32 +0200411int gpt_fill_pte(struct blk_desc *dev_desc,
412 gpt_header *gpt_h, gpt_entry *gpt_e,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600413 struct disk_partition *partitions, int parts)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100414{
Steve Raed30cbae2014-05-26 11:52:23 -0700415 lbaint_t offset = (lbaint_t)le64_to_cpu(gpt_h->first_usable_lba);
Steve Raed30cbae2014-05-26 11:52:23 -0700416 lbaint_t last_usable_lba = (lbaint_t)
417 le64_to_cpu(gpt_h->last_usable_lba);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100418 int i, k;
Marek Vasut941579e2013-05-19 12:53:34 +0000419 size_t efiname_len, dosname_len;
Patrick Delaunay73287092017-01-27 11:00:42 +0100420#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100421 char *str_uuid;
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200422 unsigned char *bin_uuid;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100423#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100424#ifdef CONFIG_PARTITION_TYPE_GUID
425 char *str_type_guid;
426 unsigned char *bin_type_guid;
427#endif
Maxime Ripard7947c692017-08-23 16:01:33 +0200428 size_t hdr_start = gpt_h->my_lba;
429 size_t hdr_end = hdr_start + 1;
430
431 size_t pte_start = gpt_h->partition_entry_lba;
432 size_t pte_end = pte_start +
433 gpt_h->num_partition_entries * gpt_h->sizeof_partition_entry /
434 dev_desc->blksz;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100435
436 for (i = 0; i < parts; i++) {
437 /* partition starting lba */
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200438 lbaint_t start = partitions[i].start;
439 lbaint_t size = partitions[i].size;
440
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100441 if (start) {
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200442 offset = start + size;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100443 } else {
Maxime Ripard7947c692017-08-23 16:01:33 +0200444 start = offset;
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200445 offset += size;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100446 }
Maxime Ripard7947c692017-08-23 16:01:33 +0200447
448 /*
449 * If our partition overlaps with either the GPT
450 * header, or the partition entry, reject it.
451 */
Patrick Delaunaybe4a0fa2017-10-18 15:11:05 +0200452 if (((start < hdr_end && hdr_start < (start + size)) ||
453 (start < pte_end && pte_start < (start + size)))) {
Maxime Ripard7947c692017-08-23 16:01:33 +0200454 printf("Partition overlap\n");
455 return -1;
456 }
457
458 gpt_e[i].starting_lba = cpu_to_le64(start);
459
Patrick Delaunay10172f32016-05-02 14:43:33 +0200460 if (offset > (last_usable_lba + 1)) {
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100461 printf("Partitions layout exceds disk size\n");
462 return -1;
463 }
464 /* partition ending lba */
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200465 if ((i == parts - 1) && (size == 0))
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100466 /* extend the last partition to maximuim */
467 gpt_e[i].ending_lba = gpt_h->last_usable_lba;
468 else
469 gpt_e[i].ending_lba = cpu_to_le64(offset - 1);
470
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100471#ifdef CONFIG_PARTITION_TYPE_GUID
472 str_type_guid = partitions[i].type_guid;
473 bin_type_guid = gpt_e[i].partition_type_guid.b;
474 if (strlen(str_type_guid)) {
475 if (uuid_str_to_bin(str_type_guid, bin_type_guid,
476 UUID_STR_FORMAT_GUID)) {
477 printf("Partition no. %d: invalid type guid: %s\n",
478 i, str_type_guid);
479 return -1;
480 }
481 } else {
482 /* default partition type GUID */
483 memcpy(bin_type_guid,
Heinrich Schuchardtfac78672018-06-09 17:50:18 +0200484 &partition_basic_data_guid, 16);
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100485 }
486#else
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100487 /* partition type GUID */
488 memcpy(gpt_e[i].partition_type_guid.b,
Heinrich Schuchardtfac78672018-06-09 17:50:18 +0200489 &partition_basic_data_guid, 16);
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100490#endif
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100491
Patrick Delaunay73287092017-01-27 11:00:42 +0100492#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100493 str_uuid = partitions[i].uuid;
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200494 bin_uuid = gpt_e[i].unique_partition_guid.b;
495
Vincent Tinellibdfacea2017-02-27 16:11:15 +0200496 if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_GUID)) {
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100497 printf("Partition no. %d: invalid guid: %s\n",
498 i, str_uuid);
499 return -1;
500 }
501#endif
502
503 /* partition attributes */
504 memset(&gpt_e[i].attributes, 0,
505 sizeof(gpt_entry_attributes));
506
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +0100507 if (partitions[i].bootable & PART_BOOTABLE)
Patrick Delaunay7840c4a2015-11-17 11:36:52 +0100508 gpt_e[i].attributes.fields.legacy_bios_bootable = 1;
509
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100510 /* partition name */
Marek Vasut941579e2013-05-19 12:53:34 +0000511 efiname_len = sizeof(gpt_e[i].partition_name)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100512 / sizeof(efi_char16_t);
Marek Vasut941579e2013-05-19 12:53:34 +0000513 dosname_len = sizeof(partitions[i].name);
514
515 memset(gpt_e[i].partition_name, 0,
516 sizeof(gpt_e[i].partition_name));
517
518 for (k = 0; k < min(dosname_len, efiname_len); k++)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100519 gpt_e[i].partition_name[k] =
520 (efi_char16_t)(partitions[i].name[k]);
521
Steve Raed30cbae2014-05-26 11:52:23 -0700522 debug("%s: name: %s offset[%d]: 0x" LBAF
523 " size[%d]: 0x" LBAF "\n",
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100524 __func__, partitions[i].name, i,
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200525 offset, i, size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100526 }
527
528 return 0;
529}
530
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100531static uint32_t partition_entries_offset(struct blk_desc *dev_desc)
532{
533 uint32_t offset_blks = 2;
Maxime Ripard1d088f02017-08-23 16:01:30 +0200534 uint32_t __maybe_unused offset_bytes;
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100535 int __maybe_unused config_offset;
536
537#if defined(CONFIG_EFI_PARTITION_ENTRIES_OFF)
538 /*
539 * Some architectures require their SPL loader at a fixed
540 * address within the first 16KB of the disk. To avoid an
541 * overlap with the partition entries of the EFI partition
542 * table, the first safe offset (in bytes, from the start of
543 * the disk) for the entries can be set in
544 * CONFIG_EFI_PARTITION_ENTRIES_OFF.
545 */
Maxime Ripard1d088f02017-08-23 16:01:30 +0200546 offset_bytes =
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100547 PAD_TO_BLOCKSIZE(CONFIG_EFI_PARTITION_ENTRIES_OFF, dev_desc);
Maxime Ripard1d088f02017-08-23 16:01:30 +0200548 offset_blks = offset_bytes / dev_desc->blksz;
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100549#endif
550
551#if defined(CONFIG_OF_CONTROL)
552 /*
553 * Allow the offset of the first partition entires (in bytes
554 * from the start of the device) to be specified as a property
555 * of the device tree '/config' node.
556 */
Simon Glass0034d962021-08-07 07:24:01 -0600557 config_offset = ofnode_conf_read_int(
558 "u-boot,efi-partition-entries-offset", -EINVAL);
Maxime Ripard1d088f02017-08-23 16:01:30 +0200559 if (config_offset != -EINVAL) {
560 offset_bytes = PAD_TO_BLOCKSIZE(config_offset, dev_desc);
561 offset_blks = offset_bytes / dev_desc->blksz;
562 }
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100563#endif
564
565 debug("efi: partition entries offset (in blocks): %d\n", offset_blks);
566
567 /*
568 * The earliest LBA this can be at is LBA#2 (i.e. right behind
569 * the (protective) MBR and the GPT header.
570 */
571 if (offset_blks < 2)
572 offset_blks = 2;
573
574 return offset_blks;
575}
576
Simon Glasse3394752016-02-29 15:25:34 -0700577int gpt_fill_header(struct blk_desc *dev_desc, gpt_header *gpt_h,
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100578 char *str_guid, int parts_count)
579{
Simon Glass7903d212018-10-01 12:22:35 -0600580 gpt_h->signature = cpu_to_le64(GPT_HEADER_SIGNATURE_UBOOT);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100581 gpt_h->revision = cpu_to_le32(GPT_HEADER_REVISION_V1);
582 gpt_h->header_size = cpu_to_le32(sizeof(gpt_header));
583 gpt_h->my_lba = cpu_to_le64(1);
584 gpt_h->alternate_lba = cpu_to_le64(dev_desc->lba - 1);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100585 gpt_h->last_usable_lba = cpu_to_le64(dev_desc->lba - 34);
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100586 gpt_h->partition_entry_lba =
587 cpu_to_le64(partition_entries_offset(dev_desc));
588 gpt_h->first_usable_lba =
589 cpu_to_le64(le64_to_cpu(gpt_h->partition_entry_lba) + 32);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100590 gpt_h->num_partition_entries = cpu_to_le32(GPT_ENTRY_NUMBERS);
591 gpt_h->sizeof_partition_entry = cpu_to_le32(sizeof(gpt_entry));
592 gpt_h->header_crc32 = 0;
593 gpt_h->partition_entry_array_crc32 = 0;
594
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200595 if (uuid_str_to_bin(str_guid, gpt_h->disk_guid.b, UUID_STR_FORMAT_GUID))
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100596 return -1;
597
598 return 0;
599}
600
Simon Glasse3394752016-02-29 15:25:34 -0700601int gpt_restore(struct blk_desc *dev_desc, char *str_disk_guid,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600602 struct disk_partition *partitions, int parts_count)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100603{
Lukasz Majewski60119122017-10-27 12:28:10 +0200604 gpt_header *gpt_h;
Egbert Eich071e4232013-04-09 06:03:36 +0000605 gpt_entry *gpt_e;
Lukasz Majewski60119122017-10-27 12:28:10 +0200606 int ret, size;
Egbert Eich071e4232013-04-09 06:03:36 +0000607
Lukasz Majewski60119122017-10-27 12:28:10 +0200608 size = PAD_TO_BLOCKSIZE(sizeof(gpt_header), dev_desc);
609 gpt_h = malloc_cache_aligned(size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100610 if (gpt_h == NULL) {
611 printf("%s: calloc failed!\n", __func__);
612 return -1;
613 }
Lukasz Majewski60119122017-10-27 12:28:10 +0200614 memset(gpt_h, 0, size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100615
Lukasz Majewski60119122017-10-27 12:28:10 +0200616 size = PAD_TO_BLOCKSIZE(GPT_ENTRY_NUMBERS * sizeof(gpt_entry),
617 dev_desc);
618 gpt_e = malloc_cache_aligned(size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100619 if (gpt_e == NULL) {
620 printf("%s: calloc failed!\n", __func__);
621 free(gpt_h);
622 return -1;
623 }
Lukasz Majewski60119122017-10-27 12:28:10 +0200624 memset(gpt_e, 0, size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100625
626 /* Generate Primary GPT header (LBA1) */
627 ret = gpt_fill_header(dev_desc, gpt_h, str_disk_guid, parts_count);
628 if (ret)
629 goto err;
630
631 /* Generate partition entries */
Maxime Ripard0d390872017-08-23 16:01:32 +0200632 ret = gpt_fill_pte(dev_desc, gpt_h, gpt_e, partitions, parts_count);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100633 if (ret)
634 goto err;
635
636 /* Write GPT partition table */
637 ret = write_gpt_table(dev_desc, gpt_h, gpt_e);
638
639err:
640 free(gpt_e);
641 free(gpt_h);
642 return ret;
643}
Steve Rae7d059342014-12-12 15:51:54 -0800644
Heinrich Schuchardt7cfc0332019-07-14 18:12:32 +0200645/**
646 * gpt_convert_efi_name_to_char() - convert u16 string to char string
647 *
648 * TODO: this conversion only supports ANSI characters
649 *
650 * @s: target buffer
651 * @es: u16 string to be converted
652 * @n: size of target buffer
653 */
654static void gpt_convert_efi_name_to_char(char *s, void *es, int n)
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100655{
Heinrich Schuchardt7cfc0332019-07-14 18:12:32 +0200656 char *ess = es;
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100657 int i, j;
658
659 memset(s, '\0', n);
660
661 for (i = 0, j = 0; j < n; i += 2, j++) {
662 s[j] = ess[i];
663 if (!ess[i])
664 return;
665 }
666}
667
Simon Glasse3394752016-02-29 15:25:34 -0700668int gpt_verify_headers(struct blk_desc *dev_desc, gpt_header *gpt_head,
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100669 gpt_entry **gpt_pte)
670{
671 /*
672 * This function validates AND
673 * fills in the GPT header and PTE
674 */
675 if (is_gpt_valid(dev_desc,
676 GPT_PRIMARY_PARTITION_TABLE_LBA,
677 gpt_head, gpt_pte) != 1) {
678 printf("%s: *** ERROR: Invalid GPT ***\n",
679 __func__);
680 return -1;
681 }
Eugeniu Rosca27901b92019-04-30 04:53:45 +0200682
683 /* Free pte before allocating again */
684 free(*gpt_pte);
685
Stefan Herbrechtsmeier76df0732021-03-08 16:07:11 +0000686 /*
687 * Check that the alternate_lba entry points to the last LBA
688 */
689 if (le64_to_cpu(gpt_head->alternate_lba) != (dev_desc->lba - 1)) {
690 printf("%s: *** ERROR: Misplaced Backup GPT ***\n",
691 __func__);
692 return -1;
693 }
694
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100695 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
696 gpt_head, gpt_pte) != 1) {
697 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
698 __func__);
699 return -1;
700 }
701
702 return 0;
703}
704
Philippe Reynes8b054f52022-04-22 17:46:48 +0200705static void restore_primary_gpt_header(gpt_header *gpt_h, struct blk_desc *dev_desc)
706{
707 u32 calc_crc32;
708 u64 val;
709
710 /* recalculate the values for the Primary GPT Header */
711 val = le64_to_cpu(gpt_h->my_lba);
712 gpt_h->my_lba = gpt_h->alternate_lba;
713 gpt_h->alternate_lba = cpu_to_le64(val);
714 gpt_h->partition_entry_lba = cpu_to_le64(partition_entries_offset(dev_desc));
715
716 gpt_h->header_crc32 = 0;
717
718 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
719 le32_to_cpu(gpt_h->header_size));
720 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
721}
722
723static int write_one_gpt_table(struct blk_desc *dev_desc,
724 gpt_header *gpt_h, gpt_entry *gpt_e)
725{
726 const int pte_blk_cnt = BLOCK_CNT((gpt_h->num_partition_entries
727 * sizeof(gpt_entry)), dev_desc);
728 lbaint_t start;
729 int ret = 0;
730
731 start = le64_to_cpu(gpt_h->my_lba);
732 if (blk_dwrite(dev_desc, start, 1, gpt_h) != 1) {
733 ret = -1;
734 goto out;
735 }
736
737 start = le64_to_cpu(gpt_h->partition_entry_lba);
738 if (blk_dwrite(dev_desc, start, pte_blk_cnt, gpt_e) != pte_blk_cnt) {
739 ret = -1;
740 goto out;
741 }
742
743 out:
744 return ret;
745}
746
747int gpt_repair_headers(struct blk_desc *dev_desc)
748{
749 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_h1, 1, dev_desc->blksz);
750 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_h2, 1, dev_desc->blksz);
751 gpt_entry *gpt_e1 = NULL, *gpt_e2 = NULL;
752 int is_gpt1_valid, is_gpt2_valid;
753 int ret = -1;
754
755 is_gpt1_valid = is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA,
756 gpt_h1, &gpt_e1);
757 is_gpt2_valid = is_gpt_valid(dev_desc, dev_desc->lba - 1,
758 gpt_h2, &gpt_e2);
759
760 if (is_gpt1_valid && is_gpt2_valid) {
761 ret = 0;
762 goto out;
763 }
764
765 if (is_gpt1_valid && !is_gpt2_valid) {
766 prepare_backup_gpt_header(gpt_h1);
767 ret = write_one_gpt_table(dev_desc, gpt_h1, gpt_e1);
768 goto out;
769 }
770
771 if (!is_gpt1_valid && is_gpt2_valid) {
772 restore_primary_gpt_header(gpt_h2, dev_desc);
773 ret = write_one_gpt_table(dev_desc, gpt_h2, gpt_e2);
774 goto out;
775 }
776
777 if (!is_gpt1_valid && !is_gpt2_valid) {
778 ret = -1;
779 goto out;
780 }
781
782 out:
783 if (is_gpt1_valid)
784 free(gpt_e1);
785 if (is_gpt2_valid)
786 free(gpt_e2);
787
788 return ret;
789}
790
Simon Glasse3394752016-02-29 15:25:34 -0700791int gpt_verify_partitions(struct blk_desc *dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600792 struct disk_partition *partitions, int parts,
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100793 gpt_header *gpt_head, gpt_entry **gpt_pte)
794{
795 char efi_str[PARTNAME_SZ + 1];
796 u64 gpt_part_size;
797 gpt_entry *gpt_e;
798 int ret, i;
799
800 ret = gpt_verify_headers(dev_desc, gpt_head, gpt_pte);
801 if (ret)
802 return ret;
803
804 gpt_e = *gpt_pte;
805
806 for (i = 0; i < parts; i++) {
807 if (i == gpt_head->num_partition_entries) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900808 pr_err("More partitions than allowed!\n");
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100809 return -1;
810 }
811
812 /* Check if GPT and ENV partition names match */
813 gpt_convert_efi_name_to_char(efi_str, gpt_e[i].partition_name,
814 PARTNAME_SZ + 1);
815
816 debug("%s: part: %2d name - GPT: %16s, ENV: %16s ",
817 __func__, i, efi_str, partitions[i].name);
818
819 if (strncmp(efi_str, (char *)partitions[i].name,
820 sizeof(partitions->name))) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900821 pr_err("Partition name: %s does not match %s!\n",
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100822 efi_str, (char *)partitions[i].name);
823 return -1;
824 }
825
826 /* Check if GPT and ENV sizes match */
827 gpt_part_size = le64_to_cpu(gpt_e[i].ending_lba) -
828 le64_to_cpu(gpt_e[i].starting_lba) + 1;
829 debug("size(LBA) - GPT: %8llu, ENV: %8llu ",
Simon Glass03d7b602016-02-29 15:25:36 -0700830 (unsigned long long)gpt_part_size,
831 (unsigned long long)partitions[i].size);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100832
833 if (le64_to_cpu(gpt_part_size) != partitions[i].size) {
Kever Yangf1d070d2016-07-29 11:12:18 +0800834 /* We do not check the extend partition size */
835 if ((i == parts - 1) && (partitions[i].size == 0))
836 continue;
837
Masahiro Yamada81e10422017-09-16 14:10:41 +0900838 pr_err("Partition %s size: %llu does not match %llu!\n",
Simon Glass03d7b602016-02-29 15:25:36 -0700839 efi_str, (unsigned long long)gpt_part_size,
840 (unsigned long long)partitions[i].size);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100841 return -1;
842 }
843
844 /*
845 * Start address is optional - check only if provided
846 * in '$partition' variable
847 */
848 if (!partitions[i].start) {
849 debug("\n");
850 continue;
851 }
852
853 /* Check if GPT and ENV start LBAs match */
854 debug("start LBA - GPT: %8llu, ENV: %8llu\n",
855 le64_to_cpu(gpt_e[i].starting_lba),
Simon Glass03d7b602016-02-29 15:25:36 -0700856 (unsigned long long)partitions[i].start);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100857
858 if (le64_to_cpu(gpt_e[i].starting_lba) != partitions[i].start) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900859 pr_err("Partition %s start: %llu does not match %llu!\n",
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100860 efi_str, le64_to_cpu(gpt_e[i].starting_lba),
Simon Glass03d7b602016-02-29 15:25:36 -0700861 (unsigned long long)partitions[i].start);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100862 return -1;
863 }
864 }
865
866 return 0;
867}
868
Simon Glasse3394752016-02-29 15:25:34 -0700869int is_valid_gpt_buf(struct blk_desc *dev_desc, void *buf)
Steve Rae7d059342014-12-12 15:51:54 -0800870{
871 gpt_header *gpt_h;
872 gpt_entry *gpt_e;
873
874 /* determine start of GPT Header in the buffer */
875 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
876 dev_desc->blksz);
877 if (validate_gpt_header(gpt_h, GPT_PRIMARY_PARTITION_TABLE_LBA,
878 dev_desc->lba))
879 return -1;
880
881 /* determine start of GPT Entries in the buffer */
882 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
883 dev_desc->blksz);
884 if (validate_gpt_entries(gpt_h, gpt_e))
885 return -1;
886
887 return 0;
888}
889
Simon Glasse3394752016-02-29 15:25:34 -0700890int write_mbr_and_gpt_partitions(struct blk_desc *dev_desc, void *buf)
Steve Rae7d059342014-12-12 15:51:54 -0800891{
892 gpt_header *gpt_h;
893 gpt_entry *gpt_e;
894 int gpt_e_blk_cnt;
895 lbaint_t lba;
896 int cnt;
897
898 if (is_valid_gpt_buf(dev_desc, buf))
899 return -1;
900
901 /* determine start of GPT Header in the buffer */
902 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
903 dev_desc->blksz);
904
905 /* determine start of GPT Entries in the buffer */
906 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
907 dev_desc->blksz);
908 gpt_e_blk_cnt = BLOCK_CNT((le32_to_cpu(gpt_h->num_partition_entries) *
909 le32_to_cpu(gpt_h->sizeof_partition_entry)),
910 dev_desc);
911
912 /* write MBR */
913 lba = 0; /* MBR is always at 0 */
914 cnt = 1; /* MBR (1 block) */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700915 if (blk_dwrite(dev_desc, lba, cnt, buf) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800916 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
917 __func__, "MBR", cnt, lba);
918 return 1;
919 }
920
921 /* write Primary GPT */
922 lba = GPT_PRIMARY_PARTITION_TABLE_LBA;
923 cnt = 1; /* GPT Header (1 block) */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700924 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800925 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
926 __func__, "Primary GPT Header", cnt, lba);
927 return 1;
928 }
929
930 lba = le64_to_cpu(gpt_h->partition_entry_lba);
931 cnt = gpt_e_blk_cnt;
Simon Glass2ee8ada2016-02-29 15:25:52 -0700932 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800933 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
934 __func__, "Primary GPT Entries", cnt, lba);
935 return 1;
936 }
937
938 prepare_backup_gpt_header(gpt_h);
939
940 /* write Backup GPT */
941 lba = le64_to_cpu(gpt_h->partition_entry_lba);
942 cnt = gpt_e_blk_cnt;
Simon Glass2ee8ada2016-02-29 15:25:52 -0700943 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800944 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
945 __func__, "Backup GPT Entries", cnt, lba);
946 return 1;
947 }
948
949 lba = le64_to_cpu(gpt_h->my_lba);
950 cnt = 1; /* GPT Header (1 block) */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700951 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800952 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
953 __func__, "Backup GPT Header", cnt, lba);
954 return 1;
955 }
956
Gary Bissonb5fe1992021-01-26 14:56:23 +0100957 /* Update the partition table entries*/
958 part_init(dev_desc);
959
Steve Rae7d059342014-12-12 15:51:54 -0800960 return 0;
961}
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100962#endif
963
richardretanubune6745592008-09-26 11:13:22 -0400964/*
965 * Private functions
966 */
967/*
968 * pmbr_part_valid(): Check for EFI partition signature
969 *
970 * Returns: 1 if EFI GPT partition type is found.
971 */
972static int pmbr_part_valid(struct partition *part)
973{
974 if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
Marc Dietrich20ca3ad2013-03-29 07:57:10 +0000975 get_unaligned_le32(&part->start_sect) == 1UL) {
richardretanubune6745592008-09-26 11:13:22 -0400976 return 1;
977 }
978
979 return 0;
980}
981
982/*
983 * is_pmbr_valid(): test Protective MBR for validity
984 *
985 * Returns: 1 if PMBR is valid, 0 otherwise.
986 * Validity depends on two things:
987 * 1) MSDOS signature is in the last two bytes of the MBR
988 * 2) One partition of type 0xEE is found, checked by pmbr_part_valid()
989 */
990static int is_pmbr_valid(legacy_mbr * mbr)
991{
992 int i = 0;
993
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100994 if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
richardretanubune6745592008-09-26 11:13:22 -0400995 return 0;
richardretanubune6745592008-09-26 11:13:22 -0400996
997 for (i = 0; i < 4; i++) {
998 if (pmbr_part_valid(&mbr->partition_record[i])) {
999 return 1;
1000 }
1001 }
1002 return 0;
1003}
1004
1005/**
1006 * is_gpt_valid() - tests one GPT header and PTEs for validity
1007 *
1008 * lba is the logical block address of the GPT header to test
1009 * gpt is a GPT header ptr, filled on return.
1010 * ptes is a PTEs ptr, filled on return.
1011 *
Urja Rannikko54950fa2019-04-11 20:27:51 +00001012 * Description: returns 1 if valid, 0 on error, 2 if ignored header
richardretanubune6745592008-09-26 11:13:22 -04001013 * If valid, returns pointers to PTEs.
1014 */
Simon Glasse3394752016-02-29 15:25:34 -07001015static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
Steve Raed30cbae2014-05-26 11:52:23 -07001016 gpt_header *pgpt_head, gpt_entry **pgpt_pte)
richardretanubune6745592008-09-26 11:13:22 -04001017{
Tom Rinie6131f12017-10-03 09:38:44 -04001018 /* Confirm valid arguments prior to allocation. */
richardretanubune6745592008-09-26 11:13:22 -04001019 if (!dev_desc || !pgpt_head) {
Doug Andersondc036672011-10-19 08:04:46 +00001020 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -04001021 return 0;
1022 }
1023
Patrick Delaunaye54b5472017-11-17 10:08:18 +01001024 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, mbr, 1, dev_desc->blksz);
Tom Rinie6131f12017-10-03 09:38:44 -04001025
Peter Jonesc27e1c12017-09-13 18:05:25 -04001026 /* Read MBR Header from device */
1027 if (blk_dread(dev_desc, 0, 1, (ulong *)mbr) != 1) {
1028 printf("*** ERROR: Can't read MBR header ***\n");
1029 return 0;
1030 }
1031
richardretanubune6745592008-09-26 11:13:22 -04001032 /* Read GPT Header from device */
Simon Glass2ee8ada2016-02-29 15:25:52 -07001033 if (blk_dread(dev_desc, (lbaint_t)lba, 1, pgpt_head) != 1) {
richardretanubune6745592008-09-26 11:13:22 -04001034 printf("*** ERROR: Can't read GPT header ***\n");
1035 return 0;
1036 }
1037
Urja Rannikko54950fa2019-04-11 20:27:51 +00001038 /* Invalid but nothing to yell about. */
1039 if (le64_to_cpu(pgpt_head->signature) == GPT_HEADER_CHROMEOS_IGNORE) {
1040 debug("ChromeOS 'IGNOREME' GPT header found and ignored\n");
1041 return 2;
1042 }
1043
Steve Rae6f5e17d2014-12-18 12:13:42 +01001044 if (validate_gpt_header(pgpt_head, (lbaint_t)lba, dev_desc->lba))
richardretanubune6745592008-09-26 11:13:22 -04001045 return 0;
richardretanubune6745592008-09-26 11:13:22 -04001046
Peter Jonesc27e1c12017-09-13 18:05:25 -04001047 if (dev_desc->sig_type == SIG_TYPE_NONE) {
1048 efi_guid_t empty = {};
1049 if (memcmp(&pgpt_head->disk_guid, &empty, sizeof(empty))) {
1050 dev_desc->sig_type = SIG_TYPE_GUID;
1051 memcpy(&dev_desc->guid_sig, &pgpt_head->disk_guid,
1052 sizeof(empty));
1053 } else if (mbr->unique_mbr_signature != 0) {
1054 dev_desc->sig_type = SIG_TYPE_MBR;
1055 dev_desc->mbr_sig = mbr->unique_mbr_signature;
1056 }
1057 }
1058
richardretanubune6745592008-09-26 11:13:22 -04001059 /* Read and allocate Partition Table Entries */
1060 *pgpt_pte = alloc_read_gpt_entries(dev_desc, pgpt_head);
Heinrich Schuchardtaaeb39a2022-05-09 21:35:44 +02001061 if (!*pgpt_pte)
richardretanubune6745592008-09-26 11:13:22 -04001062 return 0;
richardretanubune6745592008-09-26 11:13:22 -04001063
Steve Rae6f5e17d2014-12-18 12:13:42 +01001064 if (validate_gpt_entries(pgpt_head, *pgpt_pte)) {
Doug Anderson698a51d2011-10-19 09:47:31 +00001065 free(*pgpt_pte);
richardretanubune6745592008-09-26 11:13:22 -04001066 return 0;
1067 }
1068
1069 /* We're done, all's well */
1070 return 1;
1071}
1072
1073/**
Urja Rannikko80bded72019-04-11 20:27:50 +00001074 * find_valid_gpt() - finds a valid GPT header and PTEs
1075 *
1076 * gpt is a GPT header ptr, filled on return.
1077 * ptes is a PTEs ptr, filled on return.
1078 *
1079 * Description: returns 1 if found a valid gpt, 0 on error.
1080 * If valid, returns pointers to PTEs.
1081 */
1082static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head,
1083 gpt_entry **pgpt_pte)
1084{
Urja Rannikko54950fa2019-04-11 20:27:51 +00001085 int r;
1086
1087 r = is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA, gpt_head,
1088 pgpt_pte);
1089
1090 if (r != 1) {
1091 if (r != 2)
1092 printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
1093
1094 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1), gpt_head,
1095 pgpt_pte) != 1) {
Urja Rannikko80bded72019-04-11 20:27:50 +00001096 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
1097 __func__);
1098 return 0;
1099 }
Urja Rannikko54950fa2019-04-11 20:27:51 +00001100 if (r != 2)
1101 printf("%s: *** Using Backup GPT ***\n",
1102 __func__);
Urja Rannikko80bded72019-04-11 20:27:50 +00001103 }
1104 return 1;
1105}
1106
1107/**
richardretanubune6745592008-09-26 11:13:22 -04001108 * alloc_read_gpt_entries(): reads partition entries from disk
1109 * @dev_desc
1110 * @gpt - GPT header
1111 *
1112 * Description: Returns ptes on success, NULL on error.
1113 * Allocates space for PTEs based on information found in @gpt.
1114 * Notes: remember to free pte when you're done!
1115 */
Simon Glasse3394752016-02-29 15:25:34 -07001116static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
1117 gpt_header *pgpt_head)
richardretanubune6745592008-09-26 11:13:22 -04001118{
Egbert Eich071e4232013-04-09 06:03:36 +00001119 size_t count = 0, blk_cnt;
Stephen Warrene73f2962015-12-07 11:38:48 -07001120 lbaint_t blk;
richardretanubune6745592008-09-26 11:13:22 -04001121 gpt_entry *pte = NULL;
1122
1123 if (!dev_desc || !pgpt_head) {
Doug Andersondc036672011-10-19 08:04:46 +00001124 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -04001125 return NULL;
1126 }
1127
Chang Hyun Park823ffde2012-12-11 11:09:45 +01001128 count = le32_to_cpu(pgpt_head->num_partition_entries) *
1129 le32_to_cpu(pgpt_head->sizeof_partition_entry);
richardretanubune6745592008-09-26 11:13:22 -04001130
Simon Glassbb10e9b2016-07-22 09:22:47 -06001131 debug("%s: count = %u * %u = %lu\n", __func__,
Chang Hyun Park823ffde2012-12-11 11:09:45 +01001132 (u32) le32_to_cpu(pgpt_head->num_partition_entries),
Simon Glassbb10e9b2016-07-22 09:22:47 -06001133 (u32) le32_to_cpu(pgpt_head->sizeof_partition_entry),
1134 (ulong)count);
richardretanubune6745592008-09-26 11:13:22 -04001135
1136 /* Allocate memory for PTE, remember to FREE */
1137 if (count != 0) {
Egbert Eich071e4232013-04-09 06:03:36 +00001138 pte = memalign(ARCH_DMA_MINALIGN,
1139 PAD_TO_BLOCKSIZE(count, dev_desc));
richardretanubune6745592008-09-26 11:13:22 -04001140 }
1141
1142 if (count == 0 || pte == NULL) {
Simon Glassbb10e9b2016-07-22 09:22:47 -06001143 printf("%s: ERROR: Can't allocate %#lX bytes for GPT Entries\n",
1144 __func__, (ulong)count);
richardretanubune6745592008-09-26 11:13:22 -04001145 return NULL;
1146 }
1147
1148 /* Read GPT Entries from device */
Stephen Warrene73f2962015-12-07 11:38:48 -07001149 blk = le64_to_cpu(pgpt_head->partition_entry_lba);
Egbert Eich071e4232013-04-09 06:03:36 +00001150 blk_cnt = BLOCK_CNT(count, dev_desc);
Simon Glass2ee8ada2016-02-29 15:25:52 -07001151 if (blk_dread(dev_desc, blk, (lbaint_t)blk_cnt, pte) != blk_cnt) {
richardretanubune6745592008-09-26 11:13:22 -04001152 printf("*** ERROR: Can't read GPT Entries ***\n");
1153 free(pte);
1154 return NULL;
1155 }
1156 return pte;
1157}
1158
1159/**
1160 * is_pte_valid(): validates a single Partition Table Entry
1161 * @gpt_entry - Pointer to a single Partition Table Entry
1162 *
1163 * Description: returns 1 if valid, 0 on error.
1164 */
1165static int is_pte_valid(gpt_entry * pte)
1166{
1167 efi_guid_t unused_guid;
1168
1169 if (!pte) {
Doug Andersondc036672011-10-19 08:04:46 +00001170 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -04001171 return 0;
1172 }
1173
1174 /* Only one validation for now:
1175 * The GUID Partition Type != Unused Entry (ALL-ZERO)
1176 */
1177 memset(unused_guid.b, 0, sizeof(unused_guid.b));
1178
1179 if (memcmp(pte->partition_type_guid.b, unused_guid.b,
1180 sizeof(unused_guid.b)) == 0) {
1181
Doug Andersondc036672011-10-19 08:04:46 +00001182 debug("%s: Found an unused PTE GUID at 0x%08X\n", __func__,
Taylor Hutt864074d2012-10-12 14:26:09 +00001183 (unsigned int)(uintptr_t)pte);
richardretanubune6745592008-09-26 11:13:22 -04001184
1185 return 0;
1186 } else {
1187 return 1;
1188 }
1189}
Simon Glass83ce5632016-02-29 15:25:47 -07001190
1191/*
1192 * Add an 'a_' prefix so it comes before 'dos' in the linker list. We need to
1193 * check EFI first, since a DOS partition is often used as a 'protective MBR'
1194 * with EFI.
1195 */
1196U_BOOT_PART_TYPE(a_efi) = {
1197 .name = "EFI",
1198 .part_type = PART_TYPE_EFI,
Petr Kulhavy712257e2016-09-09 10:27:15 +02001199 .max_entries = GPT_ENTRY_NUMBERS,
Simon Glassb89a8442016-02-29 15:25:48 -07001200 .get_info = part_get_info_ptr(part_get_info_efi),
Simon Glass0f1c9522016-02-29 15:26:04 -07001201 .print = part_print_ptr(part_print_efi),
1202 .test = part_test_efi,
Simon Glass83ce5632016-02-29 15:25:47 -07001203};