blob: 0b026726a4763fa4c09f7f050669fcdab56f8385 [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"
srs5694bf8950c2011-03-12 01:23:12 -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 {
srs5694bf8950c2011-03-12 01:23:12 -0500238 if (firstFreePart >= numParts)
239 cout << "No table partition entries left\n";
240 else
241 cout << "No free sectors available\n";
srs5694fad06422010-02-19 17:19:17 -0500242 } // if/else
243} // GPTDataTextUI::CreatePartition()
244
245// Interactively delete a partition (duh!)
246void GPTDataTextUI::DeletePartition(void) {
247 int partNum;
248 uint32_t low, high;
249 ostringstream prompt;
250
251 if (GetPartRange(&low, &high) > 0) {
252 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): ";
253 partNum = GetNumber(low + 1, high + 1, low, prompt.str());
254 GPTData::DeletePartition(partNum - 1);
255 } else {
256 cout << "No partitions\n";
257 } // if/else
258} // GPTDataTextUI::DeletePartition()
259
260// Prompt user for a partition number, then change its type code
261// using ChangeGPTType(struct GPTPartition*) function.
262void GPTDataTextUI::ChangePartType(void) {
263 int partNum;
264 uint32_t low, high;
srs569455d92612010-03-07 22:16:07 -0500265
srs5694fad06422010-02-19 17:19:17 -0500266 if (GetPartRange(&low, &high) > 0) {
267 partNum = GetPartNum();
268 partitions[partNum].ChangeType();
269 } else {
270 cout << "No partitions\n";
271 } // if/else
272} // GPTDataTextUI::ChangePartType()
273
srs5694815fb652011-03-18 12:35:56 -0400274// Prompt user for a partition number, then change its unique
275// GUID.
276void GPTDataTextUI::ChangeUniqueGuid(void) {
277 int partNum;
278 uint32_t low, high;
279 string guidStr;
280
281 if (GetPartRange(&low, &high) > 0) {
282 partNum = GetPartNum();
283 cout << "Enter the partition's new unique GUID ('R' to randomize): ";
284 guidStr = ReadString();
285 if ((guidStr.length() >= 32) || (guidStr[0] == 'R') || (guidStr[0] == 'r')) {
286 SetPartitionGUID(partNum, (GUIDData) guidStr);
287 cout << "New GUID is " << partitions[partNum].GetUniqueGUID() << "\n";
288 } else {
289 cout << "GUID is too short!\n";
290 } // if/else
291 } else
292 cout << "No partitions\n";
293} // GPTDataTextUI::ChangeUniqueGuid()
294
srs5694fad06422010-02-19 17:19:17 -0500295// Partition attributes seem to be rarely used, but I want a way to
296// adjust them for completeness....
297void GPTDataTextUI::SetAttributes(uint32_t partNum) {
srs56940873e9d2010-10-07 13:00:45 -0400298// Attributes theAttr;
srs569455d92612010-03-07 22:16:07 -0500299
srs56940873e9d2010-10-07 13:00:45 -0400300 partitions[partNum].SetAttributes();
301/* theAttr = partitions[partNum].GetAttributes();
302// theAttr.SetAttributes(partitions[partNum].GetAttributes());
srs5694fad06422010-02-19 17:19:17 -0500303 theAttr.ChangeAttributes();
srs56940873e9d2010-10-07 13:00:45 -0400304 partitions[partNum].SetAttributes(theAttr.GetAttributes()); */
srs5694fad06422010-02-19 17:19:17 -0500305} // GPTDataTextUI::SetAttributes()
306
307// Ask user for two partition numbers and swap them in the table. Note that
308// this just reorders table entries; it doesn't adjust partition layout on
309// the disk.
310// Returns 1 if successful, 0 if not. (If user enters identical numbers, it
311// counts as successful.)
312int GPTDataTextUI::SwapPartitions(void) {
313 int partNum1, partNum2, didIt = 0;
314 uint32_t low, high;
315 ostringstream prompt;
316 GPTPart temp;
317
318 if (GetPartRange(&low, &high) > 0) {
319 partNum1 = GetPartNum();
srs56940283dae2010-04-28 16:44:34 -0400320 if (high >= numParts - 1)
srs5694fad06422010-02-19 17:19:17 -0500321 high = 0;
srs56940283dae2010-04-28 16:44:34 -0400322 prompt << "New partition number (1-" << numParts
srs569455d92612010-03-07 22:16:07 -0500323 << ", default " << high + 2 << "): ";
srs56940283dae2010-04-28 16:44:34 -0400324 partNum2 = GetNumber(1, numParts, high + 2, prompt.str()) - 1;
srs5694fad06422010-02-19 17:19:17 -0500325 didIt = GPTData::SwapPartitions(partNum1, partNum2);
326 } else {
327 cout << "No partitions\n";
328 } // if/else
329 return didIt;
330} // GPTDataTextUI::SwapPartitionNumbers()
331
332// This function destroys the on-disk GPT structures. Returns 1 if the user
333// confirms destruction, 0 if the user aborts or if there's a disk error.
334int GPTDataTextUI::DestroyGPTwPrompt(void) {
335 int allOK = 1;
336
337 if ((apmFound) || (bsdFound)) {
338 cout << "WARNING: APM or BSD disklabel structures detected! This operation could\n"
339 << "damage any APM or BSD partitions on this disk!\n";
340 } // if APM or BSD
341 cout << "\a\aAbout to wipe out GPT on " << device << ". Proceed? ";
342 if (GetYN() == 'Y') {
343 if (DestroyGPT()) {
344 // Note on below: Touch the MBR only if the user wants it completely
345 // blanked out. Version 0.4.2 deleted the 0xEE partition and re-wrote
346 // the MBR, but this could wipe out a valid MBR that the program
347 // had subsequently discarded (say, if it conflicted with older GPT
348 // structures).
349 cout << "Blank out MBR? ";
350 if (GetYN() == 'Y') {
351 DestroyMBR();
352 } else {
353 cout << "MBR is unchanged. You may need to delete an EFI GPT (0xEE) partition\n"
354 << "with fdisk or another tool.\n";
355 } // if/else
356 } else allOK = 0; // if GPT structures destroyed
357 } else allOK = 0; // if user confirms destruction
358 return (allOK);
359} // GPTDataTextUI::DestroyGPTwPrompt()
360
361// Get partition number from user and then call ShowPartDetails(partNum)
362// to show its detailed information
363void GPTDataTextUI::ShowDetails(void) {
364 int partNum;
365 uint32_t low, high;
srs569455d92612010-03-07 22:16:07 -0500366
srs5694fad06422010-02-19 17:19:17 -0500367 if (GetPartRange(&low, &high) > 0) {
368 partNum = GetPartNum();
369 ShowPartDetails(partNum);
370 } else {
371 cout << "No partitions\n";
372 } // if/else
373} // GPTDataTextUI::ShowDetails()
374
375// Create a hybrid MBR -- an ugly, funky thing that helps GPT work with
376// OSes that don't understand GPT.
377void GPTDataTextUI::MakeHybrid(void) {
378 uint32_t partNums[3];
srs56945a608532011-03-17 13:53:01 -0400379 string line;
srs5694bf8950c2011-03-12 01:23:12 -0500380 int numPartsToCvt, i, j, mbrNum = 0;
srs569455d92612010-03-07 22:16:07 -0500381 unsigned int hexCode = 0;
srs5694bf8950c2011-03-12 01:23:12 -0500382 MBRPart hybridPart;
383 MBRData hybridMBR;
srs5694fad06422010-02-19 17:19:17 -0500384 char eeFirst = 'Y'; // Whether EFI GPT (0xEE) partition comes first in table
385
srs5694058d4a52010-10-12 12:42:47 -0400386 cout << "\nWARNING! Hybrid MBRs are flaky and dangerous! If you decide not to use one,\n"
387 << "just hit the Enter key at the below prompt and your MBR partition table will\n"
388 << "be untouched.\n\n\a";
srs5694fad06422010-02-19 17:19:17 -0500389
srs5694bf8950c2011-03-12 01:23:12 -0500390 hybridMBR.SetDisk(&myDisk);
srs5694fad06422010-02-19 17:19:17 -0500391 // Now get the numbers of up to three partitions to add to the
392 // hybrid MBR....
393 cout << "Type from one to three GPT partition numbers, separated by spaces, to be\n"
394 << "added to the hybrid MBR, in sequence: ";
srs56945a608532011-03-17 13:53:01 -0400395 line = ReadString();
396 numPartsToCvt = sscanf(line.c_str(), "%d %d %d", &partNums[0], &partNums[1], &partNums[2]);
srs5694fad06422010-02-19 17:19:17 -0500397
srs56940283dae2010-04-28 16:44:34 -0400398 if (numPartsToCvt > 0) {
srs5694fad06422010-02-19 17:19:17 -0500399 cout << "Place EFI GPT (0xEE) partition first in MBR (good for GRUB)? ";
400 eeFirst = GetYN();
401 } // if
402
srs56940283dae2010-04-28 16:44:34 -0400403 for (i = 0; i < numPartsToCvt; i++) {
srs5694bf8950c2011-03-12 01:23:12 -0500404 j = partNums[i] - 1;
srs5694058d4a52010-10-12 12:42:47 -0400405 if (partitions[j].IsUsed()) {
406 mbrNum = i + (eeFirst == 'Y');
407 cout << "\nCreating entry for GPT partition #" << j + 1
408 << " (MBR partition #" << mbrNum + 1 << ")\n";
srs5694bf8950c2011-03-12 01:23:12 -0500409 hybridPart.SetType(GetMBRTypeCode(partitions[j].GetHexType() / 256));
410 hybridPart.SetLocation(partitions[j].GetFirstLBA(), partitions[j].GetLengthLBA());
411 hybridPart.SetInclusion(PRIMARY);
srs5694058d4a52010-10-12 12:42:47 -0400412 cout << "Set the bootable flag? ";
413 if (GetYN() == 'Y')
srs5694bf8950c2011-03-12 01:23:12 -0500414 hybridPart.SetStatus(1);
srs5694058d4a52010-10-12 12:42:47 -0400415 else
srs5694bf8950c2011-03-12 01:23:12 -0500416 hybridPart.SetStatus(0);
417 hybridPart.SetInclusion(PRIMARY);
srs5694058d4a52010-10-12 12:42:47 -0400418 } else {
srs5694058d4a52010-10-12 12:42:47 -0400419 cerr << "\nGPT partition #" << j + 1 << " does not exist; skipping.\n";
420 } // if/else
srs5694bf8950c2011-03-12 01:23:12 -0500421 hybridMBR.AddPart(mbrNum, hybridPart);
srs5694fad06422010-02-19 17:19:17 -0500422 } // for
423
srs56940283dae2010-04-28 16:44:34 -0400424 if (numPartsToCvt > 0) { // User opted to create a hybrid MBR....
srs5694fad06422010-02-19 17:19:17 -0500425 // Create EFI protective partition that covers the start of the disk.
426 // If this location (covering the main GPT data structures) is omitted,
427 // Linux won't find any partitions on the disk.
srs5694bf8950c2011-03-12 01:23:12 -0500428 hybridPart.SetLocation(1, hybridMBR.FindLastInFree(1));
429 hybridPart.SetStatus(0);
430 hybridPart.SetType(0xEE);
431 hybridPart.SetInclusion(PRIMARY);
srs569455d92612010-03-07 22:16:07 -0500432 // newNote firstLBA and lastLBA are computed later...
433 if (eeFirst == 'Y') {
srs5694bf8950c2011-03-12 01:23:12 -0500434 hybridMBR.AddPart(0, hybridPart);
srs569455d92612010-03-07 22:16:07 -0500435 } else {
srs5694bf8950c2011-03-12 01:23:12 -0500436 hybridMBR.AddPart(3, hybridPart);
srs569455d92612010-03-07 22:16:07 -0500437 } // else
srs5694bf8950c2011-03-12 01:23:12 -0500438 hybridMBR.SetHybrid();
srs5694fad06422010-02-19 17:19:17 -0500439
440 // ... and for good measure, if there are any partition spaces left,
441 // optionally create another protective EFI partition to cover as much
442 // space as possible....
srs5694bf8950c2011-03-12 01:23:12 -0500443 if (hybridMBR.CountParts() < 4) { // unused entry....
srs569455d92612010-03-07 22:16:07 -0500444 cout << "\nUnused partition space(s) found. Use one to protect more partitions? ";
445 if (GetYN() == 'Y') {
srs56945a608532011-03-17 13:53:01 -0400446 cout << "Note: Default is 0xEE, but this may confuse Mac OS X.\n";
447 // Comment on above: Mac OS treats disks with more than one
448 // 0xEE MBR partition as MBR disks, not as GPT disks.
449 hexCode = GetMBRTypeCode(0xEE);
450 hybridMBR.MakeBiggestPart(3, hexCode);
srs569455d92612010-03-07 22:16:07 -0500451 } // if (GetYN() == 'Y')
452 } // if unused entry
srs5694bf8950c2011-03-12 01:23:12 -0500453 protectiveMBR = hybridMBR;
srs56940283dae2010-04-28 16:44:34 -0400454 } // if (numPartsToCvt > 0)
srs5694fad06422010-02-19 17:19:17 -0500455} // GPTDataTextUI::MakeHybrid()
456
srs569455d92612010-03-07 22:16:07 -0500457// Convert the GPT to MBR form, storing partitions in the protectiveMBR
458// variable. This function is necessarily limited; it may not be able to
459// convert all partitions, depending on the disk size and available space
460// before each partition (one free sector is required to create a logical
461// partition, which are necessary to convert more than four partitions).
462// Returns the number of converted partitions; if this value
srs5694fad06422010-02-19 17:19:17 -0500463// is over 0, the calling function should call DestroyGPT() to destroy
srs569455d92612010-03-07 22:16:07 -0500464// the GPT data, call SaveMBR() to save the MBR, and then exit.
srs5694fad06422010-02-19 17:19:17 -0500465int GPTDataTextUI::XFormToMBR(void) {
srs569455d92612010-03-07 22:16:07 -0500466 uint32_t i;
srs5694fad06422010-02-19 17:19:17 -0500467
srs5694bf8950c2011-03-12 01:23:12 -0500468 protectiveMBR.EmptyMBR();
469 for (i = 0; i < numParts; i++) {
470 if (partitions[i].IsUsed()) {
471 protectiveMBR.MakePart(i, partitions[i].GetFirstLBA(),
472 partitions[i].GetLengthLBA(),
473 partitions[i].GetHexType() / 0x0100, 0);
474 } // if
475 } // for
476 protectiveMBR.MakeItLegal();
477 return protectiveMBR.DoMenu();
srs5694fad06422010-02-19 17:19:17 -0500478} // GPTDataTextUI::XFormToMBR()
479
480/*********************************************************************
481 * *
482 * The following doesn't really belong in the class, since it's MBR- *
483 * specific, but it's also user I/O-related, so I want to keep it in *
484 * this file.... *
485 * *
486 *********************************************************************/
487
488// Get an MBR type code from the user and return it
489int GetMBRTypeCode(int defType) {
srs56945a608532011-03-17 13:53:01 -0400490 string line;
srs5694fad06422010-02-19 17:19:17 -0500491 int typeCode;
492
493 cout.setf(ios::uppercase);
494 cout.fill('0');
495 do {
496 cout << "Enter an MBR hex code (default " << hex;
497 cout.width(2);
498 cout << defType << "): " << dec;
srs56945a608532011-03-17 13:53:01 -0400499 line = ReadString();
500 if (line[0] == '\0')
srs5694fad06422010-02-19 17:19:17 -0500501 typeCode = defType;
502 else
srs56945a608532011-03-17 13:53:01 -0400503 typeCode = StrToHex(line, 0);
srs5694fad06422010-02-19 17:19:17 -0500504 } while ((typeCode <= 0) || (typeCode > 255));
505 cout.fill(' ');
506 return typeCode;
srs56941c6f8b02010-02-21 11:09:20 -0500507} // GetMBRTypeCode