forked from embeddedmz/socket-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTCPSSLClient.cpp
More file actions
263 lines (215 loc) · 7.75 KB
/
TCPSSLClient.cpp
File metadata and controls
263 lines (215 loc) · 7.75 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/**
* @file TCPSSLClient.cpp
* @brief implementation of the TCP SSL client class
* @author Mohamed Amine Mzoughi <[email protected]>
*/
#ifdef OPENSSL
#include "TCPSSLClient.h"
CTCPSSLClient::CTCPSSLClient(const LogFnCallback oLogger,
const OpenSSLProtocol eSSLVersion,
const SettingsFlag eSettings /*= ALL_FLAGS*/) :
ASecureSocket(oLogger, eSSLVersion, eSettings),
m_TCPClient(oLogger, eSettings)
{
}
bool CTCPSSLClient::SetRcvTimeout(unsigned int msec_timeout){
return m_TCPClient.SetRcvTimeout(msec_timeout);
}
bool CTCPSSLClient::SetSndTimeout(unsigned int msec_timeout){
return m_TCPClient.SetSndTimeout(msec_timeout);
}
#ifndef WINDOWS
bool CTCPSSLClient::SetRcvTimeout(struct timeval timeout) {
return m_TCPClient.SetRcvTimeout(timeout);
}
bool CTCPSSLClient::SetSndTimeout(struct timeval timeout){
return m_TCPClient.SetSndTimeout(timeout);
}
#endif
// Connexion au serveur
bool CTCPSSLClient::Connect(const std::string& strServer, const std::string& strPort)
{
if (m_TCPClient.Connect(strServer, strPort))
{
m_SSLConnectSocket.m_SockFd = m_TCPClient.m_ConnectSocket;
SetUpCtxClient(m_SSLConnectSocket);
if (m_SSLConnectSocket.m_pCTXSSL == nullptr)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] SSL_CTX_new failed.");
//ERR_print_errors_fp(stdout);
return false;
}
/* process SSL certificates */
/* Load a client certificate into the SSL_CTX structure. */
if (!m_strSSLCertFile.empty())
{
if (SSL_CTX_use_certificate_file(m_SSLConnectSocket.m_pCTXSSL,
m_strSSLCertFile.c_str(), SSL_FILETYPE_PEM) <= 0)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] Loading cert file failed.");
return false;
}
}
/* Load trusted CA. Mandatory to verify server's certificate */
if (!m_strCAFile.empty())
{
if (!SSL_CTX_load_verify_locations(m_SSLConnectSocket.m_pCTXSSL, m_strCAFile.c_str(), nullptr))
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] Loading CA file failed.");
return false;
}
SSL_CTX_set_verify_depth(m_SSLConnectSocket.m_pCTXSSL, 1);
}
/* Load a private-key into the SSL_CTX structure.
* set key file that corresponds to the server or client certificate.
* In the SSL handshake, a certificate (which contains the public key) is transmitted to allow
* the peer to use it for encryption. The encrypted message sent from the peer can be decrypted
* only using the private key. */
if (!m_strSSLKeyFile.empty())
{
if (SSL_CTX_use_PrivateKey_file(m_SSLConnectSocket.m_pCTXSSL,
m_strSSLKeyFile.c_str(), SSL_FILETYPE_PEM) <= 0)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] Loading key file failed.");
//ERR_print_errors_fp(stdout);
return false;
}
/* verify private key */
/*if (!SSL_CTX_check_private_key(m_SSLConnectSocket.m_pCTXSSL))
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] Private key does not match the public certificate.");
return false;
}*/
}
//SSL_CTX_set_cert_verify_callback(m_SSLConnectSocket.m_pCTXSSL, AlwaysTrueCallback, nullptr);
/* create new SSL connection state */
m_SSLConnectSocket.m_pSSL = SSL_new(m_SSLConnectSocket.m_pCTXSSL);
SSL_set_fd(m_SSLConnectSocket.m_pSSL, m_SSLConnectSocket.m_SockFd);
/* initiate the TLS/SSL handshake with an TLS/SSL server */
int iResult = SSL_connect(m_SSLConnectSocket.m_pSSL);
if (iResult > 0)
{
/* The data can now be transmitted securely over this connection. */
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog(StringFormat("[TCPSSLClient][Info] Connected with '%s' encryption.",
SSL_get_cipher(m_SSLConnectSocket.m_pSSL)));
/*if (SSL_get_peer_certificate(m_SSLConnectSocket.m_pSSL) != nullptr)
{
if (SSL_get_verify_result(m_SSLConnectSocket.m_pSSL) == X509_V_OK)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("client verification with SSL_get_verify_result() succeeded.");
}
else
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("client verification with SSL_get_verify_result() failed.\n");
return false;
}
}
else if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("the peer certificate was not presented.");*/
return true;
}
// under Windows it creates problems
#ifdef LINUX
ERR_print_errors_fp(stdout);
#endif
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog(StringFormat("[TCPSSLClient][Error] SSL_connect failed (Error=%d | %s)",
iResult, GetSSLErrorString(SSL_get_error(m_SSLConnectSocket.m_pSSL, iResult))));
return false;
}
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] Unable to establish a TCP connection with the server.");
return false;
}
bool CTCPSSLClient::Send(const char* pData, const size_t uSize) const
{
if (m_TCPClient.m_eStatus != CTCPClient::CONNECTED)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] SSL send failed : not connected to an SSL server.");
return false;
}
int total = 0;
do
{
/* encrypt & send message */
int nSent = SSL_write(m_SSLConnectSocket.m_pSSL, pData + total, uSize - total);
if (nSent <= 0)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog(StringFormat("[TCPSSLClient][Error] SSL_write failed (Error=%d | %s)",
nSent, GetSSLErrorString(SSL_get_error(m_SSLConnectSocket.m_pSSL, nSent))));
return false;
}
total += nSent;
} while (total < uSize);
return true;
}
bool CTCPSSLClient::Send(const std::string& strData) const
{
return Send(strData.c_str(), strData.length());
}
bool CTCPSSLClient::Send(const std::vector<char>& Data) const
{
return Send(Data.data(), Data.size());
}
bool CTCPSSLClient::HasPending()
{
int pend;
pend = SSL_has_pending(m_SSLConnectSocket.m_pSSL);
return pend == 1;
}
int CTCPSSLClient::PendingBytes()
{
int nPend;
nPend = SSL_pending(m_SSLConnectSocket.m_pSSL);
return nPend;
}
int CTCPSSLClient::Receive(char* pData, const size_t uSize, bool bReadFully /*= true*/) const
{
if (m_TCPClient.m_eStatus != CTCPClient::CONNECTED)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog("[TCPSSLClient][Error] SSL recv failed : not connected to a server.");
return -1;
}
int total = 0;
do
{
int nRecvd = SSL_read(m_SSLConnectSocket.m_pSSL, pData + total, uSize - total);
if (nRecvd <= 0)
{
if (m_eSettingsFlags & ENABLE_LOG)
m_oLog(StringFormat("[TCPSSLClient][Error] SSL_read failed (Error=%d | %s)",
nRecvd, GetSSLErrorString(SSL_get_error(m_SSLConnectSocket.m_pSSL, nRecvd))));
break;
}
total += nRecvd;
} while (bReadFully && (total < uSize));
return total;
}
bool CTCPSSLClient::Disconnect()
{
if (m_TCPClient.m_eStatus != CTCPClient::CONNECTED)
return true;
// send close_notify message to notify peer of the SSL closure.
ShutdownSSL(m_SSLConnectSocket);
return m_TCPClient.Disconnect();
}
CTCPSSLClient::~CTCPSSLClient()
{
if (m_TCPClient.m_eStatus == CTCPClient::CONNECTED)
{
Disconnect();
m_TCPClient.Disconnect();
}
}
#endif