blob: 504e0390696f699e1f7dd8e45a60bc04bcdefbb4 [file] [log] [blame]
srs5694f2efa7d2011-03-01 22:03:26 -05001/* basicmbr.h -- MBR data structure definitions, types, and functions */
2
Roderick W. Smithe3ee7332013-09-24 12:56:11 -04003/* This program is copyright (c) 2009-2013 by Roderick W. Smith. It is distributed
srs5694f2efa7d2011-03-01 22:03:26 -05004 under the terms of the GNU GPL version 2, as detailed in the COPYING file. */
5
6#include <stdint.h>
7#include <sys/types.h>
srs5694f2efa7d2011-03-01 22:03:26 -05008#include "diskio.h"
srs5694bf8950c2011-03-12 01:23:12 -05009#include "mbrpart.h"
srs5694f2efa7d2011-03-01 22:03:26 -050010
11#ifndef __BASICMBRSTRUCTS
12#define __BASICMBRSTRUCTS
13
14#define MBR_SIGNATURE UINT16_C(0xAA55)
srs5694f2efa7d2011-03-01 22:03:26 -050015
16// Maximum number of MBR partitions
17#define MAX_MBR_PARTS 128
18
19using namespace std;
20
srs5694f2efa7d2011-03-01 22:03:26 -050021/****************************************
22 * *
23 * MBRData class and related structures *
24 * *
25 ****************************************/
26
srs5694f2efa7d2011-03-01 22:03:26 -050027// A 512-byte data structure into which the MBR can be loaded in one
28// go. Also used when loading logical partitions.
29#pragma pack(1)
30struct TempMBR {
31 uint8_t code[440];
32 uint32_t diskSignature;
33 uint16_t nulls;
34 struct MBRRecord partitions[4];
35 uint16_t MBRSignature;
36}; // struct TempMBR
John Paul Adrian Glaubitz2fb79512018-05-18 23:44:40 +020037#pragma pack ()
srs5694f2efa7d2011-03-01 22:03:26 -050038
39// Possible states of the MBR
40enum MBRValidity {invalid, gpt, hybrid, mbr};
41
42// Full data in tweaked MBR format
43class BasicMBRData {
44protected:
45 uint8_t code[440];
46 uint32_t diskSignature;
47 uint16_t nulls;
48 // MAX_MBR_PARTS defaults to 128. This array holds both the primary and
49 // the logical partitions, to simplify data retrieval for GPT conversions.
srs5694bf8950c2011-03-12 01:23:12 -050050 MBRPart partitions[MAX_MBR_PARTS];
srs5694f2efa7d2011-03-01 22:03:26 -050051 uint16_t MBRSignature;
52
53 // Above are basic MBR data; now add more stuff....
54 uint32_t blockSize; // block size (usually 512)
55 uint64_t diskSize; // size in blocks
srs5694bf8950c2011-03-12 01:23:12 -050056 uint32_t numHeads; // number of heads, in CHS scheme
57 uint32_t numSecspTrack; // number of sectors per track, in CHS scheme
srs5694f2efa7d2011-03-01 22:03:26 -050058 DiskIO* myDisk;
59 int canDeleteMyDisk;
60 string device;
61 MBRValidity state;
srs5694bf8950c2011-03-12 01:23:12 -050062 MBRPart* GetPartition(int i); // Return primary or logical partition
srs5694f2efa7d2011-03-01 22:03:26 -050063public:
64 BasicMBRData(void);
65 BasicMBRData(string deviceFilename);
Rod Smith9ae60192018-07-05 16:50:13 -040066 BasicMBRData(const BasicMBRData &);
srs5694f2efa7d2011-03-01 22:03:26 -050067 ~BasicMBRData(void);
68 BasicMBRData & operator=(const BasicMBRData & orig);
69
70 // File I/O functions...
71 int ReadMBRData(const string & deviceFilename);
72 int ReadMBRData(DiskIO * theDisk, int checkBlockSize = 1);
srs569423d8d542011-10-01 18:40:10 -040073 int ReadLogicalParts(uint64_t extendedStart, int partNum);
srs5694f2efa7d2011-03-01 22:03:26 -050074 int WriteMBRData(void);
75 int WriteMBRData(DiskIO *theDisk);
76 int WriteMBRData(const string & deviceFilename);
77 int WriteMBRData(struct TempMBR & mbr, DiskIO *theDisk, uint64_t sector);
srs5694bf8950c2011-03-12 01:23:12 -050078 void DiskSync(void) {myDisk->DiskSync();}
79 void SetDisk(DiskIO *theDisk);
srs5694f2efa7d2011-03-01 22:03:26 -050080
81 // Display data for user...
srs5694bf8950c2011-03-12 01:23:12 -050082 void DisplayMBRData(void);
srs5694f2efa7d2011-03-01 22:03:26 -050083 void ShowState(void);
84
srs5694bf8950c2011-03-12 01:23:12 -050085 // GPT checks and fixes...
86 int CheckForGPT(void);
87 int BlankGPTData(void);
88
srs5694f2efa7d2011-03-01 22:03:26 -050089 // Functions that set or get disk metadata (size, CHS geometry, etc.)
90 void SetDiskSize(uint64_t ds) {diskSize = ds;}
91 void SetBlockSize(uint32_t bs) {blockSize = bs;}
92 MBRValidity GetValidity(void) {return state;}
93 void SetHybrid(void) {state = hybrid;} // Set hybrid flag
srs5694bf8950c2011-03-12 01:23:12 -050094 void ReadCHSGeom(void);
95 int GetPartRange(uint32_t* low, uint32_t* high);
srs5694f2efa7d2011-03-01 22:03:26 -050096 int LBAtoCHS(uint64_t lba, uint8_t * chs); // Convert LBA to CHS
srs5694bf8950c2011-03-12 01:23:12 -050097 int FindOverlaps(void);
98 int NumPrimaries(void);
99 int NumLogicals(void);
100 int CountParts(void);
101 void UpdateCanBeLogical(void);
102 uint64_t FirstLogicalLBA(void);
103 uint64_t LastLogicalLBA(void);
104 int AreLogicalsContiguous(void);
105 int DoTheyFit(void);
106 int SpaceBeforeAllLogicals(void);
107 int IsLegal(void);
Roderick W. Smith042f38a2013-08-31 17:40:15 -0400108 int IsEEActive(void);
srs5694bf8950c2011-03-12 01:23:12 -0500109 int FindNextInUse(int start);
srs5694f2efa7d2011-03-01 22:03:26 -0500110
111 // Functions to create, delete, or change partitions
112 // Pass EmptyMBR 1 to clear the boot loader code, 0 to leave it intact
113 void EmptyMBR(int clearBootloader = 1);
114 void EmptyBootloader(void);
srs5694bf8950c2011-03-12 01:23:12 -0500115 void AddPart(int num, const MBRPart& newPart);
116 void MakePart(int num, uint64_t startLBA, uint64_t lengthLBA, int type = 0x07,
srs5694f2efa7d2011-03-01 22:03:26 -0500117 int bootable = 0);
118 int SetPartType(int num, int type);
119 int SetPartBootable(int num, int bootable = 1);
120 int MakeBiggestPart(int i, int type); // Make partition filling most space
121 void DeletePartition(int i);
srs5694bf8950c2011-03-12 01:23:12 -0500122 int SetInclusionwChecks(int num, int inclStatus);
srs5694f2efa7d2011-03-01 22:03:26 -0500123 void RecomputeCHS(int partNum);
srs5694bf8950c2011-03-12 01:23:12 -0500124 void SortMBR(int start = 0);
srs5694bf8950c2011-03-12 01:23:12 -0500125 int DeleteOversizedParts();
126 int DeleteExtendedParts();
127 void OmitOverlaps(void);
srs5694bf8950c2011-03-12 01:23:12 -0500128 void MaximizeLogicals();
129 void MaximizePrimaries();
130 void TrimPrimaries();
131 void MakeLogicalsContiguous(void);
132 void MakeItLegal(void);
133 int RemoveLogicalsFromFirstFour(void);
134 int MovePrimariesToFirstFour(void);
135 int CreateExtended(void);
srs5694f2efa7d2011-03-01 22:03:26 -0500136
137 // Functions to find information on free space....
srs5694bf8950c2011-03-12 01:23:12 -0500138 uint64_t FindFirstAvailable(uint64_t start = 1);
139 uint64_t FindLastInFree(uint64_t start);
140 uint64_t FindFirstInFree(uint64_t start);
srs5694bf8950c2011-03-12 01:23:12 -0500141 int SectorUsedAs(uint64_t sector, int topPartNum = MAX_MBR_PARTS);
srs5694f2efa7d2011-03-01 22:03:26 -0500142
143 // Functions to extract data on specific partitions....
144 uint8_t GetStatus(int i);
145 uint8_t GetType(int i);
srs5694bf8950c2011-03-12 01:23:12 -0500146 uint64_t GetFirstSector(int i);
147 uint64_t GetLength(int i);
148
149 // User interaction functions....
150 int DoMenu(const string& prompt = "\nMBR command (? for help): ");
151 void ShowCommands(void);
srs5694699941e2011-03-21 21:33:57 -0400152}; // class BasicMBRData
srs5694f2efa7d2011-03-01 22:03:26 -0500153
154#endif