Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008 RuggedCom, Inc. |
| 4 | * Richard Retanubun <RichardRetanubun@RuggedCom.com> |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 8 | * NOTE: |
| 9 | * when CONFIG_SYS_64BIT_LBA is not defined, lbaint_t is 32 bits; this |
Heinrich Schuchardt | 932b9a9 | 2020-09-17 17:57:21 +0200 | [diff] [blame] | 10 | * limits the maximum size of addressable storage to < 2 tebibytes |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 11 | */ |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 12 | #include <common.h> |
| 13 | #include <blk.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 15 | #include <part.h> |
Simon Glass | 6f04498 | 2020-05-10 11:39:52 -0600 | [diff] [blame] | 16 | #include <uuid.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Marc Dietrich | 20ca3ad | 2013-03-29 07:57:10 +0000 | [diff] [blame] | 19 | #include <asm/unaligned.h> |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 20 | #include <command.h> |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 21 | #include <fdtdec.h> |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 22 | #include <ide.h> |
| 23 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 24 | #include <memalign.h> |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 25 | #include <part_efi.h> |
Simon Glass | 0034d96 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 26 | #include <dm/ofnode.h> |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 27 | #include <linux/compiler.h> |
Lei Wen | 757ddfe | 2011-09-07 18:11:19 +0000 | [diff] [blame] | 28 | #include <linux/ctype.h> |
Simon Glass | 48b6c6b | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 29 | #include <u-boot/crc.h> |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 30 | |
Simon Glass | 56d59a6 | 2021-07-02 12:36:14 -0600 | [diff] [blame] | 31 | /* GUID for basic data partitons */ |
| 32 | #if CONFIG_IS_ENABLED(EFI_PARTITION) |
Heinrich Schuchardt | fac7867 | 2018-06-09 17:50:18 +0200 | [diff] [blame] | 33 | static const efi_guid_t partition_basic_data_guid = PARTITION_BASIC_DATA_GUID; |
Simon Glass | 56d59a6 | 2021-07-02 12:36:14 -0600 | [diff] [blame] | 34 | #endif |
Heinrich Schuchardt | fac7867 | 2018-06-09 17:50:18 +0200 | [diff] [blame] | 35 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 36 | /** |
| 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 Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 43 | static inline u32 efi_crc32(const void *buf, u32 len) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 44 | { |
| 45 | return crc32(0, buf, len); |
| 46 | } |
| 47 | |
| 48 | /* |
| 49 | * Private function prototypes |
| 50 | */ |
| 51 | |
| 52 | static int pmbr_part_valid(struct partition *part); |
| 53 | static int is_pmbr_valid(legacy_mbr * mbr); |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 54 | static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba, |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 55 | gpt_header *pgpt_head, gpt_entry **pgpt_pte); |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 56 | static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc, |
| 57 | gpt_header *pgpt_head); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 58 | static int is_pte_valid(gpt_entry * pte); |
Urja Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 59 | static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head, |
| 60 | gpt_entry **pgpt_pte); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 61 | |
Lei Wen | 757ddfe | 2011-09-07 18:11:19 +0000 | [diff] [blame] | 62 | static 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 Schuchardt | 35ea868 | 2019-01-12 11:25:25 +0100 | [diff] [blame] | 76 | static const efi_guid_t system_guid = PARTITION_SYSTEM_GUID; |
Stephen Warren | d0cf3b6 | 2012-10-08 08:14:37 +0000 | [diff] [blame] | 77 | |
Heinrich Schuchardt | 59a860d | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 78 | static int get_bootable(gpt_entry *p) |
Stephen Warren | d0cf3b6 | 2012-10-08 08:14:37 +0000 | [diff] [blame] | 79 | { |
Heinrich Schuchardt | 59a860d | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 80 | 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 Warren | d0cf3b6 | 2012-10-08 08:14:37 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Steve Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 89 | static 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 Glass | 7903d21 | 2018-10-01 12:22:35 -0600 | [diff] [blame] | 96 | if (le64_to_cpu(gpt_h->signature) != GPT_HEADER_SIGNATURE_UBOOT) { |
Steve Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 97 | printf("%s signature is wrong: 0x%llX != 0x%llX\n", |
| 98 | "GUID Partition Table Header", |
| 99 | le64_to_cpu(gpt_h->signature), |
Simon Glass | 7903d21 | 2018-10-01 12:22:35 -0600 | [diff] [blame] | 100 | GPT_HEADER_SIGNATURE_UBOOT); |
Steve Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 101 | 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 | |
| 152 | static 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 | |
| 172 | static 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 Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 181 | gpt_h->partition_entry_lba = |
| 182 | cpu_to_le64(le64_to_cpu(gpt_h->last_usable_lba) + 1); |
Steve Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 183 | 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 Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 190 | #if CONFIG_IS_ENABLED(EFI_PARTITION) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 191 | /* |
| 192 | * Public Functions (include/part.h) |
| 193 | */ |
| 194 | |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 195 | /* |
| 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 | */ |
| 199 | int 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 Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 206 | if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1) |
| 207 | return -EINVAL; |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 208 | |
| 209 | guid_bin = gpt_head->disk_guid.b; |
| 210 | uuid_bin_to_str(guid_bin, guid, UUID_STR_FORMAT_GUID); |
| 211 | |
Eugeniu Rosca | eb11c2e | 2019-04-30 04:53:44 +0200 | [diff] [blame] | 212 | /* Remember to free pte */ |
| 213 | free(gpt_pte); |
Alison Chaiken | e422258 | 2017-06-25 16:43:23 -0700 | [diff] [blame] | 214 | return 0; |
| 215 | } |
| 216 | |
Simon Glass | 0f1c952 | 2016-02-29 15:26:04 -0700 | [diff] [blame] | 217 | void part_print_efi(struct blk_desc *dev_desc) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 218 | { |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 219 | ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz); |
Doug Anderson | 698a51d | 2011-10-19 09:47:31 +0000 | [diff] [blame] | 220 | gpt_entry *gpt_pte = NULL; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 221 | int i = 0; |
Heinrich Schuchardt | 79f29c8 | 2022-01-16 12:23:19 +0100 | [diff] [blame] | 222 | unsigned char *uuid; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 223 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 224 | /* This function validates AND fills in the GPT header and PTE */ |
Urja Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 225 | if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1) |
| 226 | return; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 227 | |
Doug Anderson | 698a51d | 2011-10-19 09:47:31 +0000 | [diff] [blame] | 228 | debug("%s: gpt-entry at %p\n", __func__, gpt_pte); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 229 | |
Stephen Warren | 2616326 | 2012-10-08 08:14:33 +0000 | [diff] [blame] | 230 | printf("Part\tStart LBA\tEnd LBA\t\tName\n"); |
Stephen Warren | 9fbc2b3 | 2012-10-08 08:14:36 +0000 | [diff] [blame] | 231 | printf("\tAttributes\n"); |
Przemyslaw Marczak | 0c81336 | 2014-04-02 10:20:03 +0200 | [diff] [blame] | 232 | printf("\tType GUID\n"); |
| 233 | printf("\tPartition GUID\n"); |
Stephen Warren | 8b855b5 | 2012-10-08 08:14:34 +0000 | [diff] [blame] | 234 | |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 235 | for (i = 0; i < le32_to_cpu(gpt_head->num_partition_entries); i++) { |
Heinrich Schuchardt | 8c0435e | 2022-01-11 15:43:05 +0100 | [diff] [blame] | 236 | /* Skip invalid PTE */ |
Stephen Warren | e6df59e | 2012-10-08 08:14:32 +0000 | [diff] [blame] | 237 | if (!is_pte_valid(&gpt_pte[i])) |
Heinrich Schuchardt | 8c0435e | 2022-01-11 15:43:05 +0100 | [diff] [blame] | 238 | continue; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 239 | |
Stephen Warren | 2616326 | 2012-10-08 08:14:33 +0000 | [diff] [blame] | 240 | printf("%3d\t0x%08llx\t0x%08llx\t\"%s\"\n", (i + 1), |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 241 | le64_to_cpu(gpt_pte[i].starting_lba), |
| 242 | le64_to_cpu(gpt_pte[i].ending_lba), |
Stephen Warren | 2616326 | 2012-10-08 08:14:33 +0000 | [diff] [blame] | 243 | print_efiname(&gpt_pte[i])); |
Stephen Warren | 9fbc2b3 | 2012-10-08 08:14:36 +0000 | [diff] [blame] | 244 | printf("\tattrs:\t0x%016llx\n", gpt_pte[i].attributes.raw); |
Heinrich Schuchardt | 79f29c8 | 2022-01-16 12:23:19 +0100 | [diff] [blame] | 245 | 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); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | /* Remember to free pte */ |
Doug Anderson | 698a51d | 2011-10-19 09:47:31 +0000 | [diff] [blame] | 255 | free(gpt_pte); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 256 | return; |
| 257 | } |
| 258 | |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 259 | int part_get_info_efi(struct blk_desc *dev_desc, int part, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 260 | struct disk_partition *info) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 261 | { |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 262 | ALLOC_CACHE_ALIGN_BUFFER_PAD(gpt_header, gpt_head, 1, dev_desc->blksz); |
Doug Anderson | 698a51d | 2011-10-19 09:47:31 +0000 | [diff] [blame] | 263 | gpt_entry *gpt_pte = NULL; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 264 | |
| 265 | /* "part" argument must be at least 1 */ |
Simon Glass | c5b6537 | 2016-03-16 07:45:36 -0600 | [diff] [blame] | 266 | if (part < 1) { |
Simon Glass | 3862fab | 2022-10-11 09:47:11 -0600 | [diff] [blame^] | 267 | log_debug("Invalid Argument(s)\n"); |
| 268 | return -EINVAL; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /* This function validates AND fills in the GPT header and PTE */ |
Urja Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 272 | if (find_valid_gpt(dev_desc, gpt_head, &gpt_pte) != 1) |
Simon Glass | 3862fab | 2022-10-11 09:47:11 -0600 | [diff] [blame^] | 273 | return -EINVAL; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 274 | |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 275 | if (part > le32_to_cpu(gpt_head->num_partition_entries) || |
Stephen Warren | e47dbba | 2012-09-21 09:50:58 +0000 | [diff] [blame] | 276 | !is_pte_valid(&gpt_pte[part - 1])) { |
Simon Glass | 3862fab | 2022-10-11 09:47:11 -0600 | [diff] [blame^] | 277 | log_debug("*** ERROR: Invalid partition number %d ***\n", part); |
Mark Langsdorf | e777531 | 2013-09-10 15:14:56 -0500 | [diff] [blame] | 278 | free(gpt_pte); |
Simon Glass | 3862fab | 2022-10-11 09:47:11 -0600 | [diff] [blame^] | 279 | return -EPERM; |
Stephen Warren | e47dbba | 2012-09-21 09:50:58 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 282 | /* 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 Retanubun | 413dfc7 | 2009-01-26 08:45:14 -0500 | [diff] [blame] | 284 | /* The ending LBA is inclusive, to calculate size, add 1 to it */ |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 285 | info->size = (lbaint_t)le64_to_cpu(gpt_pte[part - 1].ending_lba) + 1 |
Richard Retanubun | 413dfc7 | 2009-01-26 08:45:14 -0500 | [diff] [blame] | 286 | - info->start; |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 287 | info->blksz = dev_desc->blksz; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 288 | |
Heinrich Schuchardt | 08299a9 | 2019-07-05 21:27:13 +0200 | [diff] [blame] | 289 | snprintf((char *)info->name, sizeof(info->name), "%s", |
| 290 | print_efiname(&gpt_pte[part - 1])); |
Ben Whitten | 34fd6c9 | 2015-12-30 13:05:58 +0000 | [diff] [blame] | 291 | strcpy((char *)info->type, "U-Boot"); |
Heinrich Schuchardt | 59a860d | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 292 | info->bootable = get_bootable(&gpt_pte[part - 1]); |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 293 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Przemyslaw Marczak | 0c81336 | 2014-04-02 10:20:03 +0200 | [diff] [blame] | 294 | uuid_bin_to_str(gpt_pte[part - 1].unique_partition_guid.b, info->uuid, |
| 295 | UUID_STR_FORMAT_GUID); |
Stephen Warren | c6c7b7a | 2012-09-21 09:50:59 +0000 | [diff] [blame] | 296 | #endif |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 297 | #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 |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 301 | |
Simon Glass | 3862fab | 2022-10-11 09:47:11 -0600 | [diff] [blame^] | 302 | log_debug("start 0x" LBAF ", size 0x" LBAF ", name %s\n", info->start, |
| 303 | info->size, info->name); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 304 | |
| 305 | /* Remember to free pte */ |
Doug Anderson | 698a51d | 2011-10-19 09:47:31 +0000 | [diff] [blame] | 306 | free(gpt_pte); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 307 | return 0; |
| 308 | } |
| 309 | |
Simon Glass | 0f1c952 | 2016-02-29 15:26:04 -0700 | [diff] [blame] | 310 | static int part_test_efi(struct blk_desc *dev_desc) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 311 | { |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 312 | ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, legacymbr, 1, dev_desc->blksz); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 313 | |
| 314 | /* Read legacy MBR from block 0 and validate it */ |
Simon Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 315 | if ((blk_dread(dev_desc, 0, 1, (ulong *)legacymbr) != 1) |
Anton staaf | 3b3df4e | 2011-10-12 13:56:04 +0000 | [diff] [blame] | 316 | || (is_pmbr_valid(legacymbr) != 1)) { |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 317 | return -1; |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 318 | } |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * set_protective_mbr(): Set the EFI protective MBR |
| 324 | * @param dev_desc - block device descriptor |
| 325 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 326 | * Return: - zero on success, otherwise error |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 327 | */ |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 328 | static int set_protective_mbr(struct blk_desc *dev_desc) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 329 | { |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 330 | /* Setup the Protective MBR */ |
Patrick Delaunay | e54b547 | 2017-11-17 10:08:18 +0100 | [diff] [blame] | 331 | ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, p_mbr, 1, dev_desc->blksz); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 332 | if (p_mbr == NULL) { |
| 333 | printf("%s: calloc failed!\n", __func__); |
| 334 | return -1; |
| 335 | } |
Vincent Tinelli | 3562049 | 2017-01-30 15:46:07 +0300 | [diff] [blame] | 336 | |
| 337 | /* Read MBR to backup boot code if it exists */ |
| 338 | if (blk_dread(dev_desc, 0, 1, p_mbr) != 1) { |
Masahiro Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 339 | pr_err("** Can't read from device %d **\n", dev_desc->devnum); |
Vincent Tinelli | 3562049 | 2017-01-30 15:46:07 +0300 | [diff] [blame] | 340 | return -1; |
| 341 | } |
| 342 | |
Sam Protsenko | a3a51a4 | 2018-05-22 02:04:21 +0300 | [diff] [blame] | 343 | /* 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 Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 347 | /* 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 Ripard | 6d8a152 | 2015-01-08 12:26:44 +0100 | [diff] [blame] | 351 | p_mbr->partition_record[0].nr_sects = (u32) dev_desc->lba - 1; |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 352 | |
| 353 | /* Write MBR sector to the MMC device */ |
Simon Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 354 | if (blk_dwrite(dev_desc, 0, 1, p_mbr) != 1) { |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 355 | printf("** Can't write to device %d **\n", |
Simon Glass | 2f26fff | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 356 | dev_desc->devnum); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 357 | return -1; |
| 358 | } |
| 359 | |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 360 | return 0; |
| 361 | } |
| 362 | |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 363 | int write_gpt_table(struct blk_desc *dev_desc, |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 364 | gpt_header *gpt_h, gpt_entry *gpt_e) |
| 365 | { |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 366 | const int pte_blk_cnt = BLOCK_CNT((gpt_h->num_partition_entries |
| 367 | * sizeof(gpt_entry)), dev_desc); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 368 | u32 calc_crc32; |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 369 | |
| 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 Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 386 | if (blk_dwrite(dev_desc, 1, 1, gpt_h) != 1) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 387 | goto err; |
| 388 | |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 389 | if (blk_dwrite(dev_desc, le64_to_cpu(gpt_h->partition_entry_lba), |
| 390 | pte_blk_cnt, gpt_e) != pte_blk_cnt) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 391 | goto err; |
| 392 | |
Steve Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 393 | prepare_backup_gpt_header(gpt_h); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 394 | |
Simon Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 395 | 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 Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 397 | goto err; |
| 398 | |
Simon Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 399 | if (blk_dwrite(dev_desc, (lbaint_t)le64_to_cpu(gpt_h->my_lba), 1, |
| 400 | gpt_h) != 1) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 401 | goto err; |
| 402 | |
| 403 | debug("GPT successfully written to block device!\n"); |
| 404 | return 0; |
| 405 | |
| 406 | err: |
Simon Glass | 2f26fff | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 407 | printf("** Can't write to device %d **\n", dev_desc->devnum); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 408 | return -1; |
| 409 | } |
| 410 | |
Maxime Ripard | 0d39087 | 2017-08-23 16:01:32 +0200 | [diff] [blame] | 411 | int gpt_fill_pte(struct blk_desc *dev_desc, |
| 412 | gpt_header *gpt_h, gpt_entry *gpt_e, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 413 | struct disk_partition *partitions, int parts) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 414 | { |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 415 | lbaint_t offset = (lbaint_t)le64_to_cpu(gpt_h->first_usable_lba); |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 416 | lbaint_t last_usable_lba = (lbaint_t) |
| 417 | le64_to_cpu(gpt_h->last_usable_lba); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 418 | int i, k; |
Marek Vasut | 941579e | 2013-05-19 12:53:34 +0000 | [diff] [blame] | 419 | size_t efiname_len, dosname_len; |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 420 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 421 | char *str_uuid; |
Przemyslaw Marczak | fa90734 | 2014-04-02 10:20:02 +0200 | [diff] [blame] | 422 | unsigned char *bin_uuid; |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 423 | #endif |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 424 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 425 | char *str_type_guid; |
| 426 | unsigned char *bin_type_guid; |
| 427 | #endif |
Maxime Ripard | 7947c69 | 2017-08-23 16:01:33 +0200 | [diff] [blame] | 428 | 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 Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 435 | |
| 436 | for (i = 0; i < parts; i++) { |
| 437 | /* partition starting lba */ |
Maxime Ripard | be4a6b8 | 2017-08-23 16:01:31 +0200 | [diff] [blame] | 438 | lbaint_t start = partitions[i].start; |
| 439 | lbaint_t size = partitions[i].size; |
| 440 | |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 441 | if (start) { |
Maxime Ripard | be4a6b8 | 2017-08-23 16:01:31 +0200 | [diff] [blame] | 442 | offset = start + size; |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 443 | } else { |
Maxime Ripard | 7947c69 | 2017-08-23 16:01:33 +0200 | [diff] [blame] | 444 | start = offset; |
Maxime Ripard | be4a6b8 | 2017-08-23 16:01:31 +0200 | [diff] [blame] | 445 | offset += size; |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 446 | } |
Maxime Ripard | 7947c69 | 2017-08-23 16:01:33 +0200 | [diff] [blame] | 447 | |
| 448 | /* |
| 449 | * If our partition overlaps with either the GPT |
| 450 | * header, or the partition entry, reject it. |
| 451 | */ |
Patrick Delaunay | be4a0fa | 2017-10-18 15:11:05 +0200 | [diff] [blame] | 452 | if (((start < hdr_end && hdr_start < (start + size)) || |
| 453 | (start < pte_end && pte_start < (start + size)))) { |
Maxime Ripard | 7947c69 | 2017-08-23 16:01:33 +0200 | [diff] [blame] | 454 | printf("Partition overlap\n"); |
| 455 | return -1; |
| 456 | } |
| 457 | |
| 458 | gpt_e[i].starting_lba = cpu_to_le64(start); |
| 459 | |
Patrick Delaunay | 10172f3 | 2016-05-02 14:43:33 +0200 | [diff] [blame] | 460 | if (offset > (last_usable_lba + 1)) { |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 461 | printf("Partitions layout exceds disk size\n"); |
| 462 | return -1; |
| 463 | } |
| 464 | /* partition ending lba */ |
Maxime Ripard | be4a6b8 | 2017-08-23 16:01:31 +0200 | [diff] [blame] | 465 | if ((i == parts - 1) && (size == 0)) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 466 | /* 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 Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 471 | #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 Schuchardt | fac7867 | 2018-06-09 17:50:18 +0200 | [diff] [blame] | 484 | &partition_basic_data_guid, 16); |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 485 | } |
| 486 | #else |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 487 | /* partition type GUID */ |
| 488 | memcpy(gpt_e[i].partition_type_guid.b, |
Heinrich Schuchardt | fac7867 | 2018-06-09 17:50:18 +0200 | [diff] [blame] | 489 | &partition_basic_data_guid, 16); |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 490 | #endif |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 491 | |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 492 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 493 | str_uuid = partitions[i].uuid; |
Przemyslaw Marczak | fa90734 | 2014-04-02 10:20:02 +0200 | [diff] [blame] | 494 | bin_uuid = gpt_e[i].unique_partition_guid.b; |
| 495 | |
Vincent Tinelli | bdfacea | 2017-02-27 16:11:15 +0200 | [diff] [blame] | 496 | if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_GUID)) { |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 497 | 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 Schuchardt | 59a860d | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 507 | if (partitions[i].bootable & PART_BOOTABLE) |
Patrick Delaunay | 7840c4a | 2015-11-17 11:36:52 +0100 | [diff] [blame] | 508 | gpt_e[i].attributes.fields.legacy_bios_bootable = 1; |
| 509 | |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 510 | /* partition name */ |
Marek Vasut | 941579e | 2013-05-19 12:53:34 +0000 | [diff] [blame] | 511 | efiname_len = sizeof(gpt_e[i].partition_name) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 512 | / sizeof(efi_char16_t); |
Marek Vasut | 941579e | 2013-05-19 12:53:34 +0000 | [diff] [blame] | 513 | 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 Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 519 | gpt_e[i].partition_name[k] = |
| 520 | (efi_char16_t)(partitions[i].name[k]); |
| 521 | |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 522 | debug("%s: name: %s offset[%d]: 0x" LBAF |
| 523 | " size[%d]: 0x" LBAF "\n", |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 524 | __func__, partitions[i].name, i, |
Maxime Ripard | be4a6b8 | 2017-08-23 16:01:31 +0200 | [diff] [blame] | 525 | offset, i, size); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | return 0; |
| 529 | } |
| 530 | |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 531 | static uint32_t partition_entries_offset(struct blk_desc *dev_desc) |
| 532 | { |
| 533 | uint32_t offset_blks = 2; |
Maxime Ripard | 1d088f0 | 2017-08-23 16:01:30 +0200 | [diff] [blame] | 534 | uint32_t __maybe_unused offset_bytes; |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 535 | 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 Ripard | 1d088f0 | 2017-08-23 16:01:30 +0200 | [diff] [blame] | 546 | offset_bytes = |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 547 | PAD_TO_BLOCKSIZE(CONFIG_EFI_PARTITION_ENTRIES_OFF, dev_desc); |
Maxime Ripard | 1d088f0 | 2017-08-23 16:01:30 +0200 | [diff] [blame] | 548 | offset_blks = offset_bytes / dev_desc->blksz; |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 549 | #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 Glass | 0034d96 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 557 | config_offset = ofnode_conf_read_int( |
| 558 | "u-boot,efi-partition-entries-offset", -EINVAL); |
Maxime Ripard | 1d088f0 | 2017-08-23 16:01:30 +0200 | [diff] [blame] | 559 | if (config_offset != -EINVAL) { |
| 560 | offset_bytes = PAD_TO_BLOCKSIZE(config_offset, dev_desc); |
| 561 | offset_blks = offset_bytes / dev_desc->blksz; |
| 562 | } |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 563 | #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 Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 577 | int gpt_fill_header(struct blk_desc *dev_desc, gpt_header *gpt_h, |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 578 | char *str_guid, int parts_count) |
| 579 | { |
Simon Glass | 7903d21 | 2018-10-01 12:22:35 -0600 | [diff] [blame] | 580 | gpt_h->signature = cpu_to_le64(GPT_HEADER_SIGNATURE_UBOOT); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 581 | 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 Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 585 | gpt_h->last_usable_lba = cpu_to_le64(dev_desc->lba - 34); |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 586 | 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 Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 590 | 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 Marczak | 0c81336 | 2014-04-02 10:20:03 +0200 | [diff] [blame] | 595 | if (uuid_str_to_bin(str_guid, gpt_h->disk_guid.b, UUID_STR_FORMAT_GUID)) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 596 | return -1; |
| 597 | |
| 598 | return 0; |
| 599 | } |
| 600 | |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 601 | int gpt_restore(struct blk_desc *dev_desc, char *str_disk_guid, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 602 | struct disk_partition *partitions, int parts_count) |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 603 | { |
Lukasz Majewski | 6011912 | 2017-10-27 12:28:10 +0200 | [diff] [blame] | 604 | gpt_header *gpt_h; |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 605 | gpt_entry *gpt_e; |
Lukasz Majewski | 6011912 | 2017-10-27 12:28:10 +0200 | [diff] [blame] | 606 | int ret, size; |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 607 | |
Lukasz Majewski | 6011912 | 2017-10-27 12:28:10 +0200 | [diff] [blame] | 608 | size = PAD_TO_BLOCKSIZE(sizeof(gpt_header), dev_desc); |
| 609 | gpt_h = malloc_cache_aligned(size); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 610 | if (gpt_h == NULL) { |
| 611 | printf("%s: calloc failed!\n", __func__); |
| 612 | return -1; |
| 613 | } |
Lukasz Majewski | 6011912 | 2017-10-27 12:28:10 +0200 | [diff] [blame] | 614 | memset(gpt_h, 0, size); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 615 | |
Lukasz Majewski | 6011912 | 2017-10-27 12:28:10 +0200 | [diff] [blame] | 616 | size = PAD_TO_BLOCKSIZE(GPT_ENTRY_NUMBERS * sizeof(gpt_entry), |
| 617 | dev_desc); |
| 618 | gpt_e = malloc_cache_aligned(size); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 619 | if (gpt_e == NULL) { |
| 620 | printf("%s: calloc failed!\n", __func__); |
| 621 | free(gpt_h); |
| 622 | return -1; |
| 623 | } |
Lukasz Majewski | 6011912 | 2017-10-27 12:28:10 +0200 | [diff] [blame] | 624 | memset(gpt_e, 0, size); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 625 | |
| 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 Ripard | 0d39087 | 2017-08-23 16:01:32 +0200 | [diff] [blame] | 632 | ret = gpt_fill_pte(dev_desc, gpt_h, gpt_e, partitions, parts_count); |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 633 | if (ret) |
| 634 | goto err; |
| 635 | |
| 636 | /* Write GPT partition table */ |
| 637 | ret = write_gpt_table(dev_desc, gpt_h, gpt_e); |
| 638 | |
| 639 | err: |
| 640 | free(gpt_e); |
| 641 | free(gpt_h); |
| 642 | return ret; |
| 643 | } |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 644 | |
Heinrich Schuchardt | 7cfc033 | 2019-07-14 18:12:32 +0200 | [diff] [blame] | 645 | /** |
| 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 | */ |
| 654 | static void gpt_convert_efi_name_to_char(char *s, void *es, int n) |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 655 | { |
Heinrich Schuchardt | 7cfc033 | 2019-07-14 18:12:32 +0200 | [diff] [blame] | 656 | char *ess = es; |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 657 | 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 Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 668 | int gpt_verify_headers(struct blk_desc *dev_desc, gpt_header *gpt_head, |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 669 | 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 Rosca | 27901b9 | 2019-04-30 04:53:45 +0200 | [diff] [blame] | 682 | |
| 683 | /* Free pte before allocating again */ |
| 684 | free(*gpt_pte); |
| 685 | |
Stefan Herbrechtsmeier | 76df073 | 2021-03-08 16:07:11 +0000 | [diff] [blame] | 686 | /* |
| 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 Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 695 | 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 Reynes | 8b054f5 | 2022-04-22 17:46:48 +0200 | [diff] [blame] | 705 | static 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 | |
| 723 | static 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 | |
| 747 | int 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 Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 791 | int gpt_verify_partitions(struct blk_desc *dev_desc, |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 792 | struct disk_partition *partitions, int parts, |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 793 | 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 Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 808 | pr_err("More partitions than allowed!\n"); |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 809 | 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 Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 821 | pr_err("Partition name: %s does not match %s!\n", |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 822 | 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 Glass | 03d7b60 | 2016-02-29 15:25:36 -0700 | [diff] [blame] | 830 | (unsigned long long)gpt_part_size, |
| 831 | (unsigned long long)partitions[i].size); |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 832 | |
| 833 | if (le64_to_cpu(gpt_part_size) != partitions[i].size) { |
Kever Yang | f1d070d | 2016-07-29 11:12:18 +0800 | [diff] [blame] | 834 | /* We do not check the extend partition size */ |
| 835 | if ((i == parts - 1) && (partitions[i].size == 0)) |
| 836 | continue; |
| 837 | |
Masahiro Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 838 | pr_err("Partition %s size: %llu does not match %llu!\n", |
Simon Glass | 03d7b60 | 2016-02-29 15:25:36 -0700 | [diff] [blame] | 839 | efi_str, (unsigned long long)gpt_part_size, |
| 840 | (unsigned long long)partitions[i].size); |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 841 | 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 Glass | 03d7b60 | 2016-02-29 15:25:36 -0700 | [diff] [blame] | 856 | (unsigned long long)partitions[i].start); |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 857 | |
| 858 | if (le64_to_cpu(gpt_e[i].starting_lba) != partitions[i].start) { |
Masahiro Yamada | 81e1042 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 859 | pr_err("Partition %s start: %llu does not match %llu!\n", |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 860 | efi_str, le64_to_cpu(gpt_e[i].starting_lba), |
Simon Glass | 03d7b60 | 2016-02-29 15:25:36 -0700 | [diff] [blame] | 861 | (unsigned long long)partitions[i].start); |
Lukasz Majewski | 7b9839c | 2015-11-20 08:06:16 +0100 | [diff] [blame] | 862 | return -1; |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | return 0; |
| 867 | } |
| 868 | |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 869 | int is_valid_gpt_buf(struct blk_desc *dev_desc, void *buf) |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 870 | { |
| 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 Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 890 | int write_mbr_and_gpt_partitions(struct blk_desc *dev_desc, void *buf) |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 891 | { |
| 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 Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 915 | if (blk_dwrite(dev_desc, lba, cnt, buf) != cnt) { |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 916 | 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 Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 924 | if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) { |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 925 | 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 Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 932 | if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) { |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 933 | 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 Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 943 | if (blk_dwrite(dev_desc, lba, cnt, gpt_e) != cnt) { |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 944 | 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 Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 951 | if (blk_dwrite(dev_desc, lba, cnt, gpt_h) != cnt) { |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 952 | printf("%s: failed writing '%s' (%d blks at 0x" LBAF ")\n", |
| 953 | __func__, "Backup GPT Header", cnt, lba); |
| 954 | return 1; |
| 955 | } |
| 956 | |
Gary Bisson | b5fe199 | 2021-01-26 14:56:23 +0100 | [diff] [blame] | 957 | /* Update the partition table entries*/ |
| 958 | part_init(dev_desc); |
| 959 | |
Steve Rae | 7d05934 | 2014-12-12 15:51:54 -0800 | [diff] [blame] | 960 | return 0; |
| 961 | } |
Lukasz Majewski | 0dcfc5c | 2012-12-11 11:09:46 +0100 | [diff] [blame] | 962 | #endif |
| 963 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 964 | /* |
| 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 | */ |
| 972 | static int pmbr_part_valid(struct partition *part) |
| 973 | { |
| 974 | if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT && |
Marc Dietrich | 20ca3ad | 2013-03-29 07:57:10 +0000 | [diff] [blame] | 975 | get_unaligned_le32(&part->start_sect) == 1UL) { |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 976 | 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 | */ |
| 990 | static int is_pmbr_valid(legacy_mbr * mbr) |
| 991 | { |
| 992 | int i = 0; |
| 993 | |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 994 | if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 995 | return 0; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 996 | |
| 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 Rannikko | 54950fa | 2019-04-11 20:27:51 +0000 | [diff] [blame] | 1012 | * Description: returns 1 if valid, 0 on error, 2 if ignored header |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1013 | * If valid, returns pointers to PTEs. |
| 1014 | */ |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 1015 | static int is_gpt_valid(struct blk_desc *dev_desc, u64 lba, |
Steve Rae | d30cbae | 2014-05-26 11:52:23 -0700 | [diff] [blame] | 1016 | gpt_header *pgpt_head, gpt_entry **pgpt_pte) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1017 | { |
Tom Rini | e6131f1 | 2017-10-03 09:38:44 -0400 | [diff] [blame] | 1018 | /* Confirm valid arguments prior to allocation. */ |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1019 | if (!dev_desc || !pgpt_head) { |
Doug Anderson | dc03667 | 2011-10-19 08:04:46 +0000 | [diff] [blame] | 1020 | printf("%s: Invalid Argument(s)\n", __func__); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1021 | return 0; |
| 1022 | } |
| 1023 | |
Patrick Delaunay | e54b547 | 2017-11-17 10:08:18 +0100 | [diff] [blame] | 1024 | ALLOC_CACHE_ALIGN_BUFFER_PAD(legacy_mbr, mbr, 1, dev_desc->blksz); |
Tom Rini | e6131f1 | 2017-10-03 09:38:44 -0400 | [diff] [blame] | 1025 | |
Peter Jones | c27e1c1 | 2017-09-13 18:05:25 -0400 | [diff] [blame] | 1026 | /* 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 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1032 | /* Read GPT Header from device */ |
Simon Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 1033 | if (blk_dread(dev_desc, (lbaint_t)lba, 1, pgpt_head) != 1) { |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1034 | printf("*** ERROR: Can't read GPT header ***\n"); |
| 1035 | return 0; |
| 1036 | } |
| 1037 | |
Urja Rannikko | 54950fa | 2019-04-11 20:27:51 +0000 | [diff] [blame] | 1038 | /* 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 Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 1044 | if (validate_gpt_header(pgpt_head, (lbaint_t)lba, dev_desc->lba)) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1045 | return 0; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1046 | |
Peter Jones | c27e1c1 | 2017-09-13 18:05:25 -0400 | [diff] [blame] | 1047 | 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 | |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1059 | /* Read and allocate Partition Table Entries */ |
| 1060 | *pgpt_pte = alloc_read_gpt_entries(dev_desc, pgpt_head); |
Heinrich Schuchardt | aaeb39a | 2022-05-09 21:35:44 +0200 | [diff] [blame] | 1061 | if (!*pgpt_pte) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1062 | return 0; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1063 | |
Steve Rae | 6f5e17d | 2014-12-18 12:13:42 +0100 | [diff] [blame] | 1064 | if (validate_gpt_entries(pgpt_head, *pgpt_pte)) { |
Doug Anderson | 698a51d | 2011-10-19 09:47:31 +0000 | [diff] [blame] | 1065 | free(*pgpt_pte); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1066 | return 0; |
| 1067 | } |
| 1068 | |
| 1069 | /* We're done, all's well */ |
| 1070 | return 1; |
| 1071 | } |
| 1072 | |
| 1073 | /** |
Urja Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 1074 | * 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 | */ |
| 1082 | static int find_valid_gpt(struct blk_desc *dev_desc, gpt_header *gpt_head, |
| 1083 | gpt_entry **pgpt_pte) |
| 1084 | { |
Urja Rannikko | 54950fa | 2019-04-11 20:27:51 +0000 | [diff] [blame] | 1085 | 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 Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 1096 | printf("%s: *** ERROR: Invalid Backup GPT ***\n", |
| 1097 | __func__); |
| 1098 | return 0; |
| 1099 | } |
Urja Rannikko | 54950fa | 2019-04-11 20:27:51 +0000 | [diff] [blame] | 1100 | if (r != 2) |
| 1101 | printf("%s: *** Using Backup GPT ***\n", |
| 1102 | __func__); |
Urja Rannikko | 80bded7 | 2019-04-11 20:27:50 +0000 | [diff] [blame] | 1103 | } |
| 1104 | return 1; |
| 1105 | } |
| 1106 | |
| 1107 | /** |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1108 | * 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 Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 1116 | static gpt_entry *alloc_read_gpt_entries(struct blk_desc *dev_desc, |
| 1117 | gpt_header *pgpt_head) |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1118 | { |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 1119 | size_t count = 0, blk_cnt; |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 1120 | lbaint_t blk; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1121 | gpt_entry *pte = NULL; |
| 1122 | |
| 1123 | if (!dev_desc || !pgpt_head) { |
Doug Anderson | dc03667 | 2011-10-19 08:04:46 +0000 | [diff] [blame] | 1124 | printf("%s: Invalid Argument(s)\n", __func__); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1125 | return NULL; |
| 1126 | } |
| 1127 | |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 1128 | count = le32_to_cpu(pgpt_head->num_partition_entries) * |
| 1129 | le32_to_cpu(pgpt_head->sizeof_partition_entry); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1130 | |
Simon Glass | bb10e9b | 2016-07-22 09:22:47 -0600 | [diff] [blame] | 1131 | debug("%s: count = %u * %u = %lu\n", __func__, |
Chang Hyun Park | 823ffde | 2012-12-11 11:09:45 +0100 | [diff] [blame] | 1132 | (u32) le32_to_cpu(pgpt_head->num_partition_entries), |
Simon Glass | bb10e9b | 2016-07-22 09:22:47 -0600 | [diff] [blame] | 1133 | (u32) le32_to_cpu(pgpt_head->sizeof_partition_entry), |
| 1134 | (ulong)count); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1135 | |
| 1136 | /* Allocate memory for PTE, remember to FREE */ |
| 1137 | if (count != 0) { |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 1138 | pte = memalign(ARCH_DMA_MINALIGN, |
| 1139 | PAD_TO_BLOCKSIZE(count, dev_desc)); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | if (count == 0 || pte == NULL) { |
Simon Glass | bb10e9b | 2016-07-22 09:22:47 -0600 | [diff] [blame] | 1143 | printf("%s: ERROR: Can't allocate %#lX bytes for GPT Entries\n", |
| 1144 | __func__, (ulong)count); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1145 | return NULL; |
| 1146 | } |
| 1147 | |
| 1148 | /* Read GPT Entries from device */ |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 1149 | blk = le64_to_cpu(pgpt_head->partition_entry_lba); |
Egbert Eich | 071e423 | 2013-04-09 06:03:36 +0000 | [diff] [blame] | 1150 | blk_cnt = BLOCK_CNT(count, dev_desc); |
Simon Glass | 2ee8ada | 2016-02-29 15:25:52 -0700 | [diff] [blame] | 1151 | if (blk_dread(dev_desc, blk, (lbaint_t)blk_cnt, pte) != blk_cnt) { |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1152 | 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 | */ |
| 1165 | static int is_pte_valid(gpt_entry * pte) |
| 1166 | { |
| 1167 | efi_guid_t unused_guid; |
| 1168 | |
| 1169 | if (!pte) { |
Doug Anderson | dc03667 | 2011-10-19 08:04:46 +0000 | [diff] [blame] | 1170 | printf("%s: Invalid Argument(s)\n", __func__); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1171 | 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 Anderson | dc03667 | 2011-10-19 08:04:46 +0000 | [diff] [blame] | 1182 | debug("%s: Found an unused PTE GUID at 0x%08X\n", __func__, |
Taylor Hutt | 864074d | 2012-10-12 14:26:09 +0000 | [diff] [blame] | 1183 | (unsigned int)(uintptr_t)pte); |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 1184 | |
| 1185 | return 0; |
| 1186 | } else { |
| 1187 | return 1; |
| 1188 | } |
| 1189 | } |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 1190 | |
| 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 | */ |
| 1196 | U_BOOT_PART_TYPE(a_efi) = { |
| 1197 | .name = "EFI", |
| 1198 | .part_type = PART_TYPE_EFI, |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 1199 | .max_entries = GPT_ENTRY_NUMBERS, |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 1200 | .get_info = part_get_info_ptr(part_get_info_efi), |
Simon Glass | 0f1c952 | 2016-02-29 15:26:04 -0700 | [diff] [blame] | 1201 | .print = part_print_ptr(part_print_efi), |
| 1202 | .test = part_test_efi, |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 1203 | }; |