-
Notifications
You must be signed in to change notification settings - Fork 1
/
parser.cpp
376 lines (358 loc) · 14.1 KB
/
parser.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
368
369
370
371
372
373
374
375
376
#include "parser.h"
#include <string>
#include <cstring>
#include "utils.h"
#include "keyUtils.h"
#include "logger.h"
#include "K12AndKeyUtil.h"
// 0 is short form, 1 is more details, 2 is all details
int parseToStringDetailLevel = 1;
#define QU_TRANSFER 0
#define QU_TRANSFER_LOG_SIZE 72
#define ASSET_ISSUANCE 1
#define ASSET_ISSUANCE_LOG_SIZE 55
#define ASSET_OWNERSHIP_CHANGE 2
#define ASSET_OWNERSHIP_CHANGE_LOG_SIZE 119
#define ASSET_POSSESSION_CHANGE 3
#define ASSET_POSSESSION_CHANGE_LOG_SIZE 119
#define CONTRACT_ERROR_MESSAGE 4
#define CONTRACT_ERROR_MESSAGE_LOG_SIZE 4
#define CONTRACT_WARNING_MESSAGE 5
#define CONTRACT_INFORMATION_MESSAGE 6
#define CONTRACT_DEBUG_MESSAGE 7
#define BURNING 8
#define BURNING_LOG_SIZE 40
#define DUST_BURNING 9
#define DUST_BURNING_MAX_LOG_SIZE 2621442
#define SPECTRUM_STATS 10
#define SPECTRUM_STATS_LOG_SIZE 224
#define CUSTOM_MESSAGE 255
#define LOG_HEADER_SIZE 26 // 2 bytes epoch + 4 bytes tick + 4 bytes log size/types + 8 bytes log id + 8 bytes log digest
std::string logTypeToString(uint8_t type){
switch(type){
case 0:
return "QU transfer";
case 1:
return "Asset issuance";
case 2:
return "Asset ownership change";
case 3:
return "Asset possession change";
case 4:
return "Contract error";
case 5:
return "Contract warning";
case 6:
return "Contract info";
case 7:
return "Contract debug";
case 8:
return "Burn";
case 9:
return "Dust burn";
case 10:
return "Spectrum stats";
case 255:
return "Custom msg";
}
return "Unknown msg";
}
std::string parseLogToString_type0(uint8_t* ptr){
char sourceIdentity[61] = {0};
char destIdentity[61] = {0};;
uint64_t amount;
const bool isLowerCase = false;
getIdentityFromPublicKey(ptr, sourceIdentity, isLowerCase);
getIdentityFromPublicKey(ptr+32, destIdentity, isLowerCase);
memcpy(&amount, ptr+64, 8);
std::string result = "from " + std::string(sourceIdentity) + " to " + std::string(destIdentity) + " " + std::to_string(amount) + "QU.";
return result;
}
std::string parseLogToString_type1(uint8_t* ptr){
char sourceIdentity[61] = {0};
char name[8] = {0};
char numberOfDecimalPlaces = 0;
uint8_t unit[8] = {0};
long long numberOfShares = 0;
const bool isLowerCase = false;
getIdentityFromPublicKey(ptr, sourceIdentity, isLowerCase);
memcpy(&numberOfShares, ptr+32, 8);
memcpy(name, ptr+32+8, 7);
numberOfDecimalPlaces = ((char*)ptr)[32+8+7];
memcpy(unit, ptr+32+8+7+1, 7);
std::string result = std::string(sourceIdentity) + " issued " + std::to_string(numberOfShares) + " " + std::string(name)
+ ". Number of decimal: " + std::to_string(numberOfDecimalPlaces) + ". Unit of measurement: "
+ std::to_string(unit[0]) + "-"
+ std::to_string(unit[1]) + "-"
+ std::to_string(unit[2]) + "-"
+ std::to_string(unit[3]) + "-"
+ std::to_string(unit[4]) + "-"
+ std::to_string(unit[5]) + "-"
+ std::to_string(unit[6]);
return result;
}
std::string parseLogToString_qutil(uint8_t* ptr){
std::string res = "";
char buffer[64] = {0};
getIdentityFromPublicKey(ptr, buffer, false);
res = "from " + std::string(buffer) + " to ";
getIdentityFromPublicKey(ptr+32, buffer, false);
res += std::string(buffer) + " Amount ";
int64_t amount;
memcpy(&amount, ptr+64, 8);
res += std::to_string(amount) + ": ";
uint32_t logtype;
memcpy(&logtype, ptr+72, 4);
switch(logtype){
case 0:
res += "Success";
break;
case 1:
res += "Invalid amount number";
break;
case 2:
res += "insufficient fund";
break;
case 3:
res += "Triggered SendToManyV1";
break;
case 4:
res += "send fund via SendToManyV1";
break;
}
return res;
}
std::string parseToStringBurningLog(uint8_t* ptr)
{
char sourceIdentity[61] = { 0 };
uint64_t burnAmount = *((uint64_t*)(ptr+32));
getIdentityFromPublicKey(ptr, sourceIdentity, false);
return std::string(sourceIdentity) + " burned " + std::to_string(burnAmount) + " QU";
}
struct DustBurning
{
unsigned short numberOfBurns;
struct Entity
{
unsigned char publicKey[32];
unsigned long long amount;
};
static_assert(sizeof(Entity) == 40, "Unexpected size");
unsigned int messageSize() const
{
return 2 + numberOfBurns * sizeof(Entity);
}
Entity& entity(unsigned short i)
{
char* buf = reinterpret_cast<char*>(this);
return *reinterpret_cast<Entity*>(buf + i * (sizeof(Entity)) + 2);
}
};
std::string parseToStringDustBurningLog(uint8_t* ptr, uint32_t messageSize)
{
DustBurning* db = (DustBurning*)ptr;
if (messageSize < 2 || messageSize > DUST_BURNING_MAX_LOG_SIZE || db->messageSize() != messageSize)
return "null";
std::string retVal = "balances of " + std::to_string(db->numberOfBurns) + " entities burned as dust";
if (parseToStringDetailLevel >= 1)
{
char identity[61] = { 0 };
for (int i = 0; i < db->numberOfBurns; ++i)
{
const DustBurning::Entity& e = db->entity(i);
getIdentityFromPublicKey(e.publicKey, identity, false);
retVal += "\n\t" + std::to_string(i) + ": " + std::to_string(e.amount) + " QU of " + identity;
if (parseToStringDetailLevel < 2 && i == 1 && db->numberOfBurns > 5)
{
retVal += "\n\t...";
i = db->numberOfBurns - 2;
}
}
}
return retVal;
}
std::string parseToStringSpectrumStats(uint8_t* ptr)
{
struct SpectrumStats
{
unsigned long long totalAmount;
unsigned long long dustThresholdBurnAll;
unsigned long long dustThresholdBurnHalf;
unsigned int numberOfEntities;
unsigned int entityCategoryPopulations[48];
};
SpectrumStats* s = (SpectrumStats*)ptr;
std::string retVal = std::to_string(s->totalAmount) + " QU in " + std::to_string(s->numberOfEntities)
+ " entities, dust threshold " + std::to_string(s->dustThresholdBurnAll);
if (s->dustThresholdBurnHalf != 0)
retVal += " (burn all <=), " + std::to_string(s->dustThresholdBurnHalf) + " (burn half <=)";
if (parseToStringDetailLevel >= 1)
{
for (int i = 0; i < 48; ++i)
{
if (s->entityCategoryPopulations[i])
{
unsigned long long lowerBound = (1llu << i), upperBound = (1llu << (i + 1)) - 1;
const char* burnIndicator = "\n\t+ bin ";
if (lowerBound <= s->dustThresholdBurnAll)
burnIndicator = "\n\t- bin ";
else if (lowerBound <= s->dustThresholdBurnHalf)
burnIndicator = "\n\t* bin ";
retVal += burnIndicator + std::to_string(i) + ": " + std::to_string(s->entityCategoryPopulations[i]) + " entities with balance between "
+ std::to_string(lowerBound) + " and " + std::to_string(upperBound);
}
}
}
return retVal;
}
std::string parseLogToString_type2_type3(uint8_t* ptr){
char sourceIdentity[61] = {0};
char dstIdentity[61] = {0};
char issuerIdentity[61] = {0};
char name[8] = {0};
char numberOfDecimalPlaces = 0;
char unit[8] = {0};
long long numberOfShares = 0;
const bool isLowerCase = false;
getIdentityFromPublicKey(ptr, sourceIdentity, isLowerCase);
getIdentityFromPublicKey(ptr+32, dstIdentity, isLowerCase);
getIdentityFromPublicKey(ptr+64, issuerIdentity, isLowerCase);
memcpy(&numberOfShares, ptr+96, 8);
memcpy(name, ptr+96+8, 7);
numberOfDecimalPlaces = ((char*)ptr)[96+8+7];
memcpy(unit, ptr+96+8+7+1, 7);
std::string result = "from " + std::string(sourceIdentity) + " to " + std::string(dstIdentity) + " " + std::to_string(numberOfShares) + " " + std::string(name)
+ "(Issuer: " + std::string(issuerIdentity) + ")"
+ ". Number of decimal: " + std::to_string(numberOfDecimalPlaces) + ". Unit of measurement: "
+ std::to_string(unit[0]) + "-"
+ std::to_string(unit[1]) + "-"
+ std::to_string(unit[2]) + "-"
+ std::to_string(unit[3]) + "-"
+ std::to_string(unit[4]) + "-"
+ std::to_string(unit[5]) + "-"
+ std::to_string(unit[6]);
return result;
}
unsigned long long printQubicLog(uint8_t* logBuffer, int bufferSize){
if (bufferSize == 0){
// LOG("Empty log\n");
return -1;
}
if (bufferSize < LOG_HEADER_SIZE){
LOG("Buffer size is too small (not enough to contain the header), expected 26 | received %d\n", bufferSize);
return -1;
}
uint8_t* end = logBuffer + bufferSize;
unsigned long long retLogId = 0;
while (logBuffer < end){
// basic info
uint16_t epoch = *((unsigned char*)(logBuffer));
uint32_t tick = *((unsigned int*)(logBuffer + 2));
uint32_t tmp = *((unsigned int*)(logBuffer + 6));
uint64_t logId = *((unsigned long long*)(logBuffer + 10));
if (logId > retLogId) retLogId = logId;
uint64_t logDigest = *((unsigned long long*)(logBuffer + 18));
uint8_t messageType = tmp >> 24;
std::string mt = logTypeToString(messageType);
uint32_t messageSize = (tmp << 8) >> 8;
if (logBuffer + LOG_HEADER_SIZE + messageSize > end)
{
LOG("Error: log buffer contains incomplete log message (log ID %llu)", logId);
return retLogId;
}
{
uint64_t computedLogDigest = 0;
KangarooTwelve(logBuffer + LOG_HEADER_SIZE, messageSize, (uint8_t*) & computedLogDigest, 8);
if (logDigest != computedLogDigest)
{
LOG("------------------------------\n");
LOG("WARNING: mismatched log digest\n");
LOG("------------------------------\n");
return retLogId;
}
}
logBuffer += LOG_HEADER_SIZE;
std::string humanLog = "null";
switch(messageType){
case QU_TRANSFER:
if (messageSize == QU_TRANSFER_LOG_SIZE){ // with or without transfer ID
humanLog = parseLogToString_type0(logBuffer);
} else {
LOG("Malfunction buffer size for QU_TRANSFER log\n");
}
break;
case ASSET_ISSUANCE:
if (messageSize == ASSET_ISSUANCE_LOG_SIZE){
humanLog = parseLogToString_type1(logBuffer);
} else {
LOG("Malfunction buffer size for ASSET_ISSUANCE log\n");
}
break;
case ASSET_OWNERSHIP_CHANGE:
if (messageSize == ASSET_OWNERSHIP_CHANGE_LOG_SIZE){
humanLog = parseLogToString_type2_type3(logBuffer);
} else {
LOG("Malfunction buffer size for ASSET_OWNERSHIP_CHANGE log\n");
}
break;
case ASSET_POSSESSION_CHANGE:
if (messageSize == ASSET_POSSESSION_CHANGE_LOG_SIZE){
humanLog = parseLogToString_type2_type3(logBuffer);
} else {
LOG("Malfunction buffer size for ASSET_POSSESSION_CHANGE log\n");
}
break;
case BURNING:
if (messageSize == BURNING_LOG_SIZE) {
humanLog = parseToStringBurningLog(logBuffer);
}
else {
LOG("Malfunction buffer size for BURNING log\n");
}
break;
case DUST_BURNING:
humanLog = parseToStringDustBurningLog(logBuffer, messageSize);
if (humanLog == "null") {
LOG("Malfunction buffer size for DUST_BURNING log\n");
}
break;
case SPECTRUM_STATS:
if (messageSize == SPECTRUM_STATS_LOG_SIZE) {
humanLog = parseToStringSpectrumStats(logBuffer);
}
else {
LOG("Malfunction buffer size for SPECTRUM_STATS log\n");
}
break;
// TODO: stay up-to-date with core node contract logger
case CONTRACT_INFORMATION_MESSAGE:
case CONTRACT_ERROR_MESSAGE:
case CONTRACT_WARNING_MESSAGE:
case CONTRACT_DEBUG_MESSAGE:
case 255:
{
unsigned int contractId = ((uint32_t*)logBuffer)[0];
humanLog = "Contract ID #" + std::to_string(contractId) + " ";
if (messageType == CONTRACT_INFORMATION_MESSAGE) humanLog += "INFO: ";
if (messageType == CONTRACT_ERROR_MESSAGE) humanLog += "ERROR: ";
if (messageType == CONTRACT_WARNING_MESSAGE) humanLog += "WARNING: ";
if (messageType == CONTRACT_DEBUG_MESSAGE) humanLog += "DEBUG: ";
if (messageType == 255) humanLog += "CUSTOM: ";
char buff[1024 * 2] = { 0 };
byteToHex(logBuffer + 4, buff, messageSize - 4);
humanLog += std::string(buff);
break;
}
}
LOG("[%llu] %u.%03d %s: %s\n", logId, tick, epoch, mt.c_str(), humanLog.c_str());
if (humanLog == "null"){
char buff[1024*2 + 1] = {0};
for (unsigned int i = 0; i < std::min(messageSize, (uint32_t)1024); i++){
sprintf(buff + i*2, "%02x", logBuffer[i]);
}
LOG("NO parser for this message yet | Original message (%u bytes): %s%s\n", messageSize, buff, (messageSize > 1024) ? "..." : "");
}
logBuffer+= messageSize;
}
return retLogId;
}