blob: 0a311a6801c0efffaebc758e057aaa751939e374 [file] [log] [blame]
srs5694e7b4ff92009-08-18 13:16:10 -04001// support.cc
2// Non-class support functions for gdisk program.
3// Primarily by Rod Smith, February 2009, but with a few functions
4// copied from other sources (see attributions below).
5
srs5694221e0872009-08-29 15:00:31 -04006/* This program is copyright (c) 2009 by Roderick W. Smith. It is distributed
7 under the terms of the GNU GPL version 2, as detailed in the COPYING file. */
8
srs5694e7b4ff92009-08-18 13:16:10 -04009#define __STDC_LIMIT_MACROS
10#define __STDC_CONSTANT_MACROS
11
srs5694e7b4ff92009-08-18 13:16:10 -040012#include <stdio.h>
srs5694e7b4ff92009-08-18 13:16:10 -040013#include <stdint.h>
14#include <errno.h>
srs5694e4ac11e2009-08-31 10:13:04 -040015#include <fcntl.h>
srs5694fed16d02010-01-27 23:03:40 -050016#include <string.h>
srs5694e35eb1b2009-09-14 00:29:34 -040017#include <sys/stat.h>
srs5694fed16d02010-01-27 23:03:40 -050018#include <string>
19#include <iostream>
srs569408bb0da2010-02-19 17:19:55 -050020#include <sstream>
srs5694e7b4ff92009-08-18 13:16:10 -040021#include "support.h"
22
23#include <sys/types.h>
24
srs56945d58fe02010-01-03 20:57:08 -050025// As of 1/2010, BLKPBSZGET is very new, so I'm explicitly defining it if
26// it's not already defined. This should become unnecessary in the future.
27// Note that this is a Linux-only ioctl....
28#ifndef BLKPBSZGET
29#define BLKPBSZGET _IO(0x12,123)
30#endif
31
srs5694e7b4ff92009-08-18 13:16:10 -040032using namespace std;
33
srs56945a608532011-03-17 13:53:01 -040034// Reads a string from stdin, returning it as a C++-style string.
35// Note that the returned string will NOT include the carriage return
36// entered by the user.
37string ReadString(void) {
38 string inString;
39
40 getline(cin, inString);
srs56940541b562011-12-18 16:35:25 -050041 if (!cin)
42 cin.clear();
srs56945a608532011-03-17 13:53:01 -040043 return inString;
44} // ReadString()
srs5694bf8950c2011-03-12 01:23:12 -050045
srs5694e7b4ff92009-08-18 13:16:10 -040046// Get a numeric value from the user, between low and high (inclusive).
47// Keeps looping until the user enters a value within that range.
48// If user provides no input, def (default value) is returned.
49// (If def is outside of the low-high range, an explicit response
50// is required.)
srs5694fed16d02010-01-27 23:03:40 -050051int GetNumber(int low, int high, int def, const string & prompt) {
srs5694e7b4ff92009-08-18 13:16:10 -040052 int response, num;
53 char line[255];
54
55 if (low != high) { // bother only if low and high differ...
srs56940873e9d2010-10-07 13:00:45 -040056 do {
srs5694fed16d02010-01-27 23:03:40 -050057 cout << prompt;
58 cin.getline(line, 255);
srs5694e7b4ff92009-08-18 13:16:10 -040059 num = sscanf(line, "%d", &response);
60 if (num == 1) { // user provided a response
61 if ((response < low) || (response > high))
srs5694fed16d02010-01-27 23:03:40 -050062 cout << "Value out of range\n";
srs5694e7b4ff92009-08-18 13:16:10 -040063 } else { // user hit enter; return default
64 response = def;
65 } // if/else
srs56940873e9d2010-10-07 13:00:45 -040066 } while ((response < low) || (response > high));
srs5694e7b4ff92009-08-18 13:16:10 -040067 } else { // low == high, so return this value
srs5694fed16d02010-01-27 23:03:40 -050068 cout << "Using " << low << "\n";
srs5694e7b4ff92009-08-18 13:16:10 -040069 response = low;
70 } // else
71 return (response);
72} // GetNumber()
73
74// Gets a Y/N response (and converts lowercase to uppercase)
75char GetYN(void) {
srs56940873e9d2010-10-07 13:00:45 -040076 char response;
srs56945a608532011-03-17 13:53:01 -040077 string line;
srs5694e7b4ff92009-08-18 13:16:10 -040078
srs56940873e9d2010-10-07 13:00:45 -040079 do {
srs5694fed16d02010-01-27 23:03:40 -050080 cout << "(Y/N): ";
srs56945a608532011-03-17 13:53:01 -040081 line = ReadString();
srs569401f7f082011-03-15 23:53:31 -040082 response = toupper(line[0]);
srs56940873e9d2010-10-07 13:00:45 -040083 } while ((response != 'Y') && (response != 'N'));
srs5694e7b4ff92009-08-18 13:16:10 -040084 return response;
85} // GetYN(void)
86
srs5694e4ac11e2009-08-31 10:13:04 -040087// Obtains a sector number, between low and high, from the
srs5694e7b4ff92009-08-18 13:16:10 -040088// user, accepting values prefixed by "+" to add sectors to low,
srs56940873e9d2010-10-07 13:00:45 -040089// or the same with "K", "M", "G", "T", or "P" as suffixes to add
90// kilobytes, megabytes, gigabytes, terabytes, or petabytes,
91// respectively. If a "-" prefix is used, use the high value minus
92// the user-specified number of sectors (or KiB, MiB, etc.). Use the
93// def value as the default if the user just hits Enter. The sSize is
94// the sector size of the device.
srs5694df9d3632011-01-08 18:33:24 -050095uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize,
96 const string & prompt) {
97 uint64_t response;
98 char line[255];
srs56940873e9d2010-10-07 13:00:45 -040099
100 do {
srs5694fed16d02010-01-27 23:03:40 -0500101 cout << prompt;
102 cin.getline(line, 255);
srs569401f7f082011-03-15 23:53:31 -0400103 response = IeeeToInt(line, sSize, low, high, def);
srs56940873e9d2010-10-07 13:00:45 -0400104 } while ((response < low) || (response > high));
srs569455d92612010-03-07 22:16:07 -0500105 return response;
srs5694e4ac11e2009-08-31 10:13:04 -0400106} // GetSectorNum()
srs5694e7b4ff92009-08-18 13:16:10 -0400107
srs569401f7f082011-03-15 23:53:31 -0400108// Convert an IEEE-1541-2002 value (K, M, G, T, P, or E) to its equivalent in
srs5694df9d3632011-01-08 18:33:24 -0500109// number of sectors. If no units are appended, interprets as the number
110// of sectors; otherwise, interprets as number of specified units and
111// converts to sectors. For instance, with 512-byte sectors, "1K" converts
112// to 2. If value includes a "+", adds low and subtracts 1; if SIValue
srs569401f7f082011-03-15 23:53:31 -0400113// inclues a "-", subtracts from high. If IeeeValue is empty, returns def.
srs56946aae2a92011-06-10 01:16:51 -0400114// Returns final sector value. In case inValue is invalid, returns 0 (a
srs5694a17fe692011-09-10 20:30:20 -0400115// sector value that's always in use on GPT and therefore invalid); and if
srs56946aae2a92011-06-10 01:16:51 -0400116// inValue works out to something outside the range low-high, returns the
117// computed value; the calling function is responsible for checking the
118// validity of this value.
119// NOTE: There's a difference in how GCC and VC++ treat oversized values
120// (say, "999999999999999999999") read via the ">>" operator; GCC turns
121// them into the maximum value for the type, whereas VC++ turns them into
122// 0 values. The result is that IeeeToInt() returns UINT64_MAX when
123// compiled with GCC (and so the value is rejected), whereas when VC++
124// is used, the default value is returned.
srs569401f7f082011-03-15 23:53:31 -0400125uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) {
126 uint64_t response = def, bytesPerUnit = 1, mult = 1, divide = 1;
127 size_t foundAt = 0;
128 char suffix, plusFlag = ' ';
129 string suffixes = "KMGTPE";
srs56946aae2a92011-06-10 01:16:51 -0400130 int badInput = 0; // flag bad input; once this goes to 1, other values are irrelevant
srs5694df9d3632011-01-08 18:33:24 -0500131
132 if (sSize == 0) {
133 sSize = SECTOR_SIZE;
134 cerr << "Bug: Sector size invalid in SIToInt()!\n";
135 } // if
136
137 // Remove leading spaces, if present
srs569401f7f082011-03-15 23:53:31 -0400138 while (inValue[0] == ' ')
139 inValue.erase(0, 1);
srs5694df9d3632011-01-08 18:33:24 -0500140
srs569401f7f082011-03-15 23:53:31 -0400141 // If present, flag and remove leading plus or minus sign
142 if ((inValue[0] == '+') || (inValue[0] == '-')) {
143 plusFlag = inValue[0];
144 inValue.erase(0, 1);
srs5694df9d3632011-01-08 18:33:24 -0500145 } // if
146
147 // Extract numeric response and, if present, suffix
srs569401f7f082011-03-15 23:53:31 -0400148 istringstream inString(inValue);
srs56946aae2a92011-06-10 01:16:51 -0400149 if (((inString.peek() < '0') || (inString.peek() > '9')) && (inString.peek() != -1))
150 badInput = 1;
151 inString >> response >> suffix;
152 suffix = toupper(suffix);
153
154 // If no response, or if response == 0, use default (def)
155 if ((inValue.length() == 0) || (response == 0)) {
156 response = def;
157 suffix = ' ';
158 plusFlag = ' ';
159 } // if
160
161 // Find multiplication and division factors for the suffix
162 foundAt = suffixes.find(suffix);
163 if (foundAt != string::npos) {
164 bytesPerUnit = UINT64_C(1) << (10 * (foundAt + 1));
165 mult = bytesPerUnit / sSize;
166 divide = sSize / bytesPerUnit;
167 } // if
168
169 // Adjust response based on multiplier and plus flag, if present
170 if (mult > 1) {
171 if (response > (UINT64_MAX / mult))
172 badInput = 1;
173 else
srs569401f7f082011-03-15 23:53:31 -0400174 response *= mult;
srs56946aae2a92011-06-10 01:16:51 -0400175 } else if (divide > 1) {
srs569401f7f082011-03-15 23:53:31 -0400176 response /= divide;
srs56946aae2a92011-06-10 01:16:51 -0400177 } // if/elseif
178
179 if (plusFlag == '+') {
180 // Recompute response based on low part of range (if default == high
181 // value, which should be the case when prompting for the end of a
182 // range) or the defaut value (if default != high, which should be
183 // the case for the first sector of a partition).
184 if (def == high) {
185 if (response > 0)
186 response--;
187 if (response > (UINT64_MAX - low))
188 badInput = 1;
189 else
190 response = response + low;
191 } else {
192 if (response > (UINT64_MAX - def))
193 badInput = 1;
srs569401f7f082011-03-15 23:53:31 -0400194 else
195 response = response + def;
srs56946aae2a92011-06-10 01:16:51 -0400196 } // if/else
197 } else if (plusFlag == '-') {
198 if (response > high)
199 badInput = 1;
200 else
srs569401f7f082011-03-15 23:53:31 -0400201 response = high - response;
srs56946aae2a92011-06-10 01:16:51 -0400202 } // if
203
204 if (badInput)
205 response = UINT64_C(0);
srs5694df9d3632011-01-08 18:33:24 -0500206
207 return response;
srs569401f7f082011-03-15 23:53:31 -0400208} // IeeeToInt()
srs5694df9d3632011-01-08 18:33:24 -0500209
srs569401f7f082011-03-15 23:53:31 -0400210// Takes a size and converts this to a size in IEEE-1541-2002 units (KiB, MiB,
211// GiB, TiB, PiB, or EiB), returned in C++ string form. The size is either in
212// units of the sector size or, if that parameter is omitted, in bytes.
srs56940873e9d2010-10-07 13:00:45 -0400213// (sectorSize defaults to 1).
srs569401f7f082011-03-15 23:53:31 -0400214string BytesToIeee(uint64_t size, uint32_t sectorSize) {
215 float sizeInIeee;
srs56945a608532011-03-17 13:53:01 -0400216 unsigned int index = 0;
srs56946aae2a92011-06-10 01:16:51 -0400217 string units, prefixes = " KMGTPEZ";
srs569408bb0da2010-02-19 17:19:55 -0500218 ostringstream theValue;
srs5694e7b4ff92009-08-18 13:16:10 -0400219
srs569401f7f082011-03-15 23:53:31 -0400220 sizeInIeee = size * (float) sectorSize;
221 while ((sizeInIeee > 1024.0) && (index < (prefixes.length() - 1))) {
222 index++;
223 sizeInIeee /= 1024.0;
224 } // while
srs569408bb0da2010-02-19 17:19:55 -0500225 theValue.setf(ios::fixed);
srs569401f7f082011-03-15 23:53:31 -0400226 if (prefixes[index] == ' ') {
227 units = " bytes";
srs569408bb0da2010-02-19 17:19:55 -0500228 theValue.precision(0);
srs5694fed16d02010-01-27 23:03:40 -0500229 } else {
srs569401f7f082011-03-15 23:53:31 -0400230 units = " iB";
231 units[1] = prefixes[index];
srs569408bb0da2010-02-19 17:19:55 -0500232 theValue.precision(1);
srs5694fed16d02010-01-27 23:03:40 -0500233 } // if/else
srs569401f7f082011-03-15 23:53:31 -0400234 theValue << sizeInIeee << units;
srs569408bb0da2010-02-19 17:19:55 -0500235 return theValue.str();
srs569401f7f082011-03-15 23:53:31 -0400236} // BlocksToIeee()
srs5694e7b4ff92009-08-18 13:16:10 -0400237
srs56946699b012010-02-04 00:55:30 -0500238// Converts two consecutive characters in the input string into a
239// number, interpreting the string as a hexadecimal number, starting
240// at the specified position.
241unsigned char StrToHex(const string & input, unsigned int position) {
242 unsigned char retval = 0x00;
243 unsigned int temp;
srs5694e7b4ff92009-08-18 13:16:10 -0400244
srs56945a608532011-03-17 13:53:01 -0400245 if (input.length() > position) {
srs56946699b012010-02-04 00:55:30 -0500246 sscanf(input.substr(position, 2).c_str(), "%x", &temp);
247 retval = (unsigned char) temp;
srs5694e7b4ff92009-08-18 13:16:10 -0400248 } // if
srs56946699b012010-02-04 00:55:30 -0500249 return retval;
250} // StrToHex()
srs5694e7b4ff92009-08-18 13:16:10 -0400251
srs56940873e9d2010-10-07 13:00:45 -0400252// Returns 1 if input can be interpreted as a hexadecimal number --
253// all characters must be spaces, digits, or letters A-F (upper- or
srs56946aae2a92011-06-10 01:16:51 -0400254// lower-case), with at least one valid hexadecimal digit; with the
255// exception of the first two characters, which may be "0x"; otherwise
srs56940873e9d2010-10-07 13:00:45 -0400256// returns 0.
srs56946aae2a92011-06-10 01:16:51 -0400257int IsHex(string input) {
srs56940873e9d2010-10-07 13:00:45 -0400258 int isHex = 1, foundHex = 0, i;
259
srs56946aae2a92011-06-10 01:16:51 -0400260 if (input.substr(0, 2) == "0x")
261 input.erase(0, 2);
srs56940873e9d2010-10-07 13:00:45 -0400262 for (i = 0; i < (int) input.length(); i++) {
263 if ((input[i] < '0') || (input[i] > '9')) {
264 if ((input[i] < 'A') || (input[i] > 'F')) {
265 if ((input[i] < 'a') || (input[i] > 'f')) {
266 if ((input[i] != ' ') && (input[i] != '\n')) {
267 isHex = 0;
268 }
269 } else foundHex = 1;
270 } else foundHex = 1;
271 } else foundHex = 1;
272 } // for
273 if (!foundHex)
274 isHex = 0;
275 return isHex;
276} // IsHex()
277
srs56942a9f5da2009-08-26 00:48:01 -0400278// Return 1 if the CPU architecture is little endian, 0 if it's big endian....
279int IsLittleEndian(void) {
280 int littleE = 1; // assume little-endian (Intel-style)
281 union {
282 uint32_t num;
283 unsigned char uc[sizeof(uint32_t)];
284 } endian;
285
286 endian.num = 1;
287 if (endian.uc[0] != (unsigned char) 1) {
288 littleE = 0;
289 } // if
290 return (littleE);
291} // IsLittleEndian()
292
293// Reverse the byte order of theValue; numBytes is number of bytes
srs5694221e0872009-08-29 15:00:31 -0400294void ReverseBytes(void* theValue, int numBytes) {
srs5694fed16d02010-01-27 23:03:40 -0500295 char* tempValue = NULL;
srs56942a9f5da2009-08-26 00:48:01 -0400296 int i;
297
srs5694cb76c672010-02-11 22:22:22 -0500298 tempValue = new char [numBytes];
srs5694fed16d02010-01-27 23:03:40 -0500299 if (tempValue != NULL) {
300 memcpy(tempValue, theValue, numBytes);
301 for (i = 0; i < numBytes; i++)
302 ((char*) theValue)[i] = tempValue[numBytes - i - 1];
srs5694cb76c672010-02-11 22:22:22 -0500303 delete[] tempValue;
srs56946aae2a92011-06-10 01:16:51 -0400304 } else {
305 cerr << "Could not allocate memory in ReverseBytes()! Terminating\n";
306 exit(1);
307 } // if/else
srs56942a9f5da2009-08-26 00:48:01 -0400308} // ReverseBytes()
srs5694a17fe692011-09-10 20:30:20 -0400309
310// On Windows, display a warning and ask whether to continue. If the user elects
311// not to continue, exit immediately.
312void WinWarning(void) {
313 #ifdef _WIN32
314 cout << "\a************************************************************************\n"
315 << "Most versions of Windows cannot boot from a GPT disk, and most varieties\n"
316 << "prior to Vista cannot read GPT disks. Therefore, you should exit now\n"
317 << "unless you understand the implications of converting MBR to GPT or creating\n"
318 << "a new GPT disk layout!\n"
319 << "************************************************************************\n\n";
320 cout << "Are you SURE you want to continue? ";
321 if (GetYN() != 'Y')
322 exit(0);
323 #endif
324} // WinWarning()