-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPageFileManager.cpp
More file actions
393 lines (360 loc) · 10.7 KB
/
Copy pathPageFileManager.cpp
File metadata and controls
393 lines (360 loc) · 10.7 KB
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
#include "singleFileSystem/PageFileManager.h"
#include "singleFileSystem/DS_HugeFile.h"
#include "FormatString.h"
#include "fileUtils/_splitpath.h"
#include "fileUtils/_fileExists.h"
#include "singleFileSystem/SFSUtils.h"
#include "encription/AES.h"
#if defined WIN32 || defined WIN64
#include <windows.h>
#else
#include <sys/statvfs.h>
#endif
using namespace DataStructures;
// constructor
PageFileManager::PageFileManager(const char *fileName, const char *mode, const char *password, bool isInMemory,
int pageSize, int extentPageCount, __s64 partFileSize)
{
memset(mKey, 0, MAX_PASSWORD_LENGTH);
if (pageSize < MIN_PAGE_SIZE)
//page size should be >= MIN_PAGE_SIZE
assert(false);
if (extentPageCount <= 0)
//extent page count should be >= 1 Page.
assert(false);
mFileName = fileName;
mInMemory = isInMemory;
char drive[32];
char folder[250];
char filename[250];
char extension[32];
_splitpath(fileName, drive, folder, filename, extension);
HexString databaseName = drive;
databaseName += folder;
mReadOnly = false;
mPassword = password;
HexString myMode = mode;
if ((myMode.FindIString("r") >=0) && (myMode.FindIString("+") < 0))
mReadOnly = true;
mExclusive = false;
//roc todo
//if ((mode & fmShareExclusive) == fmShareExclusive)
mExclusive = true;
if (myMode.FindIString("w") >= 0)
{
// create Single file
mSFSFile = new HugeFile(fileName, mReadOnly, mExclusive, mInMemory, partFileSize);
mSFSFile->Open(true);
memset(&mHeader, 0, sizeof(SingleFileHeader));
memcpy(mHeader.signature, SFS_SIGNATURE, SFS_SIGNATURE_SIZE);
mHeader.version = SFS_CURRENT_VERSION;
mHeader.pageSize = pageSize; // since v.2.10 - to allow 600 bytes pages
mHeader.extentPageCount = extentPageCount;
mHeader.hdrPageCount = 1;
mHeader.totalPageCount = 1;
mHeader.encMethod = ENC_NONE;
if (password && strlen(password) > 0)
{
mHeader.encMethod = ENC_RIJNDAEL;
CreatePasswordHeader(&mHeader.passwordHeader, password);
}
SaveSFHeader();
}
else
{
if (!_fileExists(fileName))
//file not found
assert(false);
mSFSFile = new HugeFile(fileName, mReadOnly, mExclusive, mInMemory);
// open file and ignore corruption errors
if (!mSFSFile->Open(false, true))
{
delete mSFSFile;
mSFSFile = 0;
//file has corrupted header
assert(false);
}
LoadSFHeader();
}
// decode default key for user files
if (mHeader.encMethod != ENC_NONE)
{
CheckPassword(&mHeader.passwordHeader, mPassword, mKey);
}
}
PageFileManager::~PageFileManager()
{
if (mSFSFile)
delete mSFSFile;
mSFSFile = 0;
}
__s64 PageFileManager::PageNoToOffset(int pageNo)
{
return pageNo * mHeader.pageSize;
}
bool PageFileManager::EncodeBuffer(char *buffer, long size, unsigned char encType, const char *password)
{
bool unknownEncType = false;
switch (encType)
{
case 0: ;// no encoding
break;
case 1:
{
AESContext encContext;
AESContext decContext;
init_AES((unsigned char *)password, MAX_PASSWORD_LENGTH >> 2, &encContext, &decContext);
blockEncrypt(&encContext, (unsigned char *)buffer, (int)size, (unsigned char *)buffer);
}
break;
default:
unknownEncType = true;
}
// unknown type?
if (unknownEncType)
//Unknown encryption type');
assert(false);
return true;
}
bool PageFileManager::DecodeBuffer(char *buffer, long size, unsigned char encType, const char *password)
{
bool unknownEncType = false;
switch (encType)
{
case 0: ;// no encoding
break;
case 1:
{
AESContext encContext;
AESContext decContext;
init_AES((unsigned char *)password, MAX_PASSWORD_LENGTH >> 2, &encContext, &decContext);
blockDecrypt(&decContext, (unsigned char *)buffer, (int)size, (unsigned char *)buffer);
}
break;
default:
unknownEncType = true;
}
// unknown type?
if (unknownEncType)
return false;
return true;
}
bool PageFileManager::InternalLoadHeader(__s64 fileOffset)
{
bool ok = true;
mSFSFile->Seek(fileOffset, SEEK_SET);
mSFSFile->ReadBuffer(&mHeader, SINGLE_FILE_HEADER_SIZE);
// check signature
if (memcmp(mHeader.signature, SFS_SIGNATURE, SFS_SIGNATURE_SIZE) != 0)
ok = false;
else
{
// check crc
int size = SINGLE_FILE_HEADER_SIZE - sizeof(mHeader.signature) - sizeof(__u32);
__u32 crc = CountCRC((char *)&mHeader.version, size, 0);
if (mHeader.crc != crc)
ok = false;
}
return ok;
}
long int PageFileManager::GetPageDataSize()
{
return mHeader.pageSize - SFS_PAGE_HEADER_SIZE;
}
void PageFileManager::SetInMemory(bool value)
{
mSFSFile->SetInMemory(value);
}
void PageFileManager::LoadSFHeader()
{
// try to open header (it is always placed at the beginning of Single file)
if (!InternalLoadHeader(0))
//LoadHeader - Invalid SFS file, header is corrupted
assert(false);
}
void PageFileManager::SaveSFHeader()
{
if (mReadOnly)
return;
// count header crc
int size = SINGLE_FILE_HEADER_SIZE - sizeof(mHeader.signature) - sizeof(__u32);
mHeader.crc = CountCRC((char *)&mHeader.version, size, CRC_FAST);
// seek to beginnig of header
mSFSFile->Seek(0, SEEK_SET);
// write primary Single file header
mSFSFile->WriteBuffer(&mHeader, SINGLE_FILE_HEADER_SIZE);
}
void PageFileManager::AllocPageBuffer(FFPage *ffPage)
{
ffPage->pageHeader.nextPageNo = -1; // no next page
ffPage->pageHeader.encType = 0; // no encryption
ffPage->pageHeader.crcType = 0; // fast CRC
ffPage->pData = malloc(GetPageDataSize());
}
void PageFileManager::FreePageBuffer(FFPage *ffPage)
{
free(ffPage->pData);
}
bool PageFileManager::ReadPage(FFPage *buffer, int pageNo, int size, const char *password, bool ignoreEncrypted)
{
mLastError = ER_Ok;
char key[MAX_PASSWORD_LENGTH];
if (!password || !strlen(password))
memcpy(key, mKey, MAX_PASSWORD_LENGTH);
else
memcpy(key, password, MAX_PASSWORD_LENGTH);
if (size < 0)
size = (int)GetPageDataSize();
// calc offset
__s64 offset = PageNoToOffset(pageNo);
// seek
mSFSFile->Seek(offset, SEEK_SET);
// read page header
bool result = mSFSFile->Read(&buffer->pageHeader, SFS_PAGE_HEADER_SIZE) == SFS_PAGE_HEADER_SIZE;
if (!result)
{
mLastError = ER_ReadPageHeaderError;
return result;
}
// read header only
if (size == 0)
return result;
// if OK
if (buffer->pData == 0)
//ReadPage - pData is ULL
assert(false);
result = mSFSFile->Read(buffer->pData, size) == size;
if (!result)
{
mLastError = ER_ReadPageError;
return result;
}
// check CRC
result = CheckCRC((char *)buffer->pData, size, buffer->pageHeader.crcType, buffer->pageHeader.crc);
if (!result)
{
mLastError = ER_CRCError;
assert(result);
}
// decrypt if necessary
if (!ignoreEncrypted)
result = DecodeBuffer((char *)buffer->pData, size, buffer->pageHeader.encType, key);
if (!result)
mLastError = ER_DecodeError;
return result;
}
bool PageFileManager::WritePage(FFPage *buffer, int pageNo, int size, const char *password)
{
mLastError = ER_Ok;
char key[MAX_PASSWORD_LENGTH];
if (!password || !strlen(password))
memcpy(key, mKey, MAX_PASSWORD_LENGTH);
else
memcpy(key, password, MAX_PASSWORD_LENGTH);
if (size < 0)
size = (int)GetPageDataSize();
bool result = true;
// page data presents?
if ((buffer->pData != 0) && (size > 0))
{
// encrypt
result = EncodeBuffer((char *)buffer->pData, size, buffer->pageHeader.encType, key);
if (!result)
{
mLastError = ER_EncodeError;
return false;
}
// calc CRC
buffer->pageHeader.crc = CountCRC((char *)buffer->pData, size, buffer->pageHeader.crcType);
}
// calc offset
__s64 offset = PageNoToOffset(pageNo);
// seek
mSFSFile->Seek(offset, SEEK_SET);
// write page header
result = mSFSFile->Write(&buffer->pageHeader, SFS_PAGE_HEADER_SIZE) == SFS_PAGE_HEADER_SIZE;
if (!result)
{
mLastError = ER_WritePageHeaderError;
return result;
}
if ((buffer->pData != 0) && (size > 0))
result = mSFSFile->Write(buffer->pData, size) == size;
if (!result)
mLastError = ER_WritePageError;
return result;
}
bool PageFileManager::AppendPages(int qty)
{
bool result = false;
mSFSFile->SetSize((mHeader.totalPageCount + qty) * mHeader.pageSize);
if (mSFSFile->GetSize() == (mHeader.totalPageCount + qty) * mHeader.pageSize)
result = true;
if (result)
{
mHeader.totalPageCount += qty;
SaveSFHeader();
}
return result;
}
void PageFileManager::DeletePagesFromEOF(int qty)
{
// file size
__s64 fileSize = mSFSFile->GetSize();
// get total pages count in file
int pageCount = (int)(fileSize / mHeader.pageSize);
if ((fileSize % mHeader.pageSize) > 0)
pageCount ++;
// calc new file size
fileSize = (pageCount - qty) * mHeader.pageSize;
if (pageCount < qty)
//DeletePagesFromEOF - attempt to delete more pages than exists.
assert(false);
// resize file
mSFSFile->SetSize(fileSize);
}
bool PageFileManager::RenameFile(const char *newName)
{
return mSFSFile->RenameFile(newName);
}
bool PageFileManager::DeleteFile()
{
return mSFSFile->DeleteFile();
}
void PageFileManager::FlushFileBuffers()
{
mSFSFile->FlushBuffers();
}
void PageFileManager::LoadFromStream(Stream *stream)
{
if (!mSFSFile)
//LoadFromStream - SFSFile = NULL
assert(false);
mSFSFile->LoadFromStream(stream);
LoadSFHeader();
// decode default key for user files
if (mHeader.encMethod != ENC_NONE)
CheckPassword(&mHeader.passwordHeader, mPassword, mKey);
}
__s64 PageFileManager::DiskFree()
{
//return heap size of diskspace
#if defined WIN32 || defined WIN64
DWORD sectorsPerCluster;
DWORD bytesPerSector;
DWORD numberOfFreeClusters;
DWORD totalNumberOfClusters;
bool ret = GetDiskFreeSpace(L"/", §orsPerCluster, &bytesPerSector, &numberOfFreeClusters, &totalNumberOfClusters);
if (ret)
return numberOfFreeClusters * sectorsPerCluster * bytesPerSector;
else
return 0;
#else
struct statvfs st;
int ret = statvfs("/", &st);
if (ret == 0)
return st.f_bsize * st.f_bfree;
else
return 0;
#endif
}