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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/io/channel.h>
#include <aws/io/file_utils.h>
#include <aws/io/logging.h>
#include <aws/io/pkcs11.h>
#include <aws/io/private/pem_utils.h>
#include <aws/io/private/tls_channel_handler_shared.h>
#include <aws/io/tls_channel_handler.h>
#define AWS_DEFAULT_TLS_TIMEOUT_MS 10000
#include <aws/common/string.h>
void aws_tls_ctx_options_init_default_client(struct aws_tls_ctx_options *options, struct aws_allocator *allocator) {
AWS_ZERO_STRUCT(*options);
options->allocator = allocator;
options->minimum_tls_version = AWS_IO_TLS_VER_SYS_DEFAULTS;
options->cipher_pref = AWS_IO_TLS_CIPHER_PREF_SYSTEM_DEFAULT;
options->verify_peer = true;
options->max_fragment_size = g_aws_channel_max_fragment_size;
}
void aws_tls_ctx_options_clean_up(struct aws_tls_ctx_options *options) {
aws_byte_buf_clean_up(&options->ca_file);
aws_string_destroy(options->ca_path);
aws_byte_buf_clean_up(&options->certificate);
aws_byte_buf_clean_up_secure(&options->private_key);
#ifdef __APPLE__
aws_byte_buf_clean_up_secure(&options->pkcs12);
aws_byte_buf_clean_up_secure(&options->pkcs12_password);
# if !defined(AWS_OS_IOS)
aws_string_destroy(options->keychain_path);
# endif
#endif
aws_string_destroy(options->alpn_list);
aws_pkcs11_lib_release(options->pkcs11.lib);
aws_string_destroy_secure(options->pkcs11.user_pin);
aws_string_destroy(options->pkcs11.token_label);
aws_string_destroy(options->pkcs11.private_key_object_label);
AWS_ZERO_STRUCT(*options);
}
int aws_tls_ctx_options_init_client_mtls(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const struct aws_byte_cursor *cert,
const struct aws_byte_cursor *pkey) {
#if !defined(AWS_OS_IOS)
aws_tls_ctx_options_init_default_client(options, allocator);
if (aws_byte_buf_init_copy_from_cursor(&options->certificate, allocator, *cert)) {
goto error;
}
if (aws_sanitize_pem(&options->certificate, allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid certificate. File must contain PEM encoded data");
goto error;
}
if (aws_byte_buf_init_copy_from_cursor(&options->private_key, allocator, *pkey)) {
goto error;
}
if (aws_sanitize_pem(&options->private_key, allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid private key. File must contain PEM encoded data");
goto error;
}
return AWS_OP_SUCCESS;
error:
aws_tls_ctx_options_clean_up(options);
return AWS_OP_ERR;
#else
(void)allocator;
(void)cert;
(void)pkey;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: This platform does not support PEM certificates");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_client_mtls_from_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *cert_path,
const char *pkey_path) {
#if !defined(AWS_OS_IOS)
aws_tls_ctx_options_init_default_client(options, allocator);
if (aws_byte_buf_init_from_file(&options->certificate, allocator, cert_path)) {
goto error;
}
if (aws_sanitize_pem(&options->certificate, allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid certificate. File must contain PEM encoded data");
goto error;
}
if (aws_byte_buf_init_from_file(&options->private_key, allocator, pkey_path)) {
goto error;
}
if (aws_sanitize_pem(&options->private_key, allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid private key. File must contain PEM encoded data");
goto error;
}
return AWS_OP_SUCCESS;
error:
aws_tls_ctx_options_clean_up(options);
return AWS_OP_ERR;
#else
(void)allocator;
(void)cert_path;
(void)pkey_path;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: This platform does not support PEM certificates");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_client_mtls_with_pkcs11(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const struct aws_tls_ctx_pkcs11_options *pkcs11_options) {
#if defined(_WIN32) || defined(__APPLE__)
(void)allocator;
(void)pkcs11_options;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: This platform does not currently support TLS with PKCS#11.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#else
aws_tls_ctx_options_init_default_client(options, allocator);
/* pkcs11_lib is required */
if (pkcs11_options->pkcs11_lib == NULL) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: A PKCS#11 library must be specified.");
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error;
}
options->pkcs11.lib = aws_pkcs11_lib_acquire(pkcs11_options->pkcs11_lib); /* cannot fail */
/* user_pin is optional */
if (pkcs11_options->user_pin.ptr != NULL) {
options->pkcs11.user_pin = aws_string_new_from_cursor(allocator, &pkcs11_options->user_pin);
}
/* slot_id is optional */
if (pkcs11_options->slot_id != NULL) {
options->pkcs11.slot_id = *pkcs11_options->slot_id;
options->pkcs11.has_slot_id = true;
}
/* token_label is optional */
if (pkcs11_options->token_label.ptr != NULL) {
options->pkcs11.token_label = aws_string_new_from_cursor(allocator, &pkcs11_options->token_label);
}
/* private_key_object_label is optional */
if (pkcs11_options->private_key_object_label.ptr != NULL) {
options->pkcs11.private_key_object_label =
aws_string_new_from_cursor(allocator, &pkcs11_options->private_key_object_label);
}
/* certificate required, but there are multiple ways to pass it in */
if ((pkcs11_options->cert_file_path.ptr != NULL) && (pkcs11_options->cert_file_contents.ptr != NULL)) {
AWS_LOGF_ERROR(
AWS_LS_IO_TLS, "static: Both certificate filepath and contents are specified. Only one may be set.");
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error;
} else if (pkcs11_options->cert_file_path.ptr != NULL) {
struct aws_string *tmp_string = aws_string_new_from_cursor(allocator, &pkcs11_options->cert_file_path);
int op = aws_byte_buf_init_from_file(&options->certificate, allocator, aws_string_c_str(tmp_string));
aws_string_destroy(tmp_string);
if (op != AWS_OP_SUCCESS) {
goto error;
}
} else if (pkcs11_options->cert_file_contents.ptr != NULL) {
if (aws_byte_buf_init_copy_from_cursor(&options->certificate, allocator, pkcs11_options->cert_file_contents)) {
goto error;
}
} else {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: A certificate must be specified.");
aws_raise_error(AWS_ERROR_INVALID_ARGUMENT);
goto error;
}
if (aws_sanitize_pem(&options->certificate, allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid certificate. File must contain PEM encoded data");
goto error;
}
/* Success! */
return AWS_OP_SUCCESS;
error:
aws_tls_ctx_options_clean_up(options);
return AWS_OP_ERR;
#endif /* PLATFORM-SUPPORTS-PKCS11-TLS */
}
int aws_tls_ctx_options_set_keychain_path(
struct aws_tls_ctx_options *options,
struct aws_byte_cursor *keychain_path_cursor) {
#if defined(__APPLE__) && !defined(AWS_OS_IOS)
AWS_LOGF_WARN(AWS_LS_IO_TLS, "static: Keychain path is deprecated.");
options->keychain_path = aws_string_new_from_cursor(options->allocator, keychain_path_cursor);
if (!options->keychain_path) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
#else
(void)options;
(void)keychain_path_cursor;
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Keychain path can only be set on MacOS.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_client_mtls_from_system_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *cert_reg_path) {
#ifdef _WIN32
aws_tls_ctx_options_init_default_client(options, allocator);
options->system_certificate_path = cert_reg_path;
return AWS_OP_SUCCESS;
#else
(void)allocator;
(void)cert_reg_path;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: System certificate path can only be set on Windows.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_default_server_from_system_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *cert_reg_path) {
if (aws_tls_ctx_options_init_client_mtls_from_system_path(options, allocator, cert_reg_path)) {
return AWS_OP_ERR;
}
options->verify_peer = false;
return AWS_OP_SUCCESS;
}
int aws_tls_ctx_options_init_client_mtls_pkcs12_from_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *pkcs12_path,
struct aws_byte_cursor *pkcs_pwd) {
#ifdef __APPLE__
aws_tls_ctx_options_init_default_client(options, allocator);
if (aws_byte_buf_init_from_file(&options->pkcs12, allocator, pkcs12_path)) {
return AWS_OP_ERR;
}
if (aws_byte_buf_init_copy_from_cursor(&options->pkcs12_password, allocator, *pkcs_pwd)) {
aws_byte_buf_clean_up_secure(&options->pkcs12);
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
#else
(void)allocator;
(void)pkcs12_path;
(void)pkcs_pwd;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: This platform does not support PKCS#12 files.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_client_mtls_pkcs12(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
struct aws_byte_cursor *pkcs12,
struct aws_byte_cursor *pkcs_pwd) {
#ifdef __APPLE__
aws_tls_ctx_options_init_default_client(options, allocator);
if (aws_byte_buf_init_copy_from_cursor(&options->pkcs12, allocator, *pkcs12)) {
return AWS_OP_ERR;
}
if (aws_byte_buf_init_copy_from_cursor(&options->pkcs12_password, allocator, *pkcs_pwd)) {
aws_byte_buf_clean_up_secure(&options->pkcs12);
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
#else
(void)allocator;
(void)pkcs12;
(void)pkcs_pwd;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: This platform does not support PKCS#12 files.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_server_pkcs12_from_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *pkcs12_path,
struct aws_byte_cursor *pkcs_password) {
if (aws_tls_ctx_options_init_client_mtls_pkcs12_from_path(options, allocator, pkcs12_path, pkcs_password)) {
return AWS_OP_ERR;
}
options->verify_peer = false;
return AWS_OP_SUCCESS;
}
int aws_tls_ctx_options_init_server_pkcs12(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
struct aws_byte_cursor *pkcs12,
struct aws_byte_cursor *pkcs_password) {
if (aws_tls_ctx_options_init_client_mtls_pkcs12(options, allocator, pkcs12, pkcs_password)) {
return AWS_OP_ERR;
}
options->verify_peer = false;
return AWS_OP_SUCCESS;
}
int aws_tls_ctx_options_init_default_server_from_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *cert_path,
const char *pkey_path) {
#if !defined(AWS_OS_IOS)
if (aws_tls_ctx_options_init_client_mtls_from_path(options, allocator, cert_path, pkey_path)) {
return AWS_OP_ERR;
}
options->verify_peer = false;
return AWS_OP_SUCCESS;
#else
(void)allocator;
(void)cert_path;
(void)pkey_path;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Cannot create a server on this platform.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_init_default_server(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
struct aws_byte_cursor *cert,
struct aws_byte_cursor *pkey) {
#if !defined(AWS_OS_IOS)
if (aws_tls_ctx_options_init_client_mtls(options, allocator, cert, pkey)) {
return AWS_OP_ERR;
}
options->verify_peer = false;
return AWS_OP_SUCCESS;
#else
(void)allocator;
(void)cert;
(void)pkey;
AWS_ZERO_STRUCT(*options);
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Cannot create a server on this platform.");
return aws_raise_error(AWS_ERROR_PLATFORM_NOT_SUPPORTED);
#endif
}
int aws_tls_ctx_options_set_alpn_list(struct aws_tls_ctx_options *options, const char *alpn_list) {
options->alpn_list = aws_string_new_from_c_str(options->allocator, alpn_list);
if (!options->alpn_list) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
void aws_tls_ctx_options_set_verify_peer(struct aws_tls_ctx_options *options, bool verify_peer) {
options->verify_peer = verify_peer;
}
void aws_tls_ctx_options_set_minimum_tls_version(
struct aws_tls_ctx_options *options,
enum aws_tls_versions minimum_tls_version) {
options->minimum_tls_version = minimum_tls_version;
}
int aws_tls_ctx_options_override_default_trust_store_from_path(
struct aws_tls_ctx_options *options,
const char *ca_path,
const char *ca_file) {
/* Note: on success these are not cleaned up, their data is "moved" into the options struct */
struct aws_string *ca_path_tmp = NULL;
struct aws_byte_buf ca_file_tmp;
AWS_ZERO_STRUCT(ca_file_tmp);
if (ca_path) {
if (options->ca_path) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: cannot override trust store multiple times");
aws_raise_error(AWS_ERROR_INVALID_STATE);
goto error;
}
ca_path_tmp = aws_string_new_from_c_str(options->allocator, ca_path);
if (!ca_path_tmp) {
goto error;
}
}
if (ca_file) {
if (aws_tls_options_buf_is_set(&options->ca_file)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: cannot override trust store multiple times");
aws_raise_error(AWS_ERROR_INVALID_STATE);
goto error;
}
if (aws_byte_buf_init_from_file(&ca_file_tmp, options->allocator, ca_file)) {
goto error;
}
if (aws_sanitize_pem(&ca_file_tmp, options->allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid CA file. File must contain PEM encoded data");
goto error;
}
}
/* Success, set new values. (no need to clean up old values, we checked earlier that they were unallocated) */
if (ca_path) {
options->ca_path = ca_path_tmp;
}
if (ca_file) {
options->ca_file = ca_file_tmp;
}
return AWS_OP_SUCCESS;
error:
aws_string_destroy_secure(ca_path_tmp);
aws_byte_buf_clean_up_secure(&ca_file_tmp);
return AWS_OP_ERR;
}
void aws_tls_ctx_options_set_extension_data(struct aws_tls_ctx_options *options, void *extension_data) {
options->ctx_options_extension = extension_data;
}
int aws_tls_ctx_options_override_default_trust_store(
struct aws_tls_ctx_options *options,
const struct aws_byte_cursor *ca_file) {
if (aws_tls_options_buf_is_set(&options->ca_file)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: cannot override trust store multiple times");
return aws_raise_error(AWS_ERROR_INVALID_STATE);
}
if (aws_byte_buf_init_copy_from_cursor(&options->ca_file, options->allocator, *ca_file)) {
goto error;
}
if (aws_sanitize_pem(&options->ca_file, options->allocator)) {
AWS_LOGF_ERROR(AWS_LS_IO_TLS, "static: Invalid CA file. File must contain PEM encoded data");
goto error;
}
return AWS_OP_SUCCESS;
error:
aws_byte_buf_clean_up_secure(&options->ca_file);
return AWS_OP_ERR;
}
void aws_tls_connection_options_init_from_ctx(
struct aws_tls_connection_options *conn_options,
struct aws_tls_ctx *ctx) {
AWS_ZERO_STRUCT(*conn_options);
/* the assumption here, is that if it was set in the context, we WANT it to be NULL here unless it's different.
* so only set verify peer at this point. */
conn_options->ctx = aws_tls_ctx_acquire(ctx);
conn_options->timeout_ms = AWS_DEFAULT_TLS_TIMEOUT_MS;
}
int aws_tls_connection_options_copy(
struct aws_tls_connection_options *to,
const struct aws_tls_connection_options *from) {
/* clean up the options before copy. */
aws_tls_connection_options_clean_up(to);
/* copy everything copyable over, then override the rest with deep copies. */
*to = *from;
to->ctx = aws_tls_ctx_acquire(from->ctx);
if (from->alpn_list) {
to->alpn_list = aws_string_new_from_string(from->alpn_list->allocator, from->alpn_list);
if (!to->alpn_list) {
return AWS_OP_ERR;
}
}
if (from->server_name) {
to->server_name = aws_string_new_from_string(from->server_name->allocator, from->server_name);
if (!to->server_name) {
aws_string_destroy(to->server_name);
return AWS_OP_ERR;
}
}
return AWS_OP_SUCCESS;
}
void aws_tls_connection_options_clean_up(struct aws_tls_connection_options *connection_options) {
aws_tls_ctx_release(connection_options->ctx);
if (connection_options->alpn_list) {
aws_string_destroy(connection_options->alpn_list);
}
if (connection_options->server_name) {
aws_string_destroy(connection_options->server_name);
}
AWS_ZERO_STRUCT(*connection_options);
}
void aws_tls_connection_options_set_callbacks(
struct aws_tls_connection_options *conn_options,
aws_tls_on_negotiation_result_fn *on_negotiation_result,
aws_tls_on_data_read_fn *on_data_read,
aws_tls_on_error_fn *on_error,
void *user_data) {
conn_options->on_negotiation_result = on_negotiation_result;
conn_options->on_data_read = on_data_read;
conn_options->on_error = on_error;
conn_options->user_data = user_data;
}
int aws_tls_connection_options_set_server_name(
struct aws_tls_connection_options *conn_options,
struct aws_allocator *allocator,
struct aws_byte_cursor *server_name) {
if (conn_options->server_name != NULL) {
aws_string_destroy(conn_options->server_name);
conn_options->server_name = NULL;
}
conn_options->server_name = aws_string_new_from_cursor(allocator, server_name);
if (!conn_options->server_name) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
int aws_tls_connection_options_set_alpn_list(
struct aws_tls_connection_options *conn_options,
struct aws_allocator *allocator,
const char *alpn_list) {
if (conn_options->alpn_list != NULL) {
aws_string_destroy(conn_options->alpn_list);
conn_options->alpn_list = NULL;
}
conn_options->alpn_list = aws_string_new_from_c_str(allocator, alpn_list);
if (!conn_options->alpn_list) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
#ifdef BYO_CRYPTO
struct aws_tls_ctx *aws_tls_server_ctx_new(struct aws_allocator *alloc, const struct aws_tls_ctx_options *options) {
(void)alloc;
(void)options;
AWS_FATAL_ASSERT(
false &&
"When using BYO_CRYPTO, user is responsible for creating aws_tls_ctx manually. You cannot call this function.");
}
struct aws_tls_ctx *aws_tls_client_ctx_new(struct aws_allocator *alloc, const struct aws_tls_ctx_options *options) {
(void)alloc;
(void)options;
AWS_FATAL_ASSERT(
false &&
"When using BYO_CRYPTO, user is responsible for creating aws_tls_ctx manually. You cannot call this function.");
}
static aws_tls_handler_new_fn *s_client_handler_new = NULL;
static aws_tls_client_handler_start_negotiation_fn *s_start_negotiation_fn = NULL;
static void *s_client_user_data = NULL;
static aws_tls_handler_new_fn *s_server_handler_new = NULL;
static void *s_server_user_data = NULL;
struct aws_channel_handler *aws_tls_client_handler_new(
struct aws_allocator *allocator,
struct aws_tls_connection_options *options,
struct aws_channel_slot *slot) {
AWS_FATAL_ASSERT(
s_client_handler_new &&
"For BYO_CRYPTO, you must call aws_tls_client_handler_new_set_callback() with a non-null value.");
return s_client_handler_new(allocator, options, slot, s_client_user_data);
}
struct aws_channel_handler *aws_tls_server_handler_new(
struct aws_allocator *allocator,
struct aws_tls_connection_options *options,
struct aws_channel_slot *slot) {
AWS_FATAL_ASSERT(
s_client_handler_new &&
"For BYO_CRYPTO, you must call aws_tls_server_handler_new_set_callback() with a non-null value.")
return s_server_handler_new(allocator, options, slot, s_server_user_data);
}
void aws_tls_byo_crypto_set_client_setup_options(const struct aws_tls_byo_crypto_setup_options *options) {
AWS_FATAL_ASSERT(options);
AWS_FATAL_ASSERT(options->new_handler_fn);
AWS_FATAL_ASSERT(options->start_negotiation_fn);
s_client_handler_new = options->new_handler_fn;
s_start_negotiation_fn = options->start_negotiation_fn;
s_client_user_data = options->user_data;
}
void aws_tls_byo_crypto_set_server_setup_options(const struct aws_tls_byo_crypto_setup_options *options) {
AWS_FATAL_ASSERT(options);
AWS_FATAL_ASSERT(options->new_handler_fn);
s_server_handler_new = options->new_handler_fn;
s_server_user_data = options->user_data;
}
int aws_tls_client_handler_start_negotiation(struct aws_channel_handler *handler) {
AWS_FATAL_ASSERT(
s_start_negotiation_fn &&
"For BYO_CRYPTO, you must call aws_tls_client_handler_set_start_negotiation_callback() with a non-null value.")
return s_start_negotiation_fn(handler, s_client_user_data);
}
void aws_tls_init_static_state(struct aws_allocator *alloc) {
(void)alloc;
}
void aws_tls_clean_up_static_state(void) {}
#endif /* BYO_CRYPTO */
int aws_channel_setup_client_tls(
struct aws_channel_slot *right_of_slot,
struct aws_tls_connection_options *tls_options) {
AWS_FATAL_ASSERT(right_of_slot != NULL);
struct aws_channel *channel = right_of_slot->channel;
struct aws_allocator *allocator = right_of_slot->alloc;
struct aws_channel_slot *tls_slot = aws_channel_slot_new(channel);
/* as far as cleanup goes, since this stuff is being added to a channel, the caller will free this memory
when they clean up the channel. */
if (!tls_slot) {
return AWS_OP_ERR;
}
struct aws_channel_handler *tls_handler = aws_tls_client_handler_new(allocator, tls_options, tls_slot);
if (!tls_handler) {
aws_mem_release(allocator, tls_slot);
return AWS_OP_ERR;
}
/*
* From here on out, channel shutdown will handle slot/handler cleanup
*/
aws_channel_slot_insert_right(right_of_slot, tls_slot);
AWS_LOGF_TRACE(
AWS_LS_IO_CHANNEL,
"id=%p: Setting up client TLS with handler %p on slot %p",
(void *)channel,
(void *)tls_handler,
(void *)tls_slot);
if (aws_channel_slot_set_handler(tls_slot, tls_handler) != AWS_OP_SUCCESS) {
return AWS_OP_ERR;
}
if (aws_tls_client_handler_start_negotiation(tls_handler) != AWS_OP_SUCCESS) {
return AWS_OP_ERR;
}
return AWS_OP_SUCCESS;
}
struct aws_tls_ctx *aws_tls_ctx_acquire(struct aws_tls_ctx *ctx) {
if (ctx != NULL) {
aws_ref_count_acquire(&ctx->ref_count);
}
return ctx;
}
void aws_tls_ctx_release(struct aws_tls_ctx *ctx) {
if (ctx != NULL) {
aws_ref_count_release(&ctx->ref_count);
}
}
|