-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecordDatabase.cpp
367 lines (300 loc) · 10.7 KB
/
RecordDatabase.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
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
#include <fstream>
#include <iostream>
#include "RecordDatabase.h"
#include "Rijndael.h"
RecordDatabase::RecordDatabase(void) {
dbChangeStatus = false;
// load the database
loadDatabase();
}
RecordDatabase::~RecordDatabase(void){
}
void RecordDatabase::loadDatabase() {
string entireRecords;
ifstream inFile ("pw.bin", ios::binary);
char* encBuffer = new char[pwBlockSize+1];
char plainBuf[pwBlockSize+1];
streamsize lastReadSize;
#ifdef DEC_ENABLED
CRijndael oRijndael;
try {
// Example Key, please change private key and store it in a secure fashion
oRijndael.MakeKey("x9z1v6f7q1l3m8p9f9s2tg3n5c5o5w9r", "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", pwBlockSize, pwBlockSize);
}
catch(exception& roException) {
std::cout << roException.what() << endl;
}
#endif
// readfile and store text into string entireRecords
if (inFile.is_open()) {
while (inFile.good()) {
inFile.read(encBuffer, pwBlockSize);
lastReadSize = inFile.gcount();
std::cout << "lastReadSize: "<<lastReadSize<<endl;
#ifdef DEC_ENABLED
memset(plainBuf, 0, pwBlockSize);
oRijndael.DecryptBlock(encBuffer, plainBuf);
plainBuf[lastReadSize] = '\0';
entireRecords += plainBuf;
#else
encBuffer[lastReadSize] = '\0';
//string tmp(buffer);
//std::cout << "buffer: "<<tmp<<endl;
entireRecords += encBuffer;
#endif
}
inFile.close();
}
else
std::cout << "Unable to open input/output file"<<endl;
std::cout << "Record string: "<<entireRecords<<endl;
// parse the string and load into map
//entireRecords.find("");
size_t found, prefound=13; // 13 for the string "<beginRecord>"
while (true) {
// assuming "</endRecord>" will be found within next 1000 chars
found = entireRecords.find("</endRecord>", prefound);
//found = entireRecords.find("google.com", prefound);
if (found == string::npos)
break;
string singleRecord = entireRecords.substr(prefound, found-prefound);
//std::cout << "Single record: "<<singleRecord<<endl;
// push the record into database
pushRecord(singleRecord);
found = entireRecords.find("<beginRecord>", found+13); // 13 for "</endRecord>\n"
if (found == string::npos) // we have reached end of records
break;
prefound = found+13;
}
}
// push single record into database
void RecordDatabase::pushRecord(string& record) {
size_t found = record.find('\n'), prefound;
AccountRecord recSingleInstance;
//std::cout << "new line found in position: "<<found<<endl;
string title = record.substr(0, found);
std::cout << "site title: "<<title<<endl;
prefound = found + 1;
found = record.find('\n', prefound);
string field = record.substr(prefound, found-prefound);
std::cout << "site URL: "<<field<<endl;
recSingleInstance.siteURL = field;
prefound = found+1;
found = record.find('\n', prefound);
field = record.substr(prefound, found-prefound);
std::cout << "tags: "<<field<<endl;
recSingleInstance.tags = field;
prefound = found+1;
found = record.find('\n', prefound);
field = record.substr(prefound, found-prefound);
std::cout << "site reg email: "<<field<<endl;
recSingleInstance.regEmail = field;
prefound = found+1;
found = record.find('\n', prefound);
field = record.substr(prefound, found-prefound);
std::cout << "user name: "<<field<<endl;
recSingleInstance.userName = field;
prefound = found+1;
found = record.find('\n', prefound);
field = record.substr(prefound, found-prefound);
std::cout << "password: "<<field<<endl<<endl;
recSingleInstance.password = field;
accountsMap[title] = recSingleInstance;
}
// This functions adds a record into our password database file
void RecordDatabase::addRecord() {
AccountRecord tempRecord;
std::cout << endl<<"Add record wizard"<<endl;
std::cout << "================="<<endl;
// Take Title, may contain space
string siteTitle;
std::cout << "Please enter site Title: ";
while (true) {
getline(cin, siteTitle);
if (accountsMap.find(siteTitle) == accountsMap.end())
break;
else
std::cout << endl<<"Record with this title already exists. Please enter different site title: ";
}
// Take URL, may contain space but cannot be empty
string url;
while (true) {
std::cout << "Please enter site URL: ";
getline(cin, url);
if (url.size())
break;
std::cout << "URL cannot be empty string. ";
}
// remove http:// from beginning of the string
if (!strncmp(url.c_str(), "http://", 7)) {
url.erase(0,7);
}
tempRecord.siteURL = url;
// Take tags, may contain space
string tags;
std::cout << "Enter tags (if any): ";
getline(cin, tags);
tempRecord.tags = tags;
// Take registration email address, can not contain space
string regEmail;
std::cout << "Enter email address used for registration: ";
cin>>regEmail;
tempRecord.regEmail = regEmail;
// Take username, can not contain space
string userName;
std::cout << "Enter user name: ";
cin>>userName;
tempRecord.userName = userName;
// Take passwd, can not contain space
string passwd;
std::cout << "Enter password: ";
cin>>passwd;
tempRecord.password = passwd;
accountsMap[siteTitle] = tempRecord;
dbChangeStatus = true;
std::cout << endl<<"Record has been added."<<endl<<endl;
}
void RecordDatabase::saveRecords() {
#ifdef ENC_ENABLED
CRijndael oRijndael;
#endif
ofstream outFile ("pw.bin", ofstream::binary);
int i;
map<string, AccountRecord>::iterator it;
AccountRecord *pRecord;
string entireRecords;
if (outFile.is_open() == false) {
std::cout << "Cannot open file for write."<<endl;
return ;
}
if (accountsMap.size() == 0) {
std::cout << "No record to save."<<endl;
outFile.close();
return ;
}
std::cout << "Trasnlating to text."<<endl;
for (it=accountsMap.begin(), i=1; it != accountsMap.end(); ++it, ++i) {
pRecord = &(*it).second;
entireRecords += "<beginRecord>";
entireRecords += (*it).first+"\n";
entireRecords += pRecord->siteURL+"\n";
entireRecords += pRecord->tags+"\n";
entireRecords += pRecord->regEmail+"\n";
entireRecords += pRecord->userName+"\n";
entireRecords += pRecord->password+"</endRecord>\n";
}
std::cout << "Writing text to file."<<endl;
if (outFile.is_open()) {
const char *startPos = entireRecords.c_str();;
char* inBuffer= (char *) startPos;
const size_t len = entireRecords.length();
size_t lengthToWrite;
char outBuffer[pwBlockSize+1] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
#ifdef ENC_ENABLED
try {
oRijndael.MakeKey("x9z1v6f7q1l3m8p9f9s2tg3n5c5o5w9r", "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", pwBlockSize, pwBlockSize);
}
catch(exception& roException) {
std::cout << roException.what() << endl;
}
#endif
bool notEndBlockFlag = true;
char* tmpBuffer = new char[pwBlockSize+1];
while (outFile.good() && ((inBuffer-startPos) < (signed) len) && notEndBlockFlag) {
if (inBuffer+pwBlockSize > startPos+len) {
lengthToWrite = startPos + len - inBuffer;
// technique to complete the block, we change the pointer inBuffer to tmpBuffer because inBuffer is pointing to a constant string
memcpy(tmpBuffer, inBuffer, lengthToWrite);
// put Z on rest of the block
for (size_t i=lengthToWrite; i<pwBlockSize; i++)
tmpBuffer[i] = 'Z';
inBuffer = tmpBuffer;
notEndBlockFlag = false;
}
//else
//lengthToWrite = pwBlockSize;
#ifdef ENC_ENABLED
// start here encryption
try {
oRijndael.EncryptBlock(inBuffer, outBuffer);
}
catch(exception& roException) {
std::cout << roException.what() << endl;
}
outFile.write(outBuffer, pwBlockSize);
#else
outFile.write(inBuffer, pwBlockSize);
#endif
// end here encryption
inBuffer+=pwBlockSize;
std::cout << "Writing block.."<<endl;
//buffer[pwBlockSize]=0;
//CharStr2HexStr((unsigned char*)szDataIn, szHex, 32);
//std::cout << szHex << endl;
}
delete tmpBuffer;
std::cout << "Write done."<<endl;
outFile.close();
}
else
std::cout << "Unable to open file."<<endl;
}
void RecordDatabase::showRecords() {
int i;
map<string, AccountRecord>::iterator it;
AccountRecord *pRecord;
std::cout << endl<<"Display entries"<<endl;
std::cout << "==============="<<endl;
if (accountsMap.size() == 0) {
std::cout << "No record in database has been entered yet."<<endl;
return ;
}
for (it=accountsMap.begin(), i=1; it != accountsMap.end(); ++it, ++i) {
pRecord = &(*it).second;
std::cout << "Record "<<i<<": "<<endl;
std::cout << " Title:\t"<<(*it).first<<endl;
std::cout << " URL:\t\t"<<pRecord->siteURL<<endl;
std::cout << " Tags:\t\t"<<pRecord->tags<<endl;
std::cout << " Reg Email:\t"<<pRecord->regEmail<<endl;
std::cout << " User Name:\t"<<pRecord->userName<<endl;
std::cout << " Password:\t"<<pRecord->password<<endl<<endl;
}
std::cout << endl;
}
void RecordDatabase::searchRecords() {
int i;
map<string, AccountRecord>::iterator it;
AccountRecord *pRecord;
string keyword;
std::cout << endl<<"Search entries"<<endl;
std::cout << "==============="<<endl;
if (accountsMap.size() == 0) {
std::cout << "No record in database has been entered yet."<<endl;
return ;
}
std::cout << "Please enter keyword to search: ";
cin>>keyword;
std::cout << endl<<"Search results on `"<<keyword<<"`:"<<endl;
int result_count=0;
for (it=accountsMap.begin(), i=1; it != accountsMap.end(); ++it, ++i) {
string title = (*it).first;
pRecord = &(*it).second;
string tags = pRecord->tags;
if (string::npos != title.find(keyword) || string::npos != tags.find(keyword)) {
std::cout << "Record index "<<i<<": "<<endl;
std::cout << " Title:\t"<<title<<endl;
std::cout << " URL:\t\t"<<pRecord->siteURL<<endl;
std::cout << " Tags:\t\t"<<tags<<endl;
std::cout << " Reg Email:\t"<<pRecord->regEmail<<endl;
std::cout << " User Name:\t"<<pRecord->userName<<endl;
std::cout << " Password:\t"<<pRecord->password<<endl<<endl;
result_count++;
}
}
if (result_count)
std::cout << "Number of results returned: "<<result_count<<endl;
std::cout << endl;
}
bool RecordDatabase::hasChanged() {
return dbChangeStatus;
}