-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathClientService.cpp
131 lines (97 loc) · 4.94 KB
/
ClientService.cpp
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
#include "ClientService.h"
ClientService::ClientService(unsigned int nRecvSecTimeout) {
this->initializeClientService();
this->nRecvSecTimeout = nRecvSecTimeout;
this->bReceiveOnConnect = false;
}
void ClientService::initializeClientService() {
this->sTargetHostnameIP = GLOBAL_STRING_EMPTY;
this->sCryptographicSecurityProtocol = GLOBAL_CRYPTOGRAPHIC_SECURITY_PROTOCOL_VALUE_NONE;
this->sLoginUsername = GLOBAL_STRING_EMPTY;
this->sLoginPassword = GLOBAL_STRING_EMPTY;
this->bAuthCryptographicSecurity = false;
this->bAuthLoginUser = false;
}
void ClientService::setSocketTimeout(unsigned int nRecvSecTimeout) {
DWORD oSocketTimeout = nRecvSecTimeout * 1000;
setsockopt(this->nSocketId, SOL_SOCKET, SO_RCVTIMEO, (char *) &oSocketTimeout, sizeof(oSocketTimeout));
}
bool ClientService::connectSocket(string sTargetHostnameIP, unsigned int nTargetPort, string sCryptographicSecurityProtocol) {
bool bConnectSocket = false;
struct hostent * oHostent;
struct sockaddr_in oSocketAddressIn;
this->disconnectSocket();
this->nSocketId = socket(AF_INET, SOCK_STREAM, 0);
if (this->nSocketId != INVALID_SOCKET) {
oHostent = gethostbyname(FCast::castStringToConstChar(sTargetHostnameIP));
if (oHostent != NULL) {
if (nTargetPort == 0) {
if (sCryptographicSecurityProtocol == GLOBAL_CRYPTOGRAPHIC_SECURITY_PROTOCOL_VALUE_SSL) nTargetPort = this->nDefaultPortSSL;
else if (sCryptographicSecurityProtocol == GLOBAL_CRYPTOGRAPHIC_SECURITY_PROTOCOL_VALUE_TLS) nTargetPort = this->nDefaultPortTLS;
else nTargetPort = this->nDefaultPort;
}
oSocketAddressIn.sin_family = AF_INET;
oSocketAddressIn.sin_addr.s_addr = inet_addr(inet_ntoa(*((struct in_addr *) oHostent->h_addr)));
oSocketAddressIn.sin_port = htons(nTargetPort);
memset(&(oSocketAddressIn.sin_zero), '0', 8);
if (connect(this->nSocketId, (struct sockaddr *) &oSocketAddressIn, sizeof(struct sockaddr)) != SOCKET_ERROR) {
if (this->authCryptographicSecurity()) {
this->sTargetHostnameIP = sTargetHostnameIP;
this->nTargetPort = nTargetPort;
this->sCryptographicSecurityProtocol = sCryptographicSecurityProtocol;
this->bAuthCryptographicSecurity = true;
bConnectSocket = true;
}
else this->disconnectSocket();
}
}
}
return bConnectSocket;
}
bool ClientService::disconnectSocket() {
bool bDisconnectSocket = false;
if (closesocket(this->nSocketId) == 0) {
this->initializeClientService();
bDisconnectSocket = true;
}
return bDisconnectSocket;
}
bool ClientService::sendSocketData(string sSocketData) {
return (send(this->nSocketId, FCast::castStringToConstChar(sSocketData), sSocketData.length(), 0) == sSocketData.length());
}
string ClientService::recvSocketData() {
unsigned long nTotalBytesRecvSocketData = 0;
char oRecvSocketData[CLIENT_SERVICE_RECV_BUFFER_SIZE];
string sRecvSocketData = GLOBAL_STRING_EMPTY;
this->setSocketTimeout(this->nRecvSecTimeout);
for(;(recv(this->nSocketId, oRecvSocketData, CLIENT_SERVICE_RECV_BUFFER_SIZE, 0) > 0);) {
this->setSocketTimeout(1);
sRecvSocketData += oRecvSocketData;
}
this->setSocketTimeout(this->nRecvSecTimeout);
return sRecvSocketData;
}
void ClientService::setLoginCredentials(string sLoginUsername, string sLoginPassword) {
this->sLoginUsername = sLoginUsername;
this->sLoginPassword = sLoginPassword;
}
string ClientService::getTargetHostnameIP() { return this->sTargetHostnameIP; }
string ClientService::getCryptographicSecurityProtocol() { return this->sCryptographicSecurityProtocol; }
string ClientService::getLoginUsername() { return this->sLoginUsername; }
string ClientService::getLoginPassword() { return this->sLoginPassword; }
string ClientService::getEndCommandLine() { return this->sEndCommandLine; }
bool ClientService::getReceiveOnConnect() { return this->bReceiveOnConnect; }
unsigned int ClientService::getTargetPort() { return this->nTargetPort; }
unsigned int ClientService::getDefaultPort() { return this->nDefaultPort; }
unsigned int ClientService::getDefaultPortSSL() { return this->nDefaultPortSSL; }
unsigned int ClientService::getDefaultPortTLS() { return this->nDefaultPortTLS; }
bool ClientService::isConnectionKeepAlive() {
string sLastRecvSocketData = GLOBAL_STRING_EMPTY;
Sleep(CLIENT_SERVICE_CONNECTION_KEEP_ALIVE_SECONDS_DELAY * 1000);
if (this->sendSocketData(CLIENT_SERVICE_CONNECTION_KEEP_ALIVE_PING + this->sEndCommandLine)) {
sLastRecvSocketData = this->recvSocketData();
}
return sLastRecvSocketData.length();
}
bool ClientService::isAuthCryptographicSecurity() { return this->bAuthCryptographicSecurity; }
bool ClientService::isAuthLoginUser() { return this->bAuthLoginUser; }