blob: 038e4f3a4a8053555c6dd94ab227aafcb454f0eb [file] [log] [blame]
srs5694e7b4ff92009-08-18 13:16:10 -04001/* gpt.cc -- Functions for loading, saving, and manipulating legacy MBR and GPT partition
2 data. */
3
srs5694e4ac11e2009-08-31 10:13:04 -04004/* By Rod Smith, initial coding January to February, 2009 */
srs5694e7b4ff92009-08-18 13:16:10 -04005
Roderick W. Smithe3ee7332013-09-24 12:56:11 -04006/* This program is copyright (c) 2009-2013 by Roderick W. Smith. It is distributed
srs5694221e0872009-08-29 15:00:31 -04007 under the terms of the GNU GPL version 2, as detailed in the COPYING file. */
8
srs5694e7b4ff92009-08-18 13:16:10 -04009#define __STDC_LIMIT_MACROS
Aurimas Liutikasfcad0602016-05-10 19:16:10 -070010#ifndef __STDC_CONSTANT_MACROS
srs5694e7b4ff92009-08-18 13:16:10 -040011#define __STDC_CONSTANT_MACROS
Aurimas Liutikasfcad0602016-05-10 19:16:10 -070012#endif
srs5694e7b4ff92009-08-18 13:16:10 -040013
14#include <stdio.h>
srs5694e7b4ff92009-08-18 13:16:10 -040015#include <stdlib.h>
16#include <stdint.h>
17#include <fcntl.h>
18#include <string.h>
srs5694a8582cf2010-03-19 14:21:59 -040019#include <math.h>
srs5694e7b4ff92009-08-18 13:16:10 -040020#include <time.h>
21#include <sys/stat.h>
22#include <errno.h>
srs5694fed16d02010-01-27 23:03:40 -050023#include <iostream>
srs56949a46b042011-03-15 00:34:10 -040024#include <algorithm>
srs5694e7b4ff92009-08-18 13:16:10 -040025#include "crc32.h"
26#include "gpt.h"
srs5694221e0872009-08-29 15:00:31 -040027#include "bsd.h"
srs5694e7b4ff92009-08-18 13:16:10 -040028#include "support.h"
29#include "parttypes.h"
30#include "attributes.h"
srs5694546a9c72010-01-26 16:00:26 -050031#include "diskio.h"
srs5694e7b4ff92009-08-18 13:16:10 -040032
33using namespace std;
34
srs56948f1b2d62010-05-23 13:07:19 -040035#ifdef __FreeBSD__
srs56949ba54212010-05-18 23:24:02 -040036#define log2(x) (log(x) / M_LN2)
37#endif // __FreeBSD__
38
srs56948f1b2d62010-05-23 13:07:19 -040039#ifdef _MSC_VER
40#define log2(x) (log((double) x) / log(2.0))
41#endif // Microsoft Visual C++
srs56949ba54212010-05-18 23:24:02 -040042
Roderick W. Smith1f7822e2014-03-28 23:54:21 -040043#ifdef EFI
44// in UEFI mode MMX registers are not yet available so using the
45// x86_64 ABI to move "double" values around is not an option.
46#ifdef log2
47#undef log2
48#endif
49#define log2(x) log2_32( x )
50static inline uint32_t log2_32(uint32_t v) {
51 int r = -1;
52 while (v >= 1) {
53 r++;
54 v >>= 1;
55 }
56 return r;
57}
58#endif
59
srs5694e7b4ff92009-08-18 13:16:10 -040060/****************************************
61 * *
62 * GPTData class and related structures *
63 * *
64 ****************************************/
65
srs5694e4ac11e2009-08-31 10:13:04 -040066// Default constructor
srs5694e7b4ff92009-08-18 13:16:10 -040067GPTData::GPTData(void) {
68 blockSize = SECTOR_SIZE; // set a default
69 diskSize = 0;
70 partitions = NULL;
71 state = gpt_valid;
srs5694fed16d02010-01-27 23:03:40 -050072 device = "";
srs56945d58fe02010-01-03 20:57:08 -050073 justLooking = 0;
srs5694e7b4ff92009-08-18 13:16:10 -040074 mainCrcOk = 0;
75 secondCrcOk = 0;
76 mainPartsCrcOk = 0;
77 secondPartsCrcOk = 0;
srs5694221e0872009-08-29 15:00:31 -040078 apmFound = 0;
79 bsdFound = 0;
srs56940873e9d2010-10-07 13:00:45 -040080 sectorAlignment = MIN_AF_ALIGNMENT; // Align partitions on 4096-byte boundaries by default
srs5694ba00fed2010-01-12 18:18:36 -050081 beQuiet = 0;
82 whichWasUsed = use_new;
srs56941e093722010-01-05 00:14:19 -050083 mainHeader.numParts = 0;
srs56940283dae2010-04-28 16:44:34 -040084 numParts = 0;
srs5694e7b4ff92009-08-18 13:16:10 -040085 SetGPTSize(NUM_GPT_ENTRIES);
srs5694d1b11e82011-09-18 21:12:28 -040086 // Initialize CRC functions...
87 chksum_crc32gentab();
srs5694e7b4ff92009-08-18 13:16:10 -040088} // GPTData default constructor
89
90// The following constructor loads GPT data from a device file
srs5694fed16d02010-01-27 23:03:40 -050091GPTData::GPTData(string filename) {
srs5694e7b4ff92009-08-18 13:16:10 -040092 blockSize = SECTOR_SIZE; // set a default
93 diskSize = 0;
94 partitions = NULL;
95 state = gpt_invalid;
srs5694fed16d02010-01-27 23:03:40 -050096 device = "";
srs56945d58fe02010-01-03 20:57:08 -050097 justLooking = 0;
srs5694e7b4ff92009-08-18 13:16:10 -040098 mainCrcOk = 0;
99 secondCrcOk = 0;
100 mainPartsCrcOk = 0;
101 secondPartsCrcOk = 0;
srs5694221e0872009-08-29 15:00:31 -0400102 apmFound = 0;
103 bsdFound = 0;
srs56940873e9d2010-10-07 13:00:45 -0400104 sectorAlignment = MIN_AF_ALIGNMENT; // Align partitions on 4096-byte boundaries by default
srs5694ba00fed2010-01-12 18:18:36 -0500105 beQuiet = 0;
106 whichWasUsed = use_new;
srs56941e093722010-01-05 00:14:19 -0500107 mainHeader.numParts = 0;
srs56940283dae2010-04-28 16:44:34 -0400108 numParts = 0;
srs5694d1b11e82011-09-18 21:12:28 -0400109 // Initialize CRC functions...
110 chksum_crc32gentab();
srs56943c0af382010-01-15 19:19:18 -0500111 if (!LoadPartitions(filename))
112 exit(2);
srs5694fed16d02010-01-27 23:03:40 -0500113} // GPTData(string filename) constructor
srs5694e7b4ff92009-08-18 13:16:10 -0400114
srs5694e4ac11e2009-08-31 10:13:04 -0400115// Destructor
srs5694e7b4ff92009-08-18 13:16:10 -0400116GPTData::~GPTData(void) {
srs5694cb76c672010-02-11 22:22:22 -0500117 delete[] partitions;
srs5694e7b4ff92009-08-18 13:16:10 -0400118} // GPTData destructor
119
srs569464cbd172011-03-01 22:03:54 -0500120// Assignment operator
121GPTData & GPTData::operator=(const GPTData & orig) {
122 uint32_t i;
123
124 mainHeader = orig.mainHeader;
125 numParts = orig.numParts;
126 secondHeader = orig.secondHeader;
127 protectiveMBR = orig.protectiveMBR;
128 device = orig.device;
129 blockSize = orig.blockSize;
130 diskSize = orig.diskSize;
131 state = orig.state;
132 justLooking = orig.justLooking;
133 mainCrcOk = orig.mainCrcOk;
134 secondCrcOk = orig.secondCrcOk;
135 mainPartsCrcOk = orig.mainPartsCrcOk;
136 secondPartsCrcOk = orig.secondPartsCrcOk;
137 apmFound = orig.apmFound;
138 bsdFound = orig.bsdFound;
139 sectorAlignment = orig.sectorAlignment;
140 beQuiet = orig.beQuiet;
141 whichWasUsed = orig.whichWasUsed;
142
143 myDisk.OpenForRead(orig.myDisk.GetName());
144
145 delete[] partitions;
srs569401f7f082011-03-15 23:53:31 -0400146 partitions = new GPTPart [numParts];
srs56946aae2a92011-06-10 01:16:51 -0400147 if (partitions == NULL) {
srs569464cbd172011-03-01 22:03:54 -0500148 cerr << "Error! Could not allocate memory for partitions in GPTData::operator=()!\n"
srs56946aae2a92011-06-10 01:16:51 -0400149 << "Terminating!\n";
150 exit(1);
151 } // if
152 for (i = 0; i < numParts; i++) {
153 partitions[i] = orig.partitions[i];
srs5694d1b11e82011-09-18 21:12:28 -0400154 } // for
155
srs569464cbd172011-03-01 22:03:54 -0500156 return *this;
157} // GPTData::operator=()
158
srs5694e4ac11e2009-08-31 10:13:04 -0400159/*********************************************************************
160 * *
161 * Begin functions that verify data, or that adjust the verification *
162 * information (compute CRCs, rebuild headers) *
163 * *
164 *********************************************************************/
srs5694e7b4ff92009-08-18 13:16:10 -0400165
srs5694e4ac11e2009-08-31 10:13:04 -0400166// Perform detailed verification, reporting on any problems found, but
167// do *NOT* recover from these problems. Returns the total number of
168// problems identified.
169int GPTData::Verify(void) {
srs569464cbd172011-03-01 22:03:54 -0500170 int problems = 0, alignProbs = 0;
srs5694e321d442010-01-29 17:44:04 -0500171 uint32_t i, numSegments;
172 uint64_t totalFree, largestSegment;
srs5694e4ac11e2009-08-31 10:13:04 -0400173
174 // First, check for CRC errors in the GPT data....
175 if (!mainCrcOk) {
176 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500177 cout << "\nProblem: The CRC for the main GPT header is invalid. The main GPT header may\n"
178 << "be corrupt. Consider loading the backup GPT header to rebuild the main GPT\n"
179 << "header ('b' on the recovery & transformation menu). This report may be a false\n"
180 << "alarm if you've already corrected other problems.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400181 } // if
182 if (!mainPartsCrcOk) {
183 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500184 cout << "\nProblem: The CRC for the main partition table is invalid. This table may be\n"
185 << "corrupt. Consider loading the backup partition table ('c' on the recovery &\n"
186 << "transformation menu). This report may be a false alarm if you've already\n"
187 << "corrected other problems.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400188 } // if
189 if (!secondCrcOk) {
190 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500191 cout << "\nProblem: The CRC for the backup GPT header is invalid. The backup GPT header\n"
192 << "may be corrupt. Consider using the main GPT header to rebuild the backup GPT\n"
193 << "header ('d' on the recovery & transformation menu). This report may be a false\n"
194 << "alarm if you've already corrected other problems.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400195 } // if
196 if (!secondPartsCrcOk) {
197 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500198 cout << "\nCaution: The CRC for the backup partition table is invalid. This table may\n"
199 << "be corrupt. This program will automatically create a new backup partition\n"
200 << "table when you save your partitions.\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400201 } // if
202
srs5694978041c2009-09-21 20:51:47 -0400203 // Now check that the main and backup headers both point to themselves....
204 if (mainHeader.currentLBA != 1) {
205 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500206 cout << "\nProblem: The main header's self-pointer doesn't point to itself. This problem\n"
207 << "is being automatically corrected, but it may be a symptom of more serious\n"
208 << "problems. Think carefully before saving changes with 'w' or using this disk.\n";
srs5694978041c2009-09-21 20:51:47 -0400209 mainHeader.currentLBA = 1;
210 } // if
211 if (secondHeader.currentLBA != (diskSize - UINT64_C(1))) {
212 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500213 cout << "\nProblem: The secondary header's self-pointer indicates that it doesn't reside\n"
214 << "at the end of the disk. If you've added a disk to a RAID array, use the 'e'\n"
215 << "option on the experts' menu to adjust the secondary header's and partition\n"
216 << "table's locations.\n";
srs5694978041c2009-09-21 20:51:47 -0400217 } // if
218
219 // Now check that critical main and backup GPT entries match each other
srs5694e4ac11e2009-08-31 10:13:04 -0400220 if (mainHeader.currentLBA != secondHeader.backupLBA) {
221 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500222 cout << "\nProblem: main GPT header's current LBA pointer (" << mainHeader.currentLBA
223 << ") doesn't\nmatch the backup GPT header's alternate LBA pointer("
224 << secondHeader.backupLBA << ").\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400225 } // if
226 if (mainHeader.backupLBA != secondHeader.currentLBA) {
227 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500228 cout << "\nProblem: main GPT header's backup LBA pointer (" << mainHeader.backupLBA
229 << ") doesn't\nmatch the backup GPT header's current LBA pointer ("
230 << secondHeader.currentLBA << ").\n"
231 << "The 'e' option on the experts' menu may fix this problem.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400232 } // if
233 if (mainHeader.firstUsableLBA != secondHeader.firstUsableLBA) {
234 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500235 cout << "\nProblem: main GPT header's first usable LBA pointer (" << mainHeader.firstUsableLBA
236 << ") doesn't\nmatch the backup GPT header's first usable LBA pointer ("
237 << secondHeader.firstUsableLBA << ")\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400238 } // if
239 if (mainHeader.lastUsableLBA != secondHeader.lastUsableLBA) {
240 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500241 cout << "\nProblem: main GPT header's last usable LBA pointer (" << mainHeader.lastUsableLBA
242 << ") doesn't\nmatch the backup GPT header's last usable LBA pointer ("
243 << secondHeader.lastUsableLBA << ")\n"
244 << "The 'e' option on the experts' menu can probably fix this problem.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400245 } // if
srs56946699b012010-02-04 00:55:30 -0500246 if ((mainHeader.diskGUID != secondHeader.diskGUID)) {
srs5694e4ac11e2009-08-31 10:13:04 -0400247 problems++;
srs56945a081752010-09-24 20:39:41 -0400248 cout << "\nProblem: main header's disk GUID (" << mainHeader.diskGUID
srs5694fed16d02010-01-27 23:03:40 -0500249 << ") doesn't\nmatch the backup GPT header's disk GUID ("
srs56945a081752010-09-24 20:39:41 -0400250 << secondHeader.diskGUID << ")\n"
srs5694fed16d02010-01-27 23:03:40 -0500251 << "You should use the 'b' or 'd' option on the recovery & transformation menu to\n"
252 << "select one or the other header.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400253 } // if
254 if (mainHeader.numParts != secondHeader.numParts) {
255 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500256 cout << "\nProblem: main GPT header's number of partitions (" << mainHeader.numParts
257 << ") doesn't\nmatch the backup GPT header's number of partitions ("
258 << secondHeader.numParts << ")\n"
259 << "Resizing the partition table ('s' on the experts' menu) may help.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400260 } // if
261 if (mainHeader.sizeOfPartitionEntries != secondHeader.sizeOfPartitionEntries) {
262 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500263 cout << "\nProblem: main GPT header's size of partition entries ("
264 << mainHeader.sizeOfPartitionEntries << ") doesn't\n"
265 << "match the backup GPT header's size of partition entries ("
266 << secondHeader.sizeOfPartitionEntries << ")\n"
267 << "You should use the 'b' or 'd' option on the recovery & transformation menu to\n"
268 << "select one or the other header.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400269 } // if
270
271 // Now check for a few other miscellaneous problems...
272 // Check that the disk size will hold the data...
srs569464cbd172011-03-01 22:03:54 -0500273 if (mainHeader.backupLBA >= diskSize) {
srs5694e4ac11e2009-08-31 10:13:04 -0400274 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500275 cout << "\nProblem: Disk is too small to hold all the data!\n"
276 << "(Disk size is " << diskSize << " sectors, needs to be "
srs569464cbd172011-03-01 22:03:54 -0500277 << mainHeader.backupLBA + UINT64_C(1) << " sectors.)\n"
srs5694fed16d02010-01-27 23:03:40 -0500278 << "The 'e' option on the experts' menu may fix this problem.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400279 } // if
280
srs5694d8eed462012-12-15 01:55:21 -0500281 if ((mainHeader.lastUsableLBA >= diskSize) || (mainHeader.lastUsableLBA > mainHeader.backupLBA)) {
282 problems++;
srs56940741fa22013-01-09 12:55:40 -0500283 cout << "\nProblem: GPT claims the disk is larger than it is! (Claimed last usable\n"
284 << "sector is " << mainHeader.lastUsableLBA << ", but backup header is at\n"
285 << mainHeader.backupLBA << " and disk size is " << diskSize << " sectors.\n"
286 << "The 'e' option on the experts' menu will probably fix this problem\n";
srs5694d8eed462012-12-15 01:55:21 -0500287 }
288
srs5694e4ac11e2009-08-31 10:13:04 -0400289 // Check for overlapping partitions....
290 problems += FindOverlaps();
291
srs569455d92612010-03-07 22:16:07 -0500292 // Check for insane partitions (start after end, hugely big, etc.)
293 problems += FindInsanePartitions();
294
srs5694e4ac11e2009-08-31 10:13:04 -0400295 // Check for mismatched MBR and GPT partitions...
296 problems += FindHybridMismatches();
297
srs5694327129e2010-09-22 01:07:31 -0400298 // Check for MBR-specific problems....
299 problems += VerifyMBR();
300
Roderick W. Smith042f38a2013-08-31 17:40:15 -0400301 // Check for a 0xEE protective partition that's marked as active....
302 if (protectiveMBR.IsEEActive()) {
303 cout << "\nWarning: The 0xEE protective partition in the MBR is marked as active. This is\n"
304 << "technically a violation of the GPT specification, and can cause some EFIs to\n"
305 << "ignore the disk, but it is required to boot from a GPT disk on some BIOS-based\n"
306 << "computers. You can clear this flag by creating a fresh protective MBR using\n"
307 << "the 'n' option on the experts' menu.\n";
308 }
309
srs5694e4ac11e2009-08-31 10:13:04 -0400310 // Verify that partitions don't run into GPT data areas....
311 problems += CheckGPTSize();
312
Roderick W. Smith4a702a22014-01-25 23:46:42 -0500313 if (!protectiveMBR.DoTheyFit()) {
314 cout << "\nPartition(s) in the protective MBR are too big for the disk! Creating a\n"
315 << "fresh protective or hybrid MBR is recommended.\n";
316 problems++;
317 }
318
srs56941d1448a2009-12-31 21:20:19 -0500319 // Check that partitions are aligned on proper boundaries (for WD Advanced
320 // Format and similar disks)....
srs56940283dae2010-04-28 16:44:34 -0400321 for (i = 0; i < numParts; i++) {
srs5694e69e6802012-01-20 22:37:12 -0500322 if ((partitions[i].IsUsed()) && (partitions[i].GetFirstLBA() % sectorAlignment) != 0) {
srs5694fed16d02010-01-27 23:03:40 -0500323 cout << "\nCaution: Partition " << i + 1 << " doesn't begin on a "
324 << sectorAlignment << "-sector boundary. This may\nresult "
325 << "in degraded performance on some modern (2009 and later) hard disks.\n";
srs569464cbd172011-03-01 22:03:54 -0500326 alignProbs++;
srs56941d1448a2009-12-31 21:20:19 -0500327 } // if
328 } // for
srs569464cbd172011-03-01 22:03:54 -0500329 if (alignProbs > 0)
330 cout << "\nConsult http://www.ibm.com/developerworks/linux/library/l-4kb-sector-disks/\n"
331 << "for information on disk alignment.\n";
srs56941d1448a2009-12-31 21:20:19 -0500332
srs5694e4ac11e2009-08-31 10:13:04 -0400333 // Now compute available space, but only if no problems found, since
334 // problems could affect the results
335 if (problems == 0) {
336 totalFree = FindFreeBlocks(&numSegments, &largestSegment);
srs569464cbd172011-03-01 22:03:54 -0500337 cout << "\nNo problems found. " << totalFree << " free sectors ("
srs569401f7f082011-03-15 23:53:31 -0400338 << BytesToIeee(totalFree, blockSize) << ") available in "
srs5694fed16d02010-01-27 23:03:40 -0500339 << numSegments << "\nsegments, the largest of which is "
srs569401f7f082011-03-15 23:53:31 -0400340 << largestSegment << " (" << BytesToIeee(largestSegment, blockSize)
srs56940283dae2010-04-28 16:44:34 -0400341 << ") in size.\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400342 } else {
srs56940a697312010-01-28 21:10:52 -0500343 cout << "\nIdentified " << problems << " problems!\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400344 } // if/else
srs5694e4ac11e2009-08-31 10:13:04 -0400345
346 return (problems);
347} // GPTData::Verify()
srs5694e7b4ff92009-08-18 13:16:10 -0400348
349// Checks to see if the GPT tables overrun existing partitions; if they
srs5694221e0872009-08-29 15:00:31 -0400350// do, issues a warning but takes no action. Returns number of problems
351// detected (0 if OK, 1 to 2 if problems).
srs5694e7b4ff92009-08-18 13:16:10 -0400352int GPTData::CheckGPTSize(void) {
353 uint64_t overlap, firstUsedBlock, lastUsedBlock;
354 uint32_t i;
srs5694221e0872009-08-29 15:00:31 -0400355 int numProbs = 0;
srs5694e7b4ff92009-08-18 13:16:10 -0400356
357 // first, locate the first & last used blocks
358 firstUsedBlock = UINT64_MAX;
359 lastUsedBlock = 0;
srs56940283dae2010-04-28 16:44:34 -0400360 for (i = 0; i < numParts; i++) {
srs5694e69e6802012-01-20 22:37:12 -0500361 if (partitions[i].IsUsed()) {
srs5694706e5122012-01-21 13:47:24 -0500362 if (partitions[i].GetFirstLBA() < firstUsedBlock)
srs5694e69e6802012-01-20 22:37:12 -0500363 firstUsedBlock = partitions[i].GetFirstLBA();
364 if (partitions[i].GetLastLBA() > lastUsedBlock) {
365 lastUsedBlock = partitions[i].GetLastLBA();
366 } // if
367 } // if
srs5694e7b4ff92009-08-18 13:16:10 -0400368 } // for
369
370 // If the disk size is 0 (the default), then it means that various
371 // variables aren't yet set, so the below tests will be useless;
372 // therefore we should skip everything
373 if (diskSize != 0) {
374 if (mainHeader.firstUsableLBA > firstUsedBlock) {
375 overlap = mainHeader.firstUsableLBA - firstUsedBlock;
srs5694fed16d02010-01-27 23:03:40 -0500376 cout << "Warning! Main partition table overlaps the first partition by "
377 << overlap << " blocks!\n";
srs5694221e0872009-08-29 15:00:31 -0400378 if (firstUsedBlock > 2) {
srs5694fed16d02010-01-27 23:03:40 -0500379 cout << "Try reducing the partition table size by " << overlap * 4
380 << " entries.\n(Use the 's' item on the experts' menu.)\n";
srs5694221e0872009-08-29 15:00:31 -0400381 } else {
srs5694fed16d02010-01-27 23:03:40 -0500382 cout << "You will need to delete this partition or resize it in another utility.\n";
srs5694221e0872009-08-29 15:00:31 -0400383 } // if/else
384 numProbs++;
srs5694e7b4ff92009-08-18 13:16:10 -0400385 } // Problem at start of disk
386 if (mainHeader.lastUsableLBA < lastUsedBlock) {
387 overlap = lastUsedBlock - mainHeader.lastUsableLBA;
srs569455d92612010-03-07 22:16:07 -0500388 cout << "\nWarning! Secondary partition table overlaps the last partition by\n"
srs5694fed16d02010-01-27 23:03:40 -0500389 << overlap << " blocks!\n";
srs5694221e0872009-08-29 15:00:31 -0400390 if (lastUsedBlock > (diskSize - 2)) {
srs5694fed16d02010-01-27 23:03:40 -0500391 cout << "You will need to delete this partition or resize it in another utility.\n";
srs5694221e0872009-08-29 15:00:31 -0400392 } else {
srs5694fed16d02010-01-27 23:03:40 -0500393 cout << "Try reducing the partition table size by " << overlap * 4
394 << " entries.\n(Use the 's' item on the experts' menu.)\n";
srs5694221e0872009-08-29 15:00:31 -0400395 } // if/else
396 numProbs++;
srs5694e7b4ff92009-08-18 13:16:10 -0400397 } // Problem at end of disk
398 } // if (diskSize != 0)
srs5694221e0872009-08-29 15:00:31 -0400399 return numProbs;
srs5694e7b4ff92009-08-18 13:16:10 -0400400} // GPTData::CheckGPTSize()
401
srs5694e7b4ff92009-08-18 13:16:10 -0400402// Check the validity of the GPT header. Returns 1 if the main header
403// is valid, 2 if the backup header is valid, 3 if both are valid, and
srs5694d1b11e82011-09-18 21:12:28 -0400404// 0 if neither is valid. Note that this function checks the GPT signature,
405// revision value, and CRCs in both headers.
srs5694e7b4ff92009-08-18 13:16:10 -0400406int GPTData::CheckHeaderValidity(void) {
407 int valid = 3;
408
srs5694fed16d02010-01-27 23:03:40 -0500409 cout.setf(ios::uppercase);
410 cout.fill('0');
411
412 // Note: failed GPT signature checks produce no error message because
413 // a message is displayed in the ReversePartitionBytes() function
srs5694d1b11e82011-09-18 21:12:28 -0400414 if ((mainHeader.signature != GPT_SIGNATURE) || (!CheckHeaderCRC(&mainHeader, 1))) {
srs5694e7b4ff92009-08-18 13:16:10 -0400415 valid -= 1;
srs5694e7b4ff92009-08-18 13:16:10 -0400416 } else if ((mainHeader.revision != 0x00010000) && valid) {
417 valid -= 1;
srs5694fed16d02010-01-27 23:03:40 -0500418 cout << "Unsupported GPT version in main header; read 0x";
419 cout.width(8);
420 cout << hex << mainHeader.revision << ", should be\n0x";
421 cout.width(8);
422 cout << UINT32_C(0x00010000) << dec << "\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400423 } // if/else/if
424
srs5694d1b11e82011-09-18 21:12:28 -0400425 if ((secondHeader.signature != GPT_SIGNATURE) || (!CheckHeaderCRC(&secondHeader))) {
srs5694e7b4ff92009-08-18 13:16:10 -0400426 valid -= 2;
srs5694e7b4ff92009-08-18 13:16:10 -0400427 } else if ((secondHeader.revision != 0x00010000) && valid) {
428 valid -= 2;
srs5694fed16d02010-01-27 23:03:40 -0500429 cout << "Unsupported GPT version in backup header; read 0x";
430 cout.width(8);
431 cout << hex << secondHeader.revision << ", should be\n0x";
432 cout.width(8);
433 cout << UINT32_C(0x00010000) << dec << "\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400434 } // if/else/if
435
srs5694df9d3632011-01-08 18:33:24 -0500436 // Check for an Apple disk signature
437 if (((mainHeader.signature << 32) == APM_SIGNATURE1) ||
438 (mainHeader.signature << 32) == APM_SIGNATURE2) {
srs5694221e0872009-08-29 15:00:31 -0400439 apmFound = 1; // Will display warning message later
srs56943f2fe992009-11-24 18:28:18 -0500440 } // if
srs5694fed16d02010-01-27 23:03:40 -0500441 cout.fill(' ');
srs56942a9f5da2009-08-26 00:48:01 -0400442
srs5694fed16d02010-01-27 23:03:40 -0500443 return valid;
srs5694e7b4ff92009-08-18 13:16:10 -0400444} // GPTData::CheckHeaderValidity()
445
446// Check the header CRC to see if it's OK...
srs5694d1b11e82011-09-18 21:12:28 -0400447// Note: Must be called with header in platform-ordered byte order.
448// Returns 1 if header's computed CRC matches the stored value, 0 if the
449// computed and stored values don't match
450int GPTData::CheckHeaderCRC(struct GPTHeader* header, int warn) {
srs5694978041c2009-09-21 20:51:47 -0400451 uint32_t oldCRC, newCRC, hSize;
srs5694d1b11e82011-09-18 21:12:28 -0400452 uint8_t *temp;
srs5694e7b4ff92009-08-18 13:16:10 -0400453
srs56942a9f5da2009-08-26 00:48:01 -0400454 // Back up old header CRC and then blank it, since it must be 0 for
srs5694e7b4ff92009-08-18 13:16:10 -0400455 // computation to be valid
456 oldCRC = header->headerCRC;
457 header->headerCRC = UINT32_C(0);
srs5694d1b11e82011-09-18 21:12:28 -0400458
srs5694978041c2009-09-21 20:51:47 -0400459 hSize = header->headerSize;
460
srs5694d1b11e82011-09-18 21:12:28 -0400461 if (IsLittleEndian() == 0)
462 ReverseHeaderBytes(header);
srs5694e7b4ff92009-08-18 13:16:10 -0400463
srs5694d1b11e82011-09-18 21:12:28 -0400464 if ((hSize > blockSize) || (hSize < HEADER_SIZE)) {
465 if (warn) {
466 cerr << "\aWarning! Header size is specified as " << hSize << ", which is invalid.\n";
467 cerr << "Setting the header size for CRC computation to " << HEADER_SIZE << "\n";
468 } // if
469 hSize = HEADER_SIZE;
470 } else if ((hSize > sizeof(GPTHeader)) && warn) {
471 cout << "\aCaution! Header size for CRC check is " << hSize << ", which is greater than " << sizeof(GPTHeader) << ".\n";
472 cout << "If stray data exists after the header on the header sector, it will be ignored,\n"
473 << "which may result in a CRC false alarm.\n";
474 } // if/elseif
475 temp = new uint8_t[hSize];
476 if (temp != NULL) {
477 memset(temp, 0, hSize);
478 if (hSize < sizeof(GPTHeader))
479 memcpy(temp, header, hSize);
480 else
481 memcpy(temp, header, sizeof(GPTHeader));
srs5694e7b4ff92009-08-18 13:16:10 -0400482
srs5694d1b11e82011-09-18 21:12:28 -0400483 newCRC = chksum_crc32((unsigned char*) temp, hSize);
484 delete[] temp;
485 } else {
486 cerr << "Could not allocate memory in GPTData::CheckHeaderCRC()! Aborting!\n";
487 exit(1);
488 }
489 if (IsLittleEndian() == 0)
490 ReverseHeaderBytes(header);
srs5694978041c2009-09-21 20:51:47 -0400491 header->headerCRC = oldCRC;
srs5694e7b4ff92009-08-18 13:16:10 -0400492 return (oldCRC == newCRC);
493} // GPTData::CheckHeaderCRC()
494
srs56946699b012010-02-04 00:55:30 -0500495// Recompute all the CRCs. Must be called before saving if any changes have
496// been made. Must be called on platform-ordered data (this function reverses
497// byte order and then undoes that reversal.)
srs5694e7b4ff92009-08-18 13:16:10 -0400498void GPTData::RecomputeCRCs(void) {
srs56940283dae2010-04-28 16:44:34 -0400499 uint32_t crc, hSize;
srs56942a9f5da2009-08-26 00:48:01 -0400500 int littleEndian = 1;
srs5694e7b4ff92009-08-18 13:16:10 -0400501
srs5694d1b11e82011-09-18 21:12:28 -0400502 // If the header size is bigger than the GPT header data structure, reset it;
503 // otherwise, set both header sizes to whatever the main one is....
504 if (mainHeader.headerSize > sizeof(GPTHeader))
505 hSize = secondHeader.headerSize = mainHeader.headerSize = HEADER_SIZE;
506 else
507 hSize = secondHeader.headerSize = mainHeader.headerSize;
srs56946699b012010-02-04 00:55:30 -0500508
509 if ((littleEndian = IsLittleEndian()) == 0) {
510 ReversePartitionBytes();
511 ReverseHeaderBytes(&mainHeader);
512 ReverseHeaderBytes(&secondHeader);
513 } // if
srs56942a9f5da2009-08-26 00:48:01 -0400514
srs5694e7b4ff92009-08-18 13:16:10 -0400515 // Compute CRC of partition tables & store in main and secondary headers
srs56940283dae2010-04-28 16:44:34 -0400516 crc = chksum_crc32((unsigned char*) partitions, numParts * GPT_SIZE);
srs5694e7b4ff92009-08-18 13:16:10 -0400517 mainHeader.partitionEntriesCRC = crc;
518 secondHeader.partitionEntriesCRC = crc;
srs56942a9f5da2009-08-26 00:48:01 -0400519 if (littleEndian == 0) {
srs5694221e0872009-08-29 15:00:31 -0400520 ReverseBytes(&mainHeader.partitionEntriesCRC, 4);
521 ReverseBytes(&secondHeader.partitionEntriesCRC, 4);
srs56942a9f5da2009-08-26 00:48:01 -0400522 } // if
srs5694e7b4ff92009-08-18 13:16:10 -0400523
srs5694d1b11e82011-09-18 21:12:28 -0400524 // Zero out GPT headers' own CRCs (required for correct computation)
srs5694e7b4ff92009-08-18 13:16:10 -0400525 mainHeader.headerCRC = 0;
526 secondHeader.headerCRC = 0;
527
srs5694978041c2009-09-21 20:51:47 -0400528 crc = chksum_crc32((unsigned char*) &mainHeader, hSize);
srs56942a9f5da2009-08-26 00:48:01 -0400529 if (littleEndian == 0)
srs5694221e0872009-08-29 15:00:31 -0400530 ReverseBytes(&crc, 4);
srs5694e7b4ff92009-08-18 13:16:10 -0400531 mainHeader.headerCRC = crc;
srs5694978041c2009-09-21 20:51:47 -0400532 crc = chksum_crc32((unsigned char*) &secondHeader, hSize);
srs56942a9f5da2009-08-26 00:48:01 -0400533 if (littleEndian == 0)
srs5694221e0872009-08-29 15:00:31 -0400534 ReverseBytes(&crc, 4);
srs5694e7b4ff92009-08-18 13:16:10 -0400535 secondHeader.headerCRC = crc;
srs56946699b012010-02-04 00:55:30 -0500536
srs5694d1b11e82011-09-18 21:12:28 -0400537 if (littleEndian == 0) {
srs56946699b012010-02-04 00:55:30 -0500538 ReverseHeaderBytes(&mainHeader);
539 ReverseHeaderBytes(&secondHeader);
540 ReversePartitionBytes();
541 } // if
srs5694e7b4ff92009-08-18 13:16:10 -0400542} // GPTData::RecomputeCRCs()
543
srs5694e7b4ff92009-08-18 13:16:10 -0400544// Rebuild the main GPT header, using the secondary header as a model.
545// Typically called when the main header has been found to be corrupt.
546void GPTData::RebuildMainHeader(void) {
srs5694e7b4ff92009-08-18 13:16:10 -0400547 mainHeader.signature = GPT_SIGNATURE;
548 mainHeader.revision = secondHeader.revision;
srs5694978041c2009-09-21 20:51:47 -0400549 mainHeader.headerSize = secondHeader.headerSize;
srs5694e7b4ff92009-08-18 13:16:10 -0400550 mainHeader.headerCRC = UINT32_C(0);
551 mainHeader.reserved = secondHeader.reserved;
552 mainHeader.currentLBA = secondHeader.backupLBA;
553 mainHeader.backupLBA = secondHeader.currentLBA;
554 mainHeader.firstUsableLBA = secondHeader.firstUsableLBA;
555 mainHeader.lastUsableLBA = secondHeader.lastUsableLBA;
srs56946699b012010-02-04 00:55:30 -0500556 mainHeader.diskGUID = secondHeader.diskGUID;
srs5694e7b4ff92009-08-18 13:16:10 -0400557 mainHeader.partitionEntriesLBA = UINT64_C(2);
558 mainHeader.numParts = secondHeader.numParts;
559 mainHeader.sizeOfPartitionEntries = secondHeader.sizeOfPartitionEntries;
560 mainHeader.partitionEntriesCRC = secondHeader.partitionEntriesCRC;
srs569401f7f082011-03-15 23:53:31 -0400561 memcpy(mainHeader.reserved2, secondHeader.reserved2, sizeof(mainHeader.reserved2));
srs5694546a9c72010-01-26 16:00:26 -0500562 mainCrcOk = secondCrcOk;
srs5694706e5122012-01-21 13:47:24 -0500563 SetGPTSize(mainHeader.numParts, 0);
srs5694e7b4ff92009-08-18 13:16:10 -0400564} // GPTData::RebuildMainHeader()
565
566// Rebuild the secondary GPT header, using the main header as a model.
567void GPTData::RebuildSecondHeader(void) {
srs5694e7b4ff92009-08-18 13:16:10 -0400568 secondHeader.signature = GPT_SIGNATURE;
569 secondHeader.revision = mainHeader.revision;
srs5694978041c2009-09-21 20:51:47 -0400570 secondHeader.headerSize = mainHeader.headerSize;
srs5694e7b4ff92009-08-18 13:16:10 -0400571 secondHeader.headerCRC = UINT32_C(0);
572 secondHeader.reserved = mainHeader.reserved;
573 secondHeader.currentLBA = mainHeader.backupLBA;
574 secondHeader.backupLBA = mainHeader.currentLBA;
575 secondHeader.firstUsableLBA = mainHeader.firstUsableLBA;
576 secondHeader.lastUsableLBA = mainHeader.lastUsableLBA;
srs56946699b012010-02-04 00:55:30 -0500577 secondHeader.diskGUID = mainHeader.diskGUID;
srs5694e7b4ff92009-08-18 13:16:10 -0400578 secondHeader.partitionEntriesLBA = secondHeader.lastUsableLBA + UINT64_C(1);
579 secondHeader.numParts = mainHeader.numParts;
580 secondHeader.sizeOfPartitionEntries = mainHeader.sizeOfPartitionEntries;
581 secondHeader.partitionEntriesCRC = mainHeader.partitionEntriesCRC;
srs569401f7f082011-03-15 23:53:31 -0400582 memcpy(secondHeader.reserved2, mainHeader.reserved2, sizeof(secondHeader.reserved2));
srs5694546a9c72010-01-26 16:00:26 -0500583 secondCrcOk = mainCrcOk;
srs5694706e5122012-01-21 13:47:24 -0500584 SetGPTSize(secondHeader.numParts, 0);
srs5694e4ac11e2009-08-31 10:13:04 -0400585} // GPTData::RebuildSecondHeader()
586
587// Search for hybrid MBR entries that have no corresponding GPT partition.
588// Returns number of such mismatches found
589int GPTData::FindHybridMismatches(void) {
srs5694e321d442010-01-29 17:44:04 -0500590 int i, found, numFound = 0;
591 uint32_t j;
srs5694e4ac11e2009-08-31 10:13:04 -0400592 uint64_t mbrFirst, mbrLast;
593
594 for (i = 0; i < 4; i++) {
595 if ((protectiveMBR.GetType(i) != 0xEE) && (protectiveMBR.GetType(i) != 0x00)) {
596 j = 0;
597 found = 0;
srs5694d1b11e82011-09-18 21:12:28 -0400598 mbrFirst = (uint64_t) protectiveMBR.GetFirstSector(i);
599 mbrLast = mbrFirst + (uint64_t) protectiveMBR.GetLength(i) - UINT64_C(1);
srs5694e4ac11e2009-08-31 10:13:04 -0400600 do {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -0400601 if ((j < numParts) && (partitions[j].GetFirstLBA() == mbrFirst) &&
srs5694e69e6802012-01-20 22:37:12 -0500602 (partitions[j].GetLastLBA() == mbrLast) && (partitions[j].IsUsed()))
srs5694e4ac11e2009-08-31 10:13:04 -0400603 found = 1;
604 j++;
srs56940283dae2010-04-28 16:44:34 -0400605 } while ((!found) && (j < numParts));
srs5694e4ac11e2009-08-31 10:13:04 -0400606 if (!found) {
607 numFound++;
srs5694fed16d02010-01-27 23:03:40 -0500608 cout << "\nWarning! Mismatched GPT and MBR partition! MBR partition "
609 << i + 1 << ", of type 0x";
610 cout.fill('0');
611 cout.setf(ios::uppercase);
612 cout.width(2);
613 cout << hex << (int) protectiveMBR.GetType(i) << ",\n"
614 << "has no corresponding GPT partition! You may continue, but this condition\n"
615 << "might cause data loss in the future!\a\n" << dec;
616 cout.fill(' ');
srs5694e4ac11e2009-08-31 10:13:04 -0400617 } // if
618 } // if
619 } // for
620 return numFound;
621} // GPTData::FindHybridMismatches
622
623// Find overlapping partitions and warn user about them. Returns number of
624// overlapping partitions.
srs5694d1b11e82011-09-18 21:12:28 -0400625// Returns number of overlapping segments found.
srs5694e4ac11e2009-08-31 10:13:04 -0400626int GPTData::FindOverlaps(void) {
srs5694e321d442010-01-29 17:44:04 -0500627 int problems = 0;
628 uint32_t i, j;
srs5694e4ac11e2009-08-31 10:13:04 -0400629
srs56940283dae2010-04-28 16:44:34 -0400630 for (i = 1; i < numParts; i++) {
srs5694e4ac11e2009-08-31 10:13:04 -0400631 for (j = 0; j < i; j++) {
srs5694e69e6802012-01-20 22:37:12 -0500632 if ((partitions[i].IsUsed()) && (partitions[j].IsUsed()) &&
633 (partitions[i].DoTheyOverlap(partitions[j]))) {
srs5694e4ac11e2009-08-31 10:13:04 -0400634 problems++;
srs5694fed16d02010-01-27 23:03:40 -0500635 cout << "\nProblem: partitions " << i + 1 << " and " << j + 1 << " overlap:\n";
636 cout << " Partition " << i + 1 << ": " << partitions[i].GetFirstLBA()
637 << " to " << partitions[i].GetLastLBA() << "\n";
638 cout << " Partition " << j + 1 << ": " << partitions[j].GetFirstLBA()
639 << " to " << partitions[j].GetLastLBA() << "\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400640 } // if
641 } // for j...
642 } // for i...
643 return problems;
644} // GPTData::FindOverlaps()
645
srs569455d92612010-03-07 22:16:07 -0500646// Find partitions that are insane -- they start after they end or are too
647// big for the disk. (The latter should duplicate detection of overlaps
648// with GPT backup data structures, but better to err on the side of
649// redundant tests than to miss something....)
srs5694d1b11e82011-09-18 21:12:28 -0400650// Returns number of problems found.
srs569455d92612010-03-07 22:16:07 -0500651int GPTData::FindInsanePartitions(void) {
652 uint32_t i;
653 int problems = 0;
654
srs56940283dae2010-04-28 16:44:34 -0400655 for (i = 0; i < numParts; i++) {
srs5694e69e6802012-01-20 22:37:12 -0500656 if (partitions[i].IsUsed()) {
657 if (partitions[i].GetFirstLBA() > partitions[i].GetLastLBA()) {
658 problems++;
659 cout << "\nProblem: partition " << i + 1 << " ends before it begins.\n";
660 } // if
661 if (partitions[i].GetLastLBA() >= diskSize) {
662 problems++;
663 cout << "\nProblem: partition " << i + 1 << " is too big for the disk.\n";
664 } // if
srs569455d92612010-03-07 22:16:07 -0500665 } // if
666 } // for
667 return problems;
668} // GPTData::FindInsanePartitions(void)
669
670
srs5694e4ac11e2009-08-31 10:13:04 -0400671/******************************************************************
672 * *
673 * Begin functions that load data from disk or save data to disk. *
674 * *
675 ******************************************************************/
676
srs569464cbd172011-03-01 22:03:54 -0500677// Change the filename associated with the GPT. Used for duplicating
678// the partition table to a new disk and saving backups.
679// Returns 1 on success, 0 on failure.
srs5694bf8950c2011-03-12 01:23:12 -0500680int GPTData::SetDisk(const string & deviceFilename) {
srs569464cbd172011-03-01 22:03:54 -0500681 int err, allOK = 1;
682
683 device = deviceFilename;
684 if (allOK && myDisk.OpenForRead(deviceFilename)) {
685 // store disk information....
686 diskSize = myDisk.DiskSize(&err);
687 blockSize = (uint32_t) myDisk.GetBlockSize();
688 } // if
689 protectiveMBR.SetDisk(&myDisk);
690 protectiveMBR.SetDiskSize(diskSize);
691 protectiveMBR.SetBlockSize(blockSize);
692 return allOK;
srs5694bf8950c2011-03-12 01:23:12 -0500693} // GPTData::SetDisk()
srs569464cbd172011-03-01 22:03:54 -0500694
srs5694e4ac11e2009-08-31 10:13:04 -0400695// Scan for partition data. This function loads the MBR data (regular MBR or
696// protective MBR) and loads BSD disklabel data (which is probably invalid).
697// It also looks for APM data, forces a load of GPT data, and summarizes
698// the results.
srs5694546a9c72010-01-26 16:00:26 -0500699void GPTData::PartitionScan(void) {
srs5694e4ac11e2009-08-31 10:13:04 -0400700 BSDData bsdDisklabel;
srs5694e4ac11e2009-08-31 10:13:04 -0400701
702 // Read the MBR & check for BSD disklabel
srs5694546a9c72010-01-26 16:00:26 -0500703 protectiveMBR.ReadMBRData(&myDisk);
704 bsdDisklabel.ReadBSDData(&myDisk, 0, diskSize - 1);
srs5694e4ac11e2009-08-31 10:13:04 -0400705
706 // Load the GPT data, whether or not it's valid
srs5694546a9c72010-01-26 16:00:26 -0500707 ForceLoadGPTData();
srs5694ba00fed2010-01-12 18:18:36 -0500708
Roderick W. Smith4a702a22014-01-25 23:46:42 -0500709 // Some tools create a 0xEE partition that's too big. If this is detected,
710 // normalize it....
711 if ((state == gpt_valid) && !protectiveMBR.DoTheyFit() && (protectiveMBR.GetValidity() == gpt)) {
712 if (!beQuiet) {
713 cerr << "\aThe protective MBR's 0xEE partition is oversized! Auto-repairing.\n\n";
714 } // if
715 protectiveMBR.MakeProtectiveMBR();
716 } // if
717
srs5694ba00fed2010-01-12 18:18:36 -0500718 if (!beQuiet) {
srs5694fed16d02010-01-27 23:03:40 -0500719 cout << "Partition table scan:\n";
srs5694ba00fed2010-01-12 18:18:36 -0500720 protectiveMBR.ShowState();
721 bsdDisklabel.ShowState();
722 ShowAPMState(); // Show whether there's an Apple Partition Map present
723 ShowGPTState(); // Show GPT status
srs5694fed16d02010-01-27 23:03:40 -0500724 cout << "\n";
srs5694ba00fed2010-01-12 18:18:36 -0500725 } // if
srs5694e4ac11e2009-08-31 10:13:04 -0400726
727 if (apmFound) {
srs5694fed16d02010-01-27 23:03:40 -0500728 cout << "\n*******************************************************************\n"
729 << "This disk appears to contain an Apple-format (APM) partition table!\n";
srs56945d58fe02010-01-03 20:57:08 -0500730 if (!justLooking) {
srs5694fed16d02010-01-27 23:03:40 -0500731 cout << "It will be destroyed if you continue!\n";
srs56945d58fe02010-01-03 20:57:08 -0500732 } // if
srs5694fed16d02010-01-27 23:03:40 -0500733 cout << "*******************************************************************\n\n\a";
srs5694e4ac11e2009-08-31 10:13:04 -0400734 } // if
srs5694e4ac11e2009-08-31 10:13:04 -0400735} // GPTData::PartitionScan()
736
737// Read GPT data from a disk.
srs56940a697312010-01-28 21:10:52 -0500738int GPTData::LoadPartitions(const string & deviceFilename) {
srs569408bb0da2010-02-19 17:19:55 -0500739 BSDData bsdDisklabel;
srs5694e321d442010-01-29 17:44:04 -0500740 int err, allOK = 1;
srs5694fed16d02010-01-27 23:03:40 -0500741 MBRValidity mbrState;
srs5694e4ac11e2009-08-31 10:13:04 -0400742
srs5694546a9c72010-01-26 16:00:26 -0500743 if (myDisk.OpenForRead(deviceFilename)) {
srs569455d92612010-03-07 22:16:07 -0500744 err = myDisk.OpenForWrite(deviceFilename);
745 if ((err == 0) && (!justLooking)) {
746 cout << "\aNOTE: Write test failed with error number " << errno
747 << ". It will be impossible to save\nchanges to this disk's partition table!\n";
748#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
749 cout << "You may be able to enable writes by exiting this program, typing\n"
750 << "'sysctl kern.geom.debugflags=16' at a shell prompt, and re-running this\n"
751 << "program.\n";
752#endif
Aurimas Liutikas74b74902016-05-10 18:53:54 -0700753#if defined (__APPLE__)
754 cout << "You may need to deactivate System Integrity Protection to use this program. See\n"
755 << "https://www.quora.com/How-do-I-turn-off-the-rootless-in-OS-X-El-Capitan-10-11\n"
756 << "for more information.\n";
757#endif
758 cout << "\n";
srs569455d92612010-03-07 22:16:07 -0500759 } // if
760 myDisk.Close(); // Close and re-open read-only in case of bugs
761 } else allOK = 0; // if
762
763 if (allOK && myDisk.OpenForRead(deviceFilename)) {
srs5694e4ac11e2009-08-31 10:13:04 -0400764 // store disk information....
srs5694546a9c72010-01-26 16:00:26 -0500765 diskSize = myDisk.DiskSize(&err);
766 blockSize = (uint32_t) myDisk.GetBlockSize();
srs5694fed16d02010-01-27 23:03:40 -0500767 device = deviceFilename;
srs5694546a9c72010-01-26 16:00:26 -0500768 PartitionScan(); // Check for partition types, load GPT, & print summary
srs5694e4ac11e2009-08-31 10:13:04 -0400769
srs5694ba00fed2010-01-12 18:18:36 -0500770 whichWasUsed = UseWhichPartitions();
771 switch (whichWasUsed) {
srs5694e4ac11e2009-08-31 10:13:04 -0400772 case use_mbr:
773 XFormPartitions();
774 break;
775 case use_bsd:
srs5694546a9c72010-01-26 16:00:26 -0500776 bsdDisklabel.ReadBSDData(&myDisk, 0, diskSize - 1);
srs5694e4ac11e2009-08-31 10:13:04 -0400777// bsdDisklabel.DisplayBSDData();
778 ClearGPTData();
779 protectiveMBR.MakeProtectiveMBR(1); // clear boot area (option 1)
srs569408bb0da2010-02-19 17:19:55 -0500780 XFormDisklabel(&bsdDisklabel);
srs5694e4ac11e2009-08-31 10:13:04 -0400781 break;
782 case use_gpt:
srs5694fed16d02010-01-27 23:03:40 -0500783 mbrState = protectiveMBR.GetValidity();
784 if ((mbrState == invalid) || (mbrState == mbr))
785 protectiveMBR.MakeProtectiveMBR();
srs5694e4ac11e2009-08-31 10:13:04 -0400786 break;
787 case use_new:
788 ClearGPTData();
789 protectiveMBR.MakeProtectiveMBR();
790 break;
srs56943c0af382010-01-15 19:19:18 -0500791 case use_abort:
792 allOK = 0;
srs56949ddc14b2010-08-22 22:44:42 -0400793 cerr << "Invalid partition data!\n";
srs56943c0af382010-01-15 19:19:18 -0500794 break;
srs5694e4ac11e2009-08-31 10:13:04 -0400795 } // switch
796
srs569455d92612010-03-07 22:16:07 -0500797 if (allOK)
srs56943c0af382010-01-15 19:19:18 -0500798 CheckGPTSize();
srs569455d92612010-03-07 22:16:07 -0500799 myDisk.Close();
srs5694a8582cf2010-03-19 14:21:59 -0400800 ComputeAlignment();
srs5694e4ac11e2009-08-31 10:13:04 -0400801 } else {
802 allOK = 0;
srs5694e4ac11e2009-08-31 10:13:04 -0400803 } // if/else
804 return (allOK);
805} // GPTData::LoadPartitions()
806
807// Loads the GPT, as much as possible. Returns 1 if this seems to have
808// succeeded, 0 if there are obvious problems....
srs5694546a9c72010-01-26 16:00:26 -0500809int GPTData::ForceLoadGPTData(void) {
srs5694cb76c672010-02-11 22:22:22 -0500810 int allOK, validHeaders, loadedTable = 1;
srs5694e4ac11e2009-08-31 10:13:04 -0400811
srs5694cb76c672010-02-11 22:22:22 -0500812 allOK = LoadHeader(&mainHeader, myDisk, 1, &mainCrcOk);
srs5694e4ac11e2009-08-31 10:13:04 -0400813
srs5694cb76c672010-02-11 22:22:22 -0500814 if (mainCrcOk && (mainHeader.backupLBA < diskSize)) {
815 allOK = LoadHeader(&secondHeader, myDisk, mainHeader.backupLBA, &secondCrcOk) && allOK;
816 } else {
srs569408bb0da2010-02-19 17:19:55 -0500817 allOK = LoadHeader(&secondHeader, myDisk, diskSize - UINT64_C(1), &secondCrcOk) && allOK;
818 if (mainCrcOk && (mainHeader.backupLBA >= diskSize))
srs5694fed16d02010-01-27 23:03:40 -0500819 cout << "Warning! Disk size is smaller than the main header indicates! Loading\n"
820 << "secondary header from the last sector of the disk! You should use 'v' to\n"
821 << "verify disk integrity, and perhaps options on the experts' menu to repair\n"
822 << "the disk.\n";
srs5694cb76c672010-02-11 22:22:22 -0500823 } // if/else
824 if (!allOK)
srs5694e4ac11e2009-08-31 10:13:04 -0400825 state = gpt_invalid;
srs5694e4ac11e2009-08-31 10:13:04 -0400826
827 // Return valid headers code: 0 = both headers bad; 1 = main header
828 // good, backup bad; 2 = backup header good, main header bad;
829 // 3 = both headers good. Note these codes refer to valid GPT
srs569423d8d542011-10-01 18:40:10 -0400830 // signatures, version numbers, and CRCs.
srs5694e4ac11e2009-08-31 10:13:04 -0400831 validHeaders = CheckHeaderValidity();
832
833 // Read partitions (from primary array)
834 if (validHeaders > 0) { // if at least one header is OK....
835 // GPT appears to be valid....
836 state = gpt_valid;
837
838 // We're calling the GPT valid, but there's a possibility that one
839 // of the two headers is corrupt. If so, use the one that seems to
840 // be in better shape to regenerate the bad one
srs5694546a9c72010-01-26 16:00:26 -0500841 if (validHeaders == 1) { // valid main header, invalid backup header
srs5694fed16d02010-01-27 23:03:40 -0500842 cerr << "\aCaution: invalid backup GPT header, but valid main header; regenerating\n"
843 << "backup header from main header.\n\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400844 RebuildSecondHeader();
srs5694546a9c72010-01-26 16:00:26 -0500845 state = gpt_corrupt;
srs5694e4ac11e2009-08-31 10:13:04 -0400846 secondCrcOk = mainCrcOk; // Since regenerated, use CRC validity of main
srs5694546a9c72010-01-26 16:00:26 -0500847 } else if (validHeaders == 2) { // valid backup header, invalid main header
srs5694fed16d02010-01-27 23:03:40 -0500848 cerr << "\aCaution: invalid main GPT header, but valid backup; regenerating main header\n"
849 << "from backup!\n\n";
srs5694546a9c72010-01-26 16:00:26 -0500850 RebuildMainHeader();
851 state = gpt_corrupt;
852 mainCrcOk = secondCrcOk; // Since copied, use CRC validity of backup
srs5694e4ac11e2009-08-31 10:13:04 -0400853 } // if/else/if
854
srs5694546a9c72010-01-26 16:00:26 -0500855 // Figure out which partition table to load....
856 // Load the main partition table, since either its header's CRC is OK or the
857 // backup header's CRC is not OK....
858 if (mainCrcOk || !secondCrcOk) {
859 if (LoadMainTable() == 0)
860 allOK = 0;
861 } else { // bad main header CRC and backup header CRC is OK
862 state = gpt_corrupt;
863 if (LoadSecondTableAsMain()) {
srs5694cb76c672010-02-11 22:22:22 -0500864 loadedTable = 2;
srs5694fed16d02010-01-27 23:03:40 -0500865 cerr << "\aWarning: Invalid CRC on main header data; loaded backup partition table.\n";
srs5694546a9c72010-01-26 16:00:26 -0500866 } else { // backup table bad, bad main header CRC, but try main table in desperation....
867 if (LoadMainTable() == 0) {
868 allOK = 0;
srs5694cb76c672010-02-11 22:22:22 -0500869 loadedTable = 0;
srs5694fed16d02010-01-27 23:03:40 -0500870 cerr << "\a\aWarning! Unable to load either main or backup partition table!\n";
srs5694546a9c72010-01-26 16:00:26 -0500871 } // if
872 } // if/else (LoadSecondTableAsMain())
873 } // if/else (load partition table)
srs5694e4ac11e2009-08-31 10:13:04 -0400874
srs5694cb76c672010-02-11 22:22:22 -0500875 if (loadedTable == 1)
876 secondPartsCrcOk = CheckTable(&secondHeader);
877 else if (loadedTable == 2)
878 mainPartsCrcOk = CheckTable(&mainHeader);
879 else
880 mainPartsCrcOk = secondPartsCrcOk = 0;
srs5694e4ac11e2009-08-31 10:13:04 -0400881
srs5694546a9c72010-01-26 16:00:26 -0500882 // Problem with main partition table; if backup is OK, use it instead....
883 if (secondPartsCrcOk && secondCrcOk && !mainPartsCrcOk) {
884 state = gpt_corrupt;
885 allOK = allOK && LoadSecondTableAsMain();
srs5694cb76c672010-02-11 22:22:22 -0500886 mainPartsCrcOk = 0; // LoadSecondTableAsMain() resets this, so re-flag as bad
srs5694fed16d02010-01-27 23:03:40 -0500887 cerr << "\aWarning! Main partition table CRC mismatch! Loaded backup "
888 << "partition table\ninstead of main partition table!\n\n";
srs5694cb76c672010-02-11 22:22:22 -0500889 } // if */
srs5694546a9c72010-01-26 16:00:26 -0500890
srs5694e4ac11e2009-08-31 10:13:04 -0400891 // Check for valid CRCs and warn if there are problems
892 if ((mainCrcOk == 0) || (secondCrcOk == 0) || (mainPartsCrcOk == 0) ||
893 (secondPartsCrcOk == 0)) {
srs5694fed16d02010-01-27 23:03:40 -0500894 cerr << "Warning! One or more CRCs don't match. You should repair the disk!\n\n";
srs5694e4ac11e2009-08-31 10:13:04 -0400895 state = gpt_corrupt;
srs5694ba00fed2010-01-12 18:18:36 -0500896 } // if
srs5694e4ac11e2009-08-31 10:13:04 -0400897 } else {
898 state = gpt_invalid;
899 } // if/else
900 return allOK;
901} // GPTData::ForceLoadGPTData()
902
srs5694247657a2009-11-26 18:36:12 -0500903// Loads the partition table pointed to by the main GPT header. The
srs5694e4ac11e2009-08-31 10:13:04 -0400904// main GPT header in memory MUST be valid for this call to do anything
905// sensible!
srs5694546a9c72010-01-26 16:00:26 -0500906// Returns 1 on success, 0 on failure. CRC errors do NOT count as failure.
srs5694e4ac11e2009-08-31 10:13:04 -0400907int GPTData::LoadMainTable(void) {
srs5694cb76c672010-02-11 22:22:22 -0500908 return LoadPartitionTable(mainHeader, myDisk);
srs5694e4ac11e2009-08-31 10:13:04 -0400909} // GPTData::LoadMainTable()
srs5694e7b4ff92009-08-18 13:16:10 -0400910
911// Load the second (backup) partition table as the primary partition
srs5694546a9c72010-01-26 16:00:26 -0500912// table. Used in repair functions, and when starting up if the main
913// partition table is damaged.
914// Returns 1 on success, 0 on failure. CRC errors do NOT count as failure.
915int GPTData::LoadSecondTableAsMain(void) {
srs5694cb76c672010-02-11 22:22:22 -0500916 return LoadPartitionTable(secondHeader, myDisk);
917} // GPTData::LoadSecondTableAsMain()
srs5694e7b4ff92009-08-18 13:16:10 -0400918
srs5694cb76c672010-02-11 22:22:22 -0500919// Load a single GPT header (main or backup) from the specified disk device and
920// sector. Applies byte-order corrections on big-endian platforms. Sets crcOk
921// value appropriately.
922// Returns 1 on success, 0 on failure. Note that CRC errors do NOT qualify as
923// failure.
924int GPTData::LoadHeader(struct GPTHeader *header, DiskIO & disk, uint64_t sector, int *crcOk) {
925 int allOK = 1;
srs56941c6f8b02010-02-21 11:09:20 -0500926 GPTHeader tempHeader;
srs5694cb76c672010-02-11 22:22:22 -0500927
928 disk.Seek(sector);
srs56941c6f8b02010-02-21 11:09:20 -0500929 if (disk.Read(&tempHeader, 512) != 512) {
srs5694cb76c672010-02-11 22:22:22 -0500930 cerr << "Warning! Read error " << errno << "; strange behavior now likely!\n";
931 allOK = 0;
932 } // if
srs5694cb76c672010-02-11 22:22:22 -0500933
srs56941c6f8b02010-02-21 11:09:20 -0500934 // Reverse byte order, if necessary
srs5694cb76c672010-02-11 22:22:22 -0500935 if (IsLittleEndian() == 0) {
srs569455d92612010-03-07 22:16:07 -0500936 ReverseHeaderBytes(&tempHeader);
srs5694cb76c672010-02-11 22:22:22 -0500937 } // if
srs5694d1b11e82011-09-18 21:12:28 -0400938 *crcOk = CheckHeaderCRC(&tempHeader);
srs56941c6f8b02010-02-21 11:09:20 -0500939
srs56940283dae2010-04-28 16:44:34 -0400940 if (allOK && (numParts != tempHeader.numParts) && *crcOk) {
srs5694706e5122012-01-21 13:47:24 -0500941 allOK = SetGPTSize(tempHeader.numParts, 0);
srs569455d92612010-03-07 22:16:07 -0500942 }
srs56941c6f8b02010-02-21 11:09:20 -0500943
944 *header = tempHeader;
srs5694cb76c672010-02-11 22:22:22 -0500945 return allOK;
946} // GPTData::LoadHeader
947
948// Load a partition table (either main or secondary) from the specified disk,
949// using header as a reference for what to load. If sector != 0 (the default
950// is 0), loads from the specified sector; otherwise loads from the sector
951// indicated in header.
952// Returns 1 on success, 0 on failure. CRC errors do NOT count as failure.
953int GPTData::LoadPartitionTable(const struct GPTHeader & header, DiskIO & disk, uint64_t sector) {
954 uint32_t sizeOfParts, newCRC;
955 int retval;
956
957 if (disk.OpenForRead()) {
958 if (sector == 0) {
959 retval = disk.Seek(header.partitionEntriesLBA);
960 } else {
961 retval = disk.Seek(sector);
962 } // if/else
srs569455d92612010-03-07 22:16:07 -0500963 if (retval == 1)
srs5694706e5122012-01-21 13:47:24 -0500964 retval = SetGPTSize(header.numParts, 0);
srs5694546a9c72010-01-26 16:00:26 -0500965 if (retval == 1) {
srs5694cb76c672010-02-11 22:22:22 -0500966 sizeOfParts = header.numParts * header.sizeOfPartitionEntries;
967 if (disk.Read(partitions, sizeOfParts) != (int) sizeOfParts) {
srs5694fed16d02010-01-27 23:03:40 -0500968 cerr << "Warning! Read error " << errno << "! Misbehavior now likely!\n";
srs5694546a9c72010-01-26 16:00:26 -0500969 retval = 0;
srs56945d58fe02010-01-03 20:57:08 -0500970 } // if
srs5694e7b4ff92009-08-18 13:16:10 -0400971 newCRC = chksum_crc32((unsigned char*) partitions, sizeOfParts);
srs5694cb76c672010-02-11 22:22:22 -0500972 mainPartsCrcOk = secondPartsCrcOk = (newCRC == header.partitionEntriesCRC);
srs56942a9f5da2009-08-26 00:48:01 -0400973 if (IsLittleEndian() == 0)
974 ReversePartitionBytes();
srs5694cb76c672010-02-11 22:22:22 -0500975 if (!mainPartsCrcOk) {
976 cout << "Caution! After loading partitions, the CRC doesn't check out!\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400977 } // if
978 } else {
srs5694cb76c672010-02-11 22:22:22 -0500979 cerr << "Error! Couldn't seek to partition table!\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400980 } // if/else
981 } else {
srs5694fed16d02010-01-27 23:03:40 -0500982 cerr << "Error! Couldn't open device " << device
srs5694cb76c672010-02-11 22:22:22 -0500983 << " when reading partition table!\n";
srs5694546a9c72010-01-26 16:00:26 -0500984 retval = 0;
srs5694e7b4ff92009-08-18 13:16:10 -0400985 } // if/else
srs5694546a9c72010-01-26 16:00:26 -0500986 return retval;
srs5694cb76c672010-02-11 22:22:22 -0500987} // GPTData::LoadPartitionsTable()
988
989// Check the partition table pointed to by header, but don't keep it
990// around.
srs5694a17fe692011-09-10 20:30:20 -0400991// Returns 1 if the CRC is OK & this table matches the one already in memory,
992// 0 if not or if there was a read error.
srs5694cb76c672010-02-11 22:22:22 -0500993int GPTData::CheckTable(struct GPTHeader *header) {
994 uint32_t sizeOfParts, newCRC;
srs5694a17fe692011-09-10 20:30:20 -0400995 GPTPart *partsToCheck;
srs5694d1b11e82011-09-18 21:12:28 -0400996 GPTHeader *otherHeader;
srs5694a17fe692011-09-10 20:30:20 -0400997 int allOK = 0;
srs5694cb76c672010-02-11 22:22:22 -0500998
srs56940283dae2010-04-28 16:44:34 -0400999 // Load partition table into temporary storage to check
srs5694cb76c672010-02-11 22:22:22 -05001000 // its CRC and store the results, then discard this temporary
1001 // storage, since we don't use it in any but recovery operations
1002 if (myDisk.Seek(header->partitionEntriesLBA)) {
srs5694a17fe692011-09-10 20:30:20 -04001003 partsToCheck = new GPTPart[header->numParts];
srs56940283dae2010-04-28 16:44:34 -04001004 sizeOfParts = header->numParts * header->sizeOfPartitionEntries;
srs5694a17fe692011-09-10 20:30:20 -04001005 if (partsToCheck == NULL) {
srs56946aae2a92011-06-10 01:16:51 -04001006 cerr << "Could not allocate memory in GPTData::CheckTable()! Terminating!\n";
1007 exit(1);
1008 } // if
srs5694a17fe692011-09-10 20:30:20 -04001009 if (myDisk.Read(partsToCheck, sizeOfParts) != (int) sizeOfParts) {
srs56940283dae2010-04-28 16:44:34 -04001010 cerr << "Warning! Error " << errno << " reading partition table for CRC check!\n";
srs5694cb76c672010-02-11 22:22:22 -05001011 } else {
srs5694d1b11e82011-09-18 21:12:28 -04001012 newCRC = chksum_crc32((unsigned char*) partsToCheck, sizeOfParts);
srs5694a17fe692011-09-10 20:30:20 -04001013 allOK = (newCRC == header->partitionEntriesCRC);
srs5694d1b11e82011-09-18 21:12:28 -04001014 if (header == &mainHeader)
1015 otherHeader = &secondHeader;
1016 else
1017 otherHeader = &mainHeader;
1018 if (newCRC != otherHeader->partitionEntriesCRC) {
srs5694a17fe692011-09-10 20:30:20 -04001019 cerr << "Warning! Main and backup partition tables differ! Use the 'c' and 'e' options\n"
1020 << "on the recovery & transformation menu to examine the two tables.\n\n";
1021 allOK = 0;
1022 } // if
srs5694cb76c672010-02-11 22:22:22 -05001023 } // if/else
srs5694a17fe692011-09-10 20:30:20 -04001024 delete[] partsToCheck;
srs5694cb76c672010-02-11 22:22:22 -05001025 } // if
srs5694a17fe692011-09-10 20:30:20 -04001026 return allOK;
srs5694cb76c672010-02-11 22:22:22 -05001027} // GPTData::CheckTable()
srs5694e7b4ff92009-08-18 13:16:10 -04001028
srs56944307ef22012-05-30 12:30:48 -04001029// Writes GPT (and protective MBR) to disk. If quiet==1, moves the second
1030// header later on the disk without asking for permission, if necessary, and
1031// doesn't confirm the operation before writing. If quiet==0, asks permission
1032// before moving the second header and asks for final confirmation of any
1033// write.
srs5694a17fe692011-09-10 20:30:20 -04001034// Returns 1 on successful write, 0 if there was a problem.
srs569464cbd172011-03-01 22:03:54 -05001035int GPTData::SaveGPTData(int quiet) {
srs56944307ef22012-05-30 12:30:48 -04001036 int allOK = 1, syncIt = 1;
srs5694e321d442010-01-29 17:44:04 -05001037 char answer;
srs5694e7b4ff92009-08-18 13:16:10 -04001038
srs5694e7b4ff92009-08-18 13:16:10 -04001039 // First do some final sanity checks....
srs56945d58fe02010-01-03 20:57:08 -05001040
1041 // This test should only fail on read-only disks....
1042 if (justLooking) {
srs5694fed16d02010-01-27 23:03:40 -05001043 cout << "The justLooking flag is set. This probably means you can't write to the disk.\n";
srs56945d58fe02010-01-03 20:57:08 -05001044 allOK = 0;
1045 } // if
1046
srs569464cbd172011-03-01 22:03:54 -05001047 // Check that disk is really big enough to handle the second header...
1048 if (mainHeader.backupLBA >= diskSize) {
1049 cerr << "Caution! Secondary header was placed beyond the disk's limits! Moving the\n"
1050 << "header, but other problems may occur!\n";
1051 MoveSecondHeaderToEnd();
1052 } // if
1053
srs5694e7b4ff92009-08-18 13:16:10 -04001054 // Is there enough space to hold the GPT headers and partition tables,
1055 // given the partition sizes?
srs5694221e0872009-08-29 15:00:31 -04001056 if (CheckGPTSize() > 0) {
srs5694e7b4ff92009-08-18 13:16:10 -04001057 allOK = 0;
1058 } // if
1059
srs5694247657a2009-11-26 18:36:12 -05001060 // Check that second header is properly placed. Warn and ask if this should
1061 // be corrected if the test fails....
srs569464cbd172011-03-01 22:03:54 -05001062 if (mainHeader.backupLBA < (diskSize - UINT64_C(1))) {
1063 if (quiet == 0) {
1064 cout << "Warning! Secondary header is placed too early on the disk! Do you want to\n"
1065 << "correct this problem? ";
1066 if (GetYN() == 'Y') {
1067 MoveSecondHeaderToEnd();
1068 cout << "Have moved second header and partition table to correct location.\n";
1069 } else {
1070 cout << "Have not corrected the problem. Strange problems may occur in the future!\n";
1071 } // if correction requested
1072 } else { // Go ahead and do correction automatically
srs5694247657a2009-11-26 18:36:12 -05001073 MoveSecondHeaderToEnd();
srs569464cbd172011-03-01 22:03:54 -05001074 } // if/else quiet
srs5694247657a2009-11-26 18:36:12 -05001075 } // if
srs5694e7b4ff92009-08-18 13:16:10 -04001076
srs5694d8eed462012-12-15 01:55:21 -05001077 if ((mainHeader.lastUsableLBA >= diskSize) || (mainHeader.lastUsableLBA > mainHeader.backupLBA)) {
1078 if (quiet == 0) {
1079 cout << "Warning! The claimed last usable sector is incorrect! Do you want to correct\n"
1080 << "this problem? ";
1081 if (GetYN() == 'Y') {
1082 MoveSecondHeaderToEnd();
1083 cout << "Have adjusted the second header and last usable sector value.\n";
1084 } else {
1085 cout << "Have not corrected the problem. Strange problems may occur in the future!\n";
1086 } // if correction requested
1087 } else { // go ahead and do correction automatically
1088 MoveSecondHeaderToEnd();
1089 } // if/else quiet
1090 } // if
1091
srs569455d92612010-03-07 22:16:07 -05001092 // Check for overlapping or insane partitions....
1093 if ((FindOverlaps() > 0) || (FindInsanePartitions() > 0)) {
srs5694e4ac11e2009-08-31 10:13:04 -04001094 allOK = 0;
srs5694fed16d02010-01-27 23:03:40 -05001095 cerr << "Aborting write operation!\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001096 } // if
1097
Roderick W. Smith4a702a22014-01-25 23:46:42 -05001098 // Check that protective MBR fits, and warn if it doesn't....
1099 if (!protectiveMBR.DoTheyFit()) {
1100 cerr << "\nPartition(s) in the protective MBR are too big for the disk! Creating a\n"
1101 << "fresh protective or hybrid MBR is recommended.\n";
1102 }
1103
srs5694e4ac11e2009-08-31 10:13:04 -04001104 // Check for mismatched MBR and GPT data, but let it pass if found
1105 // (function displays warning message)
1106 FindHybridMismatches();
srs5694e7b4ff92009-08-18 13:16:10 -04001107
1108 RecomputeCRCs();
1109
srs5694ba00fed2010-01-12 18:18:36 -05001110 if ((allOK) && (!quiet)) {
srs5694fed16d02010-01-27 23:03:40 -05001111 cout << "\nFinal checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING\n"
srs5694bf8950c2011-03-12 01:23:12 -05001112 << "PARTITIONS!!\n\nDo you want to proceed? ";
srs56945d58fe02010-01-03 20:57:08 -05001113 answer = GetYN();
1114 if (answer == 'Y') {
srs569434882942012-03-23 12:49:15 -04001115 cout << "OK; writing new GUID partition table (GPT) to " << myDisk.GetName() << ".\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001116 } else {
1117 allOK = 0;
1118 } // if/else
1119 } // if
1120
1121 // Do it!
1122 if (allOK) {
srs569464cbd172011-03-01 22:03:54 -05001123 if (myDisk.OpenForWrite()) {
srs56948a4ddfc2010-03-21 19:05:49 -04001124 // As per UEFI specs, write the secondary table and GPT first....
srs5694cb76c672010-02-11 22:22:22 -05001125 allOK = SavePartitionTable(myDisk, secondHeader.partitionEntriesLBA);
srs56944307ef22012-05-30 12:30:48 -04001126 if (!allOK) {
srs5694cb76c672010-02-11 22:22:22 -05001127 cerr << "Unable to save backup partition table! Perhaps the 'e' option on the experts'\n"
1128 << "menu will resolve this problem.\n";
srs56944307ef22012-05-30 12:30:48 -04001129 syncIt = 0;
1130 } // if
srs5694e7b4ff92009-08-18 13:16:10 -04001131
1132 // Now write the secondary GPT header...
srs56948a4ddfc2010-03-21 19:05:49 -04001133 allOK = allOK && SaveHeader(&secondHeader, myDisk, mainHeader.backupLBA);
1134
1135 // Now write the main partition tables...
1136 allOK = allOK && SavePartitionTable(myDisk, mainHeader.partitionEntriesLBA);
1137
1138 // Now write the main GPT header...
1139 allOK = allOK && SaveHeader(&mainHeader, myDisk, 1);
1140
1141 // To top it off, write the protective MBR...
1142 allOK = allOK && protectiveMBR.WriteMBRData(&myDisk);
srs5694e7b4ff92009-08-18 13:16:10 -04001143
1144 // re-read the partition table
srs56944307ef22012-05-30 12:30:48 -04001145 // Note: Done even if some write operations failed, but not if all of them failed.
1146 // Done this way because I've received one problem report from a user one whose
1147 // system the MBR write failed but everything else was OK (on a GPT disk under
1148 // Windows), and the failure to sync therefore caused Windows to restore the
1149 // original partition table from its cache. OTOH, such restoration might be
1150 // desirable if the error occurs later; but that seems unlikely unless the initial
1151 // write fails....
1152 if (syncIt)
srs5694546a9c72010-01-26 16:00:26 -05001153 myDisk.DiskSync();
srs5694e7b4ff92009-08-18 13:16:10 -04001154
1155 if (allOK) { // writes completed OK
srs5694fed16d02010-01-27 23:03:40 -05001156 cout << "The operation has completed successfully.\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001157 } else {
srs5694fed16d02010-01-27 23:03:40 -05001158 cerr << "Warning! An error was reported when writing the partition table! This error\n"
srs56944307ef22012-05-30 12:30:48 -04001159 << "MIGHT be harmless, or the disk might be damaged! Checking it is advisable.\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001160 } // if/else
srs56948a4ddfc2010-03-21 19:05:49 -04001161
srs5694546a9c72010-01-26 16:00:26 -05001162 myDisk.Close();
srs5694e7b4ff92009-08-18 13:16:10 -04001163 } else {
srs56945a608532011-03-17 13:53:01 -04001164 cerr << "Unable to open device '" << myDisk.GetName() << "' for writing! Errno is "
srs5694fed16d02010-01-27 23:03:40 -05001165 << errno << "! Aborting write!\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001166 allOK = 0;
srs5694e7b4ff92009-08-18 13:16:10 -04001167 } // if/else
1168 } else {
srs5694fed16d02010-01-27 23:03:40 -05001169 cout << "Aborting write of new partition table.\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001170 } // if
1171
1172 return (allOK);
1173} // GPTData::SaveGPTData()
1174
1175// Save GPT data to a backup file. This function does much less error
1176// checking than SaveGPTData(). It can therefore preserve many types of
1177// corruption for later analysis; however, it preserves only the MBR,
1178// the main GPT header, the backup GPT header, and the main partition
1179// table; it discards the backup partition table, since it should be
1180// identical to the main partition table on healthy disks.
srs56940a697312010-01-28 21:10:52 -05001181int GPTData::SaveGPTBackup(const string & filename) {
1182 int allOK = 1;
srs5694546a9c72010-01-26 16:00:26 -05001183 DiskIO backupFile;
srs5694e7b4ff92009-08-18 13:16:10 -04001184
srs5694546a9c72010-01-26 16:00:26 -05001185 if (backupFile.OpenForWrite(filename)) {
srs56946699b012010-02-04 00:55:30 -05001186 // Recomputing the CRCs is likely to alter them, which could be bad
1187 // if the intent is to save a potentially bad GPT for later analysis;
1188 // but if we don't do this, we get bogus errors when we load the
1189 // backup. I'm favoring misses over false alarms....
1190 RecomputeCRCs();
1191
srs5694546a9c72010-01-26 16:00:26 -05001192 protectiveMBR.WriteMBRData(&backupFile);
srs5694699941e2011-03-21 21:33:57 -04001193 protectiveMBR.SetDisk(&myDisk);
srs5694e7b4ff92009-08-18 13:16:10 -04001194
srs5694cb76c672010-02-11 22:22:22 -05001195 if (allOK) {
srs5694546a9c72010-01-26 16:00:26 -05001196 // MBR write closed disk, so re-open and seek to end....
1197 backupFile.OpenForWrite();
srs5694cb76c672010-02-11 22:22:22 -05001198 allOK = SaveHeader(&mainHeader, backupFile, 1);
1199 } // if (allOK)
srs5694e7b4ff92009-08-18 13:16:10 -04001200
srs5694e7b4ff92009-08-18 13:16:10 -04001201 if (allOK)
srs5694cb76c672010-02-11 22:22:22 -05001202 allOK = SaveHeader(&secondHeader, backupFile, 2);
srs5694e7b4ff92009-08-18 13:16:10 -04001203
srs5694cb76c672010-02-11 22:22:22 -05001204 if (allOK)
1205 allOK = SavePartitionTable(backupFile, 3);
srs5694e7b4ff92009-08-18 13:16:10 -04001206
1207 if (allOK) { // writes completed OK
srs5694fed16d02010-01-27 23:03:40 -05001208 cout << "The operation has completed successfully.\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001209 } else {
srs5694fed16d02010-01-27 23:03:40 -05001210 cerr << "Warning! An error was reported when writing the backup file.\n"
1211 << "It may not be usable!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001212 } // if/else
srs5694546a9c72010-01-26 16:00:26 -05001213 backupFile.Close();
srs5694e7b4ff92009-08-18 13:16:10 -04001214 } else {
srs56945a608532011-03-17 13:53:01 -04001215 cerr << "Unable to open file '" << filename << "' for writing! Aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001216 allOK = 0;
1217 } // if/else
1218 return allOK;
1219} // GPTData::SaveGPTBackup()
1220
srs5694cb76c672010-02-11 22:22:22 -05001221// Write a GPT header (main or backup) to the specified sector. Used by both
1222// the SaveGPTData() and SaveGPTBackup() functions.
1223// Should be passed an architecture-appropriate header (DO NOT call
1224// ReverseHeaderBytes() on the header before calling this function)
1225// Returns 1 on success, 0 on failure
1226int GPTData::SaveHeader(struct GPTHeader *header, DiskIO & disk, uint64_t sector) {
1227 int littleEndian, allOK = 1;
1228
1229 littleEndian = IsLittleEndian();
1230 if (!littleEndian)
1231 ReverseHeaderBytes(header);
1232 if (disk.Seek(sector)) {
1233 if (disk.Write(header, 512) == -1)
1234 allOK = 0;
1235 } else allOK = 0; // if (disk.Seek()...)
1236 if (!littleEndian)
1237 ReverseHeaderBytes(header);
1238 return allOK;
1239} // GPTData::SaveHeader()
1240
1241// Save the partitions to the specified sector. Used by both the SaveGPTData()
1242// and SaveGPTBackup() functions.
1243// Should be passed an architecture-appropriate header (DO NOT call
1244// ReverseHeaderBytes() on the header before calling this function)
1245// Returns 1 on success, 0 on failure
1246int GPTData::SavePartitionTable(DiskIO & disk, uint64_t sector) {
1247 int littleEndian, allOK = 1;
1248
1249 littleEndian = IsLittleEndian();
1250 if (disk.Seek(sector)) {
1251 if (!littleEndian)
1252 ReversePartitionBytes();
srs56940283dae2010-04-28 16:44:34 -04001253 if (disk.Write(partitions, mainHeader.sizeOfPartitionEntries * numParts) == -1)
srs5694cb76c672010-02-11 22:22:22 -05001254 allOK = 0;
1255 if (!littleEndian)
1256 ReversePartitionBytes();
1257 } else allOK = 0; // if (myDisk.Seek()...)
1258 return allOK;
1259} // GPTData::SavePartitionTable()
1260
srs5694e7b4ff92009-08-18 13:16:10 -04001261// Load GPT data from a backup file created by SaveGPTBackup(). This function
1262// does minimal error checking. It returns 1 if it completed successfully,
1263// 0 if there was a problem. In the latter case, it creates a new empty
1264// set of partitions.
srs56940a697312010-01-28 21:10:52 -05001265int GPTData::LoadGPTBackup(const string & filename) {
srs5694cb76c672010-02-11 22:22:22 -05001266 int allOK = 1, val, err;
srs56940541b562011-12-18 16:35:25 -05001267 int shortBackup = 0;
srs5694546a9c72010-01-26 16:00:26 -05001268 DiskIO backupFile;
srs5694e7b4ff92009-08-18 13:16:10 -04001269
srs5694546a9c72010-01-26 16:00:26 -05001270 if (backupFile.OpenForRead(filename)) {
srs5694e7b4ff92009-08-18 13:16:10 -04001271 // Let the MBRData class load the saved MBR...
srs5694546a9c72010-01-26 16:00:26 -05001272 protectiveMBR.ReadMBRData(&backupFile, 0); // 0 = don't check block size
srs5694815fb652011-03-18 12:35:56 -04001273 protectiveMBR.SetDisk(&myDisk);
srs5694e7b4ff92009-08-18 13:16:10 -04001274
srs5694cb76c672010-02-11 22:22:22 -05001275 LoadHeader(&mainHeader, backupFile, 1, &mainCrcOk);
srs5694e7b4ff92009-08-18 13:16:10 -04001276
srs5694cb76c672010-02-11 22:22:22 -05001277 // Check backup file size and rebuild second header if file is right
1278 // size to be direct dd copy of MBR, main header, and main partition
1279 // table; if other size, treat it like a GPT fdisk-generated backup
1280 // file
1281 shortBackup = ((backupFile.DiskSize(&err) * backupFile.GetBlockSize()) ==
1282 (mainHeader.numParts * mainHeader.sizeOfPartitionEntries) + 1024);
1283 if (shortBackup) {
1284 RebuildSecondHeader();
1285 secondCrcOk = mainCrcOk;
1286 } else {
1287 LoadHeader(&secondHeader, backupFile, 2, &secondCrcOk);
1288 } // if/else
srs56942a9f5da2009-08-26 00:48:01 -04001289
srs5694e7b4ff92009-08-18 13:16:10 -04001290 // Return valid headers code: 0 = both headers bad; 1 = main header
1291 // good, backup bad; 2 = backup header good, main header bad;
1292 // 3 = both headers good. Note these codes refer to valid GPT
1293 // signatures and version numbers; more subtle problems will elude
1294 // this check!
1295 if ((val = CheckHeaderValidity()) > 0) {
1296 if (val == 2) { // only backup header seems to be good
srs5694706e5122012-01-21 13:47:24 -05001297 SetGPTSize(secondHeader.numParts, 0);
srs5694e7b4ff92009-08-18 13:16:10 -04001298 } else { // main header is OK
srs5694706e5122012-01-21 13:47:24 -05001299 SetGPTSize(mainHeader.numParts, 0);
srs5694e7b4ff92009-08-18 13:16:10 -04001300 } // if/else
1301
srs5694e7b4ff92009-08-18 13:16:10 -04001302 if (secondHeader.currentLBA != diskSize - UINT64_C(1)) {
srs5694fed16d02010-01-27 23:03:40 -05001303 cout << "Warning! Current disk size doesn't match that of the backup!\n"
1304 << "Adjusting sizes to match, but subsequent problems are possible!\n";
srs5694247657a2009-11-26 18:36:12 -05001305 MoveSecondHeaderToEnd();
srs5694e7b4ff92009-08-18 13:16:10 -04001306 } // if
1307
srs5694cb76c672010-02-11 22:22:22 -05001308 if (!LoadPartitionTable(mainHeader, backupFile, (uint64_t) (3 - shortBackup)))
1309 cerr << "Warning! Read error " << errno
1310 << " loading partition table; strange behavior now likely!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001311 } else {
1312 allOK = 0;
1313 } // if/else
srs5694a8582cf2010-03-19 14:21:59 -04001314 // Something went badly wrong, so blank out partitions
1315 if (allOK == 0) {
1316 cerr << "Improper backup file! Clearing all partition data!\n";
1317 ClearGPTData();
1318 protectiveMBR.MakeProtectiveMBR();
1319 } // if
srs5694e7b4ff92009-08-18 13:16:10 -04001320 } else {
1321 allOK = 0;
srs56945a608532011-03-17 13:53:01 -04001322 cerr << "Unable to open file '" << filename << "' for reading! Aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04001323 } // if/else
1324
srs5694e7b4ff92009-08-18 13:16:10 -04001325 return allOK;
1326} // GPTData::LoadGPTBackup()
1327
srs569408bb0da2010-02-19 17:19:55 -05001328int GPTData::SaveMBR(void) {
srs569455d92612010-03-07 22:16:07 -05001329 return protectiveMBR.WriteMBRData(&myDisk);
srs569408bb0da2010-02-19 17:19:55 -05001330} // GPTData::SaveMBR()
1331
1332// This function destroys the on-disk GPT structures, but NOT the on-disk
1333// MBR.
1334// Returns 1 if the operation succeeds, 0 if not.
1335int GPTData::DestroyGPT(void) {
srs569401f7f082011-03-15 23:53:31 -04001336 int sum, tableSize, allOK = 1;
srs569408bb0da2010-02-19 17:19:55 -05001337 uint8_t blankSector[512];
1338 uint8_t* emptyTable;
1339
srs569401f7f082011-03-15 23:53:31 -04001340 memset(blankSector, 0, sizeof(blankSector));
Roderick W. Smith84aaff62014-02-17 16:17:11 -05001341 ClearGPTData();
srs569408bb0da2010-02-19 17:19:55 -05001342
1343 if (myDisk.OpenForWrite()) {
1344 if (!myDisk.Seek(mainHeader.currentLBA))
1345 allOK = 0;
1346 if (myDisk.Write(blankSector, 512) != 512) { // blank it out
1347 cerr << "Warning! GPT main header not overwritten! Error is " << errno << "\n";
1348 allOK = 0;
1349 } // if
1350 if (!myDisk.Seek(mainHeader.partitionEntriesLBA))
1351 allOK = 0;
srs56940283dae2010-04-28 16:44:34 -04001352 tableSize = numParts * mainHeader.sizeOfPartitionEntries;
srs569408bb0da2010-02-19 17:19:55 -05001353 emptyTable = new uint8_t[tableSize];
srs56946aae2a92011-06-10 01:16:51 -04001354 if (emptyTable == NULL) {
Roderick W. Smith84aaff62014-02-17 16:17:11 -05001355 cerr << "Could not allocate memory in GPTData::DestroyGPT()! Terminating!\n";
1356 exit(1);
srs56946aae2a92011-06-10 01:16:51 -04001357 } // if
srs569401f7f082011-03-15 23:53:31 -04001358 memset(emptyTable, 0, tableSize);
srs569408bb0da2010-02-19 17:19:55 -05001359 if (allOK) {
1360 sum = myDisk.Write(emptyTable, tableSize);
1361 if (sum != tableSize) {
1362 cerr << "Warning! GPT main partition table not overwritten! Error is " << errno << "\n";
1363 allOK = 0;
1364 } // if write failed
Roderick W. Smith84aaff62014-02-17 16:17:11 -05001365 } // if
1366 if (!myDisk.Seek(secondHeader.partitionEntriesLBA))
1367 allOK = 0;
1368 if (allOK) {
1369 sum = myDisk.Write(emptyTable, tableSize);
1370 if (sum != tableSize) {
1371 cerr << "Warning! GPT backup partition table not overwritten! Error is "
1372 << errno << "\n";
1373 allOK = 0;
1374 } // if wrong size written
srs569408bb0da2010-02-19 17:19:55 -05001375 } // if
Roderick W. Smith84aaff62014-02-17 16:17:11 -05001376 if (!myDisk.Seek(secondHeader.currentLBA))
1377 allOK = 0;
1378 if (allOK) {
1379 if (myDisk.Write(blankSector, 512) != 512) { // blank it out
1380 cerr << "Warning! GPT backup header not overwritten! Error is " << errno << "\n";
srs569408bb0da2010-02-19 17:19:55 -05001381 allOK = 0;
1382 } // if
Roderick W. Smith84aaff62014-02-17 16:17:11 -05001383 } // if
srs569408bb0da2010-02-19 17:19:55 -05001384 myDisk.DiskSync();
1385 myDisk.Close();
1386 cout << "GPT data structures destroyed! You may now partition the disk using fdisk or\n"
1387 << "other utilities.\n";
1388 delete[] emptyTable;
1389 } else {
srs56945a608532011-03-17 13:53:01 -04001390 cerr << "Problem opening '" << device << "' for writing! Program will now terminate.\n";
srs569408bb0da2010-02-19 17:19:55 -05001391 } // if/else (fd != -1)
1392 return (allOK);
1393} // GPTDataTextUI::DestroyGPT()
1394
1395// Wipe MBR data from the disk (zero it out completely)
1396// Returns 1 on success, 0 on failure.
1397int GPTData::DestroyMBR(void) {
srs569401f7f082011-03-15 23:53:31 -04001398 int allOK;
srs569408bb0da2010-02-19 17:19:55 -05001399 uint8_t blankSector[512];
1400
srs569401f7f082011-03-15 23:53:31 -04001401 memset(blankSector, 0, sizeof(blankSector));
srs569408bb0da2010-02-19 17:19:55 -05001402
srs569401f7f082011-03-15 23:53:31 -04001403 allOK = myDisk.OpenForWrite() && myDisk.Seek(0) && (myDisk.Write(blankSector, 512) == 512);
1404
srs569408bb0da2010-02-19 17:19:55 -05001405 if (!allOK)
1406 cerr << "Warning! MBR not overwritten! Error is " << errno << "!\n";
1407 return allOK;
1408} // GPTData::DestroyMBR(void)
1409
srs5694e4ac11e2009-08-31 10:13:04 -04001410// Tell user whether Apple Partition Map (APM) was discovered....
1411void GPTData::ShowAPMState(void) {
1412 if (apmFound)
srs5694fed16d02010-01-27 23:03:40 -05001413 cout << " APM: present\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001414 else
srs5694fed16d02010-01-27 23:03:40 -05001415 cout << " APM: not present\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001416} // GPTData::ShowAPMState()
1417
1418// Tell user about the state of the GPT data....
1419void GPTData::ShowGPTState(void) {
1420 switch (state) {
1421 case gpt_invalid:
srs5694fed16d02010-01-27 23:03:40 -05001422 cout << " GPT: not present\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001423 break;
1424 case gpt_valid:
srs5694fed16d02010-01-27 23:03:40 -05001425 cout << " GPT: present\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001426 break;
1427 case gpt_corrupt:
srs5694fed16d02010-01-27 23:03:40 -05001428 cout << " GPT: damaged\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001429 break;
1430 default:
srs5694fed16d02010-01-27 23:03:40 -05001431 cout << "\a GPT: unknown -- bug!\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001432 break;
1433 } // switch
1434} // GPTData::ShowGPTState()
1435
1436// Display the basic GPT data
1437void GPTData::DisplayGPTData(void) {
srs5694e321d442010-01-29 17:44:04 -05001438 uint32_t i;
srs5694e4ac11e2009-08-31 10:13:04 -04001439 uint64_t temp, totalFree;
1440
srs5694fed16d02010-01-27 23:03:40 -05001441 cout << "Disk " << device << ": " << diskSize << " sectors, "
srs569401f7f082011-03-15 23:53:31 -04001442 << BytesToIeee(diskSize, blockSize) << "\n";
srs5694fed16d02010-01-27 23:03:40 -05001443 cout << "Logical sector size: " << blockSize << " bytes\n";
srs56945a081752010-09-24 20:39:41 -04001444 cout << "Disk identifier (GUID): " << mainHeader.diskGUID << "\n";
srs56940283dae2010-04-28 16:44:34 -04001445 cout << "Partition table holds up to " << numParts << " entries\n";
srs5694fed16d02010-01-27 23:03:40 -05001446 cout << "First usable sector is " << mainHeader.firstUsableLBA
1447 << ", last usable sector is " << mainHeader.lastUsableLBA << "\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001448 totalFree = FindFreeBlocks(&i, &temp);
srs56948a4ddfc2010-03-21 19:05:49 -04001449 cout << "Partitions will be aligned on " << sectorAlignment << "-sector boundaries\n";
srs5694fed16d02010-01-27 23:03:40 -05001450 cout << "Total free space is " << totalFree << " sectors ("
srs569401f7f082011-03-15 23:53:31 -04001451 << BytesToIeee(totalFree, blockSize) << ")\n";
srs5694fed16d02010-01-27 23:03:40 -05001452 cout << "\nNumber Start (sector) End (sector) Size Code Name\n";
srs56940283dae2010-04-28 16:44:34 -04001453 for (i = 0; i < numParts; i++) {
srs5694978041c2009-09-21 20:51:47 -04001454 partitions[i].ShowSummary(i, blockSize);
srs5694e4ac11e2009-08-31 10:13:04 -04001455 } // for
1456} // GPTData::DisplayGPTData()
1457
srs5694e4ac11e2009-08-31 10:13:04 -04001458// Show detailed information on the specified partition
Jeff Sharkeyd761ff52015-02-28 19:18:39 -08001459void GPTData::ShowPartDetails(uint32_t partNum) {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04001460 if ((partNum < numParts) && !IsFreePartNum(partNum)) {
Jeff Sharkeyd761ff52015-02-28 19:18:39 -08001461 partitions[partNum].ShowDetails(blockSize);
srs5694e4ac11e2009-08-31 10:13:04 -04001462 } else {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04001463 cout << "Partition #" << partNum + 1 << " does not exist.\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001464 } // if
1465} // GPTData::ShowPartDetails()
1466
srs5694e4ac11e2009-08-31 10:13:04 -04001467/**************************************************************************
1468 * *
1469 * Partition table transformation functions (MBR or BSD disklabel to GPT) *
1470 * (some of these functions may require user interaction) *
1471 * *
1472 **************************************************************************/
1473
srs569408bb0da2010-02-19 17:19:55 -05001474// Examines the MBR & GPT data to determine which set of data to use: the
1475// MBR (use_mbr), the GPT (use_gpt), the BSD disklabel (use_bsd), or create
1476// a new set of partitions (use_new). A return value of use_abort indicates
1477// that this function couldn't determine what to do. Overriding functions
1478// in derived classes may ask users questions in such cases.
srs5694e4ac11e2009-08-31 10:13:04 -04001479WhichToUse GPTData::UseWhichPartitions(void) {
1480 WhichToUse which = use_new;
1481 MBRValidity mbrState;
srs5694e4ac11e2009-08-31 10:13:04 -04001482
1483 mbrState = protectiveMBR.GetValidity();
1484
1485 if ((state == gpt_invalid) && ((mbrState == mbr) || (mbrState == hybrid))) {
srs5694fed16d02010-01-27 23:03:40 -05001486 cout << "\n***************************************************************\n"
Roderick W. Smith1eea9b02013-07-06 22:52:58 -04001487 << "Found invalid GPT and valid MBR; converting MBR to GPT format\n"
1488 << "in memory. ";
srs56945d58fe02010-01-03 20:57:08 -05001489 if (!justLooking) {
Roderick W. Smith1eea9b02013-07-06 22:52:58 -04001490 cout << "\aTHIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by\n"
1491 << "typing 'q' if you don't want to convert your MBR partitions\n"
1492 << "to GPT format!";
srs56945d58fe02010-01-03 20:57:08 -05001493 } // if
Roderick W. Smith1eea9b02013-07-06 22:52:58 -04001494 cout << "\n***************************************************************\n\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001495 which = use_mbr;
1496 } // if
1497
1498 if ((state == gpt_invalid) && bsdFound) {
srs5694fed16d02010-01-27 23:03:40 -05001499 cout << "\n**********************************************************************\n"
1500 << "Found invalid GPT and valid BSD disklabel; converting BSD disklabel\n"
1501 << "to GPT format.";
srs56940a697312010-01-28 21:10:52 -05001502 if ((!justLooking) && (!beQuiet)) {
srs56940283dae2010-04-28 16:44:34 -04001503 cout << "\a THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Your first\n"
srs5694fed16d02010-01-27 23:03:40 -05001504 << "BSD partition will likely be unusable. Exit by typing 'q' if you don't\n"
1505 << "want to convert your BSD partitions to GPT format!";
srs56945d58fe02010-01-03 20:57:08 -05001506 } // if
srs5694fed16d02010-01-27 23:03:40 -05001507 cout << "\n**********************************************************************\n\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001508 which = use_bsd;
1509 } // if
1510
1511 if ((state == gpt_valid) && (mbrState == gpt)) {
srs5694e4ac11e2009-08-31 10:13:04 -04001512 which = use_gpt;
srs56943c0af382010-01-15 19:19:18 -05001513 if (!beQuiet)
srs5694fed16d02010-01-27 23:03:40 -05001514 cout << "Found valid GPT with protective MBR; using GPT.\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001515 } // if
1516 if ((state == gpt_valid) && (mbrState == hybrid)) {
srs5694e4ac11e2009-08-31 10:13:04 -04001517 which = use_gpt;
srs56943c0af382010-01-15 19:19:18 -05001518 if (!beQuiet)
srs5694fed16d02010-01-27 23:03:40 -05001519 cout << "Found valid GPT with hybrid MBR; using GPT.\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001520 } // if
1521 if ((state == gpt_valid) && (mbrState == invalid)) {
srs56940a697312010-01-28 21:10:52 -05001522 cout << "\aFound valid GPT with corrupt MBR; using GPT and will write new\n"
srs5694fed16d02010-01-27 23:03:40 -05001523 << "protective MBR on save.\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001524 which = use_gpt;
srs5694e4ac11e2009-08-31 10:13:04 -04001525 } // if
1526 if ((state == gpt_valid) && (mbrState == mbr)) {
srs569408bb0da2010-02-19 17:19:55 -05001527 which = use_abort;
srs5694e4ac11e2009-08-31 10:13:04 -04001528 } // if
1529
srs5694e4ac11e2009-08-31 10:13:04 -04001530 if (state == gpt_corrupt) {
srs569408bb0da2010-02-19 17:19:55 -05001531 if (mbrState == gpt) {
1532 cout << "\a\a****************************************************************************\n"
1533 << "Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk\n"
1534 << "verification and recovery are STRONGLY recommended.\n"
1535 << "****************************************************************************\n";
1536 which = use_gpt;
srs56943c0af382010-01-15 19:19:18 -05001537 } else {
srs569408bb0da2010-02-19 17:19:55 -05001538 which = use_abort;
1539 } // if/else MBR says disk is GPT
1540 } // if GPT corrupt
srs5694e4ac11e2009-08-31 10:13:04 -04001541
1542 if (which == use_new)
srs5694fed16d02010-01-27 23:03:40 -05001543 cout << "Creating new GPT entries.\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001544
1545 return which;
1546} // UseWhichPartitions()
1547
srs569408bb0da2010-02-19 17:19:55 -05001548// Convert MBR partition table into GPT form.
1549void GPTData::XFormPartitions(void) {
srs5694e4ac11e2009-08-31 10:13:04 -04001550 int i, numToConvert;
1551 uint8_t origType;
srs5694e4ac11e2009-08-31 10:13:04 -04001552
1553 // Clear out old data & prepare basics....
1554 ClearGPTData();
1555
1556 // Convert the smaller of the # of GPT or MBR partitions
srs56940283dae2010-04-28 16:44:34 -04001557 if (numParts > MAX_MBR_PARTS)
srs5694978041c2009-09-21 20:51:47 -04001558 numToConvert = MAX_MBR_PARTS;
srs5694e4ac11e2009-08-31 10:13:04 -04001559 else
srs56940283dae2010-04-28 16:44:34 -04001560 numToConvert = numParts;
srs5694e4ac11e2009-08-31 10:13:04 -04001561
1562 for (i = 0; i < numToConvert; i++) {
1563 origType = protectiveMBR.GetType(i);
1564 // don't waste CPU time trying to convert extended, hybrid protective, or
1565 // null (non-existent) partitions
srs5694e35eb1b2009-09-14 00:29:34 -04001566 if ((origType != 0x05) && (origType != 0x0f) && (origType != 0x85) &&
srs56946699b012010-02-04 00:55:30 -05001567 (origType != 0x00) && (origType != 0xEE))
srs5694e4ac11e2009-08-31 10:13:04 -04001568 partitions[i] = protectiveMBR.AsGPT(i);
1569 } // for
1570
1571 // Convert MBR into protective MBR
1572 protectiveMBR.MakeProtectiveMBR();
1573
1574 // Record that all original CRCs were OK so as not to raise flags
1575 // when doing a disk verification
1576 mainCrcOk = secondCrcOk = mainPartsCrcOk = secondPartsCrcOk = 1;
srs5694e4ac11e2009-08-31 10:13:04 -04001577} // GPTData::XFormPartitions()
1578
1579// Transforms BSD disklabel on the specified partition (numbered from 0).
srs569408bb0da2010-02-19 17:19:55 -05001580// If an invalid partition number is given, the program does nothing.
srs5694e4ac11e2009-08-31 10:13:04 -04001581// Returns the number of new partitions created.
srs569408bb0da2010-02-19 17:19:55 -05001582int GPTData::XFormDisklabel(uint32_t partNum) {
1583 uint32_t low, high;
srs5694e4ac11e2009-08-31 10:13:04 -04001584 int goOn = 1, numDone = 0;
1585 BSDData disklabel;
1586
srs569408bb0da2010-02-19 17:19:55 -05001587 if (GetPartRange(&low, &high) == 0) {
1588 goOn = 0;
1589 cout << "No partitions!\n";
1590 } // if
1591 if (partNum > high) {
1592 goOn = 0;
1593 cout << "Specified partition is invalid!\n";
1594 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04001595
srs569408bb0da2010-02-19 17:19:55 -05001596 // If all is OK, read the disklabel and convert it.
1597 if (goOn) {
1598 goOn = disklabel.ReadBSDData(&myDisk, partitions[partNum].GetFirstLBA(),
1599 partitions[partNum].GetLastLBA());
1600 if ((goOn) && (disklabel.IsDisklabel())) {
1601 numDone = XFormDisklabel(&disklabel);
1602 if (numDone == 1)
1603 cout << "Converted 1 BSD partition.\n";
1604 else
1605 cout << "Converted " << numDone << " BSD partitions.\n";
1606 } else {
1607 cout << "Unable to convert partitions! Unrecognized BSD disklabel.\n";
1608 } // if/else
1609 } // if
1610 if (numDone > 0) { // converted partitions; delete carrier
1611 partitions[partNum].BlankPartition();
1612 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04001613 return numDone;
srs569455d92612010-03-07 22:16:07 -05001614} // GPTData::XFormDisklabel(uint32_t i)
srs5694e4ac11e2009-08-31 10:13:04 -04001615
1616// Transform the partitions on an already-loaded BSD disklabel...
srs569408bb0da2010-02-19 17:19:55 -05001617int GPTData::XFormDisklabel(BSDData* disklabel) {
1618 int i, partNum = 0, numDone = 0;
srs5694e4ac11e2009-08-31 10:13:04 -04001619
srs569408bb0da2010-02-19 17:19:55 -05001620 if (disklabel->IsDisklabel()) {
srs5694e4ac11e2009-08-31 10:13:04 -04001621 for (i = 0; i < disklabel->GetNumParts(); i++) {
srs569408bb0da2010-02-19 17:19:55 -05001622 partNum = FindFirstFreePart();
1623 if (partNum >= 0) {
1624 partitions[partNum] = disklabel->AsGPT(i);
1625 if (partitions[partNum].IsUsed())
1626 numDone++;
1627 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04001628 } // for
srs569408bb0da2010-02-19 17:19:55 -05001629 if (partNum == -1)
1630 cerr << "Warning! Too many partitions to convert!\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001631 } // if
1632
1633 // Record that all original CRCs were OK so as not to raise flags
1634 // when doing a disk verification
1635 mainCrcOk = secondCrcOk = mainPartsCrcOk = secondPartsCrcOk = 1;
1636
1637 return numDone;
1638} // GPTData::XFormDisklabel(BSDData* disklabel)
1639
srs569408bb0da2010-02-19 17:19:55 -05001640// Add one GPT partition to MBR. Used by PartsToMBR() functions. Created
1641// partition has the active/bootable flag UNset and uses the GPT fdisk
1642// type code divided by 0x0100 as the MBR type code.
1643// Returns 1 if operation was 100% successful, 0 if there were ANY
1644// problems.
srs5694978041c2009-09-21 20:51:47 -04001645int GPTData::OnePartToMBR(uint32_t gptPart, int mbrPart) {
srs569408bb0da2010-02-19 17:19:55 -05001646 int allOK = 1;
srs5694fed16d02010-01-27 23:03:40 -05001647
srs5694978041c2009-09-21 20:51:47 -04001648 if ((mbrPart < 0) || (mbrPart > 3)) {
srs5694fed16d02010-01-27 23:03:40 -05001649 cout << "MBR partition " << mbrPart + 1 << " is out of range; omitting it.\n";
srs5694978041c2009-09-21 20:51:47 -04001650 allOK = 0;
1651 } // if
srs56940283dae2010-04-28 16:44:34 -04001652 if (gptPart >= numParts) {
srs5694fed16d02010-01-27 23:03:40 -05001653 cout << "GPT partition " << gptPart + 1 << " is out of range; omitting it.\n";
srs5694978041c2009-09-21 20:51:47 -04001654 allOK = 0;
1655 } // if
1656 if (allOK && (partitions[gptPart].GetLastLBA() == UINT64_C(0))) {
srs5694fed16d02010-01-27 23:03:40 -05001657 cout << "GPT partition " << gptPart + 1 << " is undefined; omitting it.\n";
srs5694978041c2009-09-21 20:51:47 -04001658 allOK = 0;
1659 } // if
1660 if (allOK && (partitions[gptPart].GetFirstLBA() <= UINT32_MAX) &&
1661 (partitions[gptPart].GetLengthLBA() <= UINT32_MAX)) {
1662 if (partitions[gptPart].GetLastLBA() > UINT32_MAX) {
srs5694fed16d02010-01-27 23:03:40 -05001663 cout << "Caution: Partition end point past 32-bit pointer boundary;"
1664 << " some OSes may\nreact strangely.\n";
srs569408bb0da2010-02-19 17:19:55 -05001665 } // if
srs5694978041c2009-09-21 20:51:47 -04001666 protectiveMBR.MakePart(mbrPart, (uint32_t) partitions[gptPart].GetFirstLBA(),
srs569408bb0da2010-02-19 17:19:55 -05001667 (uint32_t) partitions[gptPart].GetLengthLBA(),
1668 partitions[gptPart].GetHexType() / 256, 0);
srs5694978041c2009-09-21 20:51:47 -04001669 } else { // partition out of range
srs569408bb0da2010-02-19 17:19:55 -05001670 if (allOK) // Display only if "else" triggered by out-of-bounds condition
1671 cout << "Partition " << gptPart + 1 << " begins beyond the 32-bit pointer limit of MBR "
1672 << "partitions, or is\n too big; omitting it.\n";
srs5694978041c2009-09-21 20:51:47 -04001673 allOK = 0;
1674 } // if/else
1675 return allOK;
1676} // GPTData::OnePartToMBR()
1677
srs5694e4ac11e2009-08-31 10:13:04 -04001678
1679/**********************************************************************
1680 * *
1681 * Functions that adjust GPT data structures WITHOUT user interaction *
1682 * (they may display information for the user's benefit, though) *
1683 * *
1684 **********************************************************************/
1685
1686// Resizes GPT to specified number of entries. Creates a new table if
srs5694706e5122012-01-21 13:47:24 -05001687// necessary, copies data if it already exists. If fillGPTSectors is 1
1688// (the default), rounds numEntries to fill all the sectors necessary to
1689// hold the GPT.
1690// Returns 1 if all goes well, 0 if an error is encountered.
1691int GPTData::SetGPTSize(uint32_t numEntries, int fillGPTSectors) {
srs569408bb0da2010-02-19 17:19:55 -05001692 GPTPart* newParts;
srs5694706e5122012-01-21 13:47:24 -05001693 uint32_t i, high, copyNum, entriesPerSector;
srs5694e4ac11e2009-08-31 10:13:04 -04001694 int allOK = 1;
1695
1696 // First, adjust numEntries upward, if necessary, to get a number
1697 // that fills the allocated sectors
srs5694706e5122012-01-21 13:47:24 -05001698 entriesPerSector = blockSize / GPT_SIZE;
1699 if (fillGPTSectors && ((numEntries % entriesPerSector) != 0)) {
srs5694fed16d02010-01-27 23:03:40 -05001700 cout << "Adjusting GPT size from " << numEntries << " to ";
srs5694706e5122012-01-21 13:47:24 -05001701 numEntries = ((numEntries / entriesPerSector) + 1) * entriesPerSector;
srs5694fed16d02010-01-27 23:03:40 -05001702 cout << numEntries << " to fill the sector\n";
srs5694e4ac11e2009-08-31 10:13:04 -04001703 } // if
1704
srs5694247657a2009-11-26 18:36:12 -05001705 // Do the work only if the # of partitions is changing. Along with being
srs569455d92612010-03-07 22:16:07 -05001706 // efficient, this prevents mucking with the location of the secondary
srs5694247657a2009-11-26 18:36:12 -05001707 // partition table, which causes problems when loading data from a RAID
1708 // array that's been expanded because this function is called when loading
1709 // data.
srs56940283dae2010-04-28 16:44:34 -04001710 if (((numEntries != numParts) || (partitions == NULL)) && (numEntries > 0)) {
srs569401f7f082011-03-15 23:53:31 -04001711 newParts = new GPTPart [numEntries];
srs5694247657a2009-11-26 18:36:12 -05001712 if (newParts != NULL) {
1713 if (partitions != NULL) { // existing partitions; copy them over
1714 GetPartRange(&i, &high);
1715 if (numEntries < (high + 1)) { // Highest entry too high for new #
srs5694fed16d02010-01-27 23:03:40 -05001716 cout << "The highest-numbered partition is " << high + 1
1717 << ", which is greater than the requested\n"
1718 << "partition table size of " << numEntries
1719 << "; cannot resize. Perhaps sorting will help.\n";
srs5694247657a2009-11-26 18:36:12 -05001720 allOK = 0;
srs5694815fb652011-03-18 12:35:56 -04001721 delete[] newParts;
srs5694247657a2009-11-26 18:36:12 -05001722 } else { // go ahead with copy
srs56940283dae2010-04-28 16:44:34 -04001723 if (numEntries < numParts)
srs5694247657a2009-11-26 18:36:12 -05001724 copyNum = numEntries;
1725 else
srs56940283dae2010-04-28 16:44:34 -04001726 copyNum = numParts;
srs5694247657a2009-11-26 18:36:12 -05001727 for (i = 0; i < copyNum; i++) {
1728 newParts[i] = partitions[i];
1729 } // for
srs569401f7f082011-03-15 23:53:31 -04001730 delete[] partitions;
srs5694247657a2009-11-26 18:36:12 -05001731 partitions = newParts;
srs5694247657a2009-11-26 18:36:12 -05001732 } // if
1733 } else { // No existing partition table; just create it
srs5694e4ac11e2009-08-31 10:13:04 -04001734 partitions = newParts;
srs5694247657a2009-11-26 18:36:12 -05001735 } // if/else existing partitions
srs56940283dae2010-04-28 16:44:34 -04001736 numParts = numEntries;
srs5694706e5122012-01-21 13:47:24 -05001737 mainHeader.firstUsableLBA = ((numEntries * GPT_SIZE) / blockSize) + (((numEntries * GPT_SIZE) % blockSize) != 0) + 2 ;
srs5694247657a2009-11-26 18:36:12 -05001738 secondHeader.firstUsableLBA = mainHeader.firstUsableLBA;
1739 MoveSecondHeaderToEnd();
1740 if (diskSize > 0)
1741 CheckGPTSize();
1742 } else { // Bad memory allocation
srs56946aae2a92011-06-10 01:16:51 -04001743 cerr << "Error allocating memory for partition table! Size is unchanged!\n";
srs5694247657a2009-11-26 18:36:12 -05001744 allOK = 0;
1745 } // if/else
srs5694e4ac11e2009-08-31 10:13:04 -04001746 } // if/else
srs56940283dae2010-04-28 16:44:34 -04001747 mainHeader.numParts = numParts;
1748 secondHeader.numParts = numParts;
srs5694e4ac11e2009-08-31 10:13:04 -04001749 return (allOK);
1750} // GPTData::SetGPTSize()
1751
1752// Blank the partition array
1753void GPTData::BlankPartitions(void) {
1754 uint32_t i;
1755
srs56940283dae2010-04-28 16:44:34 -04001756 for (i = 0; i < numParts; i++) {
srs5694e4ac11e2009-08-31 10:13:04 -04001757 partitions[i].BlankPartition();
1758 } // for
1759} // GPTData::BlankPartitions()
1760
srs5694ba00fed2010-01-12 18:18:36 -05001761// Delete a partition by number. Returns 1 if successful,
1762// 0 if there was a problem. Returns 1 if partition was in
1763// range, 0 if it was out of range.
1764int GPTData::DeletePartition(uint32_t partNum) {
1765 uint64_t startSector, length;
srs56940283dae2010-04-28 16:44:34 -04001766 uint32_t low, high, numUsedParts, retval = 1;;
srs5694ba00fed2010-01-12 18:18:36 -05001767
srs56940283dae2010-04-28 16:44:34 -04001768 numUsedParts = GetPartRange(&low, &high);
1769 if ((numUsedParts > 0) && (partNum >= low) && (partNum <= high)) {
srs5694ba00fed2010-01-12 18:18:36 -05001770 // In case there's a protective MBR, look for & delete matching
1771 // MBR partition....
1772 startSector = partitions[partNum].GetFirstLBA();
1773 length = partitions[partNum].GetLengthLBA();
1774 protectiveMBR.DeleteByLocation(startSector, length);
1775
1776 // Now delete the GPT partition
1777 partitions[partNum].BlankPartition();
1778 } else {
srs5694fed16d02010-01-27 23:03:40 -05001779 cerr << "Partition number " << partNum + 1 << " out of range!\n";
srs5694ba00fed2010-01-12 18:18:36 -05001780 retval = 0;
1781 } // if/else
1782 return retval;
1783} // GPTData::DeletePartition(uint32_t partNum)
1784
srs569408bb0da2010-02-19 17:19:55 -05001785// Non-interactively create a partition.
1786// Returns 1 if the operation was successful, 0 if a problem was discovered.
srs5694e321d442010-01-29 17:44:04 -05001787uint32_t GPTData::CreatePartition(uint32_t partNum, uint64_t startSector, uint64_t endSector) {
srs5694ba00fed2010-01-12 18:18:36 -05001788 int retval = 1; // assume there'll be no problems
srs56945a081752010-09-24 20:39:41 -04001789 uint64_t origSector = startSector;
srs5694ba00fed2010-01-12 18:18:36 -05001790
1791 if (IsFreePartNum(partNum)) {
srs56945a081752010-09-24 20:39:41 -04001792 if (Align(&startSector)) {
1793 cout << "Information: Moved requested sector from " << origSector << " to "
1794 << startSector << " in\norder to align on " << sectorAlignment
1795 << "-sector boundaries.\n";
1796 } // if
srs5694ba00fed2010-01-12 18:18:36 -05001797 if (IsFree(startSector) && (startSector <= endSector)) {
1798 if (FindLastInFree(startSector) >= endSector) {
1799 partitions[partNum].SetFirstLBA(startSector);
1800 partitions[partNum].SetLastLBA(endSector);
srs56940741fa22013-01-09 12:55:40 -05001801 partitions[partNum].SetType(DEFAULT_GPT_TYPE);
srs56946699b012010-02-04 00:55:30 -05001802 partitions[partNum].RandomizeUniqueGUID();
srs5694ba00fed2010-01-12 18:18:36 -05001803 } else retval = 0; // if free space until endSector
1804 } else retval = 0; // if startSector is free
1805 } else retval = 0; // if legal partition number
1806 return retval;
1807} // GPTData::CreatePartition(partNum, startSector, endSector)
1808
srs5694e4ac11e2009-08-31 10:13:04 -04001809// Sort the GPT entries, eliminating gaps and making for a logical
srs56949a46b042011-03-15 00:34:10 -04001810// ordering.
srs5694e4ac11e2009-08-31 10:13:04 -04001811void GPTData::SortGPT(void) {
srs56949a46b042011-03-15 00:34:10 -04001812 if (numParts > 0)
srs569401f7f082011-03-15 23:53:31 -04001813 sort(partitions, partitions + numParts);
srs5694e4ac11e2009-08-31 10:13:04 -04001814} // GPTData::SortGPT()
1815
srs569408bb0da2010-02-19 17:19:55 -05001816// Swap the contents of two partitions.
1817// Returns 1 if successful, 0 if either partition is out of range
1818// (that is, not a legal number; either or both can be empty).
1819// Note that if partNum1 = partNum2 and this number is in range,
1820// it will be considered successful.
1821int GPTData::SwapPartitions(uint32_t partNum1, uint32_t partNum2) {
1822 GPTPart temp;
1823 int allOK = 1;
1824
srs56940283dae2010-04-28 16:44:34 -04001825 if ((partNum1 < numParts) && (partNum2 < numParts)) {
srs569408bb0da2010-02-19 17:19:55 -05001826 if (partNum1 != partNum2) {
1827 temp = partitions[partNum1];
1828 partitions[partNum1] = partitions[partNum2];
1829 partitions[partNum2] = temp;
1830 } // if
1831 } else allOK = 0; // partition numbers are valid
1832 return allOK;
1833} // GPTData::SwapPartitions()
1834
srs5694e4ac11e2009-08-31 10:13:04 -04001835// Set up data structures for entirely new set of partitions on the
1836// specified device. Returns 1 if OK, 0 if there were problems.
srs5694e35eb1b2009-09-14 00:29:34 -04001837// Note that this function does NOT clear the protectiveMBR data
1838// structure, since it may hold the original MBR partitions if the
1839// program was launched on an MBR disk, and those may need to be
1840// converted to GPT format.
srs5694e4ac11e2009-08-31 10:13:04 -04001841int GPTData::ClearGPTData(void) {
srs5694e35eb1b2009-09-14 00:29:34 -04001842 int goOn = 1, i;
srs5694e4ac11e2009-08-31 10:13:04 -04001843
1844 // Set up the partition table....
srs56949a46b042011-03-15 00:34:10 -04001845 delete[] partitions;
srs5694e4ac11e2009-08-31 10:13:04 -04001846 partitions = NULL;
1847 SetGPTSize(NUM_GPT_ENTRIES);
1848
1849 // Now initialize a bunch of stuff that's static....
1850 mainHeader.signature = GPT_SIGNATURE;
1851 mainHeader.revision = 0x00010000;
srs5694978041c2009-09-21 20:51:47 -04001852 mainHeader.headerSize = HEADER_SIZE;
srs5694e4ac11e2009-08-31 10:13:04 -04001853 mainHeader.reserved = 0;
1854 mainHeader.currentLBA = UINT64_C(1);
1855 mainHeader.partitionEntriesLBA = (uint64_t) 2;
1856 mainHeader.sizeOfPartitionEntries = GPT_SIZE;
1857 for (i = 0; i < GPT_RESERVED; i++) {
1858 mainHeader.reserved2[i] = '\0';
1859 } // for
srs56940873e9d2010-10-07 13:00:45 -04001860 if (blockSize > 0)
1861 sectorAlignment = DEFAULT_ALIGNMENT * SECTOR_SIZE / blockSize;
1862 else
1863 sectorAlignment = DEFAULT_ALIGNMENT;
srs5694e4ac11e2009-08-31 10:13:04 -04001864
1865 // Now some semi-static items (computed based on end of disk)
1866 mainHeader.backupLBA = diskSize - UINT64_C(1);
1867 mainHeader.lastUsableLBA = diskSize - mainHeader.firstUsableLBA;
1868
1869 // Set a unique GUID for the disk, based on random numbers
srs56946699b012010-02-04 00:55:30 -05001870 mainHeader.diskGUID.Randomize();
srs5694e4ac11e2009-08-31 10:13:04 -04001871
1872 // Copy main header to backup header
1873 RebuildSecondHeader();
1874
1875 // Blank out the partitions array....
1876 BlankPartitions();
1877
1878 // Flag all CRCs as being OK....
1879 mainCrcOk = 1;
1880 secondCrcOk = 1;
1881 mainPartsCrcOk = 1;
1882 secondPartsCrcOk = 1;
1883
1884 return (goOn);
1885} // GPTData::ClearGPTData()
1886
srs5694247657a2009-11-26 18:36:12 -05001887// Set the location of the second GPT header data to the end of the disk.
srs569464cbd172011-03-01 22:03:54 -05001888// If the disk size has actually changed, this also adjusts the protective
1889// entry in the MBR, since it's probably no longer correct.
srs5694247657a2009-11-26 18:36:12 -05001890// Used internally and called by the 'e' option on the recovery &
1891// transformation menu, to help users of RAID arrays who add disk space
srs569464cbd172011-03-01 22:03:54 -05001892// to their arrays or to adjust data structures in restore operations
1893// involving unequal-sized disks.
srs5694247657a2009-11-26 18:36:12 -05001894void GPTData::MoveSecondHeaderToEnd() {
srs56948bb78762009-11-24 15:43:49 -05001895 mainHeader.backupLBA = secondHeader.currentLBA = diskSize - UINT64_C(1);
srs569464cbd172011-03-01 22:03:54 -05001896 if (mainHeader.lastUsableLBA != diskSize - mainHeader.firstUsableLBA) {
1897 if (protectiveMBR.GetValidity() == hybrid) {
1898 protectiveMBR.OptimizeEESize();
1899 RecomputeCHS();
1900 } // if
1901 if (protectiveMBR.GetValidity() == gpt)
1902 MakeProtectiveMBR();
1903 } // if
srs56948bb78762009-11-24 15:43:49 -05001904 mainHeader.lastUsableLBA = secondHeader.lastUsableLBA = diskSize - mainHeader.firstUsableLBA;
1905 secondHeader.partitionEntriesLBA = secondHeader.lastUsableLBA + UINT64_C(1);
1906} // GPTData::FixSecondHeaderLocation()
1907
srs5694699941e2011-03-21 21:33:57 -04001908// Sets the partition's name to the specified UnicodeString without
1909// user interaction.
1910// Returns 1 on success, 0 on failure (invalid partition number).
srs56945a608532011-03-17 13:53:01 -04001911int GPTData::SetName(uint32_t partNum, const UnicodeString & theName) {
srs5694ba00fed2010-01-12 18:18:36 -05001912 int retval = 1;
srs5694fed16d02010-01-27 23:03:40 -05001913
srs5694699941e2011-03-21 21:33:57 -04001914 if (IsUsedPartNum(partNum))
srs5694fed16d02010-01-27 23:03:40 -05001915 partitions[partNum].SetName(theName);
srs5694699941e2011-03-21 21:33:57 -04001916 else
1917 retval = 0;
srs5694ba00fed2010-01-12 18:18:36 -05001918
1919 return retval;
srs5694e4ac11e2009-08-31 10:13:04 -04001920} // GPTData::SetName
1921
1922// Set the disk GUID to the specified value. Note that the header CRCs must
1923// be recomputed after calling this function.
1924void GPTData::SetDiskGUID(GUIDData newGUID) {
1925 mainHeader.diskGUID = newGUID;
1926 secondHeader.diskGUID = newGUID;
1927} // SetDiskGUID()
1928
1929// Set the unique GUID of the specified partition. Returns 1 on
1930// successful completion, 0 if there were problems (invalid
1931// partition number).
1932int GPTData::SetPartitionGUID(uint32_t pn, GUIDData theGUID) {
1933 int retval = 0;
1934
srs56940283dae2010-04-28 16:44:34 -04001935 if (pn < numParts) {
srs5694e69e6802012-01-20 22:37:12 -05001936 if (partitions[pn].IsUsed()) {
srs5694e4ac11e2009-08-31 10:13:04 -04001937 partitions[pn].SetUniqueGUID(theGUID);
1938 retval = 1;
1939 } // if
1940 } // if
1941 return retval;
1942} // GPTData::SetPartitionGUID()
1943
srs56949ba54212010-05-18 23:24:02 -04001944// Set new random GUIDs for the disk and all partitions. Intended to be used
1945// after disk cloning or similar operations that don't randomize the GUIDs.
1946void GPTData::RandomizeGUIDs(void) {
1947 uint32_t i;
1948
1949 mainHeader.diskGUID.Randomize();
1950 secondHeader.diskGUID = mainHeader.diskGUID;
1951 for (i = 0; i < numParts; i++)
1952 if (partitions[i].IsUsed())
1953 partitions[i].RandomizeUniqueGUID();
1954} // GPTData::RandomizeGUIDs()
1955
srs5694ba00fed2010-01-12 18:18:36 -05001956// Change partition type code non-interactively. Returns 1 if
1957// successful, 0 if not....
srs5694327129e2010-09-22 01:07:31 -04001958int GPTData::ChangePartType(uint32_t partNum, PartType theGUID) {
1959 int retval = 1;
1960
1961 if (!IsFreePartNum(partNum)) {
1962 partitions[partNum].SetType(theGUID);
1963 } else retval = 0;
1964 return retval;
1965} // GPTData::ChangePartType()
1966
srs56949ba54212010-05-18 23:24:02 -04001967// Recompute the CHS values of all the MBR partitions. Used to reset
1968// CHS values that some BIOSes require, despite the fact that the
1969// resulting CHS values violate the GPT standard.
1970void GPTData::RecomputeCHS(void) {
1971 int i;
1972
1973 for (i = 0; i < 4; i++)
1974 protectiveMBR.RecomputeCHS(i);
1975} // GPTData::RecomputeCHS()
1976
srs56941d1448a2009-12-31 21:20:19 -05001977// Adjust sector number so that it falls on a sector boundary that's a
1978// multiple of sectorAlignment. This is done to improve the performance
1979// of Western Digital Advanced Format disks and disks with similar
1980// technology from other companies, which use 4096-byte sectors
1981// internally although they translate to 512-byte sectors for the
1982// benefit of the OS. If partitions aren't properly aligned on these
1983// disks, some filesystem data structures can span multiple physical
1984// sectors, degrading performance. This function should be called
1985// only on the FIRST sector of the partition, not the last!
1986// This function returns 1 if the alignment was altered, 0 if it
1987// was unchanged.
1988int GPTData::Align(uint64_t* sector) {
1989 int retval = 0, sectorOK = 0;
srs569400b6d7a2011-06-26 22:40:06 -04001990 uint64_t earlier, later, testSector;
srs56941d1448a2009-12-31 21:20:19 -05001991
1992 if ((*sector % sectorAlignment) != 0) {
srs56941d1448a2009-12-31 21:20:19 -05001993 earlier = (*sector / sectorAlignment) * sectorAlignment;
1994 later = earlier + (uint64_t) sectorAlignment;
1995
1996 // Check to see that every sector between the earlier one and the
1997 // requested one is clear, and that it's not too early....
1998 if (earlier >= mainHeader.firstUsableLBA) {
srs56941d1448a2009-12-31 21:20:19 -05001999 sectorOK = 1;
2000 testSector = earlier;
2001 do {
2002 sectorOK = IsFree(testSector++);
2003 } while ((sectorOK == 1) && (testSector < *sector));
2004 if (sectorOK == 1) {
2005 *sector = earlier;
srs56945a081752010-09-24 20:39:41 -04002006 retval = 1;
srs56941d1448a2009-12-31 21:20:19 -05002007 } // if
2008 } // if firstUsableLBA check
2009
2010 // If couldn't move the sector earlier, try to move it later instead....
2011 if ((sectorOK != 1) && (later <= mainHeader.lastUsableLBA)) {
2012 sectorOK = 1;
2013 testSector = later;
2014 do {
2015 sectorOK = IsFree(testSector--);
2016 } while ((sectorOK == 1) && (testSector > *sector));
2017 if (sectorOK == 1) {
2018 *sector = later;
srs56945a081752010-09-24 20:39:41 -04002019 retval = 1;
srs56941d1448a2009-12-31 21:20:19 -05002020 } // if
2021 } // if
srs56941d1448a2009-12-31 21:20:19 -05002022 } // if
2023 return retval;
2024} // GPTData::Align()
2025
srs5694e4ac11e2009-08-31 10:13:04 -04002026/********************************************************
2027 * *
2028 * Functions that return data about GPT data structures *
2029 * (most of these are inline in gpt.h) *
2030 * *
2031 ********************************************************/
2032
2033// Find the low and high used partition numbers (numbered from 0).
2034// Return value is the number of partitions found. Note that the
2035// *low and *high values are both set to 0 when no partitions
2036// are found, as well as when a single partition in the first
2037// position exists. Thus, the return value is the only way to
2038// tell when no partitions exist.
2039int GPTData::GetPartRange(uint32_t *low, uint32_t *high) {
2040 uint32_t i;
2041 int numFound = 0;
2042
srs56940283dae2010-04-28 16:44:34 -04002043 *low = numParts + 1; // code for "not found"
srs5694e4ac11e2009-08-31 10:13:04 -04002044 *high = 0;
srs56949a46b042011-03-15 00:34:10 -04002045 for (i = 0; i < numParts; i++) {
srs5694e69e6802012-01-20 22:37:12 -05002046 if (partitions[i].IsUsed()) { // it exists
srs56949a46b042011-03-15 00:34:10 -04002047 *high = i; // since we're counting up, set the high value
2048 // Set the low value only if it's not yet found...
2049 if (*low == (numParts + 1)) *low = i;
2050 numFound++;
2051 } // if
2052 } // for
srs5694e4ac11e2009-08-31 10:13:04 -04002053
2054 // Above will leave *low pointing to its "not found" value if no partitions
2055 // are defined, so reset to 0 if this is the case....
srs56940283dae2010-04-28 16:44:34 -04002056 if (*low == (numParts + 1))
srs5694e4ac11e2009-08-31 10:13:04 -04002057 *low = 0;
2058 return numFound;
2059} // GPTData::GetPartRange()
2060
srs569408bb0da2010-02-19 17:19:55 -05002061// Returns the value of the first free partition, or -1 if none is
2062// unused.
2063int GPTData::FindFirstFreePart(void) {
2064 int i = 0;
2065
2066 if (partitions != NULL) {
srs56949a46b042011-03-15 00:34:10 -04002067 while ((i < (int) numParts) && (partitions[i].IsUsed()))
srs569408bb0da2010-02-19 17:19:55 -05002068 i++;
srs56940283dae2010-04-28 16:44:34 -04002069 if (i >= (int) numParts)
srs569408bb0da2010-02-19 17:19:55 -05002070 i = -1;
2071 } else i = -1;
2072 return i;
2073} // GPTData::FindFirstFreePart()
2074
srs5694978041c2009-09-21 20:51:47 -04002075// Returns the number of defined partitions.
2076uint32_t GPTData::CountParts(void) {
srs5694e321d442010-01-29 17:44:04 -05002077 uint32_t i, counted = 0;
srs5694978041c2009-09-21 20:51:47 -04002078
srs56940283dae2010-04-28 16:44:34 -04002079 for (i = 0; i < numParts; i++) {
srs569408bb0da2010-02-19 17:19:55 -05002080 if (partitions[i].IsUsed())
srs5694978041c2009-09-21 20:51:47 -04002081 counted++;
2082 } // for
2083 return counted;
2084} // GPTData::CountParts()
2085
srs5694e4ac11e2009-08-31 10:13:04 -04002086/****************************************************
2087 * *
2088 * Functions that return data about disk free space *
2089 * *
2090 ****************************************************/
2091
2092// Find the first available block after the starting point; returns 0 if
2093// there are no available blocks left
2094uint64_t GPTData::FindFirstAvailable(uint64_t start) {
2095 uint64_t first;
2096 uint32_t i;
2097 int firstMoved = 0;
2098
2099 // Begin from the specified starting point or from the first usable
2100 // LBA, whichever is greater...
2101 if (start < mainHeader.firstUsableLBA)
2102 first = mainHeader.firstUsableLBA;
2103 else
2104 first = start;
2105
2106 // ...now search through all partitions; if first is within an
2107 // existing partition, move it to the next sector after that
2108 // partition and repeat. If first was moved, set firstMoved
2109 // flag; repeat until firstMoved is not set, so as to catch
2110 // cases where partitions are out of sequential order....
2111 do {
2112 firstMoved = 0;
srs56940283dae2010-04-28 16:44:34 -04002113 for (i = 0; i < numParts; i++) {
srs5694e69e6802012-01-20 22:37:12 -05002114 if ((partitions[i].IsUsed()) && (first >= partitions[i].GetFirstLBA()) &&
srs569455d92612010-03-07 22:16:07 -05002115 (first <= partitions[i].GetLastLBA())) { // in existing part.
srs5694e4ac11e2009-08-31 10:13:04 -04002116 first = partitions[i].GetLastLBA() + 1;
2117 firstMoved = 1;
srs569455d92612010-03-07 22:16:07 -05002118 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04002119 } // for
2120 } while (firstMoved == 1);
2121 if (first > mainHeader.lastUsableLBA)
2122 first = 0;
2123 return (first);
2124} // GPTData::FindFirstAvailable()
2125
2126// Finds the first available sector in the largest block of unallocated
2127// space on the disk. Returns 0 if there are no available blocks left
2128uint64_t GPTData::FindFirstInLargest(void) {
srs5694e35eb1b2009-09-14 00:29:34 -04002129 uint64_t start, firstBlock, lastBlock, segmentSize, selectedSize = 0, selectedSegment = 0;
srs5694e4ac11e2009-08-31 10:13:04 -04002130
2131 start = 0;
2132 do {
2133 firstBlock = FindFirstAvailable(start);
2134 if (firstBlock != UINT32_C(0)) { // something's free...
2135 lastBlock = FindLastInFree(firstBlock);
2136 segmentSize = lastBlock - firstBlock + UINT32_C(1);
2137 if (segmentSize > selectedSize) {
2138 selectedSize = segmentSize;
2139 selectedSegment = firstBlock;
2140 } // if
2141 start = lastBlock + 1;
2142 } // if
2143 } while (firstBlock != 0);
2144 return selectedSegment;
2145} // GPTData::FindFirstInLargest()
2146
srs5694cb76c672010-02-11 22:22:22 -05002147// Find the last available block on the disk.
srs5694f5dfbfa2013-02-14 20:47:14 -05002148// Returns 0 if there are no available sectors
srs5694cb76c672010-02-11 22:22:22 -05002149uint64_t GPTData::FindLastAvailable(void) {
srs5694e4ac11e2009-08-31 10:13:04 -04002150 uint64_t last;
2151 uint32_t i;
2152 int lastMoved = 0;
2153
2154 // Start by assuming the last usable LBA is available....
2155 last = mainHeader.lastUsableLBA;
2156
2157 // ...now, similar to algorithm in FindFirstAvailable(), search
2158 // through all partitions, moving last when it's in an existing
2159 // partition. Set the lastMoved flag so we repeat to catch cases
2160 // where partitions are out of logical order.
2161 do {
2162 lastMoved = 0;
srs56940283dae2010-04-28 16:44:34 -04002163 for (i = 0; i < numParts; i++) {
srs5694e4ac11e2009-08-31 10:13:04 -04002164 if ((last >= partitions[i].GetFirstLBA()) &&
srs569455d92612010-03-07 22:16:07 -05002165 (last <= partitions[i].GetLastLBA())) { // in existing part.
srs5694e4ac11e2009-08-31 10:13:04 -04002166 last = partitions[i].GetFirstLBA() - 1;
2167 lastMoved = 1;
srs569455d92612010-03-07 22:16:07 -05002168 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04002169 } // for
2170 } while (lastMoved == 1);
2171 if (last < mainHeader.firstUsableLBA)
2172 last = 0;
2173 return (last);
2174} // GPTData::FindLastAvailable()
2175
2176// Find the last available block in the free space pointed to by start.
2177uint64_t GPTData::FindLastInFree(uint64_t start) {
2178 uint64_t nearestStart;
2179 uint32_t i;
2180
2181 nearestStart = mainHeader.lastUsableLBA;
srs56940283dae2010-04-28 16:44:34 -04002182 for (i = 0; i < numParts; i++) {
srs5694e4ac11e2009-08-31 10:13:04 -04002183 if ((nearestStart > partitions[i].GetFirstLBA()) &&
srs569455d92612010-03-07 22:16:07 -05002184 (partitions[i].GetFirstLBA() > start)) {
srs5694e4ac11e2009-08-31 10:13:04 -04002185 nearestStart = partitions[i].GetFirstLBA() - 1;
srs569455d92612010-03-07 22:16:07 -05002186 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04002187 } // for
2188 return (nearestStart);
2189} // GPTData::FindLastInFree()
2190
2191// Finds the total number of free blocks, the number of segments in which
2192// they reside, and the size of the largest of those segments
srs5694e321d442010-01-29 17:44:04 -05002193uint64_t GPTData::FindFreeBlocks(uint32_t *numSegments, uint64_t *largestSegment) {
srs5694e4ac11e2009-08-31 10:13:04 -04002194 uint64_t start = UINT64_C(0); // starting point for each search
2195 uint64_t totalFound = UINT64_C(0); // running total
2196 uint64_t firstBlock; // first block in a segment
2197 uint64_t lastBlock; // last block in a segment
2198 uint64_t segmentSize; // size of segment in blocks
srs5694e321d442010-01-29 17:44:04 -05002199 uint32_t num = 0;
srs5694e4ac11e2009-08-31 10:13:04 -04002200
2201 *largestSegment = UINT64_C(0);
srs5694c54e9b42010-05-01 21:04:23 -04002202 if (diskSize > 0) {
2203 do {
2204 firstBlock = FindFirstAvailable(start);
2205 if (firstBlock != UINT64_C(0)) { // something's free...
2206 lastBlock = FindLastInFree(firstBlock);
2207 segmentSize = lastBlock - firstBlock + UINT64_C(1);
2208 if (segmentSize > *largestSegment) {
2209 *largestSegment = segmentSize;
2210 } // if
2211 totalFound += segmentSize;
2212 num++;
2213 start = lastBlock + 1;
srs5694e4ac11e2009-08-31 10:13:04 -04002214 } // if
srs5694c54e9b42010-05-01 21:04:23 -04002215 } while (firstBlock != 0);
2216 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04002217 *numSegments = num;
2218 return totalFound;
2219} // GPTData::FindFreeBlocks()
2220
srs569455d92612010-03-07 22:16:07 -05002221// Returns 1 if sector is unallocated, 0 if it's allocated to a partition.
2222// If it's allocated, return the partition number to which it's allocated
2223// in partNum, if that variable is non-NULL. (A value of UINT32_MAX is
2224// returned in partNum if the sector is in use by basic GPT data structures.)
2225int GPTData::IsFree(uint64_t sector, uint32_t *partNum) {
srs5694e4ac11e2009-08-31 10:13:04 -04002226 int isFree = 1;
2227 uint32_t i;
2228
srs56940283dae2010-04-28 16:44:34 -04002229 for (i = 0; i < numParts; i++) {
srs5694e4ac11e2009-08-31 10:13:04 -04002230 if ((sector >= partitions[i].GetFirstLBA()) &&
2231 (sector <= partitions[i].GetLastLBA())) {
2232 isFree = 0;
srs569455d92612010-03-07 22:16:07 -05002233 if (partNum != NULL)
2234 *partNum = i;
srs569408bb0da2010-02-19 17:19:55 -05002235 } // if
srs5694e4ac11e2009-08-31 10:13:04 -04002236 } // for
srs5694e35eb1b2009-09-14 00:29:34 -04002237 if ((sector < mainHeader.firstUsableLBA) ||
srs5694e4ac11e2009-08-31 10:13:04 -04002238 (sector > mainHeader.lastUsableLBA)) {
2239 isFree = 0;
srs569455d92612010-03-07 22:16:07 -05002240 if (partNum != NULL)
2241 *partNum = UINT32_MAX;
srs569408bb0da2010-02-19 17:19:55 -05002242 } // if
2243 return (isFree);
srs5694e4ac11e2009-08-31 10:13:04 -04002244} // GPTData::IsFree()
2245
srs5694815fb652011-03-18 12:35:56 -04002246// Returns 1 if partNum is unused AND if it's a legal value.
srs5694ba00fed2010-01-12 18:18:36 -05002247int GPTData::IsFreePartNum(uint32_t partNum) {
srs569401f7f082011-03-15 23:53:31 -04002248 return ((partNum < numParts) && (partitions != NULL) &&
2249 (!partitions[partNum].IsUsed()));
srs5694ba00fed2010-01-12 18:18:36 -05002250} // GPTData::IsFreePartNum()
2251
srs5694815fb652011-03-18 12:35:56 -04002252// Returns 1 if partNum is in use.
2253int GPTData::IsUsedPartNum(uint32_t partNum) {
2254 return ((partNum < numParts) && (partitions != NULL) &&
2255 (partitions[partNum].IsUsed()));
2256} // GPTData::IsUsedPartNum()
srs5694a8582cf2010-03-19 14:21:59 -04002257
2258/***********************************************************
2259 * *
2260 * Change how functions work or return information on them *
2261 * *
2262 ***********************************************************/
2263
2264// Set partition alignment value; partitions will begin on multiples of
2265// the specified value
2266void GPTData::SetAlignment(uint32_t n) {
srs56940873e9d2010-10-07 13:00:45 -04002267 if (n > 0)
2268 sectorAlignment = n;
2269 else
2270 cerr << "Attempt to set partition alignment to 0!\n";
srs5694a8582cf2010-03-19 14:21:59 -04002271} // GPTData::SetAlignment()
2272
2273// Compute sector alignment based on the current partitions (if any). Each
2274// partition's starting LBA is examined, and if it's divisible by a power-of-2
srs56940873e9d2010-10-07 13:00:45 -04002275// value less than or equal to the DEFAULT_ALIGNMENT value (adjusted for the
2276// sector size), but not by the previously-located alignment value, then the
2277// alignment value is adjusted down. If the computed alignment is less than 8
2278// and the disk is bigger than SMALLEST_ADVANCED_FORMAT, resets it to 8. This
srs5694d8eed462012-12-15 01:55:21 -05002279// is a safety measure for Advanced Format drives. If no partitions are
2280// defined, the alignment value is set to DEFAULT_ALIGNMENT (2048) (or an
srs56940873e9d2010-10-07 13:00:45 -04002281// adjustment of that based on the current sector size). The result is that new
srs56948a4ddfc2010-03-21 19:05:49 -04002282// drives are aligned to 2048-sector multiples but the program won't complain
2283// about other alignments on existing disks unless a smaller-than-8 alignment
srs5694d8eed462012-12-15 01:55:21 -05002284// is used on big disks (as safety for Advanced Format drives).
srs5694a8582cf2010-03-19 14:21:59 -04002285// Returns the computed alignment value.
2286uint32_t GPTData::ComputeAlignment(void) {
2287 uint32_t i = 0, found, exponent = 31;
srs5694ab4b0432010-09-25 20:39:52 -04002288 uint32_t align = DEFAULT_ALIGNMENT;
srs5694a8582cf2010-03-19 14:21:59 -04002289
srs56940873e9d2010-10-07 13:00:45 -04002290 if (blockSize > 0)
2291 align = DEFAULT_ALIGNMENT * SECTOR_SIZE / blockSize;
2292 exponent = (uint32_t) log2(align);
srs56940283dae2010-04-28 16:44:34 -04002293 for (i = 0; i < numParts; i++) {
srs5694a8582cf2010-03-19 14:21:59 -04002294 if (partitions[i].IsUsed()) {
2295 found = 0;
2296 while (!found) {
srs56940873e9d2010-10-07 13:00:45 -04002297 align = UINT64_C(1) << exponent;
srs5694a8582cf2010-03-19 14:21:59 -04002298 if ((partitions[i].GetFirstLBA() % align) == 0) {
2299 found = 1;
2300 } else {
2301 exponent--;
2302 } // if/else
2303 } // while
2304 } // if
2305 } // for
srs56940873e9d2010-10-07 13:00:45 -04002306 if ((align < MIN_AF_ALIGNMENT) && (diskSize >= SMALLEST_ADVANCED_FORMAT))
2307 align = MIN_AF_ALIGNMENT;
2308 sectorAlignment = align;
srs5694a8582cf2010-03-19 14:21:59 -04002309 return align;
2310} // GPTData::ComputeAlignment()
2311
srs5694e4ac11e2009-08-31 10:13:04 -04002312/********************************
2313 * *
2314 * Endianness support functions *
2315 * *
2316 ********************************/
2317
srs56942a9f5da2009-08-26 00:48:01 -04002318void GPTData::ReverseHeaderBytes(struct GPTHeader* header) {
srs5694221e0872009-08-29 15:00:31 -04002319 ReverseBytes(&header->signature, 8);
2320 ReverseBytes(&header->revision, 4);
2321 ReverseBytes(&header->headerSize, 4);
2322 ReverseBytes(&header->headerCRC, 4);
2323 ReverseBytes(&header->reserved, 4);
2324 ReverseBytes(&header->currentLBA, 8);
2325 ReverseBytes(&header->backupLBA, 8);
2326 ReverseBytes(&header->firstUsableLBA, 8);
2327 ReverseBytes(&header->lastUsableLBA, 8);
2328 ReverseBytes(&header->partitionEntriesLBA, 8);
2329 ReverseBytes(&header->numParts, 4);
2330 ReverseBytes(&header->sizeOfPartitionEntries, 4);
2331 ReverseBytes(&header->partitionEntriesCRC, 4);
srs569408bb0da2010-02-19 17:19:55 -05002332 ReverseBytes(header->reserved2, GPT_RESERVED);
srs56942a9f5da2009-08-26 00:48:01 -04002333} // GPTData::ReverseHeaderBytes()
2334
srs56940283dae2010-04-28 16:44:34 -04002335// Reverse byte order for all partitions.
srs56942a9f5da2009-08-26 00:48:01 -04002336void GPTData::ReversePartitionBytes() {
2337 uint32_t i;
2338
srs56940283dae2010-04-28 16:44:34 -04002339 for (i = 0; i < numParts; i++) {
srs5694221e0872009-08-29 15:00:31 -04002340 partitions[i].ReversePartBytes();
srs56942a9f5da2009-08-26 00:48:01 -04002341 } // for
2342} // GPTData::ReversePartitionBytes()
2343
srs56949ddc14b2010-08-22 22:44:42 -04002344// Validate partition number
2345bool GPTData::ValidPartNum (const uint32_t partNum) {
2346 if (partNum >= numParts) {
srs56945a081752010-09-24 20:39:41 -04002347 cerr << "Partition number out of range: " << partNum << "\n";
srs56949ddc14b2010-08-22 22:44:42 -04002348 return false;
2349 } // if
2350 return true;
2351} // GPTData::ValidPartNum
2352
srs56945a081752010-09-24 20:39:41 -04002353// Return a single partition for inspection (not modification!) by other
2354// functions.
2355const GPTPart & GPTData::operator[](uint32_t partNum) const {
2356 if (partNum >= numParts) {
srs5694815fb652011-03-18 12:35:56 -04002357 cerr << "Partition number out of range (" << partNum << " requested, but only "
2358 << numParts << " available)\n";
2359 exit(1);
2360 } // if
2361 if (partitions == NULL) {
2362 cerr << "No partitions defined in GPTData::operator[]; fatal error!\n";
2363 exit(1);
srs56945a081752010-09-24 20:39:41 -04002364 } // if
2365 return partitions[partNum];
2366} // operator[]
2367
2368// Return (not for modification!) the disk's GUID value
2369const GUIDData & GPTData::GetDiskGUID(void) const {
2370 return mainHeader.diskGUID;
2371} // GPTData::GetDiskGUID()
2372
srs56949ddc14b2010-08-22 22:44:42 -04002373// Manage attributes for a partition, based on commands passed to this function.
2374// (Function is non-interactive.)
2375// Returns 1 if a modification command succeeded, 0 if the command should not have
2376// modified data, and -1 if a modification command failed.
2377int GPTData::ManageAttributes(int partNum, const string & command, const string & bits) {
2378 int retval = 0;
2379 Attributes theAttr;
2380
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04002381 if (partNum >= (int) numParts) {
2382 cerr << "Invalid partition number (" << partNum + 1 << ")\n";
2383 retval = -1;
srs56949ddc14b2010-08-22 22:44:42 -04002384 } else {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04002385 if (command == "show") {
2386 ShowAttributes(partNum);
2387 } else if (command == "get") {
2388 GetAttribute(partNum, bits);
srs56949ddc14b2010-08-22 22:44:42 -04002389 } else {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04002390 theAttr = partitions[partNum].GetAttributes();
2391 if (theAttr.OperateOnAttributes(partNum, command, bits)) {
2392 partitions[partNum].SetAttributes(theAttr.GetAttributes());
2393 retval = 1;
2394 } else {
2395 retval = -1;
2396 } // if/else
2397 } // if/elseif/else
2398 } // if/else invalid partition #
srs56949ddc14b2010-08-22 22:44:42 -04002399
2400 return retval;
2401} // GPTData::ManageAttributes()
2402
2403// Show all attributes for a specified partition....
2404void GPTData::ShowAttributes(const uint32_t partNum) {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04002405 if ((partNum < numParts) && partitions[partNum].IsUsed())
srs5694e69e6802012-01-20 22:37:12 -05002406 partitions[partNum].ShowAttributes(partNum);
srs56949ddc14b2010-08-22 22:44:42 -04002407} // GPTData::ShowAttributes
2408
2409// Show whether a single attribute bit is set (terse output)...
2410void GPTData::GetAttribute(const uint32_t partNum, const string& attributeBits) {
Roderick W. Smith24bba6e2013-10-12 19:07:16 -04002411 if (partNum < numParts)
2412 partitions[partNum].GetAttributes().OperateOnAttributes(partNum, "get", attributeBits);
srs56949ddc14b2010-08-22 22:44:42 -04002413} // GPTData::GetAttribute
2414
2415
srs56942a9f5da2009-08-26 00:48:01 -04002416/******************************************
2417 * *
2418 * Additional non-class support functions *
2419 * *
2420 ******************************************/
2421
srs5694e7b4ff92009-08-18 13:16:10 -04002422// Check to be sure that data type sizes are correct. The basic types (uint*_t) should
2423// never fail these tests, but the struct types may fail depending on compile options.
2424// Specifically, the -fpack-struct option to gcc may be required to ensure proper structure
2425// sizes.
2426int SizesOK(void) {
2427 int allOK = 1;
srs5694e7b4ff92009-08-18 13:16:10 -04002428
2429 if (sizeof(uint8_t) != 1) {
srs5694fed16d02010-01-27 23:03:40 -05002430 cerr << "uint8_t is " << sizeof(uint8_t) << " bytes, should be 1 byte; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002431 allOK = 0;
2432 } // if
2433 if (sizeof(uint16_t) != 2) {
srs5694fed16d02010-01-27 23:03:40 -05002434 cerr << "uint16_t is " << sizeof(uint16_t) << " bytes, should be 2 bytes; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002435 allOK = 0;
2436 } // if
2437 if (sizeof(uint32_t) != 4) {
srs5694fed16d02010-01-27 23:03:40 -05002438 cerr << "uint32_t is " << sizeof(uint32_t) << " bytes, should be 4 bytes; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002439 allOK = 0;
2440 } // if
2441 if (sizeof(uint64_t) != 8) {
srs5694fed16d02010-01-27 23:03:40 -05002442 cerr << "uint64_t is " << sizeof(uint64_t) << " bytes, should be 8 bytes; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002443 allOK = 0;
2444 } // if
2445 if (sizeof(struct MBRRecord) != 16) {
srs5694fed16d02010-01-27 23:03:40 -05002446 cerr << "MBRRecord is " << sizeof(MBRRecord) << " bytes, should be 16 bytes; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002447 allOK = 0;
2448 } // if
srs5694978041c2009-09-21 20:51:47 -04002449 if (sizeof(struct TempMBR) != 512) {
srs5694fed16d02010-01-27 23:03:40 -05002450 cerr << "TempMBR is " << sizeof(TempMBR) << " bytes, should be 512 bytes; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002451 allOK = 0;
2452 } // if
2453 if (sizeof(struct GPTHeader) != 512) {
srs5694fed16d02010-01-27 23:03:40 -05002454 cerr << "GPTHeader is " << sizeof(GPTHeader) << " bytes, should be 512 bytes; aborting!\n";
srs5694e7b4ff92009-08-18 13:16:10 -04002455 allOK = 0;
2456 } // if
srs5694221e0872009-08-29 15:00:31 -04002457 if (sizeof(GPTPart) != 128) {
srs5694fed16d02010-01-27 23:03:40 -05002458 cerr << "GPTPart is " << sizeof(GPTPart) << " bytes, should be 128 bytes; aborting!\n";
srs5694221e0872009-08-29 15:00:31 -04002459 allOK = 0;
2460 } // if
srs56946699b012010-02-04 00:55:30 -05002461 if (sizeof(GUIDData) != 16) {
2462 cerr << "GUIDData is " << sizeof(GUIDData) << " bytes, should be 16 bytes; aborting!\n";
2463 allOK = 0;
2464 } // if
2465 if (sizeof(PartType) != 16) {
Roderick W. Smith84aaff62014-02-17 16:17:11 -05002466 cerr << "PartType is " << sizeof(PartType) << " bytes, should be 16 bytes; aborting!\n";
srs56946699b012010-02-04 00:55:30 -05002467 allOK = 0;
2468 } // if
srs5694e7b4ff92009-08-18 13:16:10 -04002469 return (allOK);
2470} // SizesOK()
srs5694e4ac11e2009-08-31 10:13:04 -04002471