Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/crypto/engine
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- Location:
- trunk/src/libs/openssl-3.0.1
- Files:
-
- 2 deleted
- 25 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.1
- Property svn:mergeinfo
-
old new 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/crypto/engine/build.info
r91772 r94082 7 7 eng_openssl.c eng_cnf.c eng_dyn.c \ 8 8 eng_rdrand.c 9 IF[{- !$disabled{devcryptoeng} -}]10 SOURCE[../../libcrypto]=eng_devcrypto.c11 ENDIF -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_all.c
r91772 r94082 2 2 * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at … … 13 13 void ENGINE_load_builtin_engines(void) 14 14 { 15 /* Some ENGINEs need this */16 OPENSSL_cpuid_setup();17 18 15 OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_ALL_BUILTIN, NULL); 19 16 } 20 17 21 #if (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)) && OPENSSL_API_COMPAT < 0x10100000L 18 #ifndef OPENSSL_NO_DEPRECATED_1_1_0 19 # if (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)) 22 20 void ENGINE_setup_bsd_cryptodev(void) 23 21 { 24 22 } 23 # endif 25 24 #endif -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_cnf.c
r91772 r94082 1 1 /* 2 * Copyright 2002-20 16The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at … … 8 8 */ 9 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 12 10 13 #include "eng_local.h" 11 14 #include <openssl/conf.h> 12 13 /* #define ENGINE_CONF_DEBUG */ 15 #include <openssl/trace.h> 14 16 15 17 /* ENGINE config module */ … … 51 53 52 54 name = skip_dot(name); 53 #ifdef ENGINE_CONF_DEBUG 54 fprintf(stderr, "Configuring engine %s\n", name); 55 #endif 55 OSSL_TRACE1(CONF, "Configuring engine %s\n", name); 56 56 /* Value is a section containing ENGINE commands */ 57 57 ecmds = NCONF_get_section(cnf, value); 58 58 59 59 if (!ecmds) { 60 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE, 61 ENGINE_R_ENGINE_SECTION_ERROR); 60 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ENGINE_SECTION_ERROR); 62 61 return 0; 63 62 } … … 67 66 ctrlname = skip_dot(ecmd->name); 68 67 ctrlvalue = ecmd->value; 69 #ifdef ENGINE_CONF_DEBUG 70 fprintf(stderr, "ENGINE conf: doing ctrl(%s,%s)\n", ctrlname, 71 ctrlvalue); 72 #endif 68 OSSL_TRACE2(CONF, "ENGINE: doing ctrl(%s,%s)\n", 69 ctrlname, ctrlvalue); 73 70 74 71 /* First handle some special pseudo ctrls */ … … 119 116 goto err; 120 117 } else if (do_init != 0) { 121 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE, 122 ENGINE_R_INVALID_INIT_VALUE); 118 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_INIT_VALUE); 123 119 goto err; 124 120 } … … 138 134 err: 139 135 if (ret != 1) { 140 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE,141 142 if (ecmd)143 ERR_ add_error_data(6, "section=", ecmd->section,144 ", name=", ecmd->name,145 ", value=", ecmd->value);136 if (ecmd == NULL) 137 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ENGINE_CONFIGURATION_ERROR); 138 else 139 ERR_raise_data(ERR_LIB_ENGINE, ENGINE_R_ENGINE_CONFIGURATION_ERROR, 140 "section=%s, name=%s, value=%s", 141 ecmd->section, ecmd->name, ecmd->value); 146 142 } 147 143 ENGINE_free(e); … … 154 150 CONF_VALUE *cval; 155 151 int i; 156 #ifdef ENGINE_CONF_DEBUG 157 fprintf(stderr, "Called engine module: name %s, value %s\n", 158 CONF_imodule_get_name(md), CONF_imodule_get_value(md)); 159 #endif 152 OSSL_TRACE2(CONF, "Called engine module: name %s, value %s\n", 153 CONF_imodule_get_name(md), CONF_imodule_get_value(md)); 160 154 /* Value is a section containing ENGINEs to configure */ 161 155 elist = NCONF_get_section(cnf, CONF_imodule_get_value(md)); 162 156 163 157 if (!elist) { 164 ENGINEerr(ENGINE_F_INT_ENGINE_MODULE_INIT, 165 ENGINE_R_ENGINES_SECTION_ERROR); 158 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ENGINES_SECTION_ERROR); 166 159 return 0; 167 160 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_ctrl.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 16The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 77 80 (cmd == ENGINE_CTRL_GET_DESC_FROM_CMD)) { 78 81 if (s == NULL) { 79 E NGINEerr(ENGINE_F_INT_CTRL_HELPER, ERR_R_PASSED_NULL_PARAMETER);82 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 80 83 return -1; 81 84 } … … 85 88 if ((e->cmd_defns == NULL) 86 89 || ((idx = int_ctrl_cmd_by_name(e->cmd_defns, s)) < 0)) { 87 E NGINEerr(ENGINE_F_INT_CTRL_HELPER, ENGINE_R_INVALID_CMD_NAME);90 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NAME); 88 91 return -1; 89 92 } … … 96 99 if ((e->cmd_defns == NULL) 97 100 || ((idx = int_ctrl_cmd_by_num(e->cmd_defns, (unsigned int)i)) < 0)) { 98 E NGINEerr(ENGINE_F_INT_CTRL_HELPER, ENGINE_R_INVALID_CMD_NUMBER);101 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NUMBER); 99 102 return -1; 100 103 } … … 119 122 } 120 123 /* Shouldn't really be here ... */ 121 E NGINEerr(ENGINE_F_INT_CTRL_HELPER, ENGINE_R_INTERNAL_LIST_ERROR);124 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 122 125 return -1; 123 126 } … … 127 130 int ctrl_exists, ref_exists; 128 131 if (e == NULL) { 129 ENGINEerr(ENGINE_F_ENGINE_CTRL, ERR_R_PASSED_NULL_PARAMETER); 130 return 0; 131 } 132 CRYPTO_THREAD_write_lock(global_engine_lock); 132 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 133 return 0; 134 } 135 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 136 return 0; 133 137 ref_exists = ((e->struct_ref > 0) ? 1 : 0); 134 138 CRYPTO_THREAD_unlock(global_engine_lock); 135 139 ctrl_exists = ((e->ctrl == NULL) ? 0 : 1); 136 140 if (!ref_exists) { 137 E NGINEerr(ENGINE_F_ENGINE_CTRL, ENGINE_R_NO_REFERENCE);141 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_REFERENCE); 138 142 return 0; 139 143 } … … 156 160 return int_ctrl_helper(e, cmd, i, p, f); 157 161 if (!ctrl_exists) { 158 E NGINEerr(ENGINE_F_ENGINE_CTRL, ENGINE_R_NO_CONTROL_FUNCTION);162 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_CONTROL_FUNCTION); 159 163 /* 160 164 * For these cmd-related functions, failure is indicated by a -1 … … 169 173 /* Anything else requires a ctrl() handler to exist. */ 170 174 if (!ctrl_exists) { 171 E NGINEerr(ENGINE_F_ENGINE_CTRL, ENGINE_R_NO_CONTROL_FUNCTION);175 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_CONTROL_FUNCTION); 172 176 return 0; 173 177 } … … 180 184 if ((flags = 181 185 ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, cmd, NULL, NULL)) < 0) { 182 ENGINEerr(ENGINE_F_ENGINE_CMD_IS_EXECUTABLE, 183 ENGINE_R_INVALID_CMD_NUMBER); 186 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NUMBER); 184 187 return 0; 185 188 } … … 197 200 198 201 if (e == NULL || cmd_name == NULL) { 199 E NGINEerr(ENGINE_F_ENGINE_CTRL_CMD, ERR_R_PASSED_NULL_PARAMETER);202 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 200 203 return 0; 201 204 } … … 215 218 return 1; 216 219 } 217 E NGINEerr(ENGINE_F_ENGINE_CTRL_CMD, ENGINE_R_INVALID_CMD_NAME);220 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NAME); 218 221 return 0; 219 222 } … … 235 238 236 239 if (e == NULL || cmd_name == NULL) { 237 E NGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, ERR_R_PASSED_NULL_PARAMETER);240 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 238 241 return 0; 239 242 } … … 253 256 return 1; 254 257 } 255 E NGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, ENGINE_R_INVALID_CMD_NAME);258 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NAME); 256 259 return 0; 257 260 } 258 261 if (!ENGINE_cmd_is_executable(e, num)) { 259 ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, 260 ENGINE_R_CMD_NOT_EXECUTABLE); 262 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CMD_NOT_EXECUTABLE); 261 263 return 0; 262 264 } … … 268 270 * success. 269 271 */ 270 ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, 271 ENGINE_R_INTERNAL_LIST_ERROR); 272 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 272 273 return 0; 273 274 } … … 277 278 if (flags & ENGINE_CMD_FLAG_NO_INPUT) { 278 279 if (arg != NULL) { 279 ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, 280 ENGINE_R_COMMAND_TAKES_NO_INPUT); 280 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_COMMAND_TAKES_NO_INPUT); 281 281 return 0; 282 282 } … … 293 293 /* So, we require input */ 294 294 if (arg == NULL) { 295 ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, 296 ENGINE_R_COMMAND_TAKES_INPUT); 295 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_COMMAND_TAKES_INPUT); 297 296 return 0; 298 297 } … … 311 310 */ 312 311 if (!(flags & ENGINE_CMD_FLAG_NUMERIC)) { 313 ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, 314 ENGINE_R_INTERNAL_LIST_ERROR); 312 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 315 313 return 0; 316 314 } 317 315 l = strtol(arg, &ptr, 10); 318 316 if ((arg == ptr) || (*ptr != '\0')) { 319 ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, 320 ENGINE_R_ARGUMENT_IS_NOT_A_NUMBER); 317 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ARGUMENT_IS_NOT_A_NUMBER); 321 318 return 0; 322 319 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_dyn.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 16The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 155 158 { 156 159 dynamic_data_ctx *c = OPENSSL_zalloc(sizeof(*c)); 157 int ret = 1;160 int ret = 0; 158 161 159 162 if (c == NULL) { 160 E NGINEerr(ENGINE_F_DYNAMIC_SET_DATA_CTX, ERR_R_MALLOC_FAILURE);163 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 161 164 return 0; 162 165 } 163 166 c->dirs = sk_OPENSSL_STRING_new_null(); 164 167 if (c->dirs == NULL) { 165 ENGINEerr(ENGINE_F_DYNAMIC_SET_DATA_CTX, ERR_R_MALLOC_FAILURE); 166 OPENSSL_free(c); 167 return 0; 168 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 169 goto end; 168 170 } 169 171 c->DYNAMIC_F1 = "v_check"; 170 172 c->DYNAMIC_F2 = "bind_engine"; 171 173 c->dir_load = 1; 172 CRYPTO_THREAD_write_lock(global_engine_lock); 174 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 175 goto end; 173 176 if ((*ctx = (dynamic_data_ctx *)ENGINE_get_ex_data(e, 174 177 dynamic_ex_data_idx)) … … 182 185 } 183 186 CRYPTO_THREAD_unlock(global_engine_lock); 187 ret = 1; 184 188 /* 185 189 * If we lost the race to set the context, c is non-NULL and *ctx is the 186 190 * context of the thread that won. 187 191 */ 188 if (c) 192 end: 193 if (c != NULL) 189 194 sk_OPENSSL_STRING_free(c->dirs); 190 195 OPENSSL_free(c); … … 208 213 dynamic_data_ctx_free_func); 209 214 if (new_idx == -1) { 210 E NGINEerr(ENGINE_F_DYNAMIC_GET_DATA_CTX, ENGINE_R_NO_INDEX);215 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_INDEX); 211 216 return NULL; 212 217 } 213 CRYPTO_THREAD_write_lock(global_engine_lock); 218 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 219 return NULL; 214 220 /* Avoid a race by checking again inside this lock */ 215 221 if (dynamic_ex_data_idx < 0) { … … 255 261 if (!toadd) 256 262 return; 263 264 ERR_set_mark(); 257 265 ENGINE_add(toadd); 258 266 /* … … 266 274 * ENGINE_load_builtin_engines() perhaps). 267 275 */ 268 ERR_ clear_error();276 ERR_pop_to_mark(); 269 277 } 270 278 … … 293 301 294 302 if (!ctx) { 295 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_NOT_LOADED);303 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_LOADED); 296 304 return 0; 297 305 } … … 299 307 /* All our control commands require the ENGINE to be uninitialised */ 300 308 if (initialised) { 301 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_ALREADY_LOADED);309 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ALREADY_LOADED); 302 310 return 0; 303 311 } … … 328 336 case DYNAMIC_CMD_LIST_ADD: 329 337 if ((i < 0) || (i > 2)) { 330 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_INVALID_ARGUMENT);338 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_ARGUMENT); 331 339 return 0; 332 340 } … … 337 345 case DYNAMIC_CMD_DIR_LOAD: 338 346 if ((i < 0) || (i > 2)) { 339 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_INVALID_ARGUMENT);347 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_ARGUMENT); 340 348 return 0; 341 349 } … … 344 352 case DYNAMIC_CMD_DIR_ADD: 345 353 /* a NULL 'p' or a string of zero-length is the same thing */ 346 if ( !p|| (strlen((const char *)p) < 1)) {347 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_INVALID_ARGUMENT);354 if (p == NULL || (strlen((const char *)p) < 1)) { 355 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_ARGUMENT); 348 356 return 0; 349 357 } … … 351 359 char *tmp_str = OPENSSL_strdup(p); 352 360 if (tmp_str == NULL) { 353 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ERR_R_MALLOC_FAILURE);361 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 354 362 return 0; 355 363 } 356 364 if (!sk_OPENSSL_STRING_push(ctx->dirs, tmp_str)) { 357 365 OPENSSL_free(tmp_str); 358 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ERR_R_MALLOC_FAILURE);366 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 359 367 return 0; 360 368 } … … 364 372 break; 365 373 } 366 E NGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED);374 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED); 367 375 return 0; 368 376 } … … 412 420 } 413 421 if (!int_load(ctx)) { 414 E NGINEerr(ENGINE_F_DYNAMIC_LOAD, ENGINE_R_DSO_NOT_FOUND);422 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_DSO_NOT_FOUND); 415 423 DSO_free(ctx->dynamic_dso); 416 424 ctx->dynamic_dso = NULL; … … 425 433 DSO_free(ctx->dynamic_dso); 426 434 ctx->dynamic_dso = NULL; 427 E NGINEerr(ENGINE_F_DYNAMIC_LOAD, ENGINE_R_DSO_FAILURE);435 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_DSO_FAILURE); 428 436 return 0; 429 437 } … … 451 459 DSO_free(ctx->dynamic_dso); 452 460 ctx->dynamic_dso = NULL; 453 ENGINEerr(ENGINE_F_DYNAMIC_LOAD, 454 ENGINE_R_VERSION_INCOMPATIBILITY); 461 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_VERSION_INCOMPATIBILITY); 455 462 return 0; 456 463 } … … 478 485 479 486 /* Try to bind the ENGINE onto our own ENGINE structure */ 480 if (!ctx->bind_engine(e, ctx->engine_id, &fns)) { 487 if (!engine_add_dynamic_id(e, (ENGINE_DYNAMIC_ID)ctx->bind_engine, 1) 488 || !ctx->bind_engine(e, ctx->engine_id, &fns)) { 489 engine_remove_dynamic_id(e, 1); 481 490 ctx->bind_engine = NULL; 482 491 ctx->v_check = NULL; 483 492 DSO_free(ctx->dynamic_dso); 484 493 ctx->dynamic_dso = NULL; 485 E NGINEerr(ENGINE_F_DYNAMIC_LOAD, ENGINE_R_INIT_FAILED);494 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INIT_FAILED); 486 495 /* Copy the original ENGINE structure back */ 487 496 memcpy(e, &cpy, sizeof(ENGINE)); … … 499 508 * the ENGINE has changed. 500 509 */ 501 ENGINEerr(ENGINE_F_DYNAMIC_LOAD, 502 ENGINE_R_CONFLICTING_ENGINE_ID); 510 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CONFLICTING_ENGINE_ID); 503 511 return 0; 504 512 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_err.c
r91772 r94082 1 1 /* 2 2 * Generated by util/mkerr.pl DO NOT EDIT 3 * Copyright 1995-20 18The OpenSSL Project Authors. All Rights Reserved.3 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. 4 4 * 5 * Licensed under the OpenSSL license(the "License"). You may not use5 * Licensed under the Apache License 2.0 (the "License"). You may not use 6 6 * this file except in compliance with the License. You can obtain a copy 7 7 * in the file LICENSE in the source distribution or at … … 11 11 #include <openssl/err.h> 12 12 #include <openssl/engineerr.h> 13 #include "crypto/engineerr.h" 13 14 14 #ifndef OPENSSL_NO_E RR15 #ifndef OPENSSL_NO_ENGINE 15 16 16 static const ERR_STRING_DATA ENGINE_str_functs[] = { 17 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_DIGEST_UPDATE, 0), "digest_update"}, 18 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_DYNAMIC_CTRL, 0), "dynamic_ctrl"}, 19 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_DYNAMIC_GET_DATA_CTX, 0), 20 "dynamic_get_data_ctx"}, 21 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_DYNAMIC_LOAD, 0), "dynamic_load"}, 22 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_DYNAMIC_SET_DATA_CTX, 0), 23 "dynamic_set_data_ctx"}, 24 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_ADD, 0), "ENGINE_add"}, 25 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_BY_ID, 0), "ENGINE_by_id"}, 26 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_CMD_IS_EXECUTABLE, 0), 27 "ENGINE_cmd_is_executable"}, 28 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_CTRL, 0), "ENGINE_ctrl"}, 29 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_CTRL_CMD, 0), "ENGINE_ctrl_cmd"}, 30 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_CTRL_CMD_STRING, 0), 31 "ENGINE_ctrl_cmd_string"}, 32 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_FINISH, 0), "ENGINE_finish"}, 33 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_CIPHER, 0), 34 "ENGINE_get_cipher"}, 35 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_DIGEST, 0), 36 "ENGINE_get_digest"}, 37 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_FIRST, 0), 38 "ENGINE_get_first"}, 39 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_LAST, 0), "ENGINE_get_last"}, 40 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_NEXT, 0), "ENGINE_get_next"}, 41 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_PKEY_ASN1_METH, 0), 42 "ENGINE_get_pkey_asn1_meth"}, 43 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_PKEY_METH, 0), 44 "ENGINE_get_pkey_meth"}, 45 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_GET_PREV, 0), "ENGINE_get_prev"}, 46 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_INIT, 0), "ENGINE_init"}, 47 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_LIST_ADD, 0), "engine_list_add"}, 48 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_LIST_REMOVE, 0), 49 "engine_list_remove"}, 50 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_LOAD_PRIVATE_KEY, 0), 51 "ENGINE_load_private_key"}, 52 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, 0), 53 "ENGINE_load_public_key"}, 54 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT, 0), 55 "ENGINE_load_ssl_client_cert"}, 56 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_NEW, 0), "ENGINE_new"}, 57 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_PKEY_ASN1_FIND_STR, 0), 58 "ENGINE_pkey_asn1_find_str"}, 59 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_REMOVE, 0), "ENGINE_remove"}, 60 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_SET_DEFAULT_STRING, 0), 61 "ENGINE_set_default_string"}, 62 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_SET_ID, 0), "ENGINE_set_id"}, 63 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_SET_NAME, 0), "ENGINE_set_name"}, 64 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_TABLE_REGISTER, 0), 65 "engine_table_register"}, 66 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_UNLOCKED_FINISH, 0), 67 "engine_unlocked_finish"}, 68 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_ENGINE_UP_REF, 0), "ENGINE_up_ref"}, 69 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_INT_CLEANUP_ITEM, 0), 70 "int_cleanup_item"}, 71 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_INT_CTRL_HELPER, 0), "int_ctrl_helper"}, 72 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_INT_ENGINE_CONFIGURE, 0), 73 "int_engine_configure"}, 74 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_INT_ENGINE_MODULE_INIT, 0), 75 "int_engine_module_init"}, 76 {ERR_PACK(ERR_LIB_ENGINE, ENGINE_F_OSSL_HMAC_INIT, 0), "ossl_hmac_init"}, 77 {0, NULL} 78 }; 17 # ifndef OPENSSL_NO_ERR 79 18 80 19 static const ERR_STRING_DATA ENGINE_str_reasons[] = { … … 141 80 }; 142 81 143 # endif82 # endif 144 83 145 int ERR_load_ENGINE_strings(void)84 int ossl_err_load_ENGINE_strings(void) 146 85 { 147 #ifndef OPENSSL_NO_ERR 148 if (ERR_func_error_string(ENGINE_str_functs[0].error) == NULL) { 149 ERR_load_strings_const(ENGINE_str_functs); 86 # ifndef OPENSSL_NO_ERR 87 if (ERR_reason_error_string(ENGINE_str_reasons[0].error) == NULL) 150 88 ERR_load_strings_const(ENGINE_str_reasons); 151 } 152 #endif 89 # endif 153 90 return 1; 154 91 } 92 #else 93 NON_EMPTY_TRANSLATION_UNIT 94 #endif -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_fat.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 16The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved 4 4 * 5 * Licensed under the OpenSSL license(the "License"). You may not use5 * Licensed under the Apache License 2.0 (the "License"). You may not use 6 6 * this file except in compliance with the License. You can obtain a copy 7 7 * in the file LICENSE in the source distribution or at 8 8 * https://www.openssl.org/source/license.html 9 9 */ 10 11 /* We need to use some engine deprecated APIs */ 12 #define OPENSSL_SUPPRESS_DEPRECATED 10 13 11 14 #include "eng_local.h" … … 18 21 if ((flags & ENGINE_METHOD_DIGESTS) && !ENGINE_set_default_digests(e)) 19 22 return 0; 20 #ifndef OPENSSL_NO_RSA21 23 if ((flags & ENGINE_METHOD_RSA) && !ENGINE_set_default_RSA(e)) 22 24 return 0; 23 #endif24 25 #ifndef OPENSSL_NO_DSA 25 26 if ((flags & ENGINE_METHOD_DSA) && !ENGINE_set_default_DSA(e)) … … 83 84 unsigned int flags = 0; 84 85 if (!CONF_parse_list(def_list, ',', 1, int_def_cb, &flags)) { 85 ENGINEerr(ENGINE_F_ENGINE_SET_DEFAULT_STRING, 86 ENGINE_R_INVALID_STRING); 87 ERR_add_error_data(2, "str=", def_list); 86 ERR_raise_data(ERR_LIB_ENGINE, ENGINE_R_INVALID_STRING, 87 "str=%s", def_list); 88 88 return 0; 89 89 } … … 95 95 ENGINE_register_ciphers(e); 96 96 ENGINE_register_digests(e); 97 #ifndef OPENSSL_NO_RSA98 97 ENGINE_register_RSA(e); 99 #endif100 98 #ifndef OPENSSL_NO_DSA 101 99 ENGINE_register_DSA(e); -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_init.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 17The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "e_os.h" … … 32 35 e->struct_ref++; 33 36 e->funct_ref++; 34 engine_ref_debug(e, 0, 1);35 engine_ref_debug(e, 1, 1);37 ENGINE_REF_PRINT(e, 0, 1); 38 ENGINE_REF_PRINT(e, 1, 1); 36 39 } 37 40 return to_return; … … 55 58 */ 56 59 e->funct_ref--; 57 engine_ref_debug(e, 1, -1);60 ENGINE_REF_PRINT(e, 1, -1); 58 61 if ((e->funct_ref == 0) && e->finish) { 59 62 if (unlock_for_handlers) … … 61 64 to_return = e->finish(e); 62 65 if (unlock_for_handlers) 63 CRYPTO_THREAD_write_lock(global_engine_lock); 66 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 67 return 0; 64 68 if (!to_return) 65 69 return 0; … … 68 72 /* Release the structural reference too */ 69 73 if (!engine_free_util(e, 0)) { 70 E NGINEerr(ENGINE_F_ENGINE_UNLOCKED_FINISH, ENGINE_R_FINISH_FAILED);74 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FINISH_FAILED); 71 75 return 0; 72 76 } … … 79 83 int ret; 80 84 if (e == NULL) { 81 E NGINEerr(ENGINE_F_ENGINE_INIT, ERR_R_PASSED_NULL_PARAMETER);85 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 82 86 return 0; 83 87 } 84 88 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) { 85 E NGINEerr(ENGINE_F_ENGINE_INIT, ERR_R_MALLOC_FAILURE);89 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 86 90 return 0; 87 91 } 88 CRYPTO_THREAD_write_lock(global_engine_lock); 92 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 93 return 0; 89 94 ret = engine_unlocked_init(e); 90 95 CRYPTO_THREAD_unlock(global_engine_lock); … … 99 104 if (e == NULL) 100 105 return 1; 101 CRYPTO_THREAD_write_lock(global_engine_lock); 106 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 107 return 0; 102 108 to_return = engine_unlocked_finish(e, 1); 103 109 CRYPTO_THREAD_unlock(global_engine_lock); 104 110 if (!to_return) { 105 E NGINEerr(ENGINE_F_ENGINE_FINISH, ENGINE_R_FINISH_FAILED);111 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FINISH_FAILED); 106 112 return 0; 107 113 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_lib.c
r91772 r94082 1 1 /* 2 * Copyright 2001-202 0The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at … … 21 21 DEFINE_RUN_ONCE(do_engine_lock_init) 22 22 { 23 if (!OPENSSL_init_crypto(0, NULL))24 return 0;25 23 global_engine_lock = CRYPTO_THREAD_lock_new(); 26 24 return global_engine_lock != NULL; … … 33 31 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init) 34 32 || (ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) { 35 E NGINEerr(ENGINE_F_ENGINE_NEW, ERR_R_MALLOC_FAILURE);33 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 36 34 return NULL; 37 35 } 38 36 ret->struct_ref = 1; 39 engine_ref_debug(ret, 0, 1);37 ENGINE_REF_PRINT(ret, 0, 1); 40 38 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data)) { 41 39 OPENSSL_free(ret); … … 68 66 e->cmd_defns = NULL; 69 67 e->flags = 0; 68 e->dynamic_id = NULL; 70 69 } 71 70 … … 80 79 else 81 80 i = --e->struct_ref; 82 engine_ref_debug(e, 0, -1);81 ENGINE_REF_PRINT(e, 0, -1); 83 82 if (i > 0) 84 83 return 1; … … 93 92 if (e->destroy) 94 93 e->destroy(e); 94 engine_remove_dynamic_id(e, not_locked); 95 95 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ENGINE, e, &e->ex_data); 96 96 OPENSSL_free(e); … … 127 127 128 128 if ((item = OPENSSL_malloc(sizeof(*item))) == NULL) { 129 E NGINEerr(ENGINE_F_INT_CLEANUP_ITEM, ERR_R_MALLOC_FAILURE);129 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 130 130 return NULL; 131 131 } … … 195 195 { 196 196 if (id == NULL) { 197 E NGINEerr(ENGINE_F_ENGINE_SET_ID, ERR_R_PASSED_NULL_PARAMETER);197 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 198 198 return 0; 199 199 } … … 205 205 { 206 206 if (name == NULL) { 207 E NGINEerr(ENGINE_F_ENGINE_SET_NAME, ERR_R_PASSED_NULL_PARAMETER);207 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 208 208 return 0; 209 209 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_list.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved 4 4 * 5 * Licensed under the OpenSSL license(the "License"). You may not use5 * Licensed under the Apache License 2.0 (the "License"). You may not use 6 6 * this file except in compliance with the License. You can obtain a copy 7 7 * in the file LICENSE in the source distribution or at 8 8 * https://www.openssl.org/source/license.html 9 9 */ 10 11 /* We need to use some engine deprecated APIs */ 12 #define OPENSSL_SUPPRESS_DEPRECATED 10 13 11 14 #include "eng_local.h" … … 26 29 27 30 /* 31 * The linked list of currently loaded dynamic engines. 32 */ 33 static ENGINE *engine_dyn_list_head = NULL; 34 static ENGINE *engine_dyn_list_tail = NULL; 35 36 /* 28 37 * This cleanup function is only needed internally. If it should be called, 29 38 * we register it with the "engine_cleanup_int()" stack to be called during … … 52 61 53 62 if (e == NULL) { 54 E NGINEerr(ENGINE_F_ENGINE_LIST_ADD, ERR_R_PASSED_NULL_PARAMETER);63 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 55 64 return 0; 56 65 } … … 61 70 } 62 71 if (conflict) { 63 E NGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_CONFLICTING_ENGINE_ID);72 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CONFLICTING_ENGINE_ID); 64 73 return 0; 65 74 } … … 67 76 /* We are adding to an empty list. */ 68 77 if (engine_list_tail) { 69 E NGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_INTERNAL_LIST_ERROR);78 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 70 79 return 0; 71 80 } … … 79 88 /* We are adding to the tail of an existing list. */ 80 89 if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) { 81 E NGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_INTERNAL_LIST_ERROR);90 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 82 91 return 0; 83 92 } … … 89 98 */ 90 99 e->struct_ref++; 91 engine_ref_debug(e, 0, 1);100 ENGINE_REF_PRINT(e, 0, 1); 92 101 /* However it came to be, e is the last item in the list. */ 93 102 engine_list_tail = e; … … 101 110 102 111 if (e == NULL) { 103 E NGINEerr(ENGINE_F_ENGINE_LIST_REMOVE, ERR_R_PASSED_NULL_PARAMETER);112 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 104 113 return 0; 105 114 } … … 109 118 iterator = iterator->next; 110 119 if (iterator == NULL) { 111 ENGINEerr(ENGINE_F_ENGINE_LIST_REMOVE, 112 ENGINE_R_ENGINE_IS_NOT_IN_LIST); 120 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ENGINE_IS_NOT_IN_LIST); 113 121 return 0; 114 122 } … … 127 135 } 128 136 137 /* Add engine to dynamic engine list. */ 138 int engine_add_dynamic_id(ENGINE *e, ENGINE_DYNAMIC_ID dynamic_id, 139 int not_locked) 140 { 141 int result = 0; 142 ENGINE *iterator = NULL; 143 144 if (e == NULL) 145 return 0; 146 147 if (e->dynamic_id == NULL && dynamic_id == NULL) 148 return 0; 149 150 if (not_locked && !CRYPTO_THREAD_write_lock(global_engine_lock)) 151 return 0; 152 153 if (dynamic_id != NULL) { 154 iterator = engine_dyn_list_head; 155 while (iterator != NULL) { 156 if (iterator->dynamic_id == dynamic_id) 157 goto err; 158 iterator = iterator->next; 159 } 160 if (e->dynamic_id != NULL) 161 goto err; 162 e->dynamic_id = dynamic_id; 163 } 164 165 if (engine_dyn_list_head == NULL) { 166 /* We are adding to an empty list. */ 167 if (engine_dyn_list_tail != NULL) 168 goto err; 169 engine_dyn_list_head = e; 170 e->prev_dyn = NULL; 171 } else { 172 /* We are adding to the tail of an existing list. */ 173 if (engine_dyn_list_tail == NULL 174 || engine_dyn_list_tail->next_dyn != NULL) 175 goto err; 176 engine_dyn_list_tail->next_dyn = e; 177 e->prev_dyn = engine_dyn_list_tail; 178 } 179 180 engine_dyn_list_tail = e; 181 e->next_dyn = NULL; 182 result = 1; 183 184 err: 185 if (not_locked) 186 CRYPTO_THREAD_unlock(global_engine_lock); 187 return result; 188 } 189 190 /* Remove engine from dynamic engine list. */ 191 void engine_remove_dynamic_id(ENGINE *e, int not_locked) 192 { 193 if (e == NULL || e->dynamic_id == NULL) 194 return; 195 196 if (not_locked && !CRYPTO_THREAD_write_lock(global_engine_lock)) 197 return; 198 199 e->dynamic_id = NULL; 200 201 /* un-link e from the chain. */ 202 if (e->next_dyn != NULL) 203 e->next_dyn->prev_dyn = e->prev_dyn; 204 if (e->prev_dyn != NULL) 205 e->prev_dyn->next_dyn = e->next_dyn; 206 /* Correct our head/tail if necessary. */ 207 if (engine_dyn_list_head == e) 208 engine_dyn_list_head = e->next_dyn; 209 if (engine_dyn_list_tail == e) 210 engine_dyn_list_tail = e->prev_dyn; 211 212 if (not_locked) 213 CRYPTO_THREAD_unlock(global_engine_lock); 214 } 215 129 216 /* Get the first/last "ENGINE" type available. */ 130 217 ENGINE *ENGINE_get_first(void) … … 133 220 134 221 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) { 135 ENGINEerr(ENGINE_F_ENGINE_GET_FIRST, ERR_R_MALLOC_FAILURE); 136 return NULL; 137 } 138 139 CRYPTO_THREAD_write_lock(global_engine_lock); 222 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 223 return NULL; 224 } 225 226 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 227 return NULL; 140 228 ret = engine_list_head; 141 229 if (ret) { 142 230 ret->struct_ref++; 143 engine_ref_debug(ret, 0, 1);231 ENGINE_REF_PRINT(ret, 0, 1); 144 232 } 145 233 CRYPTO_THREAD_unlock(global_engine_lock); … … 152 240 153 241 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) { 154 ENGINEerr(ENGINE_F_ENGINE_GET_LAST, ERR_R_MALLOC_FAILURE); 155 return NULL; 156 } 157 158 CRYPTO_THREAD_write_lock(global_engine_lock); 242 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 243 return NULL; 244 } 245 246 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 247 return NULL; 159 248 ret = engine_list_tail; 160 249 if (ret) { 161 250 ret->struct_ref++; 162 engine_ref_debug(ret, 0, 1);251 ENGINE_REF_PRINT(ret, 0, 1); 163 252 } 164 253 CRYPTO_THREAD_unlock(global_engine_lock); … … 171 260 ENGINE *ret = NULL; 172 261 if (e == NULL) { 173 ENGINEerr(ENGINE_F_ENGINE_GET_NEXT, ERR_R_PASSED_NULL_PARAMETER); 174 return 0; 175 } 176 CRYPTO_THREAD_write_lock(global_engine_lock); 262 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 263 return NULL; 264 } 265 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 266 return NULL; 177 267 ret = e->next; 178 268 if (ret) { 179 269 /* Return a valid structural reference to the next ENGINE */ 180 270 ret->struct_ref++; 181 engine_ref_debug(ret, 0, 1);271 ENGINE_REF_PRINT(ret, 0, 1); 182 272 } 183 273 CRYPTO_THREAD_unlock(global_engine_lock); … … 191 281 ENGINE *ret = NULL; 192 282 if (e == NULL) { 193 ENGINEerr(ENGINE_F_ENGINE_GET_PREV, ERR_R_PASSED_NULL_PARAMETER); 194 return 0; 195 } 196 CRYPTO_THREAD_write_lock(global_engine_lock); 283 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 284 return NULL; 285 } 286 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 287 return NULL; 197 288 ret = e->prev; 198 289 if (ret) { 199 290 /* Return a valid structural reference to the next ENGINE */ 200 291 ret->struct_ref++; 201 engine_ref_debug(ret, 0, 1);292 ENGINE_REF_PRINT(ret, 0, 1); 202 293 } 203 294 CRYPTO_THREAD_unlock(global_engine_lock); … … 212 303 int to_return = 1; 213 304 if (e == NULL) { 214 E NGINEerr(ENGINE_F_ENGINE_ADD, ERR_R_PASSED_NULL_PARAMETER);305 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 215 306 return 0; 216 307 } 217 308 if ((e->id == NULL) || (e->name == NULL)) { 218 ENGINEerr(ENGINE_F_ENGINE_ADD, ENGINE_R_ID_OR_NAME_MISSING); 219 return 0; 220 } 221 CRYPTO_THREAD_write_lock(global_engine_lock); 309 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ID_OR_NAME_MISSING); 310 return 0; 311 } 312 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 313 return 0; 222 314 if (!engine_list_add(e)) { 223 E NGINEerr(ENGINE_F_ENGINE_ADD, ENGINE_R_INTERNAL_LIST_ERROR);315 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 224 316 to_return = 0; 225 317 } … … 233 325 int to_return = 1; 234 326 if (e == NULL) { 235 ENGINEerr(ENGINE_F_ENGINE_REMOVE, ERR_R_PASSED_NULL_PARAMETER); 236 return 0; 237 } 238 CRYPTO_THREAD_write_lock(global_engine_lock); 327 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 328 return 0; 329 } 330 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 331 return 0; 239 332 if (!engine_list_remove(e)) { 240 E NGINEerr(ENGINE_F_ENGINE_REMOVE, ENGINE_R_INTERNAL_LIST_ERROR);333 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR); 241 334 to_return = 0; 242 335 } … … 249 342 dest->id = src->id; 250 343 dest->name = src->name; 251 #ifndef OPENSSL_NO_RSA252 344 dest->rsa_meth = src->rsa_meth; 253 #endif254 345 #ifndef OPENSSL_NO_DSA 255 346 dest->dsa_meth = src->dsa_meth; … … 273 364 dest->cmd_defns = src->cmd_defns; 274 365 dest->flags = src->flags; 366 dest->dynamic_id = src->dynamic_id; 367 engine_add_dynamic_id(dest, NULL, 0); 275 368 } 276 369 … … 280 373 char *load_dir = NULL; 281 374 if (id == NULL) { 282 ENGINEerr(ENGINE_F_ENGINE_BY_ID, ERR_R_PASSED_NULL_PARAMETER); 283 return NULL; 284 } 375 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 376 return NULL; 377 } 378 ENGINE_load_builtin_engines(); 379 285 380 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) { 286 ENGINEerr(ENGINE_F_ENGINE_BY_ID, ERR_R_MALLOC_FAILURE); 287 return NULL; 288 } 289 290 CRYPTO_THREAD_write_lock(global_engine_lock); 381 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 382 return NULL; 383 } 384 385 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 386 return NULL; 291 387 iterator = engine_list_head; 292 388 while (iterator && (strcmp(id, iterator->id) != 0)) … … 308 404 } else { 309 405 iterator->struct_ref++; 310 engine_ref_debug(iterator, 0, 1);406 ENGINE_REF_PRINT(iterator, 0, 1); 311 407 } 312 408 } … … 332 428 notfound: 333 429 ENGINE_free(iterator); 334 ENGINEerr(ENGINE_F_ENGINE_BY_ID, ENGINE_R_NO_SUCH_ENGINE); 335 ERR_add_error_data(2, "id=", id); 430 ERR_raise_data(ERR_LIB_ENGINE, ENGINE_R_NO_SUCH_ENGINE, "id=%s", id); 336 431 return NULL; 337 432 /* EEK! Experimental code ends */ … … 342 437 int i; 343 438 if (e == NULL) { 344 E NGINEerr(ENGINE_F_ENGINE_UP_REF, ERR_R_PASSED_NULL_PARAMETER);439 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 345 440 return 0; 346 441 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_local.h
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved 4 4 * 5 * Licensed under the OpenSSL license(the "License"). You may not use5 * Licensed under the Apache License 2.0 (the "License"). You may not use 6 6 * this file except in compliance with the License. You can obtain a copy 7 7 * in the file LICENSE in the source distribution or at … … 12 12 # define OSSL_CRYPTO_ENGINE_ENG_LOCAL_H 13 13 14 # include <openssl/trace.h> 14 15 # include "internal/cryptlib.h" 15 16 # include "crypto/engine.h" … … 20 21 21 22 /* 22 * If we compile with this symbol defined, then both reference counts in the 23 * ENGINE structure will be monitored with a line of output on stderr for 24 * each change. This prints the engine's pointer address (truncated to 25 * unsigned int), "struct" or "funct" to indicate the reference type, the 26 * before and after reference count, and the file:line-number pair. The 27 * "engine_ref_debug" statements must come *after* the change. 23 * This prints the engine's pointer address, "struct" or "funct" to 24 * indicate the reference type, the before and after reference count, and 25 * the file:line-number pair. The "ENGINE_REF_PRINT" statements must come 26 * *after* the change. 28 27 */ 29 # ifdef ENGINE_REF_COUNT_DEBUG 30 31 # define engine_ref_debug(e, isfunct, diff) \ 32 fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \ 33 (unsigned int)(e), (isfunct ? "funct" : "struct"), \ 34 ((isfunct) ? ((e)->funct_ref - (diff)) : ((e)->struct_ref - (diff))), \ 35 ((isfunct) ? (e)->funct_ref : (e)->struct_ref), \ 36 (OPENSSL_FILE), (OPENSSL_LINE)) 37 38 # else 39 40 # define engine_ref_debug(e, isfunct, diff) 41 42 # endif 28 # define ENGINE_REF_PRINT(e, isfunct, diff) \ 29 OSSL_TRACE6(ENGINE_REF_COUNT, \ 30 "engine: %p %s from %d to %d (%s:%d)\n", \ 31 (void *)(e), (isfunct ? "funct" : "struct"), \ 32 ((isfunct) \ 33 ? ((e)->funct_ref - (diff)) \ 34 : ((e)->struct_ref - (diff))), \ 35 ((isfunct) ? (e)->funct_ref : (e)->struct_ref), \ 36 (OPENSSL_FILE), (OPENSSL_LINE)) 43 37 44 38 /* … … 60 54 61 55 /* 62 * If this symbol is defined then engine_table_select(), the function that is63 * used by RSA, DSA (etc) code to select registered ENGINEs, cache defaults64 * and functional references (etc), will display debugging summaries to65 * stderr.66 */67 /* #define ENGINE_TABLE_DEBUG */68 69 /*70 56 * This represents an implementation table. Dependent code should instantiate 71 57 * it as a (ENGINE_TABLE *) pointer value set initially to NULL. … … 77 63 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e); 78 64 void engine_table_cleanup(ENGINE_TABLE **table); 79 # ifndef ENGINE_TABLE_DEBUG 80 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid); 81 # else 82 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, 83 int l); 84 # define engine_table_select(t,n) engine_table_select_tmp(t,n,OPENSSL_FILE,OPENSSL_LINE) 85 # endif 65 ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid, 66 const char *f, int l); 86 67 typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk, 87 68 ENGINE *def, void *arg); … … 118 99 extern CRYPTO_ONCE engine_lock_init; 119 100 DECLARE_RUN_ONCE(do_engine_lock_init) 101 102 typedef void (*ENGINE_DYNAMIC_ID)(void); 103 int engine_add_dynamic_id(ENGINE *e, ENGINE_DYNAMIC_ID dynamic_id, 104 int not_locked); 105 void engine_remove_dynamic_id(ENGINE *e, int not_locked); 120 106 121 107 /* … … 163 149 struct engine_st *prev; 164 150 struct engine_st *next; 151 /* Used to maintain the linked-list of dynamic engines. */ 152 struct engine_st *prev_dyn; 153 struct engine_st *next_dyn; 154 ENGINE_DYNAMIC_ID dynamic_id; 165 155 }; 166 156 -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_openssl.c
r91772 r94082 1 1 /* 2 * Copyright 2001-202 0The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved 4 4 * 5 * Licensed under the OpenSSL license(the "License"). You may not use5 * Licensed under the Apache License 2.0 (the "License"). You may not use 6 6 * this file except in compliance with the License. You can obtain a copy 7 7 * in the file LICENSE in the source distribution or at 8 8 * https://www.openssl.org/source/license.html 9 9 */ 10 11 /* We need to use some engine deprecated APIs */ 12 #define OPENSSL_SUPPRESS_DEPRECATED 13 14 /* 15 * RC4 and SHA-1 low level APIs and EVP _meth_ APISs are deprecated for public 16 * use, but still ok for internal use. 17 */ 18 #include "internal/deprecated.h" 10 19 11 20 #include <stdio.h> … … 90 99 || !ENGINE_set_destroy_function(e, openssl_destroy) 91 100 #ifndef TEST_ENG_OPENSSL_NO_ALGORITHMS 92 # ifndef OPENSSL_NO_RSA93 101 || !ENGINE_set_RSA(e, RSA_get_default_method()) 94 # endif95 102 # ifndef OPENSSL_NO_DSA 96 103 || !ENGINE_set_DSA(e, DSA_get_default_method()) … … 144 151 if (!toadd) 145 152 return; 153 154 ERR_set_mark(); 146 155 ENGINE_add(toadd); 147 156 /* … … 150 159 */ 151 160 ENGINE_free(toadd); 152 ERR_clear_error(); 161 /* 162 * If the "add" didn't work, it was probably a conflict because it was 163 * already added (eg. someone calling ENGINE_load_blah then calling 164 * ENGINE_load_builtin_engines() perhaps). 165 */ 166 ERR_pop_to_mark(); 153 167 } 154 168 … … 168 182 169 183 IMPLEMENT_DYNAMIC_CHECK_FN() 170 IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)184 IMPLEMENT_DYNAMIC_BIND_FN(bind_fn) 171 185 #endif /* ENGINE_DYNAMIC_SUPPORT */ 172 186 #ifdef TEST_ENG_OPENSSL_RC4 … … 192 206 const unsigned char *iv, int enc) 193 207 { 208 const int n = EVP_CIPHER_CTX_get_key_length(ctx); 209 194 210 # ifdef TEST_ENG_OPENSSL_RC4_P_INIT 195 211 fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_init_key() called\n"); 196 212 # endif 197 memcpy(&test(ctx)->key[0], key, EVP_CIPHER_CTX_key_length(ctx)); 198 RC4_set_key(&test(ctx)->ks, EVP_CIPHER_CTX_key_length(ctx), 199 test(ctx)->key); 213 if (n <= 0) 214 return n; 215 memcpy(&test(ctx)->key[0], key, n); 216 RC4_set_key(&test(ctx)->ks, n, test(ctx)->key); 200 217 return 1; 201 218 } … … 269 286 const EVP_CIPHER *cipher; 270 287 if ((cipher = test_r4_cipher()) != NULL) 271 cipher_nids[pos++] = EVP_CIPHER_ nid(cipher);288 cipher_nids[pos++] = EVP_CIPHER_get_nid(cipher); 272 289 if ((cipher = test_r4_40_cipher()) != NULL) 273 cipher_nids[pos++] = EVP_CIPHER_ nid(cipher);290 cipher_nids[pos++] = EVP_CIPHER_get_nid(cipher); 274 291 cipher_nids[pos] = 0; 275 292 init = 1; … … 312 329 fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_init() called\n"); 313 330 # endif 314 return SHA1_Init(EVP_MD_CTX_ md_data(ctx));331 return SHA1_Init(EVP_MD_CTX_get0_md_data(ctx)); 315 332 } 316 333 … … 320 337 fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_update() called\n"); 321 338 # endif 322 return SHA1_Update(EVP_MD_CTX_ md_data(ctx), data, count);339 return SHA1_Update(EVP_MD_CTX_get0_md_data(ctx), data, count); 323 340 } 324 341 … … 328 345 fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_final() called\n"); 329 346 # endif 330 return SHA1_Final(md, EVP_MD_CTX_ md_data(ctx));347 return SHA1_Final(md, EVP_MD_CTX_get0_md_data(ctx)); 331 348 } 332 349 … … 367 384 const EVP_MD *md; 368 385 if ((md = test_sha_md()) != NULL) 369 digest_nids[pos++] = EVP_MD_ type(md);386 digest_nids[pos++] = EVP_MD_get_type(md); 370 387 digest_nids[pos] = 0; 371 388 init = 1; … … 435 452 436 453 if ((hctx = OPENSSL_zalloc(sizeof(*hctx))) == NULL) { 437 E NGINEerr(ENGINE_F_OSSL_HMAC_INIT, ERR_R_MALLOC_FAILURE);454 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 438 455 return 0; 439 456 } … … 506 523 static int ossl_int_update(EVP_MD_CTX *ctx, const void *data, size_t count) 507 524 { 508 OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(EVP_MD_CTX_ pkey_ctx(ctx));525 OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(EVP_MD_CTX_get_pkey_ctx(ctx)); 509 526 if (!HMAC_Update(hctx->ctx, data, count)) 510 527 return 0; … … 524 541 unsigned int hlen; 525 542 OSSL_HMAC_PKEY_CTX *hctx = EVP_PKEY_CTX_get_data(ctx); 526 int l = EVP_MD_CTX_ size(mctx);543 int l = EVP_MD_CTX_get_size(mctx); 527 544 528 545 if (l < 0) … … 623 640 0 624 641 }; 625 if (!pmeth) { 642 643 if (pmeth == NULL) { 626 644 *nids = ossl_pkey_nids; 627 645 return 1; -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_pkey.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 16The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 57 60 58 61 if (e == NULL) { 59 ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY, 60 ERR_R_PASSED_NULL_PARAMETER); 61 return 0; 62 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 63 return NULL; 62 64 } 63 CRYPTO_THREAD_write_lock(global_engine_lock); 65 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 66 return NULL; 64 67 if (e->funct_ref == 0) { 65 68 CRYPTO_THREAD_unlock(global_engine_lock); 66 E NGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY, ENGINE_R_NOT_INITIALISED);67 return 0;69 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_INITIALISED); 70 return NULL; 68 71 } 69 72 CRYPTO_THREAD_unlock(global_engine_lock); 70 73 if (!e->load_privkey) { 71 ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY, 72 ENGINE_R_NO_LOAD_FUNCTION); 73 return 0; 74 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_LOAD_FUNCTION); 75 return NULL; 74 76 } 75 77 pkey = e->load_privkey(e, key_id, ui_method, callback_data); 76 if (!pkey) { 77 ENGINEerr(ENGINE_F_ENGINE_LOAD_PRIVATE_KEY, 78 ENGINE_R_FAILED_LOADING_PRIVATE_KEY); 79 return 0; 78 if (pkey == NULL) { 79 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FAILED_LOADING_PRIVATE_KEY); 80 return NULL; 80 81 } 81 82 return pkey; … … 88 89 89 90 if (e == NULL) { 90 ENGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, 91 ERR_R_PASSED_NULL_PARAMETER); 92 return 0; 91 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 92 return NULL; 93 93 } 94 CRYPTO_THREAD_write_lock(global_engine_lock); 94 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 95 return NULL; 95 96 if (e->funct_ref == 0) { 96 97 CRYPTO_THREAD_unlock(global_engine_lock); 97 E NGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, ENGINE_R_NOT_INITIALISED);98 return 0;98 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_INITIALISED); 99 return NULL; 99 100 } 100 101 CRYPTO_THREAD_unlock(global_engine_lock); 101 102 if (!e->load_pubkey) { 102 E NGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, ENGINE_R_NO_LOAD_FUNCTION);103 return 0;103 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_LOAD_FUNCTION); 104 return NULL; 104 105 } 105 106 pkey = e->load_pubkey(e, key_id, ui_method, callback_data); 106 if (!pkey) { 107 ENGINEerr(ENGINE_F_ENGINE_LOAD_PUBLIC_KEY, 108 ENGINE_R_FAILED_LOADING_PUBLIC_KEY); 109 return 0; 107 if (pkey == NULL) { 108 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FAILED_LOADING_PUBLIC_KEY); 109 return NULL; 110 110 } 111 111 return pkey; … … 119 119 120 120 if (e == NULL) { 121 ENGINEerr(ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT, 122 ERR_R_PASSED_NULL_PARAMETER); 121 ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER); 123 122 return 0; 124 123 } 125 CRYPTO_THREAD_write_lock(global_engine_lock); 124 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 125 return 0; 126 126 if (e->funct_ref == 0) { 127 127 CRYPTO_THREAD_unlock(global_engine_lock); 128 ENGINEerr(ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT, 129 ENGINE_R_NOT_INITIALISED); 128 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_INITIALISED); 130 129 return 0; 131 130 } 132 131 CRYPTO_THREAD_unlock(global_engine_lock); 133 132 if (!e->load_ssl_client_cert) { 134 ENGINEerr(ENGINE_F_ENGINE_LOAD_SSL_CLIENT_CERT, 135 ENGINE_R_NO_LOAD_FUNCTION); 133 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_LOAD_FUNCTION); 136 134 return 0; 137 135 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_rdrand.c
r91772 r94082 1 1 /* 2 * Copyright 2011-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2011-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include <openssl/opensslconf.h> … … 13 16 #include <string.h> 14 17 #include "crypto/engine.h" 18 #include "internal/cryptlib.h" 15 19 #include <openssl/rand.h> 16 20 #include <openssl/err.h> … … 80 84 void engine_load_rdrand_int(void) 81 85 { 82 extern unsigned int OPENSSL_ia32cap_P[];83 84 86 if (OPENSSL_ia32cap_P[1] & (1 << (62 - 32))) { 85 87 ENGINE *toadd = ENGINE_rdrand(); 86 88 if (!toadd) 87 89 return; 90 ERR_set_mark(); 88 91 ENGINE_add(toadd); 92 /* 93 * If the "add" worked, it gets a structural reference. So either way, we 94 * release our just-created reference. 95 */ 89 96 ENGINE_free(toadd); 90 ERR_clear_error(); 97 /* 98 * If the "add" didn't work, it was probably a conflict because it was 99 * already added (eg. someone calling ENGINE_load_blah then calling 100 * ENGINE_load_builtin_engines() perhaps). 101 */ 102 ERR_pop_to_mark(); 91 103 } 92 104 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/eng_table.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at … … 11 11 #include <openssl/evp.h> 12 12 #include <openssl/lhash.h> 13 #include <openssl/trace.h> 13 14 #include "eng_local.h" 14 15 … … 86 87 int ret = 0, added = 0; 87 88 ENGINE_PILE tmplate, *fnd; 88 CRYPTO_THREAD_write_lock(global_engine_lock); 89 90 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 91 return 0; 89 92 if (!(*table)) 90 93 added = 1; … … 127 130 if (setdefault) { 128 131 if (!engine_unlocked_init(e)) { 129 ENGINEerr(ENGINE_F_ENGINE_TABLE_REGISTER, 130 ENGINE_R_INIT_FAILED); 132 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INIT_FAILED); 131 133 goto end; 132 134 } … … 162 164 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e) 163 165 { 164 CRYPTO_THREAD_write_lock(global_engine_lock); 166 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 167 /* Can't return a value. :( */ 168 return; 165 169 if (int_table_check(table, 0)) 166 170 lh_ENGINE_PILE_doall_ENGINE(&(*table)->piles, int_unregister_cb, e); … … 170 174 static void int_cleanup_cb_doall(ENGINE_PILE *p) 171 175 { 172 if ( !p)176 if (p == NULL) 173 177 return; 174 178 sk_ENGINE_free(p->sk); … … 180 184 void engine_table_cleanup(ENGINE_TABLE **table) 181 185 { 182 CRYPTO_THREAD_write_lock(global_engine_lock); 186 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 187 return; 183 188 if (*table) { 184 189 lh_ENGINE_PILE_doall(&(*table)->piles, int_cleanup_cb_doall); … … 190 195 191 196 /* return a functional reference for a given 'nid' */ 192 #ifndef ENGINE_TABLE_DEBUG 193 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid) 194 #else 195 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, 196 int l) 197 #endif 197 ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid, 198 const char *f, int l) 198 199 { 199 200 ENGINE *ret = NULL; … … 201 202 int initres, loop = 0; 202 203 204 /* Load the config before trying to check if engines are available */ 205 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL); 206 203 207 if (!(*table)) { 204 #ifdef ENGINE_TABLE_DEBUG 205 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, nothing " 206 "registered!\n", f, l, nid); 207 #endif 208 OSSL_TRACE3(ENGINE_TABLE, 209 "%s:%d, nid=%d, nothing registered!\n", 210 f, l, nid); 208 211 return NULL; 209 212 } 210 213 ERR_set_mark(); 211 CRYPTO_THREAD_write_lock(global_engine_lock); 214 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 215 goto end; 212 216 /* 213 217 * Check again inside the lock otherwise we could race against cleanup 214 * operations. But don't worry about a fprintf(stderr).218 * operations. But don't worry about a debug printout 215 219 */ 216 220 if (!int_table_check(table, 0)) … … 221 225 goto end; 222 226 if (fnd->funct && engine_unlocked_init(fnd->funct)) { 223 #ifdef ENGINE_TABLE_DEBUG 224 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, using " 225 "ENGINE '%s' cached\n", f, l, nid, fnd->funct->id); 226 #endif 227 OSSL_TRACE4(ENGINE_TABLE, 228 "%s:%d, nid=%d, using ENGINE '%s' cached\n", 229 f, l, nid, fnd->funct->id); 227 230 ret = fnd->funct; 228 231 goto end; … … 235 238 ret = sk_ENGINE_value(fnd->sk, loop++); 236 239 if (!ret) { 237 #ifdef ENGINE_TABLE_DEBUG 238 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, no"239 "registered implementations would initialise\n", f, l, nid);240 #endif 240 OSSL_TRACE3(ENGINE_TABLE, 241 "%s:%d, nid=%d, " 242 "no registered implementations would initialise\n", 243 f, l, nid); 241 244 goto end; 242 245 } … … 253 256 engine_unlocked_finish(fnd->funct, 0); 254 257 fnd->funct = ret; 255 #ifdef ENGINE_TABLE_DEBUG 256 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, " 257 "setting default to '%s'\n", f, l, nid, ret->id); 258 #endif 258 OSSL_TRACE4(ENGINE_TABLE, 259 "%s:%d, nid=%d, setting default to '%s'\n", 260 f, l, nid, ret->id); 259 261 } 260 #ifdef ENGINE_TABLE_DEBUG 261 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, using " 262 "newly initialised '%s'\n", f, l, nid, ret->id); 263 #endif 262 OSSL_TRACE4(ENGINE_TABLE, 263 "%s:%d, nid=%d, using newly initialised '%s'\n", 264 f, l, nid, ret->id); 264 265 goto end; 265 266 } … … 272 273 if (fnd) 273 274 fnd->uptodate = 1; 274 #ifdef ENGINE_TABLE_DEBUG275 275 if (ret) 276 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, caching " 277 "ENGINE '%s'\n", f, l, nid, ret->id); 276 OSSL_TRACE4(ENGINE_TABLE, 277 "%s:%d, nid=%d, caching ENGINE '%s'\n", 278 f, l, nid, ret->id); 278 279 else 279 fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, caching "280 "'no matching ENGINE'\n", f, l, nid);281 #endif 280 OSSL_TRACE3(ENGINE_TABLE, 281 "%s:%d, nid=%d, caching 'no matching ENGINE'\n", 282 f, l, nid); 282 283 CRYPTO_THREAD_unlock(global_engine_lock); 283 284 /* -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_asnmth.c
r91772 r94082 1 1 /* 2 * Copyright 2006-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "e_os.h" … … 74 77 ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid) 75 78 { 76 return engine_table_select(&pkey_asn1_meth_table, nid); 79 return ossl_engine_table_select(&pkey_asn1_meth_table, nid, 80 OPENSSL_FILE, OPENSSL_LINE); 77 81 } 78 82 … … 86 90 ENGINE_PKEY_ASN1_METHS_PTR fn = ENGINE_get_pkey_asn1_meths(e); 87 91 if (!fn || !fn(e, &ret, NULL, nid)) { 88 ENGINEerr(ENGINE_F_ENGINE_GET_PKEY_ASN1_METH, 89 ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD); 92 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD); 90 93 return NULL; 91 94 } … … 194 197 195 198 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) { 196 ENGINEerr(ENGINE_F_ENGINE_PKEY_ASN1_FIND_STR, ERR_R_MALLOC_FAILURE); 197 return NULL; 198 } 199 200 CRYPTO_THREAD_write_lock(global_engine_lock); 199 ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE); 200 return NULL; 201 } 202 203 if (!CRYPTO_THREAD_write_lock(global_engine_lock)) 204 return NULL; 201 205 engine_table_doall(pkey_asn1_meth_table, look_str_cb, &fstr); 202 206 /* If found obtain a structural reference to engine */ 203 207 if (fstr.e) { 204 208 fstr.e->struct_ref++; 205 engine_ref_debug(fstr.e, 0, 1);209 ENGINE_REF_PRINT(fstr.e, 0, 1); 206 210 } 207 211 *pe = fstr.e; -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_cipher.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 63 66 ENGINE *ENGINE_get_cipher_engine(int nid) 64 67 { 65 return engine_table_select(&cipher_table, nid); 68 return ossl_engine_table_select(&cipher_table, nid, 69 OPENSSL_FILE, OPENSSL_LINE); 66 70 } 67 71 … … 72 76 ENGINE_CIPHERS_PTR fn = ENGINE_get_ciphers(e); 73 77 if (!fn || !fn(e, &ret, NULL, nid)) { 74 E NGINEerr(ENGINE_F_ENGINE_GET_CIPHER, ENGINE_R_UNIMPLEMENTED_CIPHER);78 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_CIPHER); 75 79 return NULL; 76 80 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_dh.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 56 59 ENGINE *ENGINE_get_default_DH(void) 57 60 { 58 return engine_table_select(&dh_table, dummy_nid); 61 return ossl_engine_table_select(&dh_table, dummy_nid, 62 OPENSSL_FILE, OPENSSL_LINE); 59 63 } 60 64 -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_digest.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 63 66 ENGINE *ENGINE_get_digest_engine(int nid) 64 67 { 65 return engine_table_select(&digest_table, nid); 68 return ossl_engine_table_select(&digest_table, nid, 69 OPENSSL_FILE, OPENSSL_LINE); 66 70 } 67 71 … … 72 76 ENGINE_DIGESTS_PTR fn = ENGINE_get_digests(e); 73 77 if (!fn || !fn(e, &ret, NULL, nid)) { 74 E NGINEerr(ENGINE_F_ENGINE_GET_DIGEST, ENGINE_R_UNIMPLEMENTED_DIGEST);78 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_DIGEST); 75 79 return NULL; 76 80 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_dsa.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 56 59 ENGINE *ENGINE_get_default_DSA(void) 57 60 { 58 return engine_table_select(&dsa_table, dummy_nid); 61 return ossl_engine_table_select(&dsa_table, dummy_nid, 62 OPENSSL_FILE, OPENSSL_LINE); 59 63 } 60 64 -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_eckey.c
r91772 r94082 1 1 /* 2 * Copyright 2015-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 56 59 ENGINE *ENGINE_get_default_EC(void) 57 60 { 58 return engine_table_select(&dh_table, dummy_nid); 61 return ossl_engine_table_select(&dh_table, dummy_nid, 62 OPENSSL_FILE, OPENSSL_LINE); 59 63 } 60 64 -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_pkmeth.c
r91772 r94082 1 1 /* 2 * Copyright 2006-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some deprecated APIs */ 11 #include "internal/deprecated.h" 9 12 10 13 #include "eng_local.h" … … 64 67 ENGINE *ENGINE_get_pkey_meth_engine(int nid) 65 68 { 66 return engine_table_select(&pkey_meth_table, nid); 69 return ossl_engine_table_select(&pkey_meth_table, nid, 70 OPENSSL_FILE, OPENSSL_LINE); 67 71 } 68 72 … … 73 77 ENGINE_PKEY_METHS_PTR fn = ENGINE_get_pkey_meths(e); 74 78 if (!fn || !fn(e, &ret, NULL, nid)) { 75 ENGINEerr(ENGINE_F_ENGINE_GET_PKEY_METH, 76 ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD); 79 ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_PUBLIC_KEY_METHOD); 77 80 return NULL; 78 81 } -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_rand.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 56 59 ENGINE *ENGINE_get_default_RAND(void) 57 60 { 58 return engine_table_select(&rand_table, dummy_nid); 61 return ossl_engine_table_select(&rand_table, dummy_nid, 62 OPENSSL_FILE, OPENSSL_LINE); 59 63 } 60 64 -
trunk/src/libs/openssl-3.0.1/crypto/engine/tb_rsa.c
r91772 r94082 1 1 /* 2 * Copyright 2001-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at 7 7 * https://www.openssl.org/source/license.html 8 8 */ 9 10 /* We need to use some engine deprecated APIs */ 11 #define OPENSSL_SUPPRESS_DEPRECATED 9 12 10 13 #include "eng_local.h" … … 56 59 ENGINE *ENGINE_get_default_RSA(void) 57 60 { 58 return engine_table_select(&rsa_table, dummy_nid); 61 return ossl_engine_table_select(&rsa_table, dummy_nid, 62 OPENSSL_FILE, OPENSSL_LINE); 59 63 } 60 64
Note:
See TracChangeset
for help on using the changeset viewer.