// SPDX-License-Identifier: BSD-2-Clause // author: Max Kellermann #include "ToString.hxx" #include "Features.hxx" #include "SocketAddress.hxx" #include "IPv4Address.hxx" #include #include #include #ifdef _WIN32 #include #else #include #ifdef HAVE_TCP #include #endif #endif #ifdef HAVE_UN #include #endif #ifdef HAVE_UN static std::string LocalAddressToString(const struct sockaddr_un &s_un, size_t size) noexcept { const auto prefix_size = (size_t) ((struct sockaddr_un *)nullptr)->sun_path; assert(size >= prefix_size); size_t result_length = size - prefix_size; /* remove the trailing null terminator */ if (result_length > 0 && s_un.sun_path[result_length - 1] == 0) --result_length; if (result_length == 0) return "local"; std::string result(s_un.sun_path, result_length); /* replace all null bytes with '@'; this also handles abstract addresses (Linux specific) */ std::replace(result.begin(), result.end(), '\0', '@'); return result; } #endif std::string ToString(SocketAddress address) noexcept { #ifdef HAVE_UN if (address.GetFamily() == AF_LOCAL) /* return path of local socket */ return LocalAddressToString(address.CastTo(), address.GetSize()); #endif #if defined(HAVE_IPV6) && defined(IN6_IS_ADDR_V4MAPPED) IPv4Address ipv4_buffer; if (address.IsV4Mapped()) address = ipv4_buffer = address.UnmapV4(); #endif char host[NI_MAXHOST], serv[NI_MAXSERV]; int ret = getnameinfo(address.GetAddress(), address.GetSize(), host, sizeof(host), serv, sizeof(serv), NI_NUMERICHOST|NI_NUMERICSERV); if (ret != 0) return "unknown"; #ifdef HAVE_IPV6 if (std::strchr(host, ':') != nullptr) { std::string result("["); result.append(host); result.append("]:"); result.append(serv); return result; } #endif std::string result(host); result.push_back(':'); result.append(serv); return result; } std::string HostToString(SocketAddress address) noexcept { if (address.IsNull()) return "null"; #ifdef HAVE_UN if (address.GetFamily() == AF_LOCAL) /* return path of local socket */ return LocalAddressToString(address.CastTo(), address.GetSize()); #endif #if defined(HAVE_IPV6) && defined(IN6_IS_ADDR_V4MAPPED) IPv4Address ipv4_buffer; if (address.IsV4Mapped()) address = ipv4_buffer = address.UnmapV4(); #endif char host[NI_MAXHOST], serv[NI_MAXSERV]; int ret = getnameinfo(address.GetAddress(), address.GetSize(), host, sizeof(host), serv, sizeof(serv), NI_NUMERICHOST|NI_NUMERICSERV); if (ret != 0) return "unknown"; return host; }