2018-03-13 18:16:48 -04:00
|
|
|
/*
|
2020-09-03 10:12:03 -04:00
|
|
|
* Copyright (C) 2006-2016,2020 by Jonathan Naylor G4KLX
|
2018-03-13 18:16:48 -04:00
|
|
|
*
|
|
|
|
* 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 "UDPSocket.h"
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
#if !defined(_WIN32) && !defined(_WIN64)
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstring>
|
|
|
|
#endif
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
#if defined(HAVE_LOG_H)
|
|
|
|
#include "Log.h"
|
|
|
|
#else
|
|
|
|
#define LogError(fmt, ...) ::fprintf(stderr, fmt "\n", ## __VA_ARGS__)
|
|
|
|
#define LogInfo(fmt, ...) ::fprintf(stderr, fmt "\n", ## __VA_ARGS__)
|
|
|
|
#endif
|
2018-03-13 18:16:48 -04:00
|
|
|
|
|
|
|
CUDPSocket::CUDPSocket(const std::string& address, unsigned int port) :
|
2020-09-06 08:45:06 -04:00
|
|
|
m_address_save(address),
|
|
|
|
m_port_save(port),
|
|
|
|
m_counter(0U)
|
2018-03-13 18:16:48 -04:00
|
|
|
{
|
2020-09-06 08:45:06 -04:00
|
|
|
for (int i = 0; i < UDP_SOCKET_MAX; i++) {
|
|
|
|
m_address[i] = "";
|
|
|
|
m_port[i] = 0U;
|
|
|
|
m_af[i] = 0U;
|
|
|
|
m_fd[i] = -1;
|
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
CUDPSocket::CUDPSocket(unsigned int port) :
|
2020-09-06 08:45:06 -04:00
|
|
|
m_address_save(),
|
|
|
|
m_port_save(port),
|
|
|
|
m_counter(0U)
|
2018-03-13 18:16:48 -04:00
|
|
|
{
|
2020-09-06 08:45:06 -04:00
|
|
|
for (int i = 0; i < UDP_SOCKET_MAX; i++) {
|
|
|
|
m_address[i] = "";
|
|
|
|
m_port[i] = 0U;
|
|
|
|
m_af[i] = 0U;
|
|
|
|
m_fd[i] = -1;
|
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
CUDPSocket::~CUDPSocket()
|
|
|
|
{
|
2020-09-20 16:43:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CUDPSocket::startup()
|
|
|
|
{
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
WSAData data;
|
|
|
|
int wsaRet = ::WSAStartup(MAKEWORD(2, 2), &data);
|
|
|
|
if (wsaRet != 0)
|
|
|
|
LogError("Error from WSAStartup");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void CUDPSocket::shutdown()
|
|
|
|
{
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
::WSACleanup();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
int CUDPSocket::lookup(const std::string& hostname, unsigned int port, sockaddr_storage& addr, unsigned int& address_length)
|
2018-03-13 18:16:48 -04:00
|
|
|
{
|
2020-09-03 10:12:03 -04:00
|
|
|
struct addrinfo hints;
|
|
|
|
::memset(&hints, 0, sizeof(hints));
|
|
|
|
|
|
|
|
return lookup(hostname, port, addr, address_length, hints);
|
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
int CUDPSocket::lookup(const std::string& hostname, unsigned int port, sockaddr_storage& addr, unsigned int& address_length, 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, address_length = sizeof(sockaddr_in));
|
|
|
|
paddr->sin_family = AF_INET;
|
|
|
|
paddr->sin_port = htons(port);
|
|
|
|
paddr->sin_addr.s_addr = htonl(INADDR_NONE);
|
|
|
|
LogError("Cannot find address for host %s", hostname.c_str());
|
|
|
|
return err;
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
::memcpy(&addr, res->ai_addr, address_length = res->ai_addrlen);
|
2018-03-13 18:16:48 -04:00
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
freeaddrinfo(res);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
bool CUDPSocket::match(const sockaddr_storage& addr1, const sockaddr_storage& addr2, IPMATCHTYPE type)
|
2020-09-03 10:12:03 -04:00
|
|
|
{
|
|
|
|
if (addr1.ss_family != addr2.ss_family)
|
|
|
|
return false;
|
2018-03-13 18:16:48 -04:00
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
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 {
|
2020-09-03 10:12:03 -04:00
|
|
|
return false;
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
2020-09-03 10:12:03 -04:00
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
bool CUDPSocket::isNone(const sockaddr_storage& addr)
|
2020-09-03 10:12:03 -04:00
|
|
|
{
|
|
|
|
struct sockaddr_in *in = (struct sockaddr_in *)&addr;
|
2018-03-13 18:16:48 -04:00
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
return ((addr.ss_family == AF_INET) && (in->sin_addr.s_addr == htonl(INADDR_NONE)));
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
bool CUDPSocket::open(const sockaddr_storage& address)
|
2018-03-13 18:16:48 -04:00
|
|
|
{
|
2020-09-06 08:45:06 -04:00
|
|
|
return open(address.ss_family);
|
2020-09-03 10:12:03 -04:00
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
bool CUDPSocket::open(unsigned int af)
|
|
|
|
{
|
|
|
|
return open(0, af, m_address_save, m_port_save);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CUDPSocket::open(const unsigned int index, const unsigned int af, const std::string& address, const unsigned int port)
|
2020-09-03 10:12:03 -04:00
|
|
|
{
|
|
|
|
sockaddr_storage addr;
|
|
|
|
unsigned int addrlen;
|
|
|
|
struct addrinfo hints;
|
|
|
|
|
|
|
|
::memset(&hints, 0, sizeof(hints));
|
2020-09-06 08:45:06 -04:00
|
|
|
hints.ai_flags = AI_PASSIVE;
|
2020-09-03 10:12:03 -04:00
|
|
|
hints.ai_family = af;
|
|
|
|
|
|
|
|
/* to determine protocol family, call lookup() first. */
|
2020-09-06 08:45:06 -04:00
|
|
|
int err = lookup(address, port, addr, addrlen, hints);
|
2020-09-03 10:12:03 -04:00
|
|
|
if (err != 0) {
|
2020-09-06 08:45:06 -04:00
|
|
|
LogError("The local address is invalid - %s", address.c_str());
|
2020-09-03 10:12:03 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
int fd = ::socket(addr.ss_family, SOCK_DGRAM, 0);
|
|
|
|
if (fd < 0) {
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
LogError("Cannot create the UDP socket, err: %lu", ::GetLastError());
|
|
|
|
#else
|
|
|
|
LogError("Cannot create the UDP socket, err: %d", errno);
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
m_address[index] = address;
|
|
|
|
m_port[index] = port;
|
|
|
|
m_af[index] = addr.ss_family;
|
|
|
|
m_fd[index] = fd;
|
|
|
|
|
|
|
|
if (port > 0U) {
|
2018-03-13 18:16:48 -04:00
|
|
|
int reuse = 1;
|
2020-09-06 08:45:06 -04:00
|
|
|
if (::setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&reuse, sizeof(reuse)) == -1) {
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
LogError("Cannot set the UDP socket option, err: %lu", ::GetLastError());
|
|
|
|
#else
|
|
|
|
LogError("Cannot set the UDP socket option, err: %d", errno);
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
if (::bind(fd, (sockaddr*)&addr, addrlen) == -1) {
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
LogError("Cannot bind the UDP address, err: %lu", ::GetLastError());
|
|
|
|
#else
|
|
|
|
LogError("Cannot bind the UDP address, err: %d", errno);
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
2020-09-03 10:12:03 -04:00
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
LogInfo("Opening UDP port on %u", port);
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
int CUDPSocket::read(unsigned char* buffer, unsigned int length, sockaddr_storage& address, unsigned int &address_length)
|
2018-03-13 18:16:48 -04:00
|
|
|
{
|
|
|
|
assert(buffer != NULL);
|
|
|
|
assert(length > 0U);
|
|
|
|
|
|
|
|
// Check that the readfrom() won't block
|
2020-09-06 08:45:06 -04:00
|
|
|
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
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
int ret = WSAPoll(pfd, n, 0);
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
int ret = ::poll(pfd, n, 0);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
|
|
|
if (ret < 0) {
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
LogError("Error returned from UDP poll, err: %lu", ::GetLastError());
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
LogError("Error returned from UDP poll, err: %d", errno);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
int index;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
// round robin
|
|
|
|
index = (i + m_counter) % n;
|
|
|
|
if (pfd[index].revents & POLLIN)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == n)
|
2018-03-13 18:16:48 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-03 10:12:03 -04:00
|
|
|
int size = sizeof(sockaddr_storage);
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-03 10:12:03 -04:00
|
|
|
socklen_t size = sizeof(sockaddr_storage);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
int len = ::recvfrom(pfd[index].fd, (char*)buffer, length, 0, (sockaddr *)&address, &size);
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
ssize_t len = ::recvfrom(pfd[index].fd, (char*)buffer, length, 0, (sockaddr *)&address, &size);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
|
|
|
if (len <= 0) {
|
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
|
|
|
LogError("Error returned from recvfrom, err: %lu", ::GetLastError());
|
|
|
|
#else
|
|
|
|
LogError("Error returned from recvfrom, err: %d", errno);
|
2020-11-01 07:45:51 -05:00
|
|
|
|
|
|
|
if (len == -1 && errno == ENOTSOCK) {
|
|
|
|
LogMessage("Re-opening UDP port on %u", m_port);
|
|
|
|
close();
|
|
|
|
open();
|
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
m_counter++;
|
2020-09-03 10:12:03 -04:00
|
|
|
address_length = size;
|
2018-03-13 18:16:48 -04:00
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2020-09-03 10:12:03 -04:00
|
|
|
bool CUDPSocket::write(const unsigned char* buffer, unsigned int length, const sockaddr_storage& address, unsigned int address_length)
|
2018-03-13 18:16:48 -04:00
|
|
|
{
|
|
|
|
assert(buffer != NULL);
|
|
|
|
assert(length > 0U);
|
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
for (int i = 0; i < UDP_SOCKET_MAX; i++) {
|
|
|
|
if (m_fd[i] < 0 || m_af[i] != address.ss_family)
|
|
|
|
continue;
|
|
|
|
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
int ret = ::sendto(m_fd[i], (char *)buffer, length, 0, (sockaddr *)&address, address_length);
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
ssize_t ret = ::sendto(m_fd[i], (char *)buffer, length, 0, (sockaddr *)&address, address_length);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
2020-09-06 08:45:06 -04:00
|
|
|
|
|
|
|
if (ret < 0) {
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
LogError("Error returned from sendto, err: %lu", ::GetLastError());
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
LogError("Error returned from sendto, err: %d", errno);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
2020-09-06 08:45:06 -04:00
|
|
|
} else {
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
if (ret == int(length))
|
|
|
|
result = true;
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
if (ret == ssize_t(length))
|
|
|
|
result = true;
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
2020-09-06 08:45:06 -04:00
|
|
|
}
|
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
|
2020-09-06 08:45:06 -04:00
|
|
|
return result;
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CUDPSocket::close()
|
|
|
|
{
|
2020-09-06 08:45:06 -04:00
|
|
|
for (int i = 0; i < UDP_SOCKET_MAX; i++)
|
|
|
|
close(m_fd[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CUDPSocket::close(const unsigned int index)
|
|
|
|
{
|
|
|
|
if (m_fd[index] >= 0) {
|
2018-03-13 18:16:48 -04:00
|
|
|
#if defined(_WIN32) || defined(_WIN64)
|
2020-09-06 08:45:06 -04:00
|
|
|
::closesocket(m_fd[index]);
|
2018-03-13 18:16:48 -04:00
|
|
|
#else
|
2020-09-06 08:45:06 -04:00
|
|
|
::close(m_fd[index]);
|
2018-03-13 18:16:48 -04:00
|
|
|
#endif
|
2020-09-06 08:45:06 -04:00
|
|
|
m_fd[index] = -1;
|
|
|
|
}
|
2018-03-13 18:16:48 -04:00
|
|
|
}
|