[go: up one dir, main page]

Menu

[r369]: / main / src / ospssl.c  Maximize  Restore  History

Download this file

348 lines (311 with data), 10.8 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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
/**************************************************************************
*** COPYRIGHT (c) 2002 by TransNexus, Inc. ***
*** ***
*** This software is property of TransNexus, Inc. ***
*** This software is freely available under license from TransNexus. ***
*** The license terms and conditions for free use of this software by ***
*** third parties are defined in the OSP Toolkit Software License ***
*** Agreement (LICENSE.txt). Any use of this software by third ***
*** parties, which does not comply with the terms and conditions of the ***
*** OSP Toolkit Software License Agreement is prohibited without ***
*** the prior, express, written consent of TransNexus, Inc. ***
*** ***
*** Thank you for using the OSP ToolKit(TM). Please report any bugs, ***
*** suggestions or feedback to support@transnexus.com ***
*** ***
**************************************************************************/
/*
* ospssl.c - SSL common functions
*/
#include "osp/osp.h"
#include "osp/ospssl.h"
#include "osp/osphttp.h"
#include "osp/ospcomm.h"
#include "osp/ospsocket.h"
#include "osp/osputils.h"
#include "osp/ospsecurity.h"
void
OSPPSSLSessionDelete(
OSPTBOOL ospvGracefulShutdown,
OSPTSSLSESSION **ospvSSLSession)
{
OSPM_DBGENTER(("ENTER: OSPPSSLSessionDelete()\n"));
if (*ospvSSLSession != OSPC_OSNULL)
{
if (OSPPSSLSessionHasContext(*ospvSSLSession))
{
if (ospvGracefulShutdown == OSPC_TRUE)
{
OSPPSSLWrapSessionGracefulShutdown(*ospvSSLSession);
}
OSPPSSLWrapSessionContextDelete(*ospvSSLSession);
}
OSPM_FREE(*ospvSSLSession);
*ospvSSLSession = OSPC_OSNULL;
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionDelete()\n"));
return;
}
int
OSPPSSLSessionNew(
OSPTHTTP *ospvHttp,
OSPTSEC *ospvSecurity)
{
int errorcode = OSPC_ERR_NO_ERROR,
rootcacertlen = 0;
void *rootcacert = OSPC_OSNULL;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionNew()\n"));
/*
* If https is required, ensure that a SSL Session is currently
* active for this socket and that its session-id has not expired
*/
if (OSPM_COMM_SECURED_IO(ospvHttp->ServicePoint))
{
/* if no ssl context, then create a new one */
if (ospvHttp->SSLSession == OSPC_OSNULL)
{
errorcode = OSPPSSLSessionInitialize(ospvHttp, ospvSecurity);
/* do the SSL handshake */
if (errorcode == OSPC_ERR_NO_ERROR)
{
errorcode = OSPPSSLSessionNegotiate(ospvHttp);
if (errorcode == OSPC_ERR_NO_ERROR)
{
errorcode = OSPPSSLWrapGetServerRootCACert(&rootcacert,
&rootcacertlen, ospvHttp->SSLSession);
if (errorcode == OSPC_ERR_NO_ERROR)
{
/* ------------------------------------------------------
* Verify that we trust this server's Root CA Certificate
* OpenSSL Verifies this for you. Uncomment if you need this
* ------------------------------------------------------
*errorcode = OSPPSecVerifyRootAuthorityCertificate(ospvSecurity,
* rootcacert, rootcacertlen);
*/
}
if (rootcacert != OSPC_OSNULL)
{
OSPPSSLWrapFreeServerRootCACert(&rootcacert);
}
}
else
{
/* clean up any unused session ids */
if (ospvHttp->SSLSession && ospvHttp->SSLSession->SessionId)
{
OSPPSecSSLSessionIdDelete(ospvSecurity, &(ospvHttp->SSLSession->SessionId), OSPC_TRUE);
}
}
}
}
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionNew()\n"));
return errorcode;
}
int
OSPPSSLSessionInitialize(
OSPTHTTP *ospvHttp,
OSPTSEC *ospvSecurity)
{
int errorcode = OSPC_ERR_NO_ERROR;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionInitialize()\n"));
/*
* initialize the SSL Session object
*/
ospvHttp->SSLSession = OSPPSSLSessionAlloc();
if (ospvHttp->SSLSession == OSPC_OSNULL)
{
errorcode = OSPC_ERR_HTTP_SSL_NEW_FAILED;
}
else
{
/*
* initialize the SSL Session Context
*/
errorcode = OSPPSSLWrapSessionContextNew((void *)ospvHttp,
(void *)ospvSecurity);
if (errorcode != OSPC_ERR_NO_ERROR)
{
errorcode = OSPC_ERR_HTTP_SSL_CTX_NEW_FAILED;
}
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionInitialize() (%d)\n", errorcode));
return errorcode;
}
int
OSPPSSLSessionNegotiate(
OSPTHTTP *ospvHttp)
{
int errorcode = OSPC_ERR_NO_ERROR;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionNegotiate()\n"));
/*
* attach the connected socket to the SSL library
*/
errorcode = OSPPSSLWrapAttachConnection(
ospvHttp->SSLSession, ospvHttp);
if (errorcode == OSPC_ERR_NO_ERROR)
{
errorcode = OSPPSSLWrapHandshake(ospvHttp->SSLSession);
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionNegotiate() (%d)\n", errorcode));
return errorcode;
}
int
OSPPSSLSessionRead(
OSPTHTTP *ospvHttp,
void *ospvBuffer,
unsigned int *ospvLength,
char *ospvDelimiter)
{
int errorcode = OSPC_ERR_NO_ERROR;
register unsigned bufidx = 0;
unsigned char *tmpptr = OSPC_OSNULL;
unsigned delimitsz = 0,
delimitidx = 0;
unsigned int len = 1;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionRead() delim = <%s> len = <%d>\n",
ospvDelimiter ? ospvDelimiter : "", *ospvLength));
/*
* with a delimiter present, read from buffer until
* a delimiter is encountered
*/
if (ospvDelimiter != OSPC_OSNULL)
{
delimitsz = strlen(ospvDelimiter);
tmpptr = (unsigned char *)ospvBuffer;
while (delimitsz != delimitidx &&
bufidx < *ospvLength &&
errorcode == OSPC_ERR_NO_ERROR)
{
if (OSPM_COMM_SECURED_IO(ospvHttp->ServicePoint))
{
errorcode = OSPPSSLWrapGetData(
(void *)&((unsigned char *)ospvBuffer)[bufidx],
&len,
(OSPTSSLSESSION *)
ospvHttp->SSLSession);
}
else
{
errorcode = OSPPSockRead(ospvHttp,
&((unsigned char *)ospvBuffer)[bufidx],
&len);
}
if (errorcode == OSPC_ERR_NO_ERROR)
{
/*
* does the input character match the corresponding
* character in our delimiter string?
*/
if (((unsigned char *)ospvBuffer)[bufidx]
== ospvDelimiter[delimitidx])
{
/*
* yes, we have a character match.
* if delimitidx is 0, set the tmpptr to the
* beginning buffer address which may contain the
* delimiter.
*/
if (!delimitidx)
{
tmpptr = &((unsigned char *)ospvBuffer)[bufidx];
}
delimitidx++;
}
else
/*
* not a match, reset delimitidx
*/
delimitidx = 0;
bufidx++;
}
}
if (errorcode == OSPC_ERR_NO_ERROR)
{
/*
* overwrite the current length. set to the actual
* bytes received in total
*/
*ospvLength = bufidx;
/*
* terminate the delimited input buffer
*/
if (bufidx < *ospvLength)
{
((unsigned char *)ospvBuffer)[bufidx] = '\0';
}
}
}
else
{
/*
* read the whole message from the SSL internal buffer/socket
*/
len = *ospvLength;
if (OSPM_COMM_SECURED_IO(ospvHttp->ServicePoint))
{
errorcode = OSPPSSLWrapGetData(ospvBuffer, ospvLength,
(OSPTSSLSESSION *)ospvHttp->SSLSession);
}
else
{
errorcode = OSPPSockRead(ospvHttp,
&((unsigned char *)ospvBuffer)[bufidx],
&len);
}
}
/*
OSPM_DBG((OSPVDbgFlag&OSPC_DBGNET),("NETIO: OSPPSSLSessionRead() recv [%*s]\n",
len, (char *)ospvBuffer));
*/
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionRead() (%d)\n", errorcode));
return errorcode;
}
int
OSPPSSLSessionWrite(
OSPTHTTP *ospvHttp,
void *ospvBuffer,
unsigned int *ospvLength)
{
int errorcode = OSPC_ERR_NO_ERROR;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionWrite()\n"));
if (OSPM_COMM_SECURED_IO(ospvHttp->ServicePoint))
{
errorcode = OSPPSSLWrapSendData(ospvBuffer,
ospvLength,
(OSPTSSLSESSION *)ospvHttp->SSLSession);
}
else
{
errorcode = OSPPSockWrite(ospvHttp,
(unsigned char *)ospvBuffer, ospvLength);
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionWrite() (%d)\n", errorcode));
return errorcode;
}
OSPTSSLSESSION *
OSPPSSLSessionAlloc()
{
OSPTSSLSESSION *sslsess = OSPC_OSNULL;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionAlloc()\n"));
OSPM_MALLOC(sslsess, OSPTSSLSESSION, sizeof(OSPTSSLSESSION));
if (sslsess != OSPC_OSNULL)
{
OSPM_MEMSET(sslsess, 0, sizeof(OSPTSSLSESSION));
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionAlloc() (%lx)\n", (unsigned long)sslsess));
return sslsess;
}
unsigned
OSPPSSLSessionHasSessionId(
OSPTSSLSESSION *ospvSSLSession)
{
unsigned hassessionid = 0;
OSPM_DBGENTER(("ENTER: OSPPSSLSessionHasSessionId()\n"));
if (ospvSSLSession != OSPC_OSNULL)
{
hassessionid = (ospvSSLSession->SessionId != OSPC_OSNULL);
}
OSPM_DBGEXIT(("EXIT : OSPPSSLSessionHasSessionId() (%d)\n", hassessionid));
return hassessionid;
}