27RCSID(
"$Id: cb5a425ae41344988a98bdce9f18a7c78003c9ac $")
31#define LOG_PREFIX "tls"
37#include <openssl/conf.h>
38#include <openssl/provider.h>
40#include <freeradius-devel/server/base.h>
41#include <freeradius-devel/tls/attrs.h>
42#include <freeradius-devel/tls/base.h>
43#include <freeradius-devel/tls/engine.h>
44#include <freeradius-devel/util/atexit.h>
45#include <freeradius-devel/util/debug.h>
46#include <freeradius-devel/util/math.h>
47#include <freeradius-devel/util/syserror.h>
48#include <freeradius-devel/util/md5.h>
49#include <freeradius-devel/util/md4.h>
51static uint32_t openssl_instance_count = 0;
55#define OPENSSL_ASYNC_STACK_SIZE 32768
59static size_t openssl_stack_size;
65_Thread_local TALLOC_CTX *ssl_talloc_ctx;
70static _Thread_local
bool *async_pool_init;
72static OSSL_PROVIDER *openssl_default_provider = NULL;
73static OSSL_PROVIDER *openssl_legacy_provider = NULL;
75static uint32_t tls_instance_count = 0;
85 { .out = &
dict_tls, .proto =
"tls" },
86 { .out = &
dict_der, .proto =
"der" },
254int fr_tls_max_threads = 1;
263 static char const *async_file;
267 chunk = talloc_array(ssl_talloc_ctx,
uint8_t, len);
270 talloc_set_name(chunk,
"fr_openssl_talloc");
288 sep = strrchr(
file,
'/');
294 if (strcmp(sep,
"async_posix.c") == 0) {
299 }
else if (
file == async_file)
goto alloc_stack;
301 chunk = talloc_array(ssl_talloc_ctx,
uint8_t, len);
303 talloc_set_name(chunk,
"%s:%d",
file,
line);
318 chunk = talloc_realloc_size(ssl_talloc_ctx, old, len);
320 talloc_set_name(chunk,
"%s:%d",
file,
line);
334static void fr_openssl_talloc_free(
void *to_free,
char const *
file,
UNUSED int line)
336 (void)_talloc_free(to_free,
file);
339static void fr_openssl_talloc_free(
void *to_free,
char const *
file,
int line)
344 (void)_talloc_free(to_free,
buffer);
351static int _openssl_thread_free(
void *
init)
353 ASYNC_cleanup_thread();
369int fr_openssl_thread_init(
size_t async_pool_size_init,
size_t async_pool_size_max)
374 if (!async_pool_init) {
375 bool *
init = talloc_zero(NULL,
bool);
377 if (ASYNC_init_thread(async_pool_size_max, async_pool_size_init) != 1) {
378 fr_tls_log(NULL,
"Failed initialising OpenSSL async context pool");
395void fr_openssl_free(
void)
397 if (--openssl_instance_count > 0)
return;
403 fr_md5_openssl_free();
404 fr_md4_openssl_free();
407static void _openssl_provider_free(
void)
409 if (openssl_default_provider && !OSSL_PROVIDER_unload(openssl_default_provider)) {
410 fr_tls_log(NULL,
"Failed unloading default provider");
412 openssl_default_provider = NULL;
414 if (openssl_legacy_provider && !OSSL_PROVIDER_unload(openssl_legacy_provider)) {
415 fr_tls_log(NULL,
"Failed unloading legacy provider");
417 openssl_legacy_provider = NULL;
420static int fr_openssl_cleanup(
UNUSED void *uctx)
426#if OPENSSL_VERSION_NUMBER >= 0x30400000L
428static void *fr_openssl_stack_alloc(
size_t *len)
435#if defined(__linux__) || defined(__FreeBSD__)
436 stack = mmap(NULL, openssl_stack_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE | MAP_STACK, -1, 0);
438 stack = mmap(NULL, openssl_stack_size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
440 if (
stack == MAP_FAILED) {
441 fr_tls_log(NULL,
"Failed allocating OpenSSL stack: %s",
fr_syserror(errno));
444 *len = openssl_stack_size;
449static void fr_openssl_stack_free(
void *
stack)
451 munmap(
stack, openssl_stack_size);
460int fr_openssl_init(
void)
462 pthread_attr_t tattr;
464 if (openssl_instance_count > 0) {
465 openssl_instance_count++;
469 pthread_attr_init(&tattr);
470 if (pthread_attr_getstacksize(&tattr, &openssl_stack_size) != 0) {
471 fr_tls_log(NULL,
"Failed getting stack size");
479 if (CRYPTO_set_mem_functions(fr_openssl_talloc, fr_openssl_talloc_realloc, fr_openssl_talloc_free) != 1) {
480 fr_tls_log(NULL,
"Failed to set OpenSSL memory allocation functions. fr_openssl_init() called too late");
488#if OPENSSL_VERSION_NUMBER >= 0x30400000L
489 if (ASYNC_set_mem_functions(fr_openssl_stack_alloc, fr_openssl_stack_free) != 1) {
490 fr_tls_log(NULL,
"Failed to set OpenSSL async stack allocation functions");
503 if (OPENSSL_init_ssl(OPENSSL_INIT_NO_ATEXIT | OPENSSL_INIT_LOAD_CONFIG, NULL) != 1) {
504 fr_tls_log(NULL,
"Failed calling OPENSSL_init_crypto()");
511 openssl_default_provider = OSSL_PROVIDER_load(NULL,
"default");
512 if (!openssl_default_provider) {
513 fr_tls_log(NULL,
"Failed loading default provider");
522 openssl_legacy_provider = OSSL_PROVIDER_load(NULL,
"legacy");
523 if (!openssl_legacy_provider) {
524 fr_tls_log(NULL,
"Failed loading legacy provider");
533 OPENSSL_atexit(_openssl_provider_free);
540 EVP_add_digest(EVP_sha256());
546 fr_md5_openssl_init();
547 fr_md4_openssl_init();
559 openssl_instance_count++;
571int fr_openssl_fips_mode(
bool enabled)
573 if (!EVP_set_default_properties(NULL, enabled ?
"fips=yes" :
"-fips")) {
574 fr_tls_log(NULL,
"Failed %s OpenSSL FIPS mode", enabled ?
"enabling" :
"disabling");
582 fr_md5_openssl_init();
583 fr_md4_openssl_init();
585 fr_md5_openssl_free();
586 fr_md4_openssl_free();
601int fr_tls_dict_init(
void)
603 if (tls_instance_count > 0) {
604 tls_instance_count++;
608 tls_instance_count++;
611 PERROR(
"Failed initialising protocol library");
613 tls_instance_count--;
619 PERROR(
"Failed resolving attributes");
624 PERROR(
"Failed resolving enums");
631void fr_tls_dict_free(
void)
633 if (--tls_instance_count > 0)
return;
static int const char char buffer[256]
#define fr_atexit_global(_func, _uctx)
Add a free function to the global free list.
#define fr_atexit_thread_local(_name, _free, _uctx)
#define USES_APPLE_DEPRECATED_API
int fr_dict_enum_autoload(fr_dict_enum_autoload_t const *to_load)
Process a dict_attr_autoload element to load/verify a dictionary attribute.
#define fr_dict_autofree(_to_free)
fr_value_box_t const ** out
Enumeration value.
fr_dict_attr_t const ** out
Where to write a pointer to the resolved fr_dict_attr_t.
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
int fr_dict_attr_autoload(fr_dict_attr_autoload_t const *to_load)
Process a dict_attr_autoload element to load/verify a dictionary attribute.
#define fr_dict_autoload(_to_load)
#define DICT_AUTOLOAD_TERMINATOR
Specifies an attribute which must be present for the module to function.
Specifies a dictionary which must be loaded/loadable for the module to function.
Specifies a value which must be present for the module to function.
static fr_dict_t const * dict_freeradius
fr_dict_attr_t const * attr_tls_certificate
Attribute definitions for lib curl.
fr_dict_t const * dict_tls
fr_dict_t const * dict_radius
static fr_dict_attr_t const * attr_module_failure_message
fr_value_box_t const * enum_tls_packet_type_store_session
HIDDEN fr_dict_attr_t const * attr_tls_certificate_subject
HIDDEN fr_dict_attr_t const * attr_tls_certificate_x509v3_extended_key_usage
HIDDEN fr_dict_attr_t const * attr_tls_packet_type
HIDDEN fr_dict_attr_t const * attr_tls_certificate_x509v3_authority_key_identifier
HIDDEN fr_dict_attr_t const * attr_session_resumed
fr_value_box_t const * enum_tls_packet_type_failure
HIDDEN fr_dict_attr_t const * attr_tls_session_resumed
HIDDEN fr_dict_attr_t const * attr_tls_session_version
HIDDEN fr_dict_attr_t const * attr_tls_ocsp_cert_valid
HIDDEN fr_dict_attr_t const * attr_tls_client_hello
HIDDEN fr_dict_attr_t const * attr_tls_client_hello_psk_key_mode
HIDDEN fr_dict_attr_t const * attr_tls_certificate_x509v3_basic_constraints
fr_value_box_t const * enum_tls_packet_type_success
HIDDEN fr_dict_attr_t const * attr_tls_certificate_serial
HIDDEN fr_dict_attr_t const * attr_tls_session_require_client_cert
HIDDEN fr_dict_t const * dict_der
HIDDEN fr_dict_attr_t const * attr_tls_certificate_subject_alt_name_dns
HIDDEN fr_dict_attr_t const * attr_tls_client_hello_supported_group
HIDDEN fr_dict_attr_t const * attr_tls_session_ttl
fr_value_box_t const * enum_tls_session_resumed_stateful
HIDDEN fr_dict_attr_t const * attr_tls_session_data
HIDDEN fr_dict_attr_t const * attr_tls_certificate_not_after
HIDDEN fr_dict_attr_t const * attr_tls_certificate_not_before
fr_value_box_t const * enum_tls_packet_type_new_session
HIDDEN fr_dict_attr_t const * attr_tls_certificate_signature_algorithm
HIDDEN fr_dict_attr_t const * attr_tls_client_error_code
fr_value_box_t const * enum_tls_packet_type_load_session
fr_value_box_t const * enum_tls_packet_type_establish_session
HIDDEN fr_dict_attr_t const * attr_tls_certificate_subject_alt_name_upn
HIDDEN fr_dict_attr_t const * attr_tls_ocsp_response
HIDDEN fr_dict_attr_t const * attr_tls_session_id
HIDDEN fr_dict_attr_t const * attr_tls_client_hello_sig_algo
HIDDEN fr_dict_attr_t const * attr_tls_certificate_x509v3_subject_key_identifier
fr_value_box_t const * enum_tls_packet_type_clear_session
HIDDEN fr_dict_attr_t const * attr_tls_session_cipher_suite
HIDDEN fr_dict_attr_t const * attr_tls_certificate_common_name
HIDDEN fr_dict_attr_t const * attr_tls_psk_identity
HIDDEN fr_dict_attr_t const * attr_tls_certificate_issuer
fr_value_box_t const * enum_tls_session_resumed_stateless
HIDDEN fr_dict_attr_t const * attr_tls_certificate_x509v3_crl_distribution_points
fr_value_box_t const * enum_tls_packet_type_notfound
HIDDEN fr_dict_attr_t const * attr_tls_client_hello_ec_point_format
HIDDEN fr_dict_attr_t const * attr_der_certificate
HIDDEN fr_dict_attr_t const * attr_tls_certificate_signature
HIDDEN fr_dict_attr_t const * attr_tls_session_resume_type
HIDDEN fr_dict_attr_t const * attr_tls_ocsp_next_update
HIDDEN fr_dict_attr_t const * attr_tls_client_hello_tls_version
fr_value_box_t const * enum_tls_packet_type_verify_certificate
HIDDEN fr_dict_attr_t const * attr_tls_client_hello_cipher
HIDDEN fr_dict_attr_t const * attr_tls_session_cert_file
HIDDEN fr_dict_attr_t const * attr_tls_certificate_chain_depth
HIDDEN fr_dict_attr_t const * attr_tls_certificate_subject_alt_name_email
HIDDEN fr_dict_attr_t const * attr_allow_session_resumption
static char * stack[MAX_STACK]
@ FR_TYPE_TIME_DELTA
A period of time measured in nanoseconds.
@ FR_TYPE_TLV
Contains nested attributes.
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_UINT16
16 Bit unsigned integer.
@ FR_TYPE_DATE
Unix time stamp, always has value >2^31.
@ FR_TYPE_UINT8
8 Bit unsigned integer.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_BOOL
A truth value.
@ FR_TYPE_OCTETS
Raw octets.
PUBLIC int snprintf(char *string, size_t length, char *format, va_alist)
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.