blob: b9039d31db8f9d9454747f1ef8c7230502e33704 [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"
srs569455d92612010-03-07 22:16:07 -050032#include "partnotes.h"
33#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 = "
210 << firstInLargest << ") or {+-}size{KMGT}: ";
211 do {
212 sector = GetSectorNum(firstBlock, lastBlock, firstInLargest, prompt2.str());
213 } 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 = "
228 << lastBlock << ") or {+-}size{KMGT}: ";
229 do {
230 sector = GetSectorNum(firstBlock, lastBlock, lastBlock, prompt3.str());
231 } 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) {
274 Attributes theAttr;
srs569455d92612010-03-07 22:16:07 -0500275
srs5694fad06422010-02-19 17:19:17 -0500276 theAttr.SetAttributes(partitions[partNum].GetAttributes());
srs5694fad06422010-02-19 17:19:17 -0500277 theAttr.ChangeAttributes();
278 partitions[partNum].SetAttributes(theAttr.GetAttributes());
279} // GPTDataTextUI::SetAttributes()
280
281// Ask user for two partition numbers and swap them in the table. Note that
282// this just reorders table entries; it doesn't adjust partition layout on
283// the disk.
284// Returns 1 if successful, 0 if not. (If user enters identical numbers, it
285// counts as successful.)
286int GPTDataTextUI::SwapPartitions(void) {
287 int partNum1, partNum2, didIt = 0;
288 uint32_t low, high;
289 ostringstream prompt;
290 GPTPart temp;
291
292 if (GetPartRange(&low, &high) > 0) {
293 partNum1 = GetPartNum();
srs56940283dae2010-04-28 16:44:34 -0400294 if (high >= numParts - 1)
srs5694fad06422010-02-19 17:19:17 -0500295 high = 0;
srs56940283dae2010-04-28 16:44:34 -0400296 prompt << "New partition number (1-" << numParts
srs569455d92612010-03-07 22:16:07 -0500297 << ", default " << high + 2 << "): ";
srs56940283dae2010-04-28 16:44:34 -0400298 partNum2 = GetNumber(1, numParts, high + 2, prompt.str()) - 1;
srs5694fad06422010-02-19 17:19:17 -0500299 didIt = GPTData::SwapPartitions(partNum1, partNum2);
300 } else {
301 cout << "No partitions\n";
302 } // if/else
303 return didIt;
304} // GPTDataTextUI::SwapPartitionNumbers()
305
306// This function destroys the on-disk GPT structures. Returns 1 if the user
307// confirms destruction, 0 if the user aborts or if there's a disk error.
308int GPTDataTextUI::DestroyGPTwPrompt(void) {
309 int allOK = 1;
310
311 if ((apmFound) || (bsdFound)) {
312 cout << "WARNING: APM or BSD disklabel structures detected! This operation could\n"
313 << "damage any APM or BSD partitions on this disk!\n";
314 } // if APM or BSD
315 cout << "\a\aAbout to wipe out GPT on " << device << ". Proceed? ";
316 if (GetYN() == 'Y') {
317 if (DestroyGPT()) {
318 // Note on below: Touch the MBR only if the user wants it completely
319 // blanked out. Version 0.4.2 deleted the 0xEE partition and re-wrote
320 // the MBR, but this could wipe out a valid MBR that the program
321 // had subsequently discarded (say, if it conflicted with older GPT
322 // structures).
323 cout << "Blank out MBR? ";
324 if (GetYN() == 'Y') {
325 DestroyMBR();
326 } else {
327 cout << "MBR is unchanged. You may need to delete an EFI GPT (0xEE) partition\n"
328 << "with fdisk or another tool.\n";
329 } // if/else
330 } else allOK = 0; // if GPT structures destroyed
331 } else allOK = 0; // if user confirms destruction
332 return (allOK);
333} // GPTDataTextUI::DestroyGPTwPrompt()
334
335// Get partition number from user and then call ShowPartDetails(partNum)
336// to show its detailed information
337void GPTDataTextUI::ShowDetails(void) {
338 int partNum;
339 uint32_t low, high;
srs569455d92612010-03-07 22:16:07 -0500340
srs5694fad06422010-02-19 17:19:17 -0500341 if (GetPartRange(&low, &high) > 0) {
342 partNum = GetPartNum();
343 ShowPartDetails(partNum);
344 } else {
345 cout << "No partitions\n";
346 } // if/else
347} // GPTDataTextUI::ShowDetails()
348
349// Create a hybrid MBR -- an ugly, funky thing that helps GPT work with
350// OSes that don't understand GPT.
351void GPTDataTextUI::MakeHybrid(void) {
352 uint32_t partNums[3];
353 char line[255];
354 char* junk;
srs56940283dae2010-04-28 16:44:34 -0400355 int numPartsToCvt, i, j, mbrNum, bootable = 0;
srs569455d92612010-03-07 22:16:07 -0500356 unsigned int hexCode = 0;
357 struct PartInfo *newNote;
358 PartNotes notes;
srs5694fad06422010-02-19 17:19:17 -0500359 char eeFirst = 'Y'; // Whether EFI GPT (0xEE) partition comes first in table
360
361 cout << "\nWARNING! Hybrid MBRs are flaky and potentially dangerous! If you decide not\n"
362 << "to use one, just hit the Enter key at the below prompt and your MBR\n"
363 << "partition table will be untouched.\n\n\a";
364
365 // Now get the numbers of up to three partitions to add to the
366 // hybrid MBR....
367 cout << "Type from one to three GPT partition numbers, separated by spaces, to be\n"
368 << "added to the hybrid MBR, in sequence: ";
369 junk = fgets(line, 255, stdin);
srs56940283dae2010-04-28 16:44:34 -0400370 numPartsToCvt = sscanf(line, "%d %d %d", &partNums[0], &partNums[1], &partNums[2]);
srs5694fad06422010-02-19 17:19:17 -0500371
srs56940283dae2010-04-28 16:44:34 -0400372 if (numPartsToCvt > 0) {
srs5694fad06422010-02-19 17:19:17 -0500373 cout << "Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? ";
374 eeFirst = GetYN();
375 } // if
376
srs56940283dae2010-04-28 16:44:34 -0400377 for (i = 0; i < numPartsToCvt; i++) {
srs569455d92612010-03-07 22:16:07 -0500378 newNote = new struct PartInfo;
379 j = newNote->gptPartNum = partNums[i] - 1;
srs5694fad06422010-02-19 17:19:17 -0500380 mbrNum = i + (eeFirst == 'Y');
381 cout << "\nCreating entry for GPT partition #" << j + 1
382 << " (MBR partition #" << mbrNum + 1 << ")\n";
srs569455d92612010-03-07 22:16:07 -0500383 newNote->hexCode = GetMBRTypeCode(partitions[j].GetHexType() / 256);
384 newNote->firstLBA = partitions[j].GetFirstLBA();
385 newNote->lastLBA = partitions[j].GetLastLBA();
386 newNote->type = PRIMARY;
srs5694fad06422010-02-19 17:19:17 -0500387 cout << "Set the bootable flag? ";
388 if (GetYN() == 'Y')
srs569455d92612010-03-07 22:16:07 -0500389 newNote->active = 1;
390 else
391 newNote->active = 0;
392 notes.AddToEnd(newNote);
srs5694fad06422010-02-19 17:19:17 -0500393 } // for
394
srs56940283dae2010-04-28 16:44:34 -0400395 if (numPartsToCvt > 0) { // User opted to create a hybrid MBR....
srs5694fad06422010-02-19 17:19:17 -0500396 // Create EFI protective partition that covers the start of the disk.
397 // If this location (covering the main GPT data structures) is omitted,
398 // Linux won't find any partitions on the disk.
srs569455d92612010-03-07 22:16:07 -0500399 newNote = new struct PartInfo;
400 newNote->gptPartNum = MBR_EFI_GPT;
srs569461768bc2010-07-04 01:54:00 -0400401 newNote->firstLBA = 1;
srs569455d92612010-03-07 22:16:07 -0500402 newNote->active = 0;
403 newNote->hexCode = 0xEE;
404 newNote->type = PRIMARY;
405 // newNote firstLBA and lastLBA are computed later...
406 if (eeFirst == 'Y') {
407 notes.AddToStart(newNote);
408 } else {
409 notes.AddToEnd(newNote);
410 } // else
srs5694fad06422010-02-19 17:19:17 -0500411 protectiveMBR.SetHybrid();
412
413 // ... and for good measure, if there are any partition spaces left,
414 // optionally create another protective EFI partition to cover as much
415 // space as possible....
srs569455d92612010-03-07 22:16:07 -0500416 if (notes.GetNumPrimary() < 4) { // unused entry....
417 cout << "\nUnused partition space(s) found. Use one to protect more partitions? ";
418 if (GetYN() == 'Y') {
419 while ((hexCode <= 0) || (hexCode > 255)) {
420 cout << "Enter an MBR hex code (EE is EFI GPT, but may confuse MacOS): ";
421 // Comment on above: Mac OS treats disks with more than one
422 // 0xEE MBR partition as MBR disks, not as GPT disks.
423 junk = fgets(line, 255, stdin);
424 sscanf(line, "%x", &hexCode);
425 if (line[0] == '\n')
426 hexCode = 0x00;
427 } // while
428 newNote = new struct PartInfo;
429 newNote->gptPartNum = MBR_EFI_GPT;
430 newNote->active = 0;
431 newNote->hexCode = hexCode;
432 newNote->type = PRIMARY;
433 // newNote firstLBA and lastLBA are computed later...
434 notes.AddToEnd(newNote);
435 } // if (GetYN() == 'Y')
436 } // if unused entry
437 PartsToMBR(notes);
srs5694fad06422010-02-19 17:19:17 -0500438 if (bootable > 0)
439 protectiveMBR.SetPartBootable(bootable);
srs56940283dae2010-04-28 16:44:34 -0400440 } // if (numPartsToCvt > 0)
srs5694fad06422010-02-19 17:19:17 -0500441} // GPTDataTextUI::MakeHybrid()
442
srs569455d92612010-03-07 22:16:07 -0500443// Assign GPT partitions to primary or logical status for conversion. The
444// function first presents a suggested layout with as many logicals as
445// possible, but gives the user the option to override this suggestion.
446// Returns the number of partitions assigned (0 if problems or if the
447// user aborts)
448int GPTDataTextUI::AssignPrimaryOrLogical(PartNotes & notes) {
449 int i, partNum, allOK = 1, changesWanted = 1, countedParts, numPrimary = 0, numLogical = 0;
450 int newNumParts; // size of GPT table
451
452 // Sort and resize the GPT table. Resized to clear the sector before the
453 // first available sector, if possible, so as to enable turning the
454 // first partition into a logical, should that be desirable/necessary.
455 SortGPT();
456 countedParts = newNumParts = CountParts();
457 i = blockSize / GPT_SIZE;
458 if ((newNumParts % i) != 0) {
459 newNumParts = ((newNumParts / i) + 1) * i;
460 } // if
461 SetGPTSize(newNumParts);
462
463 // Takes notes on existing partitions: Create an initial assignment as
464 // primary or logical, set default MBR types, and then make it legal
465 // (drop partitions as required to fit in the MBR and as logicals).
srs56940283dae2010-04-28 16:44:34 -0400466 allOK = (notes.PassPartitions(partitions, this, numParts, blockSize) == (int) numParts);
srs569455d92612010-03-07 22:16:07 -0500467 for (i = 0; i < countedParts; i++)
468 notes.SetMbrHexType(i, partitions[i].GetHexType() / 255);
469 notes.MakeItLegal();
470
471 while (allOK && changesWanted) {
472 notes.ShowSummary();
473 cout << "\n";
474 partNum = GetNumber(-1, countedParts, -2,
475 "Type partition to change, 0 to accept, -1 to abort: ");
476 switch (partNum) {
477 case -1:
478 allOK = 0;
479 break;
480 case 0:
481 changesWanted = 0;
482 break;
483 default:
484 allOK = notes.MakeChange(partNum - 1);
485 break;
486 } // switch
487 } // while
488
489 i = 0;
490 if (allOK)
491 for (i = 0; i < countedParts; i++) {
492 switch (notes.GetType(i)) {
493 case PRIMARY:
494 numPrimary++;
495 break;
496 case LOGICAL:
497 numLogical++;
498 break;
499 } // switch
500 if (notes.GetActiveStatus(i))
501 protectiveMBR.SetPartBootable(i);
502 } // for
503
504 if (numPrimary > 4) {
505 cerr << "Warning! More than four primary partitions in "
506 << "GPTDataTextUI::AssignPrimaryOrLogical()!\n";
507 allOK = 0;
508 } // if
509 return (allOK * (numPrimary + numLogical));
510} // GPTDataTextUI::AssignPrimaryOrLogical()
511
512// Convert the GPT to MBR form, storing partitions in the protectiveMBR
513// variable. This function is necessarily limited; it may not be able to
514// convert all partitions, depending on the disk size and available space
515// before each partition (one free sector is required to create a logical
516// partition, which are necessary to convert more than four partitions).
517// Returns the number of converted partitions; if this value
srs5694fad06422010-02-19 17:19:17 -0500518// is over 0, the calling function should call DestroyGPT() to destroy
srs569455d92612010-03-07 22:16:07 -0500519// the GPT data, call SaveMBR() to save the MBR, and then exit.
srs5694fad06422010-02-19 17:19:17 -0500520int GPTDataTextUI::XFormToMBR(void) {
srs56940283dae2010-04-28 16:44:34 -0400521 int numToConvert, numReallyConverted = 0;
srs569455d92612010-03-07 22:16:07 -0500522 int origNumParts;
523 PartNotes notes;
524 GPTPart *tempGptParts;
525 uint32_t i;
srs5694fad06422010-02-19 17:19:17 -0500526
srs569455d92612010-03-07 22:16:07 -0500527 // Back up partition array, since we'll be sorting it and we want to
528 // be able to restore it in case the user aborts....
srs56940283dae2010-04-28 16:44:34 -0400529 origNumParts = numParts;
530 tempGptParts = new GPTPart[numParts];
531 for (i = 0; i < numParts; i++)
srs569455d92612010-03-07 22:16:07 -0500532 tempGptParts[i] = partitions[i];
533
srs569455d92612010-03-07 22:16:07 -0500534 numToConvert = AssignPrimaryOrLogical(notes);
srs5694fad06422010-02-19 17:19:17 -0500535
srs569455d92612010-03-07 22:16:07 -0500536 if (numToConvert > 0) {
537 numReallyConverted = PartsToMBR(notes);
538 if (numReallyConverted != numToConvert) {
539 cerr << "Error converting partitions to MBR; tried to convert "
540 << numToConvert << " partitions,\nbut converted " << numReallyConverted
541 << ". Aborting operation!\n";
542 numReallyConverted = 0;
543 protectiveMBR.MakeProtectiveMBR();
544 } // if/else
545 } // if
srs5694fad06422010-02-19 17:19:17 -0500546
srs569455d92612010-03-07 22:16:07 -0500547 // A problem or the user aborted; restore backup of unsorted and
548 // original-sized partition table and delete the sorted and
549 // resized one; otherwise free the backup table's memory....
550 if (numReallyConverted == 0) {
551 delete[] partitions;
552 partitions = tempGptParts;
553 SetGPTSize(origNumParts);
srs5694fad06422010-02-19 17:19:17 -0500554 } else {
srs569455d92612010-03-07 22:16:07 -0500555 delete[] tempGptParts;
556 } // if
557 return numReallyConverted;
srs5694fad06422010-02-19 17:19:17 -0500558} // GPTDataTextUI::XFormToMBR()
559
560/*********************************************************************
561 * *
562 * The following doesn't really belong in the class, since it's MBR- *
563 * specific, but it's also user I/O-related, so I want to keep it in *
564 * this file.... *
565 * *
566 *********************************************************************/
567
568// Get an MBR type code from the user and return it
569int GetMBRTypeCode(int defType) {
570 char line[255];
571 char* junk;
572 int typeCode;
573
574 cout.setf(ios::uppercase);
575 cout.fill('0');
576 do {
577 cout << "Enter an MBR hex code (default " << hex;
578 cout.width(2);
579 cout << defType << "): " << dec;
580 junk = fgets(line, 255, stdin);
581 if (line[0] == '\n')
582 typeCode = defType;
583 else
584 sscanf(line, "%x", &typeCode);
585 } while ((typeCode <= 0) || (typeCode > 255));
586 cout.fill(' ');
587 return typeCode;
srs56941c6f8b02010-02-21 11:09:20 -0500588} // GetMBRTypeCode