1134 lines
29 KiB
C
1134 lines
29 KiB
C
/*
|
|
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
|
|
*
|
|
* This program is free software: you can use, redistribute, and/or modify
|
|
* it under the terms of the GNU Affero General Public License, version 3
|
|
* or later ("AGPL"), as published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#define _DEFAULT_SOURCE
|
|
#define ALLOW_FORBID_FUNC
|
|
#include "os.h"
|
|
|
|
#if defined(WINDOWS)
|
|
#include <IPHlpApi.h>
|
|
#include <WS2tcpip.h>
|
|
#include <Winsock2.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <tchar.h>
|
|
#include <winbase.h>
|
|
#else
|
|
#include <arpa/inet.h>
|
|
#include <fcntl.h>
|
|
#include <net/if.h>
|
|
#include <netdb.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/ip.h>
|
|
#include <netinet/tcp.h>
|
|
#include <netinet/udp.h>
|
|
#include <sys/socket.h>
|
|
#include <unistd.h>
|
|
|
|
#if defined(DARWIN)
|
|
#include <dispatch/dispatch.h>
|
|
#include "osEok.h"
|
|
#else
|
|
#include <sys/epoll.h>
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef INVALID_SOCKET
|
|
#define INVALID_SOCKET -1
|
|
#endif
|
|
|
|
typedef struct TdSocket {
|
|
#if SOCKET_WITH_LOCK
|
|
TdThreadRwlock rwlock;
|
|
#endif
|
|
int refId;
|
|
SocketFd fd;
|
|
} *TdSocketPtr, TdSocket;
|
|
|
|
typedef struct TdSocketServer {
|
|
#if SOCKET_WITH_LOCK
|
|
TdThreadRwlock rwlock;
|
|
#endif
|
|
int refId;
|
|
SocketFd fd;
|
|
} *TdSocketServerPtr, TdSocketServer;
|
|
|
|
typedef struct TdEpoll {
|
|
#if SOCKET_WITH_LOCK
|
|
TdThreadRwlock rwlock;
|
|
#endif
|
|
int refId;
|
|
EpollFd fd;
|
|
} *TdEpollPtr, TdEpoll;
|
|
|
|
#if 0
|
|
int32_t taosSendto(TdSocketPtr pSocket, void *buf, int len, unsigned int flags, const struct sockaddr *dest_addr,
|
|
int addrlen) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return sendto(pSocket->fd, buf, len, flags, dest_addr, addrlen);
|
|
#else
|
|
return sendto(pSocket->fd, buf, len, flags, dest_addr, addrlen);
|
|
#endif
|
|
}
|
|
|
|
int32_t taosWriteSocket(TdSocketPtr pSocket, void *buf, int len) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return send(pSocket->fd, buf, len, 0);
|
|
;
|
|
#else
|
|
return write(pSocket->fd, buf, len);
|
|
#endif
|
|
}
|
|
int32_t taosReadSocket(TdSocketPtr pSocket, void *buf, int len) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return recv(pSocket->fd, buf, len, 0);
|
|
;
|
|
#else
|
|
return read(pSocket->fd, buf, len);
|
|
#endif
|
|
}
|
|
|
|
int32_t taosReadFromSocket(TdSocketPtr pSocket, void *buf, int32_t len, int32_t flags, struct sockaddr *destAddr,
|
|
int *addrLen) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
return recvfrom(pSocket->fd, buf, len, flags, destAddr, addrLen);
|
|
}
|
|
#endif // endif 0
|
|
|
|
int32_t taosCloseSocketNoCheck1(SocketFd fd) {
|
|
#ifdef WINDOWS
|
|
return closesocket(fd);
|
|
#else
|
|
return close(fd);
|
|
#endif
|
|
}
|
|
|
|
int32_t taosCloseSocket(TdSocketPtr *ppSocket) {
|
|
int32_t code;
|
|
if (ppSocket == NULL || *ppSocket == NULL || (*ppSocket)->fd < 0) {
|
|
return -1;
|
|
}
|
|
code = taosCloseSocketNoCheck1((*ppSocket)->fd);
|
|
(*ppSocket)->fd = -1;
|
|
taosMemoryFree(*ppSocket);
|
|
return code;
|
|
}
|
|
|
|
#if 0
|
|
int32_t taosCloseSocketServer(TdSocketServerPtr *ppSocketServer) {
|
|
int32_t code;
|
|
if (ppSocketServer == NULL || *ppSocketServer == NULL || (*ppSocketServer)->fd < 0) {
|
|
return -1;
|
|
}
|
|
code = taosCloseSocketNoCheck1((*ppSocketServer)->fd);
|
|
(*ppSocketServer)->fd = -1;
|
|
taosMemoryFree(*ppSocketServer);
|
|
return code;
|
|
}
|
|
|
|
int32_t taosShutDownSocketRD(TdSocketPtr pSocket) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return closesocket(pSocket->fd);
|
|
#elif __APPLE__
|
|
return close(pSocket->fd);
|
|
#else
|
|
return shutdown(pSocket->fd, SHUT_RD);
|
|
#endif
|
|
}
|
|
int32_t taosShutDownSocketServerRD(TdSocketServerPtr pSocketServer) {
|
|
if (pSocketServer == NULL || pSocketServer->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return closesocket(pSocketServer->fd);
|
|
#elif __APPLE__
|
|
return close(pSocketServer->fd);
|
|
#else
|
|
return shutdown(pSocketServer->fd, SHUT_RD);
|
|
#endif
|
|
}
|
|
|
|
int32_t taosShutDownSocketWR(TdSocketPtr pSocket) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return closesocket(pSocket->fd);
|
|
#elif __APPLE__
|
|
return close(pSocket->fd);
|
|
#else
|
|
return shutdown(pSocket->fd, SHUT_WR);
|
|
#endif
|
|
}
|
|
int32_t taosShutDownSocketServerWR(TdSocketServerPtr pSocketServer) {
|
|
if (pSocketServer == NULL || pSocketServer->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return closesocket(pSocketServer->fd);
|
|
#elif __APPLE__
|
|
return close(pSocketServer->fd);
|
|
#else
|
|
return shutdown(pSocketServer->fd, SHUT_WR);
|
|
#endif
|
|
}
|
|
int32_t taosShutDownSocketRDWR(TdSocketPtr pSocket) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return closesocket(pSocket->fd);
|
|
#elif __APPLE__
|
|
return close(pSocket->fd);
|
|
#else
|
|
return shutdown(pSocket->fd, SHUT_RDWR);
|
|
#endif
|
|
}
|
|
int32_t taosShutDownSocketServerRDWR(TdSocketServerPtr pSocketServer) {
|
|
if (pSocketServer == NULL || pSocketServer->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
return closesocket(pSocketServer->fd);
|
|
#elif __APPLE__
|
|
return close(pSocketServer->fd);
|
|
#else
|
|
return shutdown(pSocketServer->fd, SHUT_RDWR);
|
|
#endif
|
|
}
|
|
|
|
int32_t taosSetNonblocking(TdSocketPtr pSocket, int32_t on) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
u_long mode;
|
|
if (on) {
|
|
mode = 1;
|
|
ioctlsocket(pSocket->fd, FIONBIO, &mode);
|
|
} else {
|
|
mode = 0;
|
|
ioctlsocket(pSocket->fd, FIONBIO, &mode);
|
|
}
|
|
#else
|
|
int32_t flags = 0;
|
|
if ((flags = fcntl(pSocket->fd, F_GETFL, 0)) < 0) {
|
|
// printf("fcntl(F_GETFL) error: %d (%s)\n", errno, strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
if (on)
|
|
flags |= O_NONBLOCK;
|
|
else
|
|
flags &= ~O_NONBLOCK;
|
|
|
|
if ((flags = fcntl(pSocket->fd, F_SETFL, flags)) < 0) {
|
|
// printf("fcntl(F_SETFL) error: %d (%s)\n", errno, strerror(errno));
|
|
return 1;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
#endif // endif 0
|
|
|
|
int32_t taosSetSockOpt(TdSocketPtr pSocket, int32_t level, int32_t optname, void *optval, int32_t optlen) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
#ifdef TCP_KEEPCNT
|
|
if (level == SOL_SOCKET && optname == TCP_KEEPCNT) {
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#ifdef TCP_KEEPIDLE
|
|
if (level == SOL_TCP && optname == TCP_KEEPIDLE) {
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#ifdef TCP_KEEPINTVL
|
|
if (level == SOL_TCP && optname == TCP_KEEPINTVL) {
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#ifdef TCP_KEEPCNT
|
|
if (level == SOL_TCP && optname == TCP_KEEPCNT) {
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
return setsockopt(pSocket->fd, level, optname, optval, optlen);
|
|
#else
|
|
return setsockopt(pSocket->fd, level, optname, optval, (int)optlen);
|
|
#endif
|
|
}
|
|
|
|
#if 0
|
|
int32_t taosGetSockOpt(TdSocketPtr pSocket, int32_t level, int32_t optname, void *optval, int32_t *optlen) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
#ifdef WINDOWS
|
|
ASSERT(0);
|
|
return 0;
|
|
#else
|
|
return getsockopt(pSocket->fd, level, optname, optval, (int *)optlen);
|
|
#endif
|
|
}
|
|
|
|
#endif
|
|
|
|
uint32_t taosInetAddr(const char *ipAddr) {
|
|
#ifdef WINDOWS
|
|
uint32_t value;
|
|
int32_t ret = inet_pton(AF_INET, ipAddr, &value);
|
|
if (ret <= 0) {
|
|
return INADDR_NONE;
|
|
} else {
|
|
return value;
|
|
}
|
|
#else
|
|
return inet_addr(ipAddr);
|
|
#endif
|
|
}
|
|
const char *taosInetNtoa(struct in_addr ipInt, char *dstStr, int32_t len) {
|
|
return inet_ntop(AF_INET, &ipInt, dstStr, len);
|
|
}
|
|
|
|
#ifndef SIGPIPE
|
|
#define SIGPIPE EPIPE
|
|
#endif
|
|
|
|
#define TCP_CONN_TIMEOUT 3000 // conn timeout
|
|
|
|
#if 0
|
|
int32_t taosWriteMsg(TdSocketPtr pSocket, void *buf, int32_t nbytes) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
int32_t nleft, nwritten;
|
|
char *ptr = (char *)buf;
|
|
|
|
nleft = nbytes;
|
|
|
|
while (nleft > 0) {
|
|
nwritten = taosWriteSocket(pSocket, (char *)ptr, (size_t)nleft);
|
|
if (nwritten <= 0) {
|
|
if (errno == EINTR /* || errno == EAGAIN || errno == EWOULDBLOCK */)
|
|
continue;
|
|
else
|
|
return -1;
|
|
} else {
|
|
nleft -= nwritten;
|
|
ptr += nwritten;
|
|
}
|
|
|
|
if (errno == SIGPIPE || errno == EPIPE) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
return (nbytes - nleft);
|
|
}
|
|
|
|
int32_t taosReadMsg(TdSocketPtr pSocket, void *buf, int32_t nbytes) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
int32_t nleft, nread;
|
|
char *ptr = (char *)buf;
|
|
|
|
nleft = nbytes;
|
|
|
|
while (nleft > 0) {
|
|
nread = taosReadSocket(pSocket, ptr, (size_t)nleft);
|
|
if (nread == 0) {
|
|
break;
|
|
} else if (nread < 0) {
|
|
if (errno == EINTR /* || errno == EAGAIN || errno == EWOULDBLOCK*/) {
|
|
continue;
|
|
} else {
|
|
return -1;
|
|
}
|
|
} else {
|
|
nleft -= nread;
|
|
ptr += nread;
|
|
}
|
|
|
|
if (errno == SIGPIPE || errno == EPIPE) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
return (nbytes - nleft);
|
|
}
|
|
|
|
int32_t taosNonblockwrite(TdSocketPtr pSocket, char *ptr, int32_t nbytes) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
taosSetNonblocking(pSocket, 1);
|
|
|
|
int32_t nleft, nwritten, nready;
|
|
fd_set fset;
|
|
struct timeval tv;
|
|
|
|
nleft = nbytes;
|
|
while (nleft > 0) {
|
|
tv.tv_sec = 30;
|
|
tv.tv_usec = 0;
|
|
FD_ZERO(&fset);
|
|
FD_SET(pSocket->fd, &fset);
|
|
if ((nready = select((SocketFd)(pSocket->fd + 1), NULL, &fset, NULL, &tv)) == 0) {
|
|
errno = ETIMEDOUT;
|
|
// printf("fd %d timeout, no enough space to write", fd);
|
|
break;
|
|
|
|
} else if (nready < 0) {
|
|
if (errno == EINTR) continue;
|
|
|
|
// printf("select error, %d (%s)", errno, strerror(errno));
|
|
return -1;
|
|
}
|
|
|
|
nwritten = (int32_t)send(pSocket->fd, ptr, (size_t)nleft, MSG_NOSIGNAL);
|
|
if (nwritten <= 0) {
|
|
if (errno == EAGAIN || errno == EINTR) continue;
|
|
|
|
// printf("write error, %d (%s)", errno, strerror(errno));
|
|
return -1;
|
|
}
|
|
|
|
nleft -= nwritten;
|
|
ptr += nwritten;
|
|
}
|
|
|
|
taosSetNonblocking(pSocket, 0);
|
|
|
|
return (nbytes - nleft);
|
|
}
|
|
|
|
TdSocketPtr taosOpenUdpSocket(uint32_t ip, uint16_t port) {
|
|
struct sockaddr_in localAddr;
|
|
SocketFd fd;
|
|
int32_t bufSize = 1024000;
|
|
|
|
// printf("open udp socket:0x%x:%hu", ip, port);
|
|
|
|
memset((char *)&localAddr, 0, sizeof(localAddr));
|
|
localAddr.sin_family = AF_INET;
|
|
localAddr.sin_addr.s_addr = ip;
|
|
localAddr.sin_port = (uint16_t)htons(port);
|
|
|
|
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) <= 2) {
|
|
// printf("failed to open udp socket: %d (%s)", errno, strerror(errno));
|
|
taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
|
|
TdSocketPtr pSocket = (TdSocketPtr)taosMemoryMalloc(sizeof(TdSocket));
|
|
if (pSocket == NULL) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
pSocket->fd = fd;
|
|
pSocket->refId = 0;
|
|
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_SNDBUF, (void *)&bufSize, sizeof(bufSize)) != 0) {
|
|
// printf("failed to set the send buffer size for UDP socket\n");
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_RCVBUF, (void *)&bufSize, sizeof(bufSize)) != 0) {
|
|
// printf("failed to set the receive buffer size for UDP socket\n");
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
/* bind socket to local address */
|
|
if (bind(pSocket->fd, (struct sockaddr *)&localAddr, sizeof(localAddr)) < 0) {
|
|
// printf("failed to bind udp socket: %d (%s), 0x%x:%hu", errno, strerror(errno), ip, port);
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
return pSocket;
|
|
}
|
|
|
|
TdSocketPtr taosOpenTcpClientSocket(uint32_t destIp, uint16_t destPort, uint32_t clientIp) {
|
|
SocketFd fd = -1;
|
|
int32_t ret;
|
|
struct sockaddr_in serverAddr, clientAddr;
|
|
int32_t bufSize = 1024 * 1024;
|
|
|
|
fd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
|
|
if (fd <= 2) {
|
|
// printf("failed to open the socket: %d (%s)", errno, strerror(errno));
|
|
if (fd >= 0) taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
|
|
TdSocketPtr pSocket = (TdSocketPtr)taosMemoryMalloc(sizeof(TdSocket));
|
|
if (pSocket == NULL) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
pSocket->fd = fd;
|
|
pSocket->refId = 0;
|
|
|
|
/* set REUSEADDR option, so the portnumber can be re-used */
|
|
int32_t reuse = 1;
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_REUSEADDR, (void *)&reuse, sizeof(reuse)) < 0) {
|
|
// printf("setsockopt SO_REUSEADDR failed: %d (%s)", errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_SNDBUF, (void *)&bufSize, sizeof(bufSize)) != 0) {
|
|
// printf("failed to set the send buffer size for TCP socket\n");
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_RCVBUF, (void *)&bufSize, sizeof(bufSize)) != 0) {
|
|
// printf("failed to set the receive buffer size for TCP socket\n");
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
if (clientIp != 0) {
|
|
memset((char *)&clientAddr, 0, sizeof(clientAddr));
|
|
clientAddr.sin_family = AF_INET;
|
|
clientAddr.sin_addr.s_addr = clientIp;
|
|
clientAddr.sin_port = 0;
|
|
|
|
/* bind socket to client address */
|
|
if (bind(pSocket->fd, (struct sockaddr *)&clientAddr, sizeof(clientAddr)) < 0) {
|
|
// printf("bind tcp client socket failed, client(0x%x:0), dest(0x%x:%d), reason:(%s)", clientIp, destIp, destPort,
|
|
// strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
memset((char *)&serverAddr, 0, sizeof(serverAddr));
|
|
serverAddr.sin_family = AF_INET;
|
|
serverAddr.sin_addr.s_addr = destIp;
|
|
serverAddr.sin_port = (uint16_t)htons((uint16_t)destPort);
|
|
|
|
#ifdef _TD_LINUX
|
|
taosSetNonblocking(pSocket, 1);
|
|
ret = connect(pSocket->fd, (struct sockaddr *)&serverAddr, sizeof(serverAddr));
|
|
if (ret == -1) {
|
|
if (errno == EHOSTUNREACH) {
|
|
// printf("failed to connect socket, ip:0x%x, port:%hu(%s)", destIp, destPort, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
} else if (errno == EINPROGRESS || errno == EAGAIN || errno == EWOULDBLOCK) {
|
|
struct pollfd wfd[1];
|
|
|
|
wfd[0].fd = pSocket->fd;
|
|
wfd[0].events = POLLOUT;
|
|
|
|
int res = poll(wfd, 1, TCP_CONN_TIMEOUT);
|
|
if (res == -1 || res == 0) {
|
|
// printf("failed to connect socket, ip:0x%x, port:%hu(poll error/conn timeout)", destIp, destPort);
|
|
taosCloseSocket(&pSocket); //
|
|
return -1;
|
|
}
|
|
int optVal = -1, optLen = sizeof(int);
|
|
if ((0 != taosGetSockOpt(pSocket, SOL_SOCKET, SO_ERROR, &optVal, &optLen)) || (optVal != 0)) {
|
|
// printf("failed to connect socket, ip:0x%x, port:%hu(connect host error)", destIp, destPort);
|
|
taosCloseSocket(&pSocket); //
|
|
return -1;
|
|
}
|
|
ret = 0;
|
|
} else { // Other error
|
|
// printf("failed to connect socket, ip:0x%x, port:%hu(target host cannot be reached)", destIp, destPort);
|
|
taosCloseSocket(&pSocket); //
|
|
return -1;
|
|
}
|
|
}
|
|
taosSetNonblocking(pSocket, 0);
|
|
|
|
#else
|
|
ret = connect(pSocket->fd, (struct sockaddr *)&serverAddr, sizeof(serverAddr));
|
|
#endif
|
|
|
|
if (ret != 0) {
|
|
// printf("failed to connect socket, ip:0x%x, port:%hu(%s)", destIp, destPort, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
} else {
|
|
if (taosKeepTcpAlive(pSocket) == -1) {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
return pSocket;
|
|
}
|
|
|
|
int32_t taosKeepTcpAlive(TdSocketPtr pSocket) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
int32_t alive = 1;
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_KEEPALIVE, (void *)&alive, sizeof(alive)) < 0) {
|
|
// printf("fd:%d setsockopt SO_KEEPALIVE failed: %d (%s)", sockFd, errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
}
|
|
|
|
#ifndef __APPLE__
|
|
// all fails on macosx
|
|
#ifdef TCP_KEEPCNT
|
|
int32_t probes = 3;
|
|
if (taosSetSockOpt(pSocket, SOL_TCP, TCP_KEEPCNT, (void *)&probes, sizeof(probes)) < 0) {
|
|
// printf("fd:%d setsockopt SO_KEEPCNT failed: %d (%s)", sockFd, errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
}
|
|
#endif
|
|
|
|
#ifdef TCP_KEEPIDLE
|
|
int32_t alivetime = 10;
|
|
if (taosSetSockOpt(pSocket, SOL_TCP, TCP_KEEPIDLE, (void *)&alivetime, sizeof(alivetime)) < 0) {
|
|
// printf("fd:%d setsockopt SO_KEEPIDLE failed: %d (%s)", sockFd, errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
}
|
|
#endif
|
|
|
|
#ifdef TCP_KEEPINTVL
|
|
int32_t interval = 3;
|
|
if (taosSetSockOpt(pSocket, SOL_TCP, TCP_KEEPINTVL, (void *)&interval, sizeof(interval)) < 0) {
|
|
// printf("fd:%d setsockopt SO_KEEPINTVL failed: %d (%s)", sockFd, errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
}
|
|
#endif
|
|
#endif // __APPLE__
|
|
|
|
int32_t nodelay = 1;
|
|
if (taosSetSockOpt(pSocket, IPPROTO_TCP, TCP_NODELAY, (void *)&nodelay, sizeof(nodelay)) < 0) {
|
|
// printf("fd:%d setsockopt TCP_NODELAY failed %d (%s)", sockFd, errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
}
|
|
|
|
struct linger linger = {0};
|
|
linger.l_onoff = 1;
|
|
linger.l_linger = 3;
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_LINGER, (void *)&linger, sizeof(linger)) < 0) {
|
|
// printf("setsockopt SO_LINGER failed: %d (%s)", errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int taosGetLocalIp(const char *eth, char *ip) {
|
|
#if defined(WINDOWS)
|
|
// DO NOTHAING
|
|
ASSERT(0);
|
|
return 0;
|
|
#else
|
|
int fd;
|
|
struct ifreq ifr;
|
|
struct sockaddr_in sin;
|
|
|
|
fd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
if (-1 == fd) {
|
|
return -1;
|
|
}
|
|
strncpy(ifr.ifr_name, eth, IFNAMSIZ);
|
|
ifr.ifr_name[IFNAMSIZ - 1] = 0;
|
|
|
|
if (ioctl(fd, SIOCGIFADDR, &ifr) < 0) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return -1;
|
|
}
|
|
memcpy(&sin, &ifr.ifr_addr, sizeof(sin));
|
|
taosInetNtoa(sin.sin_addr, ip, 64);
|
|
taosCloseSocketNoCheck1(fd);
|
|
#endif
|
|
return 0;
|
|
}
|
|
int taosValidIp(uint32_t ip) {
|
|
#if defined(WINDOWS)
|
|
// DO NOTHAING
|
|
ASSERT(0);
|
|
return 0;
|
|
#else
|
|
int ret = -1;
|
|
int fd;
|
|
|
|
struct ifconf ifconf;
|
|
|
|
char buf[512] = {0};
|
|
ifconf.ifc_len = 512;
|
|
ifconf.ifc_buf = buf;
|
|
|
|
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
|
|
return -1;
|
|
}
|
|
|
|
ioctl(fd, SIOCGIFCONF, &ifconf);
|
|
struct ifreq *ifreq = (struct ifreq *)ifconf.ifc_buf;
|
|
for (int i = (ifconf.ifc_len / sizeof(struct ifreq)); i > 0; i--) {
|
|
char ip_str[64] = {0};
|
|
if (ifreq->ifr_flags == AF_INET) {
|
|
ret = taosGetLocalIp(ifreq->ifr_name, ip_str);
|
|
if (ret != 0) {
|
|
break;
|
|
}
|
|
ret = -1;
|
|
if (ip == (uint32_t)taosInetAddr(ip_str)) {
|
|
ret = 0;
|
|
break;
|
|
}
|
|
ifreq++;
|
|
}
|
|
}
|
|
taosCloseSocketNoCheck1(fd);
|
|
return ret;
|
|
#endif
|
|
return 0;
|
|
}
|
|
#endif // endif 0
|
|
|
|
bool taosValidIpAndPort(uint32_t ip, uint16_t port) {
|
|
struct sockaddr_in serverAdd;
|
|
SocketFd fd;
|
|
int32_t reuse;
|
|
|
|
// printf("open tcp server socket:0x%x:%hu", ip, port);
|
|
|
|
bzero((char *)&serverAdd, sizeof(serverAdd));
|
|
serverAdd.sin_family = AF_INET;
|
|
#ifdef WINDOWS
|
|
serverAdd.sin_addr.s_addr = INADDR_ANY;
|
|
#else
|
|
serverAdd.sin_addr.s_addr = ip;
|
|
#endif
|
|
serverAdd.sin_port = (uint16_t)htons(port);
|
|
|
|
fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
|
if (fd < 0) { // exception
|
|
return false;
|
|
} else if (fd <= 2) { // in, out, err
|
|
taosCloseSocketNoCheck1(fd);
|
|
return false;
|
|
}
|
|
|
|
TdSocketPtr pSocket = (TdSocketPtr)taosMemoryMalloc(sizeof(TdSocket));
|
|
if (pSocket == NULL) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return false;
|
|
}
|
|
pSocket->refId = 0;
|
|
pSocket->fd = fd;
|
|
|
|
/* set REUSEADDR option, so the portnumber can be re-used */
|
|
reuse = 1;
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_REUSEADDR, (void *)&reuse, sizeof(reuse)) < 0) {
|
|
// printf("setsockopt SO_REUSEADDR failed: %d (%s)", errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return false;
|
|
}
|
|
/* bind socket to server address */
|
|
if (bind(pSocket->fd, (struct sockaddr *)&serverAdd, sizeof(serverAdd)) < 0) {
|
|
// printf("bind tcp server socket failed, 0x%x:%hu(%s)", ip, port, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return false;
|
|
}
|
|
taosCloseSocket(&pSocket);
|
|
return true;
|
|
// return 0 == taosValidIp(ip) ? true : false;
|
|
}
|
|
|
|
#if 0
|
|
TdSocketServerPtr taosOpenTcpServerSocket(uint32_t ip, uint16_t port) {
|
|
struct sockaddr_in serverAdd;
|
|
SocketFd fd;
|
|
int32_t reuse;
|
|
|
|
// printf("open tcp server socket:0x%x:%hu", ip, port);
|
|
|
|
bzero((char *)&serverAdd, sizeof(serverAdd));
|
|
serverAdd.sin_family = AF_INET;
|
|
serverAdd.sin_addr.s_addr = ip;
|
|
serverAdd.sin_port = (uint16_t)htons(port);
|
|
|
|
if ((fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) <= 2) {
|
|
// printf("failed to open TCP socket: %d (%s)", errno, strerror(errno));
|
|
taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
|
|
TdSocketPtr pSocket = (TdSocketPtr)taosMemoryMalloc(sizeof(TdSocket));
|
|
if (pSocket == NULL) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
pSocket->refId = 0;
|
|
pSocket->fd = fd;
|
|
|
|
/* set REUSEADDR option, so the portnumber can be re-used */
|
|
reuse = 1;
|
|
if (taosSetSockOpt(pSocket, SOL_SOCKET, SO_REUSEADDR, (void *)&reuse, sizeof(reuse)) < 0) {
|
|
// printf("setsockopt SO_REUSEADDR failed: %d (%s)", errno, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
/* bind socket to server address */
|
|
if (bind(pSocket->fd, (struct sockaddr *)&serverAdd, sizeof(serverAdd)) < 0) {
|
|
// printf("bind tcp server socket failed, 0x%x:%hu(%s)", ip, port, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
if (taosKeepTcpAlive(pSocket) < 0) {
|
|
// printf("failed to set tcp server keep-alive option, 0x%x:%hu(%s)", ip, port, strerror(errno));
|
|
return NULL;
|
|
}
|
|
|
|
if (listen(pSocket->fd, 1024) < 0) {
|
|
// printf("listen tcp server socket failed, 0x%x:%hu(%s)", ip, port, strerror(errno));
|
|
taosCloseSocket(&pSocket);
|
|
return NULL;
|
|
}
|
|
|
|
return (TdSocketServerPtr)pSocket;
|
|
}
|
|
|
|
TdSocketPtr taosAcceptTcpConnectSocket(TdSocketServerPtr pServerSocket, struct sockaddr *destAddr, int *addrLen) {
|
|
if (pServerSocket == NULL || pServerSocket->fd < 0) {
|
|
return NULL;
|
|
}
|
|
SocketFd fd = accept(pServerSocket->fd, destAddr, addrLen);
|
|
if (fd == -1) {
|
|
// tError("TCP accept failure(%s)", strerror(errno));
|
|
return NULL;
|
|
}
|
|
|
|
TdSocketPtr pSocket = (TdSocketPtr)taosMemoryMalloc(sizeof(TdSocket));
|
|
if (pSocket == NULL) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return NULL;
|
|
}
|
|
pSocket->fd = fd;
|
|
pSocket->refId = 0;
|
|
return pSocket;
|
|
}
|
|
#define COPY_SIZE 32768
|
|
// sendfile shall be used
|
|
|
|
int64_t taosCopyFds(TdSocketPtr pSrcSocket, TdSocketPtr pDestSocket, int64_t len) {
|
|
if (pSrcSocket == NULL || pSrcSocket->fd < 0 || pDestSocket == NULL || pDestSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
int64_t leftLen;
|
|
int64_t readLen, writeLen;
|
|
char temp[COPY_SIZE];
|
|
|
|
leftLen = len;
|
|
|
|
while (leftLen > 0) {
|
|
if (leftLen < COPY_SIZE)
|
|
readLen = leftLen;
|
|
else
|
|
readLen = COPY_SIZE; // 4K
|
|
|
|
int64_t retLen = taosReadMsg(pSrcSocket, temp, (int32_t)readLen);
|
|
if (readLen != retLen) {
|
|
// printf("read error, readLen:%" PRId64 " retLen:%" PRId64 " len:%" PRId64 " leftLen:%" PRId64 ", reason:%s",
|
|
// readLen, retLen, len, leftLen, strerror(errno));
|
|
return -1;
|
|
}
|
|
|
|
writeLen = taosWriteMsg(pDestSocket, temp, (int32_t)readLen);
|
|
|
|
if (readLen != writeLen) {
|
|
// printf("copy error, readLen:%" PRId64 " writeLen:%" PRId64 " len:%" PRId64 " leftLen:%" PRId64 ", reason:%s",
|
|
// readLen, writeLen, len, leftLen, strerror(errno));
|
|
return -1;
|
|
}
|
|
|
|
leftLen -= readLen;
|
|
}
|
|
|
|
return len;
|
|
}
|
|
|
|
// Function converting an IP address string to an uint32_t.
|
|
uint32_t ip2uint(const char *const ip_addr) {
|
|
char ip_addr_cpy[20];
|
|
char ip[5];
|
|
|
|
tstrncpy(ip_addr_cpy, ip_addr, sizeof(ip_addr_cpy));
|
|
|
|
char *s_start, *s_end;
|
|
s_start = ip_addr_cpy;
|
|
s_end = ip_addr_cpy;
|
|
|
|
int32_t k;
|
|
|
|
for (k = 0; *s_start != '\0'; s_start = s_end) {
|
|
for (s_end = s_start; *s_end != '.' && *s_end != '\0'; s_end++) {
|
|
}
|
|
if (*s_end == '.') {
|
|
*s_end = '\0';
|
|
s_end++;
|
|
}
|
|
ip[k++] = (char)atoi(s_start);
|
|
}
|
|
|
|
ip[k] = '\0';
|
|
|
|
return *((uint32_t *)ip);
|
|
}
|
|
|
|
#endif // endif 0
|
|
|
|
void taosBlockSIGPIPE() {
|
|
#ifdef WINDOWS
|
|
// ASSERT(0);
|
|
#else
|
|
sigset_t signal_mask;
|
|
sigemptyset(&signal_mask);
|
|
sigaddset(&signal_mask, SIGPIPE);
|
|
int32_t rc = pthread_sigmask(SIG_BLOCK, &signal_mask, NULL);
|
|
if (rc != 0) {
|
|
// printf("failed to block SIGPIPE");
|
|
}
|
|
#endif
|
|
}
|
|
|
|
uint32_t taosGetIpv4FromFqdn(const char *fqdn) {
|
|
#ifdef WINDOWS
|
|
// Initialize Winsock
|
|
WSADATA wsaData;
|
|
int iResult;
|
|
iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);
|
|
if (iResult != 0) {
|
|
// printf("WSAStartup failed: %d\n", iResult);
|
|
return 0xFFFFFFFF;
|
|
}
|
|
#endif
|
|
struct addrinfo hints = {0};
|
|
hints.ai_family = AF_INET;
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
struct addrinfo *result = NULL;
|
|
|
|
int32_t ret = getaddrinfo(fqdn, NULL, &hints, &result);
|
|
if (result) {
|
|
struct sockaddr *sa = result->ai_addr;
|
|
struct sockaddr_in *si = (struct sockaddr_in *)sa;
|
|
struct in_addr ia = si->sin_addr;
|
|
uint32_t ip = ia.s_addr;
|
|
freeaddrinfo(result);
|
|
return ip;
|
|
} else {
|
|
#ifdef EAI_SYSTEM
|
|
if (ret == EAI_SYSTEM) {
|
|
// printf("failed to get the ip address, fqdn:%s, errno:%d, since:%s", fqdn, errno, strerror(errno));
|
|
} else {
|
|
// printf("failed to get the ip address, fqdn:%s, ret:%d, since:%s", fqdn, ret, gai_strerror(ret));
|
|
}
|
|
#else
|
|
// printf("failed to get the ip address, fqdn:%s, ret:%d, since:%s", fqdn, ret, gai_strerror(ret));
|
|
#endif
|
|
return 0xFFFFFFFF;
|
|
}
|
|
}
|
|
|
|
int32_t taosGetFqdn(char *fqdn) {
|
|
#ifdef WINDOWS
|
|
// Initialize Winsock
|
|
WSADATA wsaData;
|
|
int iResult;
|
|
iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);
|
|
if (iResult != 0) {
|
|
// printf("WSAStartup failed: %d\n", iResult);
|
|
return 1;
|
|
}
|
|
#endif
|
|
char hostname[1024];
|
|
hostname[1023] = '\0';
|
|
if (taosGetlocalhostname(hostname, 1023) == -1) {
|
|
#ifdef WINDOWS
|
|
printf("failed to get hostname, reason:%s\n", strerror(WSAGetLastError()));
|
|
#else
|
|
printf("failed to get hostname, reason:%s\n", strerror(errno));
|
|
#endif
|
|
ASSERT(0);
|
|
return -1;
|
|
}
|
|
|
|
#ifdef __APPLE__
|
|
// on macosx, hostname -f has the form of xxx.local
|
|
// which will block getaddrinfo for a few seconds if AI_CANONNAME is set
|
|
// thus, we choose AF_INET (ipv4 for the moment) to make getaddrinfo return
|
|
// immediately
|
|
// hints.ai_family = AF_INET;
|
|
strcpy(fqdn, hostname);
|
|
strcpy(fqdn + strlen(hostname), ".local");
|
|
#else // linux
|
|
struct addrinfo hints = {0};
|
|
struct addrinfo *result = NULL;
|
|
hints.ai_flags = AI_CANONNAME;
|
|
|
|
int32_t ret = getaddrinfo(hostname, NULL, &hints, &result);
|
|
if (!result) {
|
|
fprintf(stderr, "failed to get fqdn, code:%d, reason:%s\n", ret, gai_strerror(ret));
|
|
return -1;
|
|
}
|
|
strcpy(fqdn, result->ai_canonname);
|
|
freeaddrinfo(result);
|
|
#endif // linux
|
|
|
|
return 0;
|
|
}
|
|
|
|
void tinet_ntoa(char *ipstr, uint32_t ip) {
|
|
sprintf(ipstr, "%d.%d.%d.%d", ip & 0xFF, (ip >> 8) & 0xFF, (ip >> 16) & 0xFF, ip >> 24);
|
|
}
|
|
|
|
void taosIgnSIGPIPE() { signal(SIGPIPE, SIG_IGN); }
|
|
|
|
void taosSetMaskSIGPIPE() {
|
|
#ifdef WINDOWS
|
|
// ASSERT(0);
|
|
#else
|
|
sigset_t signal_mask;
|
|
sigemptyset(&signal_mask);
|
|
sigaddset(&signal_mask, SIGPIPE);
|
|
int32_t rc = pthread_sigmask(SIG_SETMASK, &signal_mask, NULL);
|
|
if (rc != 0) {
|
|
// printf("failed to setmask SIGPIPE");
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#if 0
|
|
int32_t taosGetSocketName(TdSocketPtr pSocket, struct sockaddr *destAddr, int *addrLen) {
|
|
if (pSocket == NULL || pSocket->fd < 0) {
|
|
return -1;
|
|
}
|
|
return getsockname(pSocket->fd, destAddr, addrLen);
|
|
}
|
|
#endif // endif 0
|
|
|
|
/*
|
|
* Set TCP connection timeout per-socket level.
|
|
* ref [https://github.com/libuv/help/issues/54]
|
|
*/
|
|
int32_t taosCreateSocketWithTimeout(uint32_t timeout) {
|
|
#if defined(WINDOWS)
|
|
SOCKET fd;
|
|
#else
|
|
int fd;
|
|
#endif
|
|
if ((fd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP)) == INVALID_SOCKET) {
|
|
return -1;
|
|
}
|
|
#if defined(WINDOWS)
|
|
if (0 != setsockopt(fd, IPPROTO_TCP, TCP_MAXRT, (char *)&timeout, sizeof(timeout))) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return -1;
|
|
}
|
|
#elif defined(_TD_DARWIN_64)
|
|
// invalid config
|
|
// uint32_t conn_timeout_ms = timeout * 1000;
|
|
// if (0 != setsockopt(fd, IPPROTO_TCP, TCP_CONNECTIONTIMEOUT, (char *)&conn_timeout_ms, sizeof(conn_timeout_ms))) {
|
|
// taosCloseSocketNoCheck1(fd);
|
|
// return -1;
|
|
//}
|
|
#else // Linux like systems
|
|
uint32_t conn_timeout_ms = timeout;
|
|
if (0 != setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT, (char *)&conn_timeout_ms, sizeof(conn_timeout_ms))) {
|
|
taosCloseSocketNoCheck1(fd);
|
|
return -1;
|
|
}
|
|
#endif
|
|
|
|
return (int)fd;
|
|
}
|
|
|
|
void taosWinSocketInit() {
|
|
#ifdef WINDOWS
|
|
static char flag = 0;
|
|
if (flag == 0) {
|
|
WORD wVersionRequested;
|
|
WSADATA wsaData;
|
|
wVersionRequested = MAKEWORD(1, 1);
|
|
if (WSAStartup(wVersionRequested, &wsaData) == 0) {
|
|
flag = 1;
|
|
}
|
|
}
|
|
#else
|
|
#endif
|
|
}
|
|
|
|
uint64_t taosHton64(uint64_t val) {
|
|
#if defined(WINDOWS) || defined(DARWIN)
|
|
return ((val & 0x00000000000000ff) << 7 * 8) | ((val & 0x000000000000ff00) << 5 * 8) |
|
|
((val & 0x0000000000ff0000) << 3 * 8) | ((val & 0x00000000ff000000) << 1 * 8) |
|
|
((val & 0x000000ff00000000) >> 1 * 8) | ((val & 0x0000ff0000000000) >> 3 * 8) |
|
|
((val & 0x00ff000000000000) >> 5 * 8) | ((val & 0xff00000000000000) >> 7 * 8);
|
|
#else
|
|
if (__BYTE_ORDER == __LITTLE_ENDIAN) {
|
|
return (((uint64_t)htonl((int)((val << 32) >> 32))) << 32) | (unsigned int)htonl((int)(val >> 32));
|
|
} else if (__BYTE_ORDER == __BIG_ENDIAN) {
|
|
return val;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
uint64_t taosNtoh64(uint64_t val) {
|
|
#if defined(WINDOWS) || defined(DARWIN)
|
|
return taosHton64(val);
|
|
#else
|
|
if (__BYTE_ORDER == __LITTLE_ENDIAN) {
|
|
return (((uint64_t)htonl((int)((val << 32) >> 32))) << 32) | (unsigned int)htonl((int)(val >> 32));
|
|
} else if (__BYTE_ORDER == __BIG_ENDIAN) {
|
|
return val;
|
|
}
|
|
#endif
|
|
}
|