2018-06-22 00:25:30 +00:00
|
|
|
#include <llarp/bencode.hpp>
|
2018-06-08 13:12:17 +00:00
|
|
|
#include <llarp/messages/relay.hpp>
|
|
|
|
|
2018-06-22 00:25:30 +00:00
|
|
|
#include "router.hpp"
|
|
|
|
|
2018-06-08 13:12:17 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
RelayUpstreamMessage::RelayUpstreamMessage(const RouterID &from)
|
|
|
|
: ILinkMessage(from)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-22 00:25:30 +00:00
|
|
|
RelayUpstreamMessage::RelayUpstreamMessage() : ILinkMessage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-08 13:12:17 +00:00
|
|
|
RelayUpstreamMessage::~RelayUpstreamMessage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RelayUpstreamMessage::BEncode(llarp_buffer_t *buf) const
|
|
|
|
{
|
2018-06-26 16:23:43 +00:00
|
|
|
if(!bencode_start_dict(buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictMsgType(buf, "a", "u"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(!BEncodeWriteDictEntry("p", pathid, buf))
|
|
|
|
return false;
|
2018-07-23 21:59:43 +00:00
|
|
|
if(!BEncodeWriteDictInt("v", LLARP_PROTO_VERSION, buf))
|
2018-06-26 16:23:43 +00:00
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("x", X, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("y", Y, buf))
|
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
2018-06-08 13:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RelayUpstreamMessage::DecodeKey(llarp_buffer_t key, llarp_buffer_t *buf)
|
|
|
|
{
|
2018-06-26 16:23:43 +00:00
|
|
|
bool read = false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("p", pathid, read, key, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadVersion("v", version, LLARP_PROTO_VERSION, read, key,
|
|
|
|
buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("x", X, read, key, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("y", Y, read, key, buf))
|
|
|
|
return false;
|
|
|
|
return read;
|
2018-06-08 13:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RelayUpstreamMessage::HandleMessage(llarp_router *router) const
|
|
|
|
{
|
2018-06-26 16:23:43 +00:00
|
|
|
auto path = router->paths.GetByDownstream(remote, pathid);
|
|
|
|
if(path)
|
|
|
|
{
|
|
|
|
return path->HandleUpstream(X.Buffer(), Y, router);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogWarn("No such path downstream=", remote, " pathid=", pathid);
|
2018-06-26 16:23:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-06-08 13:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RelayDownstreamMessage::RelayDownstreamMessage(const RouterID &from)
|
|
|
|
: ILinkMessage(from)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-22 00:25:30 +00:00
|
|
|
RelayDownstreamMessage::RelayDownstreamMessage() : ILinkMessage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-08 13:12:17 +00:00
|
|
|
RelayDownstreamMessage::~RelayDownstreamMessage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
bool
|
|
|
|
RelayDownstreamMessage::BEncode(llarp_buffer_t *buf) const
|
|
|
|
{
|
2018-06-22 00:25:30 +00:00
|
|
|
if(!bencode_start_dict(buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictMsgType(buf, "a", "d"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if(!BEncodeWriteDictEntry("p", pathid, buf))
|
|
|
|
return false;
|
2018-07-23 21:59:43 +00:00
|
|
|
if(!BEncodeWriteDictInt("v", LLARP_PROTO_VERSION, buf))
|
2018-06-22 00:25:30 +00:00
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("x", X, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeWriteDictEntry("y", Y, buf))
|
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
2018-06-08 13:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RelayDownstreamMessage::DecodeKey(llarp_buffer_t key, llarp_buffer_t *buf)
|
|
|
|
{
|
2018-06-22 00:25:30 +00:00
|
|
|
bool read = false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("p", pathid, read, key, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadVersion("v", version, LLARP_PROTO_VERSION, read, key,
|
|
|
|
buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("x", X, read, key, buf))
|
|
|
|
return false;
|
|
|
|
if(!BEncodeMaybeReadDictEntry("y", Y, read, key, buf))
|
|
|
|
return false;
|
|
|
|
return read;
|
2018-06-08 13:12:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
RelayDownstreamMessage::HandleMessage(llarp_router *router) const
|
|
|
|
{
|
2018-06-22 12:45:46 +00:00
|
|
|
auto path = router->paths.GetByUpstream(remote, pathid);
|
2018-06-22 00:25:30 +00:00
|
|
|
if(path)
|
|
|
|
{
|
|
|
|
return path->HandleDownstream(X.Buffer(), Y, router);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-05 15:44:06 +00:00
|
|
|
llarp::LogWarn("No such path upstream=", remote, " pathid=", pathid);
|
2018-06-22 00:25:30 +00:00
|
|
|
}
|
2018-06-08 13:12:17 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-06-22 00:25:30 +00:00
|
|
|
} // namespace llarp
|