-
Notifications
You must be signed in to change notification settings - Fork 1
/
parent_composer.js
executable file
·258 lines (240 loc) · 12.6 KB
/
parent_composer.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
/*jslint node: true */
"use strict";
var _ = require('lodash');
var db = require('./db.js');
var constants = require("./constants.js");
var conf = require("./conf.js");
var storage = require("./storage.js");
var main_chain = require("./main_chain.js");
function pickParentUnits(conn, arrWitnesses, onDone){
// don't exclude units derived from unwitnessed potentially bad units! It is not their blame and can cause a split.
// test creating bad units
//var cond = bDeep ? "is_on_main_chain=1" : "is_free=0 AND main_chain_index=1420";
//var order_and_limit = bDeep ? "ORDER BY main_chain_index DESC LIMIT 1" : "ORDER BY unit LIMIT 1";
conn.query(
"SELECT \n\
unit, version, alt, ( \n\
SELECT COUNT(*) \n\
FROM unit_witnesses \n\
WHERE unit_witnesses.unit IN(units.unit, units.witness_list_unit) AND address IN(?) \n\
) AS count_matching_witnesses \n\
FROM units "+(conf.storage === 'sqlite' ? "INDEXED BY byFree" : "")+" \n\
LEFT JOIN archived_joints USING(unit) \n\
WHERE +sequence='good' AND is_free=1 AND archived_joints.unit IS NULL ORDER BY unit",
// exclude potential parents that were archived and then received again
[arrWitnesses],
function(rows){
if (rows.some(function(row){ return (row.version !== constants.version || row.alt !== constants.alt); }))
throw Error('wrong network');
var count_required_matches = constants.COUNT_WITNESSES - constants.MAX_WITNESS_LIST_MUTATIONS;
// we need at least one compatible parent, otherwise go deep
if (rows.filter(function(row){ return (row.count_matching_witnesses >= count_required_matches); }).length === 0)
return pickDeepParentUnits(conn, arrWitnesses, null, onDone);
var arrParentUnits = rows.map(function(row){ return row.unit; });
adjustParentsToNotRetreatWitnessedLevel(conn, arrWitnesses, arrParentUnits, function(arrAdjustedParents){
onDone(null, arrAdjustedParents);
});
// checkWitnessedLevelNotRetreatingAndLookLower(conn, arrWitnesses, arrParentUnits, (arrParentUnits.length === 1), onDone);
}
);
}
function adjustParentsToNotRetreatWitnessedLevel(conn, arrWitnesses, arrParentUnits, handleAdjustedParents){
var arrExcludedUnits = [];
var iterations = 0;
function replaceExcludedParent(arrCurrentParentUnits, excluded_unit){
console.log('replaceExcludedParent '+arrCurrentParentUnits.join(', ')+" excluding "+excluded_unit);
var arrNewExcludedUnits = [excluded_unit];
console.log('excluded parents: '+arrNewExcludedUnits.join(', '));
arrExcludedUnits = arrExcludedUnits.concat(arrNewExcludedUnits);
var arrParentsToKeep = _.difference(arrCurrentParentUnits, arrNewExcludedUnits);
conn.query("SELECT DISTINCT parent_unit FROM parenthoods WHERE child_unit IN(?)", [arrNewExcludedUnits], function(rows){
var arrCandidateReplacements = rows.map(function(row){ return row.parent_unit; });
console.log('candidate replacements: '+arrCandidateReplacements.join(', '));
conn.query(
"SELECT DISTINCT parent_unit FROM parenthoods \n\
WHERE parent_unit IN(?) AND child_unit NOT IN("+arrExcludedUnits.map(db.escape).join(', ')+")",
[arrCandidateReplacements],
function(rows){
var arrCandidatesWithOtherChildren = rows.map(function(row){ return row.parent_unit; });
console.log('candidates with other children: '+arrCandidatesWithOtherChildren.join(', '));
var arrReplacementParents = _.difference(arrCandidateReplacements, arrCandidatesWithOtherChildren);
console.log('replacements for excluded parents: '+arrReplacementParents.join(', '));
var arrNewParents = arrParentsToKeep.concat(arrReplacementParents);
console.log('new parents: '+arrNewParents.join(', '));
if (arrNewParents.length === 0)
throw Error("no new parents for initial parents "+arrParentUnits.join(', ')+", current parents "+arrCurrentParentUnits.join(', ')+", excluded unit "+excluded_unit+", excluded units "+arrExcludedUnits.join(', ')+", and witnesses "+arrWitnesses.join(', '));
checkWitnessedLevelAndReplace(arrNewParents);
}
);
});
}
function checkWitnessedLevelAndReplace(arrCurrentParentUnits){
console.log('checkWitnessedLevelAndReplace '+arrCurrentParentUnits.join(', '));
if (iterations > 0 && arrExcludedUnits.length === 0)
throw Error("infinite cycle");
iterations++;
determineWitnessedLevels(conn, arrWitnesses, arrCurrentParentUnits, function(child_witnessed_level, best_parent_witnessed_level, best_parent_unit){
if (child_witnessed_level >= best_parent_witnessed_level){
if (arrCurrentParentUnits.length <= constants.MAX_PARENTS_PER_UNIT)
return handleAdjustedParents(arrCurrentParentUnits.sort());
var bp_index = arrCurrentParentUnits.indexOf(best_parent_unit);
if (bp_index < 0)
throw Error("best parent "+best_parent_unit+" not found among parents "+arrCurrentParentUnits.join(', '));
arrCurrentParentUnits.splice(bp_index, 1);
arrCurrentParentUnits.unshift(best_parent_unit); // moves best_parent_unit to the 1st position to make sure it is not sliced off
return handleAdjustedParents(arrCurrentParentUnits.slice(0, constants.MAX_PARENTS_PER_UNIT).sort());
}
console.log('wl would retreat from '+best_parent_witnessed_level+' to '+child_witnessed_level+', parents '+arrCurrentParentUnits.join(', '));
replaceExcludedParent(arrCurrentParentUnits, best_parent_unit);
});
}
checkWitnessedLevelAndReplace(arrParentUnits);
}
function pickParentUnitsUnderWitnessedLevel(conn, arrWitnesses, max_wl, onDone){
console.log("looking for free parents under wl "+max_wl);
conn.query(
"SELECT unit \n\
FROM units "+(conf.storage === 'sqlite' ? "INDEXED BY byFree" : "")+" \n\
WHERE +sequence='good' AND is_free=1 AND witnessed_level<? \n\
AND ( \n\
SELECT COUNT(*) \n\
FROM unit_witnesses \n\
WHERE unit_witnesses.unit IN(units.unit, units.witness_list_unit) AND address IN(?) \n\
)>=? \n\
ORDER BY witnessed_level DESC, level DESC LIMIT ?",
[max_wl, arrWitnesses, constants.COUNT_WITNESSES - constants.MAX_WITNESS_LIST_MUTATIONS, constants.MAX_PARENTS_PER_UNIT],
function(rows){
if (rows.length === 0)
return pickDeepParentUnits(conn, arrWitnesses, max_wl, onDone);
var arrParentUnits = rows.map(function(row){ return row.unit; }).sort();
checkWitnessedLevelNotRetreatingAndLookLower(conn, arrWitnesses, arrParentUnits, true, onDone);
}
);
}
// if we failed to find compatible parents among free units.
// (This may be the case if an attacker floods the network trying to shift the witness list)
function pickDeepParentUnits(conn, arrWitnesses, max_wl, onDone){
// fixed: an attacker could cover all free compatible units with his own incompatible ones, then those that were not on MC will be never included
//var cond = bDeep ? "is_on_main_chain=1" : "is_free=1";
console.log("looking for deep parents, max_wl="+max_wl);
var and_wl = (max_wl === null) ? '' : "AND +is_on_main_chain=1 AND witnessed_level<"+max_wl;
conn.query(
"SELECT unit \n\
FROM units \n\
WHERE +sequence='good' "+and_wl+" \n\
AND ( \n\
SELECT COUNT(*) \n\
FROM unit_witnesses \n\
WHERE unit_witnesses.unit IN(units.unit, units.witness_list_unit) AND address IN(?) \n\
)>=? \n\
ORDER BY main_chain_index DESC LIMIT 1",
[arrWitnesses, constants.COUNT_WITNESSES - constants.MAX_WITNESS_LIST_MUTATIONS],
function(rows){
if (rows.length === 0)
return onDone("failed to find compatible parents: no deep units");
var arrParentUnits = rows.map(function(row){ return row.unit; });
checkWitnessedLevelNotRetreatingAndLookLower(conn, arrWitnesses, arrParentUnits, true, onDone);
}
);
}
function determineWitnessedLevels(conn, arrWitnesses, arrParentUnits, handleResult){
storage.determineWitnessedLevelAndBestParent(conn, arrParentUnits, arrWitnesses, function(witnessed_level, best_parent_unit){
storage.readStaticUnitProps(conn, best_parent_unit, function(bestParentProps){
handleResult(witnessed_level, bestParentProps.witnessed_level, best_parent_unit);
});
});
}
function checkWitnessedLevelNotRetreatingAndLookLower(conn, arrWitnesses, arrParentUnits, bRetryDeeper, onDone){
determineWitnessedLevels(conn, arrWitnesses, arrParentUnits, function(child_witnessed_level, best_parent_witnessed_level){
if (child_witnessed_level >= best_parent_witnessed_level)
return onDone(null, arrParentUnits);
console.log("witness level would retreat from "+best_parent_witnessed_level+" to "+child_witnessed_level+" if parents = "+arrParentUnits.join(', ')+", will look for older parents");
bRetryDeeper
? pickDeepParentUnits(conn, arrWitnesses, best_parent_witnessed_level, onDone)
: pickParentUnitsUnderWitnessedLevel(conn, arrWitnesses, best_parent_witnessed_level, onDone);
});
}
function findLastStableMcBall(conn, arrWitnesses, onDone){
conn.query(
"SELECT ball, unit, main_chain_index FROM units JOIN balls USING(unit) \n\
WHERE is_on_main_chain=1 AND is_stable=1 AND +sequence='good' AND ( \n\
SELECT COUNT(*) \n\
FROM unit_witnesses \n\
WHERE unit_witnesses.unit IN(units.unit, units.witness_list_unit) AND address IN(?) \n\
)>=? \n\
ORDER BY main_chain_index DESC LIMIT 1",
[arrWitnesses, constants.COUNT_WITNESSES - constants.MAX_WITNESS_LIST_MUTATIONS],
function(rows){
if (rows.length === 0)
return onDone("failed to find last stable ball");
onDone(null, rows[0].ball, rows[0].unit, rows[0].main_chain_index);
}
);
}
function adjustLastStableMcBallAndParents(conn, last_stable_mc_ball_unit, arrParentUnits, arrWitnesses, handleAdjustedLastStableUnit){
main_chain.determineIfStableInLaterUnits(conn, last_stable_mc_ball_unit, arrParentUnits, function(bStable){
if (bStable){
conn.query("SELECT ball, main_chain_index FROM units JOIN balls USING(unit) WHERE unit=?", [last_stable_mc_ball_unit], function(rows){
if (rows.length !== 1)
throw Error("not 1 ball by unit "+last_stable_mc_ball_unit);
var row = rows[0];
handleAdjustedLastStableUnit(row.ball, last_stable_mc_ball_unit, row.main_chain_index, arrParentUnits);
});
return;
}
console.log('will adjust last stable ball because '+last_stable_mc_ball_unit+' is not stable in view of parents '+arrParentUnits.join(', '));
/*if (arrParentUnits.length > 1){ // select only one parent
pickDeepParentUnits(conn, arrWitnesses, null, function(err, arrAdjustedParentUnits){
if (err)
throw Error("pickDeepParentUnits in adjust failed: "+err);
adjustLastStableMcBallAndParents(conn, last_stable_mc_ball_unit, arrAdjustedParentUnits, arrWitnesses, handleAdjustedLastStableUnit);
});
return;
}*/
storage.readStaticUnitProps(conn, last_stable_mc_ball_unit, function(objUnitProps){
if (!objUnitProps.best_parent_unit)
throw Error("no best parent of "+last_stable_mc_ball_unit);
adjustLastStableMcBallAndParents(conn, objUnitProps.best_parent_unit, arrParentUnits, arrWitnesses, handleAdjustedLastStableUnit);
});
});
}
function trimParentList(conn, arrParentUnits, arrWitnesses, handleTrimmedList){
if (arrParentUnits.length <= constants.MAX_PARENTS_PER_UNIT)
return handleTrimmedList(arrParentUnits);
conn.query(
"SELECT unit, (SELECT 1 FROM unit_authors WHERE unit_authors.unit=units.unit AND address IN(?) LIMIT 1) AS is_witness \n\
FROM units WHERE unit IN("+arrParentUnits.map(db.escape).join(', ')+") ORDER BY is_witness DESC, "+db.getRandom()+" LIMIT ?",
[arrWitnesses, constants.MAX_PARENTS_PER_UNIT],
function(rows){
handleTrimmedList(rows.map(function(row){ return row.unit; }).sort());
}
);
}
function pickParentUnitsAndLastBall(conn, arrWitnesses, onDone){
pickParentUnits(conn, arrWitnesses, function(err, arrParentUnits){
if (err)
return onDone(err);
findLastStableMcBall(conn, arrWitnesses, function(err, last_stable_mc_ball, last_stable_mc_ball_unit, last_stable_mc_ball_mci){
if (err)
return onDone(err);
adjustLastStableMcBallAndParents(
conn, last_stable_mc_ball_unit, arrParentUnits, arrWitnesses,
function(last_stable_ball, last_stable_unit, last_stable_mci, arrAdjustedParentUnits){
trimParentList(conn, arrAdjustedParentUnits, arrWitnesses, function(arrTrimmedParentUnits){
storage.findWitnessListUnit(conn, arrWitnesses, last_stable_mci, function(witness_list_unit){
var objFakeUnit = {parent_units: arrTrimmedParentUnits};
if (witness_list_unit)
objFakeUnit.witness_list_unit = witness_list_unit;
storage.determineIfHasWitnessListMutationsAlongMc(conn, objFakeUnit, last_stable_unit, arrWitnesses, function(err){
if (err)
return onDone(err); // if first arg is not array, it is error
onDone(null, arrTrimmedParentUnits, last_stable_ball, last_stable_unit, last_stable_mci);
});
});
});
}
);
});
});
}
exports.pickParentUnitsAndLastBall = pickParentUnitsAndLastBall;