Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 5 | |
| 6 | #include <string.h> |
| 7 | |
Bill Richardson | 0c3ba24 | 2013-03-29 11:09:30 -0700 | [diff] [blame] | 8 | #include "cgpt.h" |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 9 | #include "cgptlib_internal.h" |
Bill Richardson | 0c3ba24 | 2013-03-29 11:09:30 -0700 | [diff] [blame] | 10 | #include "vboot_host.h" |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 11 | |
Nam T. Nguyen | d92856d | 2014-10-16 15:02:40 -0700 | [diff] [blame] | 12 | static void AllocAndClear(uint8_t **buf, uint64_t size) { |
| 13 | if (*buf) { |
| 14 | memset(*buf, 0, size); |
| 15 | } else { |
| 16 | *buf = calloc(1, size); |
| 17 | if (!*buf) { |
| 18 | Error("Cannot allocate %u bytes.\n", size); |
| 19 | abort(); |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
Bill Richardson | 18e0370 | 2014-06-23 17:48:33 -0700 | [diff] [blame] | 24 | static int GptCreate(struct drive *drive, CgptCreateParams *params) { |
Nam T. Nguyen | d92856d | 2014-10-16 15:02:40 -0700 | [diff] [blame] | 25 | // Allocate and/or erase the data. |
| 26 | // We cannot assume the GPT headers or entry arrays have been allocated |
| 27 | // by GptLoad() because those fields might have failed validation checks. |
| 28 | AllocAndClear(&drive->gpt.primary_header, |
| 29 | drive->gpt.sector_bytes * GPT_HEADER_SECTORS); |
| 30 | AllocAndClear(&drive->gpt.secondary_header, |
| 31 | drive->gpt.sector_bytes * GPT_HEADER_SECTORS); |
Albert Chaulk | 92f22e7 | 2013-04-02 13:20:52 -0700 | [diff] [blame] | 32 | |
| 33 | drive->gpt.modified |= (GPT_MODIFIED_HEADER1 | GPT_MODIFIED_ENTRIES1 | |
| 34 | GPT_MODIFIED_HEADER2 | GPT_MODIFIED_ENTRIES2); |
| 35 | |
| 36 | // Initialize a blank set |
| 37 | if (!params->zap) { |
| 38 | GptHeader *h = (GptHeader *)drive->gpt.primary_header; |
| 39 | memcpy(h->signature, GPT_HEADER_SIGNATURE, GPT_HEADER_SIGNATURE_SIZE); |
| 40 | h->revision = GPT_HEADER_REVISION; |
| 41 | h->size = sizeof(GptHeader); |
Nam T. Nguyen | 88458d9 | 2014-08-28 10:58:47 -0700 | [diff] [blame] | 42 | h->my_lba = GPT_PMBR_SECTORS; /* The second sector on drive. */ |
Nam T. Nguyen | 6ee52d9 | 2014-10-24 13:20:39 -0700 | [diff] [blame] | 43 | h->alternate_lba = drive->gpt.gpt_drive_sectors - GPT_HEADER_SECTORS; |
Bill Richardson | 4cb5497 | 2014-06-20 14:33:00 -0700 | [diff] [blame] | 44 | if (CGPT_OK != GenerateGuid(&h->disk_uuid)) { |
| 45 | Error("Unable to generate new GUID.\n"); |
Albert Chaulk | 92f22e7 | 2013-04-02 13:20:52 -0700 | [diff] [blame] | 46 | return -1; |
| 47 | } |
Nam T. Nguyen | 3200401 | 2014-12-12 09:38:35 -0800 | [diff] [blame^] | 48 | |
| 49 | /* Calculate number of entries */ |
Albert Chaulk | 92f22e7 | 2013-04-02 13:20:52 -0700 | [diff] [blame] | 50 | h->size_of_entry = sizeof(GptEntry); |
Nam T. Nguyen | 6ee52d9 | 2014-10-24 13:20:39 -0700 | [diff] [blame] | 51 | h->number_of_entries = TOTAL_ENTRIES_SIZE / h->size_of_entry; |
Dan Ehrenberg | b3d38f5 | 2014-12-09 13:42:15 -0800 | [diff] [blame] | 52 | if (drive->gpt.flags & GPT_FLAG_EXTERNAL) { |
Nam T. Nguyen | 6ee52d9 | 2014-10-24 13:20:39 -0700 | [diff] [blame] | 53 | // We might have smaller space for the GPT table. Scale accordingly. |
Nam T. Nguyen | ab89959 | 2014-11-13 19:30:46 -0800 | [diff] [blame] | 54 | size_t half_size_sectors = drive->gpt.gpt_drive_sectors / 2; |
| 55 | if (half_size_sectors < GPT_HEADER_SECTORS) { |
Nam T. Nguyen | 6ee52d9 | 2014-10-24 13:20:39 -0700 | [diff] [blame] | 56 | Error("Not enough space for a GPT header.\n"); |
| 57 | return -1; |
| 58 | } |
Nam T. Nguyen | 3200401 | 2014-12-12 09:38:35 -0800 | [diff] [blame^] | 59 | half_size_sectors -= (GPT_HEADER_SECTORS + GPT_PMBR_SECTORS); |
Nam T. Nguyen | ab89959 | 2014-11-13 19:30:46 -0800 | [diff] [blame] | 60 | size_t half_size = half_size_sectors * drive->gpt.sector_bytes; |
| 61 | if (half_size < (MIN_NUMBER_OF_ENTRIES * h->size_of_entry)) { |
Nam T. Nguyen | 6ee52d9 | 2014-10-24 13:20:39 -0700 | [diff] [blame] | 62 | Error("Not enough space for minimum number of entries.\n"); |
| 63 | return -1; |
| 64 | } |
Nam T. Nguyen | ab89959 | 2014-11-13 19:30:46 -0800 | [diff] [blame] | 65 | if (128 > (half_size / h->size_of_entry)) { |
Nam T. Nguyen | 6ee52d9 | 2014-10-24 13:20:39 -0700 | [diff] [blame] | 66 | h->number_of_entries = half_size / h->size_of_entry; |
| 67 | } |
| 68 | } |
Albert Chaulk | 92f22e7 | 2013-04-02 13:20:52 -0700 | [diff] [blame] | 69 | |
Nam T. Nguyen | 3200401 | 2014-12-12 09:38:35 -0800 | [diff] [blame^] | 70 | /* Then use number of entries to calculate entries_lba. */ |
| 71 | h->entries_lba = h->my_lba + GPT_HEADER_SECTORS; |
| 72 | if (!(drive->gpt.flags & GPT_FLAG_EXTERNAL)) { |
| 73 | h->entries_lba += params->padding; |
| 74 | h->first_usable_lba = h->entries_lba + CalculateEntriesSectors(h); |
| 75 | h->last_usable_lba = (drive->gpt.streaming_drive_sectors - GPT_HEADER_SECTORS - |
| 76 | CalculateEntriesSectors(h) - 1); |
| 77 | } else { |
| 78 | h->first_usable_lba = params->padding; |
| 79 | h->last_usable_lba = (drive->gpt.streaming_drive_sectors - 1); |
| 80 | } |
| 81 | |
| 82 | size_t entries_size = h->number_of_entries * h->size_of_entry; |
| 83 | AllocAndClear(&drive->gpt.primary_entries, entries_size); |
| 84 | AllocAndClear(&drive->gpt.secondary_entries, entries_size); |
| 85 | |
Albert Chaulk | 92f22e7 | 2013-04-02 13:20:52 -0700 | [diff] [blame] | 86 | // Copy to secondary |
| 87 | RepairHeader(&drive->gpt, MASK_PRIMARY); |
| 88 | |
| 89 | UpdateCrc(&drive->gpt); |
| 90 | } |
| 91 | |
| 92 | return 0; |
| 93 | } |
| 94 | |
Bill Richardson | 3f806a2 | 2013-03-20 15:02:34 -0700 | [diff] [blame] | 95 | int CgptCreate(CgptCreateParams *params) { |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 96 | struct drive drive; |
| 97 | |
| 98 | if (params == NULL) |
| 99 | return CGPT_FAILED; |
| 100 | |
Nam T. Nguyen | ab89959 | 2014-11-13 19:30:46 -0800 | [diff] [blame] | 101 | if (CGPT_OK != DriveOpen(params->drive_name, &drive, O_RDWR, |
| 102 | params->drive_size)) |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 103 | return CGPT_FAILED; |
| 104 | |
Nam T. Nguyen | 8577b53 | 2014-11-25 13:26:53 -0800 | [diff] [blame] | 105 | if (GptCreate(&drive, params)) |
| 106 | goto bad; |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 107 | |
| 108 | // Write it all out |
| 109 | return DriveClose(&drive, 1); |
Jay Srinivasan | 5fac757 | 2012-02-23 10:59:01 -0800 | [diff] [blame] | 110 | |
| 111 | bad: |
| 112 | |
| 113 | DriveClose(&drive, 0); |
| 114 | return CGPT_FAILED; |
Jay Srinivasan | a058143 | 2012-01-26 21:50:05 -0800 | [diff] [blame] | 115 | } |