I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit e105ca92 authored by zzz's avatar zzz
Browse files

Bundle a reply when we switch tunnels, to detect failure sooner

parent 10e2c383
No related branches found
No related tags found
No related merge requests found
...@@ -61,6 +61,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -61,6 +61,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
private long _leaseSetLookupBegin; private long _leaseSetLookupBegin;
private TunnelInfo _outTunnel; private TunnelInfo _outTunnel;
private TunnelInfo _inTunnel; private TunnelInfo _inTunnel;
private boolean _wantACK;
/** /**
* final timeout (in milliseconds) that the outbound message will fail in. * final timeout (in milliseconds) that the outbound message will fail in.
...@@ -279,6 +280,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -279,6 +280,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
long lookupTime = getContext().clock().now() - _leaseSetLookupBegin; long lookupTime = getContext().clock().now() - _leaseSetLookupBegin;
getContext().statManager().addRateData("client.leaseSetFoundRemoteTime", lookupTime, lookupTime); getContext().statManager().addRateData("client.leaseSetFoundRemoteTime", lookupTime, lookupTime);
} }
_wantACK = false;
boolean ok = getNextLease(); boolean ok = getNextLease();
if (ok) { if (ok) {
send(); send();
...@@ -412,6 +414,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -412,6 +414,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
} }
if (_log.shouldLog(Log.INFO)) if (_log.shouldLog(Log.INFO))
_log.info("Added to cache - lease for " + _toString); _log.info("Added to cache - lease for " + _toString);
_wantACK = true;
return true; return true;
} }
...@@ -455,14 +458,14 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -455,14 +458,14 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
dieFatal(); dieFatal();
return; return;
} }
boolean wantACK = true;
int existingTags = GarlicMessageBuilder.estimateAvailableTags(getContext(), _leaseSet.getEncryptionKey()); int existingTags = GarlicMessageBuilder.estimateAvailableTags(getContext(), _leaseSet.getEncryptionKey());
_outTunnel = selectOutboundTunnel(_to);
// what's the point of 5% random? possible improvements or replacements: // what's the point of 5% random? possible improvements or replacements:
// - wantACK if we changed their inbound lease // - wantACK if we changed their inbound lease (getNextLease() sets _wantACK)
// - wantACK if we changed our outbound tunnel (requires moving selectOutboundTunnel() before this) // - wantACK if we changed our outbound tunnel (selectOutboundTunnel() sets _wantACK)
// - wantACK if we haven't in last 1m (requires a new static cache probably) // - wantACK if we haven't in last 1m (requires a new static cache probably)
if ( (existingTags > 30) && (getContext().random().nextInt(100) >= 5) ) boolean wantACK = _wantACK || existingTags <= 30 || getContext().random().nextInt(100) < 5;
wantACK = false;
PublicKey key = _leaseSet.getEncryptionKey(); PublicKey key = _leaseSet.getEncryptionKey();
SessionKey sessKey = new SessionKey(); SessionKey sessKey = new SessionKey();
...@@ -519,7 +522,6 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -519,7 +522,6 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
+ _lease.getTunnelId() + " on " + _lease.getTunnelId() + " on "
+ _lease.getGateway().toBase64()); + _lease.getGateway().toBase64());
_outTunnel = selectOutboundTunnel(_to);
if (_outTunnel != null) { if (_outTunnel != null) {
if (_log.shouldLog(Log.DEBUG)) if (_log.shouldLog(Log.DEBUG))
_log.debug(getJobId() + ": Sending tunnel message out " + _outTunnel.getSendTunnelId(0) + " to " _log.debug(getJobId() + ": Sending tunnel message out " + _outTunnel.getSendTunnelId(0) + " to "
...@@ -734,6 +736,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -734,6 +736,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
_log.warn("Switching back to tunnel " + tunnel + " for " + _toString); _log.warn("Switching back to tunnel " + tunnel + " for " + _toString);
_backloggedTunnelCache.remove(hashPair()); _backloggedTunnelCache.remove(hashPair());
_tunnelCache.put(hashPair(), tunnel); _tunnelCache.put(hashPair(), tunnel);
_wantACK = true;
return tunnel; return tunnel;
} // else still backlogged } // else still backlogged
} else // no longer valid } else // no longer valid
...@@ -756,6 +759,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl { ...@@ -756,6 +759,7 @@ public class OutboundClientMessageOneShotJob extends JobImpl {
tunnel = selectOutboundTunnel(); tunnel = selectOutboundTunnel();
if (tunnel != null) if (tunnel != null)
_tunnelCache.put(hashPair(), tunnel); _tunnelCache.put(hashPair(), tunnel);
_wantACK = true;
} }
return tunnel; return tunnel;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment