2022-07-28 16:07:38 +00:00
|
|
|
#include "net.hpp"
|
|
|
|
|
|
|
|
#include "net_if.hpp"
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <llarp/constants/platform.hpp>
|
|
|
|
|
|
|
|
#include "ip.hpp"
|
|
|
|
#include "ip_range.hpp"
|
|
|
|
#include <llarp/util/logging.hpp>
|
|
|
|
#include <llarp/util/str.hpp>
|
|
|
|
|
|
|
|
#include <iphlpapi.h>
|
|
|
|
#include <llarp/win32/exception.hpp>
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <list>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace llarp::net
|
|
|
|
{
|
|
|
|
class Platform_Impl : public Platform
|
|
|
|
{
|
|
|
|
/// visit all adapters (not addresses). windows serves net info per adapter unlink posix which
|
|
|
|
/// gives a list of all distinct addresses.
|
|
|
|
template <typename Visit_t>
|
|
|
|
void
|
|
|
|
iter_adapters(Visit_t&& visit, int af = AF_UNSPEC) const
|
|
|
|
{
|
2022-09-15 03:01:07 +00:00
|
|
|
ULONG err;
|
|
|
|
ULONG sz = 15000; // MS-recommended so that it "never fails", but often fails with a too
|
|
|
|
// large error.
|
|
|
|
std::unique_ptr<byte_t[]> ptr;
|
|
|
|
PIP_ADAPTER_ADDRESSES addr;
|
|
|
|
int tries = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ptr = std::make_unique<byte_t[]>(sz);
|
|
|
|
addr = reinterpret_cast<PIP_ADAPTER_ADDRESSES>(ptr.get());
|
|
|
|
err = GetAdaptersAddresses(
|
|
|
|
af, GAA_FLAG_INCLUDE_GATEWAYS | GAA_FLAG_INCLUDE_PREFIX, nullptr, addr, &sz);
|
|
|
|
} while (err == ERROR_BUFFER_OVERFLOW and ++tries < 4);
|
2022-07-28 16:07:38 +00:00
|
|
|
|
2022-09-15 03:01:07 +00:00
|
|
|
if (err != ERROR_SUCCESS)
|
2022-07-28 16:07:38 +00:00
|
|
|
throw llarp::win32::error{err, "GetAdaptersAddresses()"};
|
|
|
|
|
2022-09-15 03:04:32 +00:00
|
|
|
for (; addr; addr = addr->Next)
|
2022-07-28 16:07:38 +00:00
|
|
|
visit(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename adapter_t>
|
|
|
|
bool
|
|
|
|
adapter_has_ip(adapter_t* a, ipaddr_t ip) const
|
|
|
|
{
|
2022-09-15 03:04:32 +00:00
|
|
|
for (auto* addr = a->FirstUnicastAddress; addr; addr = addr->Next)
|
2022-07-28 16:07:38 +00:00
|
|
|
{
|
|
|
|
SockAddr saddr{*addr->Address.lpSockaddr};
|
|
|
|
LogDebug(fmt::format("'{}' has address '{}'", a->AdapterName, saddr));
|
|
|
|
if (saddr.getIP() == ip)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename adapter_t>
|
|
|
|
bool
|
|
|
|
adapter_has_fam(adapter_t* a, int af) const
|
|
|
|
{
|
2022-09-15 03:04:32 +00:00
|
|
|
for (auto* addr = a->FirstUnicastAddress; addr; addr = addr->Next)
|
2022-07-28 16:07:38 +00:00
|
|
|
{
|
|
|
|
SockAddr saddr{*addr->Address.lpSockaddr};
|
|
|
|
if (saddr.Family() == af)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::optional<int>
|
|
|
|
GetInterfaceIndex(ipaddr_t ip) const override
|
|
|
|
{
|
|
|
|
std::optional<int> found;
|
|
|
|
int af{AF_INET};
|
|
|
|
if (std::holds_alternative<ipv6addr_t>(ip))
|
|
|
|
af = AF_INET6;
|
|
|
|
iter_adapters(
|
|
|
|
[&found, ip, this](auto* adapter) {
|
|
|
|
if (found)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LogDebug(fmt::format(
|
|
|
|
"visit adapter looking for '{}': '{}' idx={}",
|
|
|
|
ip,
|
|
|
|
adapter->AdapterName,
|
|
|
|
adapter->IfIndex));
|
|
|
|
if (adapter_has_ip(adapter, ip))
|
|
|
|
{
|
|
|
|
found = adapter->IfIndex;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
af);
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<llarp::SockAddr>
|
|
|
|
GetInterfaceAddr(std::string_view name, int af) const override
|
|
|
|
{
|
|
|
|
std::optional<SockAddr> found;
|
|
|
|
iter_adapters([name = std::string{name}, af, &found, this](auto* a) {
|
|
|
|
if (found)
|
|
|
|
return;
|
|
|
|
if (std::string{a->AdapterName} != name)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (adapter_has_fam(a, af))
|
|
|
|
found = SockAddr{*a->FirstUnicastAddress->Address.lpSockaddr};
|
|
|
|
});
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<SockAddr>
|
|
|
|
AllInterfaces(SockAddr fallback) const override
|
|
|
|
{
|
|
|
|
// windows seems to not give a shit about source address
|
|
|
|
return fallback.isIPv6() ? SockAddr{"[::]"} : SockAddr{"0.0.0.0"};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::string>
|
|
|
|
FindFreeTun() const override
|
|
|
|
{
|
|
|
|
return "lokitun0";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::string>
|
|
|
|
GetBestNetIF(int) const override
|
|
|
|
{
|
|
|
|
// TODO: implement me ?
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<IPRange>
|
|
|
|
FindFreeRange() const override
|
|
|
|
{
|
|
|
|
std::list<IPRange> currentRanges;
|
|
|
|
iter_adapters([¤tRanges](auto* i) {
|
2022-09-15 03:04:32 +00:00
|
|
|
for (auto* addr = i->FirstUnicastAddress; addr; addr = addr->Next)
|
2022-07-28 16:07:38 +00:00
|
|
|
{
|
|
|
|
SockAddr saddr{*addr->Address.lpSockaddr};
|
|
|
|
currentRanges.emplace_back(
|
|
|
|
saddr.asIPv6(),
|
|
|
|
ipaddr_netmask_bits(addr->OnLinkPrefixLength, addr->Address.lpSockaddr->sa_family));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-10-06 18:45:42 +00:00
|
|
|
return IPRange::FindPrivateRange(currentRanges);
|
2022-07-28 16:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
LoopbackInterfaceName() const override
|
|
|
|
{
|
|
|
|
// todo: implement me? does windows even have a loopback?
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
HasInterfaceAddress(ipaddr_t ip) const override
|
|
|
|
{
|
|
|
|
return GetInterfaceIndex(ip) != std::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<InterfaceInfo>
|
|
|
|
AllNetworkInterfaces() const override
|
|
|
|
{
|
|
|
|
std::vector<InterfaceInfo> all;
|
2022-10-06 19:03:49 +00:00
|
|
|
for (int af : {AF_INET, AF_INET6})
|
|
|
|
iter_adapters(
|
|
|
|
[&all](auto* a) {
|
|
|
|
auto& cur = all.emplace_back();
|
|
|
|
cur.index = a->IfIndex;
|
|
|
|
cur.name = a->AdapterName;
|
|
|
|
for (auto* addr = a->FirstUnicastAddress; addr; addr = addr->Next)
|
|
|
|
{
|
|
|
|
SockAddr saddr{*addr->Address.lpSockaddr};
|
|
|
|
cur.addrs.emplace_back(
|
|
|
|
saddr.asIPv6(),
|
|
|
|
ipaddr_netmask_bits(
|
|
|
|
addr->OnLinkPrefixLength, addr->Address.lpSockaddr->sa_family));
|
|
|
|
}
|
|
|
|
if (auto* addr = a->FirstGatewayAddress)
|
|
|
|
{
|
|
|
|
SockAddr gw{*addr->Address.lpSockaddr};
|
|
|
|
cur.gateway = gw.getIP();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
af);
|
2022-07-28 16:07:38 +00:00
|
|
|
return all;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const Platform_Impl g_plat{};
|
|
|
|
|
|
|
|
const Platform*
|
|
|
|
Platform::Default_ptr()
|
|
|
|
{
|
|
|
|
return &g_plat;
|
|
|
|
}
|
|
|
|
} // namespace llarp::net
|