BOB ping command

This commit is contained in:
orignal 2025-08-19 15:21:44 -04:00
parent 1c42ba85ba
commit 39069e0bd6
5 changed files with 96 additions and 1 deletions

View file

@ -181,6 +181,7 @@ namespace garlic
{
if (!m_Destination) m_Destination.reset (new i2p::data::IdentHash (dest));
}
const i2p::data::IdentHash * GetDestinationPtr () const { return m_Destination ? m_Destination.get () : nullptr; }; // for pongs
bool CheckExpired (uint64_t ts); // true is expired
bool CanBeRestarted (uint64_t ts) const { return ts > m_SessionCreatedTimestamp + ECIESX25519_RESTART_TIMEOUT; }
bool IsInactive (uint64_t ts) const { return ts > m_LastActivityTimestamp + ECIESX25519_INACTIVITY_TIMEOUT && CanBeRestarted (ts); }

View file

@ -1991,6 +1991,7 @@ namespace stream
void StreamingDestination::Stop ()
{
ResetAcceptor ();
ResetPongHandler ();
m_PendingIncomingTimer.cancel ();
m_PendingIncomingStreams.clear ();
{
@ -2037,6 +2038,8 @@ namespace stream
{
// pong
LogPrint (eLogInfo, "Streaming: Pong received rSID=", packet->GetReceiveStreamID ());
if (m_PongHandler != nullptr)
m_PongHandler (packet->from ? packet->from->GetDestinationPtr () : nullptr);
DeletePacket (packet);
return;
}
@ -2216,6 +2219,16 @@ namespace stream
m_Acceptor = nullptr;
}
void StreamingDestination::SetPongHandler (const PongHandler& handler)
{
m_PongHandler = handler;
}
void StreamingDestination::ResetPongHandler ()
{
m_PongHandler = nullptr;
}
void StreamingDestination::AcceptOnce (const Acceptor& acceptor)
{
boost::asio::post (m_Owner->GetService (), [acceptor, this](void)

View file

@ -312,6 +312,7 @@ namespace stream
public:
typedef std::function<void (std::shared_ptr<Stream>)> Acceptor;
typedef std::function<void (const i2p::data::IdentHash *)> PongHandler;
StreamingDestination (std::shared_ptr<i2p::client::ClientDestination> owner, uint16_t localPort = 0, bool gzip = false);
~StreamingDestination ();
@ -330,6 +331,8 @@ namespace stream
void AcceptOnce (const Acceptor& acceptor);
void AcceptOnceAcceptor (std::shared_ptr<Stream> stream, Acceptor acceptor, Acceptor prev);
std::shared_ptr<Stream> AcceptStream (int timeout = 0); // sync
void SetPongHandler (const PongHandler& handler);
void ResetPongHandler ();
std::shared_ptr<i2p::client::ClientDestination> GetOwner () const { return m_Owner; };
void SetOwner (std::shared_ptr<i2p::client::ClientDestination> owner) { m_Owner = owner; };
@ -358,6 +361,7 @@ namespace stream
std::unordered_map<uint32_t, std::shared_ptr<Stream> > m_IncomingStreams; // receiveStreamID->stream
std::shared_ptr<Stream> m_LastStream;
Acceptor m_Acceptor;
PongHandler m_PongHandler;
std::list<std::shared_ptr<Stream> > m_PendingIncomingStreams;
boost::asio::deadline_timer m_PendingIncomingTimer;
std::unordered_map<uint32_t, std::list<Packet *> > m_SavedPackets; // receiveStreamID->packets, arrived before SYN

View file

@ -355,6 +355,17 @@ namespace client
Send ();
}
void BOBCommandSession::SendReplyOK (const std::vector<std::string_view>& strings)
{
std::ostream os(&m_SendBuffer);
os << "OK";
if (!strings.empty ()) os << " ";
for (auto& it: strings)
os << it;
os << std::endl;
Send ();
}
void BOBCommandSession::SendReplyError (const char * msg)
{
std::ostream os(&m_SendBuffer);
@ -802,6 +813,64 @@ namespace client
SendReplyError ("empty lookup address");
}
void BOBCommandSession::PingCommandHandler (const char * operand, size_t len)
{
LogPrint (eLogDebug, "BOB: ping ", operand);
if (*operand)
{
auto addr = context.GetAddressBook ().GetAddress (operand);
if (!addr)
{
SendReplyError ("Address Not found");
return;
}
auto localDestination = (m_CurrentDestination && m_CurrentDestination->IsRunning ()) ?
m_CurrentDestination->GetLocalDestination () : i2p::client::context.GetSharedLocalDestination ();
if (!localDestination)
{
SendReplyError ("No local destination");
return;
}
auto streamingDestination = localDestination->GetStreamingDestination ();
if (!streamingDestination)
{
SendReplyError ("No streaming destination");
return;
}
auto timer = std::make_shared<boost::asio::deadline_timer>(localDestination->GetService ());
timer->expires_from_now (boost::posix_time::milliseconds(BOB_PING_TIMEOUT));
timer->async_wait ([streamingDestination, s = shared_from_this ()](const boost::system::error_code& ecode)
{
if (ecode != boost::asio::error::operation_aborted)
{
LogPrint (eLogDebug, "BOB: Pong not received after ", BOB_PING_TIMEOUT, " millliseconds");
streamingDestination->ResetPongHandler ();
s->SendReplyError ("timeout");
}
});
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
streamingDestination->SetPongHandler (
[streamingDestination, timer, ts, s = shared_from_this ()](const i2p::data::IdentHash * from)
{
int t = i2p::util::GetMillisecondsSinceEpoch () - ts;
if (t < 0) t = 0;
streamingDestination->ResetPongHandler ();
timer->cancel ();
if (from)
s->SendReplyOK ({"pong ", "from ", from->ToBase32(), ".b32.i2p: time=", std::to_string (t), " ms"});
else
s->SendReplyOK ({"pong: time=", std::to_string (t), " ms"});
});
if (addr->IsIdentHash ())
localDestination->SendPing (addr->identHash);
else
localDestination->SendPing (addr->blindedPublicKey);
}
else
SendReplyError ("empty ping address");
}
void BOBCommandSession::ClearCommandHandler (const char * operand, size_t len)
{
LogPrint (eLogDebug, "BOB: clear");
@ -949,6 +1018,7 @@ namespace client
m_CommandHandlers[BOB_COMMAND_QUIET] = &BOBCommandSession::QuietCommandHandler;
m_CommandHandlers[BOB_COMMAND_LOOKUP] = &BOBCommandSession::LookupCommandHandler;
m_CommandHandlers[BOB_COMMAND_LOOKUP_LOCAL] = &BOBCommandSession::LookupLocalCommandHandler;
m_CommandHandlers[BOB_COMMAND_PING] = &BOBCommandSession::PingCommandHandler;
m_CommandHandlers[BOB_COMMAND_CLEAR] = &BOBCommandSession::ClearCommandHandler;
m_CommandHandlers[BOB_COMMAND_LIST] = &BOBCommandSession::ListCommandHandler;
m_CommandHandlers[BOB_COMMAND_OPTION] = &BOBCommandSession::OptionCommandHandler;

View file

@ -14,6 +14,8 @@
#include <memory>
#include <map>
#include <string>
#include <string_view>
#include <vector>
#include <optional>
#include <boost/asio.hpp>
#include "util.h"
@ -29,6 +31,8 @@ namespace i2p
namespace client
{
const size_t BOB_COMMAND_BUFFER_SIZE = 1024;
const int BOB_PING_TIMEOUT = 8000; // in milliseconds
const char BOB_COMMAND_ZAP[] = "zap";
const char BOB_COMMAND_QUIT[] = "quit";
const char BOB_COMMAND_START[] = "start";
@ -46,6 +50,7 @@ namespace client
const char BOB_COMMAND_QUIET[] = "quiet";
const char BOB_COMMAND_LOOKUP[] = "lookup";
const char BOB_COMMAND_LOOKUP_LOCAL[] = "lookuplocal";
const char BOB_COMMAND_PING[] = "ping";
const char BOB_COMMAND_CLEAR[] = "clear";
const char BOB_COMMAND_LIST[] = "list";
const char BOB_COMMAND_OPTION[] = "option";
@ -233,6 +238,7 @@ namespace client
void QuietCommandHandler (const char * operand, size_t len);
void LookupCommandHandler (const char * operand, size_t len);
void LookupLocalCommandHandler (const char * operand, size_t len);
void PingCommandHandler (const char * operand, size_t len);
void ClearCommandHandler (const char * operand, size_t len);
void ListCommandHandler (const char * operand, size_t len);
void OptionCommandHandler (const char * operand, size_t len);
@ -249,6 +255,7 @@ namespace client
void Send ();
void HandleSent (const boost::system::error_code& ecode, std::size_t bytes_transferred);
void SendReplyOK (const char * msg = nullptr);
void SendReplyOK (const std::vector<std::string_view>& strings);
void SendReplyError (const char * msg);
void SendRaw (const char * data);