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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
|
/** @file
* IPRT - Crypto - Secure Socket Layer (SSL) / Transport Security Layer (TLS).
*/
/*
* Copyright (C) 2018-2020 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
#ifdef IPRT_WITH_OPENSSL /* whole file */
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
# include "internal/iprt.h"
# include <iprt/crypto/ssl.h>
# include <iprt/asm.h>
# include <iprt/assert.h>
# include <iprt/err.h>
# include <iprt/file.h>
# include <iprt/mem.h>
# include <iprt/string.h>
# include "internal/magics.h"
# include "internal/iprt-openssl.h"
# include <openssl/ssl.h>
# include <openssl/tls1.h>
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
/**
* SSL instance data for OpenSSL.
*/
typedef struct RTCRSSLINT
{
/** Magic value (RTCRSSLINT_MAGIC). */
uint32_t u32Magic;
/** Reference count. */
uint32_t volatile cRefs;
/** The SSL context. */
SSL_CTX *pCtx;
} RTCRSSLINT;
/**
* SSL session instance data for OpenSSL.
*/
typedef struct RTCRSSLSESSIONINT
{
/** Magic value (RTCRSSLSESSIONINT_MAGIC). */
uint32_t u32Magic;
/** Reference count. */
uint32_t volatile cRefs;
/** RTCRSSLSESSION_F_XXX. */
uint32_t fFlags;
/** The SSL instance. */
SSL *pSsl;
/** The socket BIO instance. */
BIO *pBio;
} RTCRSSLSESSIONINT;
RTDECL(int) RTCrSslCreate(PRTCRSSL phSsl, uint32_t fFlags)
{
AssertPtr(phSsl);
*phSsl = NIL_RTCRSSL;
AssertReturn(!fFlags, VERR_INVALID_FLAGS);
SSL_library_init();
/*
* We aim at TLSv1 or higher here by default.
*/
# if OPENSSL_VERSION_NUMBER >= 0x10100000
const SSL_METHOD *pSslMethod = TLS_method();
# elif OPENSSL_VERSION_NUMBER >= 0x10002000
const SSL_METHOD *pSslMethod = SSLv23_method();
# elif OPENSSL_VERSION_NUMBER >= 0x10000000
const SSL_METHOD *pSslMethod = TLSv1_method();
# else
SSL_METHOD *pSslMethod = TLSv1_method();
# endif
if (pSslMethod)
{
RTCRSSLINT *pThis = (RTCRSSLINT *)RTMemAllocZ(sizeof(*pThis));
if (pThis)
{
pThis->pCtx = SSL_CTX_new(pSslMethod);
if (pThis->pCtx)
{
/* Help with above aim. */
# if OPENSSL_VERSION_NUMBER >= 0x10100000
# ifndef SSL_CTX_get_min_proto_version
/* Some older OpenSSL 1.1.0 releases lack the getters, officially they were
* added with 1.1.1 but someone cherry picked them, just maybe too late. */
# define SSL_CTX_get_min_proto_version(ctx) (0)
# endif
if (SSL_CTX_get_min_proto_version(pThis->pCtx) < TLS1_VERSION)
SSL_CTX_set_min_proto_version(pThis->pCtx, TLS1_VERSION);
# elif OPENSSL_VERSION_NUMBER >= 0x10002000
SSL_CTX_set_options(pThis->pCtx, SSL_OP_NO_SSLv2);
SSL_CTX_set_options(pThis->pCtx, SSL_OP_NO_SSLv3);
# endif
/*
* Complete the instance and return it.
*/
pThis->u32Magic = RTCRSSLINT_MAGIC;
pThis->cRefs = 1;
*phSsl = pThis;
return VINF_SUCCESS;
}
}
return VERR_NO_MEMORY;
}
return VERR_NOT_SUPPORTED;
}
RTDECL(uint32_t) RTCrSslRetain(RTCRSSL hSsl)
{
RTCRSSLINT *pThis = hSsl;
AssertPtrReturn(pThis, UINT32_MAX);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, UINT32_MAX);
uint32_t cRefs = ASMAtomicIncU32(&pThis->cRefs);
Assert(cRefs > 1);
Assert(cRefs < 1024);
return cRefs;
}
/**
* Worker for RTCrSslRelease.
*/
static int rtCrSslDestroy(RTCRSSLINT *pThis)
{
ASMAtomicWriteU32(&pThis->u32Magic, ~RTCRSSLINT_MAGIC);
SSL_CTX_free(pThis->pCtx);
pThis->pCtx = NULL;
RTMemFree(pThis);
return 0;
}
RTDECL(uint32_t) RTCrSslRelease(RTCRSSL hSsl)
{
RTCRSSLINT *pThis = hSsl;
if (pThis == NIL_RTCRSSL)
return 0;
AssertPtrReturn(pThis, UINT32_MAX);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, UINT32_MAX);
uint32_t cRefs = ASMAtomicDecU32(&pThis->cRefs);
Assert(cRefs < 1024);
if (cRefs == 0)
return rtCrSslDestroy(pThis);
return cRefs;
}
RTDECL(int) RTCrSslSetCertificateFile(RTCRSSL hSsl, const char *pszFile, uint32_t fFlags)
{
RTCRSSLINT *pThis = hSsl;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, VERR_INVALID_HANDLE);
AssertReturn(!(fFlags & ~RTCRSSL_FILE_F_ASN1), VERR_INVALID_FLAGS);
int rcOssl = SSL_CTX_use_certificate_file(pThis->pCtx, pszFile,
RTCRSSL_FILE_F_ASN1 & fFlags ? SSL_FILETYPE_ASN1 : SSL_FILETYPE_PEM);
if (rcOssl != 0)
return VINF_SUCCESS;
return !pszFile || !*pszFile || !RTFileExists(pszFile) ? VERR_FILE_NOT_FOUND : VERR_OPEN_FAILED; /** @todo Better status codes */
}
RTDECL(int) RTCrSslSetPrivateKeyFile(RTCRSSL hSsl, const char *pszFile, uint32_t fFlags)
{
RTCRSSLINT *pThis = hSsl;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, VERR_INVALID_HANDLE);
AssertReturn(!(fFlags & ~RTCRSSL_FILE_F_ASN1), VERR_INVALID_FLAGS);
int rcOssl = SSL_CTX_use_PrivateKey_file(pThis->pCtx, pszFile,
RTCRSSL_FILE_F_ASN1 & fFlags ? SSL_FILETYPE_ASN1 : SSL_FILETYPE_PEM);
if (rcOssl != 0)
return VINF_SUCCESS;
return !pszFile || !*pszFile || !RTFileExists(pszFile) ? VERR_FILE_NOT_FOUND : VERR_OPEN_FAILED; /** @todo Better status codes */
}
RTDECL(int) RTCrSslLoadTrustedRootCerts(RTCRSSL hSsl, const char *pszFile, const char *pszDir)
{
RTCRSSLINT *pThis = hSsl;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, VERR_INVALID_HANDLE);
int rcOssl = SSL_CTX_load_verify_locations(pThis->pCtx, pszFile, pszDir);
if (rcOssl != 0)
return VINF_SUCCESS;
if (!pszFile || !*pszFile || !RTFileExists(pszFile))
return VERR_FILE_NOT_FOUND;
return VERR_OPEN_FAILED; /** @todo Better status codes */
}
RTDECL(int) RTCrSslSetNoPeerVerify(RTCRSSL hSsl)
{
RTCRSSLINT *pThis = hSsl;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, VERR_INVALID_HANDLE);
SSL_CTX_set_verify(pThis->pCtx, SSL_VERIFY_NONE, NULL);
return VINF_SUCCESS;
}
//RTDECL(int) RTCrSslCreateSession(RTCRSSL hSsl, RTSOCKET hSocket, uint32_t fFlags, PRTCRSSLSESSION phSslConn);
RTDECL(int) RTCrSslCreateSessionForNativeSocket(RTCRSSL hSsl, RTHCINTPTR hNativeSocket, uint32_t fFlags,
PRTCRSSLSESSION phSslSession)
{
/*
* Validate input.
*/
*phSslSession = NIL_RTCRSSLSESSION;
RTCRSSLINT *pThis = hSsl;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLINT_MAGIC, VERR_INVALID_HANDLE);
AssertReturn(!(fFlags & ~RTCRSSLSESSION_F_NON_BLOCKING), VERR_INVALID_FLAGS);
/*
* Create a new session.
*/
int rc = VERR_NO_MEMORY;
RTCRSSLSESSIONINT *pSession = (RTCRSSLSESSIONINT *)RTMemAllocZ(sizeof(*pSession));
if (pSession)
{
pSession->pSsl = SSL_new(pThis->pCtx);
if (pSession->pSsl)
{
/* Disable read-ahead if non-blocking socket relying on select/poll. */
if (fFlags & RTCRSSLSESSION_F_NON_BLOCKING)
SSL_set_read_ahead(pSession->pSsl, 0);
/* Create a wrapper for the socket handle. */
pSession->pBio = BIO_new_socket(hNativeSocket, BIO_NOCLOSE);
if (pSession->pBio)
{
# if (OPENSSL_VERSION_NUMBER >= 0x10100000 && !defined(LIBRESSL_VERSION_NUMBER)) || LIBRESSL_VERSION_NUMBER >= 0x2070000f
BIO_up_ref(pSession->pBio); /* our reference. */
# endif
SSL_set_bio(pSession->pSsl, pSession->pBio, pSession->pBio);
/*
* Done.
*/
pSession->cRefs = 1;
pSession->u32Magic = RTCRSSLSESSIONINT_MAGIC;
*phSslSession = pSession;
return VINF_SUCCESS;
}
SSL_free(pSession->pSsl);
pSession->pSsl = NULL;
}
RTMemFree(pThis);
}
return rc;
}
/*********************************************************************************************************************************
* Session implementation. *
*********************************************************************************************************************************/
RTDECL(uint32_t) RTCrSslSessionRetain(RTCRSSLSESSION hSslSession)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, UINT32_MAX);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, UINT32_MAX);
uint32_t cRefs = ASMAtomicIncU32(&pThis->cRefs);
Assert(cRefs > 1);
Assert(cRefs < 1024);
return cRefs;
}
/**
* Worker for RTCrSslRelease.
*/
static int rtCrSslSessionDestroy(RTCRSSLSESSIONINT *pThis)
{
ASMAtomicWriteU32(&pThis->u32Magic, ~RTCRSSLSESSIONINT_MAGIC);
SSL_free(pThis->pSsl);
pThis->pSsl = NULL;
# if (OPENSSL_VERSION_NUMBER >= 0x10100000 && !defined(LIBRESSL_VERSION_NUMBER)) || LIBRESSL_VERSION_NUMBER >= 0x2070000f
BIO_free(pThis->pBio);
# endif
pThis->pBio = NULL;
RTMemFree(pThis);
return 0;
}
RTDECL(uint32_t) RTCrSslSessionRelease(RTCRSSLSESSION hSslSession)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
if (pThis == NIL_RTCRSSLSESSION)
return 0;
AssertPtrReturn(pThis, UINT32_MAX);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, UINT32_MAX);
uint32_t cRefs = ASMAtomicDecU32(&pThis->cRefs);
Assert(cRefs < 1024);
if (cRefs == 0)
return rtCrSslSessionDestroy(pThis);
return cRefs;
}
RTDECL(int) RTCrSslSessionAccept(RTCRSSLSESSION hSslSession, uint32_t fFlags)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, VERR_INVALID_HANDLE);
AssertReturn(!fFlags, VERR_INVALID_FLAGS);
int rcOssl = SSL_accept(pThis->pSsl);
if (rcOssl > 0)
return VINF_SUCCESS;
/** @todo better status codes. */
if (BIO_should_retry(pThis->pBio))
return VERR_TRY_AGAIN;
return VERR_NOT_SUPPORTED;
}
RTDECL(int) RTCrSslSessionConnect(RTCRSSLSESSION hSslSession, uint32_t fFlags)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, VERR_INVALID_HANDLE);
AssertReturn(!fFlags, VERR_INVALID_FLAGS);
int rcOssl = SSL_connect(pThis->pSsl);
if (rcOssl > 0)
return VINF_SUCCESS;
/** @todo better status codes. */
if (BIO_should_retry(pThis->pBio))
return VERR_TRY_AGAIN;
return VERR_NOT_SUPPORTED;
}
RTDECL(const char *) RTCrSslSessionGetVersion(RTCRSSLSESSION hSslSession)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, NULL);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, NULL);
return SSL_get_version(pThis->pSsl);
}
RTDECL(int) RTCrSslSessionGetCertIssuerNameAsString(RTCRSSLSESSION hSslSession, char *pszBuf, size_t cbBuf, size_t *pcbActual)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, VERR_INVALID_HANDLE);
AssertPtrNull(pszBuf);
AssertPtrNull(pcbActual);
if (pcbActual)
*pcbActual = 0;
/*
* Get and format the certificate issuer name.
*/
int rc = VERR_NOT_AVAILABLE;
X509 *pCert = SSL_get_certificate(pThis->pSsl);
if (pCert)
{
X509_NAME *pIssuer = X509_get_issuer_name(pCert);
if (pIssuer)
{
char *pszSrc = X509_NAME_oneline(pIssuer, NULL, 0);
if (pszSrc)
{
/*
* Copy out the result and free it.
*/
size_t cbNeeded = strlen(pszSrc) + 1;
if (pcbActual)
*pcbActual = cbNeeded;
if (pszBuf != NULL && cbBuf > 0)
{
if (cbBuf >= cbNeeded)
{
memcpy(pszBuf, pszSrc, cbNeeded);
rc = VINF_SUCCESS;
}
else
{
memcpy(pszBuf, pszSrc, cbBuf - 1);
pszBuf[cbBuf - 1] = '\0';
rc = VERR_BUFFER_OVERFLOW;
}
}
else
rc = VERR_BUFFER_OVERFLOW;
OPENSSL_free(pszSrc);
}
}
}
return rc;
}
RTDECL(bool) RTCrSslSessionPending(RTCRSSLSESSION hSslSession)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, true);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, true);
return SSL_pending(pThis->pSsl) != 0;
}
RTDECL(ssize_t) RTCrSslSessionRead(RTCRSSLSESSION hSslSession, void *pvBuf, size_t cbToRead)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, VERR_INVALID_HANDLE);
Assert((size_t)(int)cbToRead == cbToRead);
int cbActual = SSL_read(pThis->pSsl, pvBuf, (int)cbToRead);
if (cbActual > 0)
return cbActual;
if (BIO_should_retry(pThis->pBio))
return VERR_TRY_AGAIN;
return VERR_READ_ERROR; /** @todo better status codes. */
}
RTDECL(ssize_t) RTCrSslSessionWrite(RTCRSSLSESSION hSslSession, void const *pvBuf, size_t cbToWrite)
{
RTCRSSLSESSIONINT *pThis = hSslSession;
AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
AssertReturn(pThis->u32Magic == RTCRSSLSESSIONINT_MAGIC, VERR_INVALID_HANDLE);
Assert((size_t)(int)cbToWrite == cbToWrite);
Assert(cbToWrite != 0 /* undefined behavior if zero */);
int cbActual = SSL_write(pThis->pSsl, pvBuf, (int)cbToWrite);
if (cbActual > 0)
return cbActual;
if (BIO_should_retry(pThis->pBio))
return VERR_TRY_AGAIN;
return VERR_WRITE_ERROR; /** @todo better status codes. */
}
#endif /* IPRT_WITH_OPENSSL */
|