| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-03-11 21:27:36 +08:00
										 |  |  |  * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							|  |  |  | #include <openssl/provider.h>
 | 
					
						
							|  |  |  | #include <openssl/params.h>
 | 
					
						
							|  |  |  | #include <openssl/fips_names.h>
 | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  | #include <openssl/core_names.h>
 | 
					
						
							|  |  |  | #include <openssl/self_test.h>
 | 
					
						
							| 
									
										
										
										
											2020-06-29 10:20:41 +08:00
										 |  |  | #include <openssl/fipskey.h>
 | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | #include "apps.h"
 | 
					
						
							|  |  |  | #include "progs.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BUFSIZE 4096
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Configuration file values */ | 
					
						
							|  |  |  | #define VERSION_KEY  "version"
 | 
					
						
							|  |  |  | #define VERSION_VAL  "1"
 | 
					
						
							|  |  |  | #define INSTALL_STATUS_VAL "INSTALL_SELF_TEST_KATS_RUN"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  | static OSSL_CALLBACK self_test_events; | 
					
						
							|  |  |  | static char *self_test_corrupt_desc = NULL; | 
					
						
							|  |  |  | static char *self_test_corrupt_type = NULL; | 
					
						
							|  |  |  | static int self_test_log = 1; | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  | static int quiet = 0; | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | typedef enum OPTION_choice { | 
					
						
							| 
									
										
										
										
											2021-05-01 21:29:00 +08:00
										 |  |  |     OPT_COMMON, | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     OPT_IN, OPT_OUT, OPT_MODULE, | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |     OPT_PROV_NAME, OPT_SECTION_NAME, OPT_MAC_NAME, OPT_MACOPT, OPT_VERIFY, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |     OPT_NO_LOG, OPT_CORRUPT_DESC, OPT_CORRUPT_TYPE, OPT_QUIET, OPT_CONFIG, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |     OPT_NO_CONDITIONAL_ERRORS, | 
					
						
							|  |  |  |     OPT_NO_SECURITY_CHECKS | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | } OPTION_CHOICE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const OPTIONS fipsinstall_options[] = { | 
					
						
							| 
									
										
										
										
											2019-11-08 04:08:30 +08:00
										 |  |  |     OPT_SECTION("General"), | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     {"help", OPT_HELP, '-', "Display this summary"}, | 
					
						
							| 
									
										
										
										
											2019-09-20 09:33:17 +08:00
										 |  |  |     {"verify", OPT_VERIFY, '-', | 
					
						
							|  |  |  |         "Verify a config file instead of generating one"}, | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     {"module", OPT_MODULE, '<', "File name of the provider module"}, | 
					
						
							|  |  |  |     {"provider_name", OPT_PROV_NAME, 's', "FIPS provider name"}, | 
					
						
							|  |  |  |     {"section_name", OPT_SECTION_NAME, 's', | 
					
						
							|  |  |  |      "FIPS Provider config section name (optional)"}, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |      {"no_conditional_errors", OPT_NO_CONDITIONAL_ERRORS, '-', | 
					
						
							|  |  |  |       "Disable the ability of the fips module to enter an error state if" | 
					
						
							|  |  |  |       " any conditional self tests fail"}, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |     {"no_security_checks", OPT_NO_SECURITY_CHECKS, '-', | 
					
						
							|  |  |  |      "Disable the run-time FIPS security checks in the module"}, | 
					
						
							| 
									
										
										
										
											2019-11-08 04:08:30 +08:00
										 |  |  |     OPT_SECTION("Input"), | 
					
						
							|  |  |  |     {"in", OPT_IN, '<', "Input config file, used when verifying"}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OPT_SECTION("Output"), | 
					
						
							|  |  |  |     {"out", OPT_OUT, '>', "Output config file, used when generating"}, | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     {"mac_name", OPT_MAC_NAME, 's', "MAC name"}, | 
					
						
							|  |  |  |     {"macopt", OPT_MACOPT, 's', "MAC algorithm parameters in n:v form. " | 
					
						
							|  |  |  |                                 "See 'PARAMETER NAMES' in the EVP_MAC_ docs"}, | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |     {"noout", OPT_NO_LOG, '-', "Disable logging of self test events"}, | 
					
						
							|  |  |  |     {"corrupt_desc", OPT_CORRUPT_DESC, 's', "Corrupt a self test by description"}, | 
					
						
							|  |  |  |     {"corrupt_type", OPT_CORRUPT_TYPE, 's', "Corrupt a self test by type"}, | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  |     {"config", OPT_CONFIG, '<', "The parent config to verify"}, | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  |     {"quiet", OPT_QUIET, '-', "No messages, just exit status"}, | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     {NULL} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int do_mac(EVP_MAC_CTX *ctx, unsigned char *tmp, BIO *in, | 
					
						
							|  |  |  |                   unsigned char *out, size_t *out_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     size_t outsz = *out_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-25 11:47:01 +08:00
										 |  |  |     if (!EVP_MAC_init(ctx, NULL, 0, NULL)) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2020-10-13 12:22:17 +08:00
										 |  |  |     if (EVP_MAC_CTX_get_mac_size(ctx) > outsz) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     while ((i = BIO_read(in, (char *)tmp, BUFSIZE)) != 0) { | 
					
						
							|  |  |  |         if (i < 0 || !EVP_MAC_update(ctx, tmp, i)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     if (!EVP_MAC_final(ctx, out, out_len, outsz)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int load_fips_prov_and_run_self_test(const char *prov_name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     OSSL_PROVIDER *prov = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     prov = OSSL_PROVIDER_load(NULL, prov_name); | 
					
						
							|  |  |  |     if (prov == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Failed to load FIPS module\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     OSSL_PROVIDER_unload(prov); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int print_mac(BIO *bio, const char *label, const unsigned char *mac, | 
					
						
							|  |  |  |                      size_t len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     char *hexstr = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     hexstr = OPENSSL_buf2hexstr(mac, (long)len); | 
					
						
							|  |  |  |     if (hexstr == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     ret = BIO_printf(bio, "%s = %s\n", label, hexstr); | 
					
						
							|  |  |  |     OPENSSL_free(hexstr); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int write_config_header(BIO *out, const char *prov_name, | 
					
						
							|  |  |  |                                const char *section) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return BIO_printf(out, "openssl_conf = openssl_init\n\n") | 
					
						
							|  |  |  |            && BIO_printf(out, "[openssl_init]\n") | 
					
						
							|  |  |  |            && BIO_printf(out, "providers = provider_section\n\n") | 
					
						
							|  |  |  |            && BIO_printf(out, "[provider_section]\n") | 
					
						
							|  |  |  |            && BIO_printf(out, "%s = %s\n\n", prov_name, section); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Outputs a fips related config file that contains entries for the fips | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |  * module checksum, installation indicator checksum and the options | 
					
						
							|  |  |  |  * conditional_errors and security_checks. | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Returns 1 if the config file is written otherwise it returns 0 on error. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int write_config_fips_section(BIO *out, const char *section, | 
					
						
							|  |  |  |                                      unsigned char *module_mac, | 
					
						
							|  |  |  |                                      size_t module_mac_len, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |                                      int conditional_errors, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |                                      int security_checks, | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |                                      unsigned char *install_mac, | 
					
						
							|  |  |  |                                      size_t install_mac_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |     if (BIO_printf(out, "[%s]\n", section) <= 0 | 
					
						
							|  |  |  |         || BIO_printf(out, "activate = 1\n") <= 0 | 
					
						
							|  |  |  |         || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_INSTALL_VERSION, | 
					
						
							|  |  |  |                       VERSION_VAL) <= 0 | 
					
						
							|  |  |  |         || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_CONDITIONAL_ERRORS, | 
					
						
							|  |  |  |                       conditional_errors ? "1" : "0") <= 0 | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |         || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_SECURITY_CHECKS, | 
					
						
							|  |  |  |                       security_checks ? "1" : "0") <= 0 | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |         || !print_mac(out, OSSL_PROV_FIPS_PARAM_MODULE_MAC, module_mac, | 
					
						
							|  |  |  |                       module_mac_len)) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (install_mac != NULL) { | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |         if (!print_mac(out, OSSL_PROV_FIPS_PARAM_INSTALL_MAC, install_mac, | 
					
						
							|  |  |  |                        install_mac_len) | 
					
						
							|  |  |  |             || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_INSTALL_STATUS, | 
					
						
							|  |  |  |                           INSTALL_STATUS_VAL) <= 0) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static CONF *generate_config_and_load(const char *prov_name, | 
					
						
							|  |  |  |                                       const char *section, | 
					
						
							|  |  |  |                                       unsigned char *module_mac, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |                                       size_t module_mac_len, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |                                       int conditional_errors, | 
					
						
							|  |  |  |                                       int security_checks) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO *mem_bio = NULL; | 
					
						
							|  |  |  |     CONF *conf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mem_bio = BIO_new(BIO_s_mem()); | 
					
						
							|  |  |  |     if (mem_bio  == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!write_config_header(mem_bio, prov_name, section) | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |          || !write_config_fips_section(mem_bio, section, | 
					
						
							|  |  |  |                                        module_mac, module_mac_len, | 
					
						
							|  |  |  |                                        conditional_errors, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |                                        security_checks, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |                                        NULL, 0)) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conf = app_load_config_bio(mem_bio, NULL); | 
					
						
							|  |  |  |     if (conf == NULL) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  |     if (CONF_modules_load(conf, NULL, 0) <= 0) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     BIO_free(mem_bio); | 
					
						
							|  |  |  |     return conf; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     NCONF_free(conf); | 
					
						
							|  |  |  |     BIO_free(mem_bio); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void free_config_and_unload(CONF *conf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (conf != NULL) { | 
					
						
							|  |  |  |         NCONF_free(conf); | 
					
						
							|  |  |  |         CONF_modules_unload(1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  | static int verify_module_load(const char *parent_config_file) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     return OSSL_LIB_CTX_load_config(NULL, parent_config_file); | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Returns 1 if the config file entries match the passed in module_mac and | 
					
						
							|  |  |  |  * install_mac values, otherwise it returns 0. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int verify_config(const char *infile, const char *section, | 
					
						
							|  |  |  |                          unsigned char *module_mac, size_t module_mac_len, | 
					
						
							|  |  |  |                          unsigned char *install_mac, size_t install_mac_len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     char *s = NULL; | 
					
						
							|  |  |  |     unsigned char *buf1 = NULL, *buf2 = NULL; | 
					
						
							|  |  |  |     long len; | 
					
						
							|  |  |  |     CONF *conf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* read in the existing values and check they match the saved values */ | 
					
						
							|  |  |  |     conf = app_load_config(infile); | 
					
						
							|  |  |  |     if (conf == NULL) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_INSTALL_VERSION); | 
					
						
							|  |  |  |     if (s == NULL || strcmp(s, VERSION_VAL) != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "version not found\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_INSTALL_STATUS); | 
					
						
							|  |  |  |     if (s == NULL || strcmp(s, INSTALL_STATUS_VAL) != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "install status not found\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_MODULE_MAC); | 
					
						
							|  |  |  |     if (s == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Module integrity MAC not found\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     buf1 = OPENSSL_hexstr2buf(s, &len); | 
					
						
							|  |  |  |     if (buf1 == NULL | 
					
						
							|  |  |  |             || (size_t)len != module_mac_len | 
					
						
							|  |  |  |             || memcmp(module_mac, buf1, module_mac_len) != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Module integrity mismatch\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s = NCONF_get_string(conf, section, OSSL_PROV_FIPS_PARAM_INSTALL_MAC); | 
					
						
							|  |  |  |     if (s == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Install indicator MAC not found\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     buf2 = OPENSSL_hexstr2buf(s, &len); | 
					
						
							|  |  |  |     if (buf2 == NULL | 
					
						
							|  |  |  |             || (size_t)len != install_mac_len | 
					
						
							|  |  |  |             || memcmp(install_mac, buf2, install_mac_len) != 0) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Install indicator status mismatch\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     OPENSSL_free(buf1); | 
					
						
							|  |  |  |     OPENSSL_free(buf2); | 
					
						
							|  |  |  |     NCONF_free(conf); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int fipsinstall_main(int argc, char **argv) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-06-29 10:20:41 +08:00
										 |  |  |     int ret = 1, verify = 0, gotkey = 0, gotdigest = 0; | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |     int enable_conditional_errors = 1, enable_security_checks = 1; | 
					
						
							| 
									
										
										
										
											2020-06-29 09:11:48 +08:00
										 |  |  |     const char *section_name = "fips_sect"; | 
					
						
							|  |  |  |     const char *mac_name = "HMAC"; | 
					
						
							|  |  |  |     const char *prov_name = "fips"; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     BIO *module_bio = NULL, *mem_bio = NULL, *fout = NULL; | 
					
						
							| 
									
										
										
										
											2020-06-29 09:11:48 +08:00
										 |  |  |     char *in_fname = NULL, *out_fname = NULL, *prog; | 
					
						
							| 
									
										
										
										
											2020-09-11 01:50:09 +08:00
										 |  |  |     char *module_fname = NULL, *parent_config = NULL, *module_path = NULL; | 
					
						
							|  |  |  |     const char *tail; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     EVP_MAC_CTX *ctx = NULL, *ctx2 = NULL; | 
					
						
							|  |  |  |     STACK_OF(OPENSSL_STRING) *opts = NULL; | 
					
						
							|  |  |  |     OPTION_CHOICE o; | 
					
						
							|  |  |  |     unsigned char *read_buffer = NULL; | 
					
						
							|  |  |  |     unsigned char module_mac[EVP_MAX_MD_SIZE]; | 
					
						
							|  |  |  |     size_t module_mac_len = EVP_MAX_MD_SIZE; | 
					
						
							|  |  |  |     unsigned char install_mac[EVP_MAX_MD_SIZE]; | 
					
						
							|  |  |  |     size_t install_mac_len = EVP_MAX_MD_SIZE; | 
					
						
							|  |  |  |     EVP_MAC *mac = NULL; | 
					
						
							|  |  |  |     CONF *conf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 10:20:41 +08:00
										 |  |  |     if ((opts = sk_OPENSSL_STRING_new_null()) == NULL) | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     prog = opt_init(argc, argv, fipsinstall_options); | 
					
						
							|  |  |  |     while ((o = opt_next()) != OPT_EOF) { | 
					
						
							|  |  |  |         switch (o) { | 
					
						
							|  |  |  |         case OPT_EOF: | 
					
						
							|  |  |  |         case OPT_ERR: | 
					
						
							|  |  |  | opthelp: | 
					
						
							|  |  |  |             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog); | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  |             goto cleanup; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         case OPT_HELP: | 
					
						
							|  |  |  |             opt_help(fipsinstall_options); | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         case OPT_IN: | 
					
						
							|  |  |  |             in_fname = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_OUT: | 
					
						
							|  |  |  |             out_fname = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |         case OPT_NO_CONDITIONAL_ERRORS: | 
					
						
							|  |  |  |             enable_conditional_errors = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |         case OPT_NO_SECURITY_CHECKS: | 
					
						
							|  |  |  |             enable_security_checks = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  |         case OPT_QUIET: | 
					
						
							|  |  |  |             quiet = 1; | 
					
						
							|  |  |  |             /* FALLTHROUGH */ | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |         case OPT_NO_LOG: | 
					
						
							|  |  |  |             self_test_log = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_CORRUPT_DESC: | 
					
						
							|  |  |  |             self_test_corrupt_desc = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_CORRUPT_TYPE: | 
					
						
							|  |  |  |             self_test_corrupt_type = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         case OPT_PROV_NAME: | 
					
						
							|  |  |  |             prov_name = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_MODULE: | 
					
						
							|  |  |  |             module_fname = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_SECTION_NAME: | 
					
						
							|  |  |  |             section_name = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case OPT_MAC_NAME: | 
					
						
							|  |  |  |             mac_name = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  |         case OPT_CONFIG: | 
					
						
							|  |  |  |             parent_config = opt_arg(); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         case OPT_MACOPT: | 
					
						
							| 
									
										
										
										
											2020-06-29 10:20:41 +08:00
										 |  |  |             if (!sk_OPENSSL_STRING_push(opts, opt_arg())) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |                 goto opthelp; | 
					
						
							| 
									
										
										
										
											2020-06-29 10:20:41 +08:00
										 |  |  |             if (strncmp(opt_arg(), "hexkey:", 7) == 0) | 
					
						
							|  |  |  |                 gotkey = 1; | 
					
						
							|  |  |  |             else if (strncmp(opt_arg(), "digest:", 7) == 0) | 
					
						
							|  |  |  |                 gotdigest = 1; | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OPT_VERIFY: | 
					
						
							|  |  |  |             verify = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-29 05:12:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* No extra arguments. */ | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     argc = opt_num_rest(); | 
					
						
							| 
									
										
										
										
											2021-03-20 00:05:59 +08:00
										 |  |  |     if (argc != 0 || (verify && in_fname == NULL)) | 
					
						
							| 
									
										
										
										
											2020-11-29 05:12:58 +08:00
										 |  |  |         goto opthelp; | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (parent_config != NULL) { | 
					
						
							|  |  |  |         /* Test that a parent config can load the module */ | 
					
						
							|  |  |  |         if (verify_module_load(parent_config)) { | 
					
						
							|  |  |  |             ret = OSSL_PROVIDER_available(NULL, prov_name) ? 0 : 1; | 
					
						
							|  |  |  |             if (!quiet) | 
					
						
							| 
									
										
										
										
											2020-09-29 03:29:56 +08:00
										 |  |  |                 BIO_printf(bio_err, "FIPS provider is %s\n", | 
					
						
							| 
									
										
										
										
											2020-07-21 14:30:02 +08:00
										 |  |  |                            ret == 0 ? "available" : " not available"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-20 00:05:59 +08:00
										 |  |  |     if (module_fname == NULL) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         goto opthelp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-11 01:50:09 +08:00
										 |  |  |     tail = opt_path_end(module_fname); | 
					
						
							|  |  |  |     if (tail != NULL) { | 
					
						
							|  |  |  |         module_path = OPENSSL_strdup(module_fname); | 
					
						
							|  |  |  |         if (module_path == NULL) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         module_path[tail - module_fname] = '\0'; | 
					
						
							|  |  |  |         if (!OSSL_PROVIDER_set_default_search_path(NULL, module_path)) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |     if (self_test_log | 
					
						
							|  |  |  |             || self_test_corrupt_desc != NULL | 
					
						
							|  |  |  |             || self_test_corrupt_type != NULL) | 
					
						
							|  |  |  |         OSSL_SELF_TEST_set_callback(NULL, self_test_events, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 10:20:41 +08:00
										 |  |  |     /* Use the default FIPS HMAC digest and key if not specified. */ | 
					
						
							|  |  |  |     if (!gotdigest && !sk_OPENSSL_STRING_push(opts, "digest:SHA256")) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     if (!gotkey && !sk_OPENSSL_STRING_push(opts, "hexkey:" FIPS_KEY_STRING)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     module_bio = bio_open_default(module_fname, 'r', FORMAT_BINARY); | 
					
						
							|  |  |  |     if (module_bio == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Failed to open module file\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     read_buffer = app_malloc(BUFSIZE, "I/O buffer"); | 
					
						
							|  |  |  |     if (read_buffer == NULL) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mac = EVP_MAC_fetch(NULL, mac_name, NULL); | 
					
						
							|  |  |  |     if (mac == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Unable to get MAC of type %s\n", mac_name); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-18 16:26:22 +08:00
										 |  |  |     ctx = EVP_MAC_CTX_new(mac); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Unable to create MAC CTX for module check\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (opts != NULL) { | 
					
						
							|  |  |  |         int ok = 1; | 
					
						
							|  |  |  |         OSSL_PARAM *params = | 
					
						
							| 
									
										
										
										
											2019-09-27 14:35:45 +08:00
										 |  |  |             app_params_new_from_opts(opts, EVP_MAC_settable_ctx_params(mac)); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (params == NULL) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-18 16:26:22 +08:00
										 |  |  |         if (!EVP_MAC_CTX_set_params(ctx, params)) { | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |             BIO_printf(bio_err, "MAC parameter error\n"); | 
					
						
							|  |  |  |             ERR_print_errors(bio_err); | 
					
						
							|  |  |  |             ok = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         app_params_free(params); | 
					
						
							|  |  |  |         if (!ok) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-18 16:26:22 +08:00
										 |  |  |     ctx2 = EVP_MAC_CTX_dup(ctx); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     if (ctx2 == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Unable to create MAC CTX for install indicator\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!do_mac(ctx, read_buffer, module_bio, module_mac, &module_mac_len)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mem_bio = BIO_new_mem_buf((const void *)INSTALL_STATUS_VAL, | 
					
						
							|  |  |  |                               strlen(INSTALL_STATUS_VAL)); | 
					
						
							|  |  |  |     if (mem_bio == NULL) { | 
					
						
							|  |  |  |         BIO_printf(bio_err, "Unable to create memory BIO\n"); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!do_mac(ctx2, read_buffer, mem_bio, install_mac, &install_mac_len)) | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (verify) { | 
					
						
							|  |  |  |         if (!verify_config(in_fname, section_name, module_mac, module_mac_len, | 
					
						
							|  |  |  |                            install_mac, install_mac_len)) | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  |         if (!quiet) | 
					
						
							| 
									
										
										
										
											2020-09-29 03:29:56 +08:00
										 |  |  |             BIO_printf(bio_err, "VERIFY PASSED\n"); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         conf = generate_config_and_load(prov_name, section_name, module_mac, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |                                         module_mac_len, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |                                         enable_conditional_errors, | 
					
						
							|  |  |  |                                         enable_security_checks); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         if (conf == NULL) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         if (!load_fips_prov_and_run_self_test(prov_name)) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-20 00:05:59 +08:00
										 |  |  |         fout = | 
					
						
							|  |  |  |             out_fname == NULL ? dup_bio_out(FORMAT_TEXT) | 
					
						
							|  |  |  |                               : bio_open_default(out_fname, 'w', FORMAT_TEXT); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         if (fout == NULL) { | 
					
						
							|  |  |  |             BIO_printf(bio_err, "Failed to open file\n"); | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |         if (!write_config_fips_section(fout, section_name, | 
					
						
							|  |  |  |                                        module_mac, module_mac_len, | 
					
						
							|  |  |  |                                        enable_conditional_errors, | 
					
						
							| 
									
										
										
										
											2020-09-05 11:08:27 +08:00
										 |  |  |                                        enable_security_checks, | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |                                        install_mac, install_mac_len)) | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  |         if (!quiet) | 
					
						
							| 
									
										
										
										
											2020-09-29 03:29:56 +08:00
										 |  |  |             BIO_printf(bio_err, "INSTALL PASSED\n"); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 0; | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     if (ret == 1) { | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  |         if (!quiet) | 
					
						
							|  |  |  |             BIO_printf(bio_err, "%s FAILED\n", verify ? "VERIFY" : "INSTALL"); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |         ERR_print_errors(bio_err); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-26 05:27:24 +08:00
										 |  |  | cleanup: | 
					
						
							| 
									
										
										
										
											2020-09-11 01:50:09 +08:00
										 |  |  |     OPENSSL_free(module_path); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     BIO_free(fout); | 
					
						
							|  |  |  |     BIO_free(mem_bio); | 
					
						
							|  |  |  |     BIO_free(module_bio); | 
					
						
							|  |  |  |     sk_OPENSSL_STRING_free(opts); | 
					
						
							|  |  |  |     EVP_MAC_free(mac); | 
					
						
							| 
									
										
										
										
											2020-06-18 16:26:22 +08:00
										 |  |  |     EVP_MAC_CTX_free(ctx2); | 
					
						
							|  |  |  |     EVP_MAC_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2019-08-24 16:56:34 +08:00
										 |  |  |     OPENSSL_free(read_buffer); | 
					
						
							|  |  |  |     free_config_and_unload(conf); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int self_test_events(const OSSL_PARAM params[], void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const OSSL_PARAM *p = NULL; | 
					
						
							|  |  |  |     const char *phase = NULL, *type = NULL, *desc = NULL; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate_const(params, OSSL_PROV_PARAM_SELF_TEST_PHASE); | 
					
						
							|  |  |  |     if (p == NULL || p->data_type != OSSL_PARAM_UTF8_STRING) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     phase = (const char *)p->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate_const(params, OSSL_PROV_PARAM_SELF_TEST_DESC); | 
					
						
							|  |  |  |     if (p == NULL || p->data_type != OSSL_PARAM_UTF8_STRING) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     desc = (const char *)p->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p = OSSL_PARAM_locate_const(params, OSSL_PROV_PARAM_SELF_TEST_TYPE); | 
					
						
							|  |  |  |     if (p == NULL || p->data_type != OSSL_PARAM_UTF8_STRING) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     type = (const char *)p->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (self_test_log) { | 
					
						
							|  |  |  |         if (strcmp(phase, OSSL_SELF_TEST_PHASE_START) == 0) | 
					
						
							| 
									
										
										
										
											2020-09-29 03:29:56 +08:00
										 |  |  |             BIO_printf(bio_err, "%s : (%s) : ", desc, type); | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |         else if (strcmp(phase, OSSL_SELF_TEST_PHASE_PASS) == 0 | 
					
						
							|  |  |  |                  || strcmp(phase, OSSL_SELF_TEST_PHASE_FAIL) == 0) | 
					
						
							| 
									
										
										
										
											2020-09-29 03:29:56 +08:00
										 |  |  |             BIO_printf(bio_err, "%s\n", phase); | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * The self test code will internally corrupt the KAT test result if an | 
					
						
							|  |  |  |      * error is returned during the corrupt phase. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (strcmp(phase, OSSL_SELF_TEST_PHASE_CORRUPT) == 0 | 
					
						
							|  |  |  |             && (self_test_corrupt_desc != NULL | 
					
						
							|  |  |  |                 || self_test_corrupt_type != NULL)) { | 
					
						
							|  |  |  |         if (self_test_corrupt_desc != NULL | 
					
						
							|  |  |  |                 && strcmp(self_test_corrupt_desc, desc) != 0) | 
					
						
							|  |  |  |             goto end; | 
					
						
							|  |  |  |         if (self_test_corrupt_type != NULL | 
					
						
							|  |  |  |                 && strcmp(self_test_corrupt_type, type) != 0) | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2020-09-29 03:29:56 +08:00
										 |  |  |         BIO_printf(bio_err, "%s ", phase); | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | end: | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } |