| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <openssl/core.h>
 | 
					
						
							|  |  |  | #include <openssl/core_numbers.h>
 | 
					
						
							|  |  |  | #include <openssl/core_names.h>
 | 
					
						
							|  |  |  | #include <openssl/params.h>
 | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | #include <openssl/evp.h>
 | 
					
						
							|  |  |  | /* TODO(3.0): Needed for dummy_evp_call(). To be removed */ | 
					
						
							|  |  |  | #include <openssl/sha.h>
 | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | #include "internal/property.h"
 | 
					
						
							|  |  |  | #include "internal/evp_int.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-28 18:25:08 +08:00
										 |  |  | #include "internal/provider_algs.h"
 | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  | #include "internal/provider_ctx.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | #include "internal/providercommon.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * TODO(3.0): Should these be stored in the provider side provctx? Could they | 
					
						
							|  |  |  |  * ever be different from one init to the next? Unfortunately we can't do this | 
					
						
							|  |  |  |  * at the moment because c_put_error/c_add_error_vdata do not provide us with | 
					
						
							|  |  |  |  * the OPENSSL_CTX as a parameter. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /* Functions provided by the core */ | 
					
						
							|  |  |  | static OSSL_core_get_param_types_fn *c_get_param_types = NULL; | 
					
						
							|  |  |  | static OSSL_core_get_params_fn *c_get_params = NULL; | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | extern OSSL_core_thread_start_fn *c_thread_start; | 
					
						
							|  |  |  | OSSL_core_thread_start_fn *c_thread_start = NULL; | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | static OSSL_core_put_error_fn *c_put_error = NULL; | 
					
						
							|  |  |  | static OSSL_core_add_error_vdata_fn *c_add_error_vdata = NULL; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | typedef struct fips_global_st { | 
					
						
							|  |  |  |     const OSSL_PROVIDER *prov; | 
					
						
							|  |  |  | } FIPS_GLOBAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void *fips_prov_ossl_ctx_new(OPENSSL_CTX *libctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     FIPS_GLOBAL *fgbl = OPENSSL_zalloc(sizeof(*fgbl)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return fgbl; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void fips_prov_ossl_ctx_free(void *fgbl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free(fgbl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OPENSSL_CTX_METHOD fips_prov_ossl_ctx_method = { | 
					
						
							|  |  |  |     fips_prov_ossl_ctx_new, | 
					
						
							|  |  |  |     fips_prov_ossl_ctx_free, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | /* Parameters we provide to the core */ | 
					
						
							|  |  |  | static const OSSL_ITEM fips_param_types[] = { | 
					
						
							|  |  |  |     { OSSL_PARAM_UTF8_PTR, OSSL_PROV_PARAM_NAME }, | 
					
						
							|  |  |  |     { OSSL_PARAM_UTF8_PTR, OSSL_PROV_PARAM_VERSION }, | 
					
						
							|  |  |  |     { OSSL_PARAM_UTF8_PTR, OSSL_PROV_PARAM_BUILDINFO }, | 
					
						
							|  |  |  |     { 0, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | /* TODO(3.0): To be removed */ | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  | static int dummy_evp_call(void *provctx) | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |     OPENSSL_CTX *libctx = PROV_LIBRARY_CONTEXT_OF(provctx); | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     EVP_MD_CTX *ctx = EVP_MD_CTX_new(); | 
					
						
							|  |  |  |     EVP_MD *sha256 = EVP_MD_fetch(libctx, "SHA256", NULL); | 
					
						
							|  |  |  |     char msg[] = "Hello World!"; | 
					
						
							|  |  |  |     const unsigned char exptd[] = { | 
					
						
							|  |  |  |         0x7f, 0x83, 0xb1, 0x65, 0x7f, 0xf1, 0xfc, 0x53, 0xb9, 0x2d, 0xc1, 0x81, | 
					
						
							|  |  |  |         0x48, 0xa1, 0xd6, 0x5d, 0xfc, 0x2d, 0x4b, 0x1f, 0xa3, 0xd6, 0x77, 0x28, | 
					
						
							|  |  |  |         0x4a, 0xdd, 0xd2, 0x00, 0x12, 0x6d, 0x90, 0x69 | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     unsigned int dgstlen = 0; | 
					
						
							|  |  |  |     unsigned char dgst[SHA256_DIGEST_LENGTH]; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2019-06-11 19:06:27 +08:00
										 |  |  |     BN_CTX *bnctx = NULL; | 
					
						
							|  |  |  |     BIGNUM *a = NULL, *b = NULL; | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ctx == NULL || sha256 == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!EVP_DigestInit_ex(ctx, sha256, NULL)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (!EVP_DigestUpdate(ctx, msg, sizeof(msg) - 1)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (!EVP_DigestFinal(ctx, dgst, &dgstlen)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (dgstlen != sizeof(exptd) || memcmp(dgst, exptd, sizeof(exptd)) != 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 19:06:27 +08:00
										 |  |  |     bnctx = BN_CTX_new_ex(libctx); | 
					
						
							|  |  |  |     if (bnctx == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     BN_CTX_start(bnctx); | 
					
						
							|  |  |  |     a = BN_CTX_get(bnctx); | 
					
						
							|  |  |  |     b = BN_CTX_get(bnctx); | 
					
						
							|  |  |  |     if (b == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     BN_zero(a); | 
					
						
							|  |  |  |     if (!BN_one(b) | 
					
						
							|  |  |  |         || !BN_add(a, a, b) | 
					
						
							|  |  |  |         || BN_cmp(a, b) != 0) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     ret = 1; | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2019-06-11 19:06:27 +08:00
										 |  |  |     BN_CTX_end(bnctx); | 
					
						
							|  |  |  |     BN_CTX_free(bnctx); | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     EVP_MD_CTX_free(ctx); | 
					
						
							|  |  |  |     EVP_MD_meth_free(sha256); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | static const OSSL_ITEM *fips_get_param_types(const OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return fips_param_types; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int fips_get_params(const OSSL_PROVIDER *prov, | 
					
						
							|  |  |  |                             const OSSL_PARAM params[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const OSSL_PARAM *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OSSL_ALGORITHM fips_digests[] = { | 
					
						
							| 
									
										
										
										
											2019-04-11 18:27:59 +08:00
										 |  |  |     { "SHA1", "fips=yes", sha1_functions }, | 
					
						
							|  |  |  |     { "SHA224", "fips=yes", sha224_functions }, | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     { "SHA256", "fips=yes", sha256_functions }, | 
					
						
							| 
									
										
										
										
											2019-04-11 18:27:59 +08:00
										 |  |  |     { "SHA384", "fips=yes", sha384_functions }, | 
					
						
							|  |  |  |     { "SHA512", "fips=yes", sha512_functions }, | 
					
						
							|  |  |  |     { "SHA512-224", "fips=yes", sha512_224_functions }, | 
					
						
							|  |  |  |     { "SHA512-256", "fips=yes", sha512_256_functions }, | 
					
						
							|  |  |  |     { "SHA3-224", "fips=yes", sha3_224_functions }, | 
					
						
							|  |  |  |     { "SHA3-256", "fips=yes", sha3_256_functions }, | 
					
						
							|  |  |  |     { "SHA3-384", "fips=yes", sha3_384_functions }, | 
					
						
							|  |  |  |     { "SHA3-512", "fips=yes", sha3_512_functions }, | 
					
						
							|  |  |  |     { "KMAC128", "fips=yes", keccak_kmac_128_functions }, | 
					
						
							|  |  |  |     { "KMAC256", "fips=yes", keccak_kmac_256_functions }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-28 18:25:08 +08:00
										 |  |  | static const OSSL_ALGORITHM fips_ciphers[] = { | 
					
						
							|  |  |  |     { "AES-256-ECB", "fips=yes", aes256ecb_functions }, | 
					
						
							|  |  |  |     { "AES-192-ECB", "fips=yes", aes192ecb_functions }, | 
					
						
							|  |  |  |     { "AES-128-ECB", "fips=yes", aes128ecb_functions }, | 
					
						
							|  |  |  |     { "AES-256-CBC", "fips=yes", aes256cbc_functions }, | 
					
						
							|  |  |  |     { "AES-192-CBC", "fips=yes", aes192cbc_functions }, | 
					
						
							|  |  |  |     { "AES-128-CBC", "fips=yes", aes128cbc_functions }, | 
					
						
							|  |  |  |     { "AES-256-CTR", "fips=yes", aes256ctr_functions }, | 
					
						
							|  |  |  |     { "AES-192-CTR", "fips=yes", aes192ctr_functions }, | 
					
						
							|  |  |  |     { "AES-128-CTR", "fips=yes", aes128ctr_functions }, | 
					
						
							|  |  |  |     { NULL, NULL, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | static const OSSL_ALGORITHM *fips_query(OSSL_PROVIDER *prov, | 
					
						
							|  |  |  |                                          int operation_id, | 
					
						
							|  |  |  |                                          int *no_cache) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     *no_cache = 0; | 
					
						
							|  |  |  |     switch (operation_id) { | 
					
						
							|  |  |  |     case OSSL_OP_DIGEST: | 
					
						
							|  |  |  |         return fips_digests; | 
					
						
							| 
									
										
										
										
											2019-05-28 18:25:08 +08:00
										 |  |  |     case OSSL_OP_CIPHER: | 
					
						
							|  |  |  |         return fips_ciphers; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Functions we provide to the core */ | 
					
						
							|  |  |  | static const OSSL_DISPATCH fips_dispatch_table[] = { | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * To release our resources we just need to free the OPENSSL_CTX so we just | 
					
						
							|  |  |  |      * use OPENSSL_CTX_free directly as our teardown function | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     { OSSL_FUNC_PROVIDER_TEARDOWN, (void (*)(void))OPENSSL_CTX_free }, | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     { OSSL_FUNC_PROVIDER_GET_PARAM_TYPES, (void (*)(void))fips_get_param_types }, | 
					
						
							|  |  |  |     { OSSL_FUNC_PROVIDER_GET_PARAMS, (void (*)(void))fips_get_params }, | 
					
						
							|  |  |  |     { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))fips_query }, | 
					
						
							|  |  |  |     { 0, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | /* Functions we provide to ourself */ | 
					
						
							|  |  |  | static const OSSL_DISPATCH intern_dispatch_table[] = { | 
					
						
							|  |  |  |     { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))fips_query }, | 
					
						
							|  |  |  |     { 0, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  | int OSSL_provider_init(const OSSL_PROVIDER *provider, | 
					
						
							|  |  |  |                        const OSSL_DISPATCH *in, | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  |                        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; | 
					
						
							|  |  |  |     OPENSSL_CTX *ctx = OPENSSL_CTX_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fgbl = openssl_ctx_get_data(ctx, OPENSSL_CTX_FIPS_PROV_INDEX, | 
					
						
							|  |  |  |                                 &fips_prov_ossl_ctx_method); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (fgbl == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fgbl->prov = provider; | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     for (; in->function_id != 0; in++) { | 
					
						
							|  |  |  |         switch (in->function_id) { | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_GET_PARAM_TYPES: | 
					
						
							|  |  |  |             c_get_param_types = OSSL_get_core_get_param_types(in); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_GET_PARAMS: | 
					
						
							|  |  |  |             c_get_params = OSSL_get_core_get_params(in); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |         case OSSL_FUNC_CORE_THREAD_START: | 
					
						
							|  |  |  |             c_thread_start = OSSL_get_core_thread_start(in); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |         case OSSL_FUNC_CORE_PUT_ERROR: | 
					
						
							|  |  |  |             c_put_error = OSSL_get_core_put_error(in); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_ADD_ERROR_VDATA: | 
					
						
							|  |  |  |             c_add_error_vdata = OSSL_get_core_add_error_vdata(in); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |         /* Just ignore anything we don't understand */ | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     ctx = OPENSSL_CTX_new(); | 
					
						
							|  |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |     *out = fips_dispatch_table; | 
					
						
							|  |  |  |     *provctx = ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * TODO(3.0): Remove me. This is just a dummy call to demonstrate making | 
					
						
							|  |  |  |      * EVP calls from within the FIPS module. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |     if (!dummy_evp_call(*provctx)) { | 
					
						
							|  |  |  |         OPENSSL_CTX_free(*provctx); | 
					
						
							|  |  |  |         *provctx = NULL; | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 22:27:52 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     OPENSSL_CTX_free(ctx); | 
					
						
							|  |  |  |     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
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | OSSL_provider_init_fn fips_intern_provider_init; | 
					
						
							|  |  |  | int fips_intern_provider_init(const OSSL_PROVIDER *provider, | 
					
						
							|  |  |  |                               const OSSL_DISPATCH *in, | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |                               const OSSL_DISPATCH **out, | 
					
						
							|  |  |  |                               void **provctx) | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-14 16:27:30 +08:00
										 |  |  |     OSSL_core_get_library_context_fn *c_get_libctx = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (; in->function_id != 0; in++) { | 
					
						
							|  |  |  |         switch (in->function_id) { | 
					
						
							|  |  |  |         case OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT: | 
					
						
							|  |  |  |             c_get_libctx = OSSL_get_core_get_library_context(in); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (c_get_libctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *provctx = c_get_libctx(provider); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Safety measure...  we should get the library context that was | 
					
						
							|  |  |  |      * created up in OSSL_provider_init(). | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (*provctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-13 13:41:06 +08:00
										 |  |  |     *out = intern_dispatch_table; | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ERR_put_error(int lib, int func, int reason, const char *file, int line) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * TODO(3.0): This works for the FIPS module because we're going to be | 
					
						
							|  |  |  |      * using lib/func/reason codes that libcrypto already knows about. This | 
					
						
							|  |  |  |      * won't work for third party providers that have their own error mechanisms, | 
					
						
							|  |  |  |      * so we'll need to come up with something else for them. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     c_put_error(lib, func, reason, file, line); | 
					
						
							| 
									
										
										
										
											2019-06-19 00:06:17 +08:00
										 |  |  |     ERR_add_error_data(1, "(in the FIPS module)"); | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ERR_add_error_data(int num, ...) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     va_list args; | 
					
						
							| 
									
										
										
										
											2019-06-19 00:06:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |     va_start(args, num); | 
					
						
							|  |  |  |     ERR_add_error_vdata(num, args); | 
					
						
							|  |  |  |     va_end(args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ERR_add_error_vdata(int num, va_list args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     c_add_error_vdata(num, args); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | const OSSL_PROVIDER *FIPS_get_provider(OPENSSL_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     FIPS_GLOBAL *fgbl = openssl_ctx_get_data(ctx, OPENSSL_CTX_FIPS_PROV_INDEX, | 
					
						
							|  |  |  |                                              &fips_prov_ossl_ctx_method); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (fgbl == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return fgbl->prov; | 
					
						
							|  |  |  | } |