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

211 lines
5.7 KiB
C++

#ifndef LLARP_HANDLERS_TUN_HPP
#define LLARP_HANDLERS_TUN_HPP
#include <codel.hpp>
#include <dns/server.hpp>
#include <ev.h>
#include <ip.hpp>
#include <net.hpp>
#include <service/endpoint.hpp>
#include <threading.hpp>
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";
6 years ago
struct TunEndpoint : public service::Endpoint, public dns::IQueryHandler
{
TunEndpoint(const std::string& nickname, llarp::Router* r);
6 years ago
~TunEndpoint();
virtual bool
SetOption(const std::string& k, const std::string& v) override;
6 years ago
virtual void
Tick(llarp_time_t now) override;
6 years ago
6 years ago
bool
ShouldHookDNSMessage(const dns::Message& msg) const override;
bool
HandleHookedDNSMessage(
dns::Message query,
std::function< void(dns::Message) > sendreply) override;
6 years ago
void
TickTun(llarp_time_t now);
6 years ago
bool
MapAddress(const service::Address& remote, huint32_t ip, bool SNode);
6 years ago
6 years ago
bool
Start() override;
6 years ago
bool
IsSNode() const;
6 years ago
/// set up tun interface, blocking
bool
SetupTun();
/// overrides Endpoint
bool
SetupNetworking() override;
6 years ago
/// overrides Endpoint
/// handle inbound traffic
bool
HandleWriteIPPacket(llarp_buffer_t buf,
std::function< huint32_t(void) > getFromIP) override;
6 years ago
6 years ago
/// queue outbound packet to the world
bool
QueueOutboundTraffic(llarp::net::IPv4Packet&& pkt);
/// get the local interface's address
huint32_t
GetIfAddr() const;
bool
HasLocalIP(const huint32_t& ip) const;
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, 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
ObtainAddrForIP(huint32_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 itr->second.data();
}
bool
HasAddress(const byte_t* addr) const override
{
6 years ago
return m_AddrToIP.find(addr) != m_AddrToIP.end();
}
6 years ago
/// get ip address for key unconditionally
6 years ago
huint32_t
ObtainIPForAddr(const byte_t* addr, bool serviceNode) override;
6 years ago
/// 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
HasRemoteForIP(huint32_t ipv4) const;
/// mark this address as active
void
MarkIPActive(huint32_t ip);
6 years ago
/// mark this address as active forever
void
MarkIPActiveForever(huint32_t ip);
6 years ago
/// flush ip packets
virtual void
6 years ago
FlushSend();
6 years ago
/// 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;
6 years ago
private:
bool
QueueInboundPacketForExit(llarp_buffer_t buf)
{
return m_NetworkToUserPktQueue.EmplaceIf(
[&](llarp::net::IPv4Packet& pkt) -> bool {
if(!pkt.Load(buf))
return false;
pkt.UpdateIPv4PacketOnDst(pkt.src(), m_OurIP);
return true;
});
}
6 years ago
void
SendDNSReply(service::Address addr,
service::Endpoint::OutboundContext* ctx, dns::Message query,
std::function< void(dns::Message) > reply);
6 years ago
#ifndef WIN32
/// handles fd injection force android
std::promise< int > m_VPNPromise;
#endif
6 years ago
/// our dns resolver
dns::Proxy m_Resolver;
/// maps ip address to timestamp last active
std::unordered_map< huint32_t, llarp_time_t, huint32_t::Hash >
m_IPActivity;
/// our ip address (host byte order)
huint32_t m_OurIP;
/// next ip address to allocate (host byte order)
huint32_t m_NextIP;
/// highest ip address to allocate (host byte order)
huint32_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;
};
} // namespace handlers
} // namespace llarp
6 years ago
#endif