27 RCSID(
"$Id: ff6d0430d1ab79d68044a89ea1f08eff26829e09 $")
31 #define LOG_PREFIX "tls"
36 #include <openssl/conf.h>
37 #include <openssl/provider.h>
39 #include <freeradius-devel/server/base.h>
40 #include <freeradius-devel/tls/attrs.h>
41 #include <freeradius-devel/tls/base.h>
42 #include <freeradius-devel/tls/engine.h>
43 #include <freeradius-devel/util/atexit.h>
44 #include <freeradius-devel/util/debug.h>
46 static uint32_t openssl_instance_count = 0;
52 _Thread_local TALLOC_CTX *ssl_talloc_ctx;
57 static _Thread_local
bool *async_pool_init;
59 static OSSL_PROVIDER *openssl_default_provider = NULL;
60 static OSSL_PROVIDER *openssl_legacy_provider = NULL;
62 static uint32_t tls_instance_count = 0;
71 { .out = &
dict_tls, .proto =
"tls" },
193 int fr_tls_max_threads = 1;
202 static char const *async_file;
206 chunk = talloc_array(ssl_talloc_ctx,
uint8_t, len);
209 talloc_set_name(chunk,
"fr_openssl_talloc");
227 sep = strrchr(
file,
'/');
233 if (strcmp(sep,
"async_posix.c") == 0) {
238 }
else if (
file == async_file)
goto alloc_stack;
240 chunk = talloc_array(ssl_talloc_ctx,
uint8_t, len);
242 talloc_set_name(chunk,
"%s:%u",
file,
line);
257 chunk = talloc_realloc_size(ssl_talloc_ctx, old, len);
259 talloc_set_name(chunk,
"%s:%u",
file,
line);
273 static void fr_openssl_talloc_free(
void *to_free,
char const *
file,
UNUSED int line)
275 (void)_talloc_free(to_free,
file);
278 static void fr_openssl_talloc_free(
void *to_free,
char const *
file,
int line)
283 (void)_talloc_free(to_free,
buffer);
290 static int _openssl_thread_free(
void *
init)
292 ASYNC_cleanup_thread();
308 int fr_openssl_thread_init(
size_t async_pool_size_init,
size_t async_pool_size_max)
313 if (!async_pool_init) {
314 bool *
init = talloc_zero(NULL,
bool);
316 if (ASYNC_init_thread(async_pool_size_max, async_pool_size_init) != 1) {
317 fr_tls_log(NULL,
"Failed initialising OpenSSL async context pool");
334 void fr_openssl_free(
void)
336 if (--openssl_instance_count > 0)
return;
343 static void _openssl_provider_free(
void)
345 if (openssl_default_provider && !OSSL_PROVIDER_unload(openssl_default_provider)) {
346 fr_tls_log(NULL,
"Failed unloading default provider");
348 openssl_default_provider = NULL;
350 if (openssl_legacy_provider && !OSSL_PROVIDER_unload(openssl_legacy_provider)) {
351 fr_tls_log(NULL,
"Failed unloading legacy provider");
353 openssl_legacy_provider = NULL;
356 static int fr_openssl_cleanup(
UNUSED void *
uctx)
367 int fr_openssl_init(
void)
369 if (openssl_instance_count > 0) {
370 openssl_instance_count++;
378 if (CRYPTO_set_mem_functions(fr_openssl_talloc, fr_openssl_talloc_realloc, fr_openssl_talloc_free) != 1) {
379 fr_tls_log(NULL,
"Failed to set OpenSSL memory allocation functions. fr_openssl_init() called too late");
391 if (OPENSSL_init_ssl(OPENSSL_INIT_NO_ATEXIT | OPENSSL_INIT_LOAD_CONFIG, NULL) != 1) {
392 fr_tls_log(NULL,
"Failed calling OPENSSL_init_crypto()");
399 openssl_default_provider = OSSL_PROVIDER_load(NULL,
"default");
400 if (!openssl_default_provider) {
401 fr_tls_log(NULL,
"Failed loading default provider");
410 openssl_legacy_provider = OSSL_PROVIDER_load(NULL,
"legacy");
411 if (!openssl_legacy_provider) {
412 fr_tls_log(NULL,
"Failed loading legacy provider");
421 OPENSSL_atexit(_openssl_provider_free);
428 EVP_add_digest(EVP_sha256());
444 openssl_instance_count++;
456 int fr_openssl_fips_mode(
bool enabled)
458 if (!EVP_set_default_properties(NULL, enabled ?
"fips=yes" :
"fips=no")) {
459 fr_tls_log(NULL,
"Failed %s OpenSSL FIPS mode", enabled ?
"enabling" :
"disabling");
475 int fr_tls_dict_init(
void)
477 if (tls_instance_count > 0) {
478 tls_instance_count++;
482 tls_instance_count++;
485 PERROR(
"Failed initialising protocol library");
487 tls_instance_count--;
493 PERROR(
"Failed resolving attributes");
498 PERROR(
"Failed resolving enums");
505 void fr_tls_dict_free(
void)
507 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
fr_dcursor_eval_t void const * uctx
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)
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.
fr_dict_attr_t const * attr_tls_certificate
Attribute definitions for lib curl.
fr_dict_t const * dict_freeradius
fr_dict_t const * dict_radius
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_t const * dict_tls
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_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_attr_t const * attr_tls_certificate_subject_alt_name_dns
HIDDEN fr_dict_attr_t const * attr_tls_session_ttl
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
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
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_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_packet_type_notfound
HIDDEN fr_dict_attr_t const * attr_tls_certificate_signature
HIDDEN fr_dict_attr_t const * attr_tls_ocsp_next_update
fr_value_box_t const * enum_tls_packet_type_verify_certificate
HIDDEN fr_dict_attr_t const * attr_tls_session_cert_file
HIDDEN fr_dict_attr_t const * attr_tls_certificate_subject_alt_name_email
HIDDEN fr_dict_attr_t const * attr_allow_session_resumption
@ 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_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)
init
Enter the EAP-IDENTITY state.