2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "uint128.hpp"
|
|
|
|
#include "address_info.hpp"
|
|
|
|
#include "ip_address.hpp"
|
|
|
|
#include "net_int.hpp"
|
|
|
|
#include "net.h"
|
|
|
|
#include "ip_range.hpp"
|
|
|
|
#include <llarp/util/mem.hpp>
|
|
|
|
#include <llarp/util/bits.hpp>
|
2018-12-12 00:26:37 +00:00
|
|
|
|
|
|
|
#include <functional>
|
2019-07-30 23:42:13 +00:00
|
|
|
#include <cstdlib> // for itoa
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <vector>
|
2018-08-08 12:43:21 +00:00
|
|
|
|
2018-09-23 16:45:51 +00:00
|
|
|
// for addrinfo
|
2018-09-25 08:31:29 +00:00
|
|
|
#ifndef _WIN32
|
2018-09-23 16:45:51 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netdb.h>
|
2018-09-25 08:31:29 +00:00
|
|
|
#else
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
2018-11-19 07:55:19 +00:00
|
|
|
#include <wspiapi.h>
|
2018-10-01 02:08:03 +00:00
|
|
|
#define inet_aton(x, y) inet_pton(AF_INET, x, y)
|
2018-09-25 08:31:29 +00:00
|
|
|
#endif
|
2018-09-23 16:45:51 +00:00
|
|
|
|
2021-03-02 18:18:22 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
bool
|
|
|
|
operator==(const sockaddr& a, const sockaddr& b);
|
2018-05-18 13:17:58 +00:00
|
|
|
|
2018-09-04 12:41:25 +00:00
|
|
|
bool
|
|
|
|
operator==(const sockaddr_in& a, const sockaddr_in& b);
|
|
|
|
|
|
|
|
bool
|
|
|
|
operator==(const sockaddr_in6& a, const sockaddr_in6& b);
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
bool
|
|
|
|
operator<(const sockaddr_in6& a, const sockaddr_in6& b);
|
2018-05-18 13:54:15 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
bool
|
|
|
|
operator<(const in6_addr& a, const in6_addr& b);
|
2018-05-18 13:54:15 +00:00
|
|
|
|
2018-09-04 12:41:25 +00:00
|
|
|
bool
|
|
|
|
operator==(const in6_addr& a, const in6_addr& b);
|
|
|
|
|
2018-10-10 15:14:45 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2018-10-15 12:02:32 +00:00
|
|
|
bool
|
|
|
|
IsIPv4Bogon(const huint32_t& addr);
|
|
|
|
|
2022-05-20 17:10:04 +00:00
|
|
|
inline bool
|
|
|
|
IsIPv4Bogon(const nuint32_t& addr)
|
|
|
|
{
|
|
|
|
return IsIPv4Bogon(ToHost(addr));
|
|
|
|
}
|
|
|
|
|
2018-10-15 12:02:32 +00:00
|
|
|
bool
|
|
|
|
IsBogon(const in6_addr& addr);
|
|
|
|
|
2020-05-21 14:18:23 +00:00
|
|
|
bool
|
|
|
|
IsBogon(const huint128_t addr);
|
|
|
|
|
2018-10-15 12:02:32 +00:00
|
|
|
bool
|
|
|
|
IsBogonRange(const in6_addr& host, const in6_addr& mask);
|
|
|
|
|
2022-05-20 17:10:04 +00:00
|
|
|
/// get a sock addr we can use for all interfaces given our public address
|
|
|
|
namespace net
|
|
|
|
{
|
|
|
|
std::optional<SockAddr>
|
|
|
|
AllInterfaces(SockAddr pubaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// compat shim
|
|
|
|
// TODO: remove me
|
|
|
|
inline bool
|
|
|
|
AllInterfaces(int af, SockAddr& addr)
|
|
|
|
{
|
|
|
|
if (auto maybe = net::AllInterfaces(SockAddr{af == AF_INET ? "0.0.0.0" : "::"}))
|
|
|
|
{
|
|
|
|
addr = *maybe;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-02 18:25:42 +00:00
|
|
|
|
2018-07-27 00:21:57 +00:00
|
|
|
/// get first network interface with public address
|
|
|
|
bool
|
|
|
|
GetBestNetIF(std::string& ifname, int af = AF_INET);
|
|
|
|
|
2018-10-03 10:35:39 +00:00
|
|
|
/// look at adapter ranges and find a free one
|
2020-06-24 13:24:07 +00:00
|
|
|
std::optional<IPRange>
|
2019-07-03 14:32:51 +00:00
|
|
|
FindFreeRange();
|
2018-10-03 10:35:39 +00:00
|
|
|
|
|
|
|
/// look at adapter names and find a free one
|
2020-05-04 16:51:57 +00:00
|
|
|
std::optional<std::string>
|
2019-07-03 14:32:51 +00:00
|
|
|
FindFreeTun();
|
2018-10-03 10:35:39 +00:00
|
|
|
|
2018-09-02 18:25:42 +00:00
|
|
|
/// get network interface address for network interface with ifname
|
2021-02-22 15:01:05 +00:00
|
|
|
std::optional<SockAddr>
|
2021-02-17 11:37:21 +00:00
|
|
|
GetInterfaceAddr(const std::string& ifname, int af = AF_INET);
|
2018-09-02 18:25:42 +00:00
|
|
|
|
2021-02-16 15:59:18 +00:00
|
|
|
/// get an interface's ip6 address
|
|
|
|
std::optional<huint128_t>
|
2021-02-17 11:37:21 +00:00
|
|
|
GetInterfaceIPv6Address(std::string ifname);
|
2021-02-16 15:59:18 +00:00
|
|
|
|
2021-02-16 20:01:07 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
namespace net
|
|
|
|
{
|
|
|
|
std::optional<int>
|
2021-02-17 11:37:21 +00:00
|
|
|
GetInterfaceIndex(huint32_t ip);
|
2021-02-16 20:01:07 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-05-20 17:10:04 +00:00
|
|
|
/// return true if we have a network interface with this ip
|
|
|
|
bool
|
|
|
|
HasInterfaceAddress(std::variant<nuint32_t, nuint128_t> ip);
|
|
|
|
|
2018-06-20 17:45:44 +00:00
|
|
|
} // namespace llarp
|