blob: 91391e2813c8d900b85e8464567784ce1ac2aad9 [file] [log] [blame]
srs5694fad06422010-02-19 17:19:17 -05001/*
2 Copyright (C) <2010> <Roderick W. Smith>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18*/
19
20/* This class implements an interactive text-mode interface atop the
21 GPTData class */
22
23#include <string.h>
24#include <errno.h>
srs569455d92612010-03-07 22:16:07 -050025#include <stdint.h>
srs569461768bc2010-07-04 01:54:00 -040026#include <limits.h>
srs5694fad06422010-02-19 17:19:17 -050027#include <iostream>
28#include <sstream>
srs56941c6f8b02010-02-21 11:09:20 -050029#include <cstdio>
srs5694fad06422010-02-19 17:19:17 -050030#include "attributes.h"
31#include "gpttext.h"
srs569464cbd172011-03-01 22:03:54 -050032#include "gptpartnotes.h"
srs569455d92612010-03-07 22:16:07 -050033#include "support.h"
srs5694fad06422010-02-19 17:19:17 -050034
35using namespace std;
36
37/*******************************************
38* *
39* GPTDataText class and related structures *
40* *
41********************************************/
42
43GPTDataTextUI::GPTDataTextUI(void) : GPTData() {
44} // default constructor
45
46GPTDataTextUI::GPTDataTextUI(string filename) : GPTData(filename) {
47} // constructor passing filename
48
49GPTDataTextUI::~GPTDataTextUI(void) {
50} // default destructor
51
52/*********************************************************************
53 * *
54 * The following functions are extended (interactive) versions of *
55 * simpler functions in the base class.... *
56 * *
57 *********************************************************************/
58
59// Overridden function; calls base-class function and then makes
60// additional queries of the user, if the base-class function can't
61// decide what to do.
62WhichToUse GPTDataTextUI::UseWhichPartitions(void) {
63 WhichToUse which;
64 MBRValidity mbrState;
65 int answer;
66
67 which = GPTData::UseWhichPartitions();
68 if ((which != use_abort) || beQuiet)
69 return which;
70
71 // If we get past here, it means that the non-interactive tests were
72 // inconclusive, so we must ask the user which table to use....
73 mbrState = protectiveMBR.GetValidity();
74
75 if ((state == gpt_valid) && (mbrState == mbr)) {
76 cout << "Found valid MBR and GPT. Which do you want to use?\n";
77 answer = GetNumber(1, 3, 2, " 1 - MBR\n 2 - GPT\n 3 - Create blank GPT\n\nYour answer: ");
78 if (answer == 1) {
79 which = use_mbr;
80 } else if (answer == 2) {
81 which = use_gpt;
82 cout << "Using GPT and creating fresh protective MBR.\n";
83 } else which = use_new;
84 } // if
85
86 // Nasty decisions here -- GPT is present, but corrupt (bad CRCs or other
87 // problems)
88 if (state == gpt_corrupt) {
89 if ((mbrState == mbr) || (mbrState == hybrid)) {
90 cout << "Found valid MBR and corrupt GPT. Which do you want to use? (Using the\n"
91 << "GPT MAY permit recovery of GPT data.)\n";
92 answer = GetNumber(1, 3, 2, " 1 - MBR\n 2 - GPT\n 3 - Create blank GPT\n\nYour answer: ");
93 if (answer == 1) {
94 which = use_mbr;
95 } else if (answer == 2) {
96 which = use_gpt;
97 } else which = use_new;
98 } else if (mbrState == invalid) {
99 cout << "Found invalid MBR and corrupt GPT. What do you want to do? (Using the\n"
100 << "GPT MAY permit recovery of GPT data.)\n";
srs56940283dae2010-04-28 16:44:34 -0400101 answer = GetNumber(1, 2, 1, " 1 - Use current GPT\n 2 - Create blank GPT\n\nYour answer: ");
srs5694fad06422010-02-19 17:19:17 -0500102 if (answer == 1) {
103 which = use_gpt;
104 } else which = use_new;
105 } // if/else/else
106 } // if (corrupt GPT)
107
108 return which;
109} // UseWhichPartitions()
110
111// Ask the user for a partition number; and prompt for verification
112// if the requested partition isn't of a known BSD type.
113// Lets the base-class function do the work, and returns its value (the
114// number of converted partitions).
115int GPTDataTextUI::XFormDisklabel(void) {
116 uint32_t partNum;
117 uint16_t hexCode;
118 int goOn = 1, numDone = 0;
119 BSDData disklabel;
120
121 partNum = GetPartNum();
122
123 // Now see if the specified partition has a BSD type code....
124 hexCode = partitions[partNum].GetHexType();
125 if ((hexCode != 0xa500) && (hexCode != 0xa900)) {
126 cout << "Specified partition doesn't have a disklabel partition type "
127 << "code.\nContinue anyway? ";
128 goOn = (GetYN() == 'Y');
129 } // if
130
131 if (goOn)
132 numDone = GPTData::XFormDisklabel(partNum);
133
134 return numDone;
135} // GPTData::XFormDisklabel(int i)
136
srs569455d92612010-03-07 22:16:07 -0500137
srs5694fad06422010-02-19 17:19:17 -0500138/*********************************************************************
139 * *
140 * Begin functions that obtain information from the users, and often *
141 * do something with that information (call other functions) *
142 * *
143 *********************************************************************/
144
145// Prompts user for partition number and returns the result.
146uint32_t GPTDataTextUI::GetPartNum(void) {
147 uint32_t partNum;
148 uint32_t low, high;
149 ostringstream prompt;
150
151 if (GetPartRange(&low, &high) > 0) {
152 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): ";
153 partNum = GetNumber(low + 1, high + 1, low, prompt.str());
154 } else partNum = 1;
155 return (partNum - 1);
156} // GPTDataTextUI::GetPartNum()
157
158// What it says: Resize the partition table. (Default is 128 entries.)
159void GPTDataTextUI::ResizePartitionTable(void) {
160 int newSize;
161 ostringstream prompt;
162 uint32_t curLow, curHigh;
163
srs56940283dae2010-04-28 16:44:34 -0400164 cout << "Current partition table size is " << numParts << ".\n";
srs5694fad06422010-02-19 17:19:17 -0500165 GetPartRange(&curLow, &curHigh);
166 curHigh++; // since GetPartRange() returns numbers starting from 0...
167 // There's no point in having fewer than four partitions....
168 if (curHigh < (blockSize / GPT_SIZE))
169 curHigh = blockSize / GPT_SIZE;
170 prompt << "Enter new size (" << curHigh << " up, default " << NUM_GPT_ENTRIES << "): ";
171 newSize = GetNumber(4, 65535, 128, prompt.str());
172 if (newSize < 128) {
173 cout << "Caution: The partition table size should officially be 16KB or larger,\n"
174 << "which works out to 128 entries. In practice, smaller tables seem to\n"
175 << "work with most OSes, but this practice is risky. I'm proceeding with\n"
176 << "the resize, but you may want to reconsider this action and undo it.\n\n";
177 } // if
178 SetGPTSize(newSize);
179} // GPTDataTextUI::ResizePartitionTable()
180
181// Interactively create a partition
182void GPTDataTextUI::CreatePartition(void) {
srs56945a081752010-09-24 20:39:41 -0400183 uint64_t firstBlock, firstInLargest, lastBlock, sector, origSector;
srs5694fad06422010-02-19 17:19:17 -0500184 uint32_t firstFreePart = 0;
185 ostringstream prompt1, prompt2, prompt3;
186 int partNum;
187
188 // Find first free partition...
189 while (partitions[firstFreePart].GetFirstLBA() != 0) {
190 firstFreePart++;
191 } // while
192
193 if (((firstBlock = FindFirstAvailable()) != 0) &&
srs56940283dae2010-04-28 16:44:34 -0400194 (firstFreePart < numParts)) {
srs5694fad06422010-02-19 17:19:17 -0500195 lastBlock = FindLastAvailable();
srs569455d92612010-03-07 22:16:07 -0500196 firstInLargest = FindFirstInLargest();
197
198 // Get partition number....
199 do {
srs56940283dae2010-04-28 16:44:34 -0400200 prompt1 << "Partition number (" << firstFreePart + 1 << "-" << numParts
srs569455d92612010-03-07 22:16:07 -0500201 << ", default " << firstFreePart + 1 << "): ";
srs56940283dae2010-04-28 16:44:34 -0400202 partNum = GetNumber(firstFreePart + 1, numParts,
srs569455d92612010-03-07 22:16:07 -0500203 firstFreePart + 1, prompt1.str()) - 1;
204 if (partitions[partNum].GetFirstLBA() != 0)
205 cout << "partition " << partNum + 1 << " is in use.\n";
206 } while (partitions[partNum].GetFirstLBA() != 0);
207
208 // Get first block for new partition...
209 prompt2 << "First sector (" << firstBlock << "-" << lastBlock << ", default = "
srs56940873e9d2010-10-07 13:00:45 -0400210 << firstInLargest << ") or {+-}size{KMGTP}: ";
srs569455d92612010-03-07 22:16:07 -0500211 do {
srs56940873e9d2010-10-07 13:00:45 -0400212 sector = GetSectorNum(firstBlock, lastBlock, firstInLargest, blockSize, prompt2.str());
srs569455d92612010-03-07 22:16:07 -0500213 } while (IsFree(sector) == 0);
srs56945a081752010-09-24 20:39:41 -0400214 origSector = sector;
215 if (Align(&sector)) {
216 cout << "Information: Moved requested sector from " << origSector << " to "
217 << sector << " in\norder to align on " << sectorAlignment
218 << "-sector boundaries.\n";
219 if (!beQuiet)
220 cout << "Use 'l' on the experts' menu to adjust alignment\n";
221 } // if
222 // Align(&sector); // Align sector to correct multiple
srs569455d92612010-03-07 22:16:07 -0500223 firstBlock = sector;
224
225 // Get last block for new partitions...
226 lastBlock = FindLastInFree(firstBlock);
227 prompt3 << "Last sector (" << firstBlock << "-" << lastBlock << ", default = "
srs56940873e9d2010-10-07 13:00:45 -0400228 << lastBlock << ") or {+-}size{KMGTP}: ";
srs569455d92612010-03-07 22:16:07 -0500229 do {
srs56940873e9d2010-10-07 13:00:45 -0400230 sector = GetSectorNum(firstBlock, lastBlock, lastBlock, blockSize, prompt3.str());
srs569455d92612010-03-07 22:16:07 -0500231 } while (IsFree(sector) == 0);
232 lastBlock = sector;
233
234 firstFreePart = GPTData::CreatePartition(partNum, firstBlock, lastBlock);
235 partitions[partNum].ChangeType();
236 partitions[partNum].SetDefaultDescription();
srs5694fad06422010-02-19 17:19:17 -0500237 } else {
238 cout << "No free sectors available\n";
239 } // if/else
240} // GPTDataTextUI::CreatePartition()
241
242// Interactively delete a partition (duh!)
243void GPTDataTextUI::DeletePartition(void) {
244 int partNum;
245 uint32_t low, high;
246 ostringstream prompt;
247
248 if (GetPartRange(&low, &high) > 0) {
249 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): ";
250 partNum = GetNumber(low + 1, high + 1, low, prompt.str());
251 GPTData::DeletePartition(partNum - 1);
252 } else {
253 cout << "No partitions\n";
254 } // if/else
255} // GPTDataTextUI::DeletePartition()
256
257// Prompt user for a partition number, then change its type code
258// using ChangeGPTType(struct GPTPartition*) function.
259void GPTDataTextUI::ChangePartType(void) {
260 int partNum;
261 uint32_t low, high;
srs569455d92612010-03-07 22:16:07 -0500262
srs5694fad06422010-02-19 17:19:17 -0500263 if (GetPartRange(&low, &high) > 0) {
264 partNum = GetPartNum();
265 partitions[partNum].ChangeType();
266 } else {
267 cout << "No partitions\n";
268 } // if/else
269} // GPTDataTextUI::ChangePartType()
270
271// Partition attributes seem to be rarely used, but I want a way to
272// adjust them for completeness....
273void GPTDataTextUI::SetAttributes(uint32_t partNum) {
srs56940873e9d2010-10-07 13:00:45 -0400274// Attributes theAttr;
srs569455d92612010-03-07 22:16:07 -0500275
srs56940873e9d2010-10-07 13:00:45 -0400276 partitions[partNum].SetAttributes();
277/* theAttr = partitions[partNum].GetAttributes();
278// theAttr.SetAttributes(partitions[partNum].GetAttributes());
srs5694fad06422010-02-19 17:19:17 -0500279 theAttr.ChangeAttributes();
srs56940873e9d2010-10-07 13:00:45 -0400280 partitions[partNum].SetAttributes(theAttr.GetAttributes()); */
srs5694fad06422010-02-19 17:19:17 -0500281} // GPTDataTextUI::SetAttributes()
282
283// Ask user for two partition numbers and swap them in the table. Note that
284// this just reorders table entries; it doesn't adjust partition layout on
285// the disk.
286// Returns 1 if successful, 0 if not. (If user enters identical numbers, it
287// counts as successful.)
288int GPTDataTextUI::SwapPartitions(void) {
289 int partNum1, partNum2, didIt = 0;
290 uint32_t low, high;
291 ostringstream prompt;
292 GPTPart temp;
293
294 if (GetPartRange(&low, &high) > 0) {
295 partNum1 = GetPartNum();
srs56940283dae2010-04-28 16:44:34 -0400296 if (high >= numParts - 1)
srs5694fad06422010-02-19 17:19:17 -0500297 high = 0;
srs56940283dae2010-04-28 16:44:34 -0400298 prompt << "New partition number (1-" << numParts
srs569455d92612010-03-07 22:16:07 -0500299 << ", default " << high + 2 << "): ";
srs56940283dae2010-04-28 16:44:34 -0400300 partNum2 = GetNumber(1, numParts, high + 2, prompt.str()) - 1;
srs5694fad06422010-02-19 17:19:17 -0500301 didIt = GPTData::SwapPartitions(partNum1, partNum2);
302 } else {
303 cout << "No partitions\n";
304 } // if/else
305 return didIt;
306} // GPTDataTextUI::SwapPartitionNumbers()
307
308// This function destroys the on-disk GPT structures. Returns 1 if the user
309// confirms destruction, 0 if the user aborts or if there's a disk error.
310int GPTDataTextUI::DestroyGPTwPrompt(void) {
311 int allOK = 1;
312
313 if ((apmFound) || (bsdFound)) {
314 cout << "WARNING: APM or BSD disklabel structures detected! This operation could\n"
315 << "damage any APM or BSD partitions on this disk!\n";
316 } // if APM or BSD
317 cout << "\a\aAbout to wipe out GPT on " << device << ". Proceed? ";
318 if (GetYN() == 'Y') {
319 if (DestroyGPT()) {
320 // Note on below: Touch the MBR only if the user wants it completely
321 // blanked out. Version 0.4.2 deleted the 0xEE partition and re-wrote
322 // the MBR, but this could wipe out a valid MBR that the program
323 // had subsequently discarded (say, if it conflicted with older GPT
324 // structures).
325 cout << "Blank out MBR? ";
326 if (GetYN() == 'Y') {
327 DestroyMBR();
328 } else {
329 cout << "MBR is unchanged. You may need to delete an EFI GPT (0xEE) partition\n"
330 << "with fdisk or another tool.\n";
331 } // if/else
332 } else allOK = 0; // if GPT structures destroyed
333 } else allOK = 0; // if user confirms destruction
334 return (allOK);
335} // GPTDataTextUI::DestroyGPTwPrompt()
336
337// Get partition number from user and then call ShowPartDetails(partNum)
338// to show its detailed information
339void GPTDataTextUI::ShowDetails(void) {
340 int partNum;
341 uint32_t low, high;
srs569455d92612010-03-07 22:16:07 -0500342
srs5694fad06422010-02-19 17:19:17 -0500343 if (GetPartRange(&low, &high) > 0) {
344 partNum = GetPartNum();
345 ShowPartDetails(partNum);
346 } else {
347 cout << "No partitions\n";
348 } // if/else
349} // GPTDataTextUI::ShowDetails()
350
351// Create a hybrid MBR -- an ugly, funky thing that helps GPT work with
352// OSes that don't understand GPT.
353void GPTDataTextUI::MakeHybrid(void) {
354 uint32_t partNums[3];
355 char line[255];
srs56940283dae2010-04-28 16:44:34 -0400356 int numPartsToCvt, i, j, mbrNum, bootable = 0;
srs569455d92612010-03-07 22:16:07 -0500357 unsigned int hexCode = 0;
358 struct PartInfo *newNote;
359 PartNotes notes;
srs5694fad06422010-02-19 17:19:17 -0500360 char eeFirst = 'Y'; // Whether EFI GPT (0xEE) partition comes first in table
361
srs5694058d4a52010-10-12 12:42:47 -0400362 cout << "\nWARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,\n"
363 << "just hit the Enter key at the below prompt and your MBR partition table will\n"
364 << "be untouched.\n\n\a";
srs5694fad06422010-02-19 17:19:17 -0500365
366 // Now get the numbers of up to three partitions to add to the
367 // hybrid MBR....
368 cout << "Type from one to three GPT partition numbers, separated by spaces, to be\n"
369 << "added to the hybrid MBR, in sequence: ";
srs569464cbd172011-03-01 22:03:54 -0500370 if (!fgets(line, 255, stdin)) {
371 cerr << "Critical error! Failed fgets() in GPTDataTextUI::MakeHybrid()!\n";
372 exit(1);
373 } // if
srs56940283dae2010-04-28 16:44:34 -0400374 numPartsToCvt = sscanf(line, "%d %d %d", &partNums[0], &partNums[1], &partNums[2]);
srs5694fad06422010-02-19 17:19:17 -0500375
srs56940283dae2010-04-28 16:44:34 -0400376 if (numPartsToCvt > 0) {
srs5694fad06422010-02-19 17:19:17 -0500377 cout << "Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? ";
378 eeFirst = GetYN();
379 } // if
380
srs56940283dae2010-04-28 16:44:34 -0400381 for (i = 0; i < numPartsToCvt; i++) {
srs569455d92612010-03-07 22:16:07 -0500382 newNote = new struct PartInfo;
srs569464cbd172011-03-01 22:03:54 -0500383 j = newNote->origPartNum = partNums[i] - 1;
srs5694058d4a52010-10-12 12:42:47 -0400384 if (partitions[j].IsUsed()) {
385 mbrNum = i + (eeFirst == 'Y');
386 cout << "\nCreating entry for GPT partition #" << j + 1
387 << " (MBR partition #" << mbrNum + 1 << ")\n";
388 newNote->hexCode = GetMBRTypeCode(partitions[j].GetHexType() / 256);
389 newNote->firstLBA = partitions[j].GetFirstLBA();
390 newNote->lastLBA = partitions[j].GetLastLBA();
391 newNote->type = PRIMARY;
392 cout << "Set the bootable flag? ";
393 if (GetYN() == 'Y')
394 newNote->active = 1;
395 else
396 newNote->active = 0;
397 notes.AddToEnd(newNote);
398 } else {
399 delete newNote;
400 cerr << "\nGPT partition #" << j + 1 << " does not exist; skipping.\n";
401 } // if/else
srs5694fad06422010-02-19 17:19:17 -0500402 } // for
403
srs56940283dae2010-04-28 16:44:34 -0400404 if (numPartsToCvt > 0) { // User opted to create a hybrid MBR....
srs5694fad06422010-02-19 17:19:17 -0500405 // Create EFI protective partition that covers the start of the disk.
406 // If this location (covering the main GPT data structures) is omitted,
407 // Linux won't find any partitions on the disk.
srs569455d92612010-03-07 22:16:07 -0500408 newNote = new struct PartInfo;
srs569464cbd172011-03-01 22:03:54 -0500409 newNote->origPartNum = MBR_EFI_GPT;
srs569461768bc2010-07-04 01:54:00 -0400410 newNote->firstLBA = 1;
srs569455d92612010-03-07 22:16:07 -0500411 newNote->active = 0;
412 newNote->hexCode = 0xEE;
413 newNote->type = PRIMARY;
414 // newNote firstLBA and lastLBA are computed later...
415 if (eeFirst == 'Y') {
416 notes.AddToStart(newNote);
417 } else {
418 notes.AddToEnd(newNote);
419 } // else
srs5694fad06422010-02-19 17:19:17 -0500420 protectiveMBR.SetHybrid();
421
422 // ... and for good measure, if there are any partition spaces left,
423 // optionally create another protective EFI partition to cover as much
424 // space as possible....
srs569455d92612010-03-07 22:16:07 -0500425 if (notes.GetNumPrimary() < 4) { // unused entry....
426 cout << "\nUnused partition space(s) found. Use one to protect more partitions? ";
427 if (GetYN() == 'Y') {
428 while ((hexCode <= 0) || (hexCode > 255)) {
429 cout << "Enter an MBR hex code (EE is EFI GPT, but may confuse MacOS): ";
430 // Comment on above: Mac OS treats disks with more than one
431 // 0xEE MBR partition as MBR disks, not as GPT disks.
srs569464cbd172011-03-01 22:03:54 -0500432 if (!fgets(line, 255, stdin)) {
433 cerr << "Critical error! Failed fgets() in GPTDataTextUI::MakeHybrid()\n";
434 exit(1);
435 } // if
srs569455d92612010-03-07 22:16:07 -0500436 sscanf(line, "%x", &hexCode);
437 if (line[0] == '\n')
438 hexCode = 0x00;
439 } // while
440 newNote = new struct PartInfo;
srs569464cbd172011-03-01 22:03:54 -0500441 newNote->origPartNum = MBR_EFI_GPT;
srs569455d92612010-03-07 22:16:07 -0500442 newNote->active = 0;
443 newNote->hexCode = hexCode;
444 newNote->type = PRIMARY;
445 // newNote firstLBA and lastLBA are computed later...
446 notes.AddToEnd(newNote);
447 } // if (GetYN() == 'Y')
448 } // if unused entry
srs5694058d4a52010-10-12 12:42:47 -0400449 PartsToMBR(&notes);
srs5694fad06422010-02-19 17:19:17 -0500450 if (bootable > 0)
451 protectiveMBR.SetPartBootable(bootable);
srs56940283dae2010-04-28 16:44:34 -0400452 } // if (numPartsToCvt > 0)
srs5694fad06422010-02-19 17:19:17 -0500453} // GPTDataTextUI::MakeHybrid()
454
srs569455d92612010-03-07 22:16:07 -0500455// Assign GPT partitions to primary or logical status for conversion. The
456// function first presents a suggested layout with as many logicals as
457// possible, but gives the user the option to override this suggestion.
458// Returns the number of partitions assigned (0 if problems or if the
459// user aborts)
srs569464cbd172011-03-01 22:03:54 -0500460int GPTDataTextUI::AssignPrimaryOrLogical(GptPartNotes& notes) {
srs569455d92612010-03-07 22:16:07 -0500461 int i, partNum, allOK = 1, changesWanted = 1, countedParts, numPrimary = 0, numLogical = 0;
462 int newNumParts; // size of GPT table
463
464 // Sort and resize the GPT table. Resized to clear the sector before the
465 // first available sector, if possible, so as to enable turning the
466 // first partition into a logical, should that be desirable/necessary.
467 SortGPT();
468 countedParts = newNumParts = CountParts();
469 i = blockSize / GPT_SIZE;
470 if ((newNumParts % i) != 0) {
471 newNumParts = ((newNumParts / i) + 1) * i;
472 } // if
473 SetGPTSize(newNumParts);
474
475 // Takes notes on existing partitions: Create an initial assignment as
476 // primary or logical, set default MBR types, and then make it legal
477 // (drop partitions as required to fit in the MBR and as logicals).
srs56940283dae2010-04-28 16:44:34 -0400478 allOK = (notes.PassPartitions(partitions, this, numParts, blockSize) == (int) numParts);
srs569455d92612010-03-07 22:16:07 -0500479 for (i = 0; i < countedParts; i++)
480 notes.SetMbrHexType(i, partitions[i].GetHexType() / 255);
481 notes.MakeItLegal();
482
483 while (allOK && changesWanted) {
484 notes.ShowSummary();
485 cout << "\n";
486 partNum = GetNumber(-1, countedParts, -2,
487 "Type partition to change, 0 to accept, -1 to abort: ");
488 switch (partNum) {
489 case -1:
490 allOK = 0;
491 break;
492 case 0:
493 changesWanted = 0;
494 break;
495 default:
496 allOK = notes.MakeChange(partNum - 1);
497 break;
498 } // switch
499 } // while
500
501 i = 0;
502 if (allOK)
503 for (i = 0; i < countedParts; i++) {
504 switch (notes.GetType(i)) {
505 case PRIMARY:
506 numPrimary++;
507 break;
508 case LOGICAL:
509 numLogical++;
510 break;
511 } // switch
512 if (notes.GetActiveStatus(i))
513 protectiveMBR.SetPartBootable(i);
514 } // for
515
516 if (numPrimary > 4) {
517 cerr << "Warning! More than four primary partitions in "
518 << "GPTDataTextUI::AssignPrimaryOrLogical()!\n";
519 allOK = 0;
520 } // if
521 return (allOK * (numPrimary + numLogical));
522} // GPTDataTextUI::AssignPrimaryOrLogical()
523
524// Convert the GPT to MBR form, storing partitions in the protectiveMBR
525// variable. This function is necessarily limited; it may not be able to
526// convert all partitions, depending on the disk size and available space
527// before each partition (one free sector is required to create a logical
528// partition, which are necessary to convert more than four partitions).
529// Returns the number of converted partitions; if this value
srs5694fad06422010-02-19 17:19:17 -0500530// is over 0, the calling function should call DestroyGPT() to destroy
srs569455d92612010-03-07 22:16:07 -0500531// the GPT data, call SaveMBR() to save the MBR, and then exit.
srs5694fad06422010-02-19 17:19:17 -0500532int GPTDataTextUI::XFormToMBR(void) {
srs56940283dae2010-04-28 16:44:34 -0400533 int numToConvert, numReallyConverted = 0;
srs569455d92612010-03-07 22:16:07 -0500534 int origNumParts;
srs569464cbd172011-03-01 22:03:54 -0500535 GptPartNotes notes;
srs569455d92612010-03-07 22:16:07 -0500536 GPTPart *tempGptParts;
537 uint32_t i;
srs5694fad06422010-02-19 17:19:17 -0500538
srs569455d92612010-03-07 22:16:07 -0500539 // Back up partition array, since we'll be sorting it and we want to
540 // be able to restore it in case the user aborts....
srs56940283dae2010-04-28 16:44:34 -0400541 origNumParts = numParts;
542 tempGptParts = new GPTPart[numParts];
543 for (i = 0; i < numParts; i++)
srs569455d92612010-03-07 22:16:07 -0500544 tempGptParts[i] = partitions[i];
545
srs5694058d4a52010-10-12 12:42:47 -0400546 notes.MakeItLegal();
srs569455d92612010-03-07 22:16:07 -0500547 numToConvert = AssignPrimaryOrLogical(notes);
srs5694fad06422010-02-19 17:19:17 -0500548
srs569455d92612010-03-07 22:16:07 -0500549 if (numToConvert > 0) {
srs5694058d4a52010-10-12 12:42:47 -0400550 numReallyConverted = PartsToMBR(&notes);
srs569455d92612010-03-07 22:16:07 -0500551 if (numReallyConverted != numToConvert) {
552 cerr << "Error converting partitions to MBR; tried to convert "
553 << numToConvert << " partitions,\nbut converted " << numReallyConverted
554 << ". Aborting operation!\n";
555 numReallyConverted = 0;
556 protectiveMBR.MakeProtectiveMBR();
557 } // if/else
558 } // if
srs5694fad06422010-02-19 17:19:17 -0500559
srs569455d92612010-03-07 22:16:07 -0500560 // A problem or the user aborted; restore backup of unsorted and
561 // original-sized partition table and delete the sorted and
562 // resized one; otherwise free the backup table's memory....
563 if (numReallyConverted == 0) {
564 delete[] partitions;
565 partitions = tempGptParts;
566 SetGPTSize(origNumParts);
srs5694fad06422010-02-19 17:19:17 -0500567 } else {
srs569455d92612010-03-07 22:16:07 -0500568 delete[] tempGptParts;
569 } // if
570 return numReallyConverted;
srs5694fad06422010-02-19 17:19:17 -0500571} // GPTDataTextUI::XFormToMBR()
572
573/*********************************************************************
574 * *
575 * The following doesn't really belong in the class, since it's MBR- *
576 * specific, but it's also user I/O-related, so I want to keep it in *
577 * this file.... *
578 * *
579 *********************************************************************/
580
581// Get an MBR type code from the user and return it
582int GetMBRTypeCode(int defType) {
583 char line[255];
srs5694fad06422010-02-19 17:19:17 -0500584 int typeCode;
585
586 cout.setf(ios::uppercase);
587 cout.fill('0');
588 do {
589 cout << "Enter an MBR hex code (default " << hex;
590 cout.width(2);
591 cout << defType << "): " << dec;
srs569464cbd172011-03-01 22:03:54 -0500592 if (!fgets(line, 255, stdin)) {
593 cerr << "Critical error! Failed fgets() in GetMBRTypeCode()\n";
594 exit(1);
595 } // if
srs5694fad06422010-02-19 17:19:17 -0500596 if (line[0] == '\n')
597 typeCode = defType;
598 else
599 sscanf(line, "%x", &typeCode);
600 } while ((typeCode <= 0) || (typeCode > 255));
601 cout.fill(' ');
602 return typeCode;
srs56941c6f8b02010-02-21 11:09:20 -0500603} // GetMBRTypeCode