2021-03-08 23:00:53 +01:00
|
|
|
#include "TcWinTcpServer.h"
|
|
|
|
#include "../../serviceinterface/ServiceInterface.h"
|
|
|
|
#include <winsock2.h>
|
|
|
|
|
2021-03-08 23:55:58 +01:00
|
|
|
|
|
|
|
TcWinTcpServer::TcWinTcpServer(object_id_t objectId, object_id_t tmtcUnixUdpBridge,
|
|
|
|
uint16_t customTcpServerPort):
|
2021-03-08 23:00:53 +01:00
|
|
|
SystemObject(objectId) {
|
2021-03-08 23:55:58 +01:00
|
|
|
/* Initiates Winsock DLL. */
|
|
|
|
WSAData wsaData;
|
|
|
|
WORD wVersionRequested = MAKEWORD(2, 2);
|
|
|
|
int err = WSAStartup(wVersionRequested, &wsaData);
|
|
|
|
if (err != 0) {
|
|
|
|
/* Tell the user that we could not find a usable */
|
|
|
|
/* Winsock DLL. */
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::error << "TmTcWinUdpBridge::TmTcWinUdpBridge:"
|
|
|
|
"WSAStartup failed with error: " << err << std::endl;
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open TCP (stream) socket */
|
2021-03-08 23:00:53 +01:00
|
|
|
serverTcpSocket = socket(AF_INET, SOCK_STREAM, 0);
|
2021-03-08 23:55:58 +01:00
|
|
|
uint16_t tcpPort = customTcpServerPort;
|
|
|
|
|
|
|
|
if(customTcpServerPort == 0xffff) {
|
|
|
|
tcpPort = DEFAULT_TCP_SERVER_PORT;
|
|
|
|
}
|
|
|
|
|
2021-03-08 23:00:53 +01:00
|
|
|
if(serverTcpSocket == 0) {
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::warning << "TcWinTcpServer::TcWinTcpServer: Socket creation failed!" << std::endl;
|
2021-03-08 23:14:10 +01:00
|
|
|
handleError(ErrorSources::SOCKET_CALL);
|
2021-03-08 23:00:53 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-03-08 23:14:10 +01:00
|
|
|
int retval = setsockopt(serverTcpSocket, SOL_SOCKET, SO_REUSEADDR | SO_BROADCAST,
|
|
|
|
reinterpret_cast<const char*>(&tcpSockOpt), sizeof(tcpSockOpt));
|
|
|
|
if(retval != 0) {
|
2021-03-08 23:55:58 +01:00
|
|
|
sif::warning << "TcWinTcpServer::TcWinTcpServer: Setting socket options failed!" <<
|
|
|
|
std::endl;
|
|
|
|
handleError(ErrorSources::SETSOCKOPT_CALL);
|
|
|
|
}
|
|
|
|
tcpAddress.sin_family = AF_INET;
|
|
|
|
tcpAddress.sin_addr.s_addr = htonl(INADDR_ANY);
|
|
|
|
tcpAddress.sin_port = htons(tcpPort);
|
2021-03-08 23:14:10 +01:00
|
|
|
|
2021-03-08 23:55:58 +01:00
|
|
|
retval = bind(serverTcpSocket, reinterpret_cast<const sockaddr*>(&tcpAddress),
|
|
|
|
tcpAddrLen);
|
|
|
|
if(retval != 0) {
|
|
|
|
sif::warning << "TcWinTcpServer::TcWinTcpServer: Binding socket failed!" <<
|
|
|
|
std::endl;
|
|
|
|
handleError(ErrorSources::BIND_CALL);
|
2021-03-08 23:14:10 +01:00
|
|
|
}
|
2021-03-08 23:55:58 +01:00
|
|
|
|
2021-03-08 23:00:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TcWinTcpServer::~TcWinTcpServer() {
|
2021-03-08 23:55:58 +01:00
|
|
|
closesocket(serverTcpSocket);
|
|
|
|
WSACleanup();
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TcWinTcpServer::initialize() {
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TcWinTcpServer::performOperation(uint8_t opCode) {
|
|
|
|
/* If a connection is accepted, the corresponding scoket will be assigned to the new socket */
|
|
|
|
SOCKET connectorSocket;
|
|
|
|
sockaddr_in connectorSockAddr;
|
|
|
|
int connectorSockAddrLen = 0;
|
|
|
|
/* Listen for connection requests permanently for lifetime of program */
|
|
|
|
while(true) {
|
|
|
|
int retval = listen(serverTcpSocket, backlog);
|
|
|
|
if(retval != 0) {
|
|
|
|
handleError(ErrorSources::LISTEN_CALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
connectorSocket = accept(serverTcpSocket, reinterpret_cast<sockaddr*>(&connectorSockAddr),
|
|
|
|
&connectorSockAddrLen);
|
|
|
|
|
|
|
|
if(connectorSocket) {};
|
|
|
|
|
|
|
|
}
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2021-03-08 23:00:53 +01:00
|
|
|
}
|
|
|
|
|
2021-03-08 23:14:10 +01:00
|
|
|
void TcWinTcpServer::handleError(ErrorSources errorSrc) {
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
2021-03-08 23:00:53 +01:00
|
|
|
int errCode = WSAGetLastError();
|
2021-03-08 23:14:10 +01:00
|
|
|
std::string errorSrcString;
|
|
|
|
if(errorSrc == ErrorSources::SETSOCKOPT_CALL) {
|
|
|
|
errorSrcString = "setsockopt call";
|
|
|
|
}
|
|
|
|
else if(errorSrc == ErrorSources::SOCKET_CALL) {
|
|
|
|
errorSrcString = "socket call";
|
|
|
|
}
|
2021-03-08 23:55:58 +01:00
|
|
|
else if(errorSrc == ErrorSources::LISTEN_CALL) {
|
|
|
|
errorSrcString = "listen call";
|
|
|
|
}
|
|
|
|
else if(errorSrc == ErrorSources::ACCEPT_CALL) {
|
|
|
|
errorSrcString = "accept call";
|
|
|
|
}
|
|
|
|
|
2021-03-08 23:00:53 +01:00
|
|
|
switch(errCode) {
|
|
|
|
case(WSANOTINITIALISED): {
|
2021-03-08 23:14:10 +01:00
|
|
|
sif::warning << "TmTcWinUdpBridge::handleError: " << errorSrcString << " | "
|
|
|
|
"WSANOTINITIALISED: WSAStartup call necessary" << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case(WSAEINVAL): {
|
|
|
|
sif::warning << "TmTcWinUdpBridge::handleError: " << errorSrcString << " | "
|
|
|
|
"WSAEINVAL: Invalid parameters" << std::endl;
|
2021-03-08 23:00:53 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
/*
|
|
|
|
https://docs.microsoft.com/en-us/windows/win32/winsock/
|
|
|
|
windows-sockets-error-codes-2
|
|
|
|
*/
|
|
|
|
sif::warning << "TmTcWinUdpBridge::handleSocketError: Error code: " << errCode << std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-03-08 23:14:10 +01:00
|
|
|
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
|
2021-03-08 23:00:53 +01:00
|
|
|
}
|