FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
chips/src/dbwrapper.cpp at master · https-github-com-goodman-ops/chips · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
https-github-com-goodman-ops
/
chips
Public
forked from
chips-blockchain/chips
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
chips
/
src
/
dbwrapper.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
232 lines (202 loc) · 7.68 KB
Breadcrumbs
chips
/
src
/
dbwrapper.cpp
Copy path
File metadata and controls
232 lines (202 loc) · 7.68 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
//
Copyright (c) 2012-2017 The Bitcoin Core developers
//
Distributed under the MIT software license, see the accompanying
//
file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
include
<
dbwrapper.h
>
#
include
<
random.h
>
#
include
<
leveldb/cache.h
>
#
include
<
leveldb/env.h
>
#
include
<
leveldb/filter_policy.h
>
#
include
<
memenv.h
>
#
include
<
stdint.h
>
#
include
<
algorithm
>
class
CBitcoinLevelDBLogger
:
public
leveldb
::Logger {
public:
//
This code is adapted from posix_logger.h, which is why it is using vsprintf.
//
Please do not do this in normal code
void
Logv
(
const
char
* format, va_list ap)
override
{
if
(!
LogAcceptCategory
(BCLog::
LEVELDB
)) {
return
;
}
char
buffer[
500
];
for
(
int
iter =
0
; iter <
2
; iter++) {
char
* base;
int
bufsize;
if
(iter ==
0
) {
bufsize =
sizeof
(buffer);
base = buffer;
}
else
{
bufsize =
30000
;
base =
new
char
[bufsize];
}
char
* p = base;
char
* limit = base + bufsize;
//
Print the message
if
(p < limit) {
va_list backup_ap;
va_copy
(backup_ap, ap);
//
Do not use vsnprintf elsewhere in bitcoin source code, see above.
p +=
vsnprintf
(p, limit - p, format, backup_ap);
va_end
(backup_ap);
}
//
Truncate to available space if necessary
if
(p >= limit) {
if
(iter ==
0
) {
continue
;
//
Try again with larger buffer
}
else
{
p = limit -
1
;
}
}
//
Add newline if necessary
if
(p == base || p[-
1
] !=
'
\n
'
) {
*p++ =
'
\n
'
;
}
assert
(p <= limit);
base[
std::min
(bufsize -
1
, (
int
)(p - base))] =
'
\0
'
;
LogPrintf
(
"
leveldb: %s
"
, base);
if
(base != buffer) {
delete[]
base;
}
break
;
}
}
};
static
leveldb::Options
GetOptions
(
size_t
nCacheSize)
{
leveldb::Options options;
options.
block_cache
=
leveldb::NewLRUCache
(nCacheSize /
2
);
options.
write_buffer_size
= nCacheSize /
4
;
//
up to two write buffers may be held in memory simultaneously
options.
filter_policy
=
leveldb::NewBloomFilterPolicy
(
10
);
options.
compression
= leveldb::
kNoCompression
;
options.
max_open_files
=
64
;
options.
info_log
=
new
CBitcoinLevelDBLogger
();
if
(leveldb::
kMajorVersion
>
1
|| (leveldb::
kMajorVersion
==
1
&& leveldb::
kMinorVersion
>=
16
)) {
//
LevelDB versions before 1.16 consider short writes to be corruption. Only trigger error
//
on corruption in later versions.
options.
paranoid_checks
=
true
;
}
return
options;
}
CDBWrapper::CDBWrapper
(
const
fs::path& path,
size_t
nCacheSize,
bool
fMemory
,
bool
fWipe
,
bool
obfuscate)
: m_name(fs::basename(path))
{
penv =
nullptr
;
readoptions.
verify_checksums
=
true
;
iteroptions.
verify_checksums
=
true
;
iteroptions.
fill_cache
=
false
;
syncoptions.
sync
=
true
;
options =
GetOptions
(nCacheSize);
options.
create_if_missing
=
true
;
if
(
fMemory
) {
penv =
leveldb::NewMemEnv
(
leveldb::Env::Default
());
options.
env
= penv;
}
else
{
if
(
fWipe
) {
LogPrintf
(
"
Wiping LevelDB in %s
\n
"
, path.
string
());
leveldb::Status result =
leveldb::DestroyDB
(path.
string
(), options);
dbwrapper_private::HandleError
(result);
}
TryCreateDirectories
(path);
LogPrintf
(
"
Opening LevelDB in %s
\n
"
, path.
string
());
}
leveldb::Status status =
leveldb::DB::Open
(options, path.
string
(), &pdb);
dbwrapper_private::HandleError
(status);
LogPrintf
(
"
Opened LevelDB successfully
\n
"
);
if
(
gArgs
.
GetBoolArg
(
"
-forcecompactdb
"
,
false
)) {
LogPrintf
(
"
Starting database compaction of %s
\n
"
, path.
string
());
pdb->
CompactRange
(
nullptr
,
nullptr
);
LogPrintf
(
"
Finished database compaction of %s
\n
"
, path.
string
());
}
//
The base-case obfuscation key, which is a noop.
obfuscate_key = std::vector<
unsigned
char
>(
OBFUSCATE_KEY_NUM_BYTES
,
'
\000
'
);
bool
key_exists =
Read
(
OBFUSCATE_KEY_KEY
, obfuscate_key);
if
(!key_exists && obfuscate &&
IsEmpty
()) {
//
Initialize non-degenerate obfuscation if it won't upset
//
existing, non-obfuscated data.
std::vector<
unsigned
char
> new_key =
CreateObfuscateKey
();
//
Write `new_key` so we don't obfuscate the key with itself
Write
(
OBFUSCATE_KEY_KEY
, new_key);
obfuscate_key = new_key;
LogPrintf
(
"
Wrote new obfuscate key for %s: %s
\n
"
, path.
string
(),
HexStr
(obfuscate_key));
}
LogPrintf
(
"
Using obfuscation key for %s: %s
\n
"
, path.
string
(),
HexStr
(obfuscate_key));
}
CDBWrapper::~CDBWrapper
()
{
delete
pdb;
pdb =
nullptr
;
delete
options.
filter_policy
;
options.
filter_policy
=
nullptr
;
delete
options.
info_log
;
options.
info_log
=
nullptr
;
delete
options.
block_cache
;
options.
block_cache
=
nullptr
;
delete
penv;
options.
env
=
nullptr
;
}
bool
CDBWrapper::WriteBatch
(CDBBatch& batch,
bool
fSync
)
{
const
bool
log_memory =
LogAcceptCategory
(BCLog::
LEVELDB
);
double
mem_before =
0
;
if
(log_memory) {
mem_before =
DynamicMemoryUsage
() /
1024
/
1024
;
}
leveldb::Status status = pdb->
Write
(
fSync
? syncoptions : writeoptions, &batch.
batch
);
dbwrapper_private::HandleError
(status);
if
(log_memory) {
double
mem_after =
DynamicMemoryUsage
() /
1024
/
1024
;
LogPrint
(BCLog::
LEVELDB
,
"
WriteBatch memory usage: db=%s, before=%.1fMiB, after=%.1fMiB
\n
"
,
m_name, mem_before, mem_after);
}
return
true
;
}
size_t
CDBWrapper::DynamicMemoryUsage
()
const
{
std::string memory;
if
(!pdb->
GetProperty
(
"
leveldb.approximate-memory-usage
"
, &memory)) {
LogPrint
(BCLog::
LEVELDB
,
"
Failed to get approximate-memory-usage property
\n
"
);
return
0
;
}
return
stoul
(memory);
}
//
Prefixed with null character to avoid collisions with other keys
//
//
We must use a string constructor which specifies length so that we copy
//
past the null-terminator.
const
std::string
CDBWrapper::OBFUSCATE_KEY_KEY
(
"
\000
obfuscate_key
"
,
14
);
const
unsigned
int
CDBWrapper::
OBFUSCATE_KEY_NUM_BYTES
=
8
;
/*
*
* Returns a string (consisting of 8 random bytes) suitable for use as an
* obfuscating XOR key.
*/
std::vector<
unsigned
char
>
CDBWrapper::CreateObfuscateKey
()
const
{
unsigned
char
buff[
OBFUSCATE_KEY_NUM_BYTES
];
GetRandBytes
(buff,
OBFUSCATE_KEY_NUM_BYTES
);
return
std::vector<
unsigned
char
>(&buff[
0
], &buff[
OBFUSCATE_KEY_NUM_BYTES
]);
}
bool
CDBWrapper::IsEmpty
()
{
std::unique_ptr<CDBIterator>
it
(
NewIterator
());
it->
SeekToFirst
();
return
!(it->
Valid
());
}
CDBIterator::~CDBIterator
() {
delete
piter; }
bool
CDBIterator::Valid
()
const
{
return
piter->
Valid
(); }
void
CDBIterator::SeekToFirst
() { piter->
SeekToFirst
(); }
void
CDBIterator::Next
() { piter->
Next
(); }
namespace
dbwrapper_private
{
void
HandleError
(
const
leveldb::Status& status)
{
if
(status.
ok
())
return
;
const
std::string errmsg =
"
Fatal LevelDB error:
"
+ status.
ToString
();
LogPrintf
(
"
%s
\n
"
, errmsg);
LogPrintf
(
"
You can use -debug=leveldb to get more complete diagnostic messages
\n
"
);
throw
dbwrapper_error
(errmsg);
}
const
std::vector<
unsigned
char
>&
GetObfuscateKey
(
const
CDBWrapper &w)
{
return
w.
obfuscate_key
;
}
}
//
namespace dbwrapper_private
Back
|
FazBrowse Home
|
New Git URL