2021-03-08 19:19:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "lokinet.h"
|
|
|
|
#include "llarp.hpp"
|
2021-04-02 15:10:37 +00:00
|
|
|
#include <llarp/config/config.hpp>
|
|
|
|
#include <llarp/crypto/crypto_libsodium.hpp>
|
2021-03-08 19:19:20 +00:00
|
|
|
|
2021-04-01 11:13:39 +00:00
|
|
|
#include <llarp/router/abstractrouter.hpp>
|
|
|
|
#include <llarp/service/context.hpp>
|
|
|
|
#include <llarp/quic/tunnel.hpp>
|
2021-04-02 15:10:37 +00:00
|
|
|
#include <llarp/nodedb.hpp>
|
2021-04-01 11:13:39 +00:00
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
2021-04-19 11:19:07 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define EHOSTDOWN ENETDOWN
|
|
|
|
#endif
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
struct Context : public llarp::Context
|
|
|
|
{
|
|
|
|
using llarp::Context::Context;
|
|
|
|
|
|
|
|
std::shared_ptr<llarp::NodeDB>
|
|
|
|
makeNodeDB() override
|
|
|
|
{
|
|
|
|
return std::make_shared<llarp::NodeDB>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2021-03-08 19:19:20 +00:00
|
|
|
struct lokinet_context
|
|
|
|
{
|
2021-04-01 11:13:39 +00:00
|
|
|
std::mutex m_access;
|
|
|
|
|
2021-03-08 19:19:20 +00:00
|
|
|
std::shared_ptr<llarp::Context> impl;
|
2021-04-02 15:10:37 +00:00
|
|
|
std::shared_ptr<llarp::Config> config;
|
2021-03-08 19:19:20 +00:00
|
|
|
|
|
|
|
std::unique_ptr<std::thread> runner;
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
lokinet_context() : impl{std::make_shared<Context>()}, config{llarp::Config::EmbeddedConfig()}
|
2021-03-08 19:19:20 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
~lokinet_context()
|
|
|
|
{
|
|
|
|
if (runner)
|
|
|
|
runner->join();
|
|
|
|
}
|
2021-04-01 11:13:39 +00:00
|
|
|
|
|
|
|
/// acquire mutex for accessing this context
|
|
|
|
[[nodiscard]] auto
|
|
|
|
acquire()
|
|
|
|
{
|
|
|
|
return std::unique_lock{m_access};
|
|
|
|
}
|
|
|
|
|
2021-04-02 16:08:06 +00:00
|
|
|
[[nodiscard]] auto
|
2021-04-03 12:19:46 +00:00
|
|
|
endpoint(std::string name = "default") const
|
2021-04-02 16:08:06 +00:00
|
|
|
{
|
2021-04-03 12:19:46 +00:00
|
|
|
return impl->router->hiddenServiceContext().GetEndpointByName(name);
|
2021-04-02 16:08:06 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 11:13:39 +00:00
|
|
|
std::unordered_map<int, bool> streams;
|
|
|
|
|
|
|
|
void
|
|
|
|
inbound_stream(int id)
|
|
|
|
{
|
|
|
|
streams[id] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
outbound_stream(int id)
|
|
|
|
{
|
|
|
|
streams[id] = false;
|
|
|
|
}
|
2021-03-08 19:19:20 +00:00
|
|
|
};
|
|
|
|
|
2021-04-01 11:13:39 +00:00
|
|
|
namespace
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
std::unique_ptr<lokinet_context> g_context;
|
2021-04-01 11:13:39 +00:00
|
|
|
|
2021-04-01 16:51:02 +00:00
|
|
|
void
|
|
|
|
stream_error(lokinet_stream_result* result, int err)
|
2021-04-01 11:13:39 +00:00
|
|
|
{
|
2021-04-02 15:10:37 +00:00
|
|
|
std::memset(result, 0, sizeof(lokinet_stream_result));
|
2021-04-01 16:51:02 +00:00
|
|
|
result->error = err;
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 16:51:02 +00:00
|
|
|
void
|
|
|
|
stream_okay(lokinet_stream_result* result, std::string host, int port, int stream_id)
|
2021-04-01 11:13:39 +00:00
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, 0);
|
2021-04-01 11:13:39 +00:00
|
|
|
std::copy_n(
|
|
|
|
host.c_str(),
|
|
|
|
std::min(host.size(), sizeof(result->local_address) - 1),
|
|
|
|
result->local_address);
|
|
|
|
result->local_port = port;
|
|
|
|
result->stream_id = stream_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<std::string, int>
|
|
|
|
split_host_port(std::string data, std::string proto = "tcp")
|
|
|
|
{
|
|
|
|
std::string host, portStr;
|
|
|
|
if (auto pos = data.find(":"); pos != std::string::npos)
|
|
|
|
{
|
|
|
|
host = data.substr(0, pos);
|
|
|
|
portStr = data.substr(pos + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw EINVAL;
|
|
|
|
|
|
|
|
if (auto* serv = getservbyname(portStr.c_str(), proto.c_str()))
|
|
|
|
{
|
|
|
|
return {host, serv->s_port};
|
|
|
|
}
|
|
|
|
else
|
2021-04-01 16:51:02 +00:00
|
|
|
return {host, std::stoi(portStr)};
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
accept_port(const char* remote, uint16_t port, void* ptr)
|
|
|
|
{
|
|
|
|
(void)remote;
|
|
|
|
if (port == *static_cast<uint16_t*>(ptr))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-04-15 11:55:05 +00:00
|
|
|
std::optional<lokinet_srv_record>
|
2021-04-12 11:39:07 +00:00
|
|
|
SRVFromData(const llarp::dns::SRVData& data, std::string name)
|
|
|
|
{
|
|
|
|
// TODO: implement me
|
|
|
|
(void)data;
|
|
|
|
(void)name;
|
2021-04-15 11:55:05 +00:00
|
|
|
return std::nullopt;
|
2021-04-12 11:39:07 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 11:13:39 +00:00
|
|
|
} // namespace
|
2021-03-08 19:19:20 +00:00
|
|
|
|
2021-04-12 11:39:07 +00:00
|
|
|
struct lokinet_srv_lookup_private
|
|
|
|
{
|
|
|
|
std::vector<lokinet_srv_record> results;
|
|
|
|
|
|
|
|
int
|
|
|
|
LookupSRV(std::string host, std::string service, lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
std::promise<int> promise;
|
|
|
|
{
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
if (ctx->impl and ctx->impl->IsUp())
|
|
|
|
{
|
|
|
|
ctx->impl->CallSafe([host, service, &promise, ctx, self = this]() {
|
|
|
|
auto ep = ctx->endpoint();
|
|
|
|
if (ep == nullptr)
|
|
|
|
{
|
|
|
|
promise.set_value(ENOTSUP);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ep->LookupServiceAsync(host, service, [self, &promise, host](auto results) {
|
2021-04-15 11:55:05 +00:00
|
|
|
for (const auto& result : results)
|
|
|
|
{
|
|
|
|
if (auto maybe = SRVFromData(result, host))
|
|
|
|
self->results.emplace_back(*maybe);
|
|
|
|
}
|
2021-04-12 11:39:07 +00:00
|
|
|
promise.set_value(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
promise.set_value(EHOSTDOWN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto future = promise.get_future();
|
|
|
|
return future.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
IterateAll(std::function<void(lokinet_srv_record*)> visit)
|
|
|
|
{
|
|
|
|
for (size_t idx = 0; idx < results.size(); ++idx)
|
|
|
|
visit(&results[idx]);
|
|
|
|
// null terminator
|
|
|
|
visit(nullptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-03-08 19:19:20 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
struct lokinet_context*
|
|
|
|
lokinet_default()
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
if (not g_context)
|
|
|
|
g_context = std::make_unique<lokinet_context>();
|
|
|
|
return g_context.get();
|
|
|
|
}
|
|
|
|
|
2021-04-03 12:19:46 +00:00
|
|
|
void
|
|
|
|
lokinet_set_netid(const char* netid)
|
|
|
|
{
|
|
|
|
llarp::NetID::DefaultValue() = llarp::NetID{reinterpret_cast<const byte_t*>(netid)};
|
|
|
|
}
|
|
|
|
|
|
|
|
const char*
|
|
|
|
lokinet_get_netid()
|
|
|
|
{
|
|
|
|
const auto netid = llarp::NetID::DefaultValue().ToString();
|
|
|
|
return strdup(netid.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
lokinet_log_level(const char* level)
|
|
|
|
{
|
|
|
|
if (auto maybe = llarp::LogLevelFromString(level))
|
|
|
|
{
|
|
|
|
llarp::SetLogLevel(*maybe);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-04-01 16:51:02 +00:00
|
|
|
char*
|
|
|
|
lokinet_address(struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
if (not ctx)
|
|
|
|
return nullptr;
|
|
|
|
auto lock = ctx->acquire();
|
2021-04-02 16:08:06 +00:00
|
|
|
auto ep = ctx->endpoint();
|
2021-04-01 16:51:02 +00:00
|
|
|
const auto addr = ep->GetIdentity().pub.Addr();
|
|
|
|
const auto addrStr = addr.ToString();
|
|
|
|
return strdup(addrStr.c_str());
|
2021-03-08 19:19:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
int
|
|
|
|
lokinet_add_bootstrap_rc(const char* data, size_t datalen, struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
llarp_buffer_t buf{data, datalen};
|
|
|
|
llarp::RouterContact rc{};
|
|
|
|
if (ctx == nullptr)
|
|
|
|
return -3;
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
// add a temp cryptography implementation here so rc.Verify works
|
|
|
|
llarp::CryptoManager instance{new llarp::sodium::CryptoLibSodium{}};
|
|
|
|
if (not rc.BDecode(&buf))
|
|
|
|
return -1;
|
|
|
|
if (not rc.Verify(llarp::time_now_ms()))
|
|
|
|
return -2;
|
|
|
|
ctx->config->bootstrap.routers.insert(std::move(rc));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-08 19:19:20 +00:00
|
|
|
struct lokinet_context*
|
|
|
|
lokinet_context_new()
|
|
|
|
{
|
|
|
|
return new lokinet_context{};
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
lokinet_context_free(struct lokinet_context* ctx)
|
|
|
|
{
|
2021-04-01 11:13:39 +00:00
|
|
|
lokinet_context_stop(ctx);
|
2021-03-08 19:19:20 +00:00
|
|
|
delete ctx;
|
|
|
|
}
|
|
|
|
|
2021-04-02 15:10:37 +00:00
|
|
|
int
|
2021-03-08 19:19:20 +00:00
|
|
|
lokinet_context_start(struct lokinet_context* ctx)
|
|
|
|
{
|
2021-04-01 11:13:39 +00:00
|
|
|
if (not ctx)
|
2021-04-02 15:10:37 +00:00
|
|
|
return -1;
|
2021-04-01 11:13:39 +00:00
|
|
|
auto lock = ctx->acquire();
|
2021-04-03 12:19:46 +00:00
|
|
|
ctx->config->router.m_netId = lokinet_get_netid();
|
|
|
|
ctx->config->logging.m_logLevel = llarp::GetLogLevel();
|
2021-03-08 19:19:20 +00:00
|
|
|
ctx->runner = std::make_unique<std::thread>([ctx]() {
|
2021-04-01 16:51:02 +00:00
|
|
|
llarp::util::SetThreadName("llarp-mainloop");
|
2021-04-02 15:10:37 +00:00
|
|
|
ctx->impl->Configure(ctx->config);
|
2021-03-08 19:19:20 +00:00
|
|
|
const llarp::RuntimeOptions opts{};
|
2021-04-01 16:51:02 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
ctx->impl->Setup(opts);
|
2021-04-02 15:10:37 +00:00
|
|
|
#ifdef SIG_PIPE
|
|
|
|
signal(SIG_PIPE, SIGIGN);
|
|
|
|
#endif
|
2021-04-01 16:51:02 +00:00
|
|
|
ctx->impl->Run(opts);
|
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
|
|
|
std::cerr << ex.what() << std::endl;
|
|
|
|
ctx->impl->CloseAsync();
|
|
|
|
}
|
2021-03-08 19:19:20 +00:00
|
|
|
});
|
2021-04-01 16:51:02 +00:00
|
|
|
while (not ctx->impl->IsUp())
|
|
|
|
{
|
|
|
|
if (ctx->impl->IsStopping())
|
2021-04-02 15:10:37 +00:00
|
|
|
return -1;
|
2021-04-02 16:08:06 +00:00
|
|
|
std::this_thread::sleep_for(50ms);
|
2021-04-01 16:51:02 +00:00
|
|
|
}
|
2021-04-02 15:10:37 +00:00
|
|
|
return 0;
|
2021-03-08 19:19:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-04 11:33:17 +00:00
|
|
|
int
|
|
|
|
lokinet_status(struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
if (ctx == nullptr)
|
|
|
|
return -3;
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
if (not ctx->impl->IsUp())
|
|
|
|
return -3;
|
|
|
|
if (not ctx->impl->LooksAlive())
|
|
|
|
return -2;
|
|
|
|
return ctx->endpoint()->IsReady() ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2021-04-02 16:08:06 +00:00
|
|
|
int
|
|
|
|
lokinet_wait_for_ready(int ms, struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
if (ctx == nullptr)
|
|
|
|
return -1;
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
auto ep = ctx->endpoint();
|
|
|
|
int iterations = ms / 10;
|
|
|
|
if (iterations <= 0)
|
|
|
|
{
|
|
|
|
ms = 10;
|
|
|
|
iterations = 1;
|
|
|
|
}
|
|
|
|
while (not ep->IsReady() and iterations > 0)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds{ms / 10});
|
|
|
|
iterations--;
|
|
|
|
}
|
|
|
|
return ep->IsReady() ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2021-03-08 19:19:20 +00:00
|
|
|
void
|
|
|
|
lokinet_context_stop(struct lokinet_context* ctx)
|
|
|
|
{
|
2021-04-01 11:13:39 +00:00
|
|
|
if (not ctx)
|
|
|
|
return;
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
|
|
|
|
if (not ctx->impl->IsStopping())
|
|
|
|
{
|
|
|
|
ctx->impl->CloseAsync();
|
|
|
|
ctx->impl->Wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->runner)
|
|
|
|
ctx->runner->join();
|
|
|
|
|
|
|
|
ctx->runner.reset();
|
|
|
|
}
|
|
|
|
|
2021-04-01 16:51:02 +00:00
|
|
|
void
|
|
|
|
lokinet_outbound_stream(
|
|
|
|
struct lokinet_stream_result* result,
|
|
|
|
const char* remote,
|
|
|
|
const char* local,
|
|
|
|
struct lokinet_context* ctx)
|
2021-04-01 11:13:39 +00:00
|
|
|
{
|
|
|
|
if (ctx == nullptr)
|
2021-04-01 16:51:02 +00:00
|
|
|
{
|
|
|
|
stream_error(result, EHOSTDOWN);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::promise<void> promise;
|
2021-04-01 11:13:39 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
|
|
|
|
if (not ctx->impl->IsUp())
|
2021-04-01 16:51:02 +00:00
|
|
|
{
|
|
|
|
stream_error(result, EHOSTDOWN);
|
|
|
|
return;
|
|
|
|
}
|
2021-04-01 11:13:39 +00:00
|
|
|
std::string remotehost;
|
|
|
|
int remoteport;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto [h, p] = split_host_port(remote);
|
|
|
|
remotehost = h;
|
|
|
|
remoteport = p;
|
|
|
|
}
|
|
|
|
catch (int err)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, err);
|
|
|
|
return;
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
// TODO: make configurable (?)
|
|
|
|
std::string endpoint{"default"};
|
|
|
|
|
|
|
|
llarp::SockAddr localAddr;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (local)
|
|
|
|
localAddr = llarp::SockAddr{std::string{local}};
|
|
|
|
else
|
|
|
|
localAddr = llarp::SockAddr{"127.0.0.1:0"};
|
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, EINVAL);
|
|
|
|
return;
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
auto call = [&promise,
|
|
|
|
ctx,
|
2021-04-01 16:51:02 +00:00
|
|
|
result,
|
2021-04-01 11:13:39 +00:00
|
|
|
router = ctx->impl->router,
|
|
|
|
remotehost,
|
|
|
|
remoteport,
|
|
|
|
endpoint,
|
|
|
|
localAddr]() {
|
2021-04-02 16:08:06 +00:00
|
|
|
auto ep = ctx->endpoint();
|
2021-04-01 11:13:39 +00:00
|
|
|
if (ep == nullptr)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, ENOTSUP);
|
|
|
|
promise.set_value();
|
2021-04-01 11:13:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto* quic = ep->GetQUICTunnel();
|
|
|
|
if (quic == nullptr)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, ENOTSUP);
|
|
|
|
promise.set_value();
|
2021-04-01 11:13:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
try
|
|
|
|
{
|
|
|
|
auto [addr, id] = quic->open(
|
2021-04-01 16:51:02 +00:00
|
|
|
remotehost, remoteport, [](auto) {}, localAddr);
|
2021-04-01 11:13:39 +00:00
|
|
|
auto [host, port] = split_host_port(addr.toString());
|
|
|
|
ctx->outbound_stream(id);
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_okay(result, host, port, id);
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
std::cout << ex.what() << std::endl;
|
|
|
|
stream_error(result, ECANCELED);
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
catch (int err)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, err);
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
2021-04-01 16:51:02 +00:00
|
|
|
promise.set_value();
|
2021-04-01 11:13:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ctx->impl->CallSafe([call]() {
|
|
|
|
// we dont want the mainloop to die in case setting the value on the promise fails
|
|
|
|
try
|
|
|
|
{
|
|
|
|
call();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
auto future = promise.get_future();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (auto status = future.wait_for(std::chrono::seconds{10});
|
|
|
|
status == std::future_status::ready)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
future.get();
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, ETIMEDOUT);
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (std::exception& ex)
|
|
|
|
{
|
2021-04-01 16:51:02 +00:00
|
|
|
stream_error(result, EBADF);
|
2021-04-01 11:13:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
lokinet_inbound_stream(uint16_t port, struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
/// FIXME: delete pointer later
|
|
|
|
return lokinet_inbound_stream_filter(&accept_port, (void*)new std::uintptr_t{port}, ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
lokinet_inbound_stream_filter(
|
|
|
|
lokinet_stream_filter acceptFilter, void* user, struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
if (acceptFilter == nullptr)
|
|
|
|
{
|
|
|
|
acceptFilter = [](auto, auto, auto) { return 0; };
|
|
|
|
}
|
|
|
|
if (not ctx)
|
|
|
|
return -1;
|
|
|
|
std::promise<int> promise;
|
|
|
|
{
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
if (not ctx->impl->IsUp())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-04-02 16:08:06 +00:00
|
|
|
ctx->impl->CallSafe([ctx, acceptFilter, user, &promise]() {
|
|
|
|
auto ep = ctx->endpoint();
|
2021-04-01 11:13:39 +00:00
|
|
|
auto* quic = ep->GetQUICTunnel();
|
|
|
|
auto id = quic->listen(
|
|
|
|
[acceptFilter, user](auto remoteAddr, auto port) -> std::optional<llarp::SockAddr> {
|
|
|
|
std::string remote{remoteAddr};
|
|
|
|
if (auto result = acceptFilter(remote.c_str(), port, user))
|
|
|
|
{
|
|
|
|
if (result == -1)
|
|
|
|
{
|
|
|
|
throw std::invalid_argument{"rejected"};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return llarp::SockAddr{"127.0.0.1:" + std::to_string(port)};
|
|
|
|
return std::nullopt;
|
|
|
|
});
|
|
|
|
promise.set_value(id);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
auto ftr = promise.get_future();
|
|
|
|
auto id = ftr.get();
|
|
|
|
{
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
ctx->inbound_stream(id);
|
|
|
|
}
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
lokinet_close_stream(int stream_id, struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
if (not ctx)
|
|
|
|
return;
|
|
|
|
auto lock = ctx->acquire();
|
|
|
|
if (not ctx->impl->IsUp())
|
|
|
|
return;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::promise<void> promise;
|
|
|
|
bool inbound = ctx->streams.at(stream_id);
|
2021-04-02 16:08:06 +00:00
|
|
|
ctx->impl->CallSafe([stream_id, inbound, ctx, &promise]() {
|
|
|
|
auto ep = ctx->endpoint();
|
2021-04-01 11:13:39 +00:00
|
|
|
auto* quic = ep->GetQUICTunnel();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (inbound)
|
|
|
|
quic->forget(stream_id);
|
|
|
|
else
|
|
|
|
quic->close(stream_id);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{}
|
|
|
|
promise.set_value();
|
|
|
|
});
|
|
|
|
promise.get_future().get();
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{}
|
2021-03-08 19:19:20 +00:00
|
|
|
}
|
2021-04-12 11:39:07 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
lokinet_srv_lookup(
|
|
|
|
char* host,
|
|
|
|
char* service,
|
|
|
|
struct lokinet_srv_lookup_result* result,
|
|
|
|
struct lokinet_context* ctx)
|
|
|
|
{
|
|
|
|
if (result == nullptr or ctx == nullptr or host == nullptr or service == nullptr)
|
|
|
|
return -1;
|
|
|
|
// sanity check, if the caller has not free()'d internals yet free them
|
|
|
|
if (result->internal)
|
|
|
|
delete result->internal;
|
|
|
|
result->internal = new lokinet_srv_lookup_private{};
|
|
|
|
return result->internal->LookupSRV(host, service, ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
lokinet_for_each_srv_record(
|
|
|
|
struct lokinet_srv_lookup_result* result, lokinet_srv_record_iterator iter, void* user)
|
|
|
|
{
|
|
|
|
if (result and result->internal)
|
|
|
|
{
|
|
|
|
result->internal->IterateAll([iter, user](auto* result) { iter(result, user); });
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
iter(nullptr, user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
lokinet_srv_lookup_done(struct lokinet_srv_lookup_result* result)
|
|
|
|
{
|
|
|
|
if (result == nullptr or result->internal == nullptr)
|
|
|
|
return;
|
|
|
|
delete result->internal;
|
|
|
|
result->internal = nullptr;
|
|
|
|
}
|
2021-03-08 19:19:20 +00:00
|
|
|
}
|