1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/handlers/tun.hpp

241 lines
6.4 KiB
C++
Raw Normal View History

#ifndef LLARP_HANDLERS_TUN_HPP
#define LLARP_HANDLERS_TUN_HPP
2018-12-12 03:15:08 +01:00
#include <dns/server.hpp>
2019-01-11 02:19:36 +01:00
#include <ev/ev.h>
#include <net/ip.hpp>
#include <net/net.hpp>
2018-12-12 03:15:08 +01:00
#include <service/endpoint.hpp>
#include <util/codel.hpp>
#include <util/threading.hpp>
#include <future>
namespace llarp
{
namespace handlers
{
static const int DefaultTunNetmask = 16;
static const char DefaultTunIfname[] = "lokinet0";
static const char DefaultTunDstAddr[] = "10.10.0.1";
static const char DefaultTunSrcAddr[] = "10.10.0.2";
2018-12-03 23:22:59 +01:00
struct TunEndpoint : public service::Endpoint, public dns::IQueryHandler
{
TunEndpoint(const std::string& nickname, AbstractRouter* r,
llarp::service::Context* parent);
2018-08-16 16:34:15 +02:00
~TunEndpoint();
virtual bool
2018-12-05 00:45:08 +01:00
SetOption(const std::string& k, const std::string& v) override;
2018-08-16 16:34:15 +02:00
virtual void
2018-12-05 00:45:08 +01:00
Tick(llarp_time_t now) override;
2018-08-16 16:34:15 +02:00
2019-02-11 18:14:43 +01:00
util::StatusObject
ExtractStatus() const override;
2019-02-08 20:43:25 +01:00
2018-12-03 23:22:59 +01:00
bool
ShouldHookDNSMessage(const dns::Message& msg) const override;
bool
HandleHookedDNSMessage(
dns::Message&& query,
2018-12-03 23:22:59 +01:00
std::function< void(dns::Message) > sendreply) override;
2018-08-16 16:34:15 +02:00
void
TickTun(llarp_time_t now);
2018-08-22 17:52:10 +02:00
bool
MapAddress(const service::Address& remote, huint32_t ip, bool SNode);
2018-08-22 17:52:10 +02:00
2018-08-16 16:34:15 +02:00
bool
2018-12-05 00:45:08 +01:00
Start() override;
2018-08-16 16:34:15 +02:00
bool
Stop() override;
bool
IsSNode() const;
2018-08-16 16:34:15 +02:00
/// set up tun interface, blocking
bool
SetupTun();
/// overrides Endpoint
bool
2018-12-05 00:45:08 +01:00
SetupNetworking() override;
2018-08-16 16:34:15 +02:00
2018-09-18 19:48:26 +02:00
/// overrides Endpoint
/// handle inbound traffic
bool
HandleWriteIPPacket(const llarp_buffer_t& buf,
std::function< huint32_t(void) > getFromIP) override;
2018-08-18 16:01:21 +02:00
2018-11-14 13:23:08 +01:00
/// queue outbound packet to the world
bool
QueueOutboundTraffic(llarp::net::IPv4Packet&& pkt);
/// we have a resolvable ip address
bool
HasIfAddr() const override
{
return true;
}
2018-11-14 13:23:08 +01:00
/// get the local interface's address
huint32_t
2019-01-29 23:08:51 +01:00
GetIfAddr() const override;
2018-11-14 13:23:08 +01:00
bool
HasLocalIP(const huint32_t& ip) const;
2018-08-16 16:34:15 +02:00
llarp_tun_io tunif;
std::unique_ptr< llarp_fd_promise > Promise;
2018-08-16 16:34:15 +02:00
/// called before writing to tun interface
2018-08-16 16:34:15 +02:00
static void
tunifBeforeWrite(llarp_tun_io* t);
2018-08-16 16:34:15 +02:00
2018-08-22 17:52:10 +02:00
/// 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
2018-08-16 16:34:15 +02:00
static void
tunifRecvPkt(llarp_tun_io* t, const llarp_buffer_t& buf);
2018-08-16 16:34:15 +02:00
/// called in the endpoint logic thread
2018-08-16 16:34:15 +02:00
static void
handleTickTun(void* u);
2018-11-14 13:23:08 +01:00
/// get a key for ip address
template < typename Addr >
Addr
2018-11-29 15:01:13 +01:00
ObtainAddrForIP(huint32_t ip, bool isSNode)
2018-11-14 13:23:08 +01:00
{
auto itr = m_IPToAddr.find(ip);
2018-11-29 15:01:13 +01:00
if(itr == m_IPToAddr.end() || m_SNodes[itr->second] != isSNode)
2018-11-14 13:23:08 +01:00
{
// not found
Addr addr;
addr.Zero();
return addr;
}
// found
return Addr{itr->second};
2018-11-14 13:23:08 +01:00
}
2018-10-23 20:18:00 +02:00
bool
HasAddress(const AlignedBuffer< 32 >& addr) const override
2018-10-23 20:18:00 +02:00
{
2018-11-14 13:23:08 +01:00
return m_AddrToIP.find(addr) != m_AddrToIP.end();
2018-10-23 20:18:00 +02:00
}
2018-11-14 13:23:08 +01:00
/// get ip address for key unconditionally
2018-10-23 23:33:49 +02:00
huint32_t
ObtainIPForAddr(const AlignedBuffer< 32 >& addr,
bool serviceNode) override;
2018-10-23 23:33:49 +02:00
2018-12-15 17:56:35 +01:00
/// flush network traffic
void
Flush();
protected:
using PacketQueue_t = llarp::util::CoDelQueue<
net::IPv4Packet, net::IPv4Packet::GetTime, net::IPv4Packet::PutTime,
net::IPv4Packet::CompareOrder, net::IPv4Packet::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
2018-10-10 17:14:45 +02:00
HasRemoteForIP(huint32_t ipv4) const;
/// mark this address as active
void
2018-10-10 17:14:45 +02:00
MarkIPActive(huint32_t ip);
2018-09-10 13:08:09 +02:00
/// mark this address as active forever
void
2018-10-10 17:14:45 +02:00
MarkIPActiveForever(huint32_t ip);
2018-09-10 13:08:09 +02:00
/// flush ip packets
virtual void
2018-08-22 17:52:10 +02:00
FlushSend();
2018-11-14 13:23:08 +01:00
/// maps ip to key (host byte order)
std::unordered_map< huint32_t, AlignedBuffer< 32 >, huint32_t::Hash >
m_IPToAddr;
/// maps key to ip (host byte order)
std::unordered_map< AlignedBuffer< 32 >, huint32_t,
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;
2018-11-29 14:12:35 +01:00
2018-08-16 16:34:15 +02:00
private:
2018-11-14 20:34:17 +01:00
bool
QueueInboundPacketForExit(const llarp_buffer_t& buf)
2018-11-14 20:34:17 +01:00
{
2019-02-03 01:48:10 +01:00
ManagedBuffer copy{buf};
2018-11-14 20:34:17 +01:00
return m_NetworkToUserPktQueue.EmplaceIf(
[&](llarp::net::IPv4Packet& pkt) -> bool {
2019-02-03 00:12:42 +01:00
if(!pkt.Load(copy.underlying))
2018-11-14 20:34:17 +01:00
return false;
pkt.UpdateIPv4PacketOnDst(pkt.src(), m_OurIP);
return true;
});
}
template < typename Addr_t, typename Endpoint_t >
2018-12-03 23:22:59 +01:00
void
SendDNSReply(Addr_t addr, Endpoint_t* ctx, dns::Message* query,
std::function< void(dns::Message) > reply, bool snode,
bool sendIPv6)
{
if(ctx)
{
huint32_t ip = ObtainIPForAddr(addr, snode);
query->AddINReply(ip, sendIPv6);
}
else
query->AddNXReply();
reply(*query);
delete query;
}
2018-12-03 23:22:59 +01:00
2018-10-19 18:54:08 +02:00
#ifndef WIN32
2018-12-03 15:39:30 +01:00
/// handles fd injection force android
std::promise< int > m_VPNPromise;
2018-12-03 15:39:30 +01:00
#endif
2018-12-03 23:22:59 +01:00
/// our dns resolver
dns::Proxy m_Resolver;
/// maps ip address to timestamp last active
2018-10-10 17:50:52 +02:00
std::unordered_map< huint32_t, llarp_time_t, huint32_t::Hash >
m_IPActivity;
2018-09-23 18:47:18 +02:00
/// our ip address (host byte order)
2018-10-10 17:14:45 +02:00
huint32_t m_OurIP;
2018-09-23 18:47:18 +02:00
/// next ip address to allocate (host byte order)
2018-10-10 17:14:45 +02:00
huint32_t m_NextIP;
/// highest ip address to allocate (host byte order)
huint32_t m_MaxIP;
2018-12-03 23:22:59 +01:00
/// our ip range we are using
llarp::IPRange m_OurRange;
/// upstream dns resolver list
std::vector< llarp::Addr > m_UpstreamResolvers;
2018-11-11 14:14:19 +01:00
/// local dns
llarp::Addr m_LocalResolverAddr;
};
} // namespace handlers
} // namespace llarp
2018-08-16 16:34:15 +02:00
#endif