2020-05-22 16:18:41 +03:00
|
|
|
/*
|
2024-01-22 02:59:04 +03:00
|
|
|
* Copyright (c) 2013-2024, The PurpleI2P Project
|
2020-05-22 16:18:41 +03:00
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
2013-10-27 19:20:29 +04:00
|
|
|
#include <string.h>
|
2014-07-07 01:48:16 +04:00
|
|
|
#include <atomic>
|
2015-11-03 17:15:49 +03:00
|
|
|
#include "Base.h"
|
|
|
|
#include "Log.h"
|
2014-01-20 18:36:20 +04:00
|
|
|
#include "I2PEndian.h"
|
2013-10-27 19:20:29 +04:00
|
|
|
#include "Timestamp.h"
|
|
|
|
#include "RouterContext.h"
|
2017-04-22 03:04:16 +03:00
|
|
|
#include "NetDb.hpp"
|
2013-10-27 19:20:29 +04:00
|
|
|
#include "Tunnel.h"
|
2024-11-08 03:00:11 +03:00
|
|
|
#include "TransitTunnel.h"
|
2013-10-27 19:20:29 +04:00
|
|
|
#include "I2NPProtocol.h"
|
2016-06-27 23:40:46 +03:00
|
|
|
#include "version.h"
|
2013-10-27 19:20:29 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
std::shared_ptr<I2NPMessage> NewI2NPMessage ()
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
return std::make_shared<I2NPMessageBuffer<I2NP_MAX_MESSAGE_SIZE> >();
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
|
2015-11-24 21:09:12 +03:00
|
|
|
std::shared_ptr<I2NPMessage> NewI2NPShortMessage ()
|
2014-07-31 00:52:35 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
return std::make_shared<I2NPMessageBuffer<I2NP_MAX_SHORT_MESSAGE_SIZE> >();
|
2014-07-31 00:52:35 +04:00
|
|
|
}
|
|
|
|
|
2023-03-18 22:32:05 +03:00
|
|
|
std::shared_ptr<I2NPMessage> NewI2NPMediumMessage ()
|
|
|
|
{
|
|
|
|
return std::make_shared<I2NPMessageBuffer<I2NP_MAX_MEDIUM_MESSAGE_SIZE> >();
|
|
|
|
}
|
2023-05-08 17:50:27 +03:00
|
|
|
|
2021-06-27 22:49:57 +03:00
|
|
|
std::shared_ptr<I2NPMessage> NewI2NPTunnelMessage (bool endpoint)
|
2017-02-03 04:45:33 +03:00
|
|
|
{
|
2021-10-23 02:18:45 +03:00
|
|
|
return i2p::tunnel::tunnels.NewI2NPTunnelMessage (endpoint);
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2015-11-24 21:09:12 +03:00
|
|
|
std::shared_ptr<I2NPMessage> NewI2NPMessage (size_t len)
|
2014-07-31 02:20:42 +04:00
|
|
|
{
|
2023-03-18 22:32:05 +03:00
|
|
|
len += I2NP_HEADER_SIZE + 2;
|
|
|
|
if (len <= I2NP_MAX_SHORT_MESSAGE_SIZE) return NewI2NPShortMessage ();
|
|
|
|
if (len <= I2NP_MAX_MEDIUM_MESSAGE_SIZE) return NewI2NPMediumMessage ();
|
2023-05-08 17:50:27 +03:00
|
|
|
return NewI2NPMessage ();
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2015-05-11 22:17:43 +03:00
|
|
|
|
2020-05-02 18:13:40 +03:00
|
|
|
void I2NPMessage::FillI2NPMessageHeader (I2NPMessageType msgType, uint32_t replyMsgID, bool checksum)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2015-07-03 18:11:07 +03:00
|
|
|
SetTypeID (msgType);
|
2015-11-03 17:15:49 +03:00
|
|
|
if (!replyMsgID) RAND_bytes ((uint8_t *)&replyMsgID, 4);
|
2018-01-06 06:48:51 +03:00
|
|
|
SetMsgID (replyMsgID);
|
|
|
|
SetExpiration (i2p::util::GetMillisecondsSinceEpoch () + I2NP_MESSAGE_EXPIRATION_TIMEOUT);
|
2015-07-03 18:11:07 +03:00
|
|
|
UpdateSize ();
|
2020-05-02 18:13:40 +03:00
|
|
|
if (checksum) UpdateChks ();
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2015-07-03 18:11:07 +03:00
|
|
|
void I2NPMessage::RenewI2NPMessageHeader ()
|
2014-03-20 20:48:03 +04:00
|
|
|
{
|
2015-11-03 17:15:49 +03:00
|
|
|
uint32_t msgID;
|
|
|
|
RAND_bytes ((uint8_t *)&msgID, 4);
|
|
|
|
SetMsgID (msgID);
|
2018-01-06 06:48:51 +03:00
|
|
|
SetExpiration (i2p::util::GetMillisecondsSinceEpoch () + I2NP_MESSAGE_EXPIRATION_TIMEOUT);
|
2014-03-20 20:48:03 +04:00
|
|
|
}
|
|
|
|
|
2024-01-22 02:59:04 +03:00
|
|
|
bool I2NPMessage::IsExpired (uint64_t ts) const
|
2016-01-19 05:13:43 +03:00
|
|
|
{
|
2018-01-06 06:48:51 +03:00
|
|
|
auto exp = GetExpiration ();
|
2016-01-19 19:16:50 +03:00
|
|
|
return (ts > exp + I2NP_MESSAGE_CLOCK_SKEW) || (ts < exp - 3*I2NP_MESSAGE_CLOCK_SKEW); // check if expired or too far in future
|
2024-01-22 02:59:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool I2NPMessage::IsExpired () const
|
|
|
|
{
|
|
|
|
return IsExpired (i2p::util::GetMillisecondsSinceEpoch ());
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2016-01-05 22:29:18 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateI2NPMessage (I2NPMessageType msgType, const uint8_t * buf, size_t len, uint32_t replyMsgID)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
auto msg = NewI2NPMessage (len);
|
2016-01-05 22:29:18 +03:00
|
|
|
if (msg->Concat (buf, len) < len)
|
2021-11-27 22:53:53 +03:00
|
|
|
LogPrint (eLogError, "I2NP: Message length ", len, " exceeds max length ", msg->maxLen);
|
2015-07-03 18:11:07 +03:00
|
|
|
msg->FillI2NPMessageHeader (msgType, replyMsgID);
|
2013-10-27 19:20:29 +04:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
|
2016-01-05 22:29:18 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateI2NPMessage (const uint8_t * buf, size_t len, std::shared_ptr<i2p::tunnel::InboundTunnel> from)
|
2013-11-11 03:23:26 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
auto msg = NewI2NPMessage ();
|
2015-05-11 19:53:08 +03:00
|
|
|
if (msg->offset + len < msg->maxLen)
|
|
|
|
{
|
|
|
|
memcpy (msg->GetBuffer (), buf, len);
|
|
|
|
msg->len = msg->offset + len;
|
|
|
|
msg->from = from;
|
|
|
|
}
|
|
|
|
else
|
2021-11-27 22:53:53 +03:00
|
|
|
LogPrint (eLogError, "I2NP: Message length ", len, " exceeds max length");
|
2015-11-24 21:09:12 +03:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2016-02-01 02:27:47 +03:00
|
|
|
|
|
|
|
std::shared_ptr<I2NPMessage> CopyI2NPMessage (std::shared_ptr<I2NPMessage> msg)
|
|
|
|
{
|
|
|
|
if (!msg) return nullptr;
|
|
|
|
auto newMsg = NewI2NPMessage (msg->len);
|
|
|
|
newMsg->offset = msg->offset;
|
|
|
|
*newMsg = *msg;
|
|
|
|
return newMsg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2024-02-27 11:15:15 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateTunnelTestMsg (uint32_t msgID)
|
|
|
|
{
|
|
|
|
auto m = NewI2NPShortMessage ();
|
|
|
|
uint8_t * buf = m->GetPayload ();
|
|
|
|
htobe32buf (buf + TUNNEL_TEST_MSGID_OFFSET, msgID);
|
2024-02-27 20:33:07 +03:00
|
|
|
htobe64buf (buf + TUNNEL_TEST_TIMESTAMP_OFFSET, i2p::util::GetMonotonicMicroseconds ());
|
2024-02-27 11:15:15 +03:00
|
|
|
m->len += TUNNEL_TEST_SIZE;
|
|
|
|
m->FillI2NPMessageHeader (eI2NPTunnelTest);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2015-06-24 17:45:58 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateDeliveryStatusMsg (uint32_t msgID)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
auto m = NewI2NPShortMessage ();
|
2015-01-03 01:39:35 +03:00
|
|
|
uint8_t * buf = m->GetPayload ();
|
2014-02-25 00:16:39 +04:00
|
|
|
if (msgID)
|
|
|
|
{
|
2015-01-03 01:39:35 +03:00
|
|
|
htobe32buf (buf + DELIVERY_STATUS_MSGID_OFFSET, msgID);
|
|
|
|
htobe64buf (buf + DELIVERY_STATUS_TIMESTAMP_OFFSET, i2p::util::GetMillisecondsSinceEpoch ());
|
2014-02-25 00:16:39 +04:00
|
|
|
}
|
|
|
|
else // for SSU establishment
|
|
|
|
{
|
2015-11-03 17:15:49 +03:00
|
|
|
RAND_bytes ((uint8_t *)&msgID, 4);
|
|
|
|
htobe32buf (buf + DELIVERY_STATUS_MSGID_OFFSET, msgID);
|
2018-01-06 06:48:51 +03:00
|
|
|
htobe64buf (buf + DELIVERY_STATUS_TIMESTAMP_OFFSET, i2p::context.GetNetID ());
|
|
|
|
}
|
2015-01-03 01:39:35 +03:00
|
|
|
m->len += DELIVERY_STATUS_SIZE;
|
2015-07-03 18:11:07 +03:00
|
|
|
m->FillI2NPMessageHeader (eI2NPDeliveryStatus);
|
2015-11-24 21:09:12 +03:00
|
|
|
return m;
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|
|
|
|
|
2018-01-06 06:48:51 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateRouterInfoDatabaseLookupMsg (const uint8_t * key, const uint8_t * from,
|
2024-05-15 20:31:31 +03:00
|
|
|
uint32_t replyTunnelID, bool exploratory, std::unordered_set<i2p::data::IdentHash> * excludedPeers)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2023-03-22 04:25:00 +03:00
|
|
|
int cnt = excludedPeers ? excludedPeers->size () : 0;
|
|
|
|
auto m = cnt > 7 ? NewI2NPMessage () : NewI2NPShortMessage ();
|
2013-11-19 05:37:38 +04:00
|
|
|
uint8_t * buf = m->GetPayload ();
|
|
|
|
memcpy (buf, key, 32); // key
|
|
|
|
buf += 32;
|
|
|
|
memcpy (buf, from, 32); // from
|
|
|
|
buf += 32;
|
2018-01-06 06:48:51 +03:00
|
|
|
uint8_t flag = exploratory ? DATABASE_LOOKUP_TYPE_EXPLORATORY_LOOKUP : DATABASE_LOOKUP_TYPE_ROUTERINFO_LOOKUP;
|
2013-11-19 05:37:38 +04:00
|
|
|
if (replyTunnelID)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2015-02-02 19:06:36 +03:00
|
|
|
*buf = flag | DATABASE_LOOKUP_DELIVERY_FLAG; // set delivery flag
|
2014-12-30 17:37:24 +03:00
|
|
|
htobe32buf (buf+1, replyTunnelID);
|
2013-11-19 05:37:38 +04:00
|
|
|
buf += 5;
|
|
|
|
}
|
|
|
|
else
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2015-01-05 01:25:16 +03:00
|
|
|
*buf = flag; // flag
|
2013-11-19 05:37:38 +04:00
|
|
|
buf++;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2015-01-05 01:25:16 +03:00
|
|
|
if (excludedPeers)
|
2013-11-19 05:37:38 +04:00
|
|
|
{
|
2015-01-05 01:25:16 +03:00
|
|
|
htobe16buf (buf, cnt);
|
2013-11-19 05:37:38 +04:00
|
|
|
buf += 2;
|
2015-01-05 01:25:16 +03:00
|
|
|
for (auto& it: *excludedPeers)
|
2014-01-05 18:53:44 +04:00
|
|
|
{
|
2015-01-05 01:25:16 +03:00
|
|
|
memcpy (buf, it, 32);
|
|
|
|
buf += 32;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2015-01-05 01:25:16 +03:00
|
|
|
}
|
|
|
|
else
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2015-01-05 01:25:16 +03:00
|
|
|
// nothing to exclude
|
|
|
|
htobuf16 (buf, 0);
|
|
|
|
buf += 2;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
m->len += (buf - m->GetPayload ());
|
2015-07-03 18:11:07 +03:00
|
|
|
m->FillI2NPMessageHeader (eI2NPDatabaseLookup);
|
2018-01-06 06:48:51 +03:00
|
|
|
return m;
|
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
|
2018-01-06 06:48:51 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateLeaseSetDatabaseLookupMsg (const i2p::data::IdentHash& dest,
|
2024-05-15 20:31:31 +03:00
|
|
|
const std::unordered_set<i2p::data::IdentHash>& excludedFloodfills,
|
2021-11-27 23:30:35 +03:00
|
|
|
std::shared_ptr<const i2p::tunnel::InboundTunnel> replyTunnel, const uint8_t * replyKey,
|
2022-05-20 19:56:05 +03:00
|
|
|
const uint8_t * replyTag, bool replyECIES)
|
2014-12-30 20:25:08 +03:00
|
|
|
{
|
2015-07-05 14:59:38 +03:00
|
|
|
int cnt = excludedFloodfills.size ();
|
2020-04-23 22:22:07 +03:00
|
|
|
auto m = cnt > 7 ? NewI2NPMessage () : NewI2NPShortMessage ();
|
2014-12-30 20:25:08 +03:00
|
|
|
uint8_t * buf = m->GetPayload ();
|
|
|
|
memcpy (buf, dest, 32); // key
|
|
|
|
buf += 32;
|
|
|
|
memcpy (buf, replyTunnel->GetNextIdentHash (), 32); // reply tunnel GW
|
|
|
|
buf += 32;
|
2020-09-20 04:15:42 +03:00
|
|
|
*buf = DATABASE_LOOKUP_DELIVERY_FLAG | DATABASE_LOOKUP_TYPE_LEASESET_LOOKUP; // flags
|
|
|
|
*buf |= (replyECIES ? DATABASE_LOOKUP_ECIES_FLAG : DATABASE_LOOKUP_ENCRYPTION_FLAG);
|
2016-07-15 20:54:34 +03:00
|
|
|
buf ++;
|
2016-07-15 20:31:31 +03:00
|
|
|
htobe32buf (buf, replyTunnel->GetNextTunnelID ()); // reply tunnel ID
|
|
|
|
buf += 4;
|
2018-01-06 06:48:51 +03:00
|
|
|
|
2014-12-30 20:25:08 +03:00
|
|
|
// excluded
|
2020-04-23 22:22:07 +03:00
|
|
|
if (cnt > 512)
|
|
|
|
{
|
2020-03-01 13:25:50 +03:00
|
|
|
LogPrint (eLogWarning, "I2NP: Too many peers to exclude ", cnt, " for DatabaseLookup");
|
2020-04-23 22:22:07 +03:00
|
|
|
cnt = 0;
|
2020-03-01 13:25:50 +03:00
|
|
|
}
|
2014-12-30 20:25:08 +03:00
|
|
|
htobe16buf (buf, cnt);
|
|
|
|
buf += 2;
|
|
|
|
if (cnt > 0)
|
|
|
|
{
|
|
|
|
for (auto& it: excludedFloodfills)
|
|
|
|
{
|
|
|
|
memcpy (buf, it, 32);
|
|
|
|
buf += 32;
|
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2014-12-30 20:25:08 +03:00
|
|
|
// encryption
|
|
|
|
memcpy (buf, replyKey, 32);
|
2020-04-23 22:22:07 +03:00
|
|
|
buf[32] = 1; // 1 tag
|
2020-09-20 04:15:42 +03:00
|
|
|
if (replyECIES)
|
|
|
|
{
|
|
|
|
memcpy (buf + 33, replyTag, 8); // 8 bytes tag
|
|
|
|
buf += 41;
|
2021-09-14 14:48:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-09-20 04:15:42 +03:00
|
|
|
memcpy (buf + 33, replyTag, 32); // 32 bytes tag
|
|
|
|
buf += 65;
|
2021-09-14 14:48:21 +03:00
|
|
|
}
|
2014-12-30 20:25:08 +03:00
|
|
|
|
2018-01-06 06:48:51 +03:00
|
|
|
m->len += (buf - m->GetPayload ());
|
2015-07-03 18:11:07 +03:00
|
|
|
m->FillI2NPMessageHeader (eI2NPDatabaseLookup);
|
2018-01-06 06:48:51 +03:00
|
|
|
return m;
|
|
|
|
}
|
2014-12-30 20:25:08 +03:00
|
|
|
|
2018-01-06 06:48:51 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateDatabaseSearchReply (const i2p::data::IdentHash& ident,
|
2020-03-01 13:25:50 +03:00
|
|
|
std::vector<i2p::data::IdentHash> routers)
|
2014-01-06 07:21:59 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
auto m = NewI2NPShortMessage ();
|
2014-01-06 07:21:59 +04:00
|
|
|
uint8_t * buf = m->GetPayload ();
|
2014-07-25 06:01:07 +04:00
|
|
|
size_t len = 0;
|
2014-01-06 07:21:59 +04:00
|
|
|
memcpy (buf, ident, 32);
|
2014-07-25 06:01:07 +04:00
|
|
|
len += 32;
|
2018-01-06 06:48:51 +03:00
|
|
|
buf[len] = routers.size ();
|
2014-07-25 06:01:07 +04:00
|
|
|
len++;
|
2016-08-05 21:23:54 +03:00
|
|
|
for (const auto& it: routers)
|
2014-07-25 06:01:07 +04:00
|
|
|
{
|
2015-02-02 03:58:26 +03:00
|
|
|
memcpy (buf + len, it, 32);
|
2014-07-25 06:01:07 +04:00
|
|
|
len += 32;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2014-07-25 06:01:07 +04:00
|
|
|
memcpy (buf + len, i2p::context.GetRouterInfo ().GetIdentHash (), 32);
|
2018-01-06 06:48:51 +03:00
|
|
|
len += 32;
|
2014-07-25 06:01:07 +04:00
|
|
|
m->len += len;
|
2015-07-03 18:11:07 +03:00
|
|
|
m->FillI2NPMessageHeader (eI2NPDatabaseSearchReply);
|
2018-01-06 06:48:51 +03:00
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2021-11-27 23:30:35 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateDatabaseStoreMsg (std::shared_ptr<const i2p::data::RouterInfo> router,
|
2022-05-20 19:56:05 +03:00
|
|
|
uint32_t replyToken, std::shared_ptr<const i2p::tunnel::InboundTunnel> replyTunnel)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2014-07-24 23:59:00 +04:00
|
|
|
if (!router) // we send own RouterInfo
|
2015-04-07 22:15:27 +03:00
|
|
|
router = context.GetSharedRouterInfo ();
|
2014-07-24 23:59:00 +04:00
|
|
|
|
2021-07-14 21:46:56 +03:00
|
|
|
if (!router->GetBuffer ())
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, "I2NP: Invalid RouterInfo buffer for DatabaseStore");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2021-09-14 14:48:21 +03:00
|
|
|
|
2015-11-24 21:09:12 +03:00
|
|
|
auto m = NewI2NPShortMessage ();
|
2018-01-06 06:48:51 +03:00
|
|
|
uint8_t * payload = m->GetPayload ();
|
2013-10-27 19:20:29 +04:00
|
|
|
|
2015-01-03 05:11:40 +03:00
|
|
|
memcpy (payload + DATABASE_STORE_KEY_OFFSET, router->GetIdentHash (), 32);
|
2015-01-29 00:16:25 +03:00
|
|
|
payload[DATABASE_STORE_TYPE_OFFSET] = 0; // RouterInfo
|
|
|
|
htobe32buf (payload + DATABASE_STORE_REPLY_TOKEN_OFFSET, replyToken);
|
|
|
|
uint8_t * buf = payload + DATABASE_STORE_HEADER_SIZE;
|
|
|
|
if (replyToken)
|
|
|
|
{
|
2021-02-06 22:49:42 +03:00
|
|
|
if (replyTunnel)
|
|
|
|
{
|
|
|
|
htobe32buf (buf, replyTunnel->GetNextTunnelID ());
|
|
|
|
buf += 4; // reply tunnelID
|
|
|
|
memcpy (buf, replyTunnel->GetNextIdentHash (), 32);
|
|
|
|
buf += 32; // reply tunnel gateway
|
|
|
|
}
|
|
|
|
else
|
2021-09-14 14:48:21 +03:00
|
|
|
{
|
2021-02-06 22:49:42 +03:00
|
|
|
memset (buf, 0, 4); // zero tunnelID means direct reply
|
|
|
|
buf += 4;
|
|
|
|
memcpy (buf, context.GetIdentHash (), 32);
|
|
|
|
buf += 32;
|
2021-09-14 14:48:21 +03:00
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2015-01-29 00:16:25 +03:00
|
|
|
|
2015-11-03 17:15:49 +03:00
|
|
|
uint8_t * sizePtr = buf;
|
2013-11-20 16:46:09 +04:00
|
|
|
buf += 2;
|
2015-01-29 00:16:25 +03:00
|
|
|
m->len += (buf - payload); // payload size
|
2020-05-23 01:32:44 +03:00
|
|
|
size_t size = 0;
|
|
|
|
if (router->GetBufferLen () + (buf - payload) <= 940) // fits one tunnel message
|
|
|
|
size = i2p::data::GzipNoCompression (router->GetBuffer (), router->GetBufferLen (), buf, m->maxLen -m->len);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
i2p::data::GzipDeflator deflator;
|
|
|
|
size = deflator.Deflate (router->GetBuffer (), router->GetBufferLen (), buf, m->maxLen -m->len);
|
2021-09-14 14:48:21 +03:00
|
|
|
}
|
2015-11-03 17:15:49 +03:00
|
|
|
if (size)
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2015-11-03 17:15:49 +03:00
|
|
|
htobe16buf (sizePtr, size); // size
|
|
|
|
m->len += size;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2015-11-03 17:15:49 +03:00
|
|
|
else
|
|
|
|
m = nullptr;
|
|
|
|
if (m)
|
|
|
|
m->FillI2NPMessageHeader (eI2NPDatabaseStore);
|
2013-10-27 19:20:29 +04:00
|
|
|
return m;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
|
2019-06-09 04:23:25 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateDatabaseStoreMsg (const i2p::data::IdentHash& storeHash, std::shared_ptr<const i2p::data::LeaseSet> leaseSet)
|
2016-05-25 22:10:28 +03:00
|
|
|
{
|
|
|
|
if (!leaseSet) return nullptr;
|
|
|
|
auto m = NewI2NPShortMessage ();
|
2018-01-06 06:48:51 +03:00
|
|
|
uint8_t * payload = m->GetPayload ();
|
2019-06-09 04:23:25 +03:00
|
|
|
memcpy (payload + DATABASE_STORE_KEY_OFFSET, storeHash, 32);
|
2020-03-01 13:25:50 +03:00
|
|
|
payload[DATABASE_STORE_TYPE_OFFSET] = leaseSet->GetStoreType (); // 1 for LeaseSet
|
2016-05-25 22:10:28 +03:00
|
|
|
htobe32buf (payload + DATABASE_STORE_REPLY_TOKEN_OFFSET, 0);
|
|
|
|
size_t size = DATABASE_STORE_HEADER_SIZE;
|
|
|
|
memcpy (payload + size, leaseSet->GetBuffer (), leaseSet->GetBufferLen ());
|
|
|
|
size += leaseSet->GetBufferLen ();
|
|
|
|
m->len += size;
|
|
|
|
m->FillI2NPMessageHeader (eI2NPDatabaseStore);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2020-03-01 13:25:50 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateDatabaseStoreMsg (std::shared_ptr<const i2p::data::LocalLeaseSet> leaseSet, uint32_t replyToken, std::shared_ptr<const i2p::tunnel::InboundTunnel> replyTunnel)
|
2014-07-29 22:31:55 +04:00
|
|
|
{
|
2014-07-30 05:56:03 +04:00
|
|
|
if (!leaseSet) return nullptr;
|
2015-11-24 21:09:12 +03:00
|
|
|
auto m = NewI2NPShortMessage ();
|
2018-01-06 06:48:51 +03:00
|
|
|
uint8_t * payload = m->GetPayload ();
|
2019-04-09 22:36:10 +03:00
|
|
|
memcpy (payload + DATABASE_STORE_KEY_OFFSET, leaseSet->GetStoreHash (), 32);
|
2019-01-09 22:51:47 +03:00
|
|
|
payload[DATABASE_STORE_TYPE_OFFSET] = leaseSet->GetStoreType (); // LeaseSet or LeaseSet2
|
2015-01-03 05:11:40 +03:00
|
|
|
htobe32buf (payload + DATABASE_STORE_REPLY_TOKEN_OFFSET, replyToken);
|
|
|
|
size_t size = DATABASE_STORE_HEADER_SIZE;
|
2016-05-25 19:55:58 +03:00
|
|
|
if (replyToken && replyTunnel)
|
2014-08-20 19:12:53 +04:00
|
|
|
{
|
2016-05-25 19:55:58 +03:00
|
|
|
if (replyTunnel)
|
2014-08-20 19:12:53 +04:00
|
|
|
{
|
2016-05-25 19:55:58 +03:00
|
|
|
htobe32buf (payload + size, replyTunnel->GetNextTunnelID ());
|
2014-08-20 19:12:53 +04:00
|
|
|
size += 4; // reply tunnelID
|
2016-05-25 19:55:58 +03:00
|
|
|
memcpy (payload + size, replyTunnel->GetNextIdentHash (), 32);
|
2014-08-20 19:12:53 +04:00
|
|
|
size += 32; // reply tunnel gateway
|
|
|
|
}
|
|
|
|
else
|
2015-01-03 05:11:40 +03:00
|
|
|
htobe32buf (payload + DATABASE_STORE_REPLY_TOKEN_OFFSET, 0);
|
2014-08-20 19:12:53 +04:00
|
|
|
}
|
|
|
|
memcpy (payload + size, leaseSet->GetBuffer (), leaseSet->GetBufferLen ());
|
|
|
|
size += leaseSet->GetBufferLen ();
|
|
|
|
m->len += size;
|
2015-07-03 18:11:07 +03:00
|
|
|
m->FillI2NPMessageHeader (eI2NPDatabaseStore);
|
2014-07-29 22:31:55 +04:00
|
|
|
return m;
|
|
|
|
}
|
2016-01-05 03:56:46 +03:00
|
|
|
|
|
|
|
bool IsRouterInfoMsg (std::shared_ptr<I2NPMessage> msg)
|
|
|
|
{
|
|
|
|
if (!msg || msg->GetTypeID () != eI2NPDatabaseStore) return false;
|
|
|
|
return !msg->GetPayload ()[DATABASE_STORE_TYPE_OFFSET]; // 0- RouterInfo
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2021-07-21 02:38:36 +03:00
|
|
|
static void HandleVariableTunnelBuildMsg (uint32_t replyMsgID, uint8_t * buf, size_t len)
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2020-03-01 13:25:50 +03:00
|
|
|
auto tunnel = i2p::tunnel::tunnels.GetPendingInboundTunnel (replyMsgID);
|
2013-10-27 19:20:29 +04:00
|
|
|
if (tunnel)
|
|
|
|
{
|
2013-11-19 05:37:38 +04:00
|
|
|
// endpoint of inbound tunnel
|
2015-12-17 10:11:36 +03:00
|
|
|
LogPrint (eLogDebug, "I2NP: VariableTunnelBuild reply for tunnel ", tunnel->GetTunnelID ());
|
2013-11-19 05:37:38 +04:00
|
|
|
if (tunnel->HandleTunnelBuildResponse (buf, len))
|
|
|
|
{
|
2015-12-17 10:11:36 +03:00
|
|
|
LogPrint (eLogInfo, "I2NP: Inbound tunnel ", tunnel->GetTunnelID (), " has been created");
|
2018-01-06 06:48:51 +03:00
|
|
|
tunnel->SetState (i2p::tunnel::eTunnelStateEstablished);
|
2015-01-26 19:56:10 +03:00
|
|
|
i2p::tunnel::tunnels.AddInboundTunnel (tunnel);
|
2013-11-19 05:37:38 +04:00
|
|
|
}
|
|
|
|
else
|
2014-09-26 18:15:34 +04:00
|
|
|
{
|
2015-12-17 10:11:36 +03:00
|
|
|
LogPrint (eLogInfo, "I2NP: Inbound tunnel ", tunnel->GetTunnelID (), " has been declined");
|
2018-01-06 06:48:51 +03:00
|
|
|
tunnel->SetState (i2p::tunnel::eTunnelStateBuildFailed);
|
2014-09-26 18:15:34 +04:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|
|
|
|
else
|
2024-11-08 03:00:11 +03:00
|
|
|
i2p::tunnel::HandleVariableTransitTunnelBuildMsg (buf, len);
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|
|
|
|
|
2021-07-21 02:38:36 +03:00
|
|
|
static void HandleTunnelBuildMsg (uint8_t * buf, size_t len)
|
2014-04-30 22:08:57 +04:00
|
|
|
{
|
2021-09-05 16:10:13 +03:00
|
|
|
LogPrint (eLogWarning, "I2NP: TunnelBuild is too old for ECIES router");
|
2014-04-30 22:08:57 +04:00
|
|
|
}
|
|
|
|
|
2021-07-21 02:38:36 +03:00
|
|
|
static void HandleTunnelBuildReplyMsg (uint32_t replyMsgID, uint8_t * buf, size_t len, bool isShort)
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2016-01-30 18:35:32 +03:00
|
|
|
int num = buf[0];
|
2021-07-21 02:38:36 +03:00
|
|
|
LogPrint (eLogDebug, "I2NP: TunnelBuildReplyMsg of ", num, " records replyMsgID=", replyMsgID);
|
2023-05-07 01:07:21 +03:00
|
|
|
if (num > i2p::tunnel::MAX_NUM_RECORDS)
|
|
|
|
{
|
|
|
|
LogPrint (eLogError, "I2NP: Too many records in TunnelBuildReply message ", num);
|
|
|
|
return;
|
2023-05-08 18:33:40 +03:00
|
|
|
}
|
2021-07-21 02:38:36 +03:00
|
|
|
size_t recordSize = isShort ? SHORT_TUNNEL_BUILD_RECORD_SIZE : TUNNEL_BUILD_RECORD_SIZE;
|
|
|
|
if (len < num*recordSize + 1)
|
2016-01-30 18:35:32 +03:00
|
|
|
{
|
2021-07-21 02:38:36 +03:00
|
|
|
LogPrint (eLogError, "I2NP: TunnelBuildReply message of ", num, " records is too short ", len);
|
2016-01-30 18:35:32 +03:00
|
|
|
return;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2015-01-26 19:56:10 +03:00
|
|
|
auto tunnel = i2p::tunnel::tunnels.GetPendingOutboundTunnel (replyMsgID);
|
2013-10-27 19:20:29 +04:00
|
|
|
if (tunnel)
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2013-11-19 05:37:38 +04:00
|
|
|
// reply for outbound tunnel
|
|
|
|
if (tunnel->HandleTunnelBuildResponse (buf, len))
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2015-12-17 10:11:36 +03:00
|
|
|
LogPrint (eLogInfo, "I2NP: Outbound tunnel ", tunnel->GetTunnelID (), " has been created");
|
2018-01-06 06:48:51 +03:00
|
|
|
tunnel->SetState (i2p::tunnel::eTunnelStateEstablished);
|
2015-01-26 19:56:10 +03:00
|
|
|
i2p::tunnel::tunnels.AddOutboundTunnel (tunnel);
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-11-19 05:37:38 +04:00
|
|
|
else
|
2014-09-26 18:15:34 +04:00
|
|
|
{
|
2015-12-17 10:11:36 +03:00
|
|
|
LogPrint (eLogInfo, "I2NP: Outbound tunnel ", tunnel->GetTunnelID (), " has been declined");
|
2018-01-06 06:48:51 +03:00
|
|
|
tunnel->SetState (i2p::tunnel::eTunnelStateBuildFailed);
|
2014-09-26 18:15:34 +04:00
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
else
|
2015-12-17 10:11:36 +03:00
|
|
|
LogPrint (eLogWarning, "I2NP: Pending tunnel for message ", replyMsgID, " not found");
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|
|
|
|
|
2021-07-21 02:38:36 +03:00
|
|
|
static void HandleShortTunnelBuildMsg (uint32_t replyMsgID, uint8_t * buf, size_t len)
|
2021-06-06 20:55:38 +03:00
|
|
|
{
|
2021-07-12 02:29:16 +03:00
|
|
|
auto tunnel = i2p::tunnel::tunnels.GetPendingInboundTunnel (replyMsgID);
|
|
|
|
if (tunnel)
|
|
|
|
{
|
|
|
|
// endpoint of inbound tunnel
|
|
|
|
LogPrint (eLogDebug, "I2NP: ShortTunnelBuild reply for tunnel ", tunnel->GetTunnelID ());
|
|
|
|
if (tunnel->HandleTunnelBuildResponse (buf, len))
|
|
|
|
{
|
|
|
|
LogPrint (eLogInfo, "I2NP: Inbound tunnel ", tunnel->GetTunnelID (), " has been created");
|
|
|
|
tunnel->SetState (i2p::tunnel::eTunnelStateEstablished);
|
|
|
|
i2p::tunnel::tunnels.AddInboundTunnel (tunnel);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
LogPrint (eLogInfo, "I2NP: Inbound tunnel ", tunnel->GetTunnelID (), " has been declined");
|
|
|
|
tunnel->SetState (i2p::tunnel::eTunnelStateBuildFailed);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2024-11-08 03:00:11 +03:00
|
|
|
else
|
|
|
|
i2p::tunnel::HandleShortTransitTunnelBuildMsg (buf, len);
|
2021-09-14 14:48:21 +03:00
|
|
|
}
|
|
|
|
|
2015-11-24 21:09:12 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateTunnelDataMsg (const uint8_t * buf)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2021-06-27 22:49:57 +03:00
|
|
|
auto msg = NewI2NPTunnelMessage (false);
|
2018-01-06 06:48:51 +03:00
|
|
|
msg->Concat (buf, i2p::tunnel::TUNNEL_DATA_MSG_SIZE);
|
2015-07-03 18:11:07 +03:00
|
|
|
msg->FillI2NPMessageHeader (eI2NPTunnelData);
|
2013-10-27 19:20:29 +04:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
|
2018-01-06 06:48:51 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateTunnelDataMsg (uint32_t tunnelID, const uint8_t * payload)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2021-06-27 22:49:57 +03:00
|
|
|
auto msg = NewI2NPTunnelMessage (false);
|
2014-12-30 17:37:24 +03:00
|
|
|
htobe32buf (msg->GetPayload (), tunnelID);
|
2016-01-05 22:29:18 +03:00
|
|
|
msg->len += 4; // tunnelID
|
|
|
|
msg->Concat (payload, i2p::tunnel::TUNNEL_DATA_MSG_SIZE - 4);
|
2015-07-03 18:11:07 +03:00
|
|
|
msg->FillI2NPMessageHeader (eI2NPTunnelData);
|
2013-10-27 19:20:29 +04:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2015-06-26 04:49:16 +03:00
|
|
|
|
2021-06-27 22:49:57 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateEmptyTunnelDataMsg (bool endpoint)
|
2015-06-26 04:49:16 +03:00
|
|
|
{
|
2021-06-27 22:49:57 +03:00
|
|
|
auto msg = NewI2NPTunnelMessage (endpoint);
|
2018-01-06 06:48:51 +03:00
|
|
|
msg->len += i2p::tunnel::TUNNEL_DATA_MSG_SIZE;
|
2015-11-24 21:09:12 +03:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2015-11-24 21:09:12 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateTunnelGatewayMsg (uint32_t tunnelID, const uint8_t * buf, size_t len)
|
2013-11-11 03:23:26 +04:00
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
auto msg = NewI2NPMessage (len);
|
2015-01-02 02:53:44 +03:00
|
|
|
uint8_t * payload = msg->GetPayload ();
|
|
|
|
htobe32buf (payload + TUNNEL_GATEWAY_HEADER_TUNNELID_OFFSET, tunnelID);
|
|
|
|
htobe16buf (payload + TUNNEL_GATEWAY_HEADER_LENGTH_OFFSET, len);
|
2016-01-05 22:29:18 +03:00
|
|
|
msg->len += TUNNEL_GATEWAY_HEADER_SIZE;
|
|
|
|
if (msg->Concat (buf, len) < len)
|
2021-11-27 22:53:53 +03:00
|
|
|
LogPrint (eLogError, "I2NP: Tunnel gateway buffer overflow ", msg->maxLen);
|
2015-07-03 18:11:07 +03:00
|
|
|
msg->FillI2NPMessageHeader (eI2NPTunnelGateway);
|
2013-11-11 03:23:26 +04:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-11-11 03:23:26 +04:00
|
|
|
|
2015-06-19 21:38:31 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateTunnelGatewayMsg (uint32_t tunnelID, std::shared_ptr<I2NPMessage> msg)
|
2013-11-11 03:23:26 +04:00
|
|
|
{
|
2015-01-02 02:53:44 +03:00
|
|
|
if (msg->offset >= I2NP_HEADER_SIZE + TUNNEL_GATEWAY_HEADER_SIZE)
|
2013-11-11 03:23:26 +04:00
|
|
|
{
|
|
|
|
// message is capable to be used without copying
|
2015-01-02 02:53:44 +03:00
|
|
|
uint8_t * payload = msg->GetBuffer () - TUNNEL_GATEWAY_HEADER_SIZE;
|
|
|
|
htobe32buf (payload + TUNNEL_GATEWAY_HEADER_TUNNELID_OFFSET, tunnelID);
|
2013-11-11 03:23:26 +04:00
|
|
|
int len = msg->GetLength ();
|
2015-01-02 02:53:44 +03:00
|
|
|
htobe16buf (payload + TUNNEL_GATEWAY_HEADER_LENGTH_OFFSET, len);
|
|
|
|
msg->offset -= (I2NP_HEADER_SIZE + TUNNEL_GATEWAY_HEADER_SIZE);
|
|
|
|
msg->len = msg->offset + I2NP_HEADER_SIZE + TUNNEL_GATEWAY_HEADER_SIZE +len;
|
2018-01-06 06:48:51 +03:00
|
|
|
msg->FillI2NPMessageHeader (eI2NPTunnelGateway);
|
2013-11-11 03:23:26 +04:00
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
else
|
2024-02-05 23:44:17 +03:00
|
|
|
{
|
|
|
|
auto newMsg = CreateTunnelGatewayMsg (tunnelID, msg->GetBuffer (), msg->GetLength ());
|
|
|
|
if (msg->onDrop) newMsg->onDrop = msg->onDrop;
|
|
|
|
return newMsg;
|
|
|
|
}
|
2013-11-11 03:23:26 +04:00
|
|
|
}
|
|
|
|
|
2018-01-06 06:48:51 +03:00
|
|
|
std::shared_ptr<I2NPMessage> CreateTunnelGatewayMsg (uint32_t tunnelID, I2NPMessageType msgType,
|
2013-11-11 03:23:26 +04:00
|
|
|
const uint8_t * buf, size_t len, uint32_t replyMsgID)
|
|
|
|
{
|
2015-11-24 21:09:12 +03:00
|
|
|
auto msg = NewI2NPMessage (len);
|
2015-01-02 02:53:44 +03:00
|
|
|
size_t gatewayMsgOffset = I2NP_HEADER_SIZE + TUNNEL_GATEWAY_HEADER_SIZE;
|
2013-11-11 03:23:26 +04:00
|
|
|
msg->offset += gatewayMsgOffset;
|
|
|
|
msg->len += gatewayMsgOffset;
|
2016-01-05 22:29:18 +03:00
|
|
|
if (msg->Concat (buf, len) < len)
|
2021-11-27 22:53:53 +03:00
|
|
|
LogPrint (eLogError, "I2NP: Tunnel gateway buffer overflow ", msg->maxLen);
|
2015-07-03 18:11:07 +03:00
|
|
|
msg->FillI2NPMessageHeader (msgType, replyMsgID); // create content message
|
2013-11-11 03:23:26 +04:00
|
|
|
len = msg->GetLength ();
|
|
|
|
msg->offset -= gatewayMsgOffset;
|
2015-01-02 02:53:44 +03:00
|
|
|
uint8_t * payload = msg->GetPayload ();
|
|
|
|
htobe32buf (payload + TUNNEL_GATEWAY_HEADER_TUNNELID_OFFSET, tunnelID);
|
|
|
|
htobe16buf (payload + TUNNEL_GATEWAY_HEADER_LENGTH_OFFSET, len);
|
2015-07-03 18:11:07 +03:00
|
|
|
msg->FillI2NPMessageHeader (eI2NPTunnelGateway); // gateway message
|
2013-11-11 03:23:26 +04:00
|
|
|
return msg;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-12-14 05:07:35 +04:00
|
|
|
|
2017-12-01 20:57:05 +03:00
|
|
|
size_t GetI2NPMessageLength (const uint8_t * msg, size_t len)
|
2013-12-14 05:07:35 +04:00
|
|
|
{
|
2017-12-01 20:57:05 +03:00
|
|
|
if (len < I2NP_HEADER_SIZE_OFFSET + 2)
|
|
|
|
{
|
2021-11-27 22:53:53 +03:00
|
|
|
LogPrint (eLogError, "I2NP: Message length ", len, " is smaller than header");
|
2017-12-01 20:57:05 +03:00
|
|
|
return len;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2017-12-01 20:57:05 +03:00
|
|
|
auto l = bufbe16toh (msg + I2NP_HEADER_SIZE_OFFSET) + I2NP_HEADER_SIZE;
|
|
|
|
if (l > len)
|
|
|
|
{
|
2021-11-27 22:53:53 +03:00
|
|
|
LogPrint (eLogError, "I2NP: Message length ", l, " exceeds buffer length ", len);
|
2017-12-01 20:57:05 +03:00
|
|
|
l = len;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2017-12-01 20:57:05 +03:00
|
|
|
return l;
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
|
2023-05-08 18:33:40 +03:00
|
|
|
void HandleTunnelBuildI2NPMessage (std::shared_ptr<I2NPMessage> msg)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
2023-05-08 17:50:27 +03:00
|
|
|
if (msg)
|
2017-12-01 20:57:05 +03:00
|
|
|
{
|
2023-05-08 17:50:27 +03:00
|
|
|
uint8_t typeID = msg->GetTypeID();
|
|
|
|
uint32_t msgID = msg->GetMsgID();
|
|
|
|
LogPrint (eLogDebug, "I2NP: Handling tunnel build message with len=", msg->GetLength(),", type=", (int)typeID, ", msgID=", (unsigned int)msgID);
|
|
|
|
uint8_t * payload = msg->GetPayload();
|
|
|
|
auto size = msg->GetPayloadLength();
|
|
|
|
switch (typeID)
|
|
|
|
{
|
|
|
|
case eI2NPVariableTunnelBuild:
|
|
|
|
HandleVariableTunnelBuildMsg (msgID, payload, size);
|
|
|
|
break;
|
|
|
|
case eI2NPShortTunnelBuild:
|
|
|
|
HandleShortTunnelBuildMsg (msgID, payload, size);
|
|
|
|
break;
|
|
|
|
case eI2NPVariableTunnelBuildReply:
|
|
|
|
HandleTunnelBuildReplyMsg (msgID, payload, size, false);
|
|
|
|
break;
|
|
|
|
case eI2NPShortTunnelBuildReply:
|
|
|
|
HandleTunnelBuildReplyMsg (msgID, payload, size, true);
|
|
|
|
break;
|
|
|
|
case eI2NPTunnelBuild:
|
|
|
|
HandleTunnelBuildMsg (payload, size);
|
|
|
|
break;
|
|
|
|
case eI2NPTunnelBuildReply:
|
|
|
|
// TODO:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LogPrint (eLogError, "I2NP: Unexpected message with type", (int)typeID, " during handling TBM; skipping");
|
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|
|
|
|
|
2015-06-19 21:38:31 +03:00
|
|
|
void HandleI2NPMessage (std::shared_ptr<I2NPMessage> msg)
|
2013-10-27 19:20:29 +04:00
|
|
|
{
|
|
|
|
if (msg)
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2015-12-17 10:11:36 +03:00
|
|
|
uint8_t typeID = msg->GetTypeID ();
|
2015-12-28 03:00:00 +03:00
|
|
|
LogPrint (eLogDebug, "I2NP: Handling message with type ", (int)typeID);
|
2015-12-17 10:11:36 +03:00
|
|
|
switch (typeID)
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2013-11-20 16:46:09 +04:00
|
|
|
case eI2NPTunnelData:
|
2023-04-20 21:23:41 +03:00
|
|
|
if (!msg->from)
|
|
|
|
i2p::tunnel::tunnels.PostTunnelData (msg);
|
2018-01-06 06:48:51 +03:00
|
|
|
break;
|
2013-11-20 16:46:09 +04:00
|
|
|
case eI2NPTunnelGateway:
|
2023-04-20 21:23:41 +03:00
|
|
|
if (!msg->from)
|
|
|
|
i2p::tunnel::tunnels.PostTunnelData (msg);
|
2013-11-20 16:46:09 +04:00
|
|
|
break;
|
2014-03-18 00:50:03 +04:00
|
|
|
case eI2NPGarlic:
|
2015-06-16 17:14:14 +03:00
|
|
|
{
|
2022-06-01 04:43:31 +03:00
|
|
|
if (msg->from && msg->from->GetTunnelPool ())
|
|
|
|
msg->from->GetTunnelPool ()->ProcessGarlicMessage (msg);
|
2014-10-08 15:55:46 +04:00
|
|
|
else
|
2018-01-06 06:48:51 +03:00
|
|
|
i2p::context.ProcessGarlicMessage (msg);
|
2015-06-16 17:14:14 +03:00
|
|
|
break;
|
|
|
|
}
|
2013-11-20 16:46:09 +04:00
|
|
|
case eI2NPDatabaseStore:
|
2023-04-20 21:23:41 +03:00
|
|
|
// forward to netDb if came directly or through exploratory tunnel as response to our request
|
|
|
|
if (!msg->from || !msg->from->GetTunnelPool () || msg->from->GetTunnelPool ()->IsExploratory ())
|
|
|
|
i2p::data::netdb.PostI2NPMsg (msg);
|
|
|
|
break;
|
2024-05-22 05:19:42 +03:00
|
|
|
case eI2NPDatabaseSearchReply:
|
|
|
|
if (!msg->from || !msg->from->GetTunnelPool () || msg->from->GetTunnelPool ()->IsExploratory ())
|
|
|
|
i2p::data::netdb.PostDatabaseSearchReplyMsg (msg);
|
|
|
|
break;
|
2023-04-20 21:23:41 +03:00
|
|
|
case eI2NPDatabaseLookup:
|
|
|
|
// forward to netDb if floodfill and came directly
|
|
|
|
if (!msg->from && i2p::context.IsFloodfill ())
|
|
|
|
i2p::data::netdb.PostI2NPMsg (msg);
|
|
|
|
break;
|
2014-03-18 00:50:03 +04:00
|
|
|
case eI2NPDeliveryStatus:
|
2015-06-16 17:14:14 +03:00
|
|
|
{
|
2014-03-18 00:50:03 +04:00
|
|
|
if (msg->from && msg->from->GetTunnelPool ())
|
2015-06-19 21:38:31 +03:00
|
|
|
msg->from->GetTunnelPool ()->ProcessDeliveryStatus (msg);
|
2014-03-18 00:50:03 +04:00
|
|
|
else
|
2015-06-19 21:38:31 +03:00
|
|
|
i2p::context.ProcessDeliveryStatusMessage (msg);
|
2018-01-06 06:48:51 +03:00
|
|
|
break;
|
2015-06-16 17:14:14 +03:00
|
|
|
}
|
2024-02-27 11:15:15 +03:00
|
|
|
case eI2NPTunnelTest:
|
|
|
|
if (msg->from && msg->from->GetTunnelPool ())
|
|
|
|
msg->from->GetTunnelPool ()->ProcessTunnelTest (msg);
|
|
|
|
break;
|
2018-01-06 06:48:51 +03:00
|
|
|
case eI2NPVariableTunnelBuild:
|
2015-01-27 04:49:16 +03:00
|
|
|
case eI2NPTunnelBuild:
|
2021-09-14 14:48:21 +03:00
|
|
|
case eI2NPShortTunnelBuild:
|
2023-04-20 21:23:41 +03:00
|
|
|
// forward to tunnel thread
|
|
|
|
if (!msg->from)
|
|
|
|
i2p::tunnel::tunnels.PostTunnelData (msg);
|
|
|
|
break;
|
|
|
|
case eI2NPVariableTunnelBuildReply:
|
|
|
|
case eI2NPTunnelBuildReply:
|
2021-09-14 14:48:21 +03:00
|
|
|
case eI2NPShortTunnelBuildReply:
|
2015-01-27 04:49:16 +03:00
|
|
|
// forward to tunnel thread
|
|
|
|
i2p::tunnel::tunnels.PostTunnelData (msg);
|
2018-01-06 06:48:51 +03:00
|
|
|
break;
|
2013-11-20 16:46:09 +04:00
|
|
|
default:
|
2023-05-08 17:50:27 +03:00
|
|
|
LogPrint(eLogError, "I2NP: Unexpected I2NP message with type ", int(typeID), " during handling; skipping");
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-23 06:00:41 +03:00
|
|
|
|
|
|
|
I2NPMessagesHandler::~I2NPMessagesHandler ()
|
|
|
|
{
|
|
|
|
Flush ();
|
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
|
2021-10-17 18:31:37 +03:00
|
|
|
void I2NPMessagesHandler::PutNextMessage (std::shared_ptr<I2NPMessage>&& msg)
|
2015-01-23 06:00:41 +03:00
|
|
|
{
|
|
|
|
if (msg)
|
|
|
|
{
|
2015-01-24 06:05:33 +03:00
|
|
|
switch (msg->GetTypeID ())
|
2018-01-06 06:48:51 +03:00
|
|
|
{
|
2015-01-24 06:05:33 +03:00
|
|
|
case eI2NPTunnelData:
|
2015-06-21 22:08:22 +03:00
|
|
|
m_TunnelMsgs.push_back (msg);
|
2015-01-24 06:05:33 +03:00
|
|
|
break;
|
2018-01-06 06:48:51 +03:00
|
|
|
case eI2NPTunnelGateway:
|
2015-06-21 22:08:22 +03:00
|
|
|
m_TunnelGatewayMsgs.push_back (msg);
|
2018-01-06 06:48:51 +03:00
|
|
|
break;
|
2015-01-24 06:05:33 +03:00
|
|
|
default:
|
2015-06-21 22:08:22 +03:00
|
|
|
HandleI2NPMessage (msg);
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
|
|
|
}
|
2015-01-23 06:00:41 +03:00
|
|
|
}
|
2018-01-06 06:48:51 +03:00
|
|
|
|
2015-01-23 06:00:41 +03:00
|
|
|
void I2NPMessagesHandler::Flush ()
|
|
|
|
{
|
|
|
|
if (!m_TunnelMsgs.empty ())
|
|
|
|
i2p::tunnel::tunnels.PostTunnelData (m_TunnelMsgs);
|
2015-01-24 06:05:33 +03:00
|
|
|
if (!m_TunnelGatewayMsgs.empty ())
|
2015-01-25 19:43:27 +03:00
|
|
|
i2p::tunnel::tunnels.PostTunnelData (m_TunnelGatewayMsgs);
|
2018-01-06 06:48:51 +03:00
|
|
|
}
|
2013-10-27 19:20:29 +04:00
|
|
|
}
|