VirtualBox

Ignore:
Timestamp:
Mar 3, 2022 7:17:34 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
150325
Message:

libs/openssl-3.0.1: started applying and adjusting our OpenSSL changes to 3.0.1. bugref:10128

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  
        1212/vendor/openssl/1.1.1c:131722-131725
        1313/vendor/openssl/1.1.1k:145841-145843
         14/vendor/openssl/3.0.1:150323-150324
         15/vendor/openssl/current:147554-150322
  • trunk/src/libs/openssl-3.0.1/crypto/engine/build.info

    r91772 r94082  
    77        eng_openssl.c eng_cnf.c eng_dyn.c \
    88        eng_rdrand.c
    9 IF[{- !$disabled{devcryptoeng} -}]
    10   SOURCE[../../libcrypto]=eng_devcrypto.c
    11 ENDIF
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_all.c

    r91772 r94082  
    22 * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
     
    1313void ENGINE_load_builtin_engines(void)
    1414{
    15     /* Some ENGINEs need this */
    16     OPENSSL_cpuid_setup();
    17 
    1815    OPENSSL_init_crypto(OPENSSL_INIT_ENGINE_ALL_BUILTIN, NULL);
    1916}
    2017
    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__))
    2220void ENGINE_setup_bsd_cryptodev(void)
    2321{
    2422}
     23# endif
    2524#endif
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_cnf.c

    r91772 r94082  
    11/*
    2  * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
     
    88 */
    99
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
     12
    1013#include "eng_local.h"
    1114#include <openssl/conf.h>
    12 
    13 /* #define ENGINE_CONF_DEBUG */
     15#include <openssl/trace.h>
    1416
    1517/* ENGINE config module */
     
    5153
    5254    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);
    5656    /* Value is a section containing ENGINE commands */
    5757    ecmds = NCONF_get_section(cnf, value);
    5858
    5959    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);
    6261        return 0;
    6362    }
     
    6766        ctrlname = skip_dot(ecmd->name);
    6867        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);
    7370
    7471        /* First handle some special pseudo ctrls */
     
    119116                        goto err;
    120117                } 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);
    123119                    goto err;
    124120                }
     
    138134 err:
    139135    if (ret != 1) {
    140         ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE,
    141                   ENGINE_R_ENGINE_CONFIGURATION_ERROR);
    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);
    146142    }
    147143    ENGINE_free(e);
     
    154150    CONF_VALUE *cval;
    155151    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));
    160154    /* Value is a section containing ENGINEs to configure */
    161155    elist = NCONF_get_section(cnf, CONF_imodule_get_value(md));
    162156
    163157    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);
    166159        return 0;
    167160    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_ctrl.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    7780        (cmd == ENGINE_CTRL_GET_DESC_FROM_CMD)) {
    7881        if (s == NULL) {
    79             ENGINEerr(ENGINE_F_INT_CTRL_HELPER, ERR_R_PASSED_NULL_PARAMETER);
     82            ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    8083            return -1;
    8184        }
     
    8588        if ((e->cmd_defns == NULL)
    8689            || ((idx = int_ctrl_cmd_by_name(e->cmd_defns, s)) < 0)) {
    87             ENGINEerr(ENGINE_F_INT_CTRL_HELPER, ENGINE_R_INVALID_CMD_NAME);
     90            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NAME);
    8891            return -1;
    8992        }
     
    9699    if ((e->cmd_defns == NULL)
    97100        || ((idx = int_ctrl_cmd_by_num(e->cmd_defns, (unsigned int)i)) < 0)) {
    98         ENGINEerr(ENGINE_F_INT_CTRL_HELPER, ENGINE_R_INVALID_CMD_NUMBER);
     101        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NUMBER);
    99102        return -1;
    100103    }
     
    119122    }
    120123    /* Shouldn't really be here ... */
    121     ENGINEerr(ENGINE_F_INT_CTRL_HELPER, ENGINE_R_INTERNAL_LIST_ERROR);
     124    ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
    122125    return -1;
    123126}
     
    127130    int ctrl_exists, ref_exists;
    128131    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;
    133137    ref_exists = ((e->struct_ref > 0) ? 1 : 0);
    134138    CRYPTO_THREAD_unlock(global_engine_lock);
    135139    ctrl_exists = ((e->ctrl == NULL) ? 0 : 1);
    136140    if (!ref_exists) {
    137         ENGINEerr(ENGINE_F_ENGINE_CTRL, ENGINE_R_NO_REFERENCE);
     141        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_REFERENCE);
    138142        return 0;
    139143    }
     
    156160            return int_ctrl_helper(e, cmd, i, p, f);
    157161        if (!ctrl_exists) {
    158             ENGINEerr(ENGINE_F_ENGINE_CTRL, ENGINE_R_NO_CONTROL_FUNCTION);
     162            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_CONTROL_FUNCTION);
    159163            /*
    160164             * For these cmd-related functions, failure is indicated by a -1
     
    169173    /* Anything else requires a ctrl() handler to exist. */
    170174    if (!ctrl_exists) {
    171         ENGINEerr(ENGINE_F_ENGINE_CTRL, ENGINE_R_NO_CONTROL_FUNCTION);
     175        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_CONTROL_FUNCTION);
    172176        return 0;
    173177    }
     
    180184    if ((flags =
    181185         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);
    184187        return 0;
    185188    }
     
    197200
    198201    if (e == NULL || cmd_name == NULL) {
    199         ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD, ERR_R_PASSED_NULL_PARAMETER);
     202        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    200203        return 0;
    201204    }
     
    215218            return 1;
    216219        }
    217         ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD, ENGINE_R_INVALID_CMD_NAME);
     220        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NAME);
    218221        return 0;
    219222    }
     
    235238
    236239    if (e == NULL || cmd_name == NULL) {
    237         ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, ERR_R_PASSED_NULL_PARAMETER);
     240        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    238241        return 0;
    239242    }
     
    253256            return 1;
    254257        }
    255         ENGINEerr(ENGINE_F_ENGINE_CTRL_CMD_STRING, ENGINE_R_INVALID_CMD_NAME);
     258        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_CMD_NAME);
    256259        return 0;
    257260    }
    258261    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);
    261263        return 0;
    262264    }
     
    268270         * success.
    269271         */
    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);
    272273        return 0;
    273274    }
     
    277278    if (flags & ENGINE_CMD_FLAG_NO_INPUT) {
    278279        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);
    281281            return 0;
    282282        }
     
    293293    /* So, we require input */
    294294    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);
    297296        return 0;
    298297    }
     
    311310     */
    312311    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);
    315313        return 0;
    316314    }
    317315    l = strtol(arg, &ptr, 10);
    318316    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);
    321318        return 0;
    322319    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_dyn.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    155158{
    156159    dynamic_data_ctx *c = OPENSSL_zalloc(sizeof(*c));
    157     int ret = 1;
     160    int ret = 0;
    158161
    159162    if (c == NULL) {
    160         ENGINEerr(ENGINE_F_DYNAMIC_SET_DATA_CTX, ERR_R_MALLOC_FAILURE);
     163        ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    161164        return 0;
    162165    }
    163166    c->dirs = sk_OPENSSL_STRING_new_null();
    164167    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;
    168170    }
    169171    c->DYNAMIC_F1 = "v_check";
    170172    c->DYNAMIC_F2 = "bind_engine";
    171173    c->dir_load = 1;
    172     CRYPTO_THREAD_write_lock(global_engine_lock);
     174    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     175        goto end;
    173176    if ((*ctx = (dynamic_data_ctx *)ENGINE_get_ex_data(e,
    174177                                                       dynamic_ex_data_idx))
     
    182185    }
    183186    CRYPTO_THREAD_unlock(global_engine_lock);
     187    ret = 1;
    184188    /*
    185189     * If we lost the race to set the context, c is non-NULL and *ctx is the
    186190     * context of the thread that won.
    187191     */
    188     if (c)
     192end:
     193    if (c != NULL)
    189194        sk_OPENSSL_STRING_free(c->dirs);
    190195    OPENSSL_free(c);
     
    208213                                              dynamic_data_ctx_free_func);
    209214        if (new_idx == -1) {
    210             ENGINEerr(ENGINE_F_DYNAMIC_GET_DATA_CTX, ENGINE_R_NO_INDEX);
     215            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_INDEX);
    211216            return NULL;
    212217        }
    213         CRYPTO_THREAD_write_lock(global_engine_lock);
     218        if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     219            return NULL;
    214220        /* Avoid a race by checking again inside this lock */
    215221        if (dynamic_ex_data_idx < 0) {
     
    255261    if (!toadd)
    256262        return;
     263
     264    ERR_set_mark();
    257265    ENGINE_add(toadd);
    258266    /*
     
    266274     * ENGINE_load_builtin_engines() perhaps).
    267275     */
    268     ERR_clear_error();
     276    ERR_pop_to_mark();
    269277}
    270278
     
    293301
    294302    if (!ctx) {
    295         ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_NOT_LOADED);
     303        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_LOADED);
    296304        return 0;
    297305    }
     
    299307    /* All our control commands require the ENGINE to be uninitialised */
    300308    if (initialised) {
    301         ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_ALREADY_LOADED);
     309        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_ALREADY_LOADED);
    302310        return 0;
    303311    }
     
    328336    case DYNAMIC_CMD_LIST_ADD:
    329337        if ((i < 0) || (i > 2)) {
    330             ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_INVALID_ARGUMENT);
     338            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_ARGUMENT);
    331339            return 0;
    332340        }
     
    337345    case DYNAMIC_CMD_DIR_LOAD:
    338346        if ((i < 0) || (i > 2)) {
    339             ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_INVALID_ARGUMENT);
     347            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INVALID_ARGUMENT);
    340348            return 0;
    341349        }
     
    344352    case DYNAMIC_CMD_DIR_ADD:
    345353        /* a NULL 'p' or a string of zero-length is the same thing */
    346         if (!p || (strlen((const char *)p) < 1)) {
    347             ENGINEerr(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);
    348356            return 0;
    349357        }
     
    351359            char *tmp_str = OPENSSL_strdup(p);
    352360            if (tmp_str == NULL) {
    353                 ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ERR_R_MALLOC_FAILURE);
     361                ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    354362                return 0;
    355363            }
    356364            if (!sk_OPENSSL_STRING_push(ctx->dirs, tmp_str)) {
    357365                OPENSSL_free(tmp_str);
    358                 ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ERR_R_MALLOC_FAILURE);
     366                ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    359367                return 0;
    360368            }
     
    364372        break;
    365373    }
    366     ENGINEerr(ENGINE_F_DYNAMIC_CTRL, ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED);
     374    ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CTRL_COMMAND_NOT_IMPLEMENTED);
    367375    return 0;
    368376}
     
    412420    }
    413421    if (!int_load(ctx)) {
    414         ENGINEerr(ENGINE_F_DYNAMIC_LOAD, ENGINE_R_DSO_NOT_FOUND);
     422        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_DSO_NOT_FOUND);
    415423        DSO_free(ctx->dynamic_dso);
    416424        ctx->dynamic_dso = NULL;
     
    425433        DSO_free(ctx->dynamic_dso);
    426434        ctx->dynamic_dso = NULL;
    427         ENGINEerr(ENGINE_F_DYNAMIC_LOAD, ENGINE_R_DSO_FAILURE);
     435        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_DSO_FAILURE);
    428436        return 0;
    429437    }
     
    451459            DSO_free(ctx->dynamic_dso);
    452460            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);
    455462            return 0;
    456463        }
     
    478485
    479486    /* 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);
    481490        ctx->bind_engine = NULL;
    482491        ctx->v_check = NULL;
    483492        DSO_free(ctx->dynamic_dso);
    484493        ctx->dynamic_dso = NULL;
    485         ENGINEerr(ENGINE_F_DYNAMIC_LOAD, ENGINE_R_INIT_FAILED);
     494        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INIT_FAILED);
    486495        /* Copy the original ENGINE structure back */
    487496        memcpy(e, &cpy, sizeof(ENGINE));
     
    499508                 * the ENGINE has changed.
    500509                 */
    501                 ENGINEerr(ENGINE_F_DYNAMIC_LOAD,
    502                           ENGINE_R_CONFLICTING_ENGINE_ID);
     510                ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CONFLICTING_ENGINE_ID);
    503511                return 0;
    504512            }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_err.c

    r91772 r94082  
    11/*
    22 * Generated by util/mkerr.pl DO NOT EDIT
    3  * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
     3 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
    44 *
    5  * Licensed under the OpenSSL license (the "License").  You may not use
     5 * Licensed under the Apache License 2.0 (the "License").  You may not use
    66 * this file except in compliance with the License.  You can obtain a copy
    77 * in the file LICENSE in the source distribution or at
     
    1111#include <openssl/err.h>
    1212#include <openssl/engineerr.h>
     13#include "crypto/engineerr.h"
    1314
    14 #ifndef OPENSSL_NO_ERR
     15#ifndef OPENSSL_NO_ENGINE
    1516
    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
    7918
    8019static const ERR_STRING_DATA ENGINE_str_reasons[] = {
     
    14180};
    14281
    143 #endif
     82# endif
    14483
    145 int ERR_load_ENGINE_strings(void)
     84int ossl_err_load_ENGINE_strings(void)
    14685{
    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)
    15088        ERR_load_strings_const(ENGINE_str_reasons);
    151     }
    152 #endif
     89# endif
    15390    return 1;
    15491}
     92#else
     93NON_EMPTY_TRANSLATION_UNIT
     94#endif
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_fat.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
    33 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
    44 *
    5  * Licensed under the OpenSSL license (the "License").  You may not use
     5 * Licensed under the Apache License 2.0 (the "License").  You may not use
    66 * this file except in compliance with the License.  You can obtain a copy
    77 * in the file LICENSE in the source distribution or at
    88 * https://www.openssl.org/source/license.html
    99 */
     10
     11/* We need to use some engine deprecated APIs */
     12#define OPENSSL_SUPPRESS_DEPRECATED
    1013
    1114#include "eng_local.h"
     
    1821    if ((flags & ENGINE_METHOD_DIGESTS) && !ENGINE_set_default_digests(e))
    1922        return 0;
    20 #ifndef OPENSSL_NO_RSA
    2123    if ((flags & ENGINE_METHOD_RSA) && !ENGINE_set_default_RSA(e))
    2224        return 0;
    23 #endif
    2425#ifndef OPENSSL_NO_DSA
    2526    if ((flags & ENGINE_METHOD_DSA) && !ENGINE_set_default_DSA(e))
     
    8384    unsigned int flags = 0;
    8485    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);
    8888        return 0;
    8989    }
     
    9595    ENGINE_register_ciphers(e);
    9696    ENGINE_register_digests(e);
    97 #ifndef OPENSSL_NO_RSA
    9897    ENGINE_register_RSA(e);
    99 #endif
    10098#ifndef OPENSSL_NO_DSA
    10199    ENGINE_register_DSA(e);
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_init.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "e_os.h"
     
    3235        e->struct_ref++;
    3336        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);
    3639    }
    3740    return to_return;
     
    5558     */
    5659    e->funct_ref--;
    57     engine_ref_debug(e, 1, -1);
     60    ENGINE_REF_PRINT(e, 1, -1);
    5861    if ((e->funct_ref == 0) && e->finish) {
    5962        if (unlock_for_handlers)
     
    6164        to_return = e->finish(e);
    6265        if (unlock_for_handlers)
    63             CRYPTO_THREAD_write_lock(global_engine_lock);
     66            if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     67                return 0;
    6468        if (!to_return)
    6569            return 0;
     
    6872    /* Release the structural reference too */
    6973    if (!engine_free_util(e, 0)) {
    70         ENGINEerr(ENGINE_F_ENGINE_UNLOCKED_FINISH, ENGINE_R_FINISH_FAILED);
     74        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FINISH_FAILED);
    7175        return 0;
    7276    }
     
    7983    int ret;
    8084    if (e == NULL) {
    81         ENGINEerr(ENGINE_F_ENGINE_INIT, ERR_R_PASSED_NULL_PARAMETER);
     85        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    8286        return 0;
    8387    }
    8488    if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) {
    85         ENGINEerr(ENGINE_F_ENGINE_INIT, ERR_R_MALLOC_FAILURE);
     89        ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    8690        return 0;
    8791    }
    88     CRYPTO_THREAD_write_lock(global_engine_lock);
     92    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     93        return 0;
    8994    ret = engine_unlocked_init(e);
    9095    CRYPTO_THREAD_unlock(global_engine_lock);
     
    99104    if (e == NULL)
    100105        return 1;
    101     CRYPTO_THREAD_write_lock(global_engine_lock);
     106    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     107        return 0;
    102108    to_return = engine_unlocked_finish(e, 1);
    103109    CRYPTO_THREAD_unlock(global_engine_lock);
    104110    if (!to_return) {
    105         ENGINEerr(ENGINE_F_ENGINE_FINISH, ENGINE_R_FINISH_FAILED);
     111        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FINISH_FAILED);
    106112        return 0;
    107113    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_lib.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
     
    2121DEFINE_RUN_ONCE(do_engine_lock_init)
    2222{
    23     if (!OPENSSL_init_crypto(0, NULL))
    24         return 0;
    2523    global_engine_lock = CRYPTO_THREAD_lock_new();
    2624    return global_engine_lock != NULL;
     
    3331    if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)
    3432        || (ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) {
    35         ENGINEerr(ENGINE_F_ENGINE_NEW, ERR_R_MALLOC_FAILURE);
     33        ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    3634        return NULL;
    3735    }
    3836    ret->struct_ref = 1;
    39     engine_ref_debug(ret, 0, 1);
     37    ENGINE_REF_PRINT(ret, 0, 1);
    4038    if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data)) {
    4139        OPENSSL_free(ret);
     
    6866    e->cmd_defns = NULL;
    6967    e->flags = 0;
     68    e->dynamic_id = NULL;
    7069}
    7170
     
    8079    else
    8180        i = --e->struct_ref;
    82     engine_ref_debug(e, 0, -1);
     81    ENGINE_REF_PRINT(e, 0, -1);
    8382    if (i > 0)
    8483        return 1;
     
    9392    if (e->destroy)
    9493        e->destroy(e);
     94    engine_remove_dynamic_id(e, not_locked);
    9595    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ENGINE, e, &e->ex_data);
    9696    OPENSSL_free(e);
     
    127127
    128128    if ((item = OPENSSL_malloc(sizeof(*item))) == NULL) {
    129         ENGINEerr(ENGINE_F_INT_CLEANUP_ITEM, ERR_R_MALLOC_FAILURE);
     129        ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    130130        return NULL;
    131131    }
     
    195195{
    196196    if (id == NULL) {
    197         ENGINEerr(ENGINE_F_ENGINE_SET_ID, ERR_R_PASSED_NULL_PARAMETER);
     197        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    198198        return 0;
    199199    }
     
    205205{
    206206    if (name == NULL) {
    207         ENGINEerr(ENGINE_F_ENGINE_SET_NAME, ERR_R_PASSED_NULL_PARAMETER);
     207        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    208208        return 0;
    209209    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_list.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
    44 *
    5  * Licensed under the OpenSSL license (the "License").  You may not use
     5 * Licensed under the Apache License 2.0 (the "License").  You may not use
    66 * this file except in compliance with the License.  You can obtain a copy
    77 * in the file LICENSE in the source distribution or at
    88 * https://www.openssl.org/source/license.html
    99 */
     10
     11/* We need to use some engine deprecated APIs */
     12#define OPENSSL_SUPPRESS_DEPRECATED
    1013
    1114#include "eng_local.h"
     
    2629
    2730/*
     31 * The linked list of currently loaded dynamic engines.
     32 */
     33static ENGINE *engine_dyn_list_head = NULL;
     34static ENGINE *engine_dyn_list_tail = NULL;
     35
     36/*
    2837 * This cleanup function is only needed internally. If it should be called,
    2938 * we register it with the "engine_cleanup_int()" stack to be called during
     
    5261
    5362    if (e == NULL) {
    54         ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ERR_R_PASSED_NULL_PARAMETER);
     63        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    5564        return 0;
    5665    }
     
    6170    }
    6271    if (conflict) {
    63         ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_CONFLICTING_ENGINE_ID);
     72        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_CONFLICTING_ENGINE_ID);
    6473        return 0;
    6574    }
     
    6776        /* We are adding to an empty list. */
    6877        if (engine_list_tail) {
    69             ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_INTERNAL_LIST_ERROR);
     78            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
    7079            return 0;
    7180        }
     
    7988        /* We are adding to the tail of an existing list. */
    8089        if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) {
    81             ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_INTERNAL_LIST_ERROR);
     90            ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
    8291            return 0;
    8392        }
     
    8998     */
    9099    e->struct_ref++;
    91     engine_ref_debug(e, 0, 1);
     100    ENGINE_REF_PRINT(e, 0, 1);
    92101    /* However it came to be, e is the last item in the list. */
    93102    engine_list_tail = e;
     
    101110
    102111    if (e == NULL) {
    103         ENGINEerr(ENGINE_F_ENGINE_LIST_REMOVE, ERR_R_PASSED_NULL_PARAMETER);
     112        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    104113        return 0;
    105114    }
     
    109118        iterator = iterator->next;
    110119    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);
    113121        return 0;
    114122    }
     
    127135}
    128136
     137/* Add engine to dynamic engine list. */
     138int 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. */
     191void 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
    129216/* Get the first/last "ENGINE" type available. */
    130217ENGINE *ENGINE_get_first(void)
     
    133220
    134221    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;
    140228    ret = engine_list_head;
    141229    if (ret) {
    142230        ret->struct_ref++;
    143         engine_ref_debug(ret, 0, 1);
     231        ENGINE_REF_PRINT(ret, 0, 1);
    144232    }
    145233    CRYPTO_THREAD_unlock(global_engine_lock);
     
    152240
    153241    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;
    159248    ret = engine_list_tail;
    160249    if (ret) {
    161250        ret->struct_ref++;
    162         engine_ref_debug(ret, 0, 1);
     251        ENGINE_REF_PRINT(ret, 0, 1);
    163252    }
    164253    CRYPTO_THREAD_unlock(global_engine_lock);
     
    171260    ENGINE *ret = NULL;
    172261    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;
    177267    ret = e->next;
    178268    if (ret) {
    179269        /* Return a valid structural reference to the next ENGINE */
    180270        ret->struct_ref++;
    181         engine_ref_debug(ret, 0, 1);
     271        ENGINE_REF_PRINT(ret, 0, 1);
    182272    }
    183273    CRYPTO_THREAD_unlock(global_engine_lock);
     
    191281    ENGINE *ret = NULL;
    192282    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;
    197288    ret = e->prev;
    198289    if (ret) {
    199290        /* Return a valid structural reference to the next ENGINE */
    200291        ret->struct_ref++;
    201         engine_ref_debug(ret, 0, 1);
     292        ENGINE_REF_PRINT(ret, 0, 1);
    202293    }
    203294    CRYPTO_THREAD_unlock(global_engine_lock);
     
    212303    int to_return = 1;
    213304    if (e == NULL) {
    214         ENGINEerr(ENGINE_F_ENGINE_ADD, ERR_R_PASSED_NULL_PARAMETER);
     305        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    215306        return 0;
    216307    }
    217308    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;
    222314    if (!engine_list_add(e)) {
    223         ENGINEerr(ENGINE_F_ENGINE_ADD, ENGINE_R_INTERNAL_LIST_ERROR);
     315        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
    224316        to_return = 0;
    225317    }
     
    233325    int to_return = 1;
    234326    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;
    239332    if (!engine_list_remove(e)) {
    240         ENGINEerr(ENGINE_F_ENGINE_REMOVE, ENGINE_R_INTERNAL_LIST_ERROR);
     333        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_INTERNAL_LIST_ERROR);
    241334        to_return = 0;
    242335    }
     
    249342    dest->id = src->id;
    250343    dest->name = src->name;
    251 #ifndef OPENSSL_NO_RSA
    252344    dest->rsa_meth = src->rsa_meth;
    253 #endif
    254345#ifndef OPENSSL_NO_DSA
    255346    dest->dsa_meth = src->dsa_meth;
     
    273364    dest->cmd_defns = src->cmd_defns;
    274365    dest->flags = src->flags;
     366    dest->dynamic_id = src->dynamic_id;
     367    engine_add_dynamic_id(dest, NULL, 0);
    275368}
    276369
     
    280373    char *load_dir = NULL;
    281374    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
    285380    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;
    291387    iterator = engine_list_head;
    292388    while (iterator && (strcmp(id, iterator->id) != 0))
     
    308404        } else {
    309405            iterator->struct_ref++;
    310             engine_ref_debug(iterator, 0, 1);
     406            ENGINE_REF_PRINT(iterator, 0, 1);
    311407        }
    312408    }
     
    332428 notfound:
    333429    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);
    336431    return NULL;
    337432    /* EEK! Experimental code ends */
     
    342437    int i;
    343438    if (e == NULL) {
    344         ENGINEerr(ENGINE_F_ENGINE_UP_REF, ERR_R_PASSED_NULL_PARAMETER);
     439        ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
    345440        return 0;
    346441    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_local.h

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
    44 *
    5  * Licensed under the OpenSSL license (the "License").  You may not use
     5 * Licensed under the Apache License 2.0 (the "License").  You may not use
    66 * this file except in compliance with the License.  You can obtain a copy
    77 * in the file LICENSE in the source distribution or at
     
    1212# define OSSL_CRYPTO_ENGINE_ENG_LOCAL_H
    1313
     14# include <openssl/trace.h>
    1415# include "internal/cryptlib.h"
    1516# include "crypto/engine.h"
     
    2021
    2122/*
    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.
    2827 */
    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))
    4337
    4438/*
     
    6054
    6155/*
    62  * If this symbol is defined then engine_table_select(), the function that is
    63  * used by RSA, DSA (etc) code to select registered ENGINEs, cache defaults
    64  * and functional references (etc), will display debugging summaries to
    65  * stderr.
    66  */
    67 /* #define ENGINE_TABLE_DEBUG */
    68 
    69 /*
    7056 * This represents an implementation table. Dependent code should instantiate
    7157 * it as a (ENGINE_TABLE *) pointer value set initially to NULL.
     
    7763void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
    7864void 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
     65ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid,
     66                                 const char *f, int l);
    8667typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk,
    8768                                      ENGINE *def, void *arg);
     
    11899extern CRYPTO_ONCE engine_lock_init;
    119100DECLARE_RUN_ONCE(do_engine_lock_init)
     101
     102typedef void (*ENGINE_DYNAMIC_ID)(void);
     103int engine_add_dynamic_id(ENGINE *e, ENGINE_DYNAMIC_ID dynamic_id,
     104                          int not_locked);
     105void engine_remove_dynamic_id(ENGINE *e, int not_locked);
    120106
    121107/*
     
    163149    struct engine_st *prev;
    164150    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;
    165155};
    166156
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_openssl.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
    44 *
    5  * Licensed under the OpenSSL license (the "License").  You may not use
     5 * Licensed under the Apache License 2.0 (the "License").  You may not use
    66 * this file except in compliance with the License.  You can obtain a copy
    77 * in the file LICENSE in the source distribution or at
    88 * https://www.openssl.org/source/license.html
    99 */
     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"
    1019
    1120#include <stdio.h>
     
    9099        || !ENGINE_set_destroy_function(e, openssl_destroy)
    91100#ifndef TEST_ENG_OPENSSL_NO_ALGORITHMS
    92 # ifndef OPENSSL_NO_RSA
    93101        || !ENGINE_set_RSA(e, RSA_get_default_method())
    94 # endif
    95102# ifndef OPENSSL_NO_DSA
    96103        || !ENGINE_set_DSA(e, DSA_get_default_method())
     
    144151    if (!toadd)
    145152        return;
     153
     154    ERR_set_mark();
    146155    ENGINE_add(toadd);
    147156    /*
     
    150159     */
    151160    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();
    153167}
    154168
     
    168182
    169183IMPLEMENT_DYNAMIC_CHECK_FN()
    170 IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
     184    IMPLEMENT_DYNAMIC_BIND_FN(bind_fn)
    171185#endif                          /* ENGINE_DYNAMIC_SUPPORT */
    172186#ifdef TEST_ENG_OPENSSL_RC4
     
    192206                             const unsigned char *iv, int enc)
    193207{
     208    const int n = EVP_CIPHER_CTX_get_key_length(ctx);
     209
    194210# ifdef TEST_ENG_OPENSSL_RC4_P_INIT
    195211    fprintf(stderr, "(TEST_ENG_OPENSSL_RC4) test_init_key() called\n");
    196212# 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);
    200217    return 1;
    201218}
     
    269286        const EVP_CIPHER *cipher;
    270287        if ((cipher = test_r4_cipher()) != NULL)
    271             cipher_nids[pos++] = EVP_CIPHER_nid(cipher);
     288            cipher_nids[pos++] = EVP_CIPHER_get_nid(cipher);
    272289        if ((cipher = test_r4_40_cipher()) != NULL)
    273             cipher_nids[pos++] = EVP_CIPHER_nid(cipher);
     290            cipher_nids[pos++] = EVP_CIPHER_get_nid(cipher);
    274291        cipher_nids[pos] = 0;
    275292        init = 1;
     
    312329    fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_init() called\n");
    313330# endif
    314     return SHA1_Init(EVP_MD_CTX_md_data(ctx));
     331    return SHA1_Init(EVP_MD_CTX_get0_md_data(ctx));
    315332}
    316333
     
    320337    fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_update() called\n");
    321338# 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);
    323340}
    324341
     
    328345    fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_final() called\n");
    329346# endif
    330     return SHA1_Final(md, EVP_MD_CTX_md_data(ctx));
     347    return SHA1_Final(md, EVP_MD_CTX_get0_md_data(ctx));
    331348}
    332349
     
    367384        const EVP_MD *md;
    368385        if ((md = test_sha_md()) != NULL)
    369             digest_nids[pos++] = EVP_MD_type(md);
     386            digest_nids[pos++] = EVP_MD_get_type(md);
    370387        digest_nids[pos] = 0;
    371388        init = 1;
     
    435452
    436453    if ((hctx = OPENSSL_zalloc(sizeof(*hctx))) == NULL) {
    437         ENGINEerr(ENGINE_F_OSSL_HMAC_INIT, ERR_R_MALLOC_FAILURE);
     454        ERR_raise(ERR_LIB_ENGINE, ERR_R_MALLOC_FAILURE);
    438455        return 0;
    439456    }
     
    506523static int ossl_int_update(EVP_MD_CTX *ctx, const void *data, size_t count)
    507524{
    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));
    509526    if (!HMAC_Update(hctx->ctx, data, count))
    510527        return 0;
     
    524541    unsigned int hlen;
    525542    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);
    527544
    528545    if (l < 0)
     
    623640        0
    624641    };
    625     if (!pmeth) {
     642
     643    if (pmeth == NULL) {
    626644        *nids = ossl_pkey_nids;
    627645        return 1;
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_pkey.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    5760
    5861    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;
    6264    }
    63     CRYPTO_THREAD_write_lock(global_engine_lock);
     65    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     66        return NULL;
    6467    if (e->funct_ref == 0) {
    6568        CRYPTO_THREAD_unlock(global_engine_lock);
    66         ENGINEerr(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;
    6871    }
    6972    CRYPTO_THREAD_unlock(global_engine_lock);
    7073    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;
    7476    }
    7577    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;
    8081    }
    8182    return pkey;
     
    8889
    8990    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;
    9393    }
    94     CRYPTO_THREAD_write_lock(global_engine_lock);
     94    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     95        return NULL;
    9596    if (e->funct_ref == 0) {
    9697        CRYPTO_THREAD_unlock(global_engine_lock);
    97         ENGINEerr(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;
    99100    }
    100101    CRYPTO_THREAD_unlock(global_engine_lock);
    101102    if (!e->load_pubkey) {
    102         ENGINEerr(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;
    104105    }
    105106    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;
    110110    }
    111111    return pkey;
     
    119119
    120120    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);
    123122        return 0;
    124123    }
    125     CRYPTO_THREAD_write_lock(global_engine_lock);
     124    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     125        return 0;
    126126    if (e->funct_ref == 0) {
    127127        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);
    130129        return 0;
    131130    }
    132131    CRYPTO_THREAD_unlock(global_engine_lock);
    133132    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);
    136134        return 0;
    137135    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_rdrand.c

    r91772 r94082  
    11/*
    2  * Copyright 2011-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2011-2020 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include <openssl/opensslconf.h>
     
    1316#include <string.h>
    1417#include "crypto/engine.h"
     18#include "internal/cryptlib.h"
    1519#include <openssl/rand.h>
    1620#include <openssl/err.h>
     
    8084void engine_load_rdrand_int(void)
    8185{
    82     extern unsigned int OPENSSL_ia32cap_P[];
    83 
    8486    if (OPENSSL_ia32cap_P[1] & (1 << (62 - 32))) {
    8587        ENGINE *toadd = ENGINE_rdrand();
    8688        if (!toadd)
    8789            return;
     90        ERR_set_mark();
    8891        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        */
    8996        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();
    91103    }
    92104}
  • trunk/src/libs/openssl-3.0.1/crypto/engine/eng_table.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
     
    1111#include <openssl/evp.h>
    1212#include <openssl/lhash.h>
     13#include <openssl/trace.h>
    1314#include "eng_local.h"
    1415
     
    8687    int ret = 0, added = 0;
    8788    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;
    8992    if (!(*table))
    9093        added = 1;
     
    127130        if (setdefault) {
    128131            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);
    131133                goto end;
    132134            }
     
    162164void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e)
    163165{
    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;
    165169    if (int_table_check(table, 0))
    166170        lh_ENGINE_PILE_doall_ENGINE(&(*table)->piles, int_unregister_cb, e);
     
    170174static void int_cleanup_cb_doall(ENGINE_PILE *p)
    171175{
    172     if (!p)
     176    if (p == NULL)
    173177        return;
    174178    sk_ENGINE_free(p->sk);
     
    180184void engine_table_cleanup(ENGINE_TABLE **table)
    181185{
    182     CRYPTO_THREAD_write_lock(global_engine_lock);
     186    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     187        return;
    183188    if (*table) {
    184189        lh_ENGINE_PILE_doall(&(*table)->piles, int_cleanup_cb_doall);
     
    190195
    191196/* 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
     197ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid,
     198                                 const char *f, int l)
    198199{
    199200    ENGINE *ret = NULL;
     
    201202    int initres, loop = 0;
    202203
     204    /* Load the config before trying to check if engines are available */
     205    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
     206
    203207    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);
    208211        return NULL;
    209212    }
    210213    ERR_set_mark();
    211     CRYPTO_THREAD_write_lock(global_engine_lock);
     214    if (!CRYPTO_THREAD_write_lock(global_engine_lock))
     215        goto end;
    212216    /*
    213217     * 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
    215219     */
    216220    if (!int_table_check(table, 0))
     
    221225        goto end;
    222226    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);
    227230        ret = fnd->funct;
    228231        goto end;
     
    235238    ret = sk_ENGINE_value(fnd->sk, loop++);
    236239    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);
    241244        goto end;
    242245    }
     
    253256                engine_unlocked_finish(fnd->funct, 0);
    254257            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);
    259261        }
    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);
    264265        goto end;
    265266    }
     
    272273    if (fnd)
    273274        fnd->uptodate = 1;
    274 #ifdef ENGINE_TABLE_DEBUG
    275275    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);
    278279    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);
    282283    CRYPTO_THREAD_unlock(global_engine_lock);
    283284    /*
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_asnmth.c

    r91772 r94082  
    11/*
    2  * Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "e_os.h"
     
    7477ENGINE *ENGINE_get_pkey_asn1_meth_engine(int nid)
    7578{
    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);
    7781}
    7882
     
    8690    ENGINE_PKEY_ASN1_METHS_PTR fn = ENGINE_get_pkey_asn1_meths(e);
    8791    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);
    9093        return NULL;
    9194    }
     
    194197
    195198    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;
    201205    engine_table_doall(pkey_asn1_meth_table, look_str_cb, &fstr);
    202206    /* If found obtain a structural reference to engine */
    203207    if (fstr.e) {
    204208        fstr.e->struct_ref++;
    205         engine_ref_debug(fstr.e, 0, 1);
     209        ENGINE_REF_PRINT(fstr.e, 0, 1);
    206210    }
    207211    *pe = fstr.e;
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_cipher.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    6366ENGINE *ENGINE_get_cipher_engine(int nid)
    6467{
    65     return engine_table_select(&cipher_table, nid);
     68    return ossl_engine_table_select(&cipher_table, nid,
     69                                    OPENSSL_FILE, OPENSSL_LINE);
    6670}
    6771
     
    7276    ENGINE_CIPHERS_PTR fn = ENGINE_get_ciphers(e);
    7377    if (!fn || !fn(e, &ret, NULL, nid)) {
    74         ENGINEerr(ENGINE_F_ENGINE_GET_CIPHER, ENGINE_R_UNIMPLEMENTED_CIPHER);
     78        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_CIPHER);
    7579        return NULL;
    7680    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_dh.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    5659ENGINE *ENGINE_get_default_DH(void)
    5760{
    58     return engine_table_select(&dh_table, dummy_nid);
     61    return ossl_engine_table_select(&dh_table, dummy_nid,
     62                                    OPENSSL_FILE, OPENSSL_LINE);
    5963}
    6064
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_digest.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    6366ENGINE *ENGINE_get_digest_engine(int nid)
    6467{
    65     return engine_table_select(&digest_table, nid);
     68    return ossl_engine_table_select(&digest_table, nid,
     69                                    OPENSSL_FILE, OPENSSL_LINE);
    6670}
    6771
     
    7276    ENGINE_DIGESTS_PTR fn = ENGINE_get_digests(e);
    7377    if (!fn || !fn(e, &ret, NULL, nid)) {
    74         ENGINEerr(ENGINE_F_ENGINE_GET_DIGEST, ENGINE_R_UNIMPLEMENTED_DIGEST);
     78        ERR_raise(ERR_LIB_ENGINE, ENGINE_R_UNIMPLEMENTED_DIGEST);
    7579        return NULL;
    7680    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_dsa.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    5659ENGINE *ENGINE_get_default_DSA(void)
    5760{
    58     return engine_table_select(&dsa_table, dummy_nid);
     61    return ossl_engine_table_select(&dsa_table, dummy_nid,
     62                                    OPENSSL_FILE, OPENSSL_LINE);
    5963}
    6064
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_eckey.c

    r91772 r94082  
    11/*
    2  * Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    5659ENGINE *ENGINE_get_default_EC(void)
    5760{
    58     return engine_table_select(&dh_table, dummy_nid);
     61    return ossl_engine_table_select(&dh_table, dummy_nid,
     62                                    OPENSSL_FILE, OPENSSL_LINE);
    5963}
    6064
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_pkmeth.c

    r91772 r94082  
    11/*
    2  * Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some  deprecated APIs */
     11#include "internal/deprecated.h"
    912
    1013#include "eng_local.h"
     
    6467ENGINE *ENGINE_get_pkey_meth_engine(int nid)
    6568{
    66     return engine_table_select(&pkey_meth_table, nid);
     69    return ossl_engine_table_select(&pkey_meth_table, nid,
     70                                    OPENSSL_FILE, OPENSSL_LINE);
    6771}
    6872
     
    7377    ENGINE_PKEY_METHS_PTR fn = ENGINE_get_pkey_meths(e);
    7478    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);
    7780        return NULL;
    7881    }
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_rand.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    5659ENGINE *ENGINE_get_default_RAND(void)
    5760{
    58     return engine_table_select(&rand_table, dummy_nid);
     61    return ossl_engine_table_select(&rand_table, dummy_nid,
     62                                    OPENSSL_FILE, OPENSSL_LINE);
    5963}
    6064
  • trunk/src/libs/openssl-3.0.1/crypto/engine/tb_rsa.c

    r91772 r94082  
    11/*
    2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
    77 * https://www.openssl.org/source/license.html
    88 */
     9
     10/* We need to use some engine deprecated APIs */
     11#define OPENSSL_SUPPRESS_DEPRECATED
    912
    1013#include "eng_local.h"
     
    5659ENGINE *ENGINE_get_default_RSA(void)
    5760{
    58     return engine_table_select(&rsa_table, dummy_nid);
     61    return ossl_engine_table_select(&rsa_table, dummy_nid,
     62                                    OPENSSL_FILE, OPENSSL_LINE);
    5963}
    6064
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette