Rename OPENSSL_CTX prefix to OSSL_LIB_CTX
[openssl.git] / crypto / store / store_result.c
1 /*
2  * Copyright 2020 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 #include "e_os.h"
11 #include <string.h>
12
13 #include <openssl/core.h>
14 #include <openssl/core_names.h>
15 #include <openssl/core_object.h>
16 #include <openssl/err.h>
17 #include <openssl/pkcs12.h>
18 #include <openssl/provider.h>
19 #include <openssl/decoder.h>
20 #include <openssl/store.h>
21 #include "internal/provider.h"
22 #include "internal/passphrase.h"
23 #include "crypto/evp.h"
24 #include "crypto/x509.h"
25 #include "store_local.h"
26
27 #ifndef OSSL_OBJECT_PKCS12
28 /*
29  * The object abstraction doesn't know PKCS#12, but we want to indicate
30  * it anyway, so we create our own.  Since the public macros use positive
31  * numbers, negative ones should be fine.  They must never slip out from
32  * this translation unit anyway.
33  */
34 # define OSSL_OBJECT_PKCS12 -1
35 #endif
36
37 /*
38  * ossl_store_handle_load_result() is initially written to be a companion
39  * to our 'file:' scheme provider implementation, but has been made generic
40  * to serve others as well.
41  *
42  * This result handler takes any object abstraction (see provider-object(7))
43  * and does the best it can with it.  If the object is passed by value (not
44  * by reference), the contents are currently expected to be DER encoded.
45  * If an object type is specified, that will be respected; otherwise, this
46  * handler will guess the contents, by trying the following in order:
47  *
48  * 1.  Decode it into an EVP_PKEY, using OSSL_DECODER.
49  * 2.  Decode it into an X.509 certificate, using d2i_X509 / d2i_X509_AUX.
50  * 3.  Decode it into an X.509 CRL, using d2i_X509_CRL.
51  * 4.  Decode it into a PKCS#12 structure, using d2i_PKCS12 (*).
52  *
53  * For the 'file:' scheme implementation, this is division of labor.  Since
54  * the libcrypto <-> provider interface currently doesn't support certain
55  * structures as first class objects, they must be unpacked from DER here
56  * rather than in the provider.  The current exception is asymmetric keys,
57  * which can reside within the provider boundary, most of all thanks to
58  * OSSL_FUNC_keymgmt_load(), which allows loading the key material by
59  * reference.
60  */
61
62 struct extracted_param_data_st {
63     int object_type;
64     const char *data_type;
65     const char *utf8_data;
66     const void *octet_data;
67     size_t octet_data_size;
68     const void *ref;
69     size_t ref_size;
70     const char *desc;
71 };
72
73 static int try_name(struct extracted_param_data_st *, OSSL_STORE_INFO **);
74 static int try_key(struct extracted_param_data_st *, OSSL_STORE_INFO **,
75                    OSSL_STORE_CTX *, const OSSL_PROVIDER *,
76                    OSSL_LIB_CTX *, const char *);
77 static int try_cert(struct extracted_param_data_st *, OSSL_STORE_INFO **,
78                     OSSL_LIB_CTX *, const char *);
79 static int try_crl(struct extracted_param_data_st *, OSSL_STORE_INFO **,
80                    OSSL_LIB_CTX *, const char *);
81 static int try_pkcs12(struct extracted_param_data_st *, OSSL_STORE_INFO **,
82                       OSSL_STORE_CTX *, OSSL_LIB_CTX *, const char *);
83
84 #define SET_ERR_MARK() ERR_set_mark()
85 #define CLEAR_ERR_MARK()                                                \
86     do {                                                                \
87         int err = ERR_peek_last_error();                                \
88                                                                         \
89         if (ERR_GET_LIB(err) == ERR_LIB_ASN1                            \
90             && (ERR_GET_REASON(err) == ASN1_R_UNKNOWN_PUBLIC_KEY_TYPE   \
91                 || ERR_GET_REASON(err) == ASN1_R_NO_MATCHING_CHOICE_TYPE \
92                 || ERR_GET_REASON(err) == ERR_R_NESTED_ASN1_ERROR))     \
93             ERR_pop_to_mark();                                          \
94         else                                                            \
95             ERR_clear_last_mark();                                      \
96     } while(0)
97 #define RESET_ERR_MARK()                                                \
98     do {                                                                \
99         CLEAR_ERR_MARK();                                               \
100         SET_ERR_MARK();                                                 \
101     } while(0)
102
103 int ossl_store_handle_load_result(const OSSL_PARAM params[], void *arg)
104 {
105     struct ossl_load_result_data_st *cbdata = arg;
106     OSSL_STORE_INFO **v = &cbdata->v;
107     OSSL_STORE_CTX *ctx = cbdata->ctx;
108     const OSSL_PROVIDER *provider =
109         OSSL_STORE_LOADER_provider(ctx->fetched_loader);
110     OSSL_LIB_CTX *libctx = ossl_provider_library_context(provider);
111     const char *propq = ctx->properties;
112     const OSSL_PARAM *p;
113     struct extracted_param_data_st helper_data;
114
115     memset(&helper_data, 0, sizeof(helper_data));
116     helper_data.object_type = OSSL_OBJECT_UNKNOWN;
117
118     if ((p = OSSL_PARAM_locate_const(params, OSSL_OBJECT_PARAM_TYPE)) != NULL
119         && !OSSL_PARAM_get_int(p, &helper_data.object_type))
120         return 0;
121     p = OSSL_PARAM_locate_const(params, OSSL_OBJECT_PARAM_DATA_TYPE);
122     if (p != NULL
123         && !OSSL_PARAM_get_utf8_string_ptr(p, &helper_data.data_type))
124         return 0;
125     p = OSSL_PARAM_locate_const(params, OSSL_OBJECT_PARAM_DATA);
126     if (p != NULL
127         && !OSSL_PARAM_get_octet_string_ptr(p, &helper_data.octet_data,
128                                             &helper_data.octet_data_size)
129         && !OSSL_PARAM_get_utf8_string_ptr(p, &helper_data.utf8_data))
130         return 0;
131     p = OSSL_PARAM_locate_const(params, OSSL_OBJECT_PARAM_REFERENCE);
132     if (p != NULL && !OSSL_PARAM_get_octet_string_ptr(p, &helper_data.ref,
133                                                       &helper_data.ref_size))
134         return 0;
135     p = OSSL_PARAM_locate_const(params, OSSL_OBJECT_PARAM_DESC);
136     if (p != NULL && !OSSL_PARAM_get_utf8_string_ptr(p, &helper_data.desc))
137         return 0;
138
139     /*
140      * The helper functions return 0 on actual errors, otherwise 1, even if
141      * they didn't fill out |*v|.
142      */
143     SET_ERR_MARK();
144     if (!try_name(&helper_data, v))
145         goto err;
146     RESET_ERR_MARK();
147     if (!try_key(&helper_data, v, ctx, provider, libctx, propq))
148         goto err;
149     RESET_ERR_MARK();
150     if (!try_cert(&helper_data, v, libctx, propq))
151         goto err;
152     RESET_ERR_MARK();
153     if (!try_crl(&helper_data, v, libctx, propq))
154         goto err;
155     RESET_ERR_MARK();
156     if (!try_pkcs12(&helper_data, v, ctx, libctx, propq))
157         goto err;
158     CLEAR_ERR_MARK();
159
160     return (*v != NULL);
161  err:
162     return 0;
163 }
164
165 static int try_name(struct extracted_param_data_st *data, OSSL_STORE_INFO **v)
166 {
167     if (data->object_type == OSSL_OBJECT_NAME) {
168         char *newname = NULL, *newdesc = NULL;
169
170         if (data->utf8_data == NULL)
171             return 0;
172         if ((newname = OPENSSL_strdup(data->utf8_data)) == NULL
173             || (data->desc != NULL
174                 && (newdesc = OPENSSL_strdup(data->desc)) == NULL)
175             || (*v = OSSL_STORE_INFO_new_NAME(newname)) == NULL) {
176             OPENSSL_free(newname);
177             OPENSSL_free(newdesc);
178             return 0;
179         }
180         OSSL_STORE_INFO_set0_NAME_description(*v, newdesc);
181     }
182     return 1;
183 }
184
185 /*
186  * For the rest of the object types, the provider code may not know what
187  * type of data it gave us, so we may need to figure that out on our own.
188  * Therefore, we do check for OSSL_OBJECT_UNKNOWN everywhere below, and
189  * only return 0 on error if the object type is known.
190  */
191
192 static EVP_PKEY *try_key_ref(struct extracted_param_data_st *data,
193                              OSSL_STORE_CTX *ctx,
194                              const OSSL_PROVIDER *provider,
195                              OSSL_LIB_CTX *libctx, const char *propq)
196 {
197     EVP_PKEY *pk = NULL;
198     EVP_KEYMGMT *keymgmt = NULL;
199     void *keydata = NULL;
200
201     /* If we have an object reference, we must have a data type */
202     if (data->data_type == NULL)
203         return 0;
204
205     keymgmt = EVP_KEYMGMT_fetch(libctx, data->data_type, propq);
206     if (keymgmt != NULL) {
207         /*
208          * There are two possible cases
209          *
210          * 1.  The keymgmt is from the same provider as the loader,
211          *     so we can use evp_keymgmt_load()
212          * 2.  The keymgmt is from another provider, then we must
213          *     do the export/import dance.
214          */
215         if (EVP_KEYMGMT_provider(keymgmt) == provider) {
216             keydata = evp_keymgmt_load(keymgmt, data->ref, data->ref_size);
217         } else {
218             struct evp_keymgmt_util_try_import_data_st import_data;
219             OSSL_FUNC_store_export_object_fn *export_object =
220                 ctx->fetched_loader->p_export_object;
221
222             import_data.keymgmt = keymgmt;
223             import_data.keydata = NULL;
224             import_data.selection = OSSL_KEYMGMT_SELECT_ALL;
225
226             if (export_object != NULL) {
227                 /*
228                  * No need to check for errors here, the value of
229                  * |import_data.keydata| is as much an indicator.
230                  */
231                 (void)export_object(ctx->loader_ctx,
232                                     data->ref, data->ref_size,
233                                     &evp_keymgmt_util_try_import,
234                                     &import_data);
235             }
236
237             keydata = import_data.keydata;
238         }
239     }
240     if (keydata != NULL)
241         pk = evp_keymgmt_util_make_pkey(keymgmt, keydata);
242     EVP_KEYMGMT_free(keymgmt);
243
244     return pk;
245 }
246
247 static EVP_PKEY *try_key_value(struct extracted_param_data_st *data,
248                                OSSL_STORE_CTX *ctx,
249                                OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg,
250                                OSSL_LIB_CTX *libctx, const char *propq)
251 {
252     EVP_PKEY *pk = NULL;
253     OSSL_DECODER_CTX *decoderctx = NULL;
254     const unsigned char *pdata = data->octet_data;
255     size_t pdatalen = data->octet_data_size;
256
257     decoderctx =
258         OSSL_DECODER_CTX_new_by_EVP_PKEY(&pk, "DER", NULL, libctx, propq);
259     (void)OSSL_DECODER_CTX_set_passphrase_cb(decoderctx, cb, cbarg);
260
261     /* No error if this couldn't be decoded */
262     (void)OSSL_DECODER_from_data(decoderctx, &pdata, &pdatalen);
263
264     OSSL_DECODER_CTX_free(decoderctx);
265
266     return pk;
267 }
268
269 typedef OSSL_STORE_INFO *store_info_new_fn(EVP_PKEY *);
270
271 static EVP_PKEY *try_key_value_legacy(struct extracted_param_data_st *data,
272                                       store_info_new_fn **store_info_new,
273                                       OSSL_STORE_CTX *ctx,
274                                       OSSL_PASSPHRASE_CALLBACK *cb, void *cbarg,
275                                       OSSL_LIB_CTX *libctx, const char *propq)
276 {
277     EVP_PKEY *pk = NULL;
278     const unsigned char *der = data->octet_data, *derp;
279     long der_len = (long)data->octet_data_size;
280
281     SET_ERR_MARK();
282     /* Try PUBKEY first, that's a real easy target */
283     derp = der;
284     pk = d2i_PUBKEY_ex(NULL, &derp, der_len, libctx, propq);
285     if (pk != NULL)
286         *store_info_new = OSSL_STORE_INFO_new_PUBKEY;
287     RESET_ERR_MARK();
288
289     /* Try private keys next */
290     if (pk == NULL) {
291         unsigned char *new_der = NULL;
292         X509_SIG *p8 = NULL;
293         PKCS8_PRIV_KEY_INFO *p8info = NULL;
294
295         /* See if it's an encrypted PKCS#8 and decrypt it */
296         derp = der;
297         if ((p8 = d2i_X509_SIG(NULL, &derp, der_len)) != NULL) {
298             char pbuf[PEM_BUFSIZE];
299             size_t plen = 0;
300
301             if (!cb(pbuf, sizeof(pbuf), &plen, NULL, cbarg)) {
302                 ERR_raise(ERR_LIB_OSSL_STORE,
303                           OSSL_STORE_R_BAD_PASSWORD_READ);
304             } else {
305                 const X509_ALGOR *alg = NULL;
306                 const ASN1_OCTET_STRING *oct = NULL;
307                 int len = 0;
308
309                 X509_SIG_get0(p8, &alg, &oct);
310
311                 /*
312                  * No need to check the returned value, |new_der|
313                  * will be NULL on error anyway.
314                  */
315                 PKCS12_pbe_crypt(alg, pbuf, plen,
316                                  oct->data, oct->length,
317                                  &new_der, &len, 0);
318                 der_len = len;
319                 der = new_der;
320             }
321             X509_SIG_free(p8);
322         }
323         RESET_ERR_MARK();
324
325         /*
326          * If the encrypted PKCS#8 couldn't be decrypted,
327          * |der| is NULL
328          */
329         if (der != NULL) {
330             /* Try to unpack an unencrypted PKCS#8, that's easy */
331             derp = der;
332             p8info = d2i_PKCS8_PRIV_KEY_INFO(NULL, &derp, der_len);
333             RESET_ERR_MARK();
334             if (p8info != NULL) {
335                 pk = EVP_PKCS82PKEY_ex(p8info, libctx, propq);
336                 PKCS8_PRIV_KEY_INFO_free(p8info);
337             }
338         }
339
340         if (pk != NULL)
341             *store_info_new = OSSL_STORE_INFO_new_PKEY;
342
343         OPENSSL_free(new_der);
344         der = data->octet_data;
345         der_len = (long)data->octet_data_size;
346     }
347     CLEAR_ERR_MARK();
348
349     return pk;
350 }
351
352 static int try_key(struct extracted_param_data_st *data, OSSL_STORE_INFO **v,
353                    OSSL_STORE_CTX *ctx, const OSSL_PROVIDER *provider,
354                    OSSL_LIB_CTX *libctx, const char *propq)
355 {
356     store_info_new_fn *store_info_new = NULL;
357
358     if (data->object_type == OSSL_OBJECT_UNKNOWN
359         || data->object_type == OSSL_OBJECT_PKEY) {
360         EVP_PKEY *pk = NULL;
361
362         /* Prefer key by reference than key by value */
363         if (data->object_type == OSSL_OBJECT_PKEY && data->ref != NULL) {
364             pk = try_key_ref(data, ctx, provider, libctx, propq);
365
366             /*
367              * If for some reason we couldn't get a key, it's an error.
368              * It indicates that while decoders could make a key reference,
369              * the keymgmt somehow couldn't handle it, or doesn't have a
370              * OSSL_FUNC_keymgmt_load function.
371              */
372             if (pk == NULL)
373                 return 0;
374         } else if (data->octet_data != NULL) {
375             OSSL_PASSPHRASE_CALLBACK *cb = ossl_pw_passphrase_callback_dec;
376             void *cbarg = &ctx->pwdata;
377
378             pk = try_key_value(data, ctx, cb, cbarg, libctx, propq);
379
380             /*
381              * Desperate last maneuver, in case the decoders don't support
382              * the data we have, then we try on our own to at least get a
383              * legacy key.
384              * This is the same as der2key_decode() does, but in a limited
385              * way and within the walls of libcrypto.
386              *
387              * TODO Remove this when #legacy keys are gone
388              */
389             if (pk == NULL)
390                 pk = try_key_value_legacy(data, &store_info_new, ctx,
391                                           cb, cbarg, libctx, propq);
392         }
393
394         if (pk != NULL) {
395             data->object_type = OSSL_OBJECT_PKEY;
396
397             if (store_info_new == NULL) {
398                 /*
399                  * We determined the object type for OSSL_STORE_INFO, which
400                  * makes an explicit difference between an EVP_PKEY with just
401                  * (domain) parameters and an EVP_PKEY with actual key
402                  * material.
403                  * The logic is that an EVP_PKEY with actual key material
404                  * always has the public half.
405                  */
406                 if (evp_keymgmt_util_has(pk, OSSL_KEYMGMT_SELECT_PRIVATE_KEY))
407                     store_info_new = OSSL_STORE_INFO_new_PKEY;
408                 else if (evp_keymgmt_util_has(pk,
409                                               OSSL_KEYMGMT_SELECT_PUBLIC_KEY))
410                     store_info_new = OSSL_STORE_INFO_new_PUBKEY;
411                 else
412                     store_info_new = OSSL_STORE_INFO_new_PARAMS;
413             }
414             *v = store_info_new(pk);
415         }
416
417         if (*v == NULL)
418             EVP_PKEY_free(pk);
419     }
420
421     return 1;
422 }
423
424 static int try_cert(struct extracted_param_data_st *data, OSSL_STORE_INFO **v,
425                     OSSL_LIB_CTX *libctx, const char *propq)
426 {
427     if (data->object_type == OSSL_OBJECT_UNKNOWN
428         || data->object_type == OSSL_OBJECT_CERT) {
429         X509 *cert;
430
431         /*
432          * In most cases, we can try to interpret the serialized
433          * data as a trusted cert (X509 + X509_AUX) and fall back
434          * to reading it as a normal cert (just X509), but if
435          * |data_type| (the PEM name) specifically declares it as a
436          * trusted cert, then no fallback should be engaged.
437          * |ignore_trusted| tells if the fallback can be used (1)
438          * or not (0).
439          */
440         int ignore_trusted = 1;
441
442         /* If we have a data type, it should be a PEM name */
443         if (data->data_type != NULL
444             && (strcasecmp(data->data_type, PEM_STRING_X509_TRUSTED) == 0))
445             ignore_trusted = 0;
446
447         cert = d2i_X509_AUX(NULL, (const unsigned char **)&data->octet_data,
448                             data->octet_data_size);
449         if (cert == NULL && ignore_trusted)
450             cert = d2i_X509(NULL, (const unsigned char **)&data->octet_data,
451                             data->octet_data_size);
452
453         if (cert != NULL)
454             /* We determined the object type */
455             data->object_type = OSSL_OBJECT_CERT;
456
457         if (cert != NULL && !x509_set0_libctx(cert, libctx, propq)) {
458             X509_free(cert);
459             cert = NULL;
460         }
461
462         if (cert != NULL)
463             *v = OSSL_STORE_INFO_new_CERT(cert);
464         if (*v == NULL)
465             X509_free(cert);
466     }
467
468     return 1;
469 }
470
471 static int try_crl(struct extracted_param_data_st *data, OSSL_STORE_INFO **v,
472                    OSSL_LIB_CTX *libctx, const char *propq)
473 {
474     if (data->object_type == OSSL_OBJECT_UNKNOWN
475         || data->object_type == OSSL_OBJECT_CRL) {
476         X509_CRL *crl;
477
478         crl = d2i_X509_CRL(NULL, (const unsigned char **)&data->octet_data,
479                            data->octet_data_size);
480         if (crl != NULL)
481             /* We determined the object type */
482             data->object_type = OSSL_OBJECT_CRL;
483
484         if (crl != NULL && !x509_crl_set0_libctx(crl, libctx, propq)) {
485             X509_CRL_free(crl);
486             crl = NULL;
487         }
488
489         if (crl != NULL)
490             *v = OSSL_STORE_INFO_new_CRL(crl);
491         if (*v == NULL)
492             X509_CRL_free(crl);
493     }
494
495     return 1;
496 }
497
498 static int try_pkcs12(struct extracted_param_data_st *data, OSSL_STORE_INFO **v,
499                       OSSL_STORE_CTX *ctx,
500                       OSSL_LIB_CTX *libctx, const char *propq)
501 {
502     /* There is no specific object type for PKCS12 */
503     if (data->object_type == OSSL_OBJECT_UNKNOWN) {
504         /* Initial parsing */
505         PKCS12 *p12;
506
507         if ((p12 = d2i_PKCS12(NULL, (const unsigned char **)&data->octet_data,
508                               data->octet_data_size)) != NULL) {
509             char *pass = NULL;
510             char tpass[PEM_BUFSIZE];
511             size_t tpass_len;
512             EVP_PKEY *pkey = NULL;
513             X509 *cert = NULL;
514             STACK_OF(X509) *chain = NULL;
515
516             data->object_type = OSSL_OBJECT_PKCS12;
517
518             if (PKCS12_verify_mac(p12, "", 0)
519                 || PKCS12_verify_mac(p12, NULL, 0)) {
520                 pass = "";
521             } else {
522                 static char prompt_info[] = "PKCS12 import pass phrase";
523                 OSSL_PARAM pw_params[] = {
524                     OSSL_PARAM_utf8_string(OSSL_PASSPHRASE_PARAM_INFO,
525                                            prompt_info,
526                                            sizeof(prompt_info) - 1),
527                     OSSL_PARAM_END
528                 };
529
530                 if (!ossl_pw_get_passphrase(tpass, sizeof(tpass), &tpass_len,
531                                             pw_params, 0, &ctx->pwdata)) {
532                     ERR_raise(ERR_LIB_OSSL_STORE,
533                               OSSL_STORE_R_PASSPHRASE_CALLBACK_ERROR);
534                     goto p12_end;
535                 }
536                 pass = tpass;
537                 if (!PKCS12_verify_mac(p12, pass, strlen(pass))) {
538                     ERR_raise(ERR_LIB_OSSL_STORE,
539                               OSSL_STORE_R_ERROR_VERIFYING_PKCS12_MAC);
540                     goto p12_end;
541                 }
542             }
543
544             if (PKCS12_parse(p12, pass, &pkey, &cert, &chain)) {
545                 STACK_OF(OSSL_STORE_INFO) *infos = NULL;
546                 OSSL_STORE_INFO *osi_pkey = NULL;
547                 OSSL_STORE_INFO *osi_cert = NULL;
548                 OSSL_STORE_INFO *osi_ca = NULL;
549                 int ok = 1;
550
551                 if ((infos = sk_OSSL_STORE_INFO_new_null()) != NULL) {
552                     if (pkey != NULL) {
553                         if ((osi_pkey = OSSL_STORE_INFO_new_PKEY(pkey)) != NULL
554                             /* clearing pkey here avoids case distinctions */
555                             && (pkey = NULL) == NULL
556                             && sk_OSSL_STORE_INFO_push(infos, osi_pkey) != 0)
557                             osi_pkey = NULL;
558                         else
559                             ok = 0;
560                     }
561                     if (ok && cert != NULL) {
562                         if ((osi_cert = OSSL_STORE_INFO_new_CERT(cert)) != NULL
563                             /* clearing cert here avoids case distinctions */
564                             && (cert = NULL) == NULL
565                             && sk_OSSL_STORE_INFO_push(infos, osi_cert) != 0)
566                             osi_cert = NULL;
567                         else
568                             ok = 0;
569                     }
570                     while (ok && sk_X509_num(chain) > 0) {
571                         X509 *ca = sk_X509_value(chain, 0);
572
573                         if ((osi_ca = OSSL_STORE_INFO_new_CERT(ca)) != NULL
574                             && sk_X509_shift(chain) != NULL
575                             && sk_OSSL_STORE_INFO_push(infos, osi_ca) != 0)
576                             osi_ca = NULL;
577                         else
578                             ok = 0;
579                     }
580                 }
581                 EVP_PKEY_free(pkey);
582                 X509_free(cert);
583                 sk_X509_pop_free(chain, X509_free);
584                 OSSL_STORE_INFO_free(osi_pkey);
585                 OSSL_STORE_INFO_free(osi_cert);
586                 OSSL_STORE_INFO_free(osi_ca);
587                 if (!ok) {
588                     sk_OSSL_STORE_INFO_pop_free(infos, OSSL_STORE_INFO_free);
589                     infos = NULL;
590                 }
591                 ctx->cached_info = infos;
592             }
593         }
594      p12_end:
595         PKCS12_free(p12);
596         *v = sk_OSSL_STORE_INFO_shift(ctx->cached_info);
597     }
598
599     return 1;
600 }