2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// Server.cpp
|
|
|
|
|
|
|
|
// Interfaces to the cServer class encapsulating the entire "server"
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "Server.h"
|
|
|
|
#include "Connection.h"
|
2015-03-22 10:00:51 -04:00
|
|
|
#include "../../src/Logger.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cServer::cServer(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-08-24 15:45:03 -04:00
|
|
|
int cServer::Init(UInt16 a_ListenPort, UInt16 a_ConnectPort)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
m_ConnectPort = a_ConnectPort;
|
2014-01-17 06:38:25 -05:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
WSAData wsa;
|
|
|
|
int res = WSAStartup(0x0202, &wsa);
|
|
|
|
if (res != 0)
|
|
|
|
{
|
2015-03-22 10:00:51 -04:00
|
|
|
LOGERROR("Cannot initialize WinSock: %d", res);
|
2014-01-17 06:38:25 -05:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
#endif // _WIN32
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
m_ListenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
2015-01-23 04:10:25 -05:00
|
|
|
if (m_ListenSocket < 0)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
int err = WSAGetLastError();
|
|
|
|
#else
|
|
|
|
int err = errno;
|
|
|
|
#endif
|
2015-03-22 10:00:51 -04:00
|
|
|
LOGERROR("Failed to create listener socket: %d", err);
|
2015-01-23 04:10:25 -05:00
|
|
|
return err;
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
sockaddr_in local;
|
|
|
|
memset(&local, 0, sizeof(local));
|
|
|
|
local.sin_family = AF_INET;
|
2015-03-22 10:00:51 -04:00
|
|
|
local.sin_addr.s_addr = INADDR_ANY; // All interfaces
|
2013-07-29 07:13:03 -04:00
|
|
|
local.sin_port = htons(a_ListenPort);
|
2016-08-24 15:45:03 -04:00
|
|
|
if (bind(m_ListenSocket, reinterpret_cast<const sockaddr *>(&local), sizeof(local)) != 0)
|
2015-01-23 04:10:25 -05:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
int err = WSAGetLastError();
|
|
|
|
#else
|
|
|
|
int err = errno;
|
|
|
|
#endif
|
2015-03-22 10:00:51 -04:00
|
|
|
LOGERROR("Failed to bind listener socket: %d", err);
|
2015-01-23 04:10:25 -05:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
if (listen(m_ListenSocket, 1) != 0)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
int err = WSAGetLastError();
|
|
|
|
#else
|
|
|
|
int err = errno;
|
|
|
|
#endif
|
|
|
|
printf("Failed to listen on socket: %d\n", err);
|
|
|
|
return err;
|
|
|
|
}
|
2016-08-24 15:45:03 -04:00
|
|
|
LOGINFO("Listening for client connections on port %d, connecting to server at localhost:%d", a_ListenPort, a_ConnectPort);
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2015-03-22 10:00:51 -04:00
|
|
|
LOGINFO("Generating protocol encryption keypair...");
|
|
|
|
m_PrivateKey.Generate();
|
|
|
|
m_PublicKeyDER = m_PrivateKey.GetPubKeyDER();
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cServer::Run(void)
|
|
|
|
{
|
2015-02-16 03:27:52 -05:00
|
|
|
LOGINFO("Server running.");
|
2013-07-29 07:13:03 -04:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
sockaddr_in Addr;
|
2014-01-17 06:38:25 -05:00
|
|
|
memset(&Addr, 0, sizeof(Addr));
|
2014-01-17 07:15:54 -05:00
|
|
|
socklen_t AddrSize = sizeof(Addr);
|
2016-08-24 15:45:03 -04:00
|
|
|
SOCKET client = accept(m_ListenSocket, reinterpret_cast<sockaddr *>(&Addr), &AddrSize);
|
2013-07-29 07:13:03 -04:00
|
|
|
if (client == INVALID_SOCKET)
|
|
|
|
{
|
2014-01-17 07:15:54 -05:00
|
|
|
printf("accept returned an error: %d; bailing out.\n", SocketError);
|
2013-07-29 07:13:03 -04:00
|
|
|
return;
|
|
|
|
}
|
2015-02-15 14:39:53 -05:00
|
|
|
LOGINFO("Client connected, proxying...");
|
2013-07-29 07:13:03 -04:00
|
|
|
cConnection Connection(client, *this);
|
|
|
|
Connection.Run();
|
2015-02-15 14:39:53 -05:00
|
|
|
LOGINFO("Client disconnected. Ready for another connection.");
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|