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

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

Tunnels: Update profiles for tunnel peers on corrupt message at endpoint

parent 451e53a6
No related branches found
No related tags found
No related merge requests found
...@@ -117,8 +117,9 @@ class FragmentHandler { ...@@ -117,8 +117,9 @@ class FragmentHandler {
* sending the resulting I2NPMessages where necessary. The received * sending the resulting I2NPMessages where necessary. The received
* fragments are all verified. * fragments are all verified.
* *
* @return ok (false if corrupt)
*/ */
public void receiveTunnelMessage(byte preprocessed[], int offset, int length) { public boolean receiveTunnelMessage(byte preprocessed[], int offset, int length) {
boolean ok = verifyPreprocessed(preprocessed, offset, length); boolean ok = verifyPreprocessed(preprocessed, offset, length);
if (!ok) { if (!ok) {
if (_log.shouldLog(Log.WARN)) if (_log.shouldLog(Log.WARN))
...@@ -126,7 +127,7 @@ class FragmentHandler { ...@@ -126,7 +127,7 @@ class FragmentHandler {
+ preprocessed.length + " off=" +offset + " len=" + length); + preprocessed.length + " off=" +offset + " len=" + length);
_cache.release(new ByteArray(preprocessed)); _cache.release(new ByteArray(preprocessed));
_context.statManager().addRateData("tunnel.corruptMessage", 1); _context.statManager().addRateData("tunnel.corruptMessage", 1);
return; return false;
} }
offset += HopProcessor.IV_LENGTH; // skip the IV offset += HopProcessor.IV_LENGTH; // skip the IV
offset += 4; // skip the hash segment offset += 4; // skip the hash segment
...@@ -139,7 +140,7 @@ class FragmentHandler { ...@@ -139,7 +140,7 @@ class FragmentHandler {
_context.statManager().addRateData("tunnel.corruptMessage", 1); _context.statManager().addRateData("tunnel.corruptMessage", 1);
if (_log.shouldWarn()) if (_log.shouldWarn())
_log.warn("Corrupt fragment received: off = " + offset); _log.warn("Corrupt fragment received: off = " + offset);
return; return false;
} }
padding++; padding++;
} }
...@@ -155,7 +156,7 @@ class FragmentHandler { ...@@ -155,7 +156,7 @@ class FragmentHandler {
_context.statManager().addRateData("tunnel.corruptMessage", 1); _context.statManager().addRateData("tunnel.corruptMessage", 1);
if (_log.shouldWarn()) if (_log.shouldWarn())
_log.warn("Corrupt fragment received: off = " + off); _log.warn("Corrupt fragment received: off = " + off);
return; return false;
} }
offset = off; offset = off;
} }
...@@ -163,10 +164,12 @@ class FragmentHandler { ...@@ -163,10 +164,12 @@ class FragmentHandler {
_context.statManager().addRateData("tunnel.corruptMessage", 1); _context.statManager().addRateData("tunnel.corruptMessage", 1);
if (_log.shouldWarn()) if (_log.shouldWarn())
_log.warn("Corrupt fragment received: offset = " + offset, aioobe); _log.warn("Corrupt fragment received: offset = " + offset, aioobe);
return false;
} catch (NullPointerException npe) { } catch (NullPointerException npe) {
if (_log.shouldWarn()) if (_log.shouldWarn())
_log.warn("Corrupt fragment received: offset = " + offset, npe); _log.warn("Corrupt fragment received: offset = " + offset, npe);
_context.statManager().addRateData("tunnel.corruptMessage", 1); _context.statManager().addRateData("tunnel.corruptMessage", 1);
return false;
} catch (RuntimeException e) { } catch (RuntimeException e) {
if (_log.shouldWarn()) if (_log.shouldWarn())
_log.warn("Corrupt fragment received: offset = " + offset, e); _log.warn("Corrupt fragment received: offset = " + offset, e);
...@@ -183,6 +186,7 @@ class FragmentHandler { ...@@ -183,6 +186,7 @@ class FragmentHandler {
// let's limit the damage here and skip the: // let's limit the damage here and skip the:
// .transport.udp.MessageReceiver: b0rked receiving a message.. wazza huzza hmm? // .transport.udp.MessageReceiver: b0rked receiving a message.. wazza huzza hmm?
//throw e; //throw e;
return false;
} finally { } finally {
// each of the FragmentedMessages populated make a copy out of the // each of the FragmentedMessages populated make a copy out of the
// payload, which they release separately, so we can release // payload, which they release separately, so we can release
...@@ -192,6 +196,7 @@ class FragmentHandler { ...@@ -192,6 +196,7 @@ class FragmentHandler {
// in order to put it in the pool, but it shouldn't cause any harm. // in order to put it in the pool, but it shouldn't cause any harm.
_cache.release(new ByteArray(preprocessed)); _cache.release(new ByteArray(preprocessed));
} }
return true;
} }
public int getCompleteCount() { return _completed.get(); } public int getCompleteCount() { return _completed.get(); }
......
...@@ -32,7 +32,8 @@ class OutboundTunnelEndpoint { ...@@ -32,7 +32,8 @@ class OutboundTunnelEndpoint {
public void dispatch(TunnelDataMessage msg, Hash recvFrom) { public void dispatch(TunnelDataMessage msg, Hash recvFrom) {
_config.incrementProcessedMessages(); _config.incrementProcessedMessages();
boolean ok = _processor.process(msg.getData(), 0, msg.getData().length, recvFrom); byte[] data = msg.getData();
boolean ok = _processor.process(data, 0, data.length, recvFrom);
if (!ok) { if (!ok) {
// invalid IV // invalid IV
// If we pass it on to the handler, it will fail // If we pass it on to the handler, it will fail
...@@ -41,7 +42,16 @@ class OutboundTunnelEndpoint { ...@@ -41,7 +42,16 @@ class OutboundTunnelEndpoint {
_log.warn("Invalid IV, dropping at OBEP " + _config); _log.warn("Invalid IV, dropping at OBEP " + _config);
return; return;
} }
_handler.receiveTunnelMessage(msg.getData(), 0, msg.getData().length); ok = _handler.receiveTunnelMessage(data, 0, data.length);
if (!ok) {
// blame previous hop
Hash h = _config.getReceiveFrom();
if (h != null) {
if (_log.shouldLog(Log.WARN))
_log.warn(toString() + ": Blaming " + h + " 50%");
_context.profileManager().tunnelFailed(h, 50);
}
}
} }
private class DefragmentedHandler implements FragmentHandler.DefragmentedReceiver { private class DefragmentedHandler implements FragmentHandler.DefragmentedReceiver {
......
...@@ -122,10 +122,26 @@ class TunnelParticipant { ...@@ -122,10 +122,26 @@ class TunnelParticipant {
new TimeoutJob(_context, msg), MAX_LOOKUP_TIME); new TimeoutJob(_context, msg), MAX_LOOKUP_TIME);
} }
} else { } else {
_inboundEndpointProcessor.getConfig().incrementProcessedMessages(); // IBEP
if (_log.shouldLog(Log.DEBUG)) TunnelCreatorConfig cfg = _inboundEndpointProcessor.getConfig();
_log.debug("Receive fragment: on " + _config + ": " + msg); cfg.incrementProcessedMessages();
_handler.receiveTunnelMessage(data, 0, data.length); ok = _handler.receiveTunnelMessage(data, 0, data.length);
if (ok) {
if (_log.shouldLog(Log.DEBUG))
_log.debug("Receive fragment: on " + _config + ": " + msg);
} else {
// blame everybody equally
int lenm1 = cfg.getLength() - 1;
if (lenm1 > 0) {
int pct = 100 / (lenm1);
for (int i = 0; i < lenm1; i++) {
Hash h = cfg.getPeer(i);
if (_log.shouldLog(Log.WARN))
_log.warn(toString() + ": Blaming " + h + ' ' + pct + '%');
_context.profileManager().tunnelFailed(h, pct);
}
}
}
} }
} }
......
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