-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSecNodeTracker.js
515 lines (402 loc) · 16.5 KB
/
SecNodeTracker.js
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
const LocalStorage = require('node-localstorage').LocalStorage;
const local = new LocalStorage('./config');
const fs = require('fs');
const Client = require('bitcoin-core');
const Zcash = require('zcash');
let host = local.getItem('rpcallowip') || local.getItem('rpcbind');
if (!host) host = '127.0.0.1';
const cfg = {
host: host,
port: local.getItem('rpcport'),
ssl: {
enabled: false
},
username: local.getItem('rpcuser'),
password: local.getItem('rpcpassword'),
hostname: local.getItem('rpcbind'),
}
const errmsg = "Unable to connect to zend. Please check the zen rpc settings and ensure zend is running";
const os = process.platform;
class SecNode {
constructor(corerpc, zenrpc) {
this.corerpc = corerpc;
this.zenrpc = zenrpc;
this.statsInterval = 1000 * 60 * 6;
this.statsTimer = null;
this.statsLoop = () => {
this.collectStats();
};
this.configcount = 0;
this.chalStart = null;
this.chalRunning = false;
this.opTimer = null;
this.opTimerInterval = 1000 * 10;
this.amt = 0.0001;
this.fee = 0.0001;
this.minChalBal = .01;
this.defaultMemTime = 45;
this.memBefore = {};
this.memNearEnd = {};
this.waiting = false;
}
static auto() {
let corerpc = new Client(cfg);
let zenrpc = new Zcash(cfg);
return new SecNode(corerpc, zenrpc);
}
initialize() {
this.statsTimer = setInterval(this.statsLoop, this.statsInterval);
}
loop() {
this.getStats()
}
getPrimaryAddress(cb) {
const self = this;
this.corerpc.getAddressesByAccount("", (err, data) => {
if (err) {
self.waiting = true;
if (err.code == -28) {
console.log(logtime(), "Zend: " + err.message);
return cb('Waiting on zend');
} else {
console.log(logtime(), "Zend error: " + err.message);
return cb(errmsg);
}
}
self.waiting = false;
return cb(null, data[0]);
});
}
getAddrWithBal(cb) {
const self = this;
this.zenrpc.z_listaddresses()
.then((result) => {
if (result.length == 0) {
console.log("No private address found. Please create one and send at least 1 ZEN for challenges");
return cb(null)
}
let bal = 0;
let addr = result[0];
let lastChalBlockNum = local.getItem('lastChalBlock');
self.zenrpc.z_getbalance(addr)
.then((balance) => {
self.corerpc.getInfo()
.then((data) => {
let valid = true;
if (lastChalBlockNum && data.blocks - parseInt(lastChalBlockNum) < 5) valid = false;
return cb(null, { "addr": addr, "bal": balance, "valid": valid, "lastChalBlock": lastChalBlockNum });
})
})
.catch(err => {
cb(err)
});
})
.catch(err => {
cb(err)
});
}
execChallenge(chal) {
//given a block number get the hash
//get the block
//get the merkle root from the block
//create the transaction and send
//poll the operation for completion
//return a object with result and if success txid and exec time
var self = this;
console.log(logtime(), "Start challenge. " + chal.crid);
if (self.chalRunning) {
let resp = { "crid": chal.crid, "status": "error", "error": "Previous challenge still running. " + self.crid }
resp.ident = self.ident;
self.socket.emit("chalresp", resp)
console.log(logtime(), "Challenge " + self.crid + " is currently running. Failed " + chal.crid)
return
}
if (os == 'linux') self.memBefore = self.getProcMeminfo(false);
self.crid = chal.crid
self.corerpc.getBlockHash(chal.blocknum, (err, hash) => {
if (err) return console.log(err)
self.corerpc.getBlock(hash, (err, block) => {
let msgBuff = new Buffer.from(block.merkleroot);
let amts = [{ "address": chal.sendto, "amount": self.amt, "memo": msgBuff.toString('hex') }];
self.getAddrWithBal((err, result) => {
if (err) return console.log(err);
let zaddr = result.addr;
if (result.bal == 0) {
console.log(logtime(), "Challenge private address balance is 0 at the moment. Cannot perform challenge");
//console.log(logtime(), "Please send .5 zen to " + zaddr);
}
console.log('Using ' + zaddr + ' for challenge. bal=' + result.bal)
if (zaddr && result.bal > 0) {
self.zenrpc.z_sendmany(zaddr, amts, 1, self.fee)
.then(opid => {
console.log("OperationId=" + opid);
self.chalStart = new Date();
self.chalRunning = true;
self.opTimer = setInterval(() => {
self.checkOp(opid, chal);
}
, self.opTimerInterval);
return
})
.catch(err => {
let resp = { "crid": chal.crid, "status": "error", "error": err }
resp.ident = self.ident;
console.log(logtime(), "Challenge: unable to create and send transaction.");
console.log(err);
self.socket.emit("chalresp", resp)
}
);
} else {
let resp = { "crid": chal.crid, "status": "error", "error": "no available balance found or 0" }
resp.ident = self.ident;
console.log("challenge: unable to find address with balance or balance 0.");
self.socket.emit("chalresp", resp)
}
});
});
})
}
checkOp(opid, chal) {
let self = this;
if (!self.chalRunning) {
console.log(logtime(), "Clearing timer");
clearInterval(self.opTimer);
return;
}
self.zenrpc.z_getoperationstatus([opid])
.then(operation => {
let elapsed = (((new Date()) - self.chalStart) / 1000).toFixed(0);
if (operation.length == 0) {
if (elapsed < 12) return
//if here then operation lost or unavailable.
self.chalRunning = false;
let resp = { "crid": chal.crid, "status": "failed", "error": "No operation found." }
resp.ident = self.ident;
self.socket.emit("chalresp", resp);
console.log(logtime(), "Challenge submit: failed. Could not find zen operation.");
console.log(logtime(), "Clearing timer");
clearInterval(self.opTimer);
return;
}
let op = operation[0];
console.log(logtime(), "Elapsed challenge time=" + elapsed + " status=" + op.status);
if (op.status == "success") {
console.log(logtime(), "Challenge submit: " + op.status);
let resp = {
"crid": chal.crid,
"status": op.status,
"txid": op.result.txid,
"execSeconds": op.execution_secs
}
if (os == 'linux') {
resp.memBefore = self.memBefore,
resp.memNearEnd = self.memNearEnd
}
console.log(op);
console.log("txid= " + op.result.txid);
resp.ident = self.ident;
self.chalRunning = false;
self.socket.emit("chalresp", resp);
local.setItem('lastExecSec', (op.execution_secs).toFixed(2));
self.getBlockHeight(true);
//clear the operation from queue
self.zenrpc.z_getoperationresult([opid]);
} else if (op.status == "failed") {
console.log(logtime(), "Challenge result: " + op.status)
console.log(op.error.message);
let resp = { "crid": chal.crid, "status": op.status, "error": op.error.message }
self.chalRunning = false;
resp.ident = self.ident;
self.socket.emit("chalresp", resp);
//clear the operation from queue
self.zenrpc.z_getoperationresult([opid]);
} else if (os == 'linux' && op.status == "executing") {
let last = local.getItem('lastExecSec') || self.defaultMemTime;
if (last - elapsed < 12) {
self.memNearEnd = self.getProcMeminfo(false)
}
}
return
})
.catch(err => {
self.chalRunning = false;
console.log("challenge error");
console.log(err);
clearInterval(self.opTimer);
return
});
}
getConfig(req, poolver, hw) {
// node version, poolver, and hw
const self = this;
this.corerpc.getInfo()
.then((data) => {
let node = {
"version": data.version,
"protocolversion": data.protocolversion,
"wallet.version": data.walletversion
}
if (!self.ident.nid && req.nid) self.ident.nid = req.nid;
let config = { node: node, poolver: poolver, hw: hw }
self.socket.emit("node", { type: "config", ident: self.ident, config: config });
})
.catch(err => {
console.log("get config", err);
}
);
}
collectStats(){
const self = this;
if (!self.socket.connected) return;
this.getStats((err, stats) => {
if (err) {
console.log(logtime(), "Stat check failed. " + err);
if (self.ident) {
self.socket.emit("node", { type: "down", ident: self.ident });
}
} else {
self.getTLSPeers(null, (err, tlsPeers) => {
stats.tlsPeers = tlsPeers;
self.socket.emit("node", { type: "stats", stats: stats, ident: self.ident });
console.log(logtime(), "stat check");
});
}
})
}
getStats(cb) {
var self = this;
if (self.waiting) return cb("Waiting for zend");
this.corerpc.getInfo()
.then((data) => {
self.zenrpc.z_getoperationstatus()
.then(ops => {
let count = 0;
for (let op of ops) {
op.status == 'queued' ? count++ : null;
}
self.getAddrWithBal((err, addrBal) => {
if (err) return cb(err)
let stats = {
"blocks": data.blocks,
"peers": data.connections,
"bal": addrBal.bal,
"isValidBal": addrBal.valid,
"queueDepth": count,
"lastChalBlock": addrBal.lastChalBlock,
"lastExecSec": local.getItem('lastExecSec')
}
console.log(stats)
// console.log("lastchalblock=" + local.getItem('lastChalBlock'))
if (addrBal.bal < self.minChalBal && addrBal.valid) console.log(logtime(), "Low challenge balance. " + addrBal.bal)
if (self.ident) {
return cb(null, stats);
} else {
return cb('ident not set');
}
})
})
})
.catch(err => {
let msg = err.cause ? err.cause : err.message;
console.log(logtime(), "getStats " + msg);
//console.log(err);
return cb(err);
});
}
getNetworks(req, cb) {
const self = this;
this.corerpc.getNetworkInfo()
.then((data) => {
let nets = data.localaddresses;
if (req) {
if (!self.ident.nid && req.nid) self.ident.nid = req.nid;
self.socket.emit("node", { type: "networks", ident: self.ident, nets });
} else {
cb(null, nets)
}
})
.catch(err => {
console.log(logtime(), 'get networks ' + err);
}
);
}
getTLSPeers(req, cb) {
const self = this;
this.corerpc.getPeerInfo()
.then((data) => {
let peers = [];
if (!self.ident.nid && req.nid) self.ident.nid = req.nid;
for (let i = 0; i < data.length; i++) {
let p = data[i];
if (p.inbound == false) {
let ip = p.addr.indexOf(']') != -1 ? p.addr.substr(1, p.addr.indexOf(']')-1) : p.addr.substr(0, p.addr.indexOf(":"));
let peer = { ip, tls: p.tls_verified };
peers.push(peer);
}
}
if (req) {
self.socket.emit("node", { type: "peers", ident: self.ident, peers });
} else {
cb(null, peers)
}
})
.catch(err => {
console.log(logtime(), 'get peers ' + err);
}
);
}
getBlockHeight(setLast) {
const self = this;
this.corerpc.getInfo()
.then((data) => {
// console.log("GETBLOCK set last", setLast)
if (setLast) local.setItem('lastChalBlock', data.blocks);
return data.blocks;
})
.catch(err => {
let msg = err.cause ? err.cause : err;
console.log(logtime(), "getBlockHeight " + msg);
return
});
}
getProcMeminfo(display, cb) {
if (cb && typeof cb === 'function') {
return fs.readFile('/proc/meminfo', (err, meminfo) => {
if (err) {
return cb(err);
}
return cb(null, _formatProcMeminfo(meminfo, display));
});
}
let meminfo = fs.readFileSync('/proc/meminfo');
return _formatProcMeminfo(meminfo, display);
}
}
const _formatProcMeminfo = (meminfo, display) => {
let lines = meminfo.toString().split('\n');
let disp = "";
let data = {};
let toGb = 1000 * 1024;
lines.forEach((line) => {
let row = line.split(':');
let item = row[0]
if (item == 'MemTotal' ||
item == 'MemFree' ||
item == 'MemAvailable' ||
item == 'SwapTotal' ||
item == 'SwapFree') {
let num = parseInt(row[1].trim().split(' ')[0]);
if (display) {
disp += item + ": " + (num / toGb).toFixed(2) + "GB ";
} else {
data[item] = (num / toGb).toFixed(2) + "GB"
}
}
});
if (display) return disp;
return data;
};
const logtime = () => {
return (new Date()).toISOString().replace(/T/, ' ').replace(/\..+/, '') + " GMT" + " --";
}
module.exports = SecNode;