Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl34/providers/implementations/encode_decode/decode_pvk2key.c
Line
Count
Source
1
/*
2
 * Copyright 2020-2023 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
/*
11
 * low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <string.h>
17
18
#include <openssl/core_dispatch.h>
19
#include <openssl/core_names.h>
20
#include <openssl/core_object.h>
21
#include <openssl/crypto.h>
22
#include <openssl/params.h>
23
#include <openssl/err.h>
24
#include <openssl/pem.h> /* For public PVK functions */
25
#include <openssl/x509.h>
26
#include "internal/passphrase.h"
27
#include "internal/sizes.h"
28
#include "crypto/pem.h" /* For internal PVK and "blob" headers */
29
#include "crypto/rsa.h"
30
#include "prov/bio.h"
31
#include "prov/implementations.h"
32
#include "endecoder_local.h"
33
34
struct pvk2key_ctx_st; /* Forward declaration */
35
typedef int check_key_fn(void *, struct pvk2key_ctx_st *ctx);
36
typedef void adjust_key_fn(void *, struct pvk2key_ctx_st *ctx);
37
typedef void *b2i_PVK_of_bio_pw_fn(BIO *in, pem_password_cb *cb, void *u,
38
    OSSL_LIB_CTX *libctx, const char *propq);
39
typedef void free_key_fn(void *);
40
struct keytype_desc_st {
41
    int type; /* EVP key type */
42
    const char *name; /* Keytype */
43
    const OSSL_DISPATCH *fns; /* Keymgmt (to pilfer functions from) */
44
45
    b2i_PVK_of_bio_pw_fn *read_private_key;
46
    adjust_key_fn *adjust_key;
47
    free_key_fn *free_key;
48
};
49
50
static OSSL_FUNC_decoder_freectx_fn pvk2key_freectx;
51
static OSSL_FUNC_decoder_decode_fn pvk2key_decode;
52
static OSSL_FUNC_decoder_export_object_fn pvk2key_export_object;
53
static OSSL_FUNC_decoder_settable_ctx_params_fn pvk2key_settable_ctx_params;
54
static OSSL_FUNC_decoder_set_ctx_params_fn pvk2key_set_ctx_params;
55
56
/*
57
 * Context used for DER to key decoding.
58
 */
59
struct pvk2key_ctx_st {
60
    PROV_CTX *provctx;
61
    char propq[OSSL_MAX_PROPQUERY_SIZE];
62
    const struct keytype_desc_st *desc;
63
    /* The selection that is passed to der2key_decode() */
64
    int selection;
65
};
66
67
static struct pvk2key_ctx_st *
68
pvk2key_newctx(void *provctx, const struct keytype_desc_st *desc)
69
311k
{
70
311k
    struct pvk2key_ctx_st *ctx = OPENSSL_zalloc(sizeof(*ctx));
71
72
311k
    if (ctx != NULL) {
73
311k
        ctx->provctx = provctx;
74
311k
        ctx->desc = desc;
75
311k
    }
76
311k
    return ctx;
77
311k
}
78
79
static void pvk2key_freectx(void *vctx)
80
311k
{
81
311k
    struct pvk2key_ctx_st *ctx = vctx;
82
83
311k
    OPENSSL_free(ctx);
84
311k
}
85
86
static const OSSL_PARAM *pvk2key_settable_ctx_params(ossl_unused void *provctx)
87
0
{
88
0
    static const OSSL_PARAM settables[] = {
89
0
        OSSL_PARAM_utf8_string(OSSL_DECODER_PARAM_PROPERTIES, NULL, 0),
90
0
        OSSL_PARAM_END,
91
0
    };
92
0
    return settables;
93
0
}
94
95
static int pvk2key_set_ctx_params(void *vctx, const OSSL_PARAM params[])
96
0
{
97
0
    struct pvk2key_ctx_st *ctx = vctx;
98
0
    const OSSL_PARAM *p;
99
0
    char *str = ctx->propq;
100
101
0
    p = OSSL_PARAM_locate_const(params, OSSL_DECODER_PARAM_PROPERTIES);
102
0
    if (p != NULL && !OSSL_PARAM_get_utf8_string(p, &str, sizeof(ctx->propq)))
103
0
        return 0;
104
105
0
    return 1;
106
0
}
107
108
static int pvk2key_does_selection(void *provctx, int selection)
109
556k
{
110
556k
    if (selection == 0)
111
10
        return 1;
112
113
556k
    if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
114
90.5k
        return 1;
115
116
466k
    return 0;
117
556k
}
118
119
static int pvk2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection,
120
    OSSL_CALLBACK *data_cb, void *data_cbarg,
121
    OSSL_PASSPHRASE_CALLBACK *pw_cb, void *pw_cbarg)
122
43.6k
{
123
43.6k
    struct pvk2key_ctx_st *ctx = vctx;
124
43.6k
    BIO *in = ossl_bio_new_from_core_bio(ctx->provctx, cin);
125
43.6k
    void *key = NULL;
126
43.6k
    int ok = 0;
127
128
43.6k
    if (in == NULL)
129
0
        return 0;
130
131
43.6k
    ctx->selection = selection;
132
133
43.6k
    if ((selection == 0
134
0
            || (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
135
43.6k
        && ctx->desc->read_private_key != NULL) {
136
43.6k
        struct ossl_passphrase_data_st pwdata;
137
43.6k
        int err, lib, reason;
138
139
43.6k
        memset(&pwdata, 0, sizeof(pwdata));
140
43.6k
        if (!ossl_pw_set_ossl_passphrase_cb(&pwdata, pw_cb, pw_cbarg))
141
0
            goto end;
142
143
43.6k
        key = ctx->desc->read_private_key(in, ossl_pw_pvk_password, &pwdata,
144
43.6k
            PROV_LIBCTX_OF(ctx->provctx),
145
43.6k
            ctx->propq);
146
147
        /*
148
         * Because the PVK API doesn't have a separate decrypt call, we need
149
         * to check the error queue for certain well known errors that are
150
         * considered fatal and which we pass through, while the rest gets
151
         * thrown away.
152
         */
153
43.6k
        err = ERR_peek_last_error();
154
43.6k
        lib = ERR_GET_LIB(err);
155
43.6k
        reason = ERR_GET_REASON(err);
156
43.6k
        if (lib == ERR_LIB_PEM
157
43.3k
            && (reason == PEM_R_BAD_PASSWORD_READ
158
43.2k
                || reason == PEM_R_BAD_DECRYPT)) {
159
21
            ERR_clear_last_mark();
160
21
            goto end;
161
21
        }
162
163
43.6k
        if (selection != 0 && key == NULL)
164
0
            goto next;
165
43.6k
    }
166
167
43.6k
    if (key != NULL && ctx->desc->adjust_key != NULL)
168
12
        ctx->desc->adjust_key(key, ctx);
169
170
43.6k
next:
171
    /*
172
     * Indicated that we successfully decoded something, or not at all.
173
     * Ending up "empty handed" is not an error.
174
     */
175
43.6k
    ok = 1;
176
177
    /*
178
     * We free resources here so it's not held up during the callback, because
179
     * we know the process is recursive and the allocated chunks of memory
180
     * add up.
181
     */
182
43.6k
    BIO_free(in);
183
43.6k
    in = NULL;
184
185
43.6k
    if (key != NULL) {
186
16
        OSSL_PARAM params[4];
187
16
        int object_type = OSSL_OBJECT_PKEY;
188
189
16
        params[0] = OSSL_PARAM_construct_int(OSSL_OBJECT_PARAM_TYPE, &object_type);
190
16
        params[1] = OSSL_PARAM_construct_utf8_string(OSSL_OBJECT_PARAM_DATA_TYPE,
191
16
            (char *)ctx->desc->name, 0);
192
        /* The address of the key becomes the octet string */
193
16
        params[2] = OSSL_PARAM_construct_octet_string(OSSL_OBJECT_PARAM_REFERENCE,
194
16
            &key, sizeof(key));
195
16
        params[3] = OSSL_PARAM_construct_end();
196
197
16
        ok = data_cb(params, data_cbarg);
198
16
    }
199
200
43.6k
end:
201
43.6k
    BIO_free(in);
202
43.6k
    ctx->desc->free_key(key);
203
204
43.6k
    return ok;
205
43.6k
}
206
207
static int pvk2key_export_object(void *vctx,
208
    const void *reference, size_t reference_sz,
209
    OSSL_CALLBACK *export_cb, void *export_cbarg)
210
0
{
211
0
    struct pvk2key_ctx_st *ctx = vctx;
212
0
    OSSL_FUNC_keymgmt_export_fn *export = ossl_prov_get_keymgmt_export(ctx->desc->fns);
213
0
    void *keydata;
214
215
0
    if (reference_sz == sizeof(keydata) && export != NULL) {
216
0
        int selection = ctx->selection;
217
218
0
        if (selection == 0)
219
0
            selection = OSSL_KEYMGMT_SELECT_ALL;
220
        /* The contents of the reference is the address to our object */
221
0
        keydata = *(void **)reference;
222
223
0
        return export(keydata, selection, export_cb, export_cbarg);
224
0
    }
225
0
    return 0;
226
0
}
227
228
/* ---------------------------------------------------------------------- */
229
230
#define dsa_private_key_bio (b2i_PVK_of_bio_pw_fn *)b2i_DSA_PVK_bio_ex
231
#define dsa_adjust NULL
232
#define dsa_free (void (*)(void *)) DSA_free
233
234
/* ---------------------------------------------------------------------- */
235
236
#define rsa_private_key_bio (b2i_PVK_of_bio_pw_fn *)b2i_RSA_PVK_bio_ex
237
238
static void rsa_adjust(void *key, struct pvk2key_ctx_st *ctx)
239
12
{
240
12
    ossl_rsa_set0_libctx(key, PROV_LIBCTX_OF(ctx->provctx));
241
12
}
242
243
#define rsa_free (void (*)(void *)) RSA_free
244
245
/* ---------------------------------------------------------------------- */
246
247
#define IMPLEMENT_MS(KEYTYPE, keytype)                           \
248
    static const struct keytype_desc_st                          \
249
        pvk2##keytype##_desc                                     \
250
        = {                                                      \
251
              EVP_PKEY_##KEYTYPE, #KEYTYPE,                      \
252
              ossl_##keytype##_keymgmt_functions,                \
253
              keytype##_private_key_bio,                         \
254
              keytype##_adjust,                                  \
255
              keytype##_free                                     \
256
          };                                                     \
257
    static OSSL_FUNC_decoder_newctx_fn pvk2##keytype##_newctx;   \
258
    static void *pvk2##keytype##_newctx(void *provctx)           \
259
311k
    {                                                            \
260
311k
        return pvk2key_newctx(provctx, &pvk2##keytype##_desc);   \
261
311k
    }                                                            \
decode_pvk2key.c:pvk2dsa_newctx
Line
Count
Source
259
156k
    {                                                            \
260
156k
        return pvk2key_newctx(provctx, &pvk2##keytype##_desc);   \
261
156k
    }                                                            \
decode_pvk2key.c:pvk2rsa_newctx
Line
Count
Source
259
155k
    {                                                            \
260
155k
        return pvk2key_newctx(provctx, &pvk2##keytype##_desc);   \
261
155k
    }                                                            \
262
    const OSSL_DISPATCH                                          \
263
        ossl_##pvk_to_##keytype##_decoder_functions[]            \
264
        = {                                                      \
265
              { OSSL_FUNC_DECODER_NEWCTX,                        \
266
                  (void (*)(void))pvk2##keytype##_newctx },      \
267
              { OSSL_FUNC_DECODER_FREECTX,                       \
268
                  (void (*)(void))pvk2key_freectx },             \
269
              { OSSL_FUNC_DECODER_DOES_SELECTION,                \
270
                  (void (*)(void))pvk2key_does_selection },      \
271
              { OSSL_FUNC_DECODER_DECODE,                        \
272
                  (void (*)(void))pvk2key_decode },              \
273
              { OSSL_FUNC_DECODER_EXPORT_OBJECT,                 \
274
                  (void (*)(void))pvk2key_export_object },       \
275
              { OSSL_FUNC_DECODER_SETTABLE_CTX_PARAMS,           \
276
                  (void (*)(void))pvk2key_settable_ctx_params }, \
277
              { OSSL_FUNC_DECODER_SET_CTX_PARAMS,                \
278
                  (void (*)(void))pvk2key_set_ctx_params },      \
279
              OSSL_DISPATCH_END                                  \
280
          }
281
282
#ifndef OPENSSL_NO_DSA
283
IMPLEMENT_MS(DSA, dsa);
284
#endif
285
IMPLEMENT_MS(RSA, rsa);