2016-05-18 02:51:34 +08:00
|
|
|
/*
|
2021-02-22 11:03:21 +08:00
|
|
|
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:52:47 +08:00
|
|
|
*
|
2018-12-06 20:17:34 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:34 +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
|
1998-12-21 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
2020-07-14 07:40:29 +08:00
|
|
|
/* We need to use some engine deprecated APIs */
|
|
|
|
#define OPENSSL_SUPPRESS_DEPRECATED
|
|
|
|
|
1998-12-21 18:52:47 +08:00
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/objects.h>
|
2020-12-02 15:52:24 +08:00
|
|
|
#include <openssl/decoder.h>
|
2016-03-19 02:30:20 +08:00
|
|
|
#include <openssl/engine.h>
|
2007-11-20 21:37:51 +08:00
|
|
|
#include <openssl/x509.h>
|
1999-07-24 11:09:01 +08:00
|
|
|
#include <openssl/asn1.h>
|
2019-09-28 06:45:33 +08:00
|
|
|
#include "crypto/asn1.h"
|
|
|
|
#include "crypto/evp.h"
|
2020-12-02 15:52:24 +08:00
|
|
|
#include "internal/asn1.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2021-02-22 11:03:21 +08:00
|
|
|
static EVP_PKEY *
|
|
|
|
d2i_PrivateKey_decoder(int keytype, EVP_PKEY **a, const unsigned char **pp,
|
|
|
|
long length, OSSL_LIB_CTX *libctx, const char *propq)
|
2020-12-02 15:52:24 +08:00
|
|
|
{
|
|
|
|
OSSL_DECODER_CTX *dctx = NULL;
|
|
|
|
size_t len = length;
|
2021-03-22 21:16:56 +08:00
|
|
|
EVP_PKEY *pkey = NULL, *bak_a = NULL;
|
2020-12-02 15:52:24 +08:00
|
|
|
EVP_PKEY **ppkey = &pkey;
|
|
|
|
const char *key_name = NULL;
|
|
|
|
const char *input_structures[] = { "type-specific", "pkcs8", NULL };
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
if (keytype != EVP_PKEY_NONE) {
|
|
|
|
key_name = evp_pkey_type2name(keytype);
|
|
|
|
if (key_name == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < (int)OSSL_NELEM(input_structures); ++i) {
|
2021-02-22 11:03:21 +08:00
|
|
|
const unsigned char *p = *pp;
|
|
|
|
|
2021-03-22 21:16:56 +08:00
|
|
|
if (a != NULL && (bak_a = *a) != NULL)
|
|
|
|
ppkey = a;
|
2021-02-19 17:43:16 +08:00
|
|
|
dctx = OSSL_DECODER_CTX_new_for_pkey(ppkey, "DER",
|
|
|
|
input_structures[i], key_name,
|
|
|
|
EVP_PKEY_KEYPAIR, libctx, propq);
|
2021-03-22 21:16:56 +08:00
|
|
|
if (a != NULL)
|
|
|
|
*a = bak_a;
|
2020-12-02 15:52:24 +08:00
|
|
|
if (dctx == NULL)
|
2021-03-25 23:20:48 +08:00
|
|
|
continue;
|
2020-12-02 15:52:24 +08:00
|
|
|
|
|
|
|
ret = OSSL_DECODER_from_data(dctx, pp, &len);
|
|
|
|
OSSL_DECODER_CTX_free(dctx);
|
|
|
|
if (ret) {
|
|
|
|
if (*ppkey != NULL
|
2021-03-22 21:16:56 +08:00
|
|
|
&& evp_keymgmt_util_has(*ppkey, OSSL_KEYMGMT_SELECT_PRIVATE_KEY)) {
|
|
|
|
if (a != NULL)
|
|
|
|
*a = *ppkey;
|
2020-12-02 15:52:24 +08:00
|
|
|
return *ppkey;
|
2021-03-22 21:16:56 +08:00
|
|
|
}
|
2021-02-22 11:03:21 +08:00
|
|
|
*pp = p;
|
2020-12-02 15:52:24 +08:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Fall through to error if all decodes failed */
|
|
|
|
err:
|
|
|
|
if (ppkey != a)
|
|
|
|
EVP_PKEY_free(*ppkey);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:13:47 +08:00
|
|
|
static EVP_PKEY *
|
|
|
|
d2i_PrivateKey_legacy(int keytype, EVP_PKEY **a, const unsigned char **pp,
|
|
|
|
long length, OSSL_LIB_CTX *libctx, const char *propq)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
EVP_PKEY *ret;
|
2015-08-17 22:02:18 +08:00
|
|
|
const unsigned char *p = *pp;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2021-03-22 21:16:56 +08:00
|
|
|
if (a == NULL || *a == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
if ((ret = EVP_PKEY_new()) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB);
|
2017-10-17 22:04:09 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = *a;
|
2006-06-05 20:38:22 +08:00
|
|
|
#ifndef OPENSSL_NO_ENGINE
|
2016-02-26 01:09:06 +08:00
|
|
|
ENGINE_finish(ret->engine);
|
|
|
|
ret->engine = NULL;
|
2006-06-05 20:38:22 +08:00
|
|
|
#endif
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2006-06-05 19:52:46 +08:00
|
|
|
|
2020-12-02 15:52:24 +08:00
|
|
|
if (!EVP_PKEY_set_type(ret, keytype)) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2006-06-05 19:52:46 +08:00
|
|
|
|
2020-10-05 14:14:29 +08:00
|
|
|
ERR_set_mark();
|
2015-01-22 11:40:55 +08:00
|
|
|
if (!ret->ameth->old_priv_decode ||
|
2015-08-17 22:02:18 +08:00
|
|
|
!ret->ameth->old_priv_decode(ret, &p, length)) {
|
2020-04-07 01:18:18 +08:00
|
|
|
if (ret->ameth->priv_decode != NULL
|
2020-09-24 17:42:23 +08:00
|
|
|
|| ret->ameth->priv_decode_ex != NULL) {
|
2016-05-03 22:05:31 +08:00
|
|
|
EVP_PKEY *tmp;
|
2015-01-22 11:40:55 +08:00
|
|
|
PKCS8_PRIV_KEY_INFO *p8 = NULL;
|
2015-08-17 22:02:18 +08:00
|
|
|
p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
|
2020-10-05 14:14:29 +08:00
|
|
|
if (p8 == NULL) {
|
|
|
|
ERR_clear_last_mark();
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2020-10-05 14:14:29 +08:00
|
|
|
}
|
2021-03-23 23:40:53 +08:00
|
|
|
tmp = evp_pkcs82pkey_legacy(p8, libctx, propq);
|
2015-01-22 11:40:55 +08:00
|
|
|
PKCS8_PRIV_KEY_INFO_free(p8);
|
2020-10-05 14:14:29 +08:00
|
|
|
if (tmp == NULL) {
|
|
|
|
ERR_clear_last_mark();
|
2015-09-30 01:59:48 +08:00
|
|
|
goto err;
|
2020-10-05 14:14:29 +08:00
|
|
|
}
|
2016-05-03 22:05:31 +08:00
|
|
|
EVP_PKEY_free(ret);
|
|
|
|
ret = tmp;
|
2020-10-05 14:14:29 +08:00
|
|
|
ERR_pop_to_mark();
|
2020-12-02 15:52:24 +08:00
|
|
|
if (EVP_PKEY_type(keytype) != EVP_PKEY_base_id(ret))
|
2020-05-11 15:14:11 +08:00
|
|
|
goto err;
|
2015-01-22 11:40:55 +08:00
|
|
|
} else {
|
2020-10-05 14:14:29 +08:00
|
|
|
ERR_clear_last_mark();
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB);
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2020-10-05 14:14:29 +08:00
|
|
|
} else {
|
|
|
|
ERR_clear_last_mark();
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2015-08-17 22:02:18 +08:00
|
|
|
*pp = p;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (a != NULL)
|
2021-03-22 21:16:56 +08:00
|
|
|
*a = ret;
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
err:
|
2015-03-28 22:54:15 +08:00
|
|
|
if (a == NULL || *a != ret)
|
2015-01-22 11:40:55 +08:00
|
|
|
EVP_PKEY_free(ret);
|
2017-10-17 22:04:09 +08:00
|
|
|
return NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2021-02-22 11:03:21 +08:00
|
|
|
EVP_PKEY *d2i_PrivateKey_ex(int keytype, EVP_PKEY **a, const unsigned char **pp,
|
|
|
|
long length, OSSL_LIB_CTX *libctx,
|
|
|
|
const char *propq)
|
|
|
|
{
|
|
|
|
EVP_PKEY *ret;
|
|
|
|
|
|
|
|
ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq);
|
|
|
|
/* try the legacy path if the decoder failed */
|
|
|
|
if (ret == NULL)
|
2021-03-18 20:13:47 +08:00
|
|
|
ret = d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq);
|
2021-02-22 11:03:21 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-04-07 01:18:18 +08:00
|
|
|
EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
|
|
|
|
long length)
|
|
|
|
{
|
|
|
|
return d2i_PrivateKey_ex(type, a, pp, length, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2021-02-22 11:03:21 +08:00
|
|
|
static EVP_PKEY *d2i_AutoPrivateKey_legacy(EVP_PKEY **a,
|
|
|
|
const unsigned char **pp,
|
|
|
|
long length,
|
|
|
|
OSSL_LIB_CTX *libctx,
|
|
|
|
const char *propq)
|
|
|
|
{
|
|
|
|
STACK_OF(ASN1_TYPE) *inkey;
|
|
|
|
const unsigned char *p;
|
|
|
|
int keytype;
|
|
|
|
|
|
|
|
p = *pp;
|
|
|
|
/*
|
|
|
|
* Dirty trick: read in the ASN1 data into a STACK_OF(ASN1_TYPE): by
|
|
|
|
* analyzing it we can determine the passed structure: this assumes the
|
|
|
|
* input is surrounded by an ASN1 SEQUENCE.
|
|
|
|
*/
|
|
|
|
inkey = d2i_ASN1_SEQUENCE_ANY(NULL, &p, length);
|
|
|
|
p = *pp;
|
|
|
|
/*
|
|
|
|
* Since we only need to discern "traditional format" RSA and DSA keys we
|
|
|
|
* can just count the elements.
|
|
|
|
*/
|
|
|
|
if (sk_ASN1_TYPE_num(inkey) == 6) {
|
|
|
|
keytype = EVP_PKEY_DSA;
|
|
|
|
} else if (sk_ASN1_TYPE_num(inkey) == 4) {
|
|
|
|
keytype = EVP_PKEY_EC;
|
|
|
|
} else if (sk_ASN1_TYPE_num(inkey) == 3) { /* This seems to be PKCS8, not
|
|
|
|
* traditional format */
|
|
|
|
PKCS8_PRIV_KEY_INFO *p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
|
|
|
|
EVP_PKEY *ret;
|
|
|
|
|
|
|
|
sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
|
|
|
|
if (p8 == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_ASN1, ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE);
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-03-23 23:40:53 +08:00
|
|
|
ret = evp_pkcs82pkey_legacy(p8, libctx, propq);
|
2021-02-22 11:03:21 +08:00
|
|
|
PKCS8_PRIV_KEY_INFO_free(p8);
|
|
|
|
if (ret == NULL)
|
|
|
|
return NULL;
|
|
|
|
*pp = p;
|
2021-03-22 21:16:56 +08:00
|
|
|
if (a != NULL) {
|
2021-02-22 11:03:21 +08:00
|
|
|
*a = ret;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
} else {
|
|
|
|
keytype = EVP_PKEY_RSA;
|
|
|
|
}
|
|
|
|
sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
|
2021-03-18 20:13:47 +08:00
|
|
|
return d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq);
|
2021-02-22 11:03:21 +08:00
|
|
|
}
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2020-12-02 15:52:24 +08:00
|
|
|
* This works like d2i_PrivateKey() except it passes the keytype as
|
|
|
|
* EVP_PKEY_NONE, which then figures out the type during decoding.
|
2015-01-22 11:40:55 +08:00
|
|
|
*/
|
2020-04-07 01:18:18 +08:00
|
|
|
EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp,
|
2020-10-15 17:55:50 +08:00
|
|
|
long length, OSSL_LIB_CTX *libctx,
|
2020-04-07 01:18:18 +08:00
|
|
|
const char *propq)
|
2000-01-02 00:42:49 +08:00
|
|
|
{
|
2021-02-22 11:03:21 +08:00
|
|
|
EVP_PKEY *ret;
|
|
|
|
|
|
|
|
ret = d2i_PrivateKey_decoder(EVP_PKEY_NONE, a, pp, length, libctx, propq);
|
|
|
|
/* try the legacy path if the decoder failed */
|
|
|
|
if (ret == NULL)
|
|
|
|
ret = d2i_AutoPrivateKey_legacy(a, pp, length, libctx, propq);
|
|
|
|
return ret;
|
2020-04-07 01:18:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
|
|
|
|
long length)
|
|
|
|
{
|
|
|
|
return d2i_AutoPrivateKey_ex(a, pp, length, NULL, NULL);
|
2000-01-02 00:42:49 +08:00
|
|
|
}
|