1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/** @file
* @brief Socket handling utilities.
*/
/* Copyright (C) 2006,2007,2008,2015,2018,2023 Olly Betts
*
* 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, see
* <https://www.gnu.org/licenses/>.
*/
#include <config.h>
#include "socket_utils.h"
#include <limits>
#include "realtime.h"
#include "safesyssocket.h"
using namespace std;
#include "stringutils.h"
#ifndef __WIN32__
# include <arpa/inet.h>
# include <netinet/in.h>
#else
# include <io.h>
# include "msvcignoreinvalidparam.h"
# include <cerrno>
/// Convert an fd (which might be a socket) to a WIN32 HANDLE.
extern HANDLE fd_to_handle(int fd) {
MSVCIgnoreInvalidParameter invalid_handle_value_is_ok;
HANDLE handle = (HANDLE)_get_osfhandle(fd);
if (handle != INVALID_HANDLE_VALUE) return handle;
// On WIN32, a socket fd isn't the same as a non-socket fd - in fact it's
// already a HANDLE!
//
// We need to convert to intptr_t first to suppress a compiler warning here
// about casting an integer to a wider pointer type which is a reasonable
// warning in general, but we check that the value isn't truncated before
// we cast the HANDLE to int (see common/safesyssocket.h).
return reinterpret_cast<HANDLE>(intptr_t(fd));
}
/// Close an fd, which might be a socket.
extern void close_fd_or_socket(int fd) {
MSVCIgnoreInvalidParameter invalid_fd_value_is_ok;
if (close(fd) == -1 && errno == EBADF) {
// Bad file descriptor - probably because the fd is actually
// a socket.
closesocket(fd);
}
}
#endif
void
set_socket_timeouts(int fd, double timeout)
{
(void)fd;
(void)timeout;
#if defined SO_SNDTIMEO || defined SO_RCVTIMEO
{
# ifndef __WIN32__
struct timeval t;
RealTime::to_timeval(timeout, &t);
# else
// Just to be different, it's a DWORD counting in milliseconds.
DWORD t;
if (usual(timeout < numeric_limits<DWORD>::max() / 1000))
t = timeout * 1000;
else
t = numeric_limits<DWORD>::max();
# endif
# ifdef SO_SNDTIMEO
(void)setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO,
reinterpret_cast<char*>(&t), sizeof(t));
# endif
# ifdef SO_RCVTIMEO
(void)setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO,
reinterpret_cast<char*>(&t), sizeof(t));
# endif
}
#endif
#ifdef SO_KEEPALIVE
// SO_SNDTIMEO and SO_RCVTIMEO may be ignored even if they exist, so set
// SO_KEEPALIVE anyway if it exists, as it will cause stuck connections to
// time out eventually (though it may take ~2 hours).
{
# ifndef __WIN32__
int flag = 1;
# else
DWORD flag = 1;
# endif
(void)setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
reinterpret_cast<char*>(&flag), sizeof(flag));
}
#endif
}
int
pretty_ip6(const void* p, char* buf)
{
const sockaddr* sa = reinterpret_cast<const sockaddr*>(p);
auto af = sa->sa_family;
int port;
#ifndef __WIN32__
const void* src;
#endif
if (af == AF_INET6) {
auto sa6 = reinterpret_cast<const sockaddr_in6*>(p);
port = sa6->sin6_port;
#ifndef __WIN32__
src = &sa6->sin6_addr;
#endif
} else if (af == AF_INET) {
auto sa4 = reinterpret_cast<const sockaddr_in*>(p);
port = sa4->sin_port;
#ifndef __WIN32__
src = &sa4->sin_addr;
#endif
} else {
return -1;
}
#ifndef __WIN32__
const char* r = inet_ntop(af, src, buf, PRETTY_IP6_LEN);
if (!r)
return -1;
#else
// inet_ntop() isn't always available (at least with mingw) but
// WSAAddressToString() supports both IPv4 and IPv6, so just use that.
//
// WSAAddressToString() has a non-const first parameter so we have to cast
// away const.
DWORD in_size = (af == AF_INET6 ?
sizeof(struct sockaddr_in6) :
sizeof(struct sockaddr_in));
DWORD size = PRETTY_IP6_LEN;
if (WSAAddressToString(const_cast<struct sockaddr*>(sa),
in_size, NULL, buf, &size) != 0) {
return -1;
}
const char* r = buf;
#endif
if (startswith(r, "::ffff:") || startswith(r, "::FFFF:")) {
if (strchr(r + 7, '.')) {
r += 7;
}
}
if (r != buf)
memmove(buf, r, strlen(r) + 1);
return port;
}
|