You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/handlers/tun.hpp

291 lines
7.9 KiB
C++

#ifndef LLARP_HANDLERS_TUN_HPP
#define LLARP_HANDLERS_TUN_HPP
#include <dns/server.hpp>
#include <ev/ev.h>
#include <net/ip.hpp>
#include <net/net.hpp>
#include <service/endpoint.hpp>
#include <util/codel.hpp>
#include <util/thread/threading.hpp>
#include <future>
namespace llarp
{
namespace handlers
{
struct TunEndpoint : public service::Endpoint,
public dns::IQueryHandler,
public std::enable_shared_from_this< TunEndpoint >
{
TunEndpoint(const std::string& nickname, AbstractRouter* r,
llarp::service::Context* parent);
~TunEndpoint() override;
6 years ago
path::PathSet_ptr
GetSelf() override
{
return shared_from_this();
}
bool
SetOption(const std::string& k, const std::string& v) override;
6 years ago
void
Tick(llarp_time_t now) override;
6 years ago
5 years ago
util::StatusObject
ExtractStatus() const;
5 years ago
std::unordered_map< std::string, std::string >
NotifyParams() const override;
5 years ago
bool
SupportsV6() const override;
6 years ago
bool
ShouldHookDNSMessage(const dns::Message& msg) const override;
bool
HandleHookedDNSMessage(
dns::Message&& query,
6 years ago
std::function< void(dns::Message) > sendreply) override;
6 years ago
void
TickTun(llarp_time_t now);
6 years ago
bool
5 years ago
MapAddress(const service::Address& remote, huint128_t ip, bool SNode);
6 years ago
6 years ago
bool
Start() override;
6 years ago
bool
Stop() override;
bool
IsSNode() const;
6 years ago
/// set up tun interface, blocking
bool
SetupTun();
/// overrides Endpoint
bool
SetupNetworking() override;
6 years ago
/// overrides Endpoint
bool
HandleInboundPacket(const service::ConvoTag tag,
const llarp_buffer_t& pkt,
service::ProtocolType t) override
{
if(t != service::eProtocolTrafficV4 && t != service::eProtocolTrafficV6)
return false;
AlignedBuffer< 32 > addr;
bool snode = false;
if(!GetEndpointWithConvoTag(tag, addr, snode))
return false;
return HandleWriteIPPacket(
pkt, [=]() -> huint128_t { return ObtainIPForAddr(addr, snode); });
}
/// handle inbound traffic
bool
HandleWriteIPPacket(const llarp_buffer_t& buf,
std::function< huint128_t(void) > getFromIP);
6 years ago
6 years ago
/// queue outbound packet to the world
bool
5 years ago
QueueOutboundTraffic(llarp::net::IPPacket&& pkt);
6 years ago
/// get the local interface's address
5 years ago
huint128_t
GetIfAddr() const override;
6 years ago
5 years ago
/// we have an interface addr
bool
HasIfAddr() const override
{
return true;
}
6 years ago
bool
5 years ago
HasLocalIP(const huint128_t& ip) const;
6 years ago
6 years ago
llarp_tun_io tunif;
std::unique_ptr< llarp_fd_promise > Promise;
6 years ago
/// called before writing to tun interface
6 years ago
static void
tunifBeforeWrite(llarp_tun_io* t);
6 years ago
6 years ago
/// handle user to network send buffer flush
/// called in router logic thread
static void
handleNetSend(void*);
/// called every time we wish to read a packet from the tun interface
6 years ago
static void
tunifRecvPkt(llarp_tun_io* t, const llarp_buffer_t& buf);
6 years ago
/// called in the endpoint logic thread
6 years ago
static void
handleTickTun(void* u);
6 years ago
/// get a key for ip address
template < typename Addr >
Addr
5 years ago
ObtainAddrForIP(huint128_t ip, bool isSNode)
6 years ago
{
auto itr = m_IPToAddr.find(ip);
if(itr == m_IPToAddr.end() || m_SNodes[itr->second] != isSNode)
6 years ago
{
// not found
Addr addr;
addr.Zero();
return addr;
}
// found
return Addr{itr->second};
6 years ago
}
bool
HasAddress(const AlignedBuffer< 32 >& addr) const
{
6 years ago
return m_AddrToIP.find(addr) != m_AddrToIP.end();
}
6 years ago
/// get ip address for key unconditionally
5 years ago
huint128_t
ObtainIPForAddr(const AlignedBuffer< 32 >& addr, bool serviceNode);
6 years ago
/// flush network traffic
void
Flush();
void
ResetInternalState() override;
protected:
using PacketQueue_t = llarp::util::CoDelQueue<
5 years ago
net::IPPacket, net::IPPacket::GetTime, net::IPPacket::PutTime,
net::IPPacket::CompareOrder, net::IPPacket::GetNow >;
/// queue for sending packets over the network from us
PacketQueue_t m_UserToNetworkPktQueue;
/// queue for sending packets to user from network
PacketQueue_t m_NetworkToUserPktQueue;
/// return true if we have a remote loki address for this ip address
bool
5 years ago
HasRemoteForIP(huint128_t ipv4) const;
/// mark this address as active
void
5 years ago
MarkIPActive(huint128_t ip);
6 years ago
/// mark this address as active forever
void
5 years ago
MarkIPActiveForever(huint128_t ip);
6 years ago
/// flush ip packets
virtual void
6 years ago
FlushSend();
6 years ago
/// maps ip to key (host byte order)
5 years ago
std::unordered_map< huint128_t, AlignedBuffer< 32 >, huint128_t::Hash >
6 years ago
m_IPToAddr;
/// maps key to ip (host byte order)
5 years ago
std::unordered_map< AlignedBuffer< 32 >, huint128_t,
6 years ago
AlignedBuffer< 32 >::Hash >
m_AddrToIP;
/// maps key to true if key is a service node, maps key to false if key is
/// a hidden service
std::unordered_map< AlignedBuffer< 32 >, bool, AlignedBuffer< 32 >::Hash >
m_SNodes;
6 years ago
private:
bool
QueueInboundPacketForExit(const llarp_buffer_t& buf)
{
ManagedBuffer copy{buf};
return m_NetworkToUserPktQueue.EmplaceIf(
5 years ago
[&](llarp::net::IPPacket& pkt) -> bool {
if(!pkt.Load(copy.underlying))
return false;
5 years ago
if(SupportsV6())
{
if(pkt.IsV4())
{
5 years ago
pkt.UpdateIPv6Address(net::IPPacket::ExpandV4(pkt.srcv4()),
5 years ago
m_OurIP);
5 years ago
}
else
{
5 years ago
pkt.UpdateIPv6Address(pkt.srcv6(), m_OurIP);
5 years ago
}
}
else
{
if(pkt.IsV4())
5 years ago
pkt.UpdateIPv4Address(
xhtonl(pkt.srcv4()),
xhtonl(net::IPPacket::TruncateV6(m_OurIP)));
5 years ago
else
return false;
}
return true;
});
}
template < typename Addr_t, typename Endpoint_t >
6 years ago
void
SendDNSReply(Addr_t addr, Endpoint_t ctx, dns::Message* query,
std::function< void(dns::Message) > reply, bool snode,
bool sendIPv6)
{
if(ctx)
{
5 years ago
huint128_t ip = ObtainIPForAddr(addr, snode);
query->AddINReply(ip, sendIPv6);
}
else
query->AddNXReply();
reply(*query);
delete query;
}
6 years ago
6 years ago
#ifndef WIN32
/// handles fd injection force android
std::promise< std::pair< int, int > > m_VPNPromise;
#endif
6 years ago
/// our dns resolver
5 years ago
std::shared_ptr< dns::Proxy > m_Resolver;
/// maps ip address to timestamp last active
5 years ago
std::unordered_map< huint128_t, llarp_time_t, huint128_t::Hash >
m_IPActivity;
/// our ip address (host byte order)
5 years ago
huint128_t m_OurIP;
/// next ip address to allocate (host byte order)
5 years ago
huint128_t m_NextIP;
/// highest ip address to allocate (host byte order)
5 years ago
huint128_t m_MaxIP;
6 years ago
/// our ip range we are using
llarp::IPRange m_OurRange;
/// upstream dns resolver list
std::vector< llarp::Addr > m_UpstreamResolvers;
/// local dns
llarp::Addr m_LocalResolverAddr;
/// list of strict connect addresses for hooks
std::vector< llarp::Addr > m_StrictConnectAddrs;
5 years ago
/// use v6?
bool m_UseV6;
};
} // namespace handlers
} // namespace llarp
6 years ago
#endif