-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp2p-server.js
450 lines (397 loc) · 15 KB
/
p2p-server.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
const WebSocket = require("ws");
const Message = require("./message");
const {
RANDOM_BIAS,
MSG_TYPE,
HEARTBEAT_TIMEOUT,
FL_ROUND_THESHOLD,
MAE_EPSILON,
DEBUG,
} = require("./config.js");
const Peers = process.env.PEERS ? process.env.PEERS.split(",") : [];
const P2P_PORT = process.env.P2P_PORT;
class P2pServer {
constructor(blockchain, wallet, messagePool) {
this.sockets = [];
this.blockchain = blockchain;
this.wallet = wallet;
this.messagePool = messagePool;
}
// WebSocket Connection
listen() {
const server = new WebSocket.Server({ port: P2P_PORT });
server.on("connection", (socket) => {
console.info("New connection");
this.handleConnection(socket);
});
this.connectToPeers();
// Wait for sockets connection
setTimeout(() => {
// When a node begins to work, It needs to get a correct chain from network.
const getChainReq = new Message({}, this.wallet, MSG_TYPE.getChainReq);
this.broadcastMessage(getChainReq);
}, HEARTBEAT_TIMEOUT * 1000);
}
connectToPeers() {
Peers.forEach((peer) => {
const socket = new WebSocket(peer);
socket.on("open", () => this.handleConnection(socket));
});
}
handleConnection(socket) {
// Kiểm tra xem socket đã tồn tại trong mảng chưa
if (!this.sockets.includes(socket)) {
this.sockets.push(socket);
console.info("Socket connected");
this.handleMessage(socket);
} else {
console.info("Socket already exists in the array");
}
}
setInitialTimestamp() {
this.initialTimestamp = Date.now(); // for evaluating
}
// Broadcast messages
broadcastMessage(msg) {
this.sockets.forEach((socket) => {
this.sendMessage(msg, socket);
});
}
sendMessage(msg, socket) {
socket.send(
JSON.stringify({
type: msg.msgType || "",
data: msg,
})
);
}
// The PoQ consensus protocol
handleMessage(socket) {
socket.on("message", (message) => {
message = JSON.parse(message);
const msg = message.data;
if (DEBUG) console.info(`received: ${msg.msgType}`);
switch (message.type) {
// Looking for the right chain
case MSG_TYPE.getChainReq:
if (
!this.messagePool.messageExistsWithHash(msg) &&
this.messagePool.verifyMessage(msg, this.blockchain)
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
const getChainRes = new Message(
{ chain: this.blockchain.chain },
this.wallet,
MSG_TYPE.getChainRes
);
this.broadcastMessage(getChainRes);
}
break;
case MSG_TYPE.getChainRes:
if (
!this.messagePool.messageExistsWithHash(msg) &&
this.messagePool.verifyMessage(msg, this.blockchain)
// We don't need to check isMessageGetChainResDuplicated here because the chain will be better without checking.
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
// Verify the chain and add to blockchain
if (
msg.chain.length > this.blockchain.chain.length &&
this.blockchain.verifyChain(msg.chain)
) {
this.blockchain.chain = msg.chain;
}
}
break;
// Looking for alive nodes
case MSG_TYPE.heartBeatReq:
if (
!this.messagePool.messageExistsWithHash(msg) &&
this.messagePool.verifyMessage(msg, this.blockchain)
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
if (msg.category === process.env.CATEGORY) {
const resMsg = new Message(
{
heartBeatReq: msg,
},
this.wallet,
MSG_TYPE.heartBeatRes
);
this.broadcastMessage(resMsg);
}
}
break;
case MSG_TYPE.heartBeatRes:
if (
!this.messagePool.messageExistsWithHash(msg) &&
this.messagePool.verifyMessage(msg, this.blockchain) &&
!this.messagePool.isMessageHeartBeatResDuplicated(msg)
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
}
break;
// Main consensus protocol
case MSG_TYPE.dataRetrieval:
if (
this.messagePool.verifyMessage(msg, this.blockchain) &&
!this.messagePool.messageExistsWithHash(msg) &&
!this.messagePool.messageDataRetrievalExistsWithPublicKey(msg) // Need to check onchain because nodes may be shut down
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
}
break;
case MSG_TYPE.dataSharingReq:
if (
this.messagePool.verifyMessage(msg, this.blockchain) &&
!this.messagePool.messageExistsWithHash(msg)
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
// Now train a model, valuate the MAE and broadcast that dataSharingRes to all nodes in the committee
if (msg.requestCategory === process.env.CATEGORY) {
// Because we don't implement a federated learning model, we will randomize the MAE and return an empty model
const MAE = Math.random() * RANDOM_BIAS;
// Now create a DataSharingTransaction
delete msg["isSpent"];
const dataSharingRes = new Message(
{
...msg,
MAE,
model: { content: "empty" },
dataSharingReq: msg,
},
this.wallet,
MSG_TYPE.dataSharingRes
);
this.broadcastMessage(dataSharingRes);
}
}
break;
case MSG_TYPE.dataSharingRes:
if (
this.messagePool.verifyMessage(msg, this.blockchain) &&
!this.messagePool.messageExistsWithHash(msg) &&
!this.messagePool.isMessageDataSharingResDuplicated(msg) // It means there is a node, who sent 2 responses for 1 dataSharingReq.
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
if (msg.dataSharingReq.requestCategory === process.env.CATEGORY) {
const heartBeatReq = new Message(
{},
this.wallet,
MSG_TYPE.heartBeatReq
);
this.broadcastMessage(heartBeatReq);
setTimeout(() => {
// Get all committee nodes, which is alive.
const allHeartBeatRes =
this.messagePool.getAllHeartBeatRes(heartBeatReq);
//
const allDataSharingRes = this.messagePool.getAllDataSharingRes(
msg.dataSharingReq.hash
);
// Alive nodes must send DataSharingRes
// Currently 100%, but we can reduce this rate
if (
this.messagePool.enoughDataSharingRes(
allHeartBeatRes,
allDataSharingRes
) && allHeartBeatRes.length == 5 // Notice!
) {
const [minValidMAE, maxValidMAE] =
this.messagePool.getValidMAERange(
msg.dataSharingReq.hash,
MAE_EPSILON
);
console.log('checkP');
if (
this.messagePool.isProposer(this.wallet, allDataSharingRes, 0, 10)
) {
console.log("proposer")
// Get the right chain from network before creating a new block
const getChainReq = new Message(
{},
this.wallet,
MSG_TYPE.getChainReq
);
//this.broadcastMessage(getChainReq);
// Model aggregation based on min/maxValidMAE
const aggregatedModel = {};
const blockVerifyReq = new Message(
{
preHash:
this.blockchain.chain[
this.blockchain.chain.length - 1
].hash,
messages: this.messagePool.getAllRelatedMessages(
msg.dataSharingReq
),
aggregatedModel,
},
this.wallet,
MSG_TYPE.blockVerifyReq
);
this.broadcastMessage(blockVerifyReq);
}
}
}, HEARTBEAT_TIMEOUT * 1000);
}
}
break;
case MSG_TYPE.blockVerifyReq:
if (this.messagePool.messageExistsWithHash(msg)) break;
// Get the right chain from network before validating a new block
const getChainReq = new Message(
{},
this.wallet,
MSG_TYPE.getChainReq
);
this.broadcastMessage(getChainReq);
// Need to wait for getChainRes
setTimeout(() => {
console.log('x');
if (this.messagePool.verifyMessage(msg, this.blockchain)) {
console.log('y');
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
if (msg.category === process.env.CATEGORY) {
// Need to wait for the blockVerifyReq, which has dataSharingRes as much as possible to avoid attack
// So need to wait for HEARTBEAT_TIMEOUT second(s) and get the best one
// But I don't do it here
const blockVerifyRes = new Message(
{
blockVerifyReq: msg,
committeeSignature: {
publicKey: this.wallet.getPublicKey(),
signature: this.wallet.sign(msg.hash),
},
},
this.wallet,
MSG_TYPE.blockVerifyRes
);
this.broadcastMessage(blockVerifyRes);
}
}
}, HEARTBEAT_TIMEOUT * 1000);
break;
case MSG_TYPE.blockVerifyRes:
if (
this.messagePool.verifyMessage(msg, this.blockchain) &&
!this.messagePool.messageExistsWithHash(msg) &&
!this.messagePool.isMessageBlockVerifyResDuplicated(msg)
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
if (msg.blockVerifyReq.publicKey === this.wallet.getPublicKey()) {
const heartBeatReq = new Message(
{},
this.wallet,
MSG_TYPE.heartBeatReq
);
this.broadcastMessage(heartBeatReq);
setTimeout(() => {
const allHeartBeatRes =
this.messagePool.getAllHeartBeatRes(heartBeatReq);
const allBlockVerifyResCommitteeSignatures =
this.messagePool.getAllCommitteeSignaturesFromBlockVerifyRes(
msg.blockVerifyReq.hash
);
if (
this.messagePool.enoughBlockVerifyRes(
allHeartBeatRes,
allBlockVerifyResCommitteeSignatures
)
) {
const blockCommit = new Message(
{
timeStamp: msg.blockVerifyReq.timeStamp,
preHash: msg.blockVerifyReq.preHash,
messages: msg.blockVerifyReq.transaction.messages,
aggregatedModel: msg.blockVerifyReq.aggregatedModel,
committeeSignatures: allBlockVerifyResCommitteeSignatures,
},
this.wallet,
MSG_TYPE.blockCommit
);
this.broadcastMessage(blockCommit);
}
}, HEARTBEAT_TIMEOUT * 1000);
}
}
break;
case MSG_TYPE.blockCommit:
// To verify, nodes on network need to collect num of alive nodes and compare it with num of dataSharingRes with a valid rate (ex. 80%)
if (
this.messagePool.verifyMessage(msg, this.blockchain) &&
!this.messagePool.messageExistsWithHash(msg)
) {
msg.isSpent = false;
this.messagePool.addMessage(msg);
this.broadcastMessage(msg);
delete msg["isSpent"];
this.blockchain.addBlock(msg);
// Evaluating excution time
console.log("Excution time: ")
console.log((Date.now() - this.initialTimestamp) / 1000)
// Now mark all related messages in messagePool as spent
for (let i = 0; i < this.messagePool.messages.length; i++) {
if (
this.messagePool.messages[i].msgType ===
MSG_TYPE.dataRetrieval ||
this.messagePool.messages[i].msgType ===
MSG_TYPE.dataSharingReq ||
this.messagePool.messages[i].msgType === MSG_TYPE.dataSharingRes
)
for (let j = 0; j < msg.transaction.messages.length; j++) {
if (
this.messagePool.messages[i].hash ===
msg.transaction.messages[j].hash
) {
this.messagePool.messages[i].isSpent = true;
}
}
}
const { flRound, requester, requestCategory } =
Message.getDataSharingReqInfoFromBlockCommitMsg(msg);
if (requester === this.wallet.getPublicKey()) {
// Then check FL_ROUND_THRESHOLD to create a dataSharingReq message with new round
if (flRound < FL_ROUND_THESHOLD) {
const dataSharingReqMsg = new Message(
{
requestCategory,
requestModel: msg.aggregatedModel,
flRound: flRound + 1,
},
this.wallet,
MSG_TYPE.dataSharingReq
);
this.broadcastMessage(dataSharingReqMsg);
} else {
// Threshold reached
if (DEBUG) console.info("Final round reached!");
}
}
}
break;
default:
console.info("oops!");
}
});
}
}
module.exports = P2pServer;