Coverage Report

Created: 2023-06-08 06:40

/src/openssl30/crypto/asn1/d2i_pr.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
/* We need to use some engine deprecated APIs */
11
#define OPENSSL_SUPPRESS_DEPRECATED
12
13
#include <stdio.h>
14
#include "internal/cryptlib.h"
15
#include <openssl/bn.h>
16
#include <openssl/evp.h>
17
#include <openssl/objects.h>
18
#include <openssl/decoder.h>
19
#include <openssl/engine.h>
20
#include <openssl/x509.h>
21
#include <openssl/asn1.h>
22
#include "crypto/asn1.h"
23
#include "crypto/evp.h"
24
#include "internal/asn1.h"
25
26
static EVP_PKEY *
27
d2i_PrivateKey_decoder(int keytype, EVP_PKEY **a, const unsigned char **pp,
28
                       long length, OSSL_LIB_CTX *libctx, const char *propq)
29
0
{
30
0
    OSSL_DECODER_CTX *dctx = NULL;
31
0
    size_t len = length;
32
0
    EVP_PKEY *pkey = NULL, *bak_a = NULL;
33
0
    EVP_PKEY **ppkey = &pkey;
34
0
    const char *key_name = NULL;
35
0
    const char *input_structures[] = { "type-specific", "PrivateKeyInfo", NULL };
36
0
    int i, ret;
37
38
0
    if (keytype != EVP_PKEY_NONE) {
39
0
        key_name = evp_pkey_type2name(keytype);
40
0
        if (key_name == NULL)
41
0
            return NULL;
42
0
    }
43
44
0
    for (i = 0;  i < (int)OSSL_NELEM(input_structures); ++i) {
45
0
        const unsigned char *p = *pp;
46
47
0
        if (a != NULL && (bak_a = *a) != NULL)
48
0
            ppkey = a;
49
0
        dctx = OSSL_DECODER_CTX_new_for_pkey(ppkey, "DER",
50
0
                                             input_structures[i], key_name,
51
0
                                             EVP_PKEY_KEYPAIR, libctx, propq);
52
0
        if (a != NULL)
53
0
            *a = bak_a;
54
0
        if (dctx == NULL)
55
0
            continue;
56
57
0
        ret = OSSL_DECODER_from_data(dctx, pp, &len);
58
0
        OSSL_DECODER_CTX_free(dctx);
59
0
        if (ret) {
60
0
            if (*ppkey != NULL
61
0
                && evp_keymgmt_util_has(*ppkey, OSSL_KEYMGMT_SELECT_PRIVATE_KEY)) {
62
0
                if (a != NULL)
63
0
                    *a = *ppkey;
64
0
                return *ppkey;
65
0
            }
66
0
            *pp = p;
67
0
            goto err;
68
0
        }
69
0
    }
70
    /* Fall through to error if all decodes failed */
71
0
err:
72
0
    if (ppkey != a)
73
0
        EVP_PKEY_free(*ppkey);
74
0
    return NULL;
75
0
}
76
77
EVP_PKEY *
78
ossl_d2i_PrivateKey_legacy(int keytype, EVP_PKEY **a, const unsigned char **pp,
79
                           long length, OSSL_LIB_CTX *libctx, const char *propq)
80
0
{
81
0
    EVP_PKEY *ret;
82
0
    const unsigned char *p = *pp;
83
84
0
    if (a == NULL || *a == NULL) {
85
0
        if ((ret = EVP_PKEY_new()) == NULL) {
86
0
            ERR_raise(ERR_LIB_ASN1, ERR_R_EVP_LIB);
87
0
            return NULL;
88
0
        }
89
0
    } else {
90
0
        ret = *a;
91
0
#ifndef OPENSSL_NO_ENGINE
92
0
        ENGINE_finish(ret->engine);
93
0
        ret->engine = NULL;
94
0
#endif
95
0
    }
96
97
0
    if (!EVP_PKEY_set_type(ret, keytype)) {
98
0
        ERR_raise(ERR_LIB_ASN1, ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE);
99
0
        goto err;
100
0
    }
101
102
0
    ERR_set_mark();
103
0
    if (!ret->ameth->old_priv_decode ||
104
0
        !ret->ameth->old_priv_decode(ret, &p, length)) {
105
0
        if (ret->ameth->priv_decode != NULL
106
0
                || ret->ameth->priv_decode_ex != NULL) {
107
0
            EVP_PKEY *tmp;
108
0
            PKCS8_PRIV_KEY_INFO *p8 = NULL;
109
0
            p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
110
0
            if (p8 == NULL) {
111
0
                ERR_clear_last_mark();
112
0
                goto err;
113
0
            }
114
0
            tmp = evp_pkcs82pkey_legacy(p8, libctx, propq);
115
0
            PKCS8_PRIV_KEY_INFO_free(p8);
116
0
            if (tmp == NULL) {
117
0
                ERR_clear_last_mark();
118
0
                goto err;
119
0
            }
120
0
            EVP_PKEY_free(ret);
121
0
            ret = tmp;
122
0
            ERR_pop_to_mark();
123
0
            if (EVP_PKEY_type(keytype) != EVP_PKEY_get_base_id(ret))
124
0
                goto err;
125
0
        } else {
126
0
            ERR_clear_last_mark();
127
0
            ERR_raise(ERR_LIB_ASN1, ERR_R_ASN1_LIB);
128
0
            goto err;
129
0
        }
130
0
    } else {
131
0
      ERR_clear_last_mark();
132
0
    }
133
0
    *pp = p;
134
0
    if (a != NULL)
135
0
        *a = ret;
136
0
    return ret;
137
0
 err:
138
0
    if (a == NULL || *a != ret)
139
0
        EVP_PKEY_free(ret);
140
0
    return NULL;
141
0
}
142
143
EVP_PKEY *d2i_PrivateKey_ex(int keytype, EVP_PKEY **a, const unsigned char **pp,
144
                            long length, OSSL_LIB_CTX *libctx,
145
                            const char *propq)
146
0
{
147
0
    EVP_PKEY *ret;
148
149
0
    ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq);
150
    /* try the legacy path if the decoder failed */
151
0
    if (ret == NULL)
152
0
        ret = ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq);
153
0
    return ret;
154
0
}
155
156
EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
157
                         long length)
158
0
{
159
0
    return d2i_PrivateKey_ex(type, a, pp, length, NULL, NULL);
160
0
}
161
162
static EVP_PKEY *d2i_AutoPrivateKey_legacy(EVP_PKEY **a,
163
                                           const unsigned char **pp,
164
                                           long length,
165
                                           OSSL_LIB_CTX *libctx,
166
                                           const char *propq)
167
0
{
168
0
    STACK_OF(ASN1_TYPE) *inkey;
169
0
    const unsigned char *p;
170
0
    int keytype;
171
172
0
    p = *pp;
173
    /*
174
     * Dirty trick: read in the ASN1 data into a STACK_OF(ASN1_TYPE): by
175
     * analyzing it we can determine the passed structure: this assumes the
176
     * input is surrounded by an ASN1 SEQUENCE.
177
     */
178
0
    inkey = d2i_ASN1_SEQUENCE_ANY(NULL, &p, length);
179
0
    p = *pp;
180
    /*
181
     * Since we only need to discern "traditional format" RSA and DSA keys we
182
     * can just count the elements.
183
     */
184
0
    if (sk_ASN1_TYPE_num(inkey) == 6) {
185
0
        keytype = EVP_PKEY_DSA;
186
0
    } else if (sk_ASN1_TYPE_num(inkey) == 4) {
187
0
        keytype = EVP_PKEY_EC;
188
0
    } else if (sk_ASN1_TYPE_num(inkey) == 3) { /* This seems to be PKCS8, not
189
                                              * traditional format */
190
0
        PKCS8_PRIV_KEY_INFO *p8 = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, length);
191
0
        EVP_PKEY *ret;
192
193
0
        sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
194
0
        if (p8 == NULL) {
195
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_UNSUPPORTED_PUBLIC_KEY_TYPE);
196
0
            return NULL;
197
0
        }
198
0
        ret = evp_pkcs82pkey_legacy(p8, libctx, propq);
199
0
        PKCS8_PRIV_KEY_INFO_free(p8);
200
0
        if (ret == NULL)
201
0
            return NULL;
202
0
        *pp = p;
203
0
        if (a != NULL) {
204
0
            *a = ret;
205
0
        }
206
0
        return ret;
207
0
    } else {
208
0
        keytype = EVP_PKEY_RSA;
209
0
    }
210
0
    sk_ASN1_TYPE_pop_free(inkey, ASN1_TYPE_free);
211
0
    return ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq);
212
0
}
213
214
/*
215
 * This works like d2i_PrivateKey() except it passes the keytype as
216
 * EVP_PKEY_NONE, which then figures out the type during decoding.
217
 */
218
EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp,
219
                                long length, OSSL_LIB_CTX *libctx,
220
                                const char *propq)
221
0
{
222
0
    EVP_PKEY *ret;
223
224
0
    ret = d2i_PrivateKey_decoder(EVP_PKEY_NONE, a, pp, length, libctx, propq);
225
    /* try the legacy path if the decoder failed */
226
0
    if (ret == NULL)
227
0
        ret = d2i_AutoPrivateKey_legacy(a, pp, length, libctx, propq);
228
0
    return ret;
229
0
}
230
231
EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
232
                             long length)
233
0
{
234
0
    return d2i_AutoPrivateKey_ex(a, pp, length, NULL, NULL);
235
0
}