blob: 0ff34851861569e1711fe2520850c4d5879deb5a [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
Roderick W. Smithe3ee7332013-09-24 12:56:11 -04006/* This program is copyright (c) 2009-2013 by Roderick W. Smith. It is distributed
srs5694221e0872009-08-29 15:00:31 -04007 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.
Aurimas Liutikas74b74902016-05-10 18:53:54 -070037#ifdef EFI
38extern int __sscanf( const char * str , const char * format , ... ) ;
39string ReadString(void) {
40 string inString;
41 char efiString[256];
42 int stringLength;
43
44 if (fgets(efiString, 255, stdin) != NULL) {
45 stringLength = strlen(efiString);
46 if ((stringLength > 0) && (efiString[stringLength - 1] == '\n'))
47 efiString[stringLength - 1] = '\0';
48 inString = efiString;
49 } else {
50 inString = "";
51 }
52 return inString;
53} // ReadString()
54#else
srs56945a608532011-03-17 13:53:01 -040055string ReadString(void) {
56 string inString;
57
58 getline(cin, inString);
srs5694a6297b82012-03-25 16:13:16 -040059 if (!cin.good())
60 exit(5);
srs56945a608532011-03-17 13:53:01 -040061 return inString;
62} // ReadString()
Aurimas Liutikas74b74902016-05-10 18:53:54 -070063#endif
srs5694bf8950c2011-03-12 01:23:12 -050064
srs5694e7b4ff92009-08-18 13:16:10 -040065// Get a numeric value from the user, between low and high (inclusive).
66// Keeps looping until the user enters a value within that range.
67// If user provides no input, def (default value) is returned.
68// (If def is outside of the low-high range, an explicit response
69// is required.)
srs5694fed16d02010-01-27 23:03:40 -050070int GetNumber(int low, int high, int def, const string & prompt) {
srs5694e7b4ff92009-08-18 13:16:10 -040071 int response, num;
72 char line[255];
73
74 if (low != high) { // bother only if low and high differ...
srs56940873e9d2010-10-07 13:00:45 -040075 do {
srs5694fed16d02010-01-27 23:03:40 -050076 cout << prompt;
77 cin.getline(line, 255);
srs5694a6297b82012-03-25 16:13:16 -040078 if (!cin.good())
79 exit(5);
srs5694e7b4ff92009-08-18 13:16:10 -040080 num = sscanf(line, "%d", &response);
81 if (num == 1) { // user provided a response
82 if ((response < low) || (response > high))
srs5694fed16d02010-01-27 23:03:40 -050083 cout << "Value out of range\n";
srs5694e7b4ff92009-08-18 13:16:10 -040084 } else { // user hit enter; return default
85 response = def;
86 } // if/else
srs56940873e9d2010-10-07 13:00:45 -040087 } while ((response < low) || (response > high));
srs5694e7b4ff92009-08-18 13:16:10 -040088 } else { // low == high, so return this value
srs5694fed16d02010-01-27 23:03:40 -050089 cout << "Using " << low << "\n";
srs5694e7b4ff92009-08-18 13:16:10 -040090 response = low;
91 } // else
92 return (response);
93} // GetNumber()
94
95// Gets a Y/N response (and converts lowercase to uppercase)
96char GetYN(void) {
srs56940873e9d2010-10-07 13:00:45 -040097 char response;
srs56945a608532011-03-17 13:53:01 -040098 string line;
Roderick W. Smith84aaff62014-02-17 16:17:11 -050099 bool again = 0 ;
srs5694e7b4ff92009-08-18 13:16:10 -0400100
srs56940873e9d2010-10-07 13:00:45 -0400101 do {
Roderick W. Smith84aaff62014-02-17 16:17:11 -0500102 if ( again ) { cout << "Your option? " ; }
103 again = 1 ;
srs5694fed16d02010-01-27 23:03:40 -0500104 cout << "(Y/N): ";
srs56945a608532011-03-17 13:53:01 -0400105 line = ReadString();
srs569401f7f082011-03-15 23:53:31 -0400106 response = toupper(line[0]);
srs56940873e9d2010-10-07 13:00:45 -0400107 } while ((response != 'Y') && (response != 'N'));
srs5694e7b4ff92009-08-18 13:16:10 -0400108 return response;
109} // GetYN(void)
110
srs5694e4ac11e2009-08-31 10:13:04 -0400111// Obtains a sector number, between low and high, from the
srs5694e7b4ff92009-08-18 13:16:10 -0400112// user, accepting values prefixed by "+" to add sectors to low,
srs56940873e9d2010-10-07 13:00:45 -0400113// or the same with "K", "M", "G", "T", or "P" as suffixes to add
114// kilobytes, megabytes, gigabytes, terabytes, or petabytes,
115// respectively. If a "-" prefix is used, use the high value minus
116// the user-specified number of sectors (or KiB, MiB, etc.). Use the
117// def value as the default if the user just hits Enter. The sSize is
118// the sector size of the device.
srs5694df9d3632011-01-08 18:33:24 -0500119uint64_t GetSectorNum(uint64_t low, uint64_t high, uint64_t def, uint64_t sSize,
120 const string & prompt) {
121 uint64_t response;
122 char line[255];
srs56940873e9d2010-10-07 13:00:45 -0400123
124 do {
srs5694fed16d02010-01-27 23:03:40 -0500125 cout << prompt;
126 cin.getline(line, 255);
srs5694a6297b82012-03-25 16:13:16 -0400127 if (!cin.good())
128 exit(5);
srs569401f7f082011-03-15 23:53:31 -0400129 response = IeeeToInt(line, sSize, low, high, def);
srs56940873e9d2010-10-07 13:00:45 -0400130 } while ((response < low) || (response > high));
srs569455d92612010-03-07 22:16:07 -0500131 return response;
srs5694e4ac11e2009-08-31 10:13:04 -0400132} // GetSectorNum()
srs5694e7b4ff92009-08-18 13:16:10 -0400133
srs569401f7f082011-03-15 23:53:31 -0400134// Convert an IEEE-1541-2002 value (K, M, G, T, P, or E) to its equivalent in
srs5694df9d3632011-01-08 18:33:24 -0500135// number of sectors. If no units are appended, interprets as the number
136// of sectors; otherwise, interprets as number of specified units and
137// converts to sectors. For instance, with 512-byte sectors, "1K" converts
138// to 2. If value includes a "+", adds low and subtracts 1; if SIValue
srs569401f7f082011-03-15 23:53:31 -0400139// inclues a "-", subtracts from high. If IeeeValue is empty, returns def.
srs56946aae2a92011-06-10 01:16:51 -0400140// Returns final sector value. In case inValue is invalid, returns 0 (a
srs5694a17fe692011-09-10 20:30:20 -0400141// sector value that's always in use on GPT and therefore invalid); and if
srs56946aae2a92011-06-10 01:16:51 -0400142// inValue works out to something outside the range low-high, returns the
143// computed value; the calling function is responsible for checking the
144// validity of this value.
145// NOTE: There's a difference in how GCC and VC++ treat oversized values
146// (say, "999999999999999999999") read via the ">>" operator; GCC turns
147// them into the maximum value for the type, whereas VC++ turns them into
148// 0 values. The result is that IeeeToInt() returns UINT64_MAX when
149// compiled with GCC (and so the value is rejected), whereas when VC++
150// is used, the default value is returned.
srs569401f7f082011-03-15 23:53:31 -0400151uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint64_t def) {
152 uint64_t response = def, bytesPerUnit = 1, mult = 1, divide = 1;
153 size_t foundAt = 0;
Aurimas Liutikas74b74902016-05-10 18:53:54 -0700154 char suffix = ' ', plusFlag = ' ';
srs569401f7f082011-03-15 23:53:31 -0400155 string suffixes = "KMGTPE";
srs56946aae2a92011-06-10 01:16:51 -0400156 int badInput = 0; // flag bad input; once this goes to 1, other values are irrelevant
srs5694df9d3632011-01-08 18:33:24 -0500157
158 if (sSize == 0) {
159 sSize = SECTOR_SIZE;
Roderick W. Smithf6948032014-03-29 00:27:33 -0400160 cerr << "Bug: Sector size invalid in IeeeToInt()!\n";
srs5694df9d3632011-01-08 18:33:24 -0500161 } // if
162
163 // Remove leading spaces, if present
srs569401f7f082011-03-15 23:53:31 -0400164 while (inValue[0] == ' ')
165 inValue.erase(0, 1);
srs5694df9d3632011-01-08 18:33:24 -0500166
srs569401f7f082011-03-15 23:53:31 -0400167 // If present, flag and remove leading plus or minus sign
168 if ((inValue[0] == '+') || (inValue[0] == '-')) {
169 plusFlag = inValue[0];
170 inValue.erase(0, 1);
srs5694df9d3632011-01-08 18:33:24 -0500171 } // if
172
173 // Extract numeric response and, if present, suffix
srs569401f7f082011-03-15 23:53:31 -0400174 istringstream inString(inValue);
srs56946aae2a92011-06-10 01:16:51 -0400175 if (((inString.peek() < '0') || (inString.peek() > '9')) && (inString.peek() != -1))
176 badInput = 1;
177 inString >> response >> suffix;
178 suffix = toupper(suffix);
179
180 // If no response, or if response == 0, use default (def)
181 if ((inValue.length() == 0) || (response == 0)) {
182 response = def;
183 suffix = ' ';
184 plusFlag = ' ';
185 } // if
186
187 // Find multiplication and division factors for the suffix
188 foundAt = suffixes.find(suffix);
189 if (foundAt != string::npos) {
190 bytesPerUnit = UINT64_C(1) << (10 * (foundAt + 1));
191 mult = bytesPerUnit / sSize;
192 divide = sSize / bytesPerUnit;
193 } // if
194
195 // Adjust response based on multiplier and plus flag, if present
196 if (mult > 1) {
197 if (response > (UINT64_MAX / mult))
198 badInput = 1;
199 else
srs569401f7f082011-03-15 23:53:31 -0400200 response *= mult;
srs56946aae2a92011-06-10 01:16:51 -0400201 } else if (divide > 1) {
srs569401f7f082011-03-15 23:53:31 -0400202 response /= divide;
srs56946aae2a92011-06-10 01:16:51 -0400203 } // if/elseif
204
205 if (plusFlag == '+') {
206 // Recompute response based on low part of range (if default == high
207 // value, which should be the case when prompting for the end of a
208 // range) or the defaut value (if default != high, which should be
209 // the case for the first sector of a partition).
210 if (def == high) {
211 if (response > 0)
212 response--;
213 if (response > (UINT64_MAX - low))
214 badInput = 1;
215 else
216 response = response + low;
217 } else {
218 if (response > (UINT64_MAX - def))
219 badInput = 1;
srs569401f7f082011-03-15 23:53:31 -0400220 else
221 response = response + def;
srs56946aae2a92011-06-10 01:16:51 -0400222 } // if/else
223 } else if (plusFlag == '-') {
224 if (response > high)
225 badInput = 1;
226 else
srs569401f7f082011-03-15 23:53:31 -0400227 response = high - response;
srs56946aae2a92011-06-10 01:16:51 -0400228 } // if
229
230 if (badInput)
231 response = UINT64_C(0);
srs5694df9d3632011-01-08 18:33:24 -0500232
233 return response;
srs569401f7f082011-03-15 23:53:31 -0400234} // IeeeToInt()
srs5694df9d3632011-01-08 18:33:24 -0500235
srs569401f7f082011-03-15 23:53:31 -0400236// Takes a size and converts this to a size in IEEE-1541-2002 units (KiB, MiB,
237// GiB, TiB, PiB, or EiB), returned in C++ string form. The size is either in
238// units of the sector size or, if that parameter is omitted, in bytes.
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400239// (sectorSize defaults to 1). Note that this function uses peculiar
240// manual computation of decimal value rather than simply setting
241// theValue.precision() because this isn't possible using the available
242// EFI library.
srs569401f7f082011-03-15 23:53:31 -0400243string BytesToIeee(uint64_t size, uint32_t sectorSize) {
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400244 uint64_t sizeInIeee;
245 uint64_t previousIeee;
246 float decimalIeee;
Aurimas Liutikas74b74902016-05-10 18:53:54 -0700247 uint64_t index = 0;
srs56946aae2a92011-06-10 01:16:51 -0400248 string units, prefixes = " KMGTPEZ";
srs569408bb0da2010-02-19 17:19:55 -0500249 ostringstream theValue;
srs5694e7b4ff92009-08-18 13:16:10 -0400250
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400251 sizeInIeee = previousIeee = size * (uint64_t) sectorSize;
252 while ((sizeInIeee > 1024) && (index < (prefixes.length() - 1))) {
srs569401f7f082011-03-15 23:53:31 -0400253 index++;
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400254 previousIeee = sizeInIeee;
255 sizeInIeee /= 1024;
srs569401f7f082011-03-15 23:53:31 -0400256 } // while
srs569401f7f082011-03-15 23:53:31 -0400257 if (prefixes[index] == ' ') {
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400258 theValue << sizeInIeee << " bytes";
srs5694fed16d02010-01-27 23:03:40 -0500259 } else {
srs569401f7f082011-03-15 23:53:31 -0400260 units = " iB";
261 units[1] = prefixes[index];
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400262 decimalIeee = ((float) previousIeee -
263 ((float) sizeInIeee * 1024.0) + 51.2) / 102.4;
264 if (decimalIeee >= 10.0) {
265 decimalIeee = 0.0;
266 sizeInIeee++;
267 }
268 theValue << sizeInIeee << "." << (uint32_t) decimalIeee << units;
srs5694fed16d02010-01-27 23:03:40 -0500269 } // if/else
srs569408bb0da2010-02-19 17:19:55 -0500270 return theValue.str();
Roderick W. Smith1f7822e2014-03-28 23:54:21 -0400271} // BytesToIeee()
srs5694e7b4ff92009-08-18 13:16:10 -0400272
srs56946699b012010-02-04 00:55:30 -0500273// Converts two consecutive characters in the input string into a
274// number, interpreting the string as a hexadecimal number, starting
275// at the specified position.
276unsigned char StrToHex(const string & input, unsigned int position) {
277 unsigned char retval = 0x00;
278 unsigned int temp;
srs5694e7b4ff92009-08-18 13:16:10 -0400279
srs56945a608532011-03-17 13:53:01 -0400280 if (input.length() > position) {
srs56946699b012010-02-04 00:55:30 -0500281 sscanf(input.substr(position, 2).c_str(), "%x", &temp);
282 retval = (unsigned char) temp;
srs5694e7b4ff92009-08-18 13:16:10 -0400283 } // if
srs56946699b012010-02-04 00:55:30 -0500284 return retval;
285} // StrToHex()
srs5694e7b4ff92009-08-18 13:16:10 -0400286
srs56940873e9d2010-10-07 13:00:45 -0400287// Returns 1 if input can be interpreted as a hexadecimal number --
288// all characters must be spaces, digits, or letters A-F (upper- or
srs56946aae2a92011-06-10 01:16:51 -0400289// lower-case), with at least one valid hexadecimal digit; with the
290// exception of the first two characters, which may be "0x"; otherwise
srs56940873e9d2010-10-07 13:00:45 -0400291// returns 0.
srs56946aae2a92011-06-10 01:16:51 -0400292int IsHex(string input) {
srs56940873e9d2010-10-07 13:00:45 -0400293 int isHex = 1, foundHex = 0, i;
294
srs56946aae2a92011-06-10 01:16:51 -0400295 if (input.substr(0, 2) == "0x")
296 input.erase(0, 2);
srs56940873e9d2010-10-07 13:00:45 -0400297 for (i = 0; i < (int) input.length(); i++) {
298 if ((input[i] < '0') || (input[i] > '9')) {
299 if ((input[i] < 'A') || (input[i] > 'F')) {
300 if ((input[i] < 'a') || (input[i] > 'f')) {
301 if ((input[i] != ' ') && (input[i] != '\n')) {
302 isHex = 0;
303 }
304 } else foundHex = 1;
305 } else foundHex = 1;
306 } else foundHex = 1;
307 } // for
308 if (!foundHex)
309 isHex = 0;
310 return isHex;
311} // IsHex()
312
srs56942a9f5da2009-08-26 00:48:01 -0400313// Return 1 if the CPU architecture is little endian, 0 if it's big endian....
314int IsLittleEndian(void) {
315 int littleE = 1; // assume little-endian (Intel-style)
316 union {
317 uint32_t num;
318 unsigned char uc[sizeof(uint32_t)];
319 } endian;
320
321 endian.num = 1;
322 if (endian.uc[0] != (unsigned char) 1) {
323 littleE = 0;
324 } // if
325 return (littleE);
326} // IsLittleEndian()
327
328// Reverse the byte order of theValue; numBytes is number of bytes
srs5694221e0872009-08-29 15:00:31 -0400329void ReverseBytes(void* theValue, int numBytes) {
srs5694fed16d02010-01-27 23:03:40 -0500330 char* tempValue = NULL;
srs56942a9f5da2009-08-26 00:48:01 -0400331 int i;
332
srs5694cb76c672010-02-11 22:22:22 -0500333 tempValue = new char [numBytes];
srs5694fed16d02010-01-27 23:03:40 -0500334 if (tempValue != NULL) {
335 memcpy(tempValue, theValue, numBytes);
336 for (i = 0; i < numBytes; i++)
337 ((char*) theValue)[i] = tempValue[numBytes - i - 1];
srs5694cb76c672010-02-11 22:22:22 -0500338 delete[] tempValue;
srs56946aae2a92011-06-10 01:16:51 -0400339 } else {
340 cerr << "Could not allocate memory in ReverseBytes()! Terminating\n";
341 exit(1);
342 } // if/else
srs56942a9f5da2009-08-26 00:48:01 -0400343} // ReverseBytes()
srs5694a17fe692011-09-10 20:30:20 -0400344
345// On Windows, display a warning and ask whether to continue. If the user elects
346// not to continue, exit immediately.
347void WinWarning(void) {
348 #ifdef _WIN32
349 cout << "\a************************************************************************\n"
Roderick W. Smitha9203982014-03-29 00:45:59 -0400350 << "Most versions of Windows cannot boot from a GPT disk except on a UEFI-based\n"
351 << "computer, and most varieties prior to Vista cannot read GPT disks. Therefore,\n"
352 << "you should exit now unless you understand the implications of converting MBR\n"
353 << "to GPT or creating a new GPT disk layout!\n"
354 << "************************************************************************\n\n";
srs5694a17fe692011-09-10 20:30:20 -0400355 cout << "Are you SURE you want to continue? ";
356 if (GetYN() != 'Y')
357 exit(0);
358 #endif
359} // WinWarning()