2016-05-18 02:52:22 +08:00
|
|
|
/*
|
2021-04-08 20:04:41 +08:00
|
|
|
* Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2001-08-18 18:22:54 +08:00
|
|
|
*
|
2018-12-06 20:39:00 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:52:22 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2001-08-18 18:22:54 +08:00
|
|
|
*/
|
|
|
|
|
2020-07-14 07:40:29 +08:00
|
|
|
/* We need to use some engine deprecated APIs */
|
|
|
|
#define OPENSSL_SUPPRESS_DEPRECATED
|
|
|
|
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "eng_local.h"
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
/* Basic get/set stuff */
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
int ENGINE_set_load_privkey_function(ENGINE *e,
|
|
|
|
ENGINE_LOAD_KEY_PTR loadpriv_f)
|
|
|
|
{
|
|
|
|
e->load_privkey = loadpriv_f;
|
|
|
|
return 1;
|
|
|
|
}
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
e->load_pubkey = loadpub_f;
|
|
|
|
return 1;
|
|
|
|
}
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2008-06-02 05:10:30 +08:00
|
|
|
int ENGINE_set_load_ssl_client_cert_function(ENGINE *e,
|
2015-01-22 11:40:55 +08:00
|
|
|
ENGINE_SSL_CLIENT_CERT_PTR
|
|
|
|
loadssl_f)
|
|
|
|
{
|
|
|
|
e->load_ssl_client_cert = loadssl_f;
|
|
|
|
return 1;
|
|
|
|
}
|
2008-06-02 05:10:30 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
return e->load_privkey;
|
|
|
|
}
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
return e->load_pubkey;
|
|
|
|
}
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
ENGINE_SSL_CLIENT_CERT_PTR ENGINE_get_ssl_client_cert_function(const ENGINE
|
|
|
|
*e)
|
|
|
|
{
|
|
|
|
return e->load_ssl_client_cert;
|
|
|
|
}
|
2008-06-02 05:10:30 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
/* API functions to load public/private keys */
|
2001-08-18 18:22:54 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id,
|
2015-01-22 11:40:55 +08:00
|
|
|
UI_METHOD *ui_method, void *callback_data)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey;
|
2001-08-18 21:53:01 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (e == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(global_engine_lock))
|
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (e->funct_ref == 0) {
|
2016-03-09 00:44:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(global_engine_lock);
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_INITIALISED);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2016-03-09 00:44:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(global_engine_lock);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (!e->load_privkey) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_LOAD_FUNCTION);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
pkey = e->load_privkey(e, key_id, ui_method, callback_data);
|
2019-09-17 03:28:57 +08:00
|
|
|
if (pkey == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FAILED_LOADING_PRIVATE_KEY);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
return pkey;
|
|
|
|
}
|
2001-08-18 21:53:01 +08:00
|
|
|
|
2001-09-26 04:00:51 +08:00
|
|
|
EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
|
2015-01-22 11:40:55 +08:00
|
|
|
UI_METHOD *ui_method, void *callback_data)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey;
|
2001-08-18 21:53:01 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (e == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(global_engine_lock))
|
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (e->funct_ref == 0) {
|
2016-03-09 00:44:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(global_engine_lock);
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_INITIALISED);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2016-03-09 00:44:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(global_engine_lock);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (!e->load_pubkey) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_LOAD_FUNCTION);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
pkey = e->load_pubkey(e, key_id, ui_method, callback_data);
|
2019-09-17 03:28:57 +08:00
|
|
|
if (pkey == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_FAILED_LOADING_PUBLIC_KEY);
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
return pkey;
|
|
|
|
}
|
2008-06-02 05:10:30 +08:00
|
|
|
|
|
|
|
int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s,
|
2015-01-22 11:40:55 +08:00
|
|
|
STACK_OF(X509_NAME) *ca_dn, X509 **pcert,
|
|
|
|
EVP_PKEY **ppkey, STACK_OF(X509) **pother,
|
|
|
|
UI_METHOD *ui_method, void *callback_data)
|
|
|
|
{
|
2008-06-02 05:10:30 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (e == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ERR_R_PASSED_NULL_PARAMETER);
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(global_engine_lock))
|
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (e->funct_ref == 0) {
|
2016-03-09 00:44:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(global_engine_lock);
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NOT_INITIALISED);
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2016-03-09 00:44:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(global_engine_lock);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (!e->load_ssl_client_cert) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ENGINE, ENGINE_R_NO_LOAD_FUNCTION);
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return e->load_ssl_client_cert(e, s, ca_dn, pcert, ppkey, pother,
|
|
|
|
ui_method, callback_data);
|
|
|
|
}
|