mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
871c3e3281
* wintun vpn platform for windows * bundle config snippets into nsis installer for exit node, keyfile persisting, reduced hops mode. * use wintun for vpn platform * isolate all windows platform specific code into their own compilation units and libraries * split up internal libraries into more specific components * rename liblokinet.a target to liblokinet-amalgum.a to elimiate ambiguity with liblokinet.so * DNS platform for win32 * rename llarp/ev/ev_libuv.{c,h}pp to llarp/ev/libuv.{c,h}pp as the old name was idiotic * split up net platform into win32 and posix specific compilation units * rename lokinet_init.c to easter_eggs.cpp as that is what they are for and it does not need to be a c compilation target * add cmake option STRIP_SYMBOLS for seperating out debug symbols for windows builds * intercept dns traffic on all interfaces on windows using windivert and feed it into lokinet
132 lines
5.2 KiB
C++
132 lines
5.2 KiB
C++
#include <common.hpp>
|
|
#include <llarp/config/config.hpp>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
namespace llarp
|
|
{
|
|
void
|
|
in_addr_set(in_addr* addr, const char* str)
|
|
{
|
|
inet_aton(str, addr);
|
|
}
|
|
|
|
void
|
|
Config_Init(py::module& mod)
|
|
{
|
|
using Config_ptr = std::shared_ptr<Config>;
|
|
py::class_<Config, Config_ptr>(mod, "Config")
|
|
.def(py::init<std::string>())
|
|
.def_readwrite("router", &Config::router)
|
|
.def_readwrite("network", &Config::network)
|
|
.def_readwrite("connect", &Config::connect)
|
|
.def_readwrite("links", &Config::links)
|
|
.def_readwrite("api", &Config::api)
|
|
.def_readwrite("lokid", &Config::lokid)
|
|
.def_readwrite("bootstrap", &Config::bootstrap)
|
|
.def_readwrite("logging", &Config::logging)
|
|
.def_readwrite("paths", &Config::paths)
|
|
.def("Load", &Config::Load);
|
|
|
|
py::class_<RouterConfig>(mod, "RouterConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("minConnectedRouters", &RouterConfig::m_minConnectedRouters)
|
|
.def_readwrite("maxConnectedRouters", &RouterConfig::m_maxConnectedRouters)
|
|
.def_readwrite("netid", &RouterConfig::m_netId)
|
|
.def_readwrite("nickname", &RouterConfig::m_nickname)
|
|
.def_property(
|
|
"dataDir",
|
|
[](RouterConfig& self) { return self.m_dataDir.c_str(); },
|
|
[](RouterConfig& self, std::string dir) { self.m_dataDir = dir; })
|
|
.def_readwrite("blockBogons", &RouterConfig::m_blockBogons)
|
|
.def_readwrite("workerThreads", &RouterConfig::m_workerThreads)
|
|
.def_readwrite("numNetThreads", &RouterConfig::m_numNetThreads)
|
|
.def_readwrite("JobQueueSize", &RouterConfig::m_JobQueueSize);
|
|
|
|
py::class_<PeerSelectionConfig>(mod, "PeerSelectionConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("netmask", &PeerSelectionConfig::m_UniqueHopsNetmaskSize);
|
|
|
|
py::class_<NetworkConfig>(mod, "NetworkConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("enableProfiling", &NetworkConfig::m_enableProfiling)
|
|
.def_readwrite("endpointType", &NetworkConfig::m_endpointType)
|
|
.def_readwrite("keyfile", &NetworkConfig::m_keyfile)
|
|
.def_readwrite("endpointType", &NetworkConfig::m_endpointType)
|
|
.def_readwrite("reachable", &NetworkConfig::m_reachable)
|
|
.def_readwrite("hops", &NetworkConfig::m_Hops)
|
|
.def_readwrite("paths", &NetworkConfig::m_Paths)
|
|
.def_readwrite("snodeBlacklist", &NetworkConfig::m_snodeBlacklist)
|
|
.def_readwrite("mapAddr", &NetworkConfig::m_mapAddrs)
|
|
.def_readwrite("strictConnect", &NetworkConfig::m_strictConnect);
|
|
|
|
py::class_<ConnectConfig>(mod, "ConnectConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("routers", &ConnectConfig::routers);
|
|
|
|
py::class_<DnsConfig>(mod, "DnsConfig").def(py::init<>());
|
|
|
|
py::class_<LinksConfig>(mod, "LinksConfig")
|
|
.def(py::init<>())
|
|
.def(
|
|
"addOutboundLink",
|
|
[](LinksConfig& self, std::string _addr) {
|
|
self.OutboundLinks.emplace_back(std::move(_addr));
|
|
})
|
|
.def("addInboundLink", [](LinksConfig& self, std::string _addr) {
|
|
self.InboundListenAddrs.emplace_back(std::move(_addr));
|
|
});
|
|
|
|
py::class_<ApiConfig>(mod, "ApiConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("enableRPCServer", &ApiConfig::m_enableRPCServer)
|
|
.def_readwrite("rpcBindAddr", &ApiConfig::m_rpcBindAddr);
|
|
|
|
py::class_<LokidConfig>(mod, "LokidConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("whitelistRouters", &LokidConfig::whitelistRouters)
|
|
.def_readwrite("ident_keyfile", &LokidConfig::ident_keyfile)
|
|
.def_property(
|
|
"lokidRPCAddr",
|
|
[](LokidConfig& self) { return self.lokidRPCAddr.full_address().c_str(); },
|
|
[](LokidConfig& self, std::string arg) { self.lokidRPCAddr = oxenmq::address(arg); });
|
|
|
|
py::class_<BootstrapConfig>(mod, "BootstrapConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("seednode", &BootstrapConfig::seednode)
|
|
.def_property(
|
|
"routers",
|
|
[](BootstrapConfig& self) {
|
|
std::vector<std::string> args;
|
|
for (const auto& rc : self.routers)
|
|
{
|
|
args.emplace_back(rc.pubkey.ToString());
|
|
}
|
|
return args;
|
|
},
|
|
[](BootstrapConfig& self, std::vector<std::string> args) {
|
|
self.routers.clear();
|
|
for (const auto& arg : args)
|
|
{
|
|
RouterContact rc{};
|
|
if (rc.Read(arg))
|
|
self.routers.emplace(std::move(rc));
|
|
else
|
|
throw std::invalid_argument{"cannot read rc from " + arg};
|
|
}
|
|
});
|
|
|
|
py::class_<LoggingConfig>(mod, "LoggingConfig")
|
|
.def(py::init<>())
|
|
.def_readwrite("m_logType", &LoggingConfig::m_logType)
|
|
.def_readwrite("m_logFile", &LoggingConfig::m_logFile);
|
|
|
|
py::class_<sockaddr_in>(mod, "sockaddr_in")
|
|
.def_readwrite("sin_family", &sockaddr_in::sin_family)
|
|
.def_readwrite("sin_port", &sockaddr_in::sin_port)
|
|
.def_readwrite("sin_addr", &sockaddr_in::sin_addr);
|
|
|
|
py::class_<in_addr>(mod, "in_addr").def("set", &in_addr_set);
|
|
}
|
|
} // namespace llarp
|