blob: ca04ec4092fa7831354bd82be4dc212d02849e0e [file] [log] [blame]
srs5694e7b4ff92009-08-18 13:16:10 -04001/* gpt.h -- GPT and data structure definitions, types, and
2 functions */
3
srs5694221e0872009-08-29 15:00:31 -04004/* This program is copyright (c) 2009 by Roderick W. Smith. It is distributed
5 under the terms of the GNU GPL version 2, as detailed in the COPYING file. */
6
srs5694e7b4ff92009-08-18 13:16:10 -04007#include <stdint.h>
8#include <sys/types.h>
srs5694546a9c72010-01-26 16:00:26 -05009#include "gptpart.h"
srs5694e7b4ff92009-08-18 13:16:10 -040010#include "support.h"
11#include "parttypes.h"
12#include "mbr.h"
srs5694221e0872009-08-29 15:00:31 -040013#include "bsd.h"
14#include "gptpart.h"
srs5694e7b4ff92009-08-18 13:16:10 -040015
16#ifndef __GPTSTRUCTS
17#define __GPTSTRUCTS
18
srs5694e321d442010-01-29 17:44:04 -050019#define GPTFDISK_VERSION "0.6.2"
srs5694e7b4ff92009-08-18 13:16:10 -040020
21using namespace std;
22
23/****************************************
24 * *
25 * GPTData class and related structures *
26 * *
27 ****************************************/
28
29// Validity state of GPT data
30enum GPTValidity {gpt_valid, gpt_corrupt, gpt_invalid};
31
32// Which set of partition data to use
srs56943c0af382010-01-15 19:19:18 -050033enum WhichToUse {use_gpt, use_mbr, use_bsd, use_new, use_abort};
srs5694e7b4ff92009-08-18 13:16:10 -040034
35// Header (first 512 bytes) of GPT table
srs5694ba00fed2010-01-12 18:18:36 -050036#pragma pack(1)
srs5694e7b4ff92009-08-18 13:16:10 -040037struct GPTHeader {
38 uint64_t signature;
39 uint32_t revision;
40 uint32_t headerSize;
41 uint32_t headerCRC;
42 uint32_t reserved;
43 uint64_t currentLBA;
44 uint64_t backupLBA;
45 uint64_t firstUsableLBA;
46 uint64_t lastUsableLBA;
47 struct GUIDData diskGUID;
48 uint64_t partitionEntriesLBA;
49 uint32_t numParts;
50 uint32_t sizeOfPartitionEntries;
51 uint32_t partitionEntriesCRC;
52 unsigned char reserved2[GPT_RESERVED];
53}; // struct GPTHeader
54
srs5694e7b4ff92009-08-18 13:16:10 -040055// Data in GPT format
56class GPTData {
57protected:
58 struct GPTHeader mainHeader;
srs5694ba00fed2010-01-12 18:18:36 -050059 GPTPart *partitions;
srs5694e7b4ff92009-08-18 13:16:10 -040060 struct GPTHeader secondHeader;
61 MBRData protectiveMBR;
srs5694fed16d02010-01-27 23:03:40 -050062 string device; // device filename
srs5694546a9c72010-01-26 16:00:26 -050063 DiskIO myDisk;
srs5694e7b4ff92009-08-18 13:16:10 -040064 uint32_t blockSize; // device block size
65 uint64_t diskSize; // size of device, in blocks
66 GPTValidity state; // is GPT valid?
srs56945d58fe02010-01-03 20:57:08 -050067 int justLooking; // Set to 1 if program launched with "-l" or if read-only
srs5694e7b4ff92009-08-18 13:16:10 -040068 int mainCrcOk;
69 int secondCrcOk;
70 int mainPartsCrcOk;
71 int secondPartsCrcOk;
srs5694221e0872009-08-29 15:00:31 -040072 int apmFound; // set to 1 if APM detected
73 int bsdFound; // set to 1 if BSD disklabel detected in MBR
srs56941d1448a2009-12-31 21:20:19 -050074 int sectorAlignment; // Start & end partitions at multiples of sectorAlignment
srs5694e7b4ff92009-08-18 13:16:10 -040075 PartTypes typeHelper;
srs5694ba00fed2010-01-12 18:18:36 -050076 int beQuiet;
77 WhichToUse whichWasUsed;
srs5694e7b4ff92009-08-18 13:16:10 -040078public:
srs5694e4ac11e2009-08-31 10:13:04 -040079 // Basic necessary functions....
srs5694e7b4ff92009-08-18 13:16:10 -040080 GPTData(void);
srs5694fed16d02010-01-27 23:03:40 -050081 GPTData(string deviceFilename);
srs5694e7b4ff92009-08-18 13:16:10 -040082 ~GPTData(void);
srs5694e4ac11e2009-08-31 10:13:04 -040083
84 // Verify (or update) data integrity
85 int Verify(void);
srs5694e7b4ff92009-08-18 13:16:10 -040086 int CheckGPTSize(void);
srs5694e4ac11e2009-08-31 10:13:04 -040087 int CheckHeaderValidity(void);
88 int CheckHeaderCRC(struct GPTHeader* header);
89 void RecomputeCRCs(void);
90 void RebuildMainHeader(void);
91 void RebuildSecondHeader(void);
92 int FindHybridMismatches(void);
93 int FindOverlaps(void);
94
95 // Load or save data from/to disk
srs56940a697312010-01-28 21:10:52 -050096 int LoadMBR(const string & f) {return protectiveMBR.ReadMBRData(f);}
srs5694546a9c72010-01-26 16:00:26 -050097 void PartitionScan(void);
srs56940a697312010-01-28 21:10:52 -050098 int LoadPartitions(const string & deviceFilename);
srs5694546a9c72010-01-26 16:00:26 -050099 int ForceLoadGPTData(void);
srs5694e7b4ff92009-08-18 13:16:10 -0400100 int LoadMainTable(void);
srs5694546a9c72010-01-26 16:00:26 -0500101 int LoadSecondTableAsMain(void);
srs5694ba00fed2010-01-12 18:18:36 -0500102 int SaveGPTData(int quiet = 0);
srs56940a697312010-01-28 21:10:52 -0500103 int SaveGPTBackup(const string & filename);
104 int LoadGPTBackup(const string & filename);
srs5694e4ac11e2009-08-31 10:13:04 -0400105
106 // Display data....
107 void ShowAPMState(void);
108 void ShowGPTState(void);
srs5694e7b4ff92009-08-18 13:16:10 -0400109 void DisplayGPTData(void);
110 void DisplayMBRData(void) {protectiveMBR.DisplayMBRData();}
111 void ShowDetails(void);
112 void ShowPartDetails(uint32_t partNum);
srs5694e4ac11e2009-08-31 10:13:04 -0400113
114 // Request information from the user (& possibly do something with it)
115 uint32_t GetPartNum(void);
116 void ResizePartitionTable(void);
srs5694e7b4ff92009-08-18 13:16:10 -0400117 void CreatePartition(void);
118 void DeletePartition(void);
srs5694e4ac11e2009-08-31 10:13:04 -0400119 void ChangePartType(void);
120 void SetAttributes(uint32_t partNum);
srs5694978041c2009-09-21 20:51:47 -0400121 int DestroyGPT(int prompt = 1); // Returns 1 if user proceeds
srs5694e4ac11e2009-08-31 10:13:04 -0400122
srs5694978041c2009-09-21 20:51:47 -0400123 // Convert between GPT and other formats (may require user interaction)
srs5694e4ac11e2009-08-31 10:13:04 -0400124 WhichToUse UseWhichPartitions(void);
srs5694221e0872009-08-29 15:00:31 -0400125 int XFormPartitions(void);
126 int XFormDisklabel(int OnGptPart = -1);
srs5694e321d442010-01-29 17:44:04 -0500127 int XFormDisklabel(BSDData* disklabel, uint32_t startPart);
srs5694978041c2009-09-21 20:51:47 -0400128 int OnePartToMBR(uint32_t gptPart, int mbrPart); // add one partition to MBR. Returns 1 if successful
129 int XFormToMBR(void); // convert GPT to MBR, wiping GPT afterwards. Returns 1 if successful
srs5694e4ac11e2009-08-31 10:13:04 -0400130 void MakeHybrid(void);
131
132 // Adjust GPT structures WITHOUT user interaction...
133 int SetGPTSize(uint32_t numEntries);
134 void BlankPartitions(void);
srs5694ba00fed2010-01-12 18:18:36 -0500135 int DeletePartition(uint32_t partNum);
srs5694e321d442010-01-29 17:44:04 -0500136 uint32_t CreatePartition(uint32_t partNum, uint64_t startSector, uint64_t endSector);
srs5694e7b4ff92009-08-18 13:16:10 -0400137 void SortGPT(void);
138 int ClearGPTData(void);
srs5694247657a2009-11-26 18:36:12 -0500139 void MoveSecondHeaderToEnd();
srs56940a697312010-01-28 21:10:52 -0500140 int SetName(uint32_t partNum, const string & theName = "");
srs5694e7b4ff92009-08-18 13:16:10 -0400141 void SetDiskGUID(GUIDData newGUID);
142 int SetPartitionGUID(uint32_t pn, GUIDData theGUID);
srs5694ba00fed2010-01-12 18:18:36 -0500143 int ChangePartType(uint32_t pn, uint16_t hexCode);
srs5694e4ac11e2009-08-31 10:13:04 -0400144 void MakeProtectiveMBR(void) {protectiveMBR.MakeProtectiveMBR();}
srs56941d1448a2009-12-31 21:20:19 -0500145 int Align(uint64_t* sector);
srs5694e7b4ff92009-08-18 13:16:10 -0400146
147 // Return data about the GPT structures....
srs5694e4ac11e2009-08-31 10:13:04 -0400148 int GetPartRange(uint32_t* low, uint32_t* high);
srs5694e7b4ff92009-08-18 13:16:10 -0400149 uint32_t GetNumParts(void) {return mainHeader.numParts;}
150 uint64_t GetMainHeaderLBA(void) {return mainHeader.currentLBA;}
151 uint64_t GetSecondHeaderLBA(void) {return secondHeader.currentLBA;}
152 uint64_t GetMainPartsLBA(void) {return mainHeader.partitionEntriesLBA;}
153 uint64_t GetSecondPartsLBA(void) {return secondHeader.partitionEntriesLBA;}
srs5694978041c2009-09-21 20:51:47 -0400154 uint32_t CountParts(void);
srs5694e4ac11e2009-08-31 10:13:04 -0400155
156 // Find information about free space
157 uint64_t FindFirstAvailable(uint64_t start = 0);
158 uint64_t FindFirstInLargest(void);
159 uint64_t FindLastAvailable(uint64_t start);
160 uint64_t FindLastInFree(uint64_t start);
srs5694e321d442010-01-29 17:44:04 -0500161 uint64_t FindFreeBlocks(uint32_t *numSegments, uint64_t *largestSegment);
srs5694e4ac11e2009-08-31 10:13:04 -0400162 int IsFree(uint64_t sector);
srs5694ba00fed2010-01-12 18:18:36 -0500163 int IsFreePartNum(uint32_t partNum);
164
165 // Change how functions work, or return information on same
166 void SetAlignment(int n) {sectorAlignment = n;}
167 int GetAlignment(void) {return sectorAlignment;}
168 void JustLooking(int i = 1) {justLooking = i;}
169 void BeQuiet(int i = 1) {beQuiet = i;}
170 WhichToUse WhichWasUsed(void) {return whichWasUsed;}
srs5694e4ac11e2009-08-31 10:13:04 -0400171
172 // Endianness functions
srs56940a697312010-01-28 21:10:52 -0500173 void ReverseHeaderBytes(struct GPTHeader* header);
srs5694e4ac11e2009-08-31 10:13:04 -0400174 void ReversePartitionBytes(); // for endianness
srs5694e7b4ff92009-08-18 13:16:10 -0400175}; // class GPTData
176
177// Function prototypes....
srs5694e7b4ff92009-08-18 13:16:10 -0400178int SizesOK(void);
179
180#endif