mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
170 lines
4.2 KiB
C++
170 lines
4.2 KiB
C++
#include <llarp/dht/context.hpp>
|
|
#include <llarp/dht/messages/findintro.hpp>
|
|
#include <llarp/dht/messages/gotintro.hpp>
|
|
#include <llarp/routing/message.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
/*
|
|
struct IntroSetLookupInformer
|
|
{
|
|
llarp_router* router;
|
|
service::Address target;
|
|
|
|
void
|
|
SendReply(const llarp::routing::IMessage* msg)
|
|
{
|
|
}
|
|
};
|
|
*/
|
|
|
|
FindIntroMessage::~FindIntroMessage()
|
|
{
|
|
}
|
|
|
|
bool
|
|
FindIntroMessage::DecodeKey(llarp_buffer_t k, llarp_buffer_t* val)
|
|
{
|
|
uint64_t i = 0;
|
|
bool read = false;
|
|
if(!BEncodeMaybeReadDictInt("I", i, read, k, val))
|
|
return false;
|
|
if(read)
|
|
{
|
|
iterative = i != 0;
|
|
return true;
|
|
}
|
|
|
|
if(!BEncodeMaybeReadDictEntry("N", N, read, k, val))
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("R", R, read, k, val))
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("S", S, read, k, val))
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictInt("T", T, read, k, val))
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadVersion("V", version, LLARP_PROTO_VERSION, read, k,
|
|
val))
|
|
return false;
|
|
|
|
return read;
|
|
}
|
|
|
|
bool
|
|
FindIntroMessage::BEncode(llarp_buffer_t* buf) const
|
|
{
|
|
if(!bencode_start_dict(buf))
|
|
return false;
|
|
|
|
// message id
|
|
if(!BEncodeWriteDictMsgType(buf, "A", "F"))
|
|
return false;
|
|
// iterative
|
|
if(!BEncodeWriteDictInt("I", iterative ? 1 : 0, buf))
|
|
return false;
|
|
if(N.IsZero())
|
|
{
|
|
return false;
|
|
// r5n counter
|
|
if(!BEncodeWriteDictInt("R", R, buf))
|
|
return false;
|
|
// service address
|
|
if(!BEncodeWriteDictEntry("S", S, buf))
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
if(!BEncodeWriteDictEntry("N", N, buf))
|
|
return false;
|
|
// r5n counter
|
|
if(!BEncodeWriteDictInt("R", R, buf))
|
|
return false;
|
|
}
|
|
// txid
|
|
if(!BEncodeWriteDictInt("T", T, buf))
|
|
return false;
|
|
// protocol version
|
|
if(!BEncodeWriteDictInt("V", LLARP_PROTO_VERSION, buf))
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
}
|
|
|
|
bool
|
|
FindIntroMessage::HandleMessage(
|
|
llarp_dht_context* ctx,
|
|
std::vector< llarp::dht::IMessage* >& replies) const
|
|
{
|
|
auto& dht = ctx->impl;
|
|
Key_t peer;
|
|
std::set< Key_t > exclude = {dht.OurKey(), From};
|
|
if(N.IsZero())
|
|
{
|
|
const auto introset = dht.GetIntroSetByServiceAddress(S);
|
|
if(introset)
|
|
{
|
|
replies.push_back(new GotIntroMessage({*introset}, T));
|
|
}
|
|
else if(iterative)
|
|
{
|
|
// we are iterative and don't have it, reply with a direct reply
|
|
replies.push_back(new GotIntroMessage({}, T));
|
|
}
|
|
else
|
|
{
|
|
// we are recursive
|
|
if(dht.nodes->FindCloseExcluding(S, peer, exclude))
|
|
{
|
|
dht.LookupIntroSet(S, From, T, peer);
|
|
}
|
|
else
|
|
{
|
|
llarp::LogError("cannot find closer peers for introset lookup for ",
|
|
S);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(relayed)
|
|
{
|
|
// tag lookup
|
|
if(dht.nodes->FindCloseExcluding(N.Key(), peer, exclude))
|
|
{
|
|
dht.LookupTagForPath(N, T, pathID, peer);
|
|
}
|
|
else
|
|
{
|
|
llarp::LogWarn("no closer peers for tag ", N.ToString());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(iterative)
|
|
{
|
|
std::vector< service::IntroSet > introsets;
|
|
for(const auto& introset : dht.FindRandomIntroSetsWithTag(N, 8))
|
|
introsets.push_back(introset);
|
|
// we are iterative and don't have it, reply with a direct reply
|
|
replies.push_back(new GotIntroMessage(introsets, T));
|
|
}
|
|
else
|
|
{
|
|
// tag lookup
|
|
if(dht.nodes->FindCloseExcluding(N.Key(), peer, exclude))
|
|
{
|
|
dht.LookupTag(N, From, T, peer, true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
} // namespace dht
|
|
} // namespace llarp
|