blob: 7ac629aa85941b37be0e50f3fc4d2ce380c154a8 [file] [log] [blame]
srs5694a0eb11a2009-08-29 15:00:08 -04001//
2// C++ Implementation: gptpart
3//
4// Description: Class to implement a SINGLE GPT partition
5//
6//
srs5694699941e2011-03-21 21:33:57 -04007// Author: Rod Smith <rodsmith@rodsbooks.com>, (C) 2009-2011
srs5694a0eb11a2009-08-29 15:00:08 -04008//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
srs5694978041c2009-09-21 20:51:47 -040012// This program is copyright (c) 2009 by Roderick W. Smith. It is distributed
13// under the terms of the GNU GPL version 2, as detailed in the COPYING file.
srs5694a0eb11a2009-08-29 15:00:08 -040014
15#define __STDC_LIMIT_MACROS
16#define __STDC_CONSTANT_MACROS
17
srs569400b6d7a2011-06-26 22:40:06 -040018#ifdef USE_UTF16
srs5694699941e2011-03-21 21:33:57 -040019#include <unicode/ustdio.h>
20#else
21#define UnicodeString string
22#endif
23
srs5694a0eb11a2009-08-29 15:00:08 -040024#include <string.h>
srs5694fed16d02010-01-27 23:03:40 -050025#include <stdio.h>
26#include <iostream>
srs5694a0eb11a2009-08-29 15:00:08 -040027#include "gptpart.h"
28#include "attributes.h"
29
30using namespace std;
31
srs5694a0eb11a2009-08-29 15:00:08 -040032GPTPart::GPTPart(void) {
srs569455d92612010-03-07 22:16:07 -050033 partitionType.Zero();
34 uniqueGUID.Zero();
35 firstLBA = 0;
36 lastLBA = 0;
37 attributes = 0;
srs569464cbd172011-03-01 22:03:54 -050038 memset(name, 0, NAME_SIZE);
srs5694a0eb11a2009-08-29 15:00:08 -040039} // Default constructor
40
41GPTPart::~GPTPart(void) {
42} // destructor
43
srs5694a0eb11a2009-08-29 15:00:08 -040044// Return the gdisk-specific two-byte hex code for the partition
srs5694bf8950c2011-03-12 01:23:12 -050045uint16_t GPTPart::GetHexType(void) const {
srs56946699b012010-02-04 00:55:30 -050046 return partitionType.GetHexType();
srs5694a0eb11a2009-08-29 15:00:08 -040047} // GPTPart::GetHexType()
48
49// Return a plain-text description of the partition type (e.g., "Linux/Windows
50// data" or "Linux swap").
srs56946699b012010-02-04 00:55:30 -050051string GPTPart::GetTypeName(void) {
52 return partitionType.TypeName();
srs5694a0eb11a2009-08-29 15:00:08 -040053} // GPTPart::GetNameType()
54
srs56945a608532011-03-17 13:53:01 -040055// Return a Unicode description of the partition type (e.g., "Linux/Windows
56// data" or "Linux swap").
57UnicodeString GPTPart::GetUTypeName(void) {
58 return partitionType.UTypeName();
srs56945a608532011-03-17 13:53:01 -040059} // GPTPart::GetNameType()
60
srs5694a0eb11a2009-08-29 15:00:08 -040061// Compute and return the partition's length (or 0 if the end is incorrectly
62// set before the beginning).
srs5694bf8950c2011-03-12 01:23:12 -050063uint64_t GPTPart::GetLengthLBA(void) const {
srs5694a0eb11a2009-08-29 15:00:08 -040064 uint64_t length = 0;
srs569455d92612010-03-07 22:16:07 -050065
srs5694a0eb11a2009-08-29 15:00:08 -040066 if (firstLBA <= lastLBA)
67 length = lastLBA - firstLBA + UINT64_C(1);
68 return length;
69} // GPTPart::GetLengthLBA()
70
srs569400b6d7a2011-06-26 22:40:06 -040071#ifdef USE_UTF16
srs5694699941e2011-03-21 21:33:57 -040072// Return partition's name field, converted to a Unicode string
73UnicodeString GPTPart::GetDescription(void) {
74 return (UChar*) name;
75} // GPTPart::GetDescription()
76#else
77// Return partition's name field, converted to a C++ ASCII string
srs56946699b012010-02-04 00:55:30 -050078string GPTPart::GetDescription(void) {
srs56940a697312010-01-28 21:10:52 -050079 string theName;
srs569400b6d7a2011-06-26 22:40:06 -040080 int i = 0;
srs5694a0eb11a2009-08-29 15:00:08 -040081
srs56940a697312010-01-28 21:10:52 -050082 theName = "";
srs569400b6d7a2011-06-26 22:40:06 -040083 while ((i < NAME_SIZE) && (name[i] != '\0')) {
84 theName += name[i];
85 i+=2;
86 } // while
srs56940a697312010-01-28 21:10:52 -050087 return theName;
srs5694699941e2011-03-21 21:33:57 -040088} // GPTPart::GetDescription() (Windows version)
89#endif
srs56940a697312010-01-28 21:10:52 -050090
srs569408bb0da2010-02-19 17:19:55 -050091// Return 1 if the partition is in use
92int GPTPart::IsUsed(void) {
srs5694e69e6802012-01-20 22:37:12 -050093 return (partitionType != GUIDData("0x00"));
94// return (firstLBA != UINT64_C(0));
srs569408bb0da2010-02-19 17:19:55 -050095} // GPTPart::IsUsed()
96
srs56940a697312010-01-28 21:10:52 -050097// Set the type code to the specified one. Also changes the partition
98// name *IF* the current name is the generic one for the current partition
99// type.
srs56946699b012010-02-04 00:55:30 -0500100void GPTPart::SetType(PartType t) {
srs56945a608532011-03-17 13:53:01 -0400101 if (GetDescription() == partitionType.UTypeName()) {
srs56946699b012010-02-04 00:55:30 -0500102 SetName(t.TypeName());
srs56940a697312010-01-28 21:10:52 -0500103 } // if
104 partitionType = t;
105} // GPTPart::SetType()
srs5694a0eb11a2009-08-29 15:00:08 -0400106
srs569400b6d7a2011-06-26 22:40:06 -0400107#ifdef USE_UTF16
srs5694699941e2011-03-21 21:33:57 -0400108// Set the name for a partition to theName, using a C++-style string as
109// input.
110void GPTPart::SetName(const string & theName) {
111 SetName((UnicodeString) theName.c_str());
srs56945a608532011-03-17 13:53:01 -0400112} // GPTPart::SetName()
113
srs5694699941e2011-03-21 21:33:57 -0400114// Set the name for a partition to theName, using a Unicode string as
115// input.
116void GPTPart::SetName(const UnicodeString & theName) {
117 if (theName.isBogus()) {
118 cerr << "Bogus UTF-16 name found in GPTPart::SetName()! Name not changed!\n";
119 } else {
120 memset(name, 0, NAME_SIZE);
121 theName.extractBetween(0, NAME_SIZE / 2 - 1, (UChar*) name);
122 } // if/else
srs5694a0eb11a2009-08-29 15:00:08 -0400123} // GPTPart::SetName()
srs569400b6d7a2011-06-26 22:40:06 -0400124
srs5694699941e2011-03-21 21:33:57 -0400125#else
srs569400b6d7a2011-06-26 22:40:06 -0400126
srs5694699941e2011-03-21 21:33:57 -0400127// Set the name for a partition to theName. Note that theName is a
128// standard C++-style ASCII string, although the GUID partition definition
129// requires a UTF-16LE string. This function creates a simple-minded copy
130// for this.
131void GPTPart::SetName(const string & theName) {
132 int i, length;
133
134 if (theName.length() < (NAME_SIZE / 2))
135 length = theName.length();
136 else
137 length = NAME_SIZE / 2;
138 memset(name, 0, NAME_SIZE);
139 for (i = 0; i < length; i++)
140 name[i * 2] = theName[i];
141} // GPTPart::SetName(), Windows version
142#endif
srs5694a0eb11a2009-08-29 15:00:08 -0400143
srs56946699b012010-02-04 00:55:30 -0500144// Set the name for the partition based on the current GUID partition type
145// code's associated name
146void GPTPart::SetDefaultDescription(void) {
147 SetName(partitionType.TypeName());
148} // GPTPart::SetDefaultDescription()
149
srs56940a697312010-01-28 21:10:52 -0500150GPTPart & GPTPart::operator=(const GPTPart & orig) {
srs56940a697312010-01-28 21:10:52 -0500151 partitionType = orig.partitionType;
152 uniqueGUID = orig.uniqueGUID;
153 firstLBA = orig.firstLBA;
154 lastLBA = orig.lastLBA;
155 attributes = orig.attributes;
srs569464cbd172011-03-01 22:03:54 -0500156 memcpy(name, orig.name, NAME_SIZE);
srs56940a697312010-01-28 21:10:52 -0500157 return *this;
158} // assignment operator
159
srs56949a46b042011-03-15 00:34:10 -0400160// Compare the values, and return a bool result.
161// Because this is intended for sorting and a firstLBA value of 0 denotes
162// a partition that's not in use and so that should be sorted upwards,
163// we return the opposite of the usual arithmetic result when either
164// firstLBA value is 0.
165bool GPTPart::operator<(const GPTPart &other) const {
srs56949a46b042011-03-15 00:34:10 -0400166 if (firstLBA && other.firstLBA)
167 return (firstLBA < other.firstLBA);
168 else
169 return (other.firstLBA < firstLBA);
170} // GPTPart::operator<()
171
srs56940a697312010-01-28 21:10:52 -0500172// Display summary information; does nothing if the partition is empty.
173void GPTPart::ShowSummary(int partNum, uint32_t blockSize) {
srs569401f7f082011-03-15 23:53:31 -0400174 string sizeInIeee;
srs56945a608532011-03-17 13:53:01 -0400175 UnicodeString description;
srs569464cbd172011-03-01 22:03:54 -0500176 size_t i;
srs56940a697312010-01-28 21:10:52 -0500177
178 if (firstLBA != 0) {
srs569401f7f082011-03-15 23:53:31 -0400179 sizeInIeee = BytesToIeee(lastLBA - firstLBA + 1, blockSize);
srs569408bb0da2010-02-19 17:19:55 -0500180 cout.fill(' ');
srs56940a697312010-01-28 21:10:52 -0500181 cout.width(4);
182 cout << partNum + 1 << " ";
183 cout.width(14);
184 cout << firstLBA << " ";
185 cout.width(14);
186 cout << lastLBA << " ";
srs569401f7f082011-03-15 23:53:31 -0400187 cout << BytesToIeee(lastLBA - firstLBA + 1, blockSize) << " ";
188 if (sizeInIeee.length() < 10)
189 for (i = 0; i < 10 - sizeInIeee.length(); i++)
190 cout << " ";
srs56940a697312010-01-28 21:10:52 -0500191 cout.fill('0');
192 cout.width(4);
193 cout.setf(ios::uppercase);
srs56946699b012010-02-04 00:55:30 -0500194 cout << hex << partitionType.GetHexType() << " " << dec;
srs56940a697312010-01-28 21:10:52 -0500195 cout.fill(' ');
srs569400b6d7a2011-06-26 22:40:06 -0400196#ifdef USE_UTF16
srs5694699941e2011-03-21 21:33:57 -0400197 GetDescription().extractBetween(0, 23, description);
srs56945a608532011-03-17 13:53:01 -0400198 cout << description << "\n";
srs5694699941e2011-03-21 21:33:57 -0400199#else
200 cout << GetDescription().substr(0, 23) << "\n";
201#endif
srs56940a697312010-01-28 21:10:52 -0500202 cout.fill(' ');
203 } // if
204} // GPTPart::ShowSummary()
205
206// Show detailed partition information. Does nothing if the partition is
207// empty (as determined by firstLBA being 0).
208void GPTPart::ShowDetails(uint32_t blockSize) {
209 uint64_t size;
210
211 if (firstLBA != 0) {
srs56945a081752010-09-24 20:39:41 -0400212 cout << "Partition GUID code: " << partitionType;
srs56946699b012010-02-04 00:55:30 -0500213 cout << " (" << partitionType.TypeName() << ")\n";
srs56945a081752010-09-24 20:39:41 -0400214 cout << "Partition unique GUID: " << uniqueGUID << "\n";
srs56940a697312010-01-28 21:10:52 -0500215
216 cout << "First sector: " << firstLBA << " (at "
srs569401f7f082011-03-15 23:53:31 -0400217 << BytesToIeee(firstLBA, blockSize) << ")\n";
srs56940a697312010-01-28 21:10:52 -0500218 cout << "Last sector: " << lastLBA << " (at "
srs569401f7f082011-03-15 23:53:31 -0400219 << BytesToIeee(lastLBA, blockSize) << ")\n";
srs56940a697312010-01-28 21:10:52 -0500220 size = (lastLBA - firstLBA + 1);
221 cout << "Partition size: " << size << " sectors ("
srs569401f7f082011-03-15 23:53:31 -0400222 << BytesToIeee(size, blockSize) << ")\n";
srs56940a697312010-01-28 21:10:52 -0500223 cout << "Attribute flags: ";
224 cout.fill('0');
225 cout.width(16);
226 cout << hex;
227 cout << attributes << "\n";
228 cout << dec;
srs5694699941e2011-03-21 21:33:57 -0400229 cout << "Partition name: '" << GetDescription() << "'\n";
srs56940a697312010-01-28 21:10:52 -0500230 cout.fill(' ');
231 } // if
232} // GPTPart::ShowDetails()
233
234// Blank (delete) a single partition
235void GPTPart::BlankPartition(void) {
srs56946699b012010-02-04 00:55:30 -0500236 uniqueGUID.Zero();
237 partitionType.Zero();
srs56940a697312010-01-28 21:10:52 -0500238 firstLBA = 0;
239 lastLBA = 0;
240 attributes = 0;
srs569464cbd172011-03-01 22:03:54 -0500241 memset(name, 0, NAME_SIZE);
srs56940a697312010-01-28 21:10:52 -0500242} // GPTPart::BlankPartition
243
244// Returns 1 if the two partitions overlap, 0 if they don't
245int GPTPart::DoTheyOverlap(const GPTPart & other) {
srs56940a697312010-01-28 21:10:52 -0500246 // Don't bother checking unless these are defined (both start and end points
247 // are 0 for undefined partitions, so just check the start points)
srs569464cbd172011-03-01 22:03:54 -0500248 return firstLBA && other.firstLBA &&
249 (firstLBA <= other.lastLBA) != (lastLBA < other.firstLBA);
srs56940a697312010-01-28 21:10:52 -0500250} // GPTPart::DoTheyOverlap()
251
srs56945a608532011-03-17 13:53:01 -0400252// Reverse the bytes of integral data types and of the UTF-16LE name;
253// used on big-endian systems.
srs56940a697312010-01-28 21:10:52 -0500254void GPTPart::ReversePartBytes(void) {
srs56945a608532011-03-17 13:53:01 -0400255 int i;
256
srs56940a697312010-01-28 21:10:52 -0500257 ReverseBytes(&firstLBA, 8);
258 ReverseBytes(&lastLBA, 8);
259 ReverseBytes(&attributes, 8);
srs56945a608532011-03-17 13:53:01 -0400260 for (i = 0; i < NAME_SIZE; i += 2)
261 ReverseBytes(name + i, 2);
srs56940a697312010-01-28 21:10:52 -0500262} // GPTPart::ReverseBytes()
263
264/****************************************
265 * Functions requiring user interaction *
266 ****************************************/
267
srs56946699b012010-02-04 00:55:30 -0500268// Change the type code on the partition. Also changes the name if the original
269// name is the generic one for the partition type.
srs56940a697312010-01-28 21:10:52 -0500270void GPTPart::ChangeType(void) {
srs56945a608532011-03-17 13:53:01 -0400271 string line;
srs569464cbd172011-03-01 22:03:54 -0500272 int changeName;
srs569482f3f0b2010-09-22 10:50:24 -0400273 PartType tempType = (GUIDData) "00000000-0000-0000-0000-000000000000";
srs56940a697312010-01-28 21:10:52 -0500274
srs56945a608532011-03-17 13:53:01 -0400275 changeName = (GetDescription() == GetUTypeName());
srs569455d92612010-03-07 22:16:07 -0500276
srs56946699b012010-02-04 00:55:30 -0500277 cout << "Current type is '" << GetTypeName() << "'\n";
srs569482f3f0b2010-09-22 10:50:24 -0400278 do {
srs569400b6d7a2011-06-26 22:40:06 -0400279 cout << "Hex code or GUID (L to show codes, Enter = " << hex << DEFAULT_TYPE << dec << "): ";
srs56945a608532011-03-17 13:53:01 -0400280 line = ReadString();
srs569482f3f0b2010-09-22 10:50:24 -0400281 if ((line[0] == 'L') || (line[0] == 'l')) {
srs56946699b012010-02-04 00:55:30 -0500282 partitionType.ShowAllTypes();
srs569482f3f0b2010-09-22 10:50:24 -0400283 } else {
srs56945a608532011-03-17 13:53:01 -0400284 if (line.length() == 0)
srs569400b6d7a2011-06-26 22:40:06 -0400285 tempType= DEFAULT_TYPE;
srs569482f3f0b2010-09-22 10:50:24 -0400286 else
287 tempType = line;
288 } // if/else
289 } while (tempType == (GUIDData) "00000000-0000-0000-0000-000000000000");
290 partitionType = tempType;
srs56946699b012010-02-04 00:55:30 -0500291 cout << "Changed type of partition to '" << partitionType.TypeName() << "'\n";
292 if (changeName) {
293 SetDefaultDescription();
294 } // if
srs56940a697312010-01-28 21:10:52 -0500295} // GPTPart::ChangeType()