forked from erigontech/silkworm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_hashstate.cpp
153 lines (132 loc) · 5.71 KB
/
check_hashstate.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
/*
Copyright 2022 The Silkworm Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <filesystem>
#include <iostream>
#include <CLI/CLI.hpp>
#include <silkworm/common/directories.hpp>
#include <silkworm/common/log.hpp>
#include <silkworm/db/access_layer.hpp>
#include <silkworm/db/stages.hpp>
#include <silkworm/db/tables.hpp>
#include <silkworm/db/util.hpp>
#include <silkworm/etl/collector.hpp>
using namespace silkworm;
namespace fs = std::filesystem;
enum Operation {
HashAccount,
HashStorage,
Code,
};
std::pair<db::MapConfig, db::MapConfig> get_tables_for_checking(Operation operation) {
switch (operation) {
case HashAccount:
return {db::table::kPlainState, db::table::kHashedAccounts};
case HashStorage:
return {db::table::kPlainState, db::table::kHashedStorage};
default:
return {db::table::kPlainCodeHash, db::table::kHashedCodeHash};
}
}
void check(mdbx::txn& txn, Operation operation) {
auto [source_config, target_config] = get_tables_for_checking(operation);
auto source_table{db::open_cursor(txn, source_config)};
auto target_table{db::open_cursor(txn, target_config)};
auto data{source_table.to_first(/*throw_notfound*/ false)};
while (data) { /* Loop as long as we have no errors*/
Bytes mdb_key_as_bytes{db::from_slice(data.key)};
if (operation == HashAccount) {
// Account
if (data.key.length() != kAddressLength) {
data = source_table.to_next(false);
continue;
}
auto hash{keccak256(mdb_key_as_bytes)};
ByteView key{hash.bytes};
auto actual_value{target_table.find(db::to_slice(key))};
if (!actual_value) {
log::Error() << "key: " << to_hex(key) << ", does not exist.";
return;
}
if (actual_value.value != data.value) {
log::Error() << "Expected: " << to_hex(db::from_slice(data.value)) << ", Actual: << "
<< to_hex(db::from_slice(actual_value.value));
return;
}
data = source_table.to_next(false);
} else if (operation == HashStorage) {
// Storage
if (data.key.length() != kAddressLength) {
data = source_table.to_next(false);
continue;
}
Bytes key(kHashLength * 2 + db::kIncarnationLength, '\0');
std::memcpy(&key[0], keccak256(mdb_key_as_bytes.substr(0, kAddressLength)).bytes, kHashLength);
std::memcpy(&key[kHashLength], &mdb_key_as_bytes[kAddressLength], db::kIncarnationLength);
std::memcpy(&key[kHashLength + db::kIncarnationLength],
keccak256(mdb_key_as_bytes.substr(kAddressLength + db::kIncarnationLength)).bytes, kHashLength);
auto target_data{target_table.find_multivalue(db::to_slice(key), data.value, /*throw_notfound*/ false)};
if (!target_data) {
log::Error() << "Key: " << to_hex(key) << ", does not exist.";
return;
}
data = source_table.to_next(false);
} else {
// Code
if (data.key.length() != kAddressLength + db::kIncarnationLength) {
data = source_table.to_next(false);
continue;
}
Bytes key(kHashLength + db::kIncarnationLength, '\0');
std::memcpy(&key[0], keccak256(mdb_key_as_bytes.substr(0, kAddressLength)).bytes, kHashLength);
std::memcpy(&key[kHashLength], &mdb_key_as_bytes[kAddressLength], db::kIncarnationLength);
auto actual_value{target_table.find(db::to_slice(key), /*throw_notfound*/ false)};
if (!actual_value) {
log::Error() << "Key: " << to_hex(key) << ", does not exist.";
data = source_table.to_next(false);
continue;
}
if (actual_value.value != data.value) {
log::Error() << "Expected: " << to_hex(db::from_slice(data.value)) << ", Actual: << "
<< to_hex(db::from_slice(actual_value.value));
return;
}
data = source_table.to_next(false);
}
}
}
int main(int argc, char* argv[]) {
CLI::App app{"Check Hashed state"};
std::string chaindata{DataDirectory{}.chaindata().path().string()};
app.add_option("--chaindata", chaindata, "Path to a database populated by Erigon")
->capture_default_str()
->check(CLI::ExistingDirectory);
CLI11_PARSE(app, argc, argv);
log::Info() << "Checking HashState";
try {
auto data_dir{DataDirectory::from_chaindata(chaindata)};
data_dir.deploy();
db::EnvConfig db_config{data_dir.chaindata().path().string()};
auto env{db::open_env(db_config)};
auto txn{env.start_write()};
log::Info() << "Checking Accounts";
check(txn, HashAccount);
log::Info() << "Checking Storage";
check(txn, HashStorage);
log::Info() << "Checking Code Keys";
check(txn, Code);
log::Info() << "All Done!";
} catch (const std::exception& ex) {
log::Error() << ex.what();
return -5;
}
}