forked from ton-blockchain/ton
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPyTools.cpp
237 lines (196 loc) · 7.02 KB
/
PyTools.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
// Copyright 2023 Disintar LLP / [email protected]
#include "third-party/pybind11/include/pybind11/pybind11.h"
#include <string>
#include "td/utils/base64.h"
#include <utility>
#include "vm/boc.h"
#include "vm/cellslice.h"
#include "crypto/vm/cellslice.h"
#include <queue>
#include "block/block-auto.h"
#include "tvm-python/PyCell.h"
#include "crypto/fift/Fift.h"
#include "crypto/fift/IntCtx.h"
#include "crypto/fift/words.h"
#include "td/utils/filesystem.h"
#include "td/utils/PathView.h"
#include "td/utils/port/path.h"
#include "PyTools.h"
#include <string>
#include <cassert>
#include <codecvt>
#include <iostream>
#include <locale>
#include "vm/vm.h"
#include "vm/vmstate.h"
#include "td/utils/base64.h"
#include <utility>
#include "vm/boc.h"
#include "vm/cellslice.h"
#include "vm/cp0.h"
#include "third-party/pybind11/include/pybind11/stl.h"
#include "block/block.h"
#include "block/block-parse.h"
#include "td/utils/crypto.h"
#include "crypto/fift/Fift.h"
#include "crypto/fift/IntCtx.h"
#include "crypto/fift/words.h"
#include "td/utils/filesystem.h"
#include "td/utils/PathView.h"
#include "td/utils/port/path.h"
#include "crypto/common/refint.h"
#include "vm/dumper.hpp"
#include "PyCellSlice.h"
#include "PyCell.h"
namespace py = pybind11;
using namespace pybind11::literals; // to bring in the `_a` literal'
std::string code_disassemble(const td::Ref<vm::Cell>& codeCell, const std::string& basePath) {
fift::Fift::Config config;
config.source_lookup = fift::SourceLookup(std::make_unique<fift::OsFileLoader>());
config.source_lookup.add_include_path(basePath);
fift::init_words_common(config.dictionary);
fift::init_words_vm(config.dictionary);
fift::init_words_ton(config.dictionary);
fift::Fift fift(std::move(config));
std::stringstream ss;
std::stringstream output;
const auto fiftLib = td::read_file_str(basePath + "Fift.fif");
const auto listsLib = td::read_file_str(basePath + "Lists.fif");
const auto disasmLib = td::read_file_str(basePath + "Disasm.fif");
// Fift.fif & Lists.fif & Disasm.fif
ss << fiftLib.ok();
ss << listsLib.ok();
ss << disasmLib.ok();
ss << "<s std-disasm disasm ";
fift::IntCtx ctx{ss, "stdin", basePath, 0};
ctx.stack.push_cell(codeCell);
ctx.ton_db = &fift.config().ton_db;
ctx.source_lookup = &fift.config().source_lookup;
ctx.dictionary = ctx.context = ctx.main_dictionary = fift.config().dictionary;
ctx.output_stream = &output;
ctx.error_stream = fift.config().error_stream;
try {
auto res = ctx.run(td::make_ref<fift::InterpretCont>());
if (res.is_error()) {
std::cerr << "Disasm error: " << res.move_as_error().to_string();
std::cerr << "Backtrace:";
std::ostringstream os;
ctx.print_error_backtrace(os);
std::cerr << os.str();
throw std::invalid_argument("Error in disassembler");
} else {
auto disasm_out = output.str();
// cheap no-brainer
std::string pattern = " ok\n";
std::string::size_type n = pattern.length();
for (std::string::size_type i = disasm_out.find(pattern); i != std::string::npos; i = disasm_out.find(pattern)) {
disasm_out.erase(i, n);
}
return disasm_out;
}
} catch (const std::exception& e) {
std::cerr << "Disasm error: " << e.what();
throw std::invalid_argument("Error in disassembler");
}
}
std::string code_dissemble_str(const std::string& code, const std::string& basePath) {
auto codeCell = parse_string_to_cell(code);
return code_disassemble(std::move(codeCell.my_cell), basePath);
}
std::string code_dissemble_cell(const PyCell& codeCell, const std::string& basePath) {
return code_disassemble(codeCell.my_cell, basePath);
}
std::string parse_chunked_data(vm::CellSlice& cs) {
vm::Dictionary dict{cs, 32};
std::string slice;
while (!dict.is_empty()) {
td::BitArray<32> key{};
dict.get_minmax_key(key);
auto val = load_cell_slice(dict.lookup_delete_ref(key));
slice += parse_snake_data_string(val, false);
}
return td::base64_encode(slice);
}
std::string onchain_hash_key_to_string(std::string hash) {
std::vector<td::string> s = {"uri", "name", "description", "image", "image_data", "symbol",
"decimals", "amount_style", "render_type", "jetton", "master", "address"};
for (const auto& it : s) {
td::Bits256 tmp;
td::sha256(td::Slice(it), tmp.as_slice());
if (hash == tmp.to_hex()) {
return it;
}
}
return hash;
}
py::dict parse_token_data(const PyCell& codeCell) {
try {
auto cell = codeCell.my_cell;
auto cs = load_cell_slice(cell);
if (cs.size() < 8) {
throw std::invalid_argument("Not valid cell slice, must be at least 8 bits");
}
int content_type;
cs.fetch_uint_to(8, content_type);
if (content_type == 0) {
auto data = cs.fetch_ref();
if (data.is_null()) {
throw std::invalid_argument("Can't find ref with dictionary");
}
vm::Dictionary data_dict{data, 256};
py::dict py_dict;
while (!data_dict.is_empty()) {
td::BitArray<256> key{};
data_dict.get_minmax_key(key);
auto key_text = onchain_hash_key_to_string(key.to_hex());
td::Ref<vm::Cell> value = data_dict.lookup_delete(key)->prefetch_ref();
if (value.not_null()) {
std::stringstream a;
auto vs = load_cell_slice(value);
if (vs.size() >= 8) {
int value_type;
vs.fetch_uint_to(8, value_type);
if (value_type == 0) {
py::dict d("type"_a = "snake", "value"_a = parse_snake_data_string(vs));
py_dict[py::str(key_text)] = d;
} else if (value_type == 1) {
py::dict d("type"_a = "chunks", "value"_a = parse_chunked_data(vs));
py_dict[py::str(key_text)] = d;
} else {
py::dict d("type"_a = "unknown", "value"_a = "");
py_dict[py::str(key_text)] = d;
}
} else {
py::dict d("type"_a = "unknown", "value"_a = "");
py_dict[py::str(key_text)] = d;
}
}
};
py::dict d("type"_a = "onchain", "value"_a = py_dict);
return d;
}
else if (content_type == 1) {
py::dict d("type"_a = "offchain", "value"_a = parse_snake_data_string(cs));
return d;
} else {
throw std::invalid_argument("Not valid prefix, must be 0x00 / 0x01");
}
} catch (const vm::VmError& e) {
throw std::runtime_error(e.get_msg());
} catch (const std::exception& e) {
throw std::invalid_argument("Can't parse token data");
}
}
PyCellSlice pack_address(const std::string& address) {
auto paddr_parse = block::StdAddress::parse(address);
if (paddr_parse.is_ok()) {
auto paddr = paddr_parse.move_as_ok();
td::BigInt256 dest_addr;
vm::CellBuilder cb;
dest_addr.import_bits(paddr.addr.as_bitslice());
cb.store_ones(1).store_zeroes(2).store_long(paddr.workchain, 8).store_int256(dest_addr, 256);
return PyCellSlice(cb.finalize(), false);
} else {
throw std::invalid_argument("Parse address error: not valid address");
}
}