blob: 72bfb4b609ade53e0da5c1aa27787445fa5c0bbf [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
10 * limits the maximum size of addressable storage to < 2 Terra Bytes
richardretanubune6745592008-09-26 11:13:22 -040011 */
Simon Glass655306c2020-05-10 11:39:58 -060012#include <common.h>
13#include <blk.h>
14#include <part.h>
Simon Glass6f044982020-05-10 11:39:52 -060015#include <uuid.h>
Simon Glass274e0b02020-05-10 11:39:56 -060016#include <asm/cache.h>
Marc Dietrich20ca3ad2013-03-29 07:57:10 +000017#include <asm/unaligned.h>
richardretanubune6745592008-09-26 11:13:22 -040018#include <command.h>
Philipp Tomsicha3da0e92017-03-01 21:10:39 +010019#include <fdtdec.h>
richardretanubune6745592008-09-26 11:13:22 -040020#include <ide.h>
21#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060022#include <memalign.h>
Chang Hyun Park823ffde2012-12-11 11:09:45 +010023#include <part_efi.h>
Philipp Tomsicha3da0e92017-03-01 21:10:39 +010024#include <linux/compiler.h>
Lei Wen757ddfe2011-09-07 18:11:19 +000025#include <linux/ctype.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070026#include <u-boot/crc.h>
richardretanubune6745592008-09-26 11:13:22 -040027
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +010028DECLARE_GLOBAL_DATA_PTR;
29
Heinrich Schuchardtfac78672018-06-09 17:50:18 +020030/*
31 * GUID for basic data partions.
32 */
33static const efi_guid_t partition_basic_data_guid = PARTITION_BASIC_DATA_GUID;
34
Adam Fordb10ba902018-02-06 12:43:56 -060035#ifdef CONFIG_HAVE_BLOCK_DEVICE
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;
Alison Chaiken2cb47e62017-06-25 16:43:17 -0700222 char uuid[UUID_STR_LEN + 1];
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200223 unsigned char *uuid_bin;
richardretanubune6745592008-09-26 11:13:22 -0400224
richardretanubune6745592008-09-26 11:13:22 -0400225 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko80bded72019-04-11 20:27:50 +0000226 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
227 return;
richardretanubune6745592008-09-26 11:13:22 -0400228
Doug Anderson698a51d2011-10-19 09:47:31 +0000229 debug("%s: gpt-entry at %p\n", __func__, gpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400230
Stephen Warren26163262012-10-08 08:14:33 +0000231 printf("Part\tStart LBA\tEnd LBA\t\tName\n");
Stephen Warren9fbc2b32012-10-08 08:14:36 +0000232 printf("\tAttributes\n");
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200233 printf("\tType GUID\n");
234 printf("\tPartition GUID\n");
Stephen Warren8b855b52012-10-08 08:14:34 +0000235
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100236 for (i = 0; i < le32_to_cpu(gpt_head->num_partition_entries); i++) {
Stephen Warrene6df59e2012-10-08 08:14:32 +0000237 /* Stop at the first non valid PTE */
238 if (!is_pte_valid(&gpt_pte[i]))
239 break;
richardretanubune6745592008-09-26 11:13:22 -0400240
Stephen Warren26163262012-10-08 08:14:33 +0000241 printf("%3d\t0x%08llx\t0x%08llx\t\"%s\"\n", (i + 1),
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100242 le64_to_cpu(gpt_pte[i].starting_lba),
243 le64_to_cpu(gpt_pte[i].ending_lba),
Stephen Warren26163262012-10-08 08:14:33 +0000244 print_efiname(&gpt_pte[i]));
Stephen Warren9fbc2b32012-10-08 08:14:36 +0000245 printf("\tattrs:\t0x%016llx\n", gpt_pte[i].attributes.raw);
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200246 uuid_bin = (unsigned char *)gpt_pte[i].partition_type_guid.b;
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200247 uuid_bin_to_str(uuid_bin, uuid, UUID_STR_FORMAT_GUID);
Stephen Warren8b855b52012-10-08 08:14:34 +0000248 printf("\ttype:\t%s\n", uuid);
Patrick Delaunay65f94ed2015-10-27 11:00:28 +0100249#ifdef CONFIG_PARTITION_TYPE_GUID
250 if (!uuid_guid_get_str(uuid_bin, uuid))
251 printf("\ttype:\t%s\n", uuid);
252#endif
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200253 uuid_bin = (unsigned char *)gpt_pte[i].unique_partition_guid.b;
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200254 uuid_bin_to_str(uuid_bin, uuid, UUID_STR_FORMAT_GUID);
255 printf("\tguid:\t%s\n", uuid);
richardretanubune6745592008-09-26 11:13:22 -0400256 }
257
258 /* Remember to free pte */
Doug Anderson698a51d2011-10-19 09:47:31 +0000259 free(gpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400260 return;
261}
262
Simon Glassb89a8442016-02-29 15:25:48 -0700263int part_get_info_efi(struct blk_desc *dev_desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600264 struct disk_partition *info)
richardretanubune6745592008-09-26 11:13:22 -0400265{
Egbert Eich071e4232013-04-09 06:03:36 +0000266 ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz);
Doug Anderson698a51d2011-10-19 09:47:31 +0000267 gpt_entry *gpt_pte = NULL;
richardretanubune6745592008-09-26 11:13:22 -0400268
269 /* "part" argument must be at least 1 */
Simon Glassc5b65372016-03-16 07:45:36 -0600270 if (part < 1) {
Doug Andersondc036672011-10-19 08:04:46 +0000271 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -0400272 return -1;
273 }
274
275 /* This function validates AND fills in the GPT header and PTE */
Urja Rannikko80bded72019-04-11 20:27:50 +0000276 if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1)
277 return -1;
richardretanubune6745592008-09-26 11:13:22 -0400278
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100279 if (part > le32_to_cpu(gpt_head->num_partition_entries) ||
Stephen Warrene47dbba2012-09-21 09:50:58 +0000280 !is_pte_valid(&gpt_pte[part - 1])) {
Mark Langsdorfe7775312013-09-10 15:14:56 -0500281 debug("%s: *** ERROR: Invalid partition number %d ***\n",
Stephen Warrene47dbba2012-09-21 09:50:58 +0000282 __func__, part);
Mark Langsdorfe7775312013-09-10 15:14:56 -0500283 free(gpt_pte);
Stephen Warrene47dbba2012-09-21 09:50:58 +0000284 return -1;
285 }
286
Steve Raed30cbae2014-05-26 11:52:23 -0700287 /* The 'lbaint_t' casting may limit the maximum disk size to 2 TB */
288 info->start = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].starting_lba);
Richard Retanubun413dfc72009-01-26 08:45:14 -0500289 /* The ending LBA is inclusive, to calculate size, add 1 to it */
Steve Raed30cbae2014-05-26 11:52:23 -0700290 info->size = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].ending_lba) + 1
Richard Retanubun413dfc72009-01-26 08:45:14 -0500291 - info->start;
Egbert Eich071e4232013-04-09 06:03:36 +0000292 info->blksz = dev_desc->blksz;
richardretanubune6745592008-09-26 11:13:22 -0400293
Heinrich Schuchardt08299a92019-07-05 21:27:13 +0200294 snprintf((char *)info->name, sizeof(info->name), "%s",
295 print_efiname(&gpt_pte[part - 1]));
Ben Whitten34fd6c92015-12-30 13:05:58 +0000296 strcpy((char *)info->type, "U-Boot");
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +0100297 info->bootable = get_bootable(&gpt_pte[part - 1]);
Patrick Delaunay73287092017-01-27 11:00:42 +0100298#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200299 uuid_bin_to_str(gpt_pte[part - 1].unique_partition_guid.b, info->uuid,
300 UUID_STR_FORMAT_GUID);
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000301#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100302#ifdef CONFIG_PARTITION_TYPE_GUID
303 uuid_bin_to_str(gpt_pte[part - 1].partition_type_guid.b,
304 info->type_guid, UUID_STR_FORMAT_GUID);
305#endif
richardretanubune6745592008-09-26 11:13:22 -0400306
Steve Raef7f10b82014-05-26 11:52:24 -0700307 debug("%s: start 0x" LBAF ", size 0x" LBAF ", name %s\n", __func__,
Frederic Leroye7ee0282013-06-26 18:11:25 +0200308 info->start, info->size, info->name);
richardretanubune6745592008-09-26 11:13:22 -0400309
310 /* Remember to free pte */
Doug Anderson698a51d2011-10-19 09:47:31 +0000311 free(gpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400312 return 0;
313}
314
Simon Glass0f1c9522016-02-29 15:26:04 -0700315static int part_test_efi(struct blk_desc *dev_desc)
richardretanubune6745592008-09-26 11:13:22 -0400316{
Egbert Eich071e4232013-04-09 06:03:36 +0000317 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, legacymbr, 1, dev_desc->blksz);
richardretanubune6745592008-09-26 11:13:22 -0400318
319 /* Read legacy MBR from block 0 and validate it */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700320 if ((blk_dread(dev_desc, 0, 1, (ulong *)legacymbr) != 1)
Anton staaf3b3df4e2011-10-12 13:56:04 +0000321 || (is_pmbr_valid(legacymbr) != 1)) {
richardretanubune6745592008-09-26 11:13:22 -0400322 return -1;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100323 }
324 return 0;
325}
326
327/**
328 * set_protective_mbr(): Set the EFI protective MBR
329 * @param dev_desc - block device descriptor
330 *
331 * @return - zero on success, otherwise error
332 */
Simon Glasse3394752016-02-29 15:25:34 -0700333static int set_protective_mbr(struct blk_desc *dev_desc)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100334{
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100335 /* Setup the Protective MBR */
Patrick Delaunaye54b5472017-11-17 10:08:18 +0100336 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, p_mbr, 1, dev_desc->blksz);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100337 if (p_mbr == NULL) {
338 printf("%s: calloc failed!\n", __func__);
339 return -1;
340 }
Vincent Tinelli35620492017-01-30 15:46:07 +0300341
342 /* Read MBR to backup boot code if it exists */
343 if (blk_dread(dev_desc, 0, 1, p_mbr) != 1) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900344 pr_err("** Can't read from device %d **\n", dev_desc->devnum);
Vincent Tinelli35620492017-01-30 15:46:07 +0300345 return -1;
346 }
347
Sam Protsenkoa3a51a42018-05-22 02:04:21 +0300348 /* Clear all data in MBR except of backed up boot code */
349 memset((char *)p_mbr + MSDOS_MBR_BOOT_CODE_SIZE, 0, sizeof(*p_mbr) -
350 MSDOS_MBR_BOOT_CODE_SIZE);
351
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100352 /* Append signature */
353 p_mbr->signature = MSDOS_MBR_SIGNATURE;
354 p_mbr->partition_record[0].sys_ind = EFI_PMBR_OSTYPE_EFI_GPT;
355 p_mbr->partition_record[0].start_sect = 1;
Maxime Ripard6d8a1522015-01-08 12:26:44 +0100356 p_mbr->partition_record[0].nr_sects = (u32) dev_desc->lba - 1;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100357
358 /* Write MBR sector to the MMC device */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700359 if (blk_dwrite(dev_desc, 0, 1, p_mbr) != 1) {
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100360 printf("** Can't write to device %d **\n",
Simon Glass2f26fff2016-02-29 15:25:51 -0700361 dev_desc->devnum);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100362 return -1;
363 }
364
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100365 return 0;
366}
367
Simon Glasse3394752016-02-29 15:25:34 -0700368int write_gpt_table(struct blk_desc *dev_desc,
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100369 gpt_header *gpt_h, gpt_entry *gpt_e)
370{
Egbert Eich071e4232013-04-09 06:03:36 +0000371 const int pte_blk_cnt = BLOCK_CNT((gpt_h->num_partition_entries
372 * sizeof(gpt_entry)), dev_desc);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100373 u32 calc_crc32;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100374
375 debug("max lba: %x\n", (u32) dev_desc->lba);
376 /* Setup the Protective MBR */
377 if (set_protective_mbr(dev_desc) < 0)
378 goto err;
379
380 /* Generate CRC for the Primary GPT Header */
381 calc_crc32 = efi_crc32((const unsigned char *)gpt_e,
382 le32_to_cpu(gpt_h->num_partition_entries) *
383 le32_to_cpu(gpt_h->sizeof_partition_entry));
384 gpt_h->partition_entry_array_crc32 = cpu_to_le32(calc_crc32);
385
386 calc_crc32 = efi_crc32((const unsigned char *)gpt_h,
387 le32_to_cpu(gpt_h->header_size));
388 gpt_h->header_crc32 = cpu_to_le32(calc_crc32);
389
390 /* Write the First GPT to the block right after the Legacy MBR */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700391 if (blk_dwrite(dev_desc, 1, 1, gpt_h) != 1)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100392 goto err;
393
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100394 if (blk_dwrite(dev_desc, le64_to_cpu(gpt_h->partition_entry_lba),
395 pte_blk_cnt, gpt_e) != pte_blk_cnt)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100396 goto err;
397
Steve Rae6f5e17d2014-12-18 12:13:42 +0100398 prepare_backup_gpt_header(gpt_h);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100399
Simon Glass2ee8ada2016-02-29 15:25:52 -0700400 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->last_usable_lba)
401 + 1, pte_blk_cnt, gpt_e) != pte_blk_cnt)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100402 goto err;
403
Simon Glass2ee8ada2016-02-29 15:25:52 -0700404 if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->my_lba), 1,
405 gpt_h) != 1)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100406 goto err;
407
408 debug("GPT successfully written to block device!\n");
409 return 0;
410
411 err:
Simon Glass2f26fff2016-02-29 15:25:51 -0700412 printf("** Can't write to device %d **\n", dev_desc->devnum);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100413 return -1;
414}
415
Maxime Ripard0d390872017-08-23 16:01:32 +0200416int gpt_fill_pte(struct blk_desc *dev_desc,
417 gpt_header *gpt_h, gpt_entry *gpt_e,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600418 struct disk_partition *partitions, int parts)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100419{
Steve Raed30cbae2014-05-26 11:52:23 -0700420 lbaint_t offset = (lbaint_t)le64_to_cpu(gpt_h->first_usable_lba);
Steve Raed30cbae2014-05-26 11:52:23 -0700421 lbaint_t last_usable_lba = (lbaint_t)
422 le64_to_cpu(gpt_h->last_usable_lba);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100423 int i, k;
Marek Vasut941579e2013-05-19 12:53:34 +0000424 size_t efiname_len, dosname_len;
Patrick Delaunay73287092017-01-27 11:00:42 +0100425#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100426 char *str_uuid;
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200427 unsigned char *bin_uuid;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100428#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100429#ifdef CONFIG_PARTITION_TYPE_GUID
430 char *str_type_guid;
431 unsigned char *bin_type_guid;
432#endif
Maxime Ripard7947c692017-08-23 16:01:33 +0200433 size_t hdr_start = gpt_h->my_lba;
434 size_t hdr_end = hdr_start + 1;
435
436 size_t pte_start = gpt_h->partition_entry_lba;
437 size_t pte_end = pte_start +
438 gpt_h->num_partition_entries * gpt_h->sizeof_partition_entry /
439 dev_desc->blksz;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100440
441 for (i = 0; i < parts; i++) {
442 /* partition starting lba */
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200443 lbaint_t start = partitions[i].start;
444 lbaint_t size = partitions[i].size;
445
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100446 if (start) {
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200447 offset = start + size;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100448 } else {
Maxime Ripard7947c692017-08-23 16:01:33 +0200449 start = offset;
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200450 offset += size;
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100451 }
Maxime Ripard7947c692017-08-23 16:01:33 +0200452
453 /*
454 * If our partition overlaps with either the GPT
455 * header, or the partition entry, reject it.
456 */
Patrick Delaunaybe4a0fa2017-10-18 15:11:05 +0200457 if (((start < hdr_end && hdr_start < (start + size)) ||
458 (start < pte_end && pte_start < (start + size)))) {
Maxime Ripard7947c692017-08-23 16:01:33 +0200459 printf("Partition overlap\n");
460 return -1;
461 }
462
463 gpt_e[i].starting_lba = cpu_to_le64(start);
464
Patrick Delaunay10172f32016-05-02 14:43:33 +0200465 if (offset > (last_usable_lba + 1)) {
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100466 printf("Partitions layout exceds disk size\n");
467 return -1;
468 }
469 /* partition ending lba */
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200470 if ((i == parts - 1) && (size == 0))
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100471 /* extend the last partition to maximuim */
472 gpt_e[i].ending_lba = gpt_h->last_usable_lba;
473 else
474 gpt_e[i].ending_lba = cpu_to_le64(offset - 1);
475
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100476#ifdef CONFIG_PARTITION_TYPE_GUID
477 str_type_guid = partitions[i].type_guid;
478 bin_type_guid = gpt_e[i].partition_type_guid.b;
479 if (strlen(str_type_guid)) {
480 if (uuid_str_to_bin(str_type_guid, bin_type_guid,
481 UUID_STR_FORMAT_GUID)) {
482 printf("Partition no. %d: invalid type guid: %s\n",
483 i, str_type_guid);
484 return -1;
485 }
486 } else {
487 /* default partition type GUID */
488 memcpy(bin_type_guid,
Heinrich Schuchardtfac78672018-06-09 17:50:18 +0200489 &partition_basic_data_guid, 16);
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100490 }
491#else
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100492 /* partition type GUID */
493 memcpy(gpt_e[i].partition_type_guid.b,
Heinrich Schuchardtfac78672018-06-09 17:50:18 +0200494 &partition_basic_data_guid, 16);
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100495#endif
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100496
Patrick Delaunay73287092017-01-27 11:00:42 +0100497#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100498 str_uuid = partitions[i].uuid;
Przemyslaw Marczakfa907342014-04-02 10:20:02 +0200499 bin_uuid = gpt_e[i].unique_partition_guid.b;
500
Vincent Tinellibdfacea2017-02-27 16:11:15 +0200501 if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_GUID)) {
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100502 printf("Partition no. %d: invalid guid: %s\n",
503 i, str_uuid);
504 return -1;
505 }
506#endif
507
508 /* partition attributes */
509 memset(&gpt_e[i].attributes, 0,
510 sizeof(gpt_entry_attributes));
511
Heinrich Schuchardt59a860d2020-03-19 13:49:34 +0100512 if (partitions[i].bootable & PART_BOOTABLE)
Patrick Delaunay7840c4a2015-11-17 11:36:52 +0100513 gpt_e[i].attributes.fields.legacy_bios_bootable = 1;
514
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100515 /* partition name */
Marek Vasut941579e2013-05-19 12:53:34 +0000516 efiname_len = sizeof(gpt_e[i].partition_name)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100517 / sizeof(efi_char16_t);
Marek Vasut941579e2013-05-19 12:53:34 +0000518 dosname_len = sizeof(partitions[i].name);
519
520 memset(gpt_e[i].partition_name, 0,
521 sizeof(gpt_e[i].partition_name));
522
523 for (k = 0; k < min(dosname_len, efiname_len); k++)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100524 gpt_e[i].partition_name[k] =
525 (efi_char16_t)(partitions[i].name[k]);
526
Steve Raed30cbae2014-05-26 11:52:23 -0700527 debug("%s: name: %s offset[%d]: 0x" LBAF
528 " size[%d]: 0x" LBAF "\n",
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100529 __func__, partitions[i].name, i,
Maxime Ripardbe4a6b82017-08-23 16:01:31 +0200530 offset, i, size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100531 }
532
533 return 0;
534}
535
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100536static uint32_t partition_entries_offset(struct blk_desc *dev_desc)
537{
538 uint32_t offset_blks = 2;
Maxime Ripard1d088f02017-08-23 16:01:30 +0200539 uint32_t __maybe_unused offset_bytes;
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100540 int __maybe_unused config_offset;
541
542#if defined(CONFIG_EFI_PARTITION_ENTRIES_OFF)
543 /*
544 * Some architectures require their SPL loader at a fixed
545 * address within the first 16KB of the disk. To avoid an
546 * overlap with the partition entries of the EFI partition
547 * table, the first safe offset (in bytes, from the start of
548 * the disk) for the entries can be set in
549 * CONFIG_EFI_PARTITION_ENTRIES_OFF.
550 */
Maxime Ripard1d088f02017-08-23 16:01:30 +0200551 offset_bytes =
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100552 PAD_TO_BLOCKSIZE(CONFIG_EFI_PARTITION_ENTRIES_OFF, dev_desc);
Maxime Ripard1d088f02017-08-23 16:01:30 +0200553 offset_blks = offset_bytes / dev_desc->blksz;
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100554#endif
555
556#if defined(CONFIG_OF_CONTROL)
557 /*
558 * Allow the offset of the first partition entires (in bytes
559 * from the start of the device) to be specified as a property
560 * of the device tree '/config' node.
561 */
562 config_offset = fdtdec_get_config_int(gd->fdt_blob,
563 "u-boot,efi-partition-entries-offset",
564 -EINVAL);
Maxime Ripard1d088f02017-08-23 16:01:30 +0200565 if (config_offset != -EINVAL) {
566 offset_bytes = PAD_TO_BLOCKSIZE(config_offset, dev_desc);
567 offset_blks = offset_bytes / dev_desc->blksz;
568 }
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100569#endif
570
571 debug("efi: partition entries offset (in blocks): %d\n", offset_blks);
572
573 /*
574 * The earliest LBA this can be at is LBA#2 (i.e. right behind
575 * the (protective) MBR and the GPT header.
576 */
577 if (offset_blks < 2)
578 offset_blks = 2;
579
580 return offset_blks;
581}
582
Simon Glasse3394752016-02-29 15:25:34 -0700583int gpt_fill_header(struct blk_desc *dev_desc, gpt_header *gpt_h,
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100584 char *str_guid, int parts_count)
585{
Simon Glass7903d212018-10-01 12:22:35 -0600586 gpt_h->signature = cpu_to_le64(GPT_HEADER_SIGNATURE_UBOOT);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100587 gpt_h->revision = cpu_to_le32(GPT_HEADER_REVISION_V1);
588 gpt_h->header_size = cpu_to_le32(sizeof(gpt_header));
589 gpt_h->my_lba = cpu_to_le64(1);
590 gpt_h->alternate_lba = cpu_to_le64(dev_desc->lba - 1);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100591 gpt_h->last_usable_lba = cpu_to_le64(dev_desc->lba - 34);
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100592 gpt_h->partition_entry_lba =
593 cpu_to_le64(partition_entries_offset(dev_desc));
594 gpt_h->first_usable_lba =
595 cpu_to_le64(le64_to_cpu(gpt_h->partition_entry_lba) + 32);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100596 gpt_h->num_partition_entries = cpu_to_le32(GPT_ENTRY_NUMBERS);
597 gpt_h->sizeof_partition_entry = cpu_to_le32(sizeof(gpt_entry));
598 gpt_h->header_crc32 = 0;
599 gpt_h->partition_entry_array_crc32 = 0;
600
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200601 if (uuid_str_to_bin(str_guid, gpt_h->disk_guid.b, UUID_STR_FORMAT_GUID))
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100602 return -1;
603
604 return 0;
605}
606
Simon Glasse3394752016-02-29 15:25:34 -0700607int gpt_restore(struct blk_desc *dev_desc, char *str_disk_guid,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600608 struct disk_partition *partitions, int parts_count)
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100609{
Lukasz Majewski60119122017-10-27 12:28:10 +0200610 gpt_header *gpt_h;
Egbert Eich071e4232013-04-09 06:03:36 +0000611 gpt_entry *gpt_e;
Lukasz Majewski60119122017-10-27 12:28:10 +0200612 int ret, size;
Egbert Eich071e4232013-04-09 06:03:36 +0000613
Lukasz Majewski60119122017-10-27 12:28:10 +0200614 size = PAD_TO_BLOCKSIZE(sizeof(gpt_header), dev_desc);
615 gpt_h = malloc_cache_aligned(size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100616 if (gpt_h == NULL) {
617 printf("%s: calloc failed!\n", __func__);
618 return -1;
619 }
Lukasz Majewski60119122017-10-27 12:28:10 +0200620 memset(gpt_h, 0, size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100621
Lukasz Majewski60119122017-10-27 12:28:10 +0200622 size = PAD_TO_BLOCKSIZE(GPT_ENTRY_NUMBERS * sizeof(gpt_entry),
623 dev_desc);
624 gpt_e = malloc_cache_aligned(size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100625 if (gpt_e == NULL) {
626 printf("%s: calloc failed!\n", __func__);
627 free(gpt_h);
628 return -1;
629 }
Lukasz Majewski60119122017-10-27 12:28:10 +0200630 memset(gpt_e, 0, size);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100631
632 /* Generate Primary GPT header (LBA1) */
633 ret = gpt_fill_header(dev_desc, gpt_h, str_disk_guid, parts_count);
634 if (ret)
635 goto err;
636
637 /* Generate partition entries */
Maxime Ripard0d390872017-08-23 16:01:32 +0200638 ret = gpt_fill_pte(dev_desc, gpt_h, gpt_e, partitions, parts_count);
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100639 if (ret)
640 goto err;
641
642 /* Write GPT partition table */
643 ret = write_gpt_table(dev_desc, gpt_h, gpt_e);
644
645err:
646 free(gpt_e);
647 free(gpt_h);
648 return ret;
649}
Steve Rae7d059342014-12-12 15:51:54 -0800650
Heinrich Schuchardt7cfc0332019-07-14 18:12:32 +0200651/**
652 * gpt_convert_efi_name_to_char() - convert u16 string to char string
653 *
654 * TODO: this conversion only supports ANSI characters
655 *
656 * @s: target buffer
657 * @es: u16 string to be converted
658 * @n: size of target buffer
659 */
660static void gpt_convert_efi_name_to_char(char *s, void *es, int n)
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100661{
Heinrich Schuchardt7cfc0332019-07-14 18:12:32 +0200662 char *ess = es;
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100663 int i, j;
664
665 memset(s, '\0', n);
666
667 for (i = 0, j = 0; j < n; i += 2, j++) {
668 s[j] = ess[i];
669 if (!ess[i])
670 return;
671 }
672}
673
Simon Glasse3394752016-02-29 15:25:34 -0700674int gpt_verify_headers(struct blk_desc *dev_desc, gpt_header *gpt_head,
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100675 gpt_entry **gpt_pte)
676{
677 /*
678 * This function validates AND
679 * fills in the GPT header and PTE
680 */
681 if (is_gpt_valid(dev_desc,
682 GPT_PRIMARY_PARTITION_TABLE_LBA,
683 gpt_head, gpt_pte) != 1) {
684 printf("%s: *** ERROR: Invalid GPT ***\n",
685 __func__);
686 return -1;
687 }
Eugeniu Rosca27901b92019-04-30 04:53:45 +0200688
689 /* Free pte before allocating again */
690 free(*gpt_pte);
691
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100692 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1),
693 gpt_head, gpt_pte) != 1) {
694 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
695 __func__);
696 return -1;
697 }
698
699 return 0;
700}
701
Simon Glasse3394752016-02-29 15:25:34 -0700702int gpt_verify_partitions(struct blk_desc *dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600703 struct disk_partition *partitions, int parts,
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100704 gpt_header *gpt_head, gpt_entry **gpt_pte)
705{
706 char efi_str[PARTNAME_SZ + 1];
707 u64 gpt_part_size;
708 gpt_entry *gpt_e;
709 int ret, i;
710
711 ret = gpt_verify_headers(dev_desc, gpt_head, gpt_pte);
712 if (ret)
713 return ret;
714
715 gpt_e = *gpt_pte;
716
717 for (i = 0; i < parts; i++) {
718 if (i == gpt_head->num_partition_entries) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900719 pr_err("More partitions than allowed!\n");
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100720 return -1;
721 }
722
723 /* Check if GPT and ENV partition names match */
724 gpt_convert_efi_name_to_char(efi_str, gpt_e[i].partition_name,
725 PARTNAME_SZ + 1);
726
727 debug("%s: part: %2d name - GPT: %16s, ENV: %16s ",
728 __func__, i, efi_str, partitions[i].name);
729
730 if (strncmp(efi_str, (char *)partitions[i].name,
731 sizeof(partitions->name))) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900732 pr_err("Partition name: %s does not match %s!\n",
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100733 efi_str, (char *)partitions[i].name);
734 return -1;
735 }
736
737 /* Check if GPT and ENV sizes match */
738 gpt_part_size = le64_to_cpu(gpt_e[i].ending_lba) -
739 le64_to_cpu(gpt_e[i].starting_lba) + 1;
740 debug("size(LBA) - GPT: %8llu, ENV: %8llu ",
Simon Glass03d7b602016-02-29 15:25:36 -0700741 (unsigned long long)gpt_part_size,
742 (unsigned long long)partitions[i].size);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100743
744 if (le64_to_cpu(gpt_part_size) != partitions[i].size) {
Kever Yangf1d070d2016-07-29 11:12:18 +0800745 /* We do not check the extend partition size */
746 if ((i == parts - 1) && (partitions[i].size == 0))
747 continue;
748
Masahiro Yamada81e10422017-09-16 14:10:41 +0900749 pr_err("Partition %s size: %llu does not match %llu!\n",
Simon Glass03d7b602016-02-29 15:25:36 -0700750 efi_str, (unsigned long long)gpt_part_size,
751 (unsigned long long)partitions[i].size);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100752 return -1;
753 }
754
755 /*
756 * Start address is optional - check only if provided
757 * in '$partition' variable
758 */
759 if (!partitions[i].start) {
760 debug("\n");
761 continue;
762 }
763
764 /* Check if GPT and ENV start LBAs match */
765 debug("start LBA - GPT: %8llu, ENV: %8llu\n",
766 le64_to_cpu(gpt_e[i].starting_lba),
Simon Glass03d7b602016-02-29 15:25:36 -0700767 (unsigned long long)partitions[i].start);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100768
769 if (le64_to_cpu(gpt_e[i].starting_lba) != partitions[i].start) {
Masahiro Yamada81e10422017-09-16 14:10:41 +0900770 pr_err("Partition %s start: %llu does not match %llu!\n",
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100771 efi_str, le64_to_cpu(gpt_e[i].starting_lba),
Simon Glass03d7b602016-02-29 15:25:36 -0700772 (unsigned long long)partitions[i].start);
Lukasz Majewski7b9839c2015-11-20 08:06:16 +0100773 return -1;
774 }
775 }
776
777 return 0;
778}
779
Simon Glasse3394752016-02-29 15:25:34 -0700780int is_valid_gpt_buf(struct blk_desc *dev_desc, void *buf)
Steve Rae7d059342014-12-12 15:51:54 -0800781{
782 gpt_header *gpt_h;
783 gpt_entry *gpt_e;
784
785 /* determine start of GPT Header in the buffer */
786 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
787 dev_desc->blksz);
788 if (validate_gpt_header(gpt_h, GPT_PRIMARY_PARTITION_TABLE_LBA,
789 dev_desc->lba))
790 return -1;
791
792 /* determine start of GPT Entries in the buffer */
793 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
794 dev_desc->blksz);
795 if (validate_gpt_entries(gpt_h, gpt_e))
796 return -1;
797
798 return 0;
799}
800
Simon Glasse3394752016-02-29 15:25:34 -0700801int write_mbr_and_gpt_partitions(struct blk_desc *dev_desc, void *buf)
Steve Rae7d059342014-12-12 15:51:54 -0800802{
803 gpt_header *gpt_h;
804 gpt_entry *gpt_e;
805 int gpt_e_blk_cnt;
806 lbaint_t lba;
807 int cnt;
808
809 if (is_valid_gpt_buf(dev_desc, buf))
810 return -1;
811
812 /* determine start of GPT Header in the buffer */
813 gpt_h = buf + (GPT_PRIMARY_PARTITION_TABLE_LBA *
814 dev_desc->blksz);
815
816 /* determine start of GPT Entries in the buffer */
817 gpt_e = buf + (le64_to_cpu(gpt_h->partition_entry_lba) *
818 dev_desc->blksz);
819 gpt_e_blk_cnt = BLOCK_CNT((le32_to_cpu(gpt_h->num_partition_entries) *
820 le32_to_cpu(gpt_h->sizeof_partition_entry)),
821 dev_desc);
822
823 /* write MBR */
824 lba = 0; /* MBR is always at 0 */
825 cnt = 1; /* MBR (1 block) */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700826 if (blk_dwrite(dev_desc, lba, cnt, buf) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800827 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
828 __func__, "MBR", cnt, lba);
829 return 1;
830 }
831
832 /* write Primary GPT */
833 lba = GPT_PRIMARY_PARTITION_TABLE_LBA;
834 cnt = 1; /* GPT Header (1 block) */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700835 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800836 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
837 __func__, "Primary GPT Header", cnt, lba);
838 return 1;
839 }
840
841 lba = le64_to_cpu(gpt_h->partition_entry_lba);
842 cnt = gpt_e_blk_cnt;
Simon Glass2ee8ada2016-02-29 15:25:52 -0700843 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800844 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
845 __func__, "Primary GPT Entries", cnt, lba);
846 return 1;
847 }
848
849 prepare_backup_gpt_header(gpt_h);
850
851 /* write Backup GPT */
852 lba = le64_to_cpu(gpt_h->partition_entry_lba);
853 cnt = gpt_e_blk_cnt;
Simon Glass2ee8ada2016-02-29 15:25:52 -0700854 if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800855 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
856 __func__, "Backup GPT Entries", cnt, lba);
857 return 1;
858 }
859
860 lba = le64_to_cpu(gpt_h->my_lba);
861 cnt = 1; /* GPT Header (1 block) */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700862 if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) {
Steve Rae7d059342014-12-12 15:51:54 -0800863 printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n",
864 __func__, "Backup GPT Header", cnt, lba);
865 return 1;
866 }
867
868 return 0;
869}
Lukasz Majewski0dcfc5c2012-12-11 11:09:46 +0100870#endif
871
richardretanubune6745592008-09-26 11:13:22 -0400872/*
873 * Private functions
874 */
875/*
876 * pmbr_part_valid(): Check for EFI partition signature
877 *
878 * Returns: 1 if EFI GPT partition type is found.
879 */
880static int pmbr_part_valid(struct partition *part)
881{
882 if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
Marc Dietrich20ca3ad2013-03-29 07:57:10 +0000883 get_unaligned_le32(&part->start_sect) == 1UL) {
richardretanubune6745592008-09-26 11:13:22 -0400884 return 1;
885 }
886
887 return 0;
888}
889
890/*
891 * is_pmbr_valid(): test Protective MBR for validity
892 *
893 * Returns: 1 if PMBR is valid, 0 otherwise.
894 * Validity depends on two things:
895 * 1) MSDOS signature is in the last two bytes of the MBR
896 * 2) One partition of type 0xEE is found, checked by pmbr_part_valid()
897 */
898static int is_pmbr_valid(legacy_mbr * mbr)
899{
900 int i = 0;
901
Chang Hyun Park823ffde2012-12-11 11:09:45 +0100902 if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
richardretanubune6745592008-09-26 11:13:22 -0400903 return 0;
richardretanubune6745592008-09-26 11:13:22 -0400904
905 for (i = 0; i < 4; i++) {
906 if (pmbr_part_valid(&mbr->partition_record[i])) {
907 return 1;
908 }
909 }
910 return 0;
911}
912
913/**
914 * is_gpt_valid() - tests one GPT header and PTEs for validity
915 *
916 * lba is the logical block address of the GPT header to test
917 * gpt is a GPT header ptr, filled on return.
918 * ptes is a PTEs ptr, filled on return.
919 *
Urja Rannikko54950fa2019-04-11 20:27:51 +0000920 * Description: returns 1 if valid, 0 on error, 2 if ignored header
richardretanubune6745592008-09-26 11:13:22 -0400921 * If valid, returns pointers to PTEs.
922 */
Simon Glasse3394752016-02-29 15:25:34 -0700923static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba,
Steve Raed30cbae2014-05-26 11:52:23 -0700924 gpt_header *pgpt_head, gpt_entry **pgpt_pte)
richardretanubune6745592008-09-26 11:13:22 -0400925{
Tom Rinie6131f12017-10-03 09:38:44 -0400926 /* Confirm valid arguments prior to allocation. */
richardretanubune6745592008-09-26 11:13:22 -0400927 if (!dev_desc || !pgpt_head) {
Doug Andersondc036672011-10-19 08:04:46 +0000928 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -0400929 return 0;
930 }
931
Patrick Delaunaye54b5472017-11-17 10:08:18 +0100932 ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, mbr, 1, dev_desc->blksz);
Tom Rinie6131f12017-10-03 09:38:44 -0400933
Peter Jonesc27e1c12017-09-13 18:05:25 -0400934 /* Read MBR Header from device */
935 if (blk_dread(dev_desc, 0, 1, (ulong *)mbr) != 1) {
936 printf("*** ERROR: Can't read MBR header ***\n");
937 return 0;
938 }
939
richardretanubune6745592008-09-26 11:13:22 -0400940 /* Read GPT Header from device */
Simon Glass2ee8ada2016-02-29 15:25:52 -0700941 if (blk_dread(dev_desc, (lbaint_t)lba, 1, pgpt_head) != 1) {
richardretanubune6745592008-09-26 11:13:22 -0400942 printf("*** ERROR: Can't read GPT header ***\n");
943 return 0;
944 }
945
Urja Rannikko54950fa2019-04-11 20:27:51 +0000946 /* Invalid but nothing to yell about. */
947 if (le64_to_cpu(pgpt_head->signature) == GPT_HEADER_CHROMEOS_IGNORE) {
948 debug("ChromeOS 'IGNOREME' GPT header found and ignored\n");
949 return 2;
950 }
951
Steve Rae6f5e17d2014-12-18 12:13:42 +0100952 if (validate_gpt_header(pgpt_head, (lbaint_t)lba, dev_desc->lba))
richardretanubune6745592008-09-26 11:13:22 -0400953 return 0;
richardretanubune6745592008-09-26 11:13:22 -0400954
Peter Jonesc27e1c12017-09-13 18:05:25 -0400955 if (dev_desc->sig_type == SIG_TYPE_NONE) {
956 efi_guid_t empty = {};
957 if (memcmp(&pgpt_head->disk_guid, &empty, sizeof(empty))) {
958 dev_desc->sig_type = SIG_TYPE_GUID;
959 memcpy(&dev_desc->guid_sig, &pgpt_head->disk_guid,
960 sizeof(empty));
961 } else if (mbr->unique_mbr_signature != 0) {
962 dev_desc->sig_type = SIG_TYPE_MBR;
963 dev_desc->mbr_sig = mbr->unique_mbr_signature;
964 }
965 }
966
richardretanubune6745592008-09-26 11:13:22 -0400967 /* Read and allocate Partition Table Entries */
968 *pgpt_pte = alloc_read_gpt_entries(dev_desc, pgpt_head);
969 if (*pgpt_pte == NULL) {
970 printf("GPT: Failed to allocate memory for PTE\n");
971 return 0;
972 }
973
Steve Rae6f5e17d2014-12-18 12:13:42 +0100974 if (validate_gpt_entries(pgpt_head, *pgpt_pte)) {
Doug Anderson698a51d2011-10-19 09:47:31 +0000975 free(*pgpt_pte);
richardretanubune6745592008-09-26 11:13:22 -0400976 return 0;
977 }
978
979 /* We're done, all's well */
980 return 1;
981}
982
983/**
Urja Rannikko80bded72019-04-11 20:27:50 +0000984 * find_valid_gpt() - finds a valid GPT header and PTEs
985 *
986 * gpt is a GPT header ptr, filled on return.
987 * ptes is a PTEs ptr, filled on return.
988 *
989 * Description: returns 1 if found a valid gpt, 0 on error.
990 * If valid, returns pointers to PTEs.
991 */
992static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head,
993 gpt_entry **pgpt_pte)
994{
Urja Rannikko54950fa2019-04-11 20:27:51 +0000995 int r;
996
997 r = is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA, gpt_head,
998 pgpt_pte);
999
1000 if (r != 1) {
1001 if (r != 2)
1002 printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
1003
1004 if (is_gpt_valid(dev_desc, (dev_desc->lba - 1), gpt_head,
1005 pgpt_pte) != 1) {
Urja Rannikko80bded72019-04-11 20:27:50 +00001006 printf("%s: *** ERROR: Invalid Backup GPT ***\n",
1007 __func__);
1008 return 0;
1009 }
Urja Rannikko54950fa2019-04-11 20:27:51 +00001010 if (r != 2)
1011 printf("%s: *** Using Backup GPT ***\n",
1012 __func__);
Urja Rannikko80bded72019-04-11 20:27:50 +00001013 }
1014 return 1;
1015}
1016
1017/**
richardretanubune6745592008-09-26 11:13:22 -04001018 * alloc_read_gpt_entries(): reads partition entries from disk
1019 * @dev_desc
1020 * @gpt - GPT header
1021 *
1022 * Description: Returns ptes on success, NULL on error.
1023 * Allocates space for PTEs based on information found in @gpt.
1024 * Notes: remember to free pte when you're done!
1025 */
Simon Glasse3394752016-02-29 15:25:34 -07001026static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc,
1027 gpt_header *pgpt_head)
richardretanubune6745592008-09-26 11:13:22 -04001028{
Egbert Eich071e4232013-04-09 06:03:36 +00001029 size_t count = 0, blk_cnt;
Stephen Warrene73f2962015-12-07 11:38:48 -07001030 lbaint_t blk;
richardretanubune6745592008-09-26 11:13:22 -04001031 gpt_entry *pte = NULL;
1032
1033 if (!dev_desc || !pgpt_head) {
Doug Andersondc036672011-10-19 08:04:46 +00001034 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -04001035 return NULL;
1036 }
1037
Chang Hyun Park823ffde2012-12-11 11:09:45 +01001038 count = le32_to_cpu(pgpt_head->num_partition_entries) *
1039 le32_to_cpu(pgpt_head->sizeof_partition_entry);
richardretanubune6745592008-09-26 11:13:22 -04001040
Simon Glassbb10e9b2016-07-22 09:22:47 -06001041 debug("%s: count = %u * %u = %lu\n", __func__,
Chang Hyun Park823ffde2012-12-11 11:09:45 +01001042 (u32) le32_to_cpu(pgpt_head->num_partition_entries),
Simon Glassbb10e9b2016-07-22 09:22:47 -06001043 (u32) le32_to_cpu(pgpt_head->sizeof_partition_entry),
1044 (ulong)count);
richardretanubune6745592008-09-26 11:13:22 -04001045
1046 /* Allocate memory for PTE, remember to FREE */
1047 if (count != 0) {
Egbert Eich071e4232013-04-09 06:03:36 +00001048 pte = memalign(ARCH_DMA_MINALIGN,
1049 PAD_TO_BLOCKSIZE(count, dev_desc));
richardretanubune6745592008-09-26 11:13:22 -04001050 }
1051
1052 if (count == 0 || pte == NULL) {
Simon Glassbb10e9b2016-07-22 09:22:47 -06001053 printf("%s: ERROR: Can't allocate %#lX bytes for GPT Entries\n",
1054 __func__, (ulong)count);
richardretanubune6745592008-09-26 11:13:22 -04001055 return NULL;
1056 }
1057
1058 /* Read GPT Entries from device */
Stephen Warrene73f2962015-12-07 11:38:48 -07001059 blk = le64_to_cpu(pgpt_head->partition_entry_lba);
Egbert Eich071e4232013-04-09 06:03:36 +00001060 blk_cnt = BLOCK_CNT(count, dev_desc);
Simon Glass2ee8ada2016-02-29 15:25:52 -07001061 if (blk_dread(dev_desc, blk, (lbaint_t)blk_cnt, pte) != blk_cnt) {
richardretanubune6745592008-09-26 11:13:22 -04001062 printf("*** ERROR: Can't read GPT Entries ***\n");
1063 free(pte);
1064 return NULL;
1065 }
1066 return pte;
1067}
1068
1069/**
1070 * is_pte_valid(): validates a single Partition Table Entry
1071 * @gpt_entry - Pointer to a single Partition Table Entry
1072 *
1073 * Description: returns 1 if valid, 0 on error.
1074 */
1075static int is_pte_valid(gpt_entry * pte)
1076{
1077 efi_guid_t unused_guid;
1078
1079 if (!pte) {
Doug Andersondc036672011-10-19 08:04:46 +00001080 printf("%s: Invalid Argument(s)\n", __func__);
richardretanubune6745592008-09-26 11:13:22 -04001081 return 0;
1082 }
1083
1084 /* Only one validation for now:
1085 * The GUID Partition Type != Unused Entry (ALL-ZERO)
1086 */
1087 memset(unused_guid.b, 0, sizeof(unused_guid.b));
1088
1089 if (memcmp(pte->partition_type_guid.b, unused_guid.b,
1090 sizeof(unused_guid.b)) == 0) {
1091
Doug Andersondc036672011-10-19 08:04:46 +00001092 debug("%s: Found an unused PTE GUID at 0x%08X\n", __func__,
Taylor Hutt864074d2012-10-12 14:26:09 +00001093 (unsigned int)(uintptr_t)pte);
richardretanubune6745592008-09-26 11:13:22 -04001094
1095 return 0;
1096 } else {
1097 return 1;
1098 }
1099}
Simon Glass83ce5632016-02-29 15:25:47 -07001100
1101/*
1102 * Add an 'a_' prefix so it comes before 'dos' in the linker list. We need to
1103 * check EFI first, since a DOS partition is often used as a 'protective MBR'
1104 * with EFI.
1105 */
1106U_BOOT_PART_TYPE(a_efi) = {
1107 .name = "EFI",
1108 .part_type = PART_TYPE_EFI,
Petr Kulhavy712257e2016-09-09 10:27:15 +02001109 .max_entries = GPT_ENTRY_NUMBERS,
Simon Glassb89a8442016-02-29 15:25:48 -07001110 .get_info = part_get_info_ptr(part_get_info_efi),
Simon Glass0f1c9522016-02-29 15:26:04 -07001111 .print = part_print_ptr(part_print_efi),
1112 .test = part_test_efi,
Simon Glass83ce5632016-02-29 15:25:47 -07001113};
richardretanubune6745592008-09-26 11:13:22 -04001114#endif