/** * Digital Voice Modem - Host Software * GPLv2 Open Source. Use is subject to license terms. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * @package DVM / Host Software * */ // // Based on code from the MMDVMHost project. (https://github.com/g4klx/MMDVMHost) // Licensed under the GPLv2 License (https://opensource.org/licenses/GPL-2.0) // /* * Copyright (C) 2006-2016,2020 by Jonathan Naylor G4KLX * Copyright (C) 2017-2020 by Bryan Biedenkapp N2PLL * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "Defines.h" #include "network/UDPSocket.h" #include "Log.h" #include #if !defined(_WIN32) && !defined(_WIN64) #include #include #endif using namespace network; // --------------------------------------------------------------------------- // Public Class Members // --------------------------------------------------------------------------- /// /// Initializes a new instance of the UDPSocket class. /// /// Hostname/IP address to connect to. /// Port number. UDPSocket::UDPSocket(const std::string& address, uint16_t port) : m_address_save(address), m_port_save(port), m_counter(0U) { for (int i = 0; i < UDP_SOCKET_MAX; i++) { m_address[i] = ""; m_port[i] = 0U; m_af[i] = 0U; m_fd[i] = -1; } } /// /// Initializes a new instance of the UDPSocket class. /// /// Port number. UDPSocket::UDPSocket(uint16_t port) : m_address_save(), m_port_save(port), m_counter(0U) { for (int i = 0; i < UDP_SOCKET_MAX; i++) { m_address[i] = ""; m_port[i] = 0U; m_af[i] = 0U; m_fd[i] = -1; } } /// /// Finalizes a instance of the UDPSocket class. /// UDPSocket::~UDPSocket() { /* stub */ } /// /// Opens UDP socket connection. /// /// /// True, if UDP socket is opened, otherwise false. bool UDPSocket::open(const sockaddr_storage& address) { return open(address.ss_family); } /// /// Opens UDP socket connection. /// /// /// True, if UDP socket is opened, otherwise false. bool UDPSocket::open(uint32_t af) { return open(0, af, m_address_save, m_port_save); } /// /// Opens UDP socket connection. /// /// /// /// /// /// True, if UDP socket is opened, otherwise false. bool UDPSocket::open(const uint32_t index, const uint32_t af, const std::string& address, const uint16_t port) { sockaddr_storage addr; uint32_t addrlen; struct addrinfo hints; ::memset(&hints, 0, sizeof(hints)); hints.ai_flags = AI_PASSIVE; hints.ai_family = af; /* to determine protocol family, call lookup() first. */ int err = lookup(address, port, addr, addrlen, hints); if (err != 0) { LogError(LOG_NET, "The local address is invalid - %s", address.c_str()); return false; } close(index); int fd = ::socket(addr.ss_family, SOCK_DGRAM, 0); if (fd < 0) { #if defined(_WIN32) || defined(_WIN64) LogError(LOG_NET, "Cannot create the UDP socket, err: %lu", ::GetLastError()); #else LogError(LOG_NET, "Cannot create the UDP socket, err: %d", errno); #endif return false; } m_address[index] = address; m_port[index] = port; m_af[index] = addr.ss_family; m_fd[index] = fd; if (port > 0U) { int reuse = 1; if (::setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char*)& reuse, sizeof(reuse)) == -1) { #if defined(_WIN32) || defined(_WIN64) LogError(LOG_NET, "Cannot set the UDP socket option, err: %lu", ::GetLastError()); #else LogError(LOG_NET, "Cannot set the UDP socket option, err: %d", errno); #endif return false; } if (::bind(fd, (sockaddr*)& addr, addrlen) == -1) { #if defined(_WIN32) || defined(_WIN64) LogError(LOG_NET, "Cannot bind the UDP address, err: %lu", ::GetLastError()); #else LogError(LOG_NET, "Cannot bind the UDP address, err: %d", errno); #endif return false; } LogInfoEx(LOG_NET, "Opening UDP port on %u", port); } return true; } /// /// Read data from the UDP socket. /// /// Buffer to read data into. /// Length of data to read. /// IP address to read data from. /// /// Actual length of data read from remote UDP socket. int UDPSocket::read(uint8_t* buffer, uint32_t length, sockaddr_storage& address, uint32_t& addrLen) { assert(buffer != NULL); assert(length > 0U); // Check that the readfrom() won't block int i, n; struct pollfd pfd[UDP_SOCKET_MAX]; for (i = n = 0; i < UDP_SOCKET_MAX; i++) { if (m_fd[i] >= 0) { pfd[n].fd = m_fd[i]; pfd[n].events = POLLIN; n++; } } // no socket descriptor to receive if (n == 0) return 0; // Return immediately #if defined(_WIN32) || defined(_WIN64) int ret = WSAPoll(pfd, n, 0); #else int ret = ::poll(pfd, n, 0); #endif if (ret < 0) { #if defined(_WIN32) || defined(_WIN64) LogError(LOG_NET, "Error returned from UDP poll, err: %lu", ::GetLastError()); #else LogError(LOG_NET, "Error returned from UDP poll, err: %d", errno); #endif return -1; } int index; for (i = 0; i < n; i++) { // round robin index = (i + m_counter) % n; if (pfd[index].revents & POLLIN) break; } if (i == n) return 0; #if defined(_WIN32) || defined(_WIN64) int size = sizeof(sockaddr_storage); #else socklen_t size = sizeof(sockaddr_storage); #endif #if defined(_WIN32) || defined(_WIN64) int len = ::recvfrom(pfd[index].fd, (char*)buffer, length, 0, (sockaddr*)& address, &size); #else ssize_t len = ::recvfrom(pfd[index].fd, (char*)buffer, length, 0, (sockaddr*)& address, &size); #endif if (len <= 0) { #if defined(_WIN32) || defined(_WIN64) LogError(LOG_NET, "Error returned from recvfrom, err: %lu", ::GetLastError()); #else LogError(LOG_NET, "Error returned from recvfrom, err: %d", errno); if (len == -1 && errno == ENOTSOCK) { LogMessage(LOG_NET, "Re-opening UDP port on %u", m_port[index]); close(); open(); } #endif return -1; } m_counter++; addrLen = size; return len; } /// /// Write data to the UDP socket. /// /// Buffer containing data to write to socket. /// Length of data to write. /// IP address to write data to. /// /// Actual length of data written to remote UDP socket. bool UDPSocket::write(const uint8_t* buffer, uint32_t length, const sockaddr_storage& address, uint32_t addrLen) { assert(buffer != NULL); assert(length > 0U); bool result = false; for (int i = 0; i < UDP_SOCKET_MAX; i++) { if (m_fd[i] < 0 || m_af[i] != address.ss_family) continue; #if defined(_WIN32) || defined(_WIN64) int ret = ::sendto(m_fd[i], (char*)buffer, length, 0, (sockaddr*)& address, addrLen); #else ssize_t ret = ::sendto(m_fd[i], (char*)buffer, length, 0, (sockaddr*)& address, addrLen); #endif if (ret < 0) { #if defined(_WIN32) || defined(_WIN64) LogError(LOG_NET, "Error returned from sendto, err: %lu", ::GetLastError()); #else LogError(LOG_NET, "Error returned from sendto, err: %d", errno); #endif } else { #if defined(_WIN32) || defined(_WIN64) if (ret == int(length)) result = true; #else if (ret == ssize_t(length)) result = true; #endif } } return result; } /// /// Closes the UDP socket connection. /// void UDPSocket::close() { for (int i = 0; i < UDP_SOCKET_MAX; i++) close(i); } /// /// Closes the UDP socket connection. /// /// void UDPSocket::close(const uint32_t index) { if ((index < UDP_SOCKET_MAX) && (m_fd[index] >= 0)) { #if defined(_WIN32) || defined(_WIN64) ::closesocket(m_fd[index]); #else ::close(m_fd[index]); #endif m_fd[index] = -1; } } /// /// /// void UDPSocket::startup() { #if defined(_WIN32) || defined(_WIN64) WSAData data; int wsaRet = ::WSAStartup(MAKEWORD(2, 2), &data); if (wsaRet != 0) { LogError(LOG_NET, "Error from WSAStartup"); } #endif } /// /// /// void UDPSocket::shutdown() { #if defined(_WIN32) || defined(_WIN64) ::WSACleanup(); #endif } /// /// Helper to lookup a hostname and resolve it to an IP address. /// /// String containing hostname to resolve. /// Numeric port number of service to resolve. /// Socket address structure. /// /// Zero if no error during lookup, otherwise error. int UDPSocket::lookup(const std::string& hostname, uint16_t port, sockaddr_storage& addr, uint32_t& addrLen) { struct addrinfo hints; ::memset(&hints, 0, sizeof(hints)); return lookup(hostname, port, addr, addrLen, hints); } /// /// Helper to lookup a hostname and resolve it to an IP address. /// /// String containing hostname to resolve. /// Numeric port number of service to resolve. /// Socket address structure. /// /// /// Zero if no error during lookup, otherwise error. int UDPSocket::lookup(const std::string& hostname, uint16_t port, sockaddr_storage& addr, uint32_t& addrLen, struct addrinfo& hints) { std::string portstr = std::to_string(port); struct addrinfo* res; // port is always digits, no needs to lookup service hints.ai_flags |= AI_NUMERICSERV; int err = getaddrinfo(hostname.empty() ? NULL : hostname.c_str(), portstr.c_str(), &hints, &res); if (err != 0) { sockaddr_in* paddr = (sockaddr_in*)& addr; ::memset(paddr, 0x00U, addrLen = sizeof(sockaddr_in)); paddr->sin_family = AF_INET; paddr->sin_port = htons(port); paddr->sin_addr.s_addr = htonl(INADDR_NONE); LogError(LOG_NET, "Cannot find address for host %s", hostname.c_str()); return err; } ::memcpy(&addr, res->ai_addr, addrLen = res->ai_addrlen); freeaddrinfo(res); return 0; } /// /// /// /// /// /// /// bool UDPSocket::match(const sockaddr_storage& addr1, const sockaddr_storage& addr2, IPMATCHTYPE type) { if (addr1.ss_family != addr2.ss_family) return false; if (type == IMT_ADDRESS_AND_PORT) { switch (addr1.ss_family) { case AF_INET: struct sockaddr_in* in_1, * in_2; in_1 = (struct sockaddr_in*) & addr1; in_2 = (struct sockaddr_in*) & addr2; return (in_1->sin_addr.s_addr == in_2->sin_addr.s_addr) && (in_1->sin_port == in_2->sin_port); case AF_INET6: struct sockaddr_in6* in6_1, *in6_2; in6_1 = (struct sockaddr_in6*) & addr1; in6_2 = (struct sockaddr_in6*) & addr2; return IN6_ARE_ADDR_EQUAL(&in6_1->sin6_addr, &in6_2->sin6_addr) && (in6_1->sin6_port == in6_2->sin6_port); default: return false; } } else if (type == IMT_ADDRESS_ONLY) { switch (addr1.ss_family) { case AF_INET: struct sockaddr_in* in_1, * in_2; in_1 = (struct sockaddr_in*) & addr1; in_2 = (struct sockaddr_in*) & addr2; return in_1->sin_addr.s_addr == in_2->sin_addr.s_addr; case AF_INET6: struct sockaddr_in6* in6_1, * in6_2; in6_1 = (struct sockaddr_in6*) & addr1; in6_2 = (struct sockaddr_in6*) & addr2; return IN6_ARE_ADDR_EQUAL(&in6_1->sin6_addr, &in6_2->sin6_addr); default: return false; } } else { return false; } } /// /// /// /// /// std::string UDPSocket::address(const sockaddr_storage& addr) { std::string address = std::string(); char str[INET_ADDRSTRLEN]; switch (addr.ss_family) { case AF_INET: { struct sockaddr_in* in; in = (struct sockaddr_in*) & addr; inet_ntop(AF_INET, &(in->sin_addr), str, INET_ADDRSTRLEN); address = std::string(str); } break; case AF_INET6: { struct sockaddr_in6* in6; in6 = (struct sockaddr_in6*) & addr; inet_ntop(AF_INET6, &(in6->sin6_addr), str, INET_ADDRSTRLEN); address = std::string(str); } break; default: break; } return address; } /// /// /// /// /// bool UDPSocket::isNone(const sockaddr_storage& addr) { struct sockaddr_in* in = (struct sockaddr_in*) & addr; return ((addr.ss_family == AF_INET) && (in->sin_addr.s_addr == htonl(INADDR_NONE))); }