blob: 68e54f1c8d92a1fc9bf6307fa639656dd7e58f40 [file] [log] [blame]
Kinson Chik66552a82011-03-29 15:59:06 -07001/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
2
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
12 * * Neither the name of Code Aurora Forum, Inc. nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <stdlib.h>
30#include <string.h>
31#include "mmc.h"
32#include "partition_parser.h"
33
Ajay Dudanib01e5062011-12-03 23:23:42 -080034char *ext3_partitions[] =
35 { "system", "userdata", "persist", "cache", "tombstones" };
36char *vfat_partitions[] = { "modem", "mdm", "NONE" };
37
Kinson Chikf1a43512011-07-14 11:28:39 -070038unsigned int ext3_count = 0;
39unsigned int vfat_count = 0;
40
41struct partition_entry partition_entries[NUM_PARTITIONS];
42unsigned gpt_partitions_exist = 0;
43unsigned partition_count = 0;
44
45//TODO: Remove the dependency of mmc in these functions
Ajay Dudanib01e5062011-12-03 23:23:42 -080046unsigned int
47partition_read_table(struct mmc_boot_host *mmc_host,
48 struct mmc_boot_card *mmc_card)
Kinson Chikf1a43512011-07-14 11:28:39 -070049{
Ajay Dudanib01e5062011-12-03 23:23:42 -080050 unsigned int ret;
Kinson Chikf1a43512011-07-14 11:28:39 -070051
Ajay Dudanib01e5062011-12-03 23:23:42 -080052 /* Read MBR of the card */
53 ret = mmc_boot_read_mbr(mmc_host, mmc_card);
54 if (ret != MMC_BOOT_E_SUCCESS) {
55 dprintf(CRITICAL, "MMC Boot: MBR read failed!\n");
56 return MMC_BOOT_E_FAILURE;
57 }
Kinson Chikf1a43512011-07-14 11:28:39 -070058
Ajay Dudanib01e5062011-12-03 23:23:42 -080059 /* Read GPT of the card if exist */
60 if (gpt_partitions_exist) {
61 ret = mmc_boot_read_gpt(mmc_host, mmc_card);
62 if (ret != MMC_BOOT_E_SUCCESS) {
63 dprintf(CRITICAL, "MMC Boot: GPT read failed!\n");
64 return MMC_BOOT_E_FAILURE;
65 }
66 }
67 return MMC_BOOT_E_SUCCESS;
Kinson Chikf1a43512011-07-14 11:28:39 -070068}
69
70/*
71 * Read MBR from MMC card and fill partition table.
72 */
Ajay Dudanib01e5062011-12-03 23:23:42 -080073unsigned int
74mmc_boot_read_mbr(struct mmc_boot_host *mmc_host,
75 struct mmc_boot_card *mmc_card)
Kinson Chikf1a43512011-07-14 11:28:39 -070076{
Ajay Dudanib01e5062011-12-03 23:23:42 -080077 unsigned char buffer[BLOCK_SIZE];
78 unsigned int dtype;
79 unsigned int dfirstsec;
80 unsigned int EBR_first_sec;
81 unsigned int EBR_current_sec;
82 int ret = MMC_BOOT_E_SUCCESS;
83 int idx, i;
Kinson Chikf1a43512011-07-14 11:28:39 -070084
Ajay Dudanib01e5062011-12-03 23:23:42 -080085 /* Print out the MBR first */
86 ret = mmc_boot_read_from_card(mmc_host, mmc_card, 0,
87 BLOCK_SIZE, (unsigned int *)buffer);
88 if (ret) {
89 dprintf(CRITICAL, "Could not read partition from mmc\n");
90 return ret;
91 }
Kinson Chikf1a43512011-07-14 11:28:39 -070092
Ajay Dudanib01e5062011-12-03 23:23:42 -080093 /* Check to see if signature exists */
94 ret = partition_verify_mbr_signature(BLOCK_SIZE, buffer);
95 if (ret) {
96 return ret;
97 }
Kinson Chikf1a43512011-07-14 11:28:39 -070098
Ajay Dudanib01e5062011-12-03 23:23:42 -080099 /*
100 * Process each of the four partitions in the MBR by reading the table
101 * information into our mbr table.
102 */
103 partition_count = 0;
104 idx = TABLE_ENTRY_0;
105 for (i = 0; i < 4; i++) {
106 /* Type 0xEE indicates end of MBR and GPT partitions exist */
107 dtype = buffer[idx + i * TABLE_ENTRY_SIZE + OFFSET_TYPE];
108 if (dtype == MBR_PROTECTED_TYPE) {
109 gpt_partitions_exist = 1;
110 return ret;
111 }
112 partition_entries[partition_count].dtype = dtype;
113 partition_entries[partition_count].attribute_flag =
114 buffer[idx + i * TABLE_ENTRY_SIZE + OFFSET_STATUS];
115 partition_entries[partition_count].first_lba =
116 GET_LWORD_FROM_BYTE(&buffer[idx +
117 i * TABLE_ENTRY_SIZE +
118 OFFSET_FIRST_SEC]);
119 partition_entries[partition_count].size =
120 GET_LWORD_FROM_BYTE(&buffer[idx +
121 i * TABLE_ENTRY_SIZE +
122 OFFSET_SIZE]);
123 dfirstsec = partition_entries[partition_count].first_lba;
124 mbr_fill_name(&partition_entries[partition_count],
125 partition_entries[partition_count].dtype);
126 partition_count++;
127 if (partition_count == NUM_PARTITIONS)
128 return ret;
129 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700130
Ajay Dudanib01e5062011-12-03 23:23:42 -0800131 /* See if the last partition is EBR, if not, parsing is done */
132 if (dtype != MBR_EBR_TYPE) {
133 return ret;
134 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700135
Ajay Dudanib01e5062011-12-03 23:23:42 -0800136 EBR_first_sec = dfirstsec;
137 EBR_current_sec = dfirstsec;
Kinson Chikf1a43512011-07-14 11:28:39 -0700138
Ajay Dudanib01e5062011-12-03 23:23:42 -0800139 ret = mmc_boot_read_from_card(mmc_host, mmc_card,
140 (EBR_first_sec * 512),
141 BLOCK_SIZE, (unsigned int *)buffer);
142 if (ret) {
143 return ret;
144 }
145 /* Loop to parse the EBR */
146 for (i = 0;; i++) {
147 ret = partition_verify_mbr_signature(BLOCK_SIZE, buffer);
148 if (ret) {
149 ret = MMC_BOOT_E_SUCCESS;
150 break;
151 }
152 partition_entries[partition_count].attribute_flag =
153 buffer[TABLE_ENTRY_0 + OFFSET_STATUS];
154 partition_entries[partition_count].dtype =
155 buffer[TABLE_ENTRY_0 + OFFSET_TYPE];
156 partition_entries[partition_count].first_lba =
157 GET_LWORD_FROM_BYTE(&buffer[TABLE_ENTRY_0 +
158 OFFSET_FIRST_SEC]) +
159 EBR_current_sec;
160 partition_entries[partition_count].size =
161 GET_LWORD_FROM_BYTE(&buffer[TABLE_ENTRY_0 + OFFSET_SIZE]);
162 mbr_fill_name(&(partition_entries[partition_count]),
163 partition_entries[partition_count].dtype);
164 partition_count++;
165 if (partition_count == NUM_PARTITIONS)
166 return ret;
Kinson Chikf1a43512011-07-14 11:28:39 -0700167
Ajay Dudanib01e5062011-12-03 23:23:42 -0800168 dfirstsec =
169 GET_LWORD_FROM_BYTE(&buffer
170 [TABLE_ENTRY_1 + OFFSET_FIRST_SEC]);
171 if (dfirstsec == 0) {
172 /* Getting to the end of the EBR tables */
173 break;
174 }
175 /* More EBR to follow - read in the next EBR sector */
176 dprintf(SPEW, "Reading EBR block from 0x%X\n", EBR_first_sec
177 + dfirstsec);
178 ret = mmc_boot_read_from_card(mmc_host, mmc_card,
179 ((EBR_first_sec +
180 dfirstsec) * 512), BLOCK_SIZE,
181 (unsigned int *)buffer);
182 if (ret) {
183 return ret;
184 }
185 EBR_current_sec = EBR_first_sec + dfirstsec;
186 }
187 return ret;
Kinson Chikf1a43512011-07-14 11:28:39 -0700188}
Kinson Chik66552a82011-03-29 15:59:06 -0700189
190/*
191 * Read GPT from MMC and fill partition table
192 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800193unsigned int
194mmc_boot_read_gpt(struct mmc_boot_host *mmc_host,
195 struct mmc_boot_card *mmc_card)
Kinson Chikf1a43512011-07-14 11:28:39 -0700196{
Kinson Chik66552a82011-03-29 15:59:06 -0700197
Ajay Dudanib01e5062011-12-03 23:23:42 -0800198 int ret = MMC_BOOT_E_SUCCESS;
199 unsigned int header_size;
200 unsigned long long first_usable_lba;
201 unsigned long long backup_header_lba;
202 unsigned int max_partition_count = 0;
203 unsigned int partition_entry_size;
204 unsigned char data[BLOCK_SIZE];
205 unsigned int i = 0; /* Counter for each 512 block */
206 unsigned int j = 0; /* Counter for each 128 entry in the 512 block */
207 unsigned int n = 0; /* Counter for UTF-16 -> 8 conversion */
208 unsigned char UTF16_name[MAX_GPT_NAME_SIZE];
209 /* LBA of first partition -- 1 Block after Protected MBR + 1 for PT */
210 unsigned long long partition_0 = 2;
211 partition_count = 0;
Kinson Chik66552a82011-03-29 15:59:06 -0700212
Ajay Dudanib01e5062011-12-03 23:23:42 -0800213 /* Print out the GPT first */
214 ret = mmc_boot_read_from_card(mmc_host, mmc_card,
215 PROTECTIVE_MBR_SIZE,
216 BLOCK_SIZE, (unsigned int *)data);
217 if (ret)
218 dprintf(CRITICAL, "GPT: Could not read primary gpt from mmc\n");
Kinson Chik66552a82011-03-29 15:59:06 -0700219
Ajay Dudanib01e5062011-12-03 23:23:42 -0800220 ret = partition_parse_gpt_header(data, &first_usable_lba,
221 &partition_entry_size, &header_size,
222 &max_partition_count);
223 if (ret) {
224 dprintf(INFO, "GPT: (WARNING) Primary signature invalid\n");
Kinson Chik4d7444f2011-09-13 15:48:51 -0700225
Ajay Dudanib01e5062011-12-03 23:23:42 -0800226 /* Check the backup gpt */
227 backup_header_lba =
228 GET_LLWORD_FROM_BYTE(&data[BACKUP_HEADER_OFFSET]);
229 ret =
230 mmc_boot_read_from_card(mmc_host, mmc_card,
231 (backup_header_lba * BLOCK_SIZE),
232 BLOCK_SIZE, (unsigned int *)data);
Kinson Chik4d7444f2011-09-13 15:48:51 -0700233
Ajay Dudanib01e5062011-12-03 23:23:42 -0800234 if (ret) {
235 dprintf(CRITICAL,
236 "GPT: Could not read backup gpt from mmc\n");
237 return ret;
238 }
Kinson Chik4d7444f2011-09-13 15:48:51 -0700239
Ajay Dudanib01e5062011-12-03 23:23:42 -0800240 ret = partition_parse_gpt_header(data, &first_usable_lba,
241 &partition_entry_size,
242 &header_size,
243 &max_partition_count);
244 if (ret) {
245 dprintf(CRITICAL,
246 "GPT: Primary and backup signatures invalid\n");
247 return ret;
248 }
249 partition_0 = backup_header_lba - (max_partition_count / 4);
250 }
Kinson Chik66552a82011-03-29 15:59:06 -0700251
Ajay Dudanib01e5062011-12-03 23:23:42 -0800252 /* Read GPT Entries */
253 for (i = 0; i < (max_partition_count / 4); i++) {
254 ret = mmc_boot_read_from_card(mmc_host, mmc_card,
255 (partition_0 * BLOCK_SIZE) +
256 (i * BLOCK_SIZE),
257 BLOCK_SIZE, (uint32_t *) data);
Kinson Chik66552a82011-03-29 15:59:06 -0700258
Ajay Dudanib01e5062011-12-03 23:23:42 -0800259 if (ret) {
260 dprintf(CRITICAL,
261 "GPT: mmc read card failed reading partition entries.\n");
262 return ret;
263 }
Kinson Chik66552a82011-03-29 15:59:06 -0700264
Ajay Dudanib01e5062011-12-03 23:23:42 -0800265 for (j = 0; j < 4; j++) {
266 memcpy(&(partition_entries[partition_count].type_guid),
267 &data[(j * partition_entry_size)],
268 PARTITION_TYPE_GUID_SIZE);
269 if (partition_entries[partition_count].type_guid[0] ==
270 0x00
271 && partition_entries[partition_count].
272 type_guid[1] == 0x00) {
273 i = max_partition_count;
274 break;
275 }
276 memcpy(&
277 (partition_entries[partition_count].
278 unique_partition_guid),
279 &data[(j * partition_entry_size) +
280 UNIQUE_GUID_OFFSET],
281 UNIQUE_PARTITION_GUID_SIZE);
282 partition_entries[partition_count].first_lba =
283 GET_LLWORD_FROM_BYTE(&data
284 [(j * partition_entry_size) +
285 FIRST_LBA_OFFSET]);
286 partition_entries[partition_count].last_lba =
287 GET_LLWORD_FROM_BYTE(&data
288 [(j * partition_entry_size) +
289 LAST_LBA_OFFSET]);
290 partition_entries[partition_count].size =
291 partition_entries[partition_count].last_lba -
292 partition_entries[partition_count].first_lba;
293 partition_entries[partition_count].attribute_flag =
294 GET_LLWORD_FROM_BYTE(&data
295 [(j * partition_entry_size) +
296 ATTRIBUTE_FLAG_OFFSET]);
Kinson Chik66552a82011-03-29 15:59:06 -0700297
Ajay Dudanib01e5062011-12-03 23:23:42 -0800298 memset(&UTF16_name, 0x00, MAX_GPT_NAME_SIZE);
299 memcpy(UTF16_name, &data[(j * partition_entry_size) +
300 PARTITION_NAME_OFFSET],
301 MAX_GPT_NAME_SIZE);
302 /*
303 * Currently partition names in *.xml are UTF-8 and lowercase
304 * Only supporting english for now so removing 2nd byte of UTF-16
305 */
306 for (n = 0; n < MAX_GPT_NAME_SIZE / 2; n++) {
307 partition_entries[partition_count].name[n] =
308 UTF16_name[n * 2];
309 }
310 partition_count++;
311 }
312 }
313 return ret;
Kinson Chik66552a82011-03-29 15:59:06 -0700314}
315
Neeti Desai5f26aff2011-09-30 10:27:40 -0700316static unsigned int write_mbr_in_blocks(unsigned size, unsigned char *mbrImage)
317{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800318 unsigned int dtype;
319 unsigned int dfirstsec;
320 unsigned int ebrSectorOffset;
321 unsigned char *ebrImage;
322 unsigned char *lastAddress;
323 int idx, i;
324 unsigned int ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700325
Ajay Dudanib01e5062011-12-03 23:23:42 -0800326 /* Write the first block */
327 ret = mmc_write(0, BLOCK_SIZE, (unsigned int *)mbrImage);
328 if (ret) {
329 dprintf(CRITICAL, "Failed to write mbr partition\n");
330 goto end;
331 }
332 dprintf(SPEW, "write of first MBR block ok\n");
333 /*
334 Loop through the MBR table to see if there is an EBR.
335 If found, then figure out where to write the first EBR
336 */
337 idx = TABLE_ENTRY_0;
338 for (i = 0; i < 4; i++) {
339 dtype = mbrImage[idx + i * TABLE_ENTRY_SIZE + OFFSET_TYPE];
340 if (MBR_EBR_TYPE == dtype) {
341 dprintf(SPEW, "EBR found.\n");
342 break;
343 }
344 }
345 if (MBR_EBR_TYPE != dtype) {
346 dprintf(SPEW, "No EBR in this image\n");
347 goto end;
348 }
349 /* EBR exists. Write each EBR block to mmc */
350 ebrImage = mbrImage + BLOCK_SIZE;
351 ebrSectorOffset =
352 GET_LWORD_FROM_BYTE(&mbrImage
353 [idx + i * TABLE_ENTRY_SIZE +
354 OFFSET_FIRST_SEC]);
355 dfirstsec = 0;
356 dprintf(SPEW, "first EBR to be written at sector 0x%X\n", dfirstsec);
357 lastAddress = mbrImage + size;
358 while (ebrImage < lastAddress) {
359 dprintf(SPEW, "writing to 0x%X\n",
360 (ebrSectorOffset + dfirstsec) * BLOCK_SIZE);
361 ret =
362 mmc_write((ebrSectorOffset + dfirstsec) * BLOCK_SIZE,
363 BLOCK_SIZE, (unsigned int *)ebrImage);
364 if (ret) {
365 dprintf(CRITICAL,
366 "Failed to write EBR block to sector 0x%X\n",
367 dfirstsec);
368 goto end;
369 }
370 dfirstsec =
371 GET_LWORD_FROM_BYTE(&ebrImage
372 [TABLE_ENTRY_1 + OFFSET_FIRST_SEC]);
373 ebrImage += BLOCK_SIZE;
374 }
375 dprintf(INFO, "MBR written to mmc successfully\n");
376 end:
377 return ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700378}
379
380/* Write the MBR/EBR to the MMC. */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800381unsigned int
382write_mbr(unsigned size, unsigned char *mbrImage,
383 struct mmc_boot_host *mmc_host, struct mmc_boot_card *mmc_card)
Neeti Desai5f26aff2011-09-30 10:27:40 -0700384{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800385 unsigned int ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700386
Ajay Dudanib01e5062011-12-03 23:23:42 -0800387 /* Verify that passed in block is a valid MBR */
388 ret = partition_verify_mbr_signature(size, mbrImage);
389 if (ret) {
390 goto end;
391 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700392
Ajay Dudanib01e5062011-12-03 23:23:42 -0800393 /* Write the MBR/EBR to mmc */
394 ret = write_mbr_in_blocks(size, mbrImage);
395 if (ret) {
396 dprintf(CRITICAL, "Failed to write MBR block to mmc.\n");
397 goto end;
398 }
399 /* Re-read the MBR partition into mbr table */
400 ret = mmc_boot_read_mbr(mmc_host, mmc_card);
401 if (ret) {
402 dprintf(CRITICAL, "Failed to re-read mbr partition.\n");
403 goto end;
404 }
405 partition_dump();
406 end:
407 return ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700408}
409
410/*
411 * A8h reflected is 15h, i.e. 10101000 <--> 00010101
412*/
413int reflect(int data, int len)
414{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800415 int ref = 0;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700416
Ajay Dudanib01e5062011-12-03 23:23:42 -0800417 for (int i = 0; i < len; i++) {
418 if (data & 0x1) {
419 ref |= (1 << ((len - 1) - i));
420 }
421 data = (data >> 1);
422 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700423
Ajay Dudanib01e5062011-12-03 23:23:42 -0800424 return ref;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700425}
426
427/*
428* Function to calculate the CRC32
429*/
430unsigned int calculate_crc32(unsigned char *buffer, int len)
431{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800432 int byte_length = 8; /*length of unit (i.e. byte) */
433 int msb = 0;
434 int polynomial = 0x104C11DB7; /* IEEE 32bit polynomial */
435 unsigned int regs = 0xFFFFFFFF; /* init to all ones */
436 int regs_mask = 0xFFFFFFFF; /* ensure only 32 bit answer */
437 int regs_msb = 0;
438 unsigned int reflected_regs;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700439
Ajay Dudanib01e5062011-12-03 23:23:42 -0800440 for (int i = 0; i < len; i++) {
441 int data_byte = buffer[i];
442 data_byte = reflect(data_byte, 8);
443 for (int j = 0; j < byte_length; j++) {
444 msb = data_byte >> (byte_length - 1); /* get MSB */
445 msb &= 1; /* ensure just 1 bit */
446 regs_msb = (regs >> 31) & 1; /* MSB of regs */
447 regs = regs << 1; /* shift regs for CRC-CCITT */
448 if (regs_msb ^ msb) { /* MSB is a 1 */
449 regs = regs ^ polynomial; /* XOR with generator poly */
450 }
451 regs = regs & regs_mask; /* Mask off excess upper bits */
452 data_byte <<= 1; /* get to next bit */
453 }
454 }
455 regs = regs & regs_mask;
456 reflected_regs = reflect(regs, 32) ^ 0xFFFFFFFF;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700457
Ajay Dudanib01e5062011-12-03 23:23:42 -0800458 return reflected_regs;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700459}
460
461/*
462 * Write the GPT Partition Entry Array to the MMC.
463 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800464static unsigned int
465write_gpt_partition_array(unsigned char *header,
466 unsigned int partition_array_start,
467 unsigned int array_size)
Neeti Desai5f26aff2011-09-30 10:27:40 -0700468{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800469 unsigned int ret = MMC_BOOT_E_INVAL;
470 unsigned long long partition_entry_lba;
471 unsigned long long partition_entry_array_start_location;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700472
Ajay Dudanib01e5062011-12-03 23:23:42 -0800473 partition_entry_lba =
474 GET_LLWORD_FROM_BYTE(&header[PARTITION_ENTRIES_OFFSET]);
475 partition_entry_array_start_location = partition_entry_lba * BLOCK_SIZE;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700476
Ajay Dudanib01e5062011-12-03 23:23:42 -0800477 ret = mmc_write(partition_entry_array_start_location, array_size,
478 (unsigned int *)partition_array_start);
479 if (ret) {
480 dprintf(CRITICAL,
481 "GPT: FAILED to write the partition entry array\n");
482 goto end;
483 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700484
Ajay Dudanib01e5062011-12-03 23:23:42 -0800485 end:
486 return ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700487}
488
Ajay Dudanib01e5062011-12-03 23:23:42 -0800489static void
490patch_gpt(unsigned char *gptImage,
491 struct mmc_boot_card *mmc_card,
492 unsigned int array_size,
493 unsigned int max_part_count, unsigned int part_entry_size)
Neeti Desai5f26aff2011-09-30 10:27:40 -0700494{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800495 unsigned int partition_entry_array_start;
496 unsigned char *primary_gpt_header;
497 unsigned char *secondary_gpt_header;
498 unsigned int offset;
499 unsigned long long card_size_sec;
500 int total_part = 0;
501 unsigned int last_part_offset;
502 unsigned int crc_value;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700503
Ajay Dudanib01e5062011-12-03 23:23:42 -0800504 /* Get size of MMC */
505 card_size_sec = (mmc_card->capacity) / 512;
506 /* Working around cap at 4GB */
507 if (card_size_sec == 0) {
508 card_size_sec = 4 * 1024 * 1024 * 2 - 1;
509 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700510
Ajay Dudanib01e5062011-12-03 23:23:42 -0800511 /* Patching primary header */
512 primary_gpt_header = (gptImage + PROTECTIVE_MBR_SIZE);
513 PUT_LONG_LONG(primary_gpt_header + BACKUP_HEADER_OFFSET,
514 ((long long)(card_size_sec - 1)));
515 PUT_LONG_LONG(primary_gpt_header + LAST_USABLE_LBA_OFFSET,
516 ((long long)(card_size_sec - 34)));
Neeti Desai5f26aff2011-09-30 10:27:40 -0700517
Ajay Dudanib01e5062011-12-03 23:23:42 -0800518 /* Patching backup GPT */
519 offset = (2 * array_size);
520 secondary_gpt_header = offset + BLOCK_SIZE + primary_gpt_header;
521 PUT_LONG_LONG(secondary_gpt_header + PRIMARY_HEADER_OFFSET,
522 ((long long)(card_size_sec - 1)));
523 PUT_LONG_LONG(secondary_gpt_header + LAST_USABLE_LBA_OFFSET,
524 ((long long)(card_size_sec - 34)));
525 PUT_LONG_LONG(secondary_gpt_header + PARTITION_ENTRIES_OFFSET,
526 ((long long)(card_size_sec - 33)));
Neeti Desai5f26aff2011-09-30 10:27:40 -0700527
Ajay Dudanib01e5062011-12-03 23:23:42 -0800528 /* Find last partition */
529 while (*(primary_gpt_header + BLOCK_SIZE + total_part * ENTRY_SIZE) !=
530 0) {
531 total_part++;
532 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700533
Ajay Dudanib01e5062011-12-03 23:23:42 -0800534 /* Patching last partition */
535 last_part_offset =
536 (total_part - 1) * ENTRY_SIZE + PARTITION_ENTRY_LAST_LBA;
537 PUT_LONG_LONG(primary_gpt_header + BLOCK_SIZE + last_part_offset,
538 (long long)(card_size_sec - 34));
539 PUT_LONG_LONG(primary_gpt_header + BLOCK_SIZE + last_part_offset +
540 array_size, (long long)(card_size_sec - 34));
Neeti Desai5f26aff2011-09-30 10:27:40 -0700541
Ajay Dudanib01e5062011-12-03 23:23:42 -0800542 /* Updating CRC of the Partition entry array in both headers */
543 partition_entry_array_start = primary_gpt_header + BLOCK_SIZE;
544 crc_value = calculate_crc32(partition_entry_array_start,
545 max_part_count * part_entry_size);
546 PUT_LONG(primary_gpt_header + PARTITION_CRC_OFFSET, crc_value);
Neeti Desai5f26aff2011-09-30 10:27:40 -0700547
Ajay Dudanib01e5062011-12-03 23:23:42 -0800548 crc_value = calculate_crc32(partition_entry_array_start + array_size,
549 max_part_count * part_entry_size);
550 PUT_LONG(secondary_gpt_header + PARTITION_CRC_OFFSET, crc_value);
Neeti Desai5f26aff2011-09-30 10:27:40 -0700551
Ajay Dudanib01e5062011-12-03 23:23:42 -0800552 /* Clearing CRC fields to calculate */
553 PUT_LONG(primary_gpt_header + HEADER_CRC_OFFSET, 0);
554 crc_value = calculate_crc32(primary_gpt_header, 92);
555 PUT_LONG(primary_gpt_header + HEADER_CRC_OFFSET, crc_value);
Neeti Desai5f26aff2011-09-30 10:27:40 -0700556
Ajay Dudanib01e5062011-12-03 23:23:42 -0800557 PUT_LONG(secondary_gpt_header + HEADER_CRC_OFFSET, 0);
558 crc_value = (calculate_crc32(secondary_gpt_header, 92));
559 PUT_LONG(secondary_gpt_header + HEADER_CRC_OFFSET, crc_value);
Neeti Desai5f26aff2011-09-30 10:27:40 -0700560
561}
562
563/*
564 * Write the GPT to the MMC.
565 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800566unsigned int
567write_gpt(unsigned size, unsigned char *gptImage,
568 struct mmc_boot_host *mmc_host, struct mmc_boot_card *mmc_card)
Neeti Desai5f26aff2011-09-30 10:27:40 -0700569{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800570 unsigned int ret = MMC_BOOT_E_INVAL;
571 unsigned int header_size;
572 unsigned long long first_usable_lba;
573 unsigned long long backup_header_lba;
574 unsigned int max_partition_count = 0;
575 unsigned int partition_entry_size;
576 unsigned int partition_entry_array_start;
577 unsigned char *primary_gpt_header;
578 unsigned char *secondary_gpt_header;
579 unsigned int offset;
580 unsigned int partition_entry_array_size;
581 unsigned long long primary_header_location; /* address on the emmc card */
582 unsigned long long secondary_header_location; /* address on the emmc card */
Neeti Desai5f26aff2011-09-30 10:27:40 -0700583
Ajay Dudanib01e5062011-12-03 23:23:42 -0800584 /* Verify that passed block has a valid GPT primary header */
585 primary_gpt_header = (gptImage + PROTECTIVE_MBR_SIZE);
586 ret = partition_parse_gpt_header(primary_gpt_header, &first_usable_lba,
587 &partition_entry_size, &header_size,
588 &max_partition_count);
589 if (ret) {
590 dprintf(CRITICAL,
591 "GPT: Primary signature invalid cannot write GPT\n");
592 goto end;
593 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700594
Ajay Dudanib01e5062011-12-03 23:23:42 -0800595 /* Verify that passed block has a valid backup GPT HEADER */
596 partition_entry_array_size = partition_entry_size * max_partition_count;
597 if (partition_entry_array_size < MIN_PARTITION_ARRAY_SIZE) {
598 partition_entry_array_size = MIN_PARTITION_ARRAY_SIZE;
599 }
600 offset = (2 * partition_entry_array_size);
601 secondary_gpt_header = offset + BLOCK_SIZE + primary_gpt_header;
602 ret =
603 partition_parse_gpt_header(secondary_gpt_header, &first_usable_lba,
604 &partition_entry_size, &header_size,
605 &max_partition_count);
606 if (ret) {
607 dprintf(CRITICAL,
608 "GPT: Backup signature invalid cannot write GPT\n");
609 goto end;
610 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700611
Ajay Dudanib01e5062011-12-03 23:23:42 -0800612 /* Patching the primary and the backup header of the GPT table */
613 patch_gpt(gptImage, mmc_card, partition_entry_array_size,
614 max_partition_count, partition_entry_size);
Neeti Desai5f26aff2011-09-30 10:27:40 -0700615
Ajay Dudanib01e5062011-12-03 23:23:42 -0800616 /* Erasing the eMMC card before writing */
617 ret = mmc_erase_card(0x00000000, mmc_card->capacity);
618 if (ret) {
619 dprintf(CRITICAL, "Failed to erase the eMMC card\n");
620 goto end;
621 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700622
Ajay Dudanib01e5062011-12-03 23:23:42 -0800623 /* Writing protective MBR */
624 ret = mmc_write(0, PROTECTIVE_MBR_SIZE, (unsigned int *)gptImage);
625 if (ret) {
626 dprintf(CRITICAL, "Failed to write Protective MBR\n");
627 goto end;
628 }
629 /* Writing the primary GPT header */
630 primary_header_location = PROTECTIVE_MBR_SIZE;
631 ret = mmc_write(primary_header_location, BLOCK_SIZE,
632 (unsigned int *)primary_gpt_header);
633 if (ret) {
634 dprintf(CRITICAL, "Failed to write GPT header\n");
635 goto end;
636 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700637
Ajay Dudanib01e5062011-12-03 23:23:42 -0800638 /* Writing the backup GPT header */
639 backup_header_lba = GET_LLWORD_FROM_BYTE
640 (&primary_gpt_header[BACKUP_HEADER_OFFSET]);
641 secondary_header_location = backup_header_lba * BLOCK_SIZE;
642 ret = mmc_write(secondary_header_location, BLOCK_SIZE,
643 (unsigned int *)secondary_gpt_header);
644 if (ret) {
645 dprintf(CRITICAL, "Failed to write GPT backup header\n");
646 goto end;
647 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700648
Ajay Dudanib01e5062011-12-03 23:23:42 -0800649 /* Writing the partition entries array for the primary header */
650 partition_entry_array_start = primary_gpt_header + BLOCK_SIZE;
651 ret = write_gpt_partition_array(primary_gpt_header,
652 partition_entry_array_start,
653 partition_entry_array_size);
654 if (ret) {
655 dprintf(CRITICAL,
656 "GPT: Could not write GPT Partition entries array\n");
657 goto end;
658 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700659
Ajay Dudanib01e5062011-12-03 23:23:42 -0800660 /*Writing the partition entries array for the backup header */
661 partition_entry_array_start = primary_gpt_header + BLOCK_SIZE +
662 partition_entry_array_size;
663 ret = write_gpt_partition_array(secondary_gpt_header,
664 partition_entry_array_start,
665 partition_entry_array_size);
666 if (ret) {
667 dprintf(CRITICAL,
668 "GPT: Could not write GPT Partition entries array\n");
669 goto end;
670 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700671
Ajay Dudanib01e5062011-12-03 23:23:42 -0800672 /* Re-read the GPT partition table */
673 dprintf(INFO, "Re-reading the GPT Partition Table\n");
674 ret = mmc_boot_read_gpt(mmc_host, mmc_card);
675 if (ret) {
676 dprintf(CRITICAL,
677 "GPT: Failure to re- read the GPT Partition table\n");
678 goto end;
679 }
680 partition_dump();
681 dprintf(CRITICAL, "GPT: Partition Table written\n");
682 memset(primary_gpt_header, 0x00, size);
Neeti Desai5f26aff2011-09-30 10:27:40 -0700683
Ajay Dudanib01e5062011-12-03 23:23:42 -0800684 end:
685 return ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700686}
687
Ajay Dudanib01e5062011-12-03 23:23:42 -0800688unsigned int write_partition(unsigned size, unsigned char *partition)
Neeti Desai5f26aff2011-09-30 10:27:40 -0700689{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800690 unsigned int ret = MMC_BOOT_E_INVAL;
691 unsigned int partition_type;
692 struct mmc_boot_host *mmc_host;
693 struct mmc_boot_card *mmc_card;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700694
Ajay Dudanib01e5062011-12-03 23:23:42 -0800695 if (partition == 0) {
696 dprintf(CRITICAL, "NULL partition\n");
697 goto end;
698 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700699
Ajay Dudanib01e5062011-12-03 23:23:42 -0800700 ret = partition_get_type(size, partition, &partition_type);
701 if (ret != MMC_BOOT_E_SUCCESS) {
702 goto end;
703 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700704
Ajay Dudanib01e5062011-12-03 23:23:42 -0800705 mmc_host = get_mmc_host();
706 mmc_card = get_mmc_card();
Neeti Desai5f26aff2011-09-30 10:27:40 -0700707
Ajay Dudanib01e5062011-12-03 23:23:42 -0800708 switch (partition_type) {
709 case PARTITION_TYPE_MBR:
710 dprintf(INFO, "Writing MBR partition\n");
711 ret = write_mbr(size, partition, mmc_host, mmc_card);
712 break;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700713
Ajay Dudanib01e5062011-12-03 23:23:42 -0800714 case PARTITION_TYPE_GPT:
715 dprintf(INFO, "Writing GPT partition\n");
716 ret = write_gpt(size, partition, mmc_host, mmc_card);
717 dprintf(CRITICAL, "Re-Flash all the partitions\n");
718 break;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700719
Ajay Dudanib01e5062011-12-03 23:23:42 -0800720 default:
721 dprintf(CRITICAL, "Invalid partition\n");
722 ret = MMC_BOOT_E_INVAL;
723 goto end;
724 }
Neeti Desai5f26aff2011-09-30 10:27:40 -0700725
Ajay Dudanib01e5062011-12-03 23:23:42 -0800726 end:
727 return ret;
Neeti Desai5f26aff2011-09-30 10:27:40 -0700728}
Ajay Dudanib01e5062011-12-03 23:23:42 -0800729
Kinson Chikf1a43512011-07-14 11:28:39 -0700730/*
731 * Fill name for android partition found.
732 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800733static void
734mbr_fill_name(struct partition_entry *partition_ent, unsigned int type)
Kinson Chikf1a43512011-07-14 11:28:39 -0700735{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800736 switch (type) {
737 memset(partition_ent->name, 0, MAX_GPT_NAME_SIZE);
738 case MBR_MODEM_TYPE:
739 case MBR_MODEM_TYPE2:
740 /* if already assigned last name available then return */
741 if (!strcmp((const char *)vfat_partitions[vfat_count], "NONE"))
742 return;
743 strlcpy((char *)partition_ent->name,
744 (const char *)vfat_partitions[vfat_count],
745 sizeof(partition_ent->name));
746 vfat_count++;
747 break;
748 case MBR_SBL1_TYPE:
749 memcpy(partition_ent->name, "sbl1", 4);
750 break;
751 case MBR_SBL2_TYPE:
752 memcpy(partition_ent->name, "sbl2", 4);
753 break;
754 case MBR_SBL3_TYPE:
755 memcpy(partition_ent->name, "sbl3", 4);
756 break;
757 case MBR_RPM_TYPE:
758 memcpy(partition_ent->name, "rpm", 3);
759 break;
760 case MBR_TZ_TYPE:
761 memcpy(partition_ent->name, "tz", 2);
762 break;
763 case MBR_ABOOT_TYPE:
764 memcpy(partition_ent->name, "aboot", 5);
765 break;
766 case MBR_BOOT_TYPE:
767 memcpy(partition_ent->name, "boot", 4);
768 break;
769 case MBR_MODEM_ST1_TYPE:
770 memcpy(partition_ent->name, "modem_st1", 9);
771 break;
772 case MBR_MODEM_ST2_TYPE:
773 memcpy(partition_ent->name, "modem_st2", 9);
774 break;
775 case MBR_EFS2_TYPE:
776 memcpy(partition_ent->name, "efs2", 4);
777 break;
778 case MBR_USERDATA_TYPE:
779 if (ext3_count == sizeof(ext3_partitions) / sizeof(char *))
780 return;
781 strlcpy((char *)partition_ent->name,
782 (const char *)ext3_partitions[ext3_count],
783 sizeof(partition_ent->name));
784 ext3_count++;
785 break;
786 case MBR_RECOVERY_TYPE:
787 memcpy(partition_ent->name, "recovery", 8);
788 break;
789 case MBR_MISC_TYPE:
790 memcpy(partition_ent->name, "misc", 4);
791 break;
792 };
Kinson Chikf1a43512011-07-14 11:28:39 -0700793}
794
795/*
796 * Find index of parition in array of partition entries
797 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800798unsigned partition_get_index(const char *name)
Kinson Chikf1a43512011-07-14 11:28:39 -0700799{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800800 unsigned int input_string_length = strlen(name);
801 unsigned n;
Kinson Chik66552a82011-03-29 15:59:06 -0700802
Ajay Dudanib01e5062011-12-03 23:23:42 -0800803 for (n = 0; n < partition_count; n++) {
804 if (!memcmp
805 (name, &partition_entries[n].name, input_string_length)
806 && input_string_length ==
807 strlen((const char *)&partition_entries[n].name)) {
808 return n;
809 }
810 }
811 return INVALID_PTN;
Kinson Chikf1a43512011-07-14 11:28:39 -0700812}
813
814/* Get size of the partition */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800815unsigned long long partition_get_size(int index)
Kinson Chikf1a43512011-07-14 11:28:39 -0700816{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800817 if (index == INVALID_PTN)
818 return 0;
819 else {
820 return partition_entries[index].size * BLOCK_SIZE;
821 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700822}
823
824/* Get offset of the partition */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800825unsigned long long partition_get_offset(int index)
Kinson Chikf1a43512011-07-14 11:28:39 -0700826{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800827 if (index == INVALID_PTN)
828 return 0;
829 else {
830 return partition_entries[index].first_lba * BLOCK_SIZE;
831 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700832}
833
834/* Debug: Print all parsed partitions */
835void partition_dump()
836{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800837 unsigned i = 0;
838 for (i = 0; i < partition_count; i++) {
839 dprintf(SPEW,
840 "ptn[%d]:Name[%s] Size[%llu] Type[%u] First[%llu] Last[%llu]\n",
841 i, partition_entries[i].name, partition_entries[i].size,
842 partition_entries[i].dtype,
843 partition_entries[i].first_lba,
844 partition_entries[i].last_lba);
845 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700846}
847
Ajay Dudanib01e5062011-12-03 23:23:42 -0800848unsigned int
849partition_verify_mbr_signature(unsigned size, unsigned char *buffer)
Kinson Chikf1a43512011-07-14 11:28:39 -0700850{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800851 /* Avoid checking past end of buffer */
852 if ((TABLE_SIGNATURE + 1) > size) {
853 return MMC_BOOT_E_FAILURE;
854 }
855 /* Check to see if signature exists */
856 if ((buffer[TABLE_SIGNATURE] != MMC_MBR_SIGNATURE_BYTE_0) ||
857 (buffer[TABLE_SIGNATURE + 1] != MMC_MBR_SIGNATURE_BYTE_1)) {
858 dprintf(CRITICAL, "MBR signature does not match.\n");
859 return MMC_BOOT_E_FAILURE;
860 }
861 return MMC_BOOT_E_SUCCESS;
Kinson Chikf1a43512011-07-14 11:28:39 -0700862}
863
Ajay Dudanib01e5062011-12-03 23:23:42 -0800864unsigned int
865mbr_partition_get_type(unsigned size, unsigned char *partition,
866 unsigned int *partition_type)
Kinson Chikf1a43512011-07-14 11:28:39 -0700867{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800868 unsigned int type_offset = TABLE_ENTRY_0 + OFFSET_TYPE;
Kinson Chikf1a43512011-07-14 11:28:39 -0700869
Ajay Dudanib01e5062011-12-03 23:23:42 -0800870 if (size < type_offset) {
871 goto end;
872 }
Kinson Chikf1a43512011-07-14 11:28:39 -0700873
Ajay Dudanib01e5062011-12-03 23:23:42 -0800874 *partition_type = partition[type_offset];
875 end:
876 return MMC_BOOT_E_SUCCESS;
Kinson Chikf1a43512011-07-14 11:28:39 -0700877}
878
Ajay Dudanib01e5062011-12-03 23:23:42 -0800879unsigned int
880partition_get_type(unsigned size, unsigned char *partition,
881 unsigned int *partition_type)
Kinson Chikf1a43512011-07-14 11:28:39 -0700882{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800883 unsigned int ret = MMC_BOOT_E_SUCCESS;
Kinson Chikf1a43512011-07-14 11:28:39 -0700884
Ajay Dudanib01e5062011-12-03 23:23:42 -0800885 /*
886 * If the block contains the MBR signature, then it's likely either
887 * MBR or MBR with protective type (GPT). If the MBR signature is
888 * not there, then it could be the GPT backup.
889 */
Kinson Chikf1a43512011-07-14 11:28:39 -0700890
Ajay Dudanib01e5062011-12-03 23:23:42 -0800891 /* First check the MBR signature */
892 ret = partition_verify_mbr_signature(size, partition);
893 if (ret == MMC_BOOT_E_SUCCESS) {
894 unsigned int mbr_partition_type = PARTITION_TYPE_MBR;
Kinson Chikf1a43512011-07-14 11:28:39 -0700895
Ajay Dudanib01e5062011-12-03 23:23:42 -0800896 /* MBR signature verified. This could be MBR, MBR + EBR, or GPT */
897 ret =
898 mbr_partition_get_type(size, partition,
899 &mbr_partition_type);
900 if (ret != MMC_BOOT_E_SUCCESS) {
901 dprintf(CRITICAL, "Cannot get TYPE of partition");
902 } else if (MBR_PROTECTED_TYPE == mbr_partition_type) {
903 *partition_type = PARTITION_TYPE_GPT;
904 } else {
905 *partition_type = PARTITION_TYPE_MBR;
906 }
907 } else {
908 /*
909 * This could be the GPT backup. Make that assumption for now.
910 * Anybody who treats the block as GPT backup should check the
911 * signature.
912 */
913 *partition_type = PARTITION_TYPE_GPT_BACKUP;
914 }
915 return ret;
Kinson Chik66552a82011-03-29 15:59:06 -0700916}
Kinson Chik4d7444f2011-09-13 15:48:51 -0700917
918/*
919 * Parse the gpt header and get the required header fields
920 * Return 0 on valid signature
921 */
Ajay Dudanib01e5062011-12-03 23:23:42 -0800922unsigned int
923partition_parse_gpt_header(unsigned char *buffer,
924 unsigned long long *first_usable_lba,
925 unsigned int *partition_entry_size,
926 unsigned int *header_size,
927 unsigned int *max_partition_count)
Kinson Chik4d7444f2011-09-13 15:48:51 -0700928{
Ajay Dudanib01e5062011-12-03 23:23:42 -0800929 /* Check GPT Signature */
930 if (((uint32_t *) buffer)[0] != GPT_SIGNATURE_2 ||
931 ((uint32_t *) buffer)[1] != GPT_SIGNATURE_1)
932 return 1;
Kinson Chik4d7444f2011-09-13 15:48:51 -0700933
Ajay Dudanib01e5062011-12-03 23:23:42 -0800934 *header_size = GET_LWORD_FROM_BYTE(&buffer[HEADER_SIZE_OFFSET]);
935 *first_usable_lba =
936 GET_LLWORD_FROM_BYTE(&buffer[FIRST_USABLE_LBA_OFFSET]);
937 *max_partition_count =
938 GET_LWORD_FROM_BYTE(&buffer[PARTITION_COUNT_OFFSET]);
939 *partition_entry_size =
940 GET_LWORD_FROM_BYTE(&buffer[PENTRY_SIZE_OFFSET]);
Kinson Chik4d7444f2011-09-13 15:48:51 -0700941
Ajay Dudanib01e5062011-12-03 23:23:42 -0800942 return 0;
Kinson Chik4d7444f2011-09-13 15:48:51 -0700943}