forked from zhaojh329/ssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbedtls.c
442 lines (340 loc) · 10.2 KB
/
mbedtls.c
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
/* SPDX-License-Identifier: MIT */
/*
* Author: Jianhui Zhao <zhaojh329@gmail.com>
*/
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#include "ssl.h"
#include <mbedtls/ssl.h>
#include <mbedtls/certs.h>
#include <mbedtls/x509.h>
#include <mbedtls/rsa.h>
#include <mbedtls/error.h>
#include <mbedtls/version.h>
#include <mbedtls/entropy.h>
#if MBEDTLS_VERSION_NUMBER < 0x02040000L
#include <mbedtls/net.h>
#else
#include <mbedtls/net_sockets.h>
#endif
#if defined(MBEDTLS_SSL_CACHE_C)
#include <mbedtls/ssl_cache.h>
#endif
struct ssl_context {
mbedtls_ssl_config conf;
mbedtls_pk_context key;
mbedtls_x509_crt ca_cert;
mbedtls_x509_crt cert;
#if defined(MBEDTLS_SSL_CACHE_C)
mbedtls_ssl_cache_context cache;
#endif
bool server;
int *ciphersuites;
};
struct mbedtls_ssl {
int err;
mbedtls_ssl_context ssl;
mbedtls_net_context net;
};
static inline mbedtls_ssl_context *ssl_to_mbedtls_ssl(struct ssl *ssl)
{
return &((struct mbedtls_ssl *)ssl)->ssl;
}
static int urandom(void *ctx, unsigned char *out, size_t len)
{
int ret = 0;
int fd;
fd = open("/dev/urandom", O_RDONLY);
if (fd < 0)
return MBEDTLS_ERR_ENTROPY_SOURCE_FAILED;
if (read(fd, out, len) < 0)
ret = MBEDTLS_ERR_ENTROPY_SOURCE_FAILED;
close(fd);
return ret;
}
#define AES_GCM_CIPHERS(v) \
MBEDTLS_TLS_##v##_WITH_AES_128_GCM_SHA256, \
MBEDTLS_TLS_##v##_WITH_AES_256_GCM_SHA384
#define AES_CBC_CIPHERS(v) \
MBEDTLS_TLS_##v##_WITH_AES_128_CBC_SHA, \
MBEDTLS_TLS_##v##_WITH_AES_256_CBC_SHA
#define AES_CIPHERS(v) \
AES_GCM_CIPHERS(v), \
AES_CBC_CIPHERS(v)
static const int default_ciphersuites_server[] =
{
MBEDTLS_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,
AES_GCM_CIPHERS(ECDHE_ECDSA),
MBEDTLS_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256,
AES_GCM_CIPHERS(ECDHE_RSA),
AES_CBC_CIPHERS(ECDHE_RSA),
AES_CIPHERS(RSA),
0
};
static const int default_ciphersuites_client[] =
{
MBEDTLS_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,
AES_GCM_CIPHERS(ECDHE_ECDSA),
MBEDTLS_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256,
AES_GCM_CIPHERS(ECDHE_RSA),
MBEDTLS_TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256,
AES_GCM_CIPHERS(DHE_RSA),
AES_CBC_CIPHERS(ECDHE_ECDSA),
AES_CBC_CIPHERS(ECDHE_RSA),
AES_CBC_CIPHERS(DHE_RSA),
MBEDTLS_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA,
AES_CIPHERS(RSA),
MBEDTLS_TLS_RSA_WITH_3DES_EDE_CBC_SHA,
0
};
const char *ssl_last_error_string(struct ssl *ssl, char *buf, int len)
{
mbedtls_strerror(ssl->err, buf, len);
return buf;
}
struct ssl_context *ssl_context_new(bool server)
{
struct ssl_context *ctx;
mbedtls_ssl_config *conf;
int ep;
ctx = calloc(1, sizeof(*ctx));
if (!ctx)
return NULL;
ctx->server = server;
mbedtls_pk_init(&ctx->key);
mbedtls_x509_crt_init(&ctx->cert);
mbedtls_x509_crt_init(&ctx->ca_cert);
#if defined(MBEDTLS_SSL_CACHE_C)
mbedtls_ssl_cache_init(&ctx->cache);
mbedtls_ssl_cache_set_timeout(&ctx->cache, 30 * 60);
mbedtls_ssl_cache_set_max_entries(&ctx->cache, 5);
#endif
conf = &ctx->conf;
mbedtls_ssl_config_init(conf);
ep = server ? MBEDTLS_SSL_IS_SERVER : MBEDTLS_SSL_IS_CLIENT;
mbedtls_ssl_config_defaults(conf, ep, MBEDTLS_SSL_TRANSPORT_STREAM, MBEDTLS_SSL_PRESET_DEFAULT);
mbedtls_ssl_conf_rng(conf, urandom, NULL);
if (server) {
mbedtls_ssl_conf_authmode(conf, MBEDTLS_SSL_VERIFY_NONE);
mbedtls_ssl_conf_ciphersuites(conf, default_ciphersuites_server);
mbedtls_ssl_conf_min_version(conf, MBEDTLS_SSL_MAJOR_VERSION_3, MBEDTLS_SSL_MINOR_VERSION_3);
} else {
mbedtls_ssl_conf_authmode(conf, MBEDTLS_SSL_VERIFY_OPTIONAL);
mbedtls_ssl_conf_ciphersuites(conf, default_ciphersuites_client);
}
#if defined(MBEDTLS_SSL_CACHE_C)
mbedtls_ssl_conf_session_cache(conf, &ctx->cache,
mbedtls_ssl_cache_get,
mbedtls_ssl_cache_set);
#endif
return ctx;
}
void ssl_context_free(struct ssl_context *ctx)
{
if (!ctx)
return;
#if defined(MBEDTLS_SSL_CACHE_C)
mbedtls_ssl_cache_free(&ctx->cache);
#endif
mbedtls_pk_free(&ctx->key);
mbedtls_x509_crt_free(&ctx->ca_cert);
mbedtls_x509_crt_free(&ctx->cert);
mbedtls_ssl_config_free(&ctx->conf);
free(ctx->ciphersuites);
free(ctx);
}
static void ssl_update_own_cert(struct ssl_context *ctx)
{
if (!ctx->cert.version)
return;
if (!ctx->key.pk_info)
return;
mbedtls_ssl_conf_own_cert(&ctx->conf, &ctx->cert, &ctx->key);
}
int ssl_load_ca_cert_file(struct ssl_context *ctx, const char *file)
{
int ret;
ret = mbedtls_x509_crt_parse_file(&ctx->ca_cert, file);
if (ret)
return -1;
mbedtls_ssl_conf_ca_chain(&ctx->conf, &ctx->ca_cert, NULL);
mbedtls_ssl_conf_authmode(&ctx->conf, MBEDTLS_SSL_VERIFY_OPTIONAL);
return 0;
}
int ssl_load_cert_file(struct ssl_context *ctx, const char *file)
{
int ret;
ret = mbedtls_x509_crt_parse_file(&ctx->cert, file);
if (ret)
return -1;
ssl_update_own_cert(ctx);
return 0;
}
int ssl_load_key_file(struct ssl_context *ctx, const char *file)
{
int ret;
ret = mbedtls_pk_parse_keyfile(&ctx->key, file, NULL);
if (ret)
return -1;
ssl_update_own_cert(ctx);
return 0;
}
int ssl_set_ciphers(struct ssl_context *ctx, const char *ciphers)
{
int *ciphersuites = NULL, *tmp, id;
char *cipherstr, *p, *last, c;
size_t len = 0;
if (ciphers == NULL)
return -1;
cipherstr = strdup(ciphers);
if (cipherstr == NULL)
return -1;
for (p = cipherstr, last = p;; p++) {
if (*p == ':' || *p == 0) {
c = *p;
*p = 0;
id = mbedtls_ssl_get_ciphersuite_id(last);
if (id != 0) {
tmp = realloc(ciphersuites, (len + 2) * sizeof(int));
if (tmp == NULL) {
free(ciphersuites);
free(cipherstr);
return -1;
}
ciphersuites = tmp;
ciphersuites[len++] = id;
ciphersuites[len] = 0;
}
if (c == 0)
break;
last = p + 1;
}
/*
* mbedTLS expects cipher names with dashes while many sources elsewhere
* like the Firefox wiki or Wireshark specify ciphers with underscores,
* so simply convert all underscores to dashes to accept both notations.
*/
else if (*p == '_') {
*p = '-';
}
}
free(cipherstr);
if (len == 0)
return -1;
mbedtls_ssl_conf_ciphersuites(&ctx->conf, ciphersuites);
free(ctx->ciphersuites);
ctx->ciphersuites = ciphersuites;
return 0;
}
int ssl_set_require_validation(struct ssl_context *ctx, bool require)
{
int mode = MBEDTLS_SSL_VERIFY_OPTIONAL;
if (!require)
mode = MBEDTLS_SSL_VERIFY_NONE;
mbedtls_ssl_conf_authmode(&ctx->conf, mode);
return 0;
}
struct ssl *ssl_session_new(struct ssl_context *ctx, int sock)
{
struct mbedtls_ssl *ssl;
ssl = calloc(1, sizeof(struct mbedtls_ssl));
if (!ssl)
return NULL;
mbedtls_ssl_init(&ssl->ssl);
if (mbedtls_ssl_setup(&ssl->ssl, &ctx->conf)) {
free(ssl);
return NULL;
}
ssl->net.fd = sock;
mbedtls_ssl_set_bio(&ssl->ssl, &ssl->net, mbedtls_net_send, mbedtls_net_recv, NULL);
return (struct ssl *)ssl;
}
void ssl_session_free(struct ssl *ssl)
{
if (!ssl)
return;
mbedtls_ssl_free(ssl_to_mbedtls_ssl(ssl));
free(ssl);
}
void ssl_set_server_name(struct ssl *ssl, const char *name)
{
mbedtls_ssl_set_hostname(ssl_to_mbedtls_ssl(ssl), name);
}
#define ssl_need_retry(ret) \
do { \
if (ret == MBEDTLS_ERR_SSL_WANT_READ) \
return SSL_WANT_READ; \
else if (ret == MBEDTLS_ERR_SSL_WANT_WRITE) \
return SSL_WANT_WRITE; \
} while (0)
static void ssl_verify_cert(mbedtls_ssl_context *ssl, void (*on_verify_error)(int error, const char *str, void *arg), void *arg)
{
const char *msg = NULL;
int r;
r = mbedtls_ssl_get_verify_result(ssl);
r &= ~MBEDTLS_X509_BADCERT_CN_MISMATCH;
if (r & MBEDTLS_X509_BADCERT_EXPIRED)
msg = "certificate has expired";
else if (r & MBEDTLS_X509_BADCERT_REVOKED)
msg = "certificate has been revoked";
else if (r & MBEDTLS_X509_BADCERT_NOT_TRUSTED)
msg = "certificate is self-signed or not signed by a trusted CA";
else
msg = "unknown error";
if (r && on_verify_error)
on_verify_error(r, msg, arg);
}
static int ssl_handshake(struct ssl *ssl, bool server,
void (*on_verify_error)(int error, const char *str, void *arg), void *arg)
{
int r;
ssl->err = 0;
r = mbedtls_ssl_handshake(ssl_to_mbedtls_ssl(ssl));
if (r == 0) {
ssl_verify_cert(ssl_to_mbedtls_ssl(ssl), on_verify_error, arg);
return SSL_OK;
}
ssl_need_retry(r);
ssl->err = r;
return SSL_ERROR;
}
int ssl_accept(struct ssl *ssl, void (*on_verify_error)(int error, const char *str, void *arg), void *arg)
{
return ssl_handshake(ssl, true, on_verify_error, arg);
}
int ssl_connect(struct ssl *ssl, void (*on_verify_error)(int error, const char *str, void *arg), void *arg)
{
return ssl_handshake(ssl, false, on_verify_error, arg);
}
int ssl_write(struct ssl *ssl, const void *buf, int len)
{
int done = 0;
int ret = 0;
ssl->err = 0;
while (done != len) {
ret = mbedtls_ssl_write(ssl_to_mbedtls_ssl(ssl), (const unsigned char *)buf + done, len - done);
if (ret < 0) {
ssl_need_retry(ret);
ssl->err = ret;
return -1;
}
done += ret;
}
return done;
}
int ssl_read(struct ssl *ssl, void *buf, int len)
{
int ret = mbedtls_ssl_read(ssl_to_mbedtls_ssl(ssl), (unsigned char *)buf, len);
ssl->err = 0;
if (ret < 0) {
ssl_need_retry(ret);
if (ret == MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY)
return 0;
ssl->err = ret;
return SSL_ERROR;
}
return ret;
}