change unreachableNode 2nd param to object, put lock around getRandomSnodeAddress so they can't stack, markRandomNodeUnreachable returns remaining count, adjust logging

pull/988/head
Ryan Tharp 5 years ago
parent 1c78e1a701
commit e3545fa338

@ -15,6 +15,7 @@ class LokiSnodeAPI {
this.localUrl = localUrl; // localhost.loki this.localUrl = localUrl; // localhost.loki
this.randomSnodePool = []; this.randomSnodePool = [];
this.swarmsPendingReplenish = {}; this.swarmsPendingReplenish = {};
this.initialiseRandomPoolPromise = false;
} }
async getRandomSnodeAddress() { async getRandomSnodeAddress() {
@ -35,8 +36,13 @@ class LokiSnodeAPI {
seedNodes = [...window.seedNodeList], seedNodes = [...window.seedNodeList],
consecutiveErrors = 0 consecutiveErrors = 0
) { ) {
// if currently not in progress
if (this.initialiseRandomPoolPromise === false) {
// FIXME: add timeout
// set lock
this.initialiseRandomPoolPromise = new Promise(async resolve => {
const params = { const params = {
limit: 20, limit: 1024,
active_only: true, active_only: true,
fields: { fields: {
public_ip: true, public_ip: true,
@ -51,6 +57,7 @@ class LokiSnodeAPI {
)[0]; )[0];
let snodes = []; let snodes = [];
try { try {
log.info('loki_snodes: Refreshing random snode pool');
const response = await lokiRpc( const response = await lokiRpc(
`http://${seedNode.ip}`, `http://${seedNode.ip}`,
seedNode.port, seedNode.port,
@ -69,19 +76,20 @@ class LokiSnodeAPI {
pubkey_x25519: snode.pubkey_x25519, pubkey_x25519: snode.pubkey_x25519,
pubkey_ed25519: snode.pubkey_ed25519, pubkey_ed25519: snode.pubkey_ed25519,
})); }));
log.info('loki_snodes: Refreshed random snode pool with', this.randomSnodePool.length, 'snodes');
} catch (e) { } catch (e) {
log.warn('initialiseRandomPool error', e.code, e.message); log.warn('loki_snodes: initialiseRandomPool error', e.code, e.message);
if (consecutiveErrors < 3) { if (consecutiveErrors < 3) {
// retry after a possible delay // retry after a possible delay
setTimeout(() => { setTimeout(() => {
log.info( log.info(
'Retrying initialising random snode pool, try #', 'loki_snodes: Retrying initialising random snode pool, try #',
consecutiveErrors consecutiveErrors
); );
this.initialiseRandomPool(seedNodes, consecutiveErrors + 1); this.initialiseRandomPool(seedNodes, consecutiveErrors + 1);
}, consecutiveErrors * consecutiveErrors * 5000); }, consecutiveErrors * consecutiveErrors * 5000);
} else { } else {
log.error('Giving up trying to contact seed node'); log.error('loki_snodes: Giving up trying to contact seed node');
if (snodes.length === 0) { if (snodes.length === 0) {
throw new window.textsecure.SeedNodeError( throw new window.textsecure.SeedNodeError(
'Failed to contact seed node' 'Failed to contact seed node'
@ -89,16 +97,38 @@ class LokiSnodeAPI {
} }
} }
} }
// clear lock
this.initialiseRandomPoolPromise = null;
resolve();
})
}
await this.initialiseRandomPoolPromise;
} }
// nodeUrl is like 9hrje1bymy7hu6nmtjme9idyu3rm8gr3mkstakjyuw1997t7w4ny.snode // unreachableNode.url is like 9hrje1bymy7hu6nmtjme9idyu3rm8gr3mkstakjyuw1997t7w4ny.snode
async unreachableNode(pubKey, nodeUrl) { async unreachableNode(pubKey, unreachableNode) {
const conversation = ConversationController.get(pubKey); const conversation = ConversationController.get(pubKey);
const swarmNodes = [...conversation.get('swarmNodes')]; const swarmNodes = [...conversation.get('swarmNodes')];
if (typeof(unreachableNode) === 'string') {
log.warn('loki_snodes::unreachableNode: String passed as unreachableNode to unreachableNode');
return swarmNodes;
}
let found = false
const filteredNodes = swarmNodes.filter( const filteredNodes = swarmNodes.filter(
node => node.address !== nodeUrl && node.ip !== nodeUrl node => {
// keep all but thisNode
const thisNode = (node.address === unreachableNode.address && node.ip === unreachableNode.ip && node.port === unreachableNode.port)
if (thisNode) {
found = true
}
return !thisNode
}
); );
if (!found) {
log.warn(`loki_snodes::unreachableNode snode ${unreachableNode.ip}:${unreachableNode.port} has already been marked as bad`);
}
await conversation.updateSwarmNodes(filteredNodes); await conversation.updateSwarmNodes(filteredNodes);
return filteredNodes;
} }
markRandomNodeUnreachable(snode) { markRandomNodeUnreachable(snode) {
@ -106,6 +136,7 @@ class LokiSnodeAPI {
this.randomSnodePool, this.randomSnodePool,
_.find(this.randomSnodePool, { ip: snode.ip, port: snode.port }) _.find(this.randomSnodePool, { ip: snode.ip, port: snode.port })
); );
return this.randomSnodePool.length;
} }
async updateLastHash(snode, hash, expiresAt) { async updateLastHash(snode, hash, expiresAt) {
@ -150,7 +181,7 @@ class LokiSnodeAPI {
try { try {
newSwarmNodes = await this.getSwarmNodes(pubKey); newSwarmNodes = await this.getSwarmNodes(pubKey);
} catch (e) { } catch (e) {
log.error('getFreshSwarmNodes error', e.code, e.message); log.error('loki_snodes: getFreshSwarmNodes error', e.code, e.message);
// TODO: Handle these errors sensibly // TODO: Handle these errors sensibly
newSwarmNodes = []; newSwarmNodes = [];
} }
@ -184,16 +215,25 @@ class LokiSnodeAPI {
); );
return []; return [];
} }
if (!result.snodes) {
log.warn(
`getSnodesForPubkey lokiRpc on ${snode.ip}:${
snode.port
} returned falsish value for snodes`,
result
);
return [];
}
const snodes = result.snodes.filter(tSnode => tSnode.ip !== '0.0.0.0'); const snodes = result.snodes.filter(tSnode => tSnode.ip !== '0.0.0.0');
return snodes; return snodes;
} catch (e) { } catch (e) {
const randomPoolRemainingCount = this.markRandomNodeUnreachable(snode);
log.error( log.error(
'getSnodesForPubkey error', 'loki_snodes: getSnodesForPubkey error',
e.code, e.code,
e.message, e.message,
`for ${snode.ip}:${snode.port}` `for ${snode.ip}:${snode.port}. ${randomPoolRemainingCount} snodes remaining in randomPool`
); );
this.markRandomNodeUnreachable(snode);
return []; return [];
} }
} }

Loading…
Cancel
Save