blob: f1225707245ae7bce3fca2a2d25e5a65ab012057 [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
srs56946699b012010-02-04 00:55:30 -050019#define GPTFDISK_VERSION "0.6.3"
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;
srs56946699b012010-02-04 00:55:30 -050047 GUIDData diskGUID;
srs5694e7b4ff92009-08-18 13:16:10 -040048 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
srs5694ba00fed2010-01-12 18:18:36 -050075 int beQuiet;
76 WhichToUse whichWasUsed;
srs5694e7b4ff92009-08-18 13:16:10 -040077public:
srs5694e4ac11e2009-08-31 10:13:04 -040078 // Basic necessary functions....
srs5694e7b4ff92009-08-18 13:16:10 -040079 GPTData(void);
srs5694fed16d02010-01-27 23:03:40 -050080 GPTData(string deviceFilename);
srs5694e7b4ff92009-08-18 13:16:10 -040081 ~GPTData(void);
srs5694e4ac11e2009-08-31 10:13:04 -040082
83 // Verify (or update) data integrity
84 int Verify(void);
srs5694e7b4ff92009-08-18 13:16:10 -040085 int CheckGPTSize(void);
srs5694e4ac11e2009-08-31 10:13:04 -040086 int CheckHeaderValidity(void);
87 int CheckHeaderCRC(struct GPTHeader* header);
88 void RecomputeCRCs(void);
89 void RebuildMainHeader(void);
90 void RebuildSecondHeader(void);
91 int FindHybridMismatches(void);
92 int FindOverlaps(void);
93
94 // Load or save data from/to disk
srs56940a697312010-01-28 21:10:52 -050095 int LoadMBR(const string & f) {return protectiveMBR.ReadMBRData(f);}
srs5694546a9c72010-01-26 16:00:26 -050096 void PartitionScan(void);
srs56940a697312010-01-28 21:10:52 -050097 int LoadPartitions(const string & deviceFilename);
srs5694546a9c72010-01-26 16:00:26 -050098 int ForceLoadGPTData(void);
srs5694e7b4ff92009-08-18 13:16:10 -040099 int LoadMainTable(void);
srs5694546a9c72010-01-26 16:00:26 -0500100 int LoadSecondTableAsMain(void);
srs5694ba00fed2010-01-12 18:18:36 -0500101 int SaveGPTData(int quiet = 0);
srs56940a697312010-01-28 21:10:52 -0500102 int SaveGPTBackup(const string & filename);
103 int LoadGPTBackup(const string & filename);
srs5694e4ac11e2009-08-31 10:13:04 -0400104
105 // Display data....
106 void ShowAPMState(void);
107 void ShowGPTState(void);
srs5694e7b4ff92009-08-18 13:16:10 -0400108 void DisplayGPTData(void);
109 void DisplayMBRData(void) {protectiveMBR.DisplayMBRData();}
110 void ShowDetails(void);
111 void ShowPartDetails(uint32_t partNum);
srs5694e4ac11e2009-08-31 10:13:04 -0400112
113 // Request information from the user (& possibly do something with it)
114 uint32_t GetPartNum(void);
115 void ResizePartitionTable(void);
srs5694e7b4ff92009-08-18 13:16:10 -0400116 void CreatePartition(void);
117 void DeletePartition(void);
srs5694e4ac11e2009-08-31 10:13:04 -0400118 void ChangePartType(void);
119 void SetAttributes(uint32_t partNum);
srs5694978041c2009-09-21 20:51:47 -0400120 int DestroyGPT(int prompt = 1); // Returns 1 if user proceeds
srs5694e4ac11e2009-08-31 10:13:04 -0400121
srs5694978041c2009-09-21 20:51:47 -0400122 // Convert between GPT and other formats (may require user interaction)
srs5694e4ac11e2009-08-31 10:13:04 -0400123 WhichToUse UseWhichPartitions(void);
srs5694221e0872009-08-29 15:00:31 -0400124 int XFormPartitions(void);
125 int XFormDisklabel(int OnGptPart = -1);
srs5694e321d442010-01-29 17:44:04 -0500126 int XFormDisklabel(BSDData* disklabel, uint32_t startPart);
srs5694978041c2009-09-21 20:51:47 -0400127 int OnePartToMBR(uint32_t gptPart, int mbrPart); // add one partition to MBR. Returns 1 if successful
128 int XFormToMBR(void); // convert GPT to MBR, wiping GPT afterwards. Returns 1 if successful
srs5694e4ac11e2009-08-31 10:13:04 -0400129 void MakeHybrid(void);
130
131 // Adjust GPT structures WITHOUT user interaction...
132 int SetGPTSize(uint32_t numEntries);
133 void BlankPartitions(void);
srs5694ba00fed2010-01-12 18:18:36 -0500134 int DeletePartition(uint32_t partNum);
srs5694e321d442010-01-29 17:44:04 -0500135 uint32_t CreatePartition(uint32_t partNum, uint64_t startSector, uint64_t endSector);
srs5694e7b4ff92009-08-18 13:16:10 -0400136 void SortGPT(void);
137 int ClearGPTData(void);
srs5694247657a2009-11-26 18:36:12 -0500138 void MoveSecondHeaderToEnd();
srs56940a697312010-01-28 21:10:52 -0500139 int SetName(uint32_t partNum, const string & theName = "");
srs5694e7b4ff92009-08-18 13:16:10 -0400140 void SetDiskGUID(GUIDData newGUID);
141 int SetPartitionGUID(uint32_t pn, GUIDData theGUID);
srs5694ba00fed2010-01-12 18:18:36 -0500142 int ChangePartType(uint32_t pn, uint16_t hexCode);
srs5694e4ac11e2009-08-31 10:13:04 -0400143 void MakeProtectiveMBR(void) {protectiveMBR.MakeProtectiveMBR();}
srs56941d1448a2009-12-31 21:20:19 -0500144 int Align(uint64_t* sector);
srs5694e7b4ff92009-08-18 13:16:10 -0400145
146 // Return data about the GPT structures....
srs5694e4ac11e2009-08-31 10:13:04 -0400147 int GetPartRange(uint32_t* low, uint32_t* high);
srs5694e7b4ff92009-08-18 13:16:10 -0400148 uint32_t GetNumParts(void) {return mainHeader.numParts;}
149 uint64_t GetMainHeaderLBA(void) {return mainHeader.currentLBA;}
150 uint64_t GetSecondHeaderLBA(void) {return secondHeader.currentLBA;}
151 uint64_t GetMainPartsLBA(void) {return mainHeader.partitionEntriesLBA;}
152 uint64_t GetSecondPartsLBA(void) {return secondHeader.partitionEntriesLBA;}
srs5694978041c2009-09-21 20:51:47 -0400153 uint32_t CountParts(void);
srs5694e4ac11e2009-08-31 10:13:04 -0400154
155 // Find information about free space
156 uint64_t FindFirstAvailable(uint64_t start = 0);
157 uint64_t FindFirstInLargest(void);
158 uint64_t FindLastAvailable(uint64_t start);
159 uint64_t FindLastInFree(uint64_t start);
srs5694e321d442010-01-29 17:44:04 -0500160 uint64_t FindFreeBlocks(uint32_t *numSegments, uint64_t *largestSegment);
srs5694e4ac11e2009-08-31 10:13:04 -0400161 int IsFree(uint64_t sector);
srs5694ba00fed2010-01-12 18:18:36 -0500162 int IsFreePartNum(uint32_t partNum);
163
164 // Change how functions work, or return information on same
165 void SetAlignment(int n) {sectorAlignment = n;}
166 int GetAlignment(void) {return sectorAlignment;}
167 void JustLooking(int i = 1) {justLooking = i;}
168 void BeQuiet(int i = 1) {beQuiet = i;}
169 WhichToUse WhichWasUsed(void) {return whichWasUsed;}
srs5694e4ac11e2009-08-31 10:13:04 -0400170
171 // Endianness functions
srs56940a697312010-01-28 21:10:52 -0500172 void ReverseHeaderBytes(struct GPTHeader* header);
srs5694e4ac11e2009-08-31 10:13:04 -0400173 void ReversePartitionBytes(); // for endianness
srs5694e7b4ff92009-08-18 13:16:10 -0400174}; // class GPTData
175
176// Function prototypes....
srs5694e7b4ff92009-08-18 13:16:10 -0400177int SizesOK(void);
178
179#endif