| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-22 21:38:44 +08:00
										 |  |  |  * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-09 11:14:13 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SHA256 low level APIs are deprecated for public use, but still ok for | 
					
						
							|  |  |  |  * internal use.  Note, that due to symbols not being exported, only the | 
					
						
							|  |  |  |  * #defines can be accessed.  In this case SHA256_CBLOCK. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include "internal/deprecated.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <openssl/sha.h>
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							|  |  |  | #include <openssl/provider.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | #include "internal/sizes.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | #include "testutil.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  | static char *config_file = NULL; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | static char *alg = "digest"; | 
					
						
							|  |  |  | static int use_default_ctx = 0; | 
					
						
							|  |  |  | static char *fetch_property = NULL; | 
					
						
							|  |  |  | static int expected_fetch_result = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef enum OPTION_choice { | 
					
						
							|  |  |  |     OPT_ERR = -1, | 
					
						
							|  |  |  |     OPT_EOF = 0, | 
					
						
							|  |  |  |     OPT_ALG_FETCH_TYPE, | 
					
						
							|  |  |  |     OPT_FETCH_PROPERTY, | 
					
						
							|  |  |  |     OPT_FETCH_FAILURE, | 
					
						
							|  |  |  |     OPT_USE_DEFAULTCTX, | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  |     OPT_CONFIG_FILE, | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     OPT_TEST_ENUM | 
					
						
							|  |  |  | } OPTION_CHOICE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const OPTIONS *test_get_options(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static const OPTIONS test_options[] = { | 
					
						
							|  |  |  |         OPT_TEST_OPTIONS_WITH_EXTRA_USAGE("[provname...]\n"), | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  |         { "config", OPT_CONFIG_FILE, '<', "The configuration file to use for the libctx" }, | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         { "type", OPT_ALG_FETCH_TYPE, 's', "The fetch type to test" }, | 
					
						
							| 
									
										
										
										
											2020-02-15 06:49:26 +08:00
										 |  |  |         { "property", OPT_FETCH_PROPERTY, 's', "The fetch property e.g. provider=fips" }, | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         { "fetchfail", OPT_FETCH_FAILURE, '-', "fetch is expected to fail" }, | 
					
						
							|  |  |  |         { "defaultctx", OPT_USE_DEFAULTCTX, '-', | 
					
						
							|  |  |  |           "Use the default context if this is set" }, | 
					
						
							| 
									
										
										
										
											2021-04-03 20:05:09 +08:00
										 |  |  |         { OPT_HELP_STR, 1, '-', "file\tProvider names to explicitly load\n" }, | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         { NULL } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     return test_options; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int calculate_digest(const EVP_MD *md, const char *msg, size_t len, | 
					
						
							|  |  |  |                             const unsigned char *exptd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     unsigned char out[SHA256_DIGEST_LENGTH]; | 
					
						
							|  |  |  |     EVP_MD_CTX *ctx; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(ctx = EVP_MD_CTX_new()) | 
					
						
							|  |  |  |             || !TEST_true(EVP_DigestInit_ex(ctx, md, NULL)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_DigestUpdate(ctx, msg, len)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_DigestFinal_ex(ctx, out, NULL)) | 
					
						
							|  |  |  |             || !TEST_mem_eq(out, SHA256_DIGEST_LENGTH, exptd, | 
					
						
							|  |  |  |                             SHA256_DIGEST_LENGTH) | 
					
						
							| 
									
										
											  
											
												Add "origin" field to EVP_CIPHER, EVP_MD
Add a "where did this EVP_{CIPHER,MD} come from" flag: global, via fetch,
or via EVP_{CIPHER,MD}_meth_new.  Update EVP_{CIPHER,MD}_free to handle all
three origins. The flag is deliberately right before some function pointers,
so that compile-time failures (int/pointer) will occur, as opposed to
taking a bit in the existing "flags" field.  The "global variable" flag
is non-zero, so the default case of using OPENSSL_zalloc (for provider
ciphers), will do the right thing. Ref-counting is a no-op for
Make up_ref no-op for global MD and CIPHER objects
Deprecate EVP_MD_CTX_md().  Added EVP_MD_CTX_get0_md() (same semantics as
the deprecated function) and EVP_MD_CTX_get1_md().  Likewise, deprecate
EVP_CIPHER_CTX_cipher() in favor of EVP_CIPHER_CTX_get0_cipher(), and add
EVP_CIPHER_CTX_get1_CIPHER().
Refactor EVP_MD_free() and EVP_MD_meth_free() to call new common
evp_md_free_int() function.
Refactor EVP_CIPHER_free() and EVP_CIPHER_meth_free() to call new common
evp_cipher_free_int() function.
Also change some flags tests to explicit test == or != zero. E.g.,
        if (flags & x) --> if ((flags & x) != 0)
        if (!(flags & x)) --> if ((flags & x) == 0)
Only done for those lines where "get0_cipher" calls were made.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14193)
											
										 
											2021-02-17 06:51:56 +08:00
										 |  |  |             || !TEST_true(md == EVP_MD_CTX_get0_md(ctx))) | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     EVP_MD_CTX_free(ctx); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static int load_providers(OSSL_LIB_CTX **libctx, OSSL_PROVIDER *prov[]) | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *ctx = NULL; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  |     size_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     ctx = OSSL_LIB_CTX_new(); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     if (!TEST_ptr(ctx)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     if (!TEST_true(OSSL_LIB_CTX_load_config(ctx, config_file))) | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     if (test_get_argument_count() > 2) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < test_get_argument_count(); ++i) { | 
					
						
							|  |  |  |         char *provname = test_get_argument(i); | 
					
						
							|  |  |  |         prov[i] = OSSL_PROVIDER_load(ctx, provname); | 
					
						
							|  |  |  |         if (!TEST_ptr(prov[i])) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     ret = 1; | 
					
						
							|  |  |  |     *libctx = ctx; | 
					
						
							|  |  |  | err: | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  |     if (ret == 0) | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |         OSSL_LIB_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | static void unload_providers(OSSL_LIB_CTX **libctx, OSSL_PROVIDER *prov[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (prov[0] != NULL) | 
					
						
							|  |  |  |         OSSL_PROVIDER_unload(prov[0]); | 
					
						
							|  |  |  |     if (prov[1] != NULL) | 
					
						
							|  |  |  |         OSSL_PROVIDER_unload(prov[1]); | 
					
						
							|  |  |  |     /* Not normally needed, but we would like to test that
 | 
					
						
							|  |  |  |      * OPENSSL_thread_stop_ex() behaves as expected. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (libctx != NULL && *libctx != NULL) { | 
					
						
							|  |  |  |         OPENSSL_thread_stop_ex(*libctx); | 
					
						
							|  |  |  |         OSSL_LIB_CTX_free(*libctx); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static X509_ALGOR *make_algor(int nid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_ALGOR *algor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(algor = X509_ALGOR_new()) | 
					
						
							|  |  |  |         || !TEST_true(X509_ALGOR_set0(algor, OBJ_nid2obj(nid), | 
					
						
							|  |  |  |                                       V_ASN1_UNDEF, NULL))) { | 
					
						
							|  |  |  |         X509_ALGOR_free(algor); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return algor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Test EVP_MD_fetch() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | static int test_md(const EVP_MD *md) | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const char testmsg[] = "Hello world"; | 
					
						
							|  |  |  |     const unsigned char exptd[] = { | 
					
						
							|  |  |  |       0x27, 0x51, 0x8b, 0xa9, 0x68, 0x30, 0x11, 0xf6, 0xb3, 0x96, 0x07, 0x2c, | 
					
						
							|  |  |  |       0x05, 0xf6, 0x65, 0x6d, 0x04, 0xf5, 0xfb, 0xc3, 0x78, 0x7c, 0xf9, 0x24, | 
					
						
							|  |  |  |       0x90, 0xec, 0x60, 0x6e, 0x50, 0x92, 0xe3, 0x26 | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     return TEST_ptr(md) | 
					
						
							|  |  |  |         && TEST_true(EVP_MD_is_a(md, "SHA256")) | 
					
						
							|  |  |  |         && TEST_true(calculate_digest(md, testmsg, sizeof(testmsg), exptd)) | 
					
						
							| 
									
										
										
											
												Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
											
										 
											2021-05-21 22:58:08 +08:00
										 |  |  |         && TEST_int_eq(EVP_MD_get_size(md), SHA256_DIGEST_LENGTH) | 
					
						
							|  |  |  |         && TEST_int_eq(EVP_MD_get_block_size(md), SHA256_CBLOCK); | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_implicit_EVP_MD_fetch(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_LIB_CTX *ctx = NULL; | 
					
						
							|  |  |  |     OSSL_PROVIDER *prov[2] = {NULL, NULL}; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = (use_default_ctx == 0 || load_providers(&ctx, prov)) | 
					
						
							|  |  |  |         && test_md(EVP_sha256()); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     unload_providers(&ctx, prov); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_explicit_EVP_MD_fetch(const char *id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_LIB_CTX *ctx = NULL; | 
					
						
							|  |  |  |     EVP_MD *md = NULL; | 
					
						
							|  |  |  |     OSSL_PROVIDER *prov[2] = {NULL, NULL}; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (use_default_ctx == 0 && !load_providers(&ctx, prov)) | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     md = EVP_MD_fetch(ctx, id, fetch_property); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     if (expected_fetch_result != 0) { | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |         if (!test_md(md)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Also test EVP_MD_up_ref() while we're doing this */ | 
					
						
							|  |  |  |         if (!TEST_true(EVP_MD_up_ref(md))) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         /* Ref count should now be 2. Release first one here */ | 
					
						
							| 
									
										
										
										
											2020-02-13 09:00:57 +08:00
										 |  |  |         EVP_MD_free(md); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         if (!TEST_ptr_null(md)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2020-02-13 09:00:57 +08:00
										 |  |  |     EVP_MD_free(md); | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     unload_providers(&ctx, prov); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_explicit_EVP_MD_fetch_by_name(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return test_explicit_EVP_MD_fetch("SHA256"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * idx 0: Allow names from OBJ_obj2txt() | 
					
						
							|  |  |  |  * idx 1: Force an OID in text form from OBJ_obj2txt() | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int test_explicit_EVP_MD_fetch_by_X509_ALGOR(int idx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     X509_ALGOR *algor = make_algor(NID_sha256); | 
					
						
							|  |  |  |     const ASN1_OBJECT *obj; | 
					
						
							|  |  |  |     char id[OSSL_MAX_NAME_SIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (algor == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_ALGOR_get0(&obj, NULL, NULL, algor); | 
					
						
							|  |  |  |     switch (idx) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2021-11-10 12:39:54 +08:00
										 |  |  |         if (!TEST_int_gt(OBJ_obj2txt(id, sizeof(id), obj, 0), 0)) | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2021-11-10 12:39:54 +08:00
										 |  |  |         if (!TEST_int_gt(OBJ_obj2txt(id, sizeof(id), obj, 1), 0)) | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ret = test_explicit_EVP_MD_fetch(id); | 
					
						
							|  |  |  |  end: | 
					
						
							|  |  |  |     X509_ALGOR_free(algor); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Test EVP_CIPHER_fetch() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | static int encrypt_decrypt(const EVP_CIPHER *cipher, const unsigned char *msg, | 
					
						
							|  |  |  |                            size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0, ctlen, ptlen; | 
					
						
							|  |  |  |     EVP_CIPHER_CTX *ctx = NULL; | 
					
						
							|  |  |  |     unsigned char key[128 / 8]; | 
					
						
							|  |  |  |     unsigned char ct[64], pt[64]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(key, 0, sizeof(key)); | 
					
						
							|  |  |  |     if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new()) | 
					
						
							|  |  |  |             || !TEST_true(EVP_CipherInit_ex(ctx, cipher, NULL, key, NULL, 1)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_CipherUpdate(ctx, ct, &ctlen, msg, len)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_CipherFinal_ex(ctx, ct, &ctlen)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_CipherInit_ex(ctx, cipher, NULL, key, NULL, 0)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_CipherUpdate(ctx, pt, &ptlen, ct, ctlen)) | 
					
						
							|  |  |  |             || !TEST_true(EVP_CipherFinal_ex(ctx, pt, &ptlen)) | 
					
						
							|  |  |  |             || !TEST_mem_eq(pt, ptlen, msg, len)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     EVP_CIPHER_CTX_free(ctx); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  | static int test_cipher(const EVP_CIPHER *cipher) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const unsigned char testmsg[] = "Hello world"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return TEST_ptr(cipher) | 
					
						
							|  |  |  |         && TEST_true(encrypt_decrypt(cipher, testmsg, sizeof(testmsg))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_implicit_EVP_CIPHER_fetch(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_LIB_CTX *ctx = NULL; | 
					
						
							|  |  |  |     OSSL_PROVIDER *prov[2] = {NULL, NULL}; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = (use_default_ctx == 0 || load_providers(&ctx, prov)) | 
					
						
							|  |  |  |         && test_cipher(EVP_aes_128_cbc()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unload_providers(&ctx, prov); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_explicit_EVP_CIPHER_fetch(const char *id) | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *ctx = NULL; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     EVP_CIPHER *cipher = NULL; | 
					
						
							|  |  |  |     OSSL_PROVIDER *prov[2] = {NULL, NULL}; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (use_default_ctx == 0 && !load_providers(&ctx, prov)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     cipher = EVP_CIPHER_fetch(ctx, id, fetch_property); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     if (expected_fetch_result != 0) { | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |         if (!test_cipher(cipher)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!TEST_true(EVP_CIPHER_up_ref(cipher))) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         /* Ref count should now be 2. Release first one here */ | 
					
						
							|  |  |  |         EVP_CIPHER_free(cipher); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         if (!TEST_ptr_null(cipher)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							| 
									
										
										
										
											2020-02-13 09:00:57 +08:00
										 |  |  |     EVP_CIPHER_free(cipher); | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     unload_providers(&ctx, prov); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_explicit_EVP_CIPHER_fetch_by_name(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return test_explicit_EVP_CIPHER_fetch("AES-128-CBC"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * idx 0: Allow names from OBJ_obj2txt() | 
					
						
							|  |  |  |  * idx 1: Force an OID in text form from OBJ_obj2txt() | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int test_explicit_EVP_CIPHER_fetch_by_X509_ALGOR(int idx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     X509_ALGOR *algor = make_algor(NID_aes_128_cbc); | 
					
						
							|  |  |  |     const ASN1_OBJECT *obj; | 
					
						
							|  |  |  |     char id[OSSL_MAX_NAME_SIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (algor == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_ALGOR_get0(&obj, NULL, NULL, algor); | 
					
						
							|  |  |  |     switch (idx) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							| 
									
										
										
										
											2021-11-10 12:39:54 +08:00
										 |  |  |         if (!TEST_int_gt(OBJ_obj2txt(id, sizeof(id), obj, 0), 0)) | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2021-11-10 12:39:54 +08:00
										 |  |  |         if (!TEST_int_gt(OBJ_obj2txt(id, sizeof(id), obj, 1), 0)) | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = test_explicit_EVP_CIPHER_fetch(id); | 
					
						
							|  |  |  |  end: | 
					
						
							|  |  |  |     X509_ALGOR_free(algor); | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int setup_tests(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPTION_CHOICE o; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while ((o = opt_next()) != OPT_EOF) { | 
					
						
							|  |  |  |         switch (o) { | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  |         case OPT_CONFIG_FILE: | 
					
						
							|  |  |  |             config_file = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |         case OPT_ALG_FETCH_TYPE: | 
					
						
							|  |  |  |             alg = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_FETCH_PROPERTY: | 
					
						
							|  |  |  |             fetch_property = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_FETCH_FAILURE: | 
					
						
							|  |  |  |             expected_fetch_result = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_USE_DEFAULTCTX: | 
					
						
							|  |  |  |             use_default_ctx = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_TEST_CASES: | 
					
						
							|  |  |  |            break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case OPT_ERR: | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-10 18:31:49 +08:00
										 |  |  |     if (strcmp(alg, "digest") == 0) { | 
					
						
							|  |  |  |         ADD_TEST(test_implicit_EVP_MD_fetch); | 
					
						
							|  |  |  |         ADD_TEST(test_explicit_EVP_MD_fetch_by_name); | 
					
						
							|  |  |  |         ADD_ALL_TESTS_NOSUBTEST(test_explicit_EVP_MD_fetch_by_X509_ALGOR, 2); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ADD_TEST(test_implicit_EVP_CIPHER_fetch); | 
					
						
							|  |  |  |         ADD_TEST(test_explicit_EVP_CIPHER_fetch_by_name); | 
					
						
							|  |  |  |         ADD_ALL_TESTS_NOSUBTEST(test_explicit_EVP_CIPHER_fetch_by_X509_ALGOR, 2); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } |