Skip to content

Commit

Permalink
handle I2NP messages drops
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Jan 30, 2024
1 parent d926a31 commit f008478
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 4 deletions.
7 changes: 5 additions & 2 deletions libi2pd/I2NPProtocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <string.h>
#include <set>
#include <memory>
#include <functional>
#include "Crypto.h"
#include "I2PEndian.h"
#include "Identity.h"
Expand Down Expand Up @@ -149,7 +150,8 @@ namespace tunnel
uint8_t * buf;
size_t len, offset, maxLen;
std::shared_ptr<i2p::tunnel::InboundTunnel> from;

std::function<void ()> onDrop;

I2NPMessage (): buf (nullptr),len (I2NP_HEADER_SIZE + 2),
offset(2), maxLen (0), from (nullptr) {}; // reserve 2 bytes for NTCP header

Expand Down Expand Up @@ -241,7 +243,6 @@ namespace tunnel
SetSize (len - offset - I2NP_HEADER_SIZE);
SetChks (0);
}

void ToNTCP2 ()
{
uint8_t * ntcp2 = GetNTCP2Header ();
Expand All @@ -253,6 +254,8 @@ namespace tunnel
void RenewI2NPMessageHeader ();
bool IsExpired () const;
bool IsExpired (uint64_t ts) const; // in milliseconds

void Drop () { if (onDrop) { onDrop (); onDrop = nullptr; }; }
};

template<int sz>
Expand Down
1 change: 1 addition & 0 deletions libi2pd/NTCP2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1140,6 +1140,7 @@ namespace transport
if (!msg || msg->IsExpired (ts))
{
// drop null or expired message
if (msg) msg->Drop ();
m_SendQueue.pop_front ();
continue;
}
Expand Down
6 changes: 5 additions & 1 deletion libi2pd/NetDb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,11 @@ namespace data
!i2p::transport::transports.IsConnected (floodfill->GetIdentHash ()))
direct = false; // floodfill can't be reached directly
if (direct)
transports.SendMessage (floodfill->GetIdentHash (), dest->CreateRequestMessage (floodfill->GetIdentHash ()));
{
auto msg = dest->CreateRequestMessage (floodfill->GetIdentHash ());
msg->onDrop = [this, dest]() { this->m_Requests.SendNextRequest (dest); };
transports.SendMessage (floodfill->GetIdentHash (), msg);
}
else
{
auto pool = i2p::tunnel::tunnels.GetExploratoryPool ();
Expand Down
6 changes: 5 additions & 1 deletion libi2pd/NetDbRequests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ namespace data
!i2p::transport::transports.IsConnected (nextFloodfill->GetIdentHash ()))
direct = false; // floodfill can't be reached directly
if (direct)
i2p::transport::transports.SendMessage (nextFloodfill->GetIdentHash (), dest->CreateRequestMessage (nextFloodfill->GetIdentHash ()));
{
auto msg = dest->CreateRequestMessage (nextFloodfill->GetIdentHash ());
msg->onDrop = [this, dest]() { this->SendNextRequest (dest); };
i2p::transport::transports.SendMessage (nextFloodfill->GetIdentHash (), msg);
}
else
{
auto pool = i2p::tunnel::tunnels.GetExploratoryPool ();
Expand Down
1 change: 1 addition & 0 deletions libi2pd/SSU2Session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ namespace transport
if (!msg || msg->IsExpired (ts))
{
// drop null or expired message
if (msg) msg->Drop ();
m_SendQueue.pop_front ();
continue;
}
Expand Down
7 changes: 7 additions & 0 deletions libi2pd/Transports.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ namespace transport
}
}

~Peer ()
{
// drop not sent delayed messages
for (auto& it: delayedMessages)
it->Drop ();
}

void Done ()
{
for (auto& it: sessions)
Expand Down

0 comments on commit f008478

Please sign in to comment.