blob: 83cb6631bfa6e656dbc20efcbfa85272abe52699 [file] [log] [blame]
srs56941e093722010-01-05 00:14:19 -05001// sgdisk.cc
srs569473ba4792010-01-12 18:18:17 -05002// Command-line-based version of gdisk. This program is named after sfdisk,
3// and it can serve a similar role (easily scripted, etc.), but it's used
4// strictly via command-line arguments, and it doesn't bear much resemblance
5// to sfdisk in actual use.
srs56941e093722010-01-05 00:14:19 -05006//
srs569473ba4792010-01-12 18:18:17 -05007// by Rod Smith, project began February 2009; sgdisk begun January 2010.
srs56941e093722010-01-05 00:14:19 -05008
srs569464cbd172011-03-01 22:03:54 -05009/* This program is copyright (c) 2009-2011 by Roderick W. Smith. It is distributed
srs56941e093722010-01-05 00:14:19 -050010 under the terms of the GNU GPL version 2, as detailed in the COPYING file. */
11
srs56941e093722010-01-05 00:14:19 -050012#include <stdio.h>
srs569473ba4792010-01-12 18:18:17 -050013#include <popt.h>
14#include <errno.h>
srs5694df9d3632011-01-08 18:33:24 -050015#include <stdint.h>
srs56949a46b042011-03-15 00:34:10 -040016#include <string.h>
srs5694df9d3632011-01-08 18:33:24 -050017#include <string>
srs5694fed16d02010-01-27 23:03:40 -050018#include <iostream>
srs569455d92612010-03-07 22:16:07 -050019#include <sstream>
srs56941e093722010-01-05 00:14:19 -050020#include "mbr.h"
21#include "gpt.h"
22#include "support.h"
srs569473ba4792010-01-12 18:18:17 -050023#include "parttypes.h"
srs56949ddc14b2010-08-22 22:44:42 -040024#include "attributes.h"
srs569473ba4792010-01-12 18:18:17 -050025
26using namespace std;
srs56941e093722010-01-05 00:14:19 -050027
28#define MAX_OPTIONS 50
29
srs56945a081752010-09-24 20:39:41 -040030int BuildMBR(GPTData& theGPT, char* argument, int isHybrid);
srs569408bb0da2010-02-19 17:19:55 -050031int CountColons(char* argument);
srs56941e093722010-01-05 00:14:19 -050032
srs56945a608532011-03-17 13:53:01 -040033// Extract colon-separated fields from a string....
34uint64_t GetInt(const string & argument, int itemNum);
35string GetString(string argument, int itemNum);
36
37
srs569473ba4792010-01-12 18:18:17 -050038int main(int argc, char *argv[]) {
srs569464cbd172011-03-01 22:03:54 -050039 GPTData theGPT, secondDevice;
srs5694df9d3632011-01-08 18:33:24 -050040 uint32_t sSize;
41 uint64_t low, high;
srs5694e321d442010-01-29 17:44:04 -050042 int opt, numOptions = 0, saveData = 0, neverSaveData = 0;
srs56949ba54212010-05-18 23:24:02 -040043 int partNum = 0, deletePartNum = 0, infoPartNum = 0, bsdPartNum = 0, largestPartNum = 0;
44 int saveNonGPT = 1;
45 uint32_t gptPartNum = 0;
srs5694a8582cf2010-03-19 14:21:59 -040046 int alignment = DEFAULT_ALIGNMENT, retval = 0, pretend = 0;
srs569473ba4792010-01-12 18:18:17 -050047 uint32_t tableSize = 128;
48 uint64_t startSector, endSector;
srs56945a081752010-09-24 20:39:41 -040049 uint64_t temp; // temporary variable; free to use in any case
srs56949ddc14b2010-08-22 22:44:42 -040050 char *attributeOperation = NULL;
srs5694815fb652011-03-18 12:35:56 -040051 char *device;
srs569408bb0da2010-02-19 17:19:55 -050052 char *newPartInfo = NULL, *typeCode = NULL, *partName = NULL;
53 char *backupFile = NULL, *twoParts = NULL, *hybrids = NULL, *mbrParts;
srs5694f9312b02010-07-06 15:39:51 -040054 char *partGUID = NULL, *diskGUID = NULL, *outDevice = NULL;
srs5694327129e2010-09-22 01:07:31 -040055 string cmd, typeGUID;
srs56946699b012010-02-04 00:55:30 -050056 PartType typeHelper;
srs56941e093722010-01-05 00:14:19 -050057
srs569473ba4792010-01-12 18:18:17 -050058 poptContext poptCon;
59 struct poptOption theOptions[] =
60 {
srs56949ddc14b2010-08-22 22:44:42 -040061 {"attributes", 'A', POPT_ARG_STRING, &attributeOperation, 'A', "operate on partition attributes", "list|[partnum:show|or|nand|xor|=|set|clear|toggle|get[:bitnum|hexbitmask]]"},
srs569473ba4792010-01-12 18:18:17 -050062 {"set-alignment", 'a', POPT_ARG_INT, &alignment, 'a', "set sector alignment", "value"},
63 {"backup", 'b', POPT_ARG_STRING, &backupFile, 'b', "backup GPT to file", "file"},
64 {"change-name", 'c', POPT_ARG_STRING, &partName, 'c', "change partition's name", "partnum:name"},
srs56949ba54212010-05-18 23:24:02 -040065 {"recompute-chs", 'C', POPT_ARG_NONE, NULL, 'C', "recompute CHS values in protective/hybrid MBR", ""},
srs569473ba4792010-01-12 18:18:17 -050066 {"delete", 'd', POPT_ARG_INT, &deletePartNum, 'd', "delete a partition", "partnum"},
srs569455d92612010-03-07 22:16:07 -050067 {"display-alignment", 'D', POPT_ARG_NONE, NULL, 'D', "show number of sectors per allocation block", ""},
srs569473ba4792010-01-12 18:18:17 -050068 {"move-second-header", 'e', POPT_ARG_NONE, NULL, 'e', "move second header to end of disk", ""},
69 {"end-of-largest", 'E', POPT_ARG_NONE, NULL, 'E', "show end of largest free block", ""},
70 {"first-in-largest", 'f', POPT_ARG_NONE, NULL, 'f', "show start of the largest free block", ""},
srs56945a081752010-09-24 20:39:41 -040071 {"first-aligned-in-largest", 'F', POPT_ARG_NONE, NULL, 'F', "show start of the largest free block, aligned", ""},
srs569473ba4792010-01-12 18:18:17 -050072 {"mbrtogpt", 'g', POPT_ARG_NONE, NULL, 'g', "convert MBR to GPT", ""},
srs56949ba54212010-05-18 23:24:02 -040073 {"randomize-guids", 'G', POPT_ARG_NONE, NULL, 'G', "randomize disk and partition GUIDs", ""},
srs569408bb0da2010-02-19 17:19:55 -050074 {"hybrid", 'h', POPT_ARG_STRING, &hybrids, 'h', "create hybrid MBR", "partnum[:partnum...]"},
srs569473ba4792010-01-12 18:18:17 -050075 {"info", 'i', POPT_ARG_INT, &infoPartNum, 'i', "show detailed information on partition", "partnum"},
76 {"load-backup", 'l', POPT_ARG_STRING, &backupFile, 'l', "load GPT backup from file", "file"},
77 {"list-types", 'L', POPT_ARG_NONE, NULL, 'L', "list known partition types", ""},
srs569408bb0da2010-02-19 17:19:55 -050078 {"gpttombr", 'm', POPT_ARG_STRING, &mbrParts, 'm', "convert GPT to MBR", "partnum[:partnum...]"},
srs569473ba4792010-01-12 18:18:17 -050079 {"new", 'n', POPT_ARG_STRING, &newPartInfo, 'n', "create new partition", "partnum:start:end"},
srs56949ba54212010-05-18 23:24:02 -040080 {"largest-new", 'N', POPT_ARG_INT, &largestPartNum, 'N', "create largest possible new partition", "partnum"},
srs569473ba4792010-01-12 18:18:17 -050081 {"clear", 'o', POPT_ARG_NONE, NULL, 'o', "clear partition table", ""},
82 {"print", 'p', POPT_ARG_NONE, NULL, 'p', "print partition table", ""},
83 {"pretend", 'P', POPT_ARG_NONE, NULL, 'P', "make changes in memory, but don't write them", ""},
srs569408bb0da2010-02-19 17:19:55 -050084 {"transpose", 'r', POPT_ARG_STRING, &twoParts, 'r', "transpose two partitions", "partnum:partnum"},
srs5694f9312b02010-07-06 15:39:51 -040085 {"replicate", 'R', POPT_ARG_STRING, &outDevice, 'R', "replicate partition table", "device_filename"},
srs569473ba4792010-01-12 18:18:17 -050086 {"sort", 's', POPT_ARG_NONE, NULL, 's', "sort partition table entries", ""},
87 {"resize-table", 'S', POPT_ARG_INT, &tableSize, 'S', "resize partition table", "numparts"},
srs5694327129e2010-09-22 01:07:31 -040088 {"typecode", 't', POPT_ARG_STRING, &typeCode, 't', "change partition type code", "partnum:{hexcode|GUID}"},
srs569473ba4792010-01-12 18:18:17 -050089 {"transform-bsd", 'T', POPT_ARG_INT, &bsdPartNum, 'T', "transform BSD disklabel partition to GPT", "partnum"},
srs56949ba54212010-05-18 23:24:02 -040090 {"partition-guid", 'u', POPT_ARG_STRING, &partGUID, 'u', "set partition GUID", "partnum:guid"},
91 {"disk-guid", 'U', POPT_ARG_STRING, &diskGUID, 'U', "set disk GUID", "guid"},
srs569473ba4792010-01-12 18:18:17 -050092 {"verify", 'v', POPT_ARG_NONE, NULL, 'v', "check partition table integrity", ""},
93 {"version", 'V', POPT_ARG_NONE, NULL, 'V', "display version information", ""},
srs569408bb0da2010-02-19 17:19:55 -050094 {"zap", 'z', POPT_ARG_NONE, NULL, 'z', "zap (destroy) GPT (but not MBR) data structures", ""},
95 {"zap-all", 'Z', POPT_ARG_NONE, NULL, 'Z', "zap (destroy) GPT and MBR data structures", ""},
srs569473ba4792010-01-12 18:18:17 -050096 POPT_AUTOHELP { NULL, 0, 0, NULL, 0 }
97 };
98
99 // Create popt context...
100 poptCon = poptGetContext(NULL, argc, (const char**) argv, theOptions, 0);
101
102 poptSetOtherOptionHelp(poptCon, " [OPTION...] <device>");
103
104 if (argc < 2) {
105 poptPrintUsage(poptCon, stderr, 0);
106 exit(1);
107 }
108
109 // Do one loop through the options to find the device filename and deal
110 // with options that don't require a device filename....
111 while ((opt = poptGetNextOpt(poptCon)) > 0) {
112 switch (opt) {
srs56949ddc14b2010-08-22 22:44:42 -0400113 case 'A':
114 cmd = GetString(attributeOperation, 1);
115 if (cmd == "list")
116 Attributes::ListAttributes();
117 break;
srs569473ba4792010-01-12 18:18:17 -0500118 case 'L':
srs56946699b012010-02-04 00:55:30 -0500119 typeHelper.ShowAllTypes();
srs56941e093722010-01-05 00:14:19 -0500120 break;
srs569473ba4792010-01-12 18:18:17 -0500121 case 'P':
122 pretend = 1;
srs56941e093722010-01-05 00:14:19 -0500123 break;
srs569473ba4792010-01-12 18:18:17 -0500124 case 'V':
srs5694fed16d02010-01-27 23:03:40 -0500125 cout << "GPT fdisk (sgdisk) version " << GPTFDISK_VERSION << "\n\n";
srs56941e093722010-01-05 00:14:19 -0500126 break;
127 default:
srs56941e093722010-01-05 00:14:19 -0500128 break;
129 } // switch
srs569473ba4792010-01-12 18:18:17 -0500130 numOptions++;
131 } // while
srs56941e093722010-01-05 00:14:19 -0500132
srs569473ba4792010-01-12 18:18:17 -0500133 // Assume first non-option argument is the device filename....
134 device = (char*) poptGetArg(poptCon);
135 poptResetContext(poptCon);
srs56941e093722010-01-05 00:14:19 -0500136
srs569473ba4792010-01-12 18:18:17 -0500137 if (device != NULL) {
138 theGPT.JustLooking(); // reset as necessary
139 theGPT.BeQuiet(); // Tell called functions to be less verbose & interactive
srs5694fed16d02010-01-27 23:03:40 -0500140 if (theGPT.LoadPartitions((string) device)) {
srs569473ba4792010-01-12 18:18:17 -0500141 if ((theGPT.WhichWasUsed() == use_mbr) || (theGPT.WhichWasUsed() == use_bsd))
142 saveNonGPT = 0; // flag so we don't overwrite unless directed to do so
srs5694df9d3632011-01-08 18:33:24 -0500143 sSize = theGPT.GetBlockSize();
srs569473ba4792010-01-12 18:18:17 -0500144 while ((opt = poptGetNextOpt(poptCon)) > 0) {
145 switch (opt) {
srs56949ddc14b2010-08-22 22:44:42 -0400146 case 'A': {
147 if (cmd != "list") {
148 partNum = (int) GetInt(attributeOperation, 1) - 1;
srs56940873e9d2010-10-07 13:00:45 -0400149 if ((partNum >= 0) && (partNum < (int) theGPT.GetNumParts())) {
150 switch (theGPT.ManageAttributes(partNum, GetString(attributeOperation, 2),
151 GetString(attributeOperation, 3))) {
152 case -1:
153 saveData = 0;
154 neverSaveData = 1;
155 break;
156 case 1:
157 theGPT.JustLooking(0);
158 saveData = 1;
159 break;
160 default:
161 break;
162 } // switch
163 } else {
164 cerr << "Error: Invalid partition number " << partNum + 1 << "\n";
165 saveData = 0;
166 neverSaveData = 1;
167 } // if/else reasonable partition #
168 } // if (cmd != "list")
srs56949ddc14b2010-08-22 22:44:42 -0400169 break;
170 } // case 'A':
srs569473ba4792010-01-12 18:18:17 -0500171 case 'a':
172 theGPT.SetAlignment(alignment);
173 break;
174 case 'b':
175 theGPT.SaveGPTBackup(backupFile);
176 free(backupFile);
177 break;
178 case 'c':
179 theGPT.JustLooking(0);
180 partNum = (int) GetInt(partName, 1) - 1;
srs56945a608532011-03-17 13:53:01 -0400181 if (theGPT.SetName(partNum, (UnicodeString) GetString(partName, 2).c_str())) {
srs569473ba4792010-01-12 18:18:17 -0500182 saveData = 1;
183 } else {
srs56940283dae2010-04-28 16:44:34 -0400184 cerr << "Unable to set partition " << partNum + 1
srs5694fed16d02010-01-27 23:03:40 -0500185 << "'s name to '" << GetString(partName, 2) << "'!\n";
srs569473ba4792010-01-12 18:18:17 -0500186 neverSaveData = 1;
187 } // if/else
188 free(partName);
189 break;
srs5694f9312b02010-07-06 15:39:51 -0400190 case 'C':
191 theGPT.JustLooking(0);
192 theGPT.RecomputeCHS();
193 saveData = 1;
194 break;
srs569473ba4792010-01-12 18:18:17 -0500195 case 'd':
196 theGPT.JustLooking(0);
197 if (theGPT.DeletePartition(deletePartNum - 1) == 0) {
srs5694fed16d02010-01-27 23:03:40 -0500198 cerr << "Error " << errno << " deleting partition!\n";
srs569473ba4792010-01-12 18:18:17 -0500199 neverSaveData = 1;
200 } else saveData = 1;
201 break;
srs569455d92612010-03-07 22:16:07 -0500202 case 'D':
srs56948a4ddfc2010-03-21 19:05:49 -0400203 cout << theGPT.GetAlignment() << "\n";
srs569455d92612010-03-07 22:16:07 -0500204 break;
srs569473ba4792010-01-12 18:18:17 -0500205 case 'e':
206 theGPT.JustLooking(0);
207 theGPT.MoveSecondHeaderToEnd();
208 saveData = 1;
209 break;
210 case 'E':
srs5694cb76c672010-02-11 22:22:22 -0500211 cout << theGPT.FindLastInFree(theGPT.FindFirstInLargest()) << "\n";
srs569473ba4792010-01-12 18:18:17 -0500212 break;
213 case 'f':
srs5694fed16d02010-01-27 23:03:40 -0500214 cout << theGPT.FindFirstInLargest() << "\n";
srs569473ba4792010-01-12 18:18:17 -0500215 break;
srs56945a081752010-09-24 20:39:41 -0400216 case 'F':
217 temp = theGPT.FindFirstInLargest();
218 theGPT.Align(&temp);
219 cout << temp << "\n";
220 break;
srs569473ba4792010-01-12 18:18:17 -0500221 case 'g':
222 theGPT.JustLooking(0);
223 saveData = 1;
224 saveNonGPT = 1;
225 break;
srs56949ba54212010-05-18 23:24:02 -0400226 case 'G':
227 theGPT.JustLooking(0);
228 saveData = 1;
229 theGPT.RandomizeGUIDs();
230 break;
srs569408bb0da2010-02-19 17:19:55 -0500231 case 'h':
232 theGPT.JustLooking(0);
srs56945a081752010-09-24 20:39:41 -0400233 if (BuildMBR(theGPT, hybrids, 1) == 1)
srs569408bb0da2010-02-19 17:19:55 -0500234 saveData = 1;
235 break;
srs569473ba4792010-01-12 18:18:17 -0500236 case 'i':
237 theGPT.ShowPartDetails(infoPartNum - 1);
238 break;
239 case 'l':
srs569464cbd172011-03-01 22:03:54 -0500240 if (theGPT.LoadGPTBackup((string) backupFile) == 1) {
241 theGPT.JustLooking(0);
srs569473ba4792010-01-12 18:18:17 -0500242 saveData = 1;
srs569464cbd172011-03-01 22:03:54 -0500243 } else {
srs569473ba4792010-01-12 18:18:17 -0500244 saveData = 0;
245 neverSaveData = 1;
srs5694fed16d02010-01-27 23:03:40 -0500246 cerr << "Error loading backup file!\n";
srs569473ba4792010-01-12 18:18:17 -0500247 } // else
248 free(backupFile);
249 break;
250 case 'L':
251 break;
srs569408bb0da2010-02-19 17:19:55 -0500252 case 'm':
253 theGPT.JustLooking(0);
srs56945a081752010-09-24 20:39:41 -0400254 if (BuildMBR(theGPT, mbrParts, 0) == 1) {
srs569408bb0da2010-02-19 17:19:55 -0500255 if (!pretend) {
srs5694bf8950c2011-03-12 01:23:12 -0500256 if (theGPT.SaveMBR()) {
srs569408bb0da2010-02-19 17:19:55 -0500257 theGPT.DestroyGPT();
srs5694bf8950c2011-03-12 01:23:12 -0500258 } else
srs569408bb0da2010-02-19 17:19:55 -0500259 cerr << "Problem saving MBR!\n";
260 } // if
261 saveNonGPT = 0;
srs5694bf8950c2011-03-12 01:23:12 -0500262 pretend = 1; // Not really, but works around problem if -g is used with this...
srs569408bb0da2010-02-19 17:19:55 -0500263 saveData = 0;
264 } // if
265 break;
srs569473ba4792010-01-12 18:18:17 -0500266 case 'n':
267 theGPT.JustLooking(0);
268 partNum = (int) GetInt(newPartInfo, 1) - 1;
srs5694df9d3632011-01-08 18:33:24 -0500269 if (partNum < 0)
270 partNum = theGPT.FindFirstFreePart();
271 low = theGPT.FindFirstInLargest();
272 high = theGPT.FindLastInFree(low);
srs569401f7f082011-03-15 23:53:31 -0400273 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low);
274 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, high);
srs569473ba4792010-01-12 18:18:17 -0500275 if (theGPT.CreatePartition(partNum, startSector, endSector)) {
276 saveData = 1;
277 } else {
srs5694df9d3632011-01-08 18:33:24 -0500278 cerr << "Could not create partition " << partNum + 1 << " from "
srs5694fed16d02010-01-27 23:03:40 -0500279 << startSector << " to " << endSector << "\n";
srs569473ba4792010-01-12 18:18:17 -0500280 neverSaveData = 1;
281 } // if/else
282 free(newPartInfo);
283 break;
srs56949ba54212010-05-18 23:24:02 -0400284 case 'N':
285 theGPT.JustLooking(0);
286 startSector = theGPT.FindFirstInLargest();
287 endSector = theGPT.FindLastInFree(startSector);
srs5694df9d3632011-01-08 18:33:24 -0500288 if (largestPartNum < 0)
289 largestPartNum = theGPT.FindFirstFreePart();
srs56949ba54212010-05-18 23:24:02 -0400290 if (theGPT.CreatePartition(largestPartNum - 1, startSector, endSector)) {
291 saveData = 1;
292 } else {
293 cerr << "Could not create partition " << largestPartNum << " from "
294 << startSector << " to " << endSector << "\n";
295 neverSaveData = 1;
296 } // if/else
297 break;
srs569473ba4792010-01-12 18:18:17 -0500298 case 'o':
299 theGPT.JustLooking(0);
300 theGPT.ClearGPTData();
301 saveData = 1;
302 break;
303 case 'p':
304 theGPT.DisplayGPTData();
305 break;
306 case 'P':
307 pretend = 1;
308 break;
srs569408bb0da2010-02-19 17:19:55 -0500309 case 'r':
310 theGPT.JustLooking(0);
311 uint64_t p1, p2;
312 p1 = GetInt(twoParts, 1) - 1;
313 p2 = GetInt(twoParts, 2) - 1;
314 if (theGPT.SwapPartitions((uint32_t) p1, (uint32_t) p2) == 0) {
315 neverSaveData = 1;
316 cerr << "Cannot swap partitions " << p1 + 1 << " and " << p2 + 1 << "\n";
317 } else saveData = 1;
318 break;
srs56949ba54212010-05-18 23:24:02 -0400319 case 'R':
srs569464cbd172011-03-01 22:03:54 -0500320 secondDevice = theGPT;
srs5694bf8950c2011-03-12 01:23:12 -0500321 secondDevice.SetDisk(outDevice);
srs569464cbd172011-03-01 22:03:54 -0500322 secondDevice.JustLooking(0);
srs569464cbd172011-03-01 22:03:54 -0500323 secondDevice.SaveGPTData(1);
srs56949ba54212010-05-18 23:24:02 -0400324 break;
srs569473ba4792010-01-12 18:18:17 -0500325 case 's':
326 theGPT.JustLooking(0);
327 theGPT.SortGPT();
328 saveData = 1;
329 break;
330 case 'S':
331 theGPT.JustLooking(0);
332 if (theGPT.SetGPTSize(tableSize) == 0)
333 neverSaveData = 1;
334 else
335 saveData = 1;
336 break;
337 case 't':
338 theGPT.JustLooking(0);
339 partNum = (int) GetInt(typeCode, 1) - 1;
srs569482f3f0b2010-09-22 10:50:24 -0400340 typeHelper = GetString(typeCode, 2);
341 if ((typeHelper != (GUIDData) "00000000-0000-0000-0000-000000000000") &&
342 (theGPT.ChangePartType(partNum, typeHelper))) {
srs569473ba4792010-01-12 18:18:17 -0500343 saveData = 1;
344 } else {
srs5694fed16d02010-01-27 23:03:40 -0500345 cerr << "Could not change partition " << partNum + 1
srs5694327129e2010-09-22 01:07:31 -0400346 << "'s type code to " << GetString(typeCode, 2) << "!\n";
srs569473ba4792010-01-12 18:18:17 -0500347 neverSaveData = 1;
348 } // if/else
349 free(typeCode);
350 break;
351 case 'T':
352 theGPT.JustLooking(0);
srs569408bb0da2010-02-19 17:19:55 -0500353 theGPT.XFormDisklabel(bsdPartNum - 1);
srs569473ba4792010-01-12 18:18:17 -0500354 saveData = 1;
355 break;
srs56949ba54212010-05-18 23:24:02 -0400356 case 'u':
357 theGPT.JustLooking(0);
358 saveData = 1;
359 gptPartNum = (int) GetInt(partGUID, 1) - 1;
360 theGPT.SetPartitionGUID(gptPartNum, GetString(partGUID, 2).c_str());
361 break;
362 case 'U':
363 theGPT.JustLooking(0);
364 saveData = 1;
365 theGPT.SetDiskGUID(diskGUID);
366 break;
srs569473ba4792010-01-12 18:18:17 -0500367 case 'v':
368 theGPT.Verify();
369 break;
370 case 'z':
srs569408bb0da2010-02-19 17:19:55 -0500371 if (!pretend) {
372 theGPT.DestroyGPT();
373 } // if
srs569473ba4792010-01-12 18:18:17 -0500374 saveNonGPT = 0;
srs569408bb0da2010-02-19 17:19:55 -0500375 saveData = 0;
376 break;
377 case 'Z':
378 if (!pretend) {
379 theGPT.DestroyGPT();
380 theGPT.DestroyMBR();
381 } // if
382 saveNonGPT = 0;
383 saveData = 0;
srs569473ba4792010-01-12 18:18:17 -0500384 break;
385 default:
srs5694fed16d02010-01-27 23:03:40 -0500386 cerr << "Unknown option (-" << opt << ")!\n";
srs569473ba4792010-01-12 18:18:17 -0500387 break;
388 } // switch
389 } // while
srs5694bf8950c2011-03-12 01:23:12 -0500390 if ((saveData) && (!neverSaveData) && (saveNonGPT) && (!pretend)) {
srs569473ba4792010-01-12 18:18:17 -0500391 theGPT.SaveGPTData(1);
srs5694bf8950c2011-03-12 01:23:12 -0500392 }
srs569473ba4792010-01-12 18:18:17 -0500393 if (saveData && (!saveNonGPT)) {
srs5694fed16d02010-01-27 23:03:40 -0500394 cout << "Non-GPT disk; not saving changes. Use -g to override.\n";
srs569473ba4792010-01-12 18:18:17 -0500395 retval = 3;
396 } // if
397 if (neverSaveData) {
srs5694fed16d02010-01-27 23:03:40 -0500398 cerr << "Error encountered; not saving changes.\n";
srs569473ba4792010-01-12 18:18:17 -0500399 retval = 4;
400 } // if
401 } else { // if loaded OK
srs56949ddc14b2010-08-22 22:44:42 -0400402 poptResetContext(poptCon);
403 // Do a few types of operations even if there are problems....
404 while ((opt = poptGetNextOpt(poptCon)) > 0) {
405 switch (opt) {
406 case 'v':
srs5694327129e2010-09-22 01:07:31 -0400407 cout << "Verification may miss some problems or report too many!\n";
srs56949ddc14b2010-08-22 22:44:42 -0400408 theGPT.Verify();
409 break;
410 case 'z':
411 if (!pretend) {
412 theGPT.DestroyGPT();
413 } // if
414 saveNonGPT = 0;
415 saveData = 0;
416 break;
417 case 'Z':
418 if (!pretend) {
419 theGPT.DestroyGPT();
420 theGPT.DestroyMBR();
421 } // if
422 saveNonGPT = 0;
423 saveData = 0;
424 break;
425 } // switch
426 } // while
srs569473ba4792010-01-12 18:18:17 -0500427 retval = 2;
428 } // if/else loaded OK
429 } // if (device != NULL)
430 poptFreeContext(poptCon);
srs56941e093722010-01-05 00:14:19 -0500431
srs569473ba4792010-01-12 18:18:17 -0500432 return retval;
433} // main
srs56941e093722010-01-05 00:14:19 -0500434
srs569408bb0da2010-02-19 17:19:55 -0500435// Create a hybrid or regular MBR from GPT data structures
srs56945a081752010-09-24 20:39:41 -0400436int BuildMBR(GPTData & theGPT, char* argument, int isHybrid) {
srs5694bf8950c2011-03-12 01:23:12 -0500437 int numParts, allOK = 1, i, origPartNum;
srs5694bf8950c2011-03-12 01:23:12 -0500438 MBRPart newPart;
439 BasicMBRData newMBR;
srs569408bb0da2010-02-19 17:19:55 -0500440
srs56945a081752010-09-24 20:39:41 -0400441 if ((&theGPT != NULL) && (argument != NULL)) {
srs569408bb0da2010-02-19 17:19:55 -0500442 numParts = CountColons(argument) + 1;
443 if (numParts <= (4 - isHybrid)) {
srs5694bf8950c2011-03-12 01:23:12 -0500444 newMBR.SetDisk(theGPT.GetDisk());
srs569408bb0da2010-02-19 17:19:55 -0500445 for (i = 0; i < numParts; i++) {
srs5694bf8950c2011-03-12 01:23:12 -0500446 origPartNum = GetInt(argument, i + 1) - 1;
srs5694815fb652011-03-18 12:35:56 -0400447 if (theGPT.IsUsedPartNum(origPartNum)) {
448 newPart.SetInclusion(PRIMARY);
449 newPart.SetLocation(theGPT[origPartNum].GetFirstLBA(),
450 theGPT[origPartNum].GetLengthLBA());
451 newPart.SetStatus(0);
452 newPart.SetType((uint8_t)(theGPT[origPartNum].GetHexType() / 0x0100));
453 newMBR.AddPart(i + isHybrid, newPart);
454 } else {
455 cerr << "Partition " << origPartNum << " does not exist! Aborting operation!\n";
456 allOK = 0;
457 } // if/else
srs569408bb0da2010-02-19 17:19:55 -0500458 } // for
srs569455d92612010-03-07 22:16:07 -0500459 if (isHybrid) {
srs5694bf8950c2011-03-12 01:23:12 -0500460 newPart.SetInclusion(PRIMARY);
461 newPart.SetLocation(1, newMBR.FindLastInFree(1));
462 newPart.SetStatus(0);
463 newPart.SetType(0xEE);
464 newMBR.AddPart(0, newPart);
srs569455d92612010-03-07 22:16:07 -0500465 } // if
srs5694bf8950c2011-03-12 01:23:12 -0500466 theGPT.SetProtectiveMBR(newMBR);
srs569408bb0da2010-02-19 17:19:55 -0500467 } else allOK = 0;
468 } else allOK = 0;
469 if (!allOK)
470 cerr << "Problem creating MBR!\n";
471 return allOK;
472} // BuildMBR()
473
srs56949a46b042011-03-15 00:34:10 -0400474// Returns the number of colons in argument string, ignoring the
475// first character (thus, a leading colon is ignored, as GetString()
476// does).
srs569408bb0da2010-02-19 17:19:55 -0500477int CountColons(char* argument) {
srs56949a46b042011-03-15 00:34:10 -0400478 int num = 0;
srs569408bb0da2010-02-19 17:19:55 -0500479
srs56949a46b042011-03-15 00:34:10 -0400480 while ((argument[0] != '\0') && (argument = strchr(&argument[1], ':')))
481 num++;
482
srs569408bb0da2010-02-19 17:19:55 -0500483 return num;
484} // CountColons()
srs56945a608532011-03-17 13:53:01 -0400485
486// Extract integer data from argument string, which should be colon-delimited
487uint64_t GetInt(const string & argument, int itemNum) {
488 uint64_t retval;
489
490 istringstream inString(GetString(argument, itemNum));
491 inString >> retval;
492 return retval;
493} // GetInt()
494
495// Extract string data from argument string, which should be colon-delimited
496// If string begins with a colon, that colon is skipped in the counting. If an
497// invalid itemNum is specified, returns an empty string.
498string GetString(string argument, int itemNum) {
499 size_t startPos = 0, endPos = 0;
500 string retVal = "";
501 int foundLast = 0;
502 int numFound = 0;
503
504 if (argument[0] == ':')
505 argument.erase(0, 1);
506 while ((numFound < itemNum) && (!foundLast)) {
507 endPos = argument.find(':', startPos);
508 numFound++;
509 if (endPos == string::npos) {
510 foundLast = 1;
511 endPos = argument.length();
512 } else if (numFound < itemNum) {
513 startPos = endPos + 1;
514 } // if/elseif
515 } // while
516 if ((numFound == itemNum) && (numFound > 0))
517 retVal = argument.substr(startPos, endPos - startPos);
518
519 return retVal;
520} // GetString()