-
Notifications
You must be signed in to change notification settings - Fork 0
/
BKImgFile.cpp
279 lines (237 loc) · 6.58 KB
/
BKImgFile.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#include "pch.h"
#include "BKImgFile.h"
#include "StringUtil.h"
#include "hashes/sha1.hpp"
constexpr auto BLOCK_SIZE = 512;
CBKImgFile::CBKImgFile()
: m_nCylinders(83), m_nHeads(2), m_nSectors(10)
, m_f(nullptr)
{
}
CBKImgFile::CBKImgFile(const std::wstring &strName, const bool bWrite)
: m_nCylinders(83), m_nHeads(2), m_nSectors(10)
, m_f(nullptr)
{
Open(strName, bWrite);
}
CBKImgFile::~CBKImgFile()
{
Close();
}
bool CBKImgFile::Open(const fs::path &pathName, const bool bWrite)
{
std::wstring strName = pathName.wstring();
// сперва проверим, что за имя входного файла
if (strName.length() >= 4)
{
std::wstring st = strName.substr(0, 4);
//if (st == L"\\\\.\\") // если начинается с этого
//{
//}
}
bool bRet = false;
// открываем образ
const char* strMode = bWrite ? "r+b" : "rb";
m_f = fopen(pathName.string().c_str(), strMode);
if (m_f)
{
bRet = true;
}
if (bRet)
{
m_strName = pathName.wstring();
}
return bRet;
}
void CBKImgFile::Close()
{
if (m_f)
{
fclose(m_f);
m_f = nullptr;
}
}
void CBKImgFile::SetGeometry(const uint8_t c, const uint8_t h, const uint8_t s)
{
if (c != 0xff)
{
m_nCylinders = c;
}
if (h != 0xff)
{
m_nHeads = h;
}
if (s != 0xff)
{
m_nSectors = s;
}
}
CBKImgFile::CHS CBKImgFile::ConvertLBA(const uint32_t lba) const
{
CHS ret;
// превратить смещение в байтах в позицию в c:h:s;
// поскольку формат строго фиксирован: c=80 h=2 s=10, а перемещения предполагаются только по границам секторов
uint32_t t = static_cast<uint32_t>(m_nHeads) * static_cast<uint32_t>(m_nSectors);
ret.c = lba / t;
t = lba % t;
ret.h = static_cast<uint8_t>(t / static_cast<uint32_t>(m_nSectors));
ret.s = static_cast<uint8_t>(t % static_cast<uint32_t>(m_nSectors)) + 1;
return ret;
}
uint32_t CBKImgFile::ConvertCHS(const CHS chs) const
{
return ConvertCHS(chs.c, chs.h, chs.s);
}
uint32_t CBKImgFile::ConvertCHS(const uint8_t c, const uint8_t h, const uint8_t s) const
{
uint32_t lba = (static_cast<uint32_t>(c) * static_cast<uint32_t>(m_nHeads) + static_cast<uint32_t>(h)) * static_cast<uint32_t>(m_nSectors) + static_cast<uint32_t>(s) - 1;
return lba;
}
//bool CBKImgFile::ReadCHS(void *buffer, const uint8_t cyl, const uint8_t head, const uint8_t sector, const UINT numSectors) const
//{
// if (m_f)
// {
// UINT lba = ConvertCHS(cyl, head, sector) * BLOCK_SIZE;
//
// if (0 == fseek(m_f, lba, SEEK_SET))
// {
// lba = numSectors * BLOCK_SIZE;
// return (lba == fread(buffer, 1, lba, m_f));
// }
//
// return false;
// }
//
// if (m_h != INVALID_HANDLE_VALUE)
// {
// FD_READ_WRITE_PARAMS rwp = { FD_OPTION_MFM, head, cyl, head, sector, 2, sector, 0x0a, 0xff };
// return IOOperation(IOCTL_FDCMD_READ_DATA, &rwp, buffer, numSectors);
// }
//
// return false;
//}
//bool CBKImgFile::WriteCHS(void *buffer, const uint8_t cyl, const uint8_t head, const uint8_t sector, const UINT numSectors) const
//{
// if (m_f)
// {
// UINT lba = ConvertCHS(cyl, head, sector) * BLOCK_SIZE;
//
// if (0 == fseek(m_f, lba, SEEK_SET))
// {
// lba = numSectors * BLOCK_SIZE;
// return (lba == fwrite(buffer, 1, lba, m_f));
// }
//
// return false;
// }
//
// if (m_h != INVALID_HANDLE_VALUE)
// {
// FD_READ_WRITE_PARAMS rwp = { FD_OPTION_MFM, head, cyl, head, sector, 2, sector, 0x0a, 0xff };
// return IOOperation(IOCTL_FDCMD_WRITE_DATA, &rwp, buffer, numSectors);
// }
//
// return false;
//}
bool CBKImgFile::ReadLBA(void *buffer, const uint32_t lba, const uint32_t numSectors) const
{
if (m_f)
{
if (0 == fseek(m_f, lba * BLOCK_SIZE, SEEK_SET))
{
uint32_t size = numSectors * BLOCK_SIZE;
return (size == fread(buffer, 1, size, m_f));
}
return false;
}
return false;
}
bool CBKImgFile::WriteLBA(void *buffer, const uint32_t lba, const uint32_t numSectors) const
{
if (m_f)
{
if (0 == fseek(m_f, lba * BLOCK_SIZE, SEEK_SET))
{
uint32_t size = numSectors * BLOCK_SIZE;
return (size == fwrite(buffer, 1, size, m_f));
}
return false;
}
return false;
}
long CBKImgFile::GetFileSize() const
{
if (m_f)
{
// #ifdef TARGET_WINXP
// FILE *f = _tfopen(m_strName.c_str(), _T("rb"));
//
// if (f)
// {
// fseek(f, 0, SEEK_END);
// long sz = ftell(f);
// fclose(f);
// return sz;
// }
//
// return -1;
// #else
// // вот этого нет в Windows XP, оно возвращает -1 вместо размера.
// // оказывается это древний баг в рантайме, который даже чинили
// // но он всё равно просочился и на него ужа забили из-за прекращения
// // поддержки WinXP
// struct _stat stat_buf;
// int rc = _wstat(m_strName.c_str(), &stat_buf);
// return rc == 0 ? stat_buf.st_size : -1;
// #endif
std::error_code ec;
long rc = fs::file_size(m_strName, ec);
return (ec) ? -1 : rc;
}
return -1;
}
bool CBKImgFile::SeekTo00() const
{
if (m_f)
{
return (0 == fseek(m_f, 0, SEEK_SET));
}
return false;
}
bool CBKImgFile::IsFileOpen() const
{
if (m_f)
{
return true;
}
return false;
}
std::wstring CBKImgFile::CalcImageSHA1()
{
if (!m_f)
return L"";
const size_t bufferSizeInBlocks = 32;
const size_t bufferSizeInBytes = BLOCK_SIZE * bufferSizeInBlocks;
long sizeTotal = GetFileSize();
if (sizeTotal < 0)
return L"";
std::vector<uint8_t> vec(bufferSizeInBytes);
uint32_t lbano = 0;
SHA1 hash;
long reminder = sizeTotal;
while (reminder > 0)
{
uint32_t blocksToRead = reminder >= bufferSizeInBytes
? bufferSizeInBlocks
: (reminder + BLOCK_SIZE - 1) / BLOCK_SIZE;
if (!ReadLBA(vec.data(), lbano, blocksToRead))
{
std::wcout << L"Проблема при чтении образа диска при подсчёте SHA1." << std::endl;
return L"";
}
hash.update(vec.data(), blocksToRead * BLOCK_SIZE);
lbano += blocksToRead;
reminder -= blocksToRead * BLOCK_SIZE;
}
return strUtil::stringToWstring(hash.final());
}