2017-10-20 17:59:44 +00:00
|
|
|
#include <Common/isLocalAddress.h>
|
|
|
|
|
2021-05-17 15:31:44 +00:00
|
|
|
#include <ifaddrs.h>
|
2017-10-20 17:59:44 +00:00
|
|
|
#include <cstring>
|
2021-05-17 16:29:11 +00:00
|
|
|
#include <optional>
|
2020-09-15 09:55:57 +00:00
|
|
|
#include <common/types.h>
|
2021-05-17 15:31:44 +00:00
|
|
|
#include <Common/Exception.h>
|
|
|
|
#include <Poco/Net/IPAddress.h>
|
2016-06-07 08:23:15 +00:00
|
|
|
#include <Poco/Net/SocketAddress.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2021-05-17 15:31:44 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int SYSTEM_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace
|
2016-06-07 08:23:15 +00:00
|
|
|
{
|
|
|
|
|
2021-05-17 15:31:44 +00:00
|
|
|
struct NetworkInterfaces
|
|
|
|
{
|
2021-05-19 22:16:11 +00:00
|
|
|
const ifaddrs * ifaddr;
|
|
|
|
|
2021-05-17 15:31:44 +00:00
|
|
|
NetworkInterfaces()
|
|
|
|
{
|
|
|
|
if (getifaddrs(&ifaddr) == -1)
|
|
|
|
{
|
|
|
|
throwFromErrno("Cannot getifaddrs", ErrorCodes::SYSTEM_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasAddress(const Poco::Net::IPAddress & address) const
|
|
|
|
{
|
2021-05-19 22:16:11 +00:00
|
|
|
const ifaddrs * iface;
|
2021-05-17 15:31:44 +00:00
|
|
|
for (iface = ifaddr; iface != nullptr; iface = iface->ifa_next)
|
|
|
|
{
|
2021-05-19 18:43:17 +00:00
|
|
|
/// Point-to-point (VPN) addresses may have NULL ifa_addr
|
|
|
|
if (!iface->ifa_addr)
|
|
|
|
continue;
|
|
|
|
|
2021-05-17 16:18:38 +00:00
|
|
|
auto family = iface->ifa_addr->sa_family;
|
2021-05-17 15:31:44 +00:00
|
|
|
std::optional<Poco::Net::IPAddress> interface_address;
|
|
|
|
switch (family)
|
|
|
|
{
|
|
|
|
/// We interested only in IP-adresses
|
|
|
|
case AF_INET:
|
|
|
|
{
|
2021-05-17 16:18:38 +00:00
|
|
|
interface_address.emplace(*(iface->ifa_addr));
|
2021-05-17 15:31:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AF_INET6:
|
2017-10-13 19:13:41 +00:00
|
|
|
{
|
2021-05-19 22:16:11 +00:00
|
|
|
interface_address.emplace(&reinterpret_cast<const struct sockaddr_in6 *>(iface->ifa_addr)->sin6_addr, sizeof(struct in6_addr));
|
2021-05-17 15:31:44 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
2021-05-17 15:32:34 +00:00
|
|
|
|
2021-05-17 16:29:11 +00:00
|
|
|
/** Compare the addresses without taking into account `scope`.
|
|
|
|
* Theoretically, this may not be correct - depends on `route` setting
|
|
|
|
* - through which interface we will actually access the specified address.
|
|
|
|
*/
|
2021-05-17 15:31:44 +00:00
|
|
|
if (interface_address->length() == address.length()
|
|
|
|
&& 0 == memcmp(interface_address->addr(), address.addr(), address.length()))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
~NetworkInterfaces()
|
|
|
|
{
|
|
|
|
freeifaddrs(ifaddr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool isLocalAddress(const Poco::Net::IPAddress & address)
|
|
|
|
{
|
|
|
|
NetworkInterfaces interfaces;
|
|
|
|
return interfaces.hasAddress(address);
|
2017-10-13 19:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isLocalAddress(const Poco::Net::SocketAddress & address, UInt16 clickhouse_port)
|
|
|
|
{
|
2018-03-29 20:21:01 +00:00
|
|
|
return clickhouse_port == address.port() && isLocalAddress(address.host());
|
2017-11-14 13:13:24 +00:00
|
|
|
}
|
|
|
|
|
2016-06-07 08:23:15 +00:00
|
|
|
|
2017-11-14 13:13:24 +00:00
|
|
|
size_t getHostNameDifference(const std::string & local_hostname, const std::string & host)
|
|
|
|
{
|
|
|
|
size_t hostname_difference = 0;
|
|
|
|
for (size_t i = 0; i < std::min(local_hostname.length(), host.length()); ++i)
|
2018-01-23 19:49:56 +00:00
|
|
|
if (local_hostname[i] != host[i])
|
|
|
|
++hostname_difference;
|
2017-11-14 13:13:24 +00:00
|
|
|
return hostname_difference;
|
2016-06-07 08:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|