| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  |  * Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  | #include <assert.h>
 | 
					
						
							| 
									
										
										
										
											2020-06-21 07:21:19 +08:00
										 |  |  | #include <openssl/core_dispatch.h>
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | #include <openssl/core_names.h>
 | 
					
						
							|  |  |  | #include <openssl/params.h>
 | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  | #include <openssl/fips_names.h>
 | 
					
						
							| 
									
										
										
										
											2020-07-22 10:55:31 +08:00
										 |  |  | #include <openssl/rand.h> /* RAND_get0_public() */
 | 
					
						
							| 
									
										
										
										
											2021-02-06 00:40:42 +08:00
										 |  |  | #include <openssl/proverr.h>
 | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  | #include <openssl/indicator.h>
 | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2019-10-04 21:20:48 +08:00
										 |  |  | #include "prov/implementations.h"
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  | #include "prov/names.h"
 | 
					
						
							| 
									
										
										
										
											2019-10-04 21:25:59 +08:00
										 |  |  | #include "prov/provider_ctx.h"
 | 
					
						
							|  |  |  | #include "prov/providercommon.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  | #include "prov/provider_util.h"
 | 
					
						
							| 
									
										
										
										
											2020-10-30 13:54:03 +08:00
										 |  |  | #include "prov/seeding.h"
 | 
					
						
							| 
									
										
										
										
											2023-03-24 06:24:23 +08:00
										 |  |  | #include "prov/fipscommon.h"
 | 
					
						
							| 
									
										
										
										
											2021-02-21 06:39:30 +08:00
										 |  |  | #include "internal/nelem.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  | #include "self_test.h"
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #include "crypto/context.h"
 | 
					
						
							| 
									
										
										
										
											2022-04-13 18:33:21 +08:00
										 |  |  | #include "internal/core.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-21 08:51:33 +08:00
										 |  |  | static const char FIPS_DEFAULT_PROPERTIES[] = "provider=fips,fips=yes"; | 
					
						
							|  |  |  | static const char FIPS_UNAPPROVED_PROPERTIES[] = "provider=fips,fips=no"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Forward declarations to ensure that interface functions are correctly | 
					
						
							|  |  |  |  * defined. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  | static OSSL_FUNC_provider_teardown_fn fips_teardown; | 
					
						
							|  |  |  | static OSSL_FUNC_provider_gettable_params_fn fips_gettable_params; | 
					
						
							|  |  |  | static OSSL_FUNC_provider_get_params_fn fips_get_params; | 
					
						
							|  |  |  | static OSSL_FUNC_provider_query_operation_fn fips_query; | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-09 06:51:55 +08:00
										 |  |  | #define ALGC(NAMES, FUNC, CHECK)                \
 | 
					
						
							|  |  |  |     { { NAMES, FIPS_DEFAULT_PROPERTIES, FUNC }, CHECK } | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  | #define ALG(NAMES, FUNC) ALGC(NAMES, FUNC, NULL)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  | extern OSSL_FUNC_core_thread_start_fn *c_thread_start; | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |  * Should these function pointers be stored in the provider side provctx? Could | 
					
						
							|  |  |  |  * they ever be different from one init to the next? We assume not for now. | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /* Functions provided by the core */ | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  | static OSSL_FUNC_core_gettable_params_fn *c_gettable_params; | 
					
						
							|  |  |  | static OSSL_FUNC_core_get_params_fn *c_get_params; | 
					
						
							|  |  |  | OSSL_FUNC_core_thread_start_fn *c_thread_start; | 
					
						
							|  |  |  | static OSSL_FUNC_core_new_error_fn *c_new_error; | 
					
						
							|  |  |  | static OSSL_FUNC_core_set_error_debug_fn *c_set_error_debug; | 
					
						
							|  |  |  | static OSSL_FUNC_core_vset_error_fn *c_vset_error; | 
					
						
							|  |  |  | static OSSL_FUNC_core_set_error_mark_fn *c_set_error_mark; | 
					
						
							|  |  |  | static OSSL_FUNC_core_clear_last_error_mark_fn *c_clear_last_error_mark; | 
					
						
							|  |  |  | static OSSL_FUNC_core_pop_error_to_mark_fn *c_pop_error_to_mark; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_malloc_fn *c_CRYPTO_malloc; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_zalloc_fn *c_CRYPTO_zalloc; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_free_fn *c_CRYPTO_free; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_clear_free_fn *c_CRYPTO_clear_free; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_realloc_fn *c_CRYPTO_realloc; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_clear_realloc_fn *c_CRYPTO_clear_realloc; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_secure_malloc_fn *c_CRYPTO_secure_malloc; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_secure_zalloc_fn *c_CRYPTO_secure_zalloc; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_secure_free_fn *c_CRYPTO_secure_free; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_secure_clear_free_fn *c_CRYPTO_secure_clear_free; | 
					
						
							|  |  |  | static OSSL_FUNC_CRYPTO_secure_allocated_fn *c_CRYPTO_secure_allocated; | 
					
						
							|  |  |  | static OSSL_FUNC_BIO_vsnprintf_fn *c_BIO_vsnprintf; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | static OSSL_FUNC_self_test_cb_fn *c_stcbfn = NULL; | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  | static OSSL_FUNC_indicator_cb_fn *c_indcbfn = NULL; | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static OSSL_FUNC_core_get_libctx_fn *c_get_libctx = NULL; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     const char *option; | 
					
						
							|  |  |  |     unsigned char enabled; | 
					
						
							|  |  |  | } FIPS_OPTION; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | typedef struct fips_global_st { | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |     const OSSL_CORE_HANDLE *handle; | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     SELF_TEST_POST_PARAMS selftest_params; | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     FIPS_OPTION fips_security_checks; | 
					
						
							|  |  |  |     FIPS_OPTION fips_tls1_prf_ems_check; | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  |     FIPS_OPTION fips_eddsa_no_verify_digested; | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  |     FIPS_OPTION fips_no_short_mac; | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     FIPS_OPTION fips_restricted_drgb_digests; | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  |     FIPS_OPTION fips_hkdf_digest_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_tls13_kdf_digest_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_tls1_prf_digest_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_sshkdf_digest_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_sskdf_digest_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_x963kdf_digest_check; | 
					
						
							| 
									
										
										
										
											2024-07-04 09:59:43 +08:00
										 |  |  |     FIPS_OPTION fips_dsa_sign_disallowed; | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     FIPS_OPTION fips_tdes_encrypt_disallowed; | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  |     FIPS_OPTION fips_rsa_sign_x931_disallowed; | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  |     FIPS_OPTION fips_hkdf_key_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_tls13_kdf_key_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_tls1_prf_key_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_sshkdf_key_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_sskdf_key_check; | 
					
						
							|  |  |  |     FIPS_OPTION fips_x963kdf_key_check; | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  |     FIPS_OPTION fips_pbkdf2_lower_bound_check; | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | } FIPS_GLOBAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | static void init_fips_option(FIPS_OPTION *opt, int enabled) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     opt->enabled = enabled; | 
					
						
							|  |  |  |     opt->option = enabled ? "1" : "0"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | void *ossl_fips_prov_ossl_ctx_new(OSSL_LIB_CTX *libctx) | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     FIPS_GLOBAL *fgbl = OPENSSL_zalloc(sizeof(*fgbl)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     if (fgbl == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_security_checks, 1); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_tls1_prf_ems_check, 0); /* Disabled by default */ | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_eddsa_no_verify_digested, 0); | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_no_short_mac, 1); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_restricted_drgb_digests, 0); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_hkdf_digest_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_tls13_kdf_digest_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_tls1_prf_digest_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_sshkdf_digest_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_sskdf_digest_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_x963kdf_digest_check, 0); | 
					
						
							| 
									
										
										
										
											2024-07-04 09:59:43 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_dsa_sign_disallowed, 0); | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_tdes_encrypt_disallowed, 0); | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_rsa_sign_x931_disallowed, 0); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_hkdf_key_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_tls13_kdf_key_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_tls1_prf_key_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_sshkdf_key_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_sskdf_key_check, 0); | 
					
						
							|  |  |  |     init_fips_option(&fgbl->fips_x963kdf_key_check, 0); | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  |     init_fips_option(&fgbl->fips_pbkdf2_lower_bound_check, 1); | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |     return fgbl; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | void ossl_fips_prov_ossl_ctx_free(void *fgbl) | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free(fgbl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /* Parameters we provide to the core */ | 
					
						
							| 
									
										
										
										
											2019-07-11 18:19:33 +08:00
										 |  |  | static const OSSL_PARAM fips_param_types[] = { | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_NAME, OSSL_PARAM_UTF8_PTR, NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_VERSION, OSSL_PARAM_UTF8_PTR, NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_BUILDINFO, OSSL_PARAM_UTF8_PTR, NULL, 0), | 
					
						
							| 
									
										
										
										
											2020-09-07 09:58:48 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_STATUS, OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_SECURITY_CHECKS, OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2023-02-08 15:22:43 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_TLS1_PRF_EMS_CHECK, OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_NO_SHORT_MAC, OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_DRBG_TRUNC_DIGEST, OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_HKDF_DIGEST_CHECK, OSSL_PARAM_INTEGER, NULL, | 
					
						
							|  |  |  |                     0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_TLS13_KDF_DIGEST_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_TLS1_PRF_DIGEST_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_SSHKDF_DIGEST_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_SSKDF_DIGEST_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_X963KDF_DIGEST_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_DSA_SIGN_DISABLED, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_TDES_ENCRYPT_DISABLED, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_RSA_SIGN_X931_PAD_DISABLED, | 
					
						
							|  |  |  |                     OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_HKDF_KEY_CHECK, OSSL_PARAM_INTEGER, NULL, | 
					
						
							|  |  |  |                     0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_TLS13_KDF_KEY_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_TLS1_PRF_KEY_CHECK, OSSL_PARAM_INTEGER, | 
					
						
							|  |  |  |                     NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_SSHKDF_KEY_CHECK, OSSL_PARAM_INTEGER, NULL, | 
					
						
							|  |  |  |                     0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_SSKDF_KEY_CHECK, OSSL_PARAM_INTEGER, NULL, | 
					
						
							|  |  |  |                     0), | 
					
						
							|  |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_X963KDF_KEY_CHECK, OSSL_PARAM_INTEGER, NULL, | 
					
						
							|  |  |  |                     0), | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  |     OSSL_PARAM_DEFN(OSSL_PROV_PARAM_PBKDF2_LOWER_BOUND_CHECK, | 
					
						
							|  |  |  |                     OSSL_PARAM_INTEGER, NULL, 0), | 
					
						
							| 
									
										
										
										
											2019-07-11 18:19:33 +08:00
										 |  |  |     OSSL_PARAM_END | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  | static int fips_get_params_from_core(FIPS_GLOBAL *fgbl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |     * Parameters to retrieve from the core provider - required for self testing. | 
					
						
							|  |  |  |     * NOTE: inside core_get_params() these will be loaded from config items | 
					
						
							|  |  |  |     * stored inside prov->parameters (except for | 
					
						
							|  |  |  |     * OSSL_PROV_PARAM_CORE_MODULE_FILENAME). | 
					
						
							| 
									
										
										
										
											2023-02-08 15:22:43 +08:00
										 |  |  |     * OSSL_PROV_FIPS_PARAM_SECURITY_CHECKS and | 
					
						
							|  |  |  |     * OSSL_PROV_FIPS_PARAM_TLS1_PRF_EMS_CHECK are not self test parameters. | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     */ | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  |     OSSL_PARAM core_params[28], *p = core_params; | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr( | 
					
						
							|  |  |  |             OSSL_PROV_PARAM_CORE_MODULE_FILENAME, | 
					
						
							|  |  |  |             (char **)&fgbl->selftest_params.module_filename, | 
					
						
							|  |  |  |             sizeof(fgbl->selftest_params.module_filename)); | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr( | 
					
						
							|  |  |  |             OSSL_PROV_FIPS_PARAM_MODULE_MAC, | 
					
						
							|  |  |  |             (char **)&fgbl->selftest_params.module_checksum_data, | 
					
						
							|  |  |  |             sizeof(fgbl->selftest_params.module_checksum_data)); | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr( | 
					
						
							|  |  |  |             OSSL_PROV_FIPS_PARAM_INSTALL_MAC, | 
					
						
							|  |  |  |             (char **)&fgbl->selftest_params.indicator_checksum_data, | 
					
						
							|  |  |  |             sizeof(fgbl->selftest_params.indicator_checksum_data)); | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr( | 
					
						
							|  |  |  |             OSSL_PROV_FIPS_PARAM_INSTALL_STATUS, | 
					
						
							|  |  |  |             (char **)&fgbl->selftest_params.indicator_data, | 
					
						
							|  |  |  |             sizeof(fgbl->selftest_params.indicator_data)); | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr( | 
					
						
							|  |  |  |             OSSL_PROV_FIPS_PARAM_INSTALL_VERSION, | 
					
						
							|  |  |  |             (char **)&fgbl->selftest_params.indicator_version, | 
					
						
							|  |  |  |             sizeof(fgbl->selftest_params.indicator_version)); | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr( | 
					
						
							|  |  |  |             OSSL_PROV_FIPS_PARAM_CONDITIONAL_ERRORS, | 
					
						
							|  |  |  |             (char **)&fgbl->selftest_params.conditional_error_check, | 
					
						
							|  |  |  |             sizeof(fgbl->selftest_params.conditional_error_check)); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* FIPS features can be enabled or disabled independently */ | 
					
						
							|  |  |  | #define FIPS_FEATURE_OPTION(fgbl, pname, field)                         \
 | 
					
						
							|  |  |  |     *p++ = OSSL_PARAM_construct_utf8_ptr(                               \ | 
					
						
							|  |  |  |             pname, (char **)&fgbl->field.option,                        \ | 
					
						
							|  |  |  |             sizeof(fgbl->field.option)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_SECURITY_CHECKS, | 
					
						
							|  |  |  |                         fips_security_checks); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_TLS1_PRF_EMS_CHECK, | 
					
						
							|  |  |  |                         fips_tls1_prf_ems_check); | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_EDDSA_NO_VERIFY_DIGESTED, | 
					
						
							|  |  |  |                         fips_eddsa_no_verify_digested); | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_NO_SHORT_MAC, | 
					
						
							|  |  |  |                         fips_no_short_mac); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_DRBG_TRUNC_DIGEST, | 
					
						
							|  |  |  |                         fips_restricted_drgb_digests); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_HKDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                         fips_hkdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_TLS13_KDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                         fips_tls13_kdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_TLS1_PRF_DIGEST_CHECK, | 
					
						
							|  |  |  |                         fips_tls1_prf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_SSHKDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                         fips_sshkdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_SSKDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                         fips_sskdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_X963KDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                         fips_x963kdf_digest_check); | 
					
						
							| 
									
										
										
										
											2024-07-04 09:59:43 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_DSA_SIGN_DISABLED, | 
					
						
							|  |  |  |                         fips_dsa_sign_disallowed); | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_TDES_ENCRYPT_DISABLED, | 
					
						
							|  |  |  |                         fips_tdes_encrypt_disallowed); | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_RSA_SIGN_X931_PAD_DISABLED, | 
					
						
							|  |  |  |                         fips_rsa_sign_x931_disallowed); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_HKDF_KEY_CHECK, | 
					
						
							|  |  |  |                         fips_hkdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_TLS13_KDF_KEY_CHECK, | 
					
						
							|  |  |  |                         fips_tls13_kdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_TLS1_PRF_KEY_CHECK, | 
					
						
							|  |  |  |                         fips_tls1_prf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_SSHKDF_KEY_CHECK, | 
					
						
							|  |  |  |                         fips_sshkdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_SSKDF_KEY_CHECK, | 
					
						
							|  |  |  |                         fips_sskdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_X963KDF_KEY_CHECK, | 
					
						
							|  |  |  |                         fips_x963kdf_key_check); | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  |     FIPS_FEATURE_OPTION(fgbl, OSSL_PROV_FIPS_PARAM_PBKDF2_LOWER_BOUND_CHECK, | 
					
						
							|  |  |  |                         fips_pbkdf2_lower_bound_check); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | #undef FIPS_FEATURE_OPTION
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     *p = OSSL_PARAM_construct_end(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!c_get_params(fgbl->handle, core_params)) { | 
					
						
							|  |  |  |         ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | static const OSSL_PARAM *fips_gettable_params(void *provctx) | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return fips_param_types; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | static int fips_get_params(void *provctx, OSSL_PARAM params[]) | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-24 12:43:55 +08:00
										 |  |  |     OSSL_PARAM *p; | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     FIPS_GLOBAL *fgbl = ossl_lib_ctx_get_data(ossl_prov_ctx_get0_libctx(provctx), | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |                                               OSSL_LIB_CTX_FIPS_PROV_INDEX); | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_NAME); | 
					
						
							|  |  |  |     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, "OpenSSL FIPS Provider")) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_VERSION); | 
					
						
							|  |  |  |     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_VERSION_STR)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_BUILDINFO); | 
					
						
							|  |  |  |     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_FULL_VERSION_STR)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_STATUS); | 
					
						
							| 
									
										
										
										
											2020-09-07 09:58:48 +08:00
										 |  |  |     if (p != NULL && !OSSL_PARAM_set_int(p, ossl_prov_is_running())) | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define FIPS_FEATURE_GET(fgbl, pname, field)                            \
 | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate(params, pname);                               \ | 
					
						
							|  |  |  |     if (p != NULL && !OSSL_PARAM_set_int(p, fgbl->field.enabled))       \ | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_SECURITY_CHECKS, | 
					
						
							|  |  |  |                      fips_security_checks); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_TLS1_PRF_EMS_CHECK, | 
					
						
							|  |  |  |                      fips_tls1_prf_ems_check); | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_FIPS_PARAM_EDDSA_NO_VERIFY_DIGESTED, | 
					
						
							|  |  |  |                      fips_eddsa_no_verify_digested); | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_NO_SHORT_MAC, | 
					
						
							|  |  |  |                      fips_no_short_mac); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_DRBG_TRUNC_DIGEST, | 
					
						
							|  |  |  |                      fips_restricted_drgb_digests); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_HKDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                      fips_hkdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_TLS13_KDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                      fips_tls13_kdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_TLS1_PRF_DIGEST_CHECK, | 
					
						
							|  |  |  |                      fips_tls1_prf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_SSHKDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                      fips_sshkdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_SSKDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                      fips_sskdf_digest_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_X963KDF_DIGEST_CHECK, | 
					
						
							|  |  |  |                      fips_x963kdf_digest_check); | 
					
						
							| 
									
										
										
										
											2024-07-04 09:59:43 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_DSA_SIGN_DISABLED, | 
					
						
							|  |  |  |                      fips_dsa_sign_disallowed); | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_TDES_ENCRYPT_DISABLED, | 
					
						
							|  |  |  |                      fips_tdes_encrypt_disallowed); | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_RSA_SIGN_X931_PAD_DISABLED, | 
					
						
							|  |  |  |                      fips_rsa_sign_x931_disallowed); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_HKDF_KEY_CHECK, | 
					
						
							|  |  |  |                      fips_hkdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_TLS13_KDF_KEY_CHECK, | 
					
						
							|  |  |  |                      fips_tls13_kdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_TLS1_PRF_KEY_CHECK, | 
					
						
							|  |  |  |                      fips_tls1_prf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_SSHKDF_KEY_CHECK, | 
					
						
							|  |  |  |                      fips_sshkdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_SSKDF_KEY_CHECK, | 
					
						
							|  |  |  |                      fips_sskdf_key_check); | 
					
						
							|  |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_X963KDF_KEY_CHECK, | 
					
						
							|  |  |  |                      fips_x963kdf_key_check); | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  |     FIPS_FEATURE_GET(fgbl, OSSL_PROV_PARAM_PBKDF2_LOWER_BOUND_CHECK, | 
					
						
							|  |  |  |                      fips_pbkdf2_lower_bound_check); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | #undef FIPS_FEATURE_GET
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  | static void set_self_test_cb(FIPS_GLOBAL *fgbl) | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     const OSSL_CORE_HANDLE *handle = | 
					
						
							|  |  |  |         FIPS_get_core_handle(fgbl->selftest_params.libctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     if (c_stcbfn != NULL && c_get_libctx != NULL) { | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |         c_stcbfn(c_get_libctx(handle), &fgbl->selftest_params.cb, | 
					
						
							|  |  |  |                               &fgbl->selftest_params.cb_arg); | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |         fgbl->selftest_params.cb = NULL; | 
					
						
							|  |  |  |         fgbl->selftest_params.cb_arg = NULL; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fips_self_test(void *provctx) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     FIPS_GLOBAL *fgbl = ossl_lib_ctx_get_data(ossl_prov_ctx_get0_libctx(provctx), | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |                                               OSSL_LIB_CTX_FIPS_PROV_INDEX); | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     set_self_test_cb(fgbl); | 
					
						
							|  |  |  |     return SELF_TEST_post(&fgbl->selftest_params, 1) ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-23 09:39:15 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * For the algorithm names, we use the following formula for our primary | 
					
						
							|  |  |  |  * names: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     ALGNAME[VERSION?][-SUBNAME[VERSION?]?][-SIZE?][-MODE?] | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     VERSION is only present if there are multiple versions of | 
					
						
							|  |  |  |  *     an alg (MD2, MD4, MD5).  It may be omitted if there is only | 
					
						
							|  |  |  |  *     one version (if a subsequent version is released in the future, | 
					
						
							|  |  |  |  *     we can always change the canonical name, and add the old name | 
					
						
							|  |  |  |  *     as an alias). | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     SUBNAME may be present where we are combining multiple | 
					
						
							|  |  |  |  *     algorithms together, e.g. MD5-SHA1. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     SIZE is only present if multiple versions of an algorithm exist | 
					
						
							|  |  |  |  *     with different sizes (e.g. AES-128-CBC, AES-256-CBC) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     MODE is only present where applicable. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * We add diverse other names where applicable, such as the names that | 
					
						
							|  |  |  |  * NIST uses, or that are used for ASN.1 OBJECT IDENTIFIERs, or names | 
					
						
							|  |  |  |  * we have used historically. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_digests[] = { | 
					
						
							| 
									
										
										
										
											2019-05-23 09:39:15 +08:00
										 |  |  |     /* Our primary name:NiST name[:our older names] */ | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_SHA1, FIPS_DEFAULT_PROPERTIES, ossl_sha1_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA2_224, FIPS_DEFAULT_PROPERTIES, ossl_sha224_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA2_256, FIPS_DEFAULT_PROPERTIES, ossl_sha256_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA2_384, FIPS_DEFAULT_PROPERTIES, ossl_sha384_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA2_512, FIPS_DEFAULT_PROPERTIES, ossl_sha512_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA2_512_224, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_sha512_224_functions }, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_SHA2_512_256, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_sha512_256_functions }, | 
					
						
							| 
									
										
										
										
											2019-05-23 09:39:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* We agree with NIST here, so one name only */ | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_SHA3_224, FIPS_DEFAULT_PROPERTIES, ossl_sha3_224_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA3_256, FIPS_DEFAULT_PROPERTIES, ossl_sha3_256_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA3_384, FIPS_DEFAULT_PROPERTIES, ossl_sha3_384_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHA3_512, FIPS_DEFAULT_PROPERTIES, ossl_sha3_512_functions }, | 
					
						
							| 
									
										
										
										
											2019-04-11 18:27:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_SHAKE_128, FIPS_DEFAULT_PROPERTIES, ossl_shake_128_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SHAKE_256, FIPS_DEFAULT_PROPERTIES, ossl_shake_256_functions }, | 
					
						
							| 
									
										
										
										
											2020-06-03 08:55:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * KECCAK-KMAC-128 and KECCAK-KMAC-256 as hashes are mostly useful for | 
					
						
							|  |  |  |      * KMAC128 and KMAC256. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_KECCAK_KMAC_128, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_keccak_kmac_128_functions }, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_KECCAK_KMAC_256, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_keccak_kmac_256_functions }, | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  | static const OSSL_ALGORITHM_CAPABLE fips_ciphers[] = { | 
					
						
							| 
									
										
										
										
											2019-05-23 09:39:15 +08:00
										 |  |  |     /* Our primary name[:ASN.1 OID name][:our older names] */ | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     ALG(PROV_NAMES_AES_256_ECB, ossl_aes256ecb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_ECB, ossl_aes192ecb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_ECB, ossl_aes128ecb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CBC, ossl_aes256cbc_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CBC, ossl_aes192cbc_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CBC, ossl_aes128cbc_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CBC_CTS, ossl_aes256cbc_cts_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CBC_CTS, ossl_aes192cbc_cts_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CBC_CTS, ossl_aes128cbc_cts_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_OFB, ossl_aes256ofb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_OFB, ossl_aes192ofb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_OFB, ossl_aes128ofb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CFB, ossl_aes256cfb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CFB, ossl_aes192cfb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CFB, ossl_aes128cfb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CFB1, ossl_aes256cfb1_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CFB1, ossl_aes192cfb1_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CFB1, ossl_aes128cfb1_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CFB8, ossl_aes256cfb8_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CFB8, ossl_aes192cfb8_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CFB8, ossl_aes128cfb8_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CTR, ossl_aes256ctr_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CTR, ossl_aes192ctr_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CTR, ossl_aes128ctr_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_XTS, ossl_aes256xts_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_XTS, ossl_aes128xts_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_GCM, ossl_aes256gcm_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_GCM, ossl_aes192gcm_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_GCM, ossl_aes128gcm_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_CCM, ossl_aes256ccm_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_CCM, ossl_aes192ccm_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_CCM, ossl_aes128ccm_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_WRAP, ossl_aes256wrap_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_WRAP, ossl_aes192wrap_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_WRAP, ossl_aes128wrap_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_WRAP_PAD, ossl_aes256wrappad_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_WRAP_PAD, ossl_aes192wrappad_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_WRAP_PAD, ossl_aes128wrappad_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_WRAP_INV, ossl_aes256wrapinv_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_WRAP_INV, ossl_aes192wrapinv_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_WRAP_INV, ossl_aes128wrapinv_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_256_WRAP_PAD_INV, ossl_aes256wrappadinv_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_192_WRAP_PAD_INV, ossl_aes192wrappadinv_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_AES_128_WRAP_PAD_INV, ossl_aes128wrappadinv_functions), | 
					
						
							|  |  |  |     ALGC(PROV_NAMES_AES_128_CBC_HMAC_SHA1, ossl_aes128cbc_hmac_sha1_functions, | 
					
						
							| 
									
										
										
										
											2020-09-29 15:40:26 +08:00
										 |  |  |          ossl_cipher_capable_aes_cbc_hmac_sha1), | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     ALGC(PROV_NAMES_AES_256_CBC_HMAC_SHA1, ossl_aes256cbc_hmac_sha1_functions, | 
					
						
							| 
									
										
										
										
											2020-09-29 15:40:26 +08:00
										 |  |  |          ossl_cipher_capable_aes_cbc_hmac_sha1), | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     ALGC(PROV_NAMES_AES_128_CBC_HMAC_SHA256, ossl_aes128cbc_hmac_sha256_functions, | 
					
						
							| 
									
										
										
										
											2020-09-29 15:40:26 +08:00
										 |  |  |          ossl_cipher_capable_aes_cbc_hmac_sha256), | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     ALGC(PROV_NAMES_AES_256_CBC_HMAC_SHA256, ossl_aes256cbc_hmac_sha256_functions, | 
					
						
							| 
									
										
										
										
											2020-09-29 15:40:26 +08:00
										 |  |  |          ossl_cipher_capable_aes_cbc_hmac_sha256), | 
					
						
							| 
									
										
										
										
											2022-11-09 06:51:55 +08:00
										 |  |  | #ifndef OPENSSL_NO_DES
 | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     ALG(PROV_NAMES_DES_EDE3_ECB, ossl_tdes_ede3_ecb_functions), | 
					
						
							|  |  |  |     ALG(PROV_NAMES_DES_EDE3_CBC, ossl_tdes_ede3_cbc_functions), | 
					
						
							| 
									
										
										
										
											2022-11-09 06:51:55 +08:00
										 |  |  | #endif  /* OPENSSL_NO_DES */
 | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  |     { { NULL, NULL, NULL }, NULL } | 
					
						
							| 
									
										
										
										
											2019-05-28 18:25:08 +08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  | static OSSL_ALGORITHM exported_fips_ciphers[OSSL_NELEM(fips_ciphers)]; | 
					
						
							| 
									
										
										
										
											2019-05-28 18:25:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-01 17:18:15 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_macs[] = { | 
					
						
							| 
									
										
										
										
											2020-06-03 08:55:49 +08:00
										 |  |  | #ifndef OPENSSL_NO_CMAC
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_CMAC, FIPS_DEFAULT_PROPERTIES, ossl_cmac_functions }, | 
					
						
							| 
									
										
										
										
											2020-06-03 08:55:49 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_GMAC, FIPS_DEFAULT_PROPERTIES, ossl_gmac_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_HMAC, FIPS_DEFAULT_PROPERTIES, ossl_hmac_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_KMAC_128, FIPS_DEFAULT_PROPERTIES, ossl_kmac128_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_KMAC_256, FIPS_DEFAULT_PROPERTIES, ossl_kmac256_functions }, | 
					
						
							| 
									
										
										
										
											2019-06-01 17:18:15 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-21 11:09:10 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_kdfs[] = { | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_HKDF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_hkdf_functions }, | 
					
						
							| 
									
										
										
										
											2021-08-02 14:19:29 +08:00
										 |  |  |     { PROV_NAMES_TLS1_3_KDF, FIPS_DEFAULT_PROPERTIES, | 
					
						
							|  |  |  |       ossl_kdf_tls1_3_kdf_functions }, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_SSKDF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_sskdf_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_PBKDF2, FIPS_DEFAULT_PROPERTIES, ossl_kdf_pbkdf2_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_SSHKDF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_sshkdf_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_X963KDF, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-11-16 10:42:18 +08:00
										 |  |  |       ossl_kdf_x963_kdf_functions }, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_X942KDF_ASN1, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-11-16 10:42:18 +08:00
										 |  |  |       ossl_kdf_x942_kdf_functions }, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_TLS1_PRF, FIPS_DEFAULT_PROPERTIES, | 
					
						
							|  |  |  |       ossl_kdf_tls1_prf_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_KBKDF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_kbkdf_functions }, | 
					
						
							| 
									
										
										
										
											2019-05-23 09:39:15 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							| 
									
										
										
										
											2019-08-21 11:09:10 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-08 08:24:12 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_rands[] = { | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_CTR_DRBG, FIPS_DEFAULT_PROPERTIES, ossl_drbg_ctr_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_HASH_DRBG, FIPS_DEFAULT_PROPERTIES, ossl_drbg_hash_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_HMAC_DRBG, FIPS_DEFAULT_PROPERTIES, ossl_drbg_ossl_hmac_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_TEST_RAND, FIPS_UNAPPROVED_PROPERTIES, ossl_test_rng_functions }, | 
					
						
							| 
									
										
										
										
											2020-05-08 08:24:12 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-23 18:33:28 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_keyexch[] = { | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_DH, FIPS_DEFAULT_PROPERTIES, ossl_dh_keyexch_functions }, | 
					
						
							| 
									
										
										
										
											2020-02-20 14:16:21 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_ECDH, FIPS_DEFAULT_PROPERTIES, ossl_ecdh_keyexch_functions }, | 
					
						
							| 
									
										
										
										
											2023-04-17 16:20:31 +08:00
										 |  |  | # ifndef OPENSSL_NO_ECX
 | 
					
						
							| 
									
										
										
										
											2024-04-11 14:57:51 +08:00
										 |  |  |     { PROV_NAMES_X25519, FIPS_UNAPPROVED_PROPERTIES, ossl_x25519_keyexch_functions }, | 
					
						
							|  |  |  |     { PROV_NAMES_X448, FIPS_UNAPPROVED_PROPERTIES, ossl_x448_keyexch_functions }, | 
					
						
							| 
									
										
										
										
											2023-04-17 16:20:31 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2020-01-23 18:33:28 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_TLS1_PRF, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_kdf_tls1_prf_keyexch_functions }, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_HKDF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_hkdf_keyexch_functions }, | 
					
						
							| 
									
										
										
										
											2020-01-23 18:33:28 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_signature[] = { | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_DSA, FIPS_DEFAULT_PROPERTIES, ossl_dsa_signature_functions }, | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_RSA, FIPS_DEFAULT_PROPERTIES, ossl_rsa_signature_functions }, | 
					
						
							| 
									
										
										
										
											2020-03-15 19:34:29 +08:00
										 |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							| 
									
										
										
										
											2023-04-17 16:20:31 +08:00
										 |  |  | # ifndef OPENSSL_NO_ECX
 | 
					
						
							| 
									
										
										
										
											2023-02-21 06:11:44 +08:00
										 |  |  |     { PROV_NAMES_ED25519, FIPS_UNAPPROVED_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2023-01-09 08:25:55 +08:00
										 |  |  |       ossl_ed25519_signature_functions }, | 
					
						
							| 
									
										
										
										
											2023-02-21 06:11:44 +08:00
										 |  |  |     { PROV_NAMES_ED448, FIPS_UNAPPROVED_PROPERTIES, ossl_ed448_signature_functions }, | 
					
						
							| 
									
										
										
										
											2023-04-17 16:20:31 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_ECDSA, FIPS_DEFAULT_PROPERTIES, ossl_ecdsa_signature_functions }, | 
					
						
							| 
									
										
										
										
											2020-03-15 19:34:29 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_HMAC, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_mac_legacy_hmac_signature_functions }, | 
					
						
							| 
									
										
										
										
											2020-08-11 23:17:00 +08:00
										 |  |  | #ifndef OPENSSL_NO_CMAC
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_CMAC, FIPS_DEFAULT_PROPERTIES, | 
					
						
							| 
									
										
										
										
											2020-09-28 10:28:29 +08:00
										 |  |  |       ossl_mac_legacy_cmac_signature_functions }, | 
					
						
							| 
									
										
										
										
											2020-08-11 23:17:00 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-17 22:47:18 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_asym_cipher[] = { | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_RSA, FIPS_DEFAULT_PROPERTIES, ossl_rsa_asym_cipher_functions }, | 
					
						
							| 
									
										
										
										
											2020-01-17 22:47:18 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-19 16:08:46 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_asym_kem[] = { | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_RSA, FIPS_DEFAULT_PROPERTIES, ossl_rsa_asym_kem_functions }, | 
					
						
							| 
									
										
										
										
											2020-09-19 16:08:46 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_keymgmt[] = { | 
					
						
							| 
									
										
										
										
											2020-01-23 18:33:28 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_DH, FIPS_DEFAULT_PROPERTIES, ossl_dh_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_DH }, | 
					
						
							|  |  |  |     { PROV_NAMES_DHX, FIPS_DEFAULT_PROPERTIES, ossl_dhx_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_DHX }, | 
					
						
							| 
									
										
										
										
											2020-01-23 18:33:28 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_DSA, FIPS_DEFAULT_PROPERTIES, ossl_dsa_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_DSA }, | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_RSA, FIPS_DEFAULT_PROPERTIES, ossl_rsa_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_RSA }, | 
					
						
							|  |  |  |     { PROV_NAMES_RSA_PSS, FIPS_DEFAULT_PROPERTIES, | 
					
						
							|  |  |  |       ossl_rsapss_keymgmt_functions, PROV_DESCS_RSA_PSS }, | 
					
						
							| 
									
										
										
										
											2020-02-20 14:16:21 +08:00
										 |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_EC, FIPS_DEFAULT_PROPERTIES, ossl_ec_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_EC }, | 
					
						
							| 
									
										
										
										
											2023-04-17 16:20:31 +08:00
										 |  |  | # ifndef OPENSSL_NO_ECX
 | 
					
						
							| 
									
										
										
										
											2024-04-11 14:57:51 +08:00
										 |  |  |     { PROV_NAMES_X25519, FIPS_UNAPPROVED_PROPERTIES, ossl_x25519_keymgmt_functions, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |       PROV_DESCS_X25519 }, | 
					
						
							| 
									
										
										
										
											2024-04-11 14:57:51 +08:00
										 |  |  |     { PROV_NAMES_X448, FIPS_UNAPPROVED_PROPERTIES, ossl_x448_keymgmt_functions, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |       PROV_DESCS_X448 }, | 
					
						
							| 
									
										
										
										
											2023-02-21 06:11:44 +08:00
										 |  |  |     { PROV_NAMES_ED25519, FIPS_UNAPPROVED_PROPERTIES, ossl_ed25519_keymgmt_functions, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |       PROV_DESCS_ED25519 }, | 
					
						
							| 
									
										
										
										
											2023-02-21 06:11:44 +08:00
										 |  |  |     { PROV_NAMES_ED448, FIPS_UNAPPROVED_PROPERTIES, ossl_ed448_keymgmt_functions, | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |       PROV_DESCS_ED448 }, | 
					
						
							| 
									
										
										
										
											2023-04-17 16:20:31 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2020-02-20 14:16:21 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_TLS1_PRF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_TLS1_PRF_SIGN }, | 
					
						
							|  |  |  |     { PROV_NAMES_HKDF, FIPS_DEFAULT_PROPERTIES, ossl_kdf_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_HKDF_SIGN }, | 
					
						
							|  |  |  |     { PROV_NAMES_HMAC, FIPS_DEFAULT_PROPERTIES, ossl_mac_legacy_keymgmt_functions, | 
					
						
							|  |  |  |       PROV_DESCS_HMAC_SIGN }, | 
					
						
							| 
									
										
										
										
											2020-08-11 23:17:00 +08:00
										 |  |  | #ifndef OPENSSL_NO_CMAC
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:22:55 +08:00
										 |  |  |     { PROV_NAMES_CMAC, FIPS_DEFAULT_PROPERTIES, | 
					
						
							|  |  |  |       ossl_cmac_legacy_keymgmt_functions, PROV_DESCS_CMAC_SIGN }, | 
					
						
							| 
									
										
										
										
											2020-08-11 23:17:00 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | static const OSSL_ALGORITHM *fips_query(void *provctx, int operation_id, | 
					
						
							|  |  |  |                                         int *no_cache) | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     *no_cache = 0; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-07 09:58:48 +08:00
										 |  |  |     if (!ossl_prov_is_running()) | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     switch (operation_id) { | 
					
						
							|  |  |  |     case OSSL_OP_DIGEST: | 
					
						
							|  |  |  |         return fips_digests; | 
					
						
							| 
									
										
										
										
											2019-05-28 18:25:08 +08:00
										 |  |  |     case OSSL_OP_CIPHER: | 
					
						
							| 
									
										
										
										
											2020-01-06 11:02:16 +08:00
										 |  |  |         return exported_fips_ciphers; | 
					
						
							| 
									
										
										
										
											2019-06-01 17:18:15 +08:00
										 |  |  |     case OSSL_OP_MAC: | 
					
						
							|  |  |  |         return fips_macs; | 
					
						
							| 
									
										
										
										
											2019-08-21 11:09:10 +08:00
										 |  |  |     case OSSL_OP_KDF: | 
					
						
							|  |  |  |         return fips_kdfs; | 
					
						
							| 
									
										
										
										
											2020-05-08 08:24:12 +08:00
										 |  |  |     case OSSL_OP_RAND: | 
					
						
							|  |  |  |         return fips_rands; | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  |     case OSSL_OP_KEYMGMT: | 
					
						
							|  |  |  |         return fips_keymgmt; | 
					
						
							| 
									
										
										
										
											2020-01-23 18:33:28 +08:00
										 |  |  |     case OSSL_OP_KEYEXCH: | 
					
						
							|  |  |  |         return fips_keyexch; | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  |     case OSSL_OP_SIGNATURE: | 
					
						
							|  |  |  |         return fips_signature; | 
					
						
							| 
									
										
										
										
											2020-01-17 22:47:18 +08:00
										 |  |  |     case OSSL_OP_ASYM_CIPHER: | 
					
						
							|  |  |  |         return fips_asym_cipher; | 
					
						
							| 
									
										
										
										
											2020-09-19 16:08:46 +08:00
										 |  |  |     case OSSL_OP_KEM: | 
					
						
							|  |  |  |         return fips_asym_kem; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | static void fips_teardown(void *provctx) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX_free(PROV_LIBCTX_OF(provctx)); | 
					
						
							| 
									
										
										
										
											2020-09-28 10:47:04 +08:00
										 |  |  |     ossl_prov_ctx_free(provctx); | 
					
						
							| 
									
										
										
										
											2020-05-12 15:02:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void fips_intern_teardown(void *provctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We know that the library context is the same as for the outer provider, | 
					
						
							|  |  |  |      * so no need to destroy it here. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-09-28 10:47:04 +08:00
										 |  |  |     ossl_prov_ctx_free(provctx); | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /* Functions we provide to the core */ | 
					
						
							|  |  |  | static const OSSL_DISPATCH fips_dispatch_table[] = { | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_TEARDOWN, (void (*)(void))fips_teardown }, | 
					
						
							| 
									
										
										
										
											2019-08-15 02:17:39 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_GETTABLE_PARAMS, (void (*)(void))fips_gettable_params }, | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_GET_PARAMS, (void (*)(void))fips_get_params }, | 
					
						
							|  |  |  |     { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))fips_query }, | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_GET_CAPABILITIES, | 
					
						
							| 
									
										
										
										
											2021-03-09 13:26:17 +08:00
										 |  |  |       (void (*)(void))ossl_prov_get_capabilities }, | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_SELF_TEST, (void (*)(void))fips_self_test }, | 
					
						
							| 
									
										
										
										
											2023-04-19 22:08:22 +08:00
										 |  |  |     OSSL_DISPATCH_END | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | /* Functions we provide to ourself */ | 
					
						
							|  |  |  | static const OSSL_DISPATCH intern_dispatch_table[] = { | 
					
						
							| 
									
										
										
										
											2020-05-12 15:02:25 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_TEARDOWN, (void (*)(void))fips_intern_teardown }, | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))fips_query }, | 
					
						
							| 
									
										
										
										
											2023-04-19 22:08:22 +08:00
										 |  |  |     OSSL_DISPATCH_END | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-20 00:51:07 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * On VMS, the provider init function name is expected to be uppercase, | 
					
						
							|  |  |  |  * see the pragmas in <openssl/core.h>.  Let's do the same with this | 
					
						
							|  |  |  |  * internal name.  This is how symbol names are treated by default | 
					
						
							|  |  |  |  * by the compiler if nothing else is said, but since this is part | 
					
						
							|  |  |  |  * of libfips, and we build our libraries with mixed case symbol names, | 
					
						
							|  |  |  |  * we must switch back to this default explicitly here. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #ifdef __VMS
 | 
					
						
							|  |  |  | # pragma names save
 | 
					
						
							|  |  |  | # pragma names uppercase,truncated
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | OSSL_provider_init_fn OSSL_provider_init_int; | 
					
						
							|  |  |  | #ifdef __VMS
 | 
					
						
							|  |  |  | # pragma names restore
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | int OSSL_provider_init_int(const OSSL_CORE_HANDLE *handle, | 
					
						
							|  |  |  |                            const OSSL_DISPATCH *in, | 
					
						
							|  |  |  |                            const OSSL_DISPATCH **out, | 
					
						
							|  |  |  |                            void **provctx) | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |     FIPS_GLOBAL *fgbl; | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *libctx = NULL; | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     SELF_TEST_POST_PARAMS selftest_params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(&selftest_params, 0, sizeof(selftest_params)); | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-30 13:54:03 +08:00
										 |  |  |     if (!ossl_prov_seeding_from_dispatch(in)) | 
					
						
							| 
									
										
										
										
											2022-05-10 22:46:35 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     for (; in->function_id != 0; in++) { | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * We do not support the scenario of an application linked against | 
					
						
							|  |  |  |          * multiple versions of libcrypto (e.g. one static and one dynamic), but | 
					
						
							|  |  |  |          * sharing a single fips.so. We do a simple sanity check here. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  | #define set_func(c, f) if (c == NULL) c = f; else if (c != f) return 0;
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |         switch (in->function_id) { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |         case OSSL_FUNC_CORE_GET_LIBCTX: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_get_libctx, OSSL_FUNC_core_get_libctx(in)); | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-08-15 02:17:39 +08:00
										 |  |  |         case OSSL_FUNC_CORE_GETTABLE_PARAMS: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_gettable_params, OSSL_FUNC_core_gettable_params(in)); | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_GET_PARAMS: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_get_params, OSSL_FUNC_core_get_params(in)); | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |         case OSSL_FUNC_CORE_THREAD_START: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_thread_start, OSSL_FUNC_core_thread_start(in)); | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  |         case OSSL_FUNC_CORE_NEW_ERROR: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_new_error, OSSL_FUNC_core_new_error(in)); | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  |         case OSSL_FUNC_CORE_SET_ERROR_DEBUG: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_set_error_debug, OSSL_FUNC_core_set_error_debug(in)); | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_VSET_ERROR: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_vset_error, OSSL_FUNC_core_vset_error(in)); | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-01-15 21:09:54 +08:00
										 |  |  |         case OSSL_FUNC_CORE_SET_ERROR_MARK: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_set_error_mark, OSSL_FUNC_core_set_error_mark(in)); | 
					
						
							| 
									
										
										
										
											2020-01-15 21:09:54 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_CLEAR_LAST_ERROR_MARK: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_clear_last_error_mark, | 
					
						
							|  |  |  |                      OSSL_FUNC_core_clear_last_error_mark(in)); | 
					
						
							| 
									
										
										
										
											2020-01-15 21:09:54 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_POP_ERROR_TO_MARK: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_pop_error_to_mark, OSSL_FUNC_core_pop_error_to_mark(in)); | 
					
						
							| 
									
										
										
										
											2020-01-15 21:09:54 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |         case OSSL_FUNC_CRYPTO_MALLOC: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_malloc, OSSL_FUNC_CRYPTO_malloc(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_ZALLOC: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_zalloc, OSSL_FUNC_CRYPTO_zalloc(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_FREE: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_free, OSSL_FUNC_CRYPTO_free(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_CLEAR_FREE: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_clear_free, OSSL_FUNC_CRYPTO_clear_free(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_REALLOC: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_realloc, OSSL_FUNC_CRYPTO_realloc(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_CLEAR_REALLOC: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_clear_realloc, | 
					
						
							|  |  |  |                      OSSL_FUNC_CRYPTO_clear_realloc(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_SECURE_MALLOC: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_secure_malloc, | 
					
						
							|  |  |  |                      OSSL_FUNC_CRYPTO_secure_malloc(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_SECURE_ZALLOC: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_secure_zalloc, | 
					
						
							|  |  |  |                      OSSL_FUNC_CRYPTO_secure_zalloc(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_SECURE_FREE: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_secure_free, | 
					
						
							|  |  |  |                      OSSL_FUNC_CRYPTO_secure_free(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_SECURE_CLEAR_FREE: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_secure_clear_free, | 
					
						
							|  |  |  |                      OSSL_FUNC_CRYPTO_secure_clear_free(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CRYPTO_SECURE_ALLOCATED: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_CRYPTO_secure_allocated, | 
					
						
							|  |  |  |                      OSSL_FUNC_CRYPTO_secure_allocated(in)); | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |         case OSSL_FUNC_BIO_NEW_FILE: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(selftest_params.bio_new_file_cb, | 
					
						
							|  |  |  |                      OSSL_FUNC_BIO_new_file(in)); | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_BIO_NEW_MEMBUF: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(selftest_params.bio_new_buffer_cb, | 
					
						
							|  |  |  |                      OSSL_FUNC_BIO_new_membuf(in)); | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         case OSSL_FUNC_BIO_READ_EX: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(selftest_params.bio_read_ex_cb, | 
					
						
							|  |  |  |                      OSSL_FUNC_BIO_read_ex(in)); | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_BIO_FREE: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(selftest_params.bio_free_cb, OSSL_FUNC_BIO_free(in)); | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-03-15 15:38:00 +08:00
										 |  |  |         case OSSL_FUNC_BIO_VSNPRINTF: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_BIO_vsnprintf, OSSL_FUNC_BIO_vsnprintf(in)); | 
					
						
							| 
									
										
										
										
											2020-03-15 15:38:00 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-10-30 13:54:03 +08:00
										 |  |  |         case OSSL_FUNC_SELF_TEST_CB: | 
					
						
							| 
									
										
										
										
											2021-04-12 22:22:56 +08:00
										 |  |  |             set_func(c_stcbfn, OSSL_FUNC_self_test_cb(in)); | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  |         case OSSL_FUNC_INDICATOR_CB: | 
					
						
							|  |  |  |             set_func(c_indcbfn, OSSL_FUNC_indicator_cb(in)); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |             /* Just ignore anything we don't understand */ | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-16 16:41:25 +08:00
										 |  |  |     OPENSSL_cpuid_setup(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  |     /*  Create a context. */ | 
					
						
							| 
									
										
										
										
											2020-09-28 10:47:04 +08:00
										 |  |  |     if ((*provctx = ossl_prov_ctx_new()) == NULL | 
					
						
							| 
									
										
										
										
											2023-09-04 12:37:09 +08:00
										 |  |  |             || (libctx = OSSL_LIB_CTX_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2020-05-12 15:02:25 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     if ((fgbl = ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_FIPS_PROV_INDEX)) == NULL) | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |     fgbl->handle = handle; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-25 23:44:47 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We need to register this thread to receive thread lifecycle callbacks. | 
					
						
							|  |  |  |      * This wouldn't matter if the current thread is also the same thread that | 
					
						
							|  |  |  |      * closes the FIPS provider down. But if that happens on a different thread | 
					
						
							|  |  |  |      * then memory leaks could otherwise occur. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!ossl_thread_register_fips(libctx)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We did initial set up of selftest_params in a local copy, because we | 
					
						
							|  |  |  |      * could not create fgbl until c_CRYPTO_zalloc was defined in the loop | 
					
						
							|  |  |  |      * above. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     fgbl->selftest_params = selftest_params; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fgbl->selftest_params.libctx = libctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     set_self_test_cb(fgbl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!fips_get_params_from_core(fgbl)) { | 
					
						
							|  |  |  |         /* Error already raised */ | 
					
						
							| 
									
										
										
										
											2021-05-11 23:50:13 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-05-05 11:39:56 +08:00
										 |  |  |      * Disable the conditional error check if it's disabled in the fips config | 
					
						
							|  |  |  |      * file. | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     if (fgbl->selftest_params.conditional_error_check != NULL | 
					
						
							|  |  |  |         && strcmp(fgbl->selftest_params.conditional_error_check, "0") == 0) | 
					
						
							|  |  |  |         SELF_TEST_disable_conditional_error_state(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     /* Enable or disable FIPS provider options */ | 
					
						
							|  |  |  | #define FIPS_SET_OPTION(fgbl, field)                                            \
 | 
					
						
							|  |  |  |     if (fgbl->field.option != NULL) {                                       \ | 
					
						
							|  |  |  |         if (strcmp(fgbl->field.option, "1") == 0)                           \ | 
					
						
							|  |  |  |             fgbl->field.enabled = 1;                                        \ | 
					
						
							|  |  |  |         else if (strcmp(fgbl->field.option, "0") == 0)                      \ | 
					
						
							|  |  |  |             fgbl->field.enabled = 0;                                        \ | 
					
						
							|  |  |  |         else                                                                \ | 
					
						
							|  |  |  |             goto err;                                                       \ | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_security_checks); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_tls1_prf_ems_check); | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_eddsa_no_verify_digested); | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_no_short_mac); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_restricted_drgb_digests); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_hkdf_digest_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_tls13_kdf_digest_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_tls1_prf_digest_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_sshkdf_digest_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_sskdf_digest_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_x963kdf_digest_check); | 
					
						
							| 
									
										
										
										
											2024-07-04 09:59:43 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_dsa_sign_disallowed); | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_tdes_encrypt_disallowed); | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_rsa_sign_x931_disallowed); | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_hkdf_key_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_tls13_kdf_key_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_tls1_prf_key_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_sshkdf_key_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_sskdf_key_check); | 
					
						
							|  |  |  |     FIPS_SET_OPTION(fgbl, fips_x963kdf_key_check); | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  |     FIPS_SET_OPTION(fgbl, fips_pbkdf2_lower_bound_check); | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | #undef FIPS_SET_OPTION
 | 
					
						
							| 
									
										
										
										
											2023-02-08 15:22:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-26 23:23:19 +08:00
										 |  |  |     ossl_prov_cache_exported_algorithms(fips_ciphers, exported_fips_ciphers); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     if (!SELF_TEST_post(&fgbl->selftest_params, 0)) { | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PROV, PROV_R_SELF_TEST_POST_FAILURE); | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-28 08:25:55 +08:00
										 |  |  |     ossl_prov_ctx_set0_libctx(*provctx, libctx); | 
					
						
							|  |  |  |     ossl_prov_ctx_set0_handle(*provctx, handle); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  |     *out = fips_dispatch_table; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |  err: | 
					
						
							|  |  |  |     fips_teardown(*provctx); | 
					
						
							| 
									
										
										
										
											2021-07-27 23:31:20 +08:00
										 |  |  |     OSSL_LIB_CTX_free(libctx); | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |     *provctx = NULL; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * The internal init function used when the FIPS module uses EVP to call | 
					
						
							| 
									
										
										
										
											2019-05-21 23:25:24 +08:00
										 |  |  |  * another algorithm also in the FIPS module. This is a recursive call that has | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |  * been made from within the FIPS module itself. To make this work, we populate | 
					
						
							|  |  |  |  * the provider context of this inner instance with the same library context | 
					
						
							|  |  |  |  * that was used in the EVP call that initiated this recursive call. | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-03-09 13:26:17 +08:00
										 |  |  | OSSL_provider_init_fn ossl_fips_intern_provider_init; | 
					
						
							|  |  |  | int ossl_fips_intern_provider_init(const OSSL_CORE_HANDLE *handle, | 
					
						
							|  |  |  |                                    const OSSL_DISPATCH *in, | 
					
						
							|  |  |  |                                    const OSSL_DISPATCH **out, | 
					
						
							|  |  |  |                                    void **provctx) | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_FUNC_core_get_libctx_fn *c_internal_get_libctx = NULL; | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (; in->function_id != 0; in++) { | 
					
						
							|  |  |  |         switch (in->function_id) { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |         case OSSL_FUNC_CORE_GET_LIBCTX: | 
					
						
							|  |  |  |             c_internal_get_libctx = OSSL_FUNC_core_get_libctx(in); | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |     if (c_internal_get_libctx == NULL) | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-28 10:47:04 +08:00
										 |  |  |     if ((*provctx = ossl_prov_ctx_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Using the parent library context only works because we are a built-in | 
					
						
							|  |  |  |      * internal provider. This is not something that most providers would be | 
					
						
							|  |  |  |      * able to do. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     ossl_prov_ctx_set0_libctx(*provctx, | 
					
						
							|  |  |  |                               (OSSL_LIB_CTX *)c_internal_get_libctx(handle)); | 
					
						
							| 
									
										
										
										
											2020-09-28 10:47:04 +08:00
										 |  |  |     ossl_prov_ctx_set0_handle(*provctx, handle); | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     *out = intern_dispatch_table; | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  | void ERR_new(void) | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  |     c_new_error(NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ERR_set_debug(const char *file, int line, const char *func) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c_set_error_debug(NULL, file, line, func); | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  | void ERR_set_error(int lib, int reason, const char *fmt, ...) | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     va_list args; | 
					
						
							| 
									
										
										
										
											2019-06-19 00:06:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  |     va_start(args, fmt); | 
					
						
							|  |  |  |     c_vset_error(NULL, ERR_PACK(lib, 0, reason), fmt, args); | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |     va_end(args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  | void ERR_vset_error(int lib, int reason, const char *fmt, va_list args) | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-07-24 20:00:39 +08:00
										 |  |  |     c_vset_error(NULL, ERR_PACK(lib, 0, reason), fmt, args); | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-15 21:09:54 +08:00
										 |  |  | int ERR_set_mark(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_set_error_mark(NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ERR_clear_last_mark(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_clear_last_error_mark(NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ERR_pop_to_mark(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_pop_error_to_mark(NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This must take a library context, since it's called from the depths | 
					
						
							|  |  |  |  * of crypto/initthread.c code, where it's (correctly) assumed that the | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |  * passed caller argument is an OSSL_LIB_CTX pointer (since the same routine | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |  * is also called from other parts of libcrypto, which all pass around a | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |  * OSSL_LIB_CTX pointer) | 
					
						
							| 
									
										
										
										
											2020-05-09 16:11:14 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | const OSSL_CORE_HANDLE *FIPS_get_core_handle(OSSL_LIB_CTX *libctx) | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     FIPS_GLOBAL *fgbl = ossl_lib_ctx_get_data(libctx, | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |                                               OSSL_LIB_CTX_FIPS_PROV_INDEX); | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (fgbl == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |     return fgbl->handle; | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-07-11 13:53:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void *CRYPTO_malloc(size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_malloc(num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *CRYPTO_zalloc(size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_zalloc(num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CRYPTO_free(void *ptr, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c_CRYPTO_free(ptr, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CRYPTO_clear_free(void *ptr, size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c_CRYPTO_clear_free(ptr, num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *CRYPTO_realloc(void *addr, size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_realloc(addr, num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *CRYPTO_clear_realloc(void *addr, size_t old_num, size_t num, | 
					
						
							|  |  |  |                            const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_clear_realloc(addr, old_num, num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *CRYPTO_secure_malloc(size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_secure_malloc(num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *CRYPTO_secure_zalloc(size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_secure_zalloc(num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CRYPTO_secure_free(void *ptr, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c_CRYPTO_secure_free(ptr, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CRYPTO_secure_clear_free(void *ptr, size_t num, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c_CRYPTO_secure_clear_free(ptr, num, file, line); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int CRYPTO_secure_allocated(const void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return c_CRYPTO_secure_allocated(ptr); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-15 15:38:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int BIO_snprintf(char *buf, size_t n, const char *format, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     va_list args; | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     va_start(args, format); | 
					
						
							|  |  |  |     ret = c_BIO_vsnprintf(buf, n, format, args); | 
					
						
							|  |  |  |     va_end(args); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | #define FIPS_FEATURE_CHECK(fname, field)                                    \
 | 
					
						
							|  |  |  |     int fname(OSSL_LIB_CTX *libctx)                                         \ | 
					
						
							|  |  |  |     {                                                                       \ | 
					
						
							|  |  |  |         FIPS_GLOBAL *fgbl =                                                 \ | 
					
						
							|  |  |  |             ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_FIPS_PROV_INDEX);    \ | 
					
						
							|  |  |  |         return fgbl->field.enabled;                                         \ | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-02-08 15:22:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_security_check_enabled, fips_security_checks) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_tls_prf_ems_check, fips_tls1_prf_ems_check) | 
					
						
							| 
									
										
										
										
											2024-07-30 09:36:25 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_eddsa_no_verify_digested, fips_eddsa_no_verify_digested) | 
					
						
							| 
									
										
										
										
											2024-07-17 11:55:35 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_no_short_mac, fips_no_short_mac) | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_restricted_drbg_digests_enabled, | 
					
						
							|  |  |  |                    fips_restricted_drgb_digests) | 
					
						
							| 
									
										
										
										
											2024-06-02 19:32:59 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_hkdf_digest_check, fips_hkdf_digest_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_tls13_kdf_digest_check, fips_tls13_kdf_digest_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_tls1_prf_digest_check, fips_tls1_prf_digest_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_sshkdf_digest_check, fips_sshkdf_digest_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_sskdf_digest_check, fips_sskdf_digest_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_x963kdf_digest_check, fips_x963kdf_digest_check) | 
					
						
							| 
									
										
										
										
											2024-07-04 09:59:43 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_dsa_sign_check, fips_dsa_sign_disallowed) | 
					
						
							| 
									
										
										
										
											2024-07-22 15:24:53 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_tdes_encrypt_check, fips_tdes_encrypt_disallowed) | 
					
						
							| 
									
										
										
										
											2024-07-29 08:16:30 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_rsa_sign_x931_disallowed, | 
					
						
							|  |  |  |                    fips_rsa_sign_x931_disallowed) | 
					
						
							| 
									
										
										
										
											2024-06-02 19:34:13 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_hkdf_key_check, fips_hkdf_key_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_tls13_kdf_key_check, fips_tls13_kdf_key_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_tls1_prf_key_check, fips_tls1_prf_key_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_sshkdf_key_check, fips_sshkdf_key_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_sskdf_key_check, fips_sskdf_key_check) | 
					
						
							|  |  |  | FIPS_FEATURE_CHECK(FIPS_x963kdf_key_check, fips_x963kdf_key_check) | 
					
						
							| 
									
										
										
										
											2024-07-26 15:28:51 +08:00
										 |  |  | FIPS_FEATURE_CHECK(FIPS_pbkdf2_lower_bound_check, fips_pbkdf2_lower_bound_check) | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-17 09:42:21 +08:00
										 |  |  | #undef FIPS_FEATURE_CHECK
 | 
					
						
							| 
									
										
										
										
											2023-02-08 15:22:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | void OSSL_SELF_TEST_get_callback(OSSL_LIB_CTX *libctx, OSSL_CALLBACK **cb, | 
					
						
							| 
									
										
										
										
											2020-09-15 12:32:40 +08:00
										 |  |  |                                  void **cbarg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-04-10 00:26:34 +08:00
										 |  |  |     assert(libctx != NULL); | 
					
						
							| 
									
										
										
										
											2020-09-15 12:32:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (c_stcbfn != NULL && c_get_libctx != NULL) { | 
					
						
							|  |  |  |         /* Get the parent libctx */ | 
					
						
							|  |  |  |         c_stcbfn(c_get_libctx(FIPS_get_core_handle(libctx)), cb, cbarg); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (cb != NULL) | 
					
						
							|  |  |  |             *cb = NULL; | 
					
						
							|  |  |  |         if (cbarg != NULL) | 
					
						
							|  |  |  |             *cbarg = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void OSSL_INDICATOR_get_callback(OSSL_LIB_CTX *libctx, | 
					
						
							|  |  |  |                                  OSSL_INDICATOR_CALLBACK **cb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     assert(libctx != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (c_indcbfn != NULL && c_get_libctx != NULL) { | 
					
						
							|  |  |  |         /* Get the parent libctx */ | 
					
						
							|  |  |  |         c_indcbfn(c_get_libctx(FIPS_get_core_handle(libctx)), cb); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         if (cb != NULL) | 
					
						
							|  |  |  |             *cb = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |