mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
9e9c1ea732
Lots of code was using 32-byte nonces for xchacha20 symmetric encryption, but this just means 8 extra bytes per packet wasted as chacha is only using the first 24 bytes of that nonce anyway. Changing this resulted in a lot of dead/dying code breaking, so this commit also removes a lot of that (and comments a couple places with TODO instead) Also nounce -> nonce where it came up.
175 lines
4.4 KiB
C++
175 lines
4.4 KiB
C++
#pragma once
|
|
|
|
#include <llarp/constants/path.hpp>
|
|
#include <llarp/path/abstracthophandler.hpp>
|
|
#include <llarp/path/path_types.hpp>
|
|
#include <llarp/router_id.hpp>
|
|
#include <llarp/util/compare_ptr.hpp>
|
|
#include <llarp/util/thread/queue.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
struct GotIntroMessage;
|
|
}
|
|
|
|
namespace path
|
|
{
|
|
struct TransitHopInfo
|
|
{
|
|
TransitHopInfo() = default;
|
|
TransitHopInfo(const RouterID& down);
|
|
|
|
PathID_t txID, rxID;
|
|
RouterID upstream;
|
|
RouterID downstream;
|
|
|
|
std::string
|
|
ToString() const;
|
|
};
|
|
|
|
inline bool
|
|
operator==(const TransitHopInfo& lhs, const TransitHopInfo& rhs)
|
|
{
|
|
return std::tie(lhs.txID, lhs.rxID, lhs.upstream, lhs.downstream)
|
|
== std::tie(rhs.txID, rhs.rxID, rhs.upstream, rhs.downstream);
|
|
}
|
|
|
|
inline bool
|
|
operator!=(const TransitHopInfo& lhs, const TransitHopInfo& rhs)
|
|
{
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline bool
|
|
operator<(const TransitHopInfo& lhs, const TransitHopInfo& rhs)
|
|
{
|
|
return std::tie(lhs.txID, lhs.rxID, lhs.upstream, lhs.downstream)
|
|
< std::tie(rhs.txID, rhs.rxID, rhs.upstream, rhs.downstream);
|
|
}
|
|
|
|
struct TransitHop : public AbstractHopHandler, std::enable_shared_from_this<TransitHop>
|
|
{
|
|
TransitHop();
|
|
|
|
TransitHopInfo info;
|
|
SharedSecret pathKey;
|
|
SymmNonce nonceXOR;
|
|
llarp_time_t started = 0s;
|
|
// 10 minutes default
|
|
llarp_time_t lifetime = DEFAULT_LIFETIME;
|
|
llarp_proto_version_t version;
|
|
llarp_time_t m_LastActivity = 0s;
|
|
bool terminal_hop{false};
|
|
|
|
// If randomize is given, first randomizes `nonce`
|
|
//
|
|
// Does xchacha20 on `data` in-place with `nonce` and `pathKey`, then
|
|
// mutates `nonce` = `nonce` ^ `nonceXOR` in-place.
|
|
void
|
|
onion(ustring& data, SymmNonce& nonce, bool randomize = false) const;
|
|
|
|
void
|
|
onion(std::string& data, SymmNonce& nonce, bool randomize = false) const;
|
|
|
|
std::string
|
|
onion_and_payload(
|
|
std::string& payload,
|
|
PathID_t next_id,
|
|
std::optional<SymmNonce> nonce = std::nullopt) const;
|
|
|
|
PathID_t
|
|
RXID() const override
|
|
{
|
|
return info.rxID;
|
|
}
|
|
|
|
void
|
|
Stop();
|
|
|
|
bool destroy = false;
|
|
|
|
bool
|
|
operator<(const TransitHop& other) const
|
|
{
|
|
return info < other.info;
|
|
}
|
|
|
|
bool
|
|
IsEndpoint(const RouterID& us) const
|
|
{
|
|
return info.upstream == us;
|
|
}
|
|
|
|
llarp_time_t
|
|
ExpireTime() const;
|
|
|
|
llarp_time_t
|
|
LastRemoteActivityAt() const override
|
|
{
|
|
return m_LastActivity;
|
|
}
|
|
|
|
std::string
|
|
ToString() const;
|
|
|
|
bool
|
|
Expired(llarp_time_t now) const override;
|
|
|
|
bool
|
|
ExpiresSoon(llarp_time_t now, llarp_time_t dlt) const override
|
|
{
|
|
return now >= ExpireTime() - dlt;
|
|
}
|
|
|
|
// TODO: should this be a separate method indicating directionality?
|
|
// Most control messages won't make sense to be sent to a client,
|
|
// so perhaps control messages from a terminal relay to a client (rather than
|
|
// the other way around) should be their own message type.
|
|
//
|
|
/// sends a control request along a path
|
|
///
|
|
/// performs the necessary onion encryption before sending.
|
|
/// func will be called when a timeout occurs or a response is received.
|
|
/// if a response is received, onion decryption is performed before func is called.
|
|
///
|
|
/// func is called with a bt-encoded response string (if applicable), and
|
|
/// a timeout flag (if set, response string will be empty)
|
|
bool
|
|
send_path_control_message(
|
|
std::string method,
|
|
std::string body,
|
|
std::function<void(std::string)> func) override;
|
|
|
|
void
|
|
QueueDestroySelf(Router* r);
|
|
|
|
private:
|
|
void
|
|
SetSelfDestruct();
|
|
};
|
|
} // namespace path
|
|
|
|
template <>
|
|
constexpr inline bool IsToStringFormattable<path::TransitHop> = true;
|
|
template <>
|
|
constexpr inline bool IsToStringFormattable<path::TransitHopInfo> = true;
|
|
|
|
} // namespace llarp
|
|
|
|
namespace std
|
|
{
|
|
template <>
|
|
struct hash<llarp::path::TransitHopInfo>
|
|
{
|
|
std::size_t
|
|
operator()(llarp::path::TransitHopInfo const& a) const
|
|
{
|
|
hash<llarp::RouterID> RHash{};
|
|
hash<llarp::PathID_t> PHash{};
|
|
return RHash(a.upstream) ^ RHash(a.downstream) ^ PHash(a.txID) ^ PHash(a.rxID);
|
|
}
|
|
};
|
|
} // namespace std
|