e5557df627adf2309faa3bdd520f40c391dbb875
[openssl.git] / engines / e_loader_attic.c
1 /*
2  * Copyright 2016-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 /* THIS ENGINE IS FOR TESTING PURPOSES ONLY. */
11
12 /* This file has quite some overlap with providers/implementations/storemgmt/file_store.c */
13
14 /* We need to use some engine deprecated APIs */
15 #define OPENSSL_SUPPRESS_DEPRECATED
16
17 #include "../e_os.h" /* for stat and strncasecmp */
18 #include <string.h>
19 #include <sys/stat.h>
20 #include <ctype.h>
21 #include <assert.h>
22
23 #include <openssl/bio.h>
24 #include <openssl/dsa.h>         /* For d2i_DSAPrivateKey */
25 #include <openssl/err.h>
26 #include <openssl/evp.h>
27 #include <openssl/pem.h>
28 #include <openssl/pkcs12.h>      /* For the PKCS8 stuff o.O */
29 #include <openssl/rsa.h>         /* For d2i_RSAPrivateKey */
30 #include <openssl/safestack.h>
31 #include <openssl/store.h>
32 #include <openssl/ui.h>
33 #include <openssl/engine.h>
34 #include <openssl/x509.h>        /* For the PKCS8 stuff o.O */
35 #include "internal/asn1.h"       /* For asn1_d2i_read_bio */
36 #include "internal/o_dir.h"
37 #include "internal/cryptlib.h"
38 #include "crypto/ctype.h"        /* For ossl_isdigit */
39 #include "crypto/pem.h"          /* For PVK and "blob" PEM headers */
40
41 #include "e_loader_attic_err.c"
42
43 DEFINE_STACK_OF(OSSL_STORE_INFO)
44
45 #ifndef S_ISDIR
46 # define S_ISDIR(a) (((a) & S_IFMT) == S_IFDIR)
47 #endif
48
49 /*-
50  *  Password prompting
51  *  ------------------
52  */
53
54 static char *file_get_pass(const UI_METHOD *ui_method, char *pass,
55                            size_t maxsize, const char *desc, const char *info,
56                            void *data)
57 {
58     UI *ui = UI_new();
59     char *prompt = NULL;
60
61     if (ui == NULL) {
62         ATTICerr(0, ERR_R_MALLOC_FAILURE);
63         return NULL;
64     }
65
66     if (ui_method != NULL)
67         UI_set_method(ui, ui_method);
68     UI_add_user_data(ui, data);
69
70     if ((prompt = UI_construct_prompt(ui, desc, info)) == NULL) {
71         ATTICerr(0, ERR_R_MALLOC_FAILURE);
72         pass = NULL;
73     } else if (!UI_add_input_string(ui, prompt, UI_INPUT_FLAG_DEFAULT_PWD,
74                                     pass, 0, maxsize - 1)) {
75         ATTICerr(0, ERR_R_UI_LIB);
76         pass = NULL;
77     } else {
78         switch (UI_process(ui)) {
79         case -2:
80             ATTICerr(0, ATTIC_R_UI_PROCESS_INTERRUPTED_OR_CANCELLED);
81             pass = NULL;
82             break;
83         case -1:
84             ATTICerr(0, ERR_R_UI_LIB);
85             pass = NULL;
86             break;
87         default:
88             break;
89         }
90     }
91
92     OPENSSL_free(prompt);
93     UI_free(ui);
94     return pass;
95 }
96
97 struct pem_pass_data {
98     const UI_METHOD *ui_method;
99     void *data;
100     const char *prompt_desc;
101     const char *prompt_info;
102 };
103
104 static int file_fill_pem_pass_data(struct pem_pass_data *pass_data,
105                                    const char *desc, const char *info,
106                                    const UI_METHOD *ui_method, void *ui_data)
107 {
108     if (pass_data == NULL)
109         return 0;
110     pass_data->ui_method = ui_method;
111     pass_data->data = ui_data;
112     pass_data->prompt_desc = desc;
113     pass_data->prompt_info = info;
114     return 1;
115 }
116
117 /* This is used anywhere a pem_password_cb is needed */
118 static int file_get_pem_pass(char *buf, int num, int w, void *data)
119 {
120     struct pem_pass_data *pass_data = data;
121     char *pass = file_get_pass(pass_data->ui_method, buf, num,
122                                pass_data->prompt_desc, pass_data->prompt_info,
123                                pass_data->data);
124
125     return pass == NULL ? 0 : strlen(pass);
126 }
127
128 /*
129  * Check if |str| ends with |suffix| preceded by a space, and if it does,
130  * return the index of that space.  If there is no such suffix in |str|,
131  * return -1.
132  * For |str| == "FOO BAR" and |suffix| == "BAR", the returned value is 3.
133  */
134 static int check_suffix(const char *str, const char *suffix)
135 {
136     int str_len = strlen(str);
137     int suffix_len = strlen(suffix) + 1;
138     const char *p = NULL;
139
140     if (suffix_len >= str_len)
141         return -1;
142     p = str + str_len - suffix_len;
143     if (*p != ' '
144         || strcmp(p + 1, suffix) != 0)
145         return -1;
146     return p - str;
147 }
148
149 /*
150  * EMBEDDED is a special type of OSSL_STORE_INFO, specially for the file
151  * handlers, so we define it internally.  This uses the possibility to
152  * create an OSSL_STORE_INFO with a generic data pointer and arbitrary
153  * type number.
154  *
155  * This is used by a FILE_HANDLER's try_decode function to signal that it
156  * has decoded the incoming blob into a new blob, and that the attempted
157  * decoding should be immediately restarted with the new blob, using the
158  * new PEM name.
159  */
160 /* Negative numbers are never used for public OSSL_STORE_INFO types */
161 #define STORE_INFO_EMBEDDED       -1
162
163 /* This is the embedded data */
164 struct embedded_st {
165     BUF_MEM *blob;
166     char *pem_name;
167 };
168
169 /* Helper functions */
170 static struct embedded_st *get0_EMBEDDED(OSSL_STORE_INFO *info)
171 {
172     return OSSL_STORE_INFO_get0_data(STORE_INFO_EMBEDDED, info);
173 }
174
175 static void store_info_free(OSSL_STORE_INFO *info)
176 {
177     struct embedded_st *data;
178
179     if (info != NULL && (data = get0_EMBEDDED(info)) != NULL) {
180         BUF_MEM_free(data->blob);
181         OPENSSL_free(data->pem_name);
182         OPENSSL_free(data);
183     }
184     OSSL_STORE_INFO_free(info);
185 }
186
187 static OSSL_STORE_INFO *new_EMBEDDED(const char *new_pem_name,
188                                      BUF_MEM *embedded)
189 {
190     OSSL_STORE_INFO *info = NULL;
191     struct embedded_st *data = NULL;
192
193     if ((data = OPENSSL_zalloc(sizeof(*data))) == NULL
194         || (info = OSSL_STORE_INFO_new(STORE_INFO_EMBEDDED, data)) == NULL) {
195         ATTICerr(0, ERR_R_MALLOC_FAILURE);
196         OPENSSL_free(data);
197         return NULL;
198     }
199
200     data->blob = embedded;
201     data->pem_name =
202         new_pem_name == NULL ? NULL : OPENSSL_strdup(new_pem_name);
203
204     if (new_pem_name != NULL && data->pem_name == NULL) {
205         ATTICerr(0, ERR_R_MALLOC_FAILURE);
206         store_info_free(info);
207         info = NULL;
208     }
209
210     return info;
211 }
212
213 /*-
214  *  The file scheme decoders
215  *  ------------------------
216  *
217  *  Each possible data type has its own decoder, which either operates
218  *  through a given PEM name, or attempts to decode to see if the blob
219  *  it's given is decodable for its data type.  The assumption is that
220  *  only the correct data type will match the content.
221  */
222
223 /*-
224  * The try_decode function is called to check if the blob of data can
225  * be used by this handler, and if it can, decodes it into a supported
226  * OpenSSL type and returns a OSSL_STORE_INFO with the decoded data.
227  * Input:
228  *    pem_name:     If this blob comes from a PEM file, this holds
229  *                  the PEM name.  If it comes from another type of
230  *                  file, this is NULL.
231  *    pem_header:   If this blob comes from a PEM file, this holds
232  *                  the PEM headers.  If it comes from another type of
233  *                  file, this is NULL.
234  *    blob:         The blob of data to match with what this handler
235  *                  can use.
236  *    len:          The length of the blob.
237  *    handler_ctx:  For a handler marked repeatable, this pointer can
238  *                  be used to create a context for the handler.  IT IS
239  *                  THE HANDLER'S RESPONSIBILITY TO CREATE AND DESTROY
240  *                  THIS CONTEXT APPROPRIATELY, i.e. create on first call
241  *                  and destroy when about to return NULL.
242  *    matchcount:   A pointer to an int to count matches for this data.
243  *                  Usually becomes 0 (no match) or 1 (match!), but may
244  *                  be higher in the (unlikely) event that the data matches
245  *                  more than one possibility.  The int will always be
246  *                  zero when the function is called.
247  *    ui_method:    Application UI method for getting a password, pin
248  *                  or any other interactive data.
249  *    ui_data:      Application data to be passed to ui_method when
250  *                  it's called.
251  *    libctx:       The library context to be used if applicable
252  *    propq:        The property query string for any algorithm fetches
253  * Output:
254  *    a OSSL_STORE_INFO
255  */
256 typedef OSSL_STORE_INFO *(*file_try_decode_fn)(const char *pem_name,
257                                                const char *pem_header,
258                                                const unsigned char *blob,
259                                                size_t len, void **handler_ctx,
260                                                int *matchcount,
261                                                const UI_METHOD *ui_method,
262                                                void *ui_data, const char *uri,
263                                                OSSL_LIB_CTX *libctx,
264                                                const char *propq);
265 /*
266  * The eof function should return 1 if there's no more data to be found
267  * with the handler_ctx, otherwise 0.  This is only used when the handler is
268  * marked repeatable.
269  */
270 typedef int (*file_eof_fn)(void *handler_ctx);
271 /*
272  * The destroy_ctx function is used to destroy the handler_ctx that was
273  * initiated by a repeatable try_decode function.  This is only used when
274  * the handler is marked repeatable.
275  */
276 typedef void (*file_destroy_ctx_fn)(void **handler_ctx);
277
278 typedef struct file_handler_st {
279     const char *name;
280     file_try_decode_fn try_decode;
281     file_eof_fn eof;
282     file_destroy_ctx_fn destroy_ctx;
283
284     /* flags */
285     int repeatable;
286 } FILE_HANDLER;
287
288 /*
289  * PKCS#12 decoder.  It operates by decoding all of the blob content,
290  * extracting all the interesting data from it and storing them internally,
291  * then serving them one piece at a time.
292  */
293 static OSSL_STORE_INFO *try_decode_PKCS12(const char *pem_name,
294                                           const char *pem_header,
295                                           const unsigned char *blob,
296                                           size_t len, void **pctx,
297                                           int *matchcount,
298                                           const UI_METHOD *ui_method,
299                                           void *ui_data, const char *uri,
300                                           OSSL_LIB_CTX *libctx,
301                                           const char *propq)
302 {
303     OSSL_STORE_INFO *store_info = NULL;
304     STACK_OF(OSSL_STORE_INFO) *ctx = *pctx;
305
306     if (ctx == NULL) {
307         /* Initial parsing */
308         PKCS12 *p12;
309
310         if (pem_name != NULL)
311             /* No match, there is no PEM PKCS12 tag */
312             return NULL;
313
314         if ((p12 = d2i_PKCS12(NULL, &blob, len)) != NULL) {
315             char *pass = NULL;
316             char tpass[PEM_BUFSIZE];
317             EVP_PKEY *pkey = NULL;
318             X509 *cert = NULL;
319             STACK_OF(X509) *chain = NULL;
320
321             *matchcount = 1;
322
323             if (!PKCS12_mac_present(p12)
324                 || PKCS12_verify_mac(p12, "", 0)
325                 || PKCS12_verify_mac(p12, NULL, 0)) {
326                 pass = "";
327             } else {
328                 if ((pass = file_get_pass(ui_method, tpass, PEM_BUFSIZE,
329                                           "PKCS12 import", uri,
330                                           ui_data)) == NULL) {
331                     ATTICerr(0, ATTIC_R_PASSPHRASE_CALLBACK_ERROR);
332                     goto p12_end;
333                 }
334                 if (!PKCS12_verify_mac(p12, pass, strlen(pass))) {
335                     ATTICerr(0, ATTIC_R_ERROR_VERIFYING_PKCS12_MAC);
336                     goto p12_end;
337                 }
338             }
339
340             if (PKCS12_parse(p12, pass, &pkey, &cert, &chain)) {
341                 OSSL_STORE_INFO *osi_pkey = NULL;
342                 OSSL_STORE_INFO *osi_cert = NULL;
343                 OSSL_STORE_INFO *osi_ca = NULL;
344                 int ok = 1;
345
346                 if ((ctx = sk_OSSL_STORE_INFO_new_null()) != NULL) {
347                     if (pkey != NULL) {
348                         if ((osi_pkey = OSSL_STORE_INFO_new_PKEY(pkey)) != NULL
349                             /* clearing pkey here avoids case distinctions */
350                             && (pkey = NULL) == NULL
351                             && sk_OSSL_STORE_INFO_push(ctx, osi_pkey) != 0)
352                             osi_pkey = NULL;
353                         else
354                             ok = 0;
355                     }
356                     if (ok && cert != NULL) {
357                         if ((osi_cert = OSSL_STORE_INFO_new_CERT(cert)) != NULL
358                             /* clearing cert here avoids case distinctions */
359                             && (cert = NULL) == NULL
360                             && sk_OSSL_STORE_INFO_push(ctx, osi_cert) != 0)
361                             osi_cert = NULL;
362                         else
363                             ok = 0;
364                     }
365                     while (ok && sk_X509_num(chain) > 0) {
366                         X509 *ca = sk_X509_value(chain, 0);
367
368                         if ((osi_ca = OSSL_STORE_INFO_new_CERT(ca)) != NULL
369                             && sk_X509_shift(chain) != NULL
370                             && sk_OSSL_STORE_INFO_push(ctx, osi_ca) != 0)
371                             osi_ca = NULL;
372                         else
373                             ok = 0;
374                     }
375                 }
376                 EVP_PKEY_free(pkey);
377                 X509_free(cert);
378                 sk_X509_pop_free(chain, X509_free);
379                 store_info_free(osi_pkey);
380                 store_info_free(osi_cert);
381                 store_info_free(osi_ca);
382                 if (!ok) {
383                     sk_OSSL_STORE_INFO_pop_free(ctx, store_info_free);
384                     ctx = NULL;
385                 }
386                 *pctx = ctx;
387             }
388         }
389      p12_end:
390         PKCS12_free(p12);
391         if (ctx == NULL)
392             return NULL;
393     }
394
395     *matchcount = 1;
396     store_info = sk_OSSL_STORE_INFO_shift(ctx);
397     return store_info;
398 }
399
400 static int eof_PKCS12(void *ctx_)
401 {
402     STACK_OF(OSSL_STORE_INFO) *ctx = ctx_;
403
404     return ctx == NULL || sk_OSSL_STORE_INFO_num(ctx) == 0;
405 }
406
407 static void destroy_ctx_PKCS12(void **pctx)
408 {
409     STACK_OF(OSSL_STORE_INFO) *ctx = *pctx;
410
411     sk_OSSL_STORE_INFO_pop_free(ctx, store_info_free);
412     *pctx = NULL;
413 }
414
415 static FILE_HANDLER PKCS12_handler = {
416     "PKCS12",
417     try_decode_PKCS12,
418     eof_PKCS12,
419     destroy_ctx_PKCS12,
420     1 /* repeatable */
421 };
422
423 /*
424  * Encrypted PKCS#8 decoder.  It operates by just decrypting the given blob
425  * into a new blob, which is returned as an EMBEDDED STORE_INFO.  The whole
426  * decoding process will then start over with the new blob.
427  */
428 static OSSL_STORE_INFO *try_decode_PKCS8Encrypted(const char *pem_name,
429                                                   const char *pem_header,
430                                                   const unsigned char *blob,
431                                                   size_t len, void **pctx,
432                                                   int *matchcount,
433                                                   const UI_METHOD *ui_method,
434                                                   void *ui_data,
435                                                   const char *uri,
436                                                   OSSL_LIB_CTX *libctx,
437                                                   const char *propq)
438 {
439     X509_SIG *p8 = NULL;
440     char kbuf[PEM_BUFSIZE];
441     char *pass = NULL;
442     const X509_ALGOR *dalg = NULL;
443     const ASN1_OCTET_STRING *doct = NULL;
444     OSSL_STORE_INFO *store_info = NULL;
445     BUF_MEM *mem = NULL;
446     unsigned char *new_data = NULL;
447     int new_data_len;
448
449     if (pem_name != NULL) {
450         if (strcmp(pem_name, PEM_STRING_PKCS8) != 0)
451             return NULL;
452         *matchcount = 1;
453     }
454
455     if ((p8 = d2i_X509_SIG(NULL, &blob, len)) == NULL)
456         return NULL;
457
458     *matchcount = 1;
459
460     if ((mem = BUF_MEM_new()) == NULL) {
461         ATTICerr(0, ERR_R_MALLOC_FAILURE);
462         goto nop8;
463     }
464
465     if ((pass = file_get_pass(ui_method, kbuf, PEM_BUFSIZE,
466                               "PKCS8 decrypt pass phrase", uri,
467                               ui_data)) == NULL) {
468         ATTICerr(0, ATTIC_R_BAD_PASSWORD_READ);
469         goto nop8;
470     }
471
472     X509_SIG_get0(p8, &dalg, &doct);
473     if (!PKCS12_pbe_crypt(dalg, pass, strlen(pass), doct->data, doct->length,
474                           &new_data, &new_data_len, 0))
475         goto nop8;
476
477     mem->data = (char *)new_data;
478     mem->max = mem->length = (size_t)new_data_len;
479     X509_SIG_free(p8);
480     p8 = NULL;
481
482     store_info = new_EMBEDDED(PEM_STRING_PKCS8INF, mem);
483     if (store_info == NULL) {
484         ATTICerr(0, ERR_R_MALLOC_FAILURE);
485         goto nop8;
486     }
487
488     return store_info;
489  nop8:
490     X509_SIG_free(p8);
491     BUF_MEM_free(mem);
492     return NULL;
493 }
494
495 static FILE_HANDLER PKCS8Encrypted_handler = {
496     "PKCS8Encrypted",
497     try_decode_PKCS8Encrypted
498 };
499
500 /*
501  * Private key decoder.  Decodes all sorts of private keys, both PKCS#8
502  * encoded ones and old style PEM ones (with the key type is encoded into
503  * the PEM name).
504  */
505 static OSSL_STORE_INFO *try_decode_PrivateKey(const char *pem_name,
506                                               const char *pem_header,
507                                               const unsigned char *blob,
508                                               size_t len, void **pctx,
509                                               int *matchcount,
510                                               const UI_METHOD *ui_method,
511                                               void *ui_data, const char *uri,
512                                               OSSL_LIB_CTX *libctx,
513                                               const char *propq)
514 {
515     OSSL_STORE_INFO *store_info = NULL;
516     EVP_PKEY *pkey = NULL;
517     const EVP_PKEY_ASN1_METHOD *ameth = NULL;
518
519     if (pem_name != NULL) {
520         if (strcmp(pem_name, PEM_STRING_PKCS8INF) == 0) {
521             PKCS8_PRIV_KEY_INFO *p8inf =
522                 d2i_PKCS8_PRIV_KEY_INFO(NULL, &blob, len);
523
524             *matchcount = 1;
525             if (p8inf != NULL)
526                 pkey = EVP_PKCS82PKEY_ex(p8inf, libctx, propq);
527             PKCS8_PRIV_KEY_INFO_free(p8inf);
528         } else {
529             int slen;
530             int pkey_id;
531
532             if ((slen = check_suffix(pem_name, "PRIVATE KEY")) > 0
533                 && (ameth = EVP_PKEY_asn1_find_str(NULL, pem_name,
534                                                    slen)) != NULL
535                 && EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL,
536                                            ameth)) {
537                 *matchcount = 1;
538                 pkey = d2i_PrivateKey_ex(pkey_id, NULL, &blob, len,
539                                          libctx, propq);
540             }
541         }
542     } else {
543         int i;
544 #ifndef OPENSSL_NO_ENGINE
545         ENGINE *curengine = ENGINE_get_first();
546
547         while (curengine != NULL) {
548             ENGINE_PKEY_ASN1_METHS_PTR asn1meths =
549                 ENGINE_get_pkey_asn1_meths(curengine);
550
551             if (asn1meths != NULL) {
552                 const int *nids = NULL;
553                 int nids_n = asn1meths(curengine, NULL, &nids, 0);
554
555                 for (i = 0; i < nids_n; i++) {
556                     EVP_PKEY_ASN1_METHOD *ameth2 = NULL;
557                     EVP_PKEY *tmp_pkey = NULL;
558                     const unsigned char *tmp_blob = blob;
559                     int pkey_id, pkey_flags;
560
561                     if (!asn1meths(curengine, &ameth2, NULL, nids[i])
562                         || !EVP_PKEY_asn1_get0_info(&pkey_id, NULL,
563                                                     &pkey_flags, NULL, NULL,
564                                                     ameth2)
565                         || (pkey_flags & ASN1_PKEY_ALIAS) != 0)
566                         continue;
567
568                     ERR_set_mark(); /* prevent flooding error queue */
569                     tmp_pkey = d2i_PrivateKey_ex(pkey_id, NULL,
570                                                  &tmp_blob, len,
571                                                  libctx, propq);
572                     if (tmp_pkey != NULL) {
573                         if (pkey != NULL)
574                             EVP_PKEY_free(tmp_pkey);
575                         else
576                             pkey = tmp_pkey;
577                         (*matchcount)++;
578                     }
579                     ERR_pop_to_mark();
580                 }
581             }
582             curengine = ENGINE_get_next(curengine);
583         }
584 #endif
585
586         for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
587             EVP_PKEY *tmp_pkey = NULL;
588             const unsigned char *tmp_blob = blob;
589             int pkey_id, pkey_flags;
590
591             ameth = EVP_PKEY_asn1_get0(i);
592             if (!EVP_PKEY_asn1_get0_info(&pkey_id, NULL, &pkey_flags, NULL,
593                                          NULL, ameth)
594                 || (pkey_flags & ASN1_PKEY_ALIAS) != 0)
595                 continue;
596
597             ERR_set_mark(); /* prevent flooding error queue */
598             tmp_pkey = d2i_PrivateKey_ex(pkey_id, NULL, &tmp_blob, len,
599                                          libctx, propq);
600             if (tmp_pkey != NULL) {
601                 if (pkey != NULL)
602                     EVP_PKEY_free(tmp_pkey);
603                 else
604                     pkey = tmp_pkey;
605                 (*matchcount)++;
606             }
607             ERR_pop_to_mark();
608         }
609
610         if (*matchcount > 1) {
611             EVP_PKEY_free(pkey);
612             pkey = NULL;
613         }
614     }
615     if (pkey == NULL)
616         /* No match */
617         return NULL;
618
619     store_info = OSSL_STORE_INFO_new_PKEY(pkey);
620     if (store_info == NULL)
621         EVP_PKEY_free(pkey);
622
623     return store_info;
624 }
625
626 static FILE_HANDLER PrivateKey_handler = {
627     "PrivateKey",
628     try_decode_PrivateKey
629 };
630
631 /*
632  * Public key decoder.  Only supports SubjectPublicKeyInfo formatted keys.
633  */
634 static OSSL_STORE_INFO *try_decode_PUBKEY(const char *pem_name,
635                                           const char *pem_header,
636                                           const unsigned char *blob,
637                                           size_t len, void **pctx,
638                                           int *matchcount,
639                                           const UI_METHOD *ui_method,
640                                           void *ui_data, const char *uri,
641                                           OSSL_LIB_CTX *libctx,
642                                           const char *propq)
643 {
644     OSSL_STORE_INFO *store_info = NULL;
645     EVP_PKEY *pkey = NULL;
646
647     if (pem_name != NULL) {
648         if (strcmp(pem_name, PEM_STRING_PUBLIC) != 0)
649             /* No match */
650             return NULL;
651         *matchcount = 1;
652     }
653
654     if ((pkey = d2i_PUBKEY(NULL, &blob, len)) != NULL) {
655         *matchcount = 1;
656         store_info = OSSL_STORE_INFO_new_PUBKEY(pkey);
657     }
658
659     return store_info;
660 }
661
662 static FILE_HANDLER PUBKEY_handler = {
663     "PUBKEY",
664     try_decode_PUBKEY
665 };
666
667 /*
668  * Key parameter decoder.
669  */
670 static OSSL_STORE_INFO *try_decode_params(const char *pem_name,
671                                           const char *pem_header,
672                                           const unsigned char *blob,
673                                           size_t len, void **pctx,
674                                           int *matchcount,
675                                           const UI_METHOD *ui_method,
676                                           void *ui_data, const char *uri,
677                                           OSSL_LIB_CTX *libctx,
678                                           const char *propq)
679 {
680     OSSL_STORE_INFO *store_info = NULL;
681     EVP_PKEY *pkey = NULL;
682     const EVP_PKEY_ASN1_METHOD *ameth = NULL;
683
684     if (pem_name != NULL) {
685         int slen;
686         int pkey_id;
687
688         if ((slen = check_suffix(pem_name, "PARAMETERS")) > 0
689             && (ameth = EVP_PKEY_asn1_find_str(NULL, pem_name, slen)) != NULL
690             && EVP_PKEY_asn1_get0_info(&pkey_id, NULL, NULL, NULL, NULL,
691                                        ameth)) {
692             *matchcount = 1;
693             pkey = d2i_KeyParams(pkey_id, NULL, &blob, len);
694         }
695     } else {
696         int i;
697
698         for (i = 0; i < EVP_PKEY_asn1_get_count(); i++) {
699             EVP_PKEY *tmp_pkey = NULL;
700             const unsigned char *tmp_blob = blob;
701             int pkey_id, pkey_flags;
702
703             ameth = EVP_PKEY_asn1_get0(i);
704             if (!EVP_PKEY_asn1_get0_info(&pkey_id, NULL, &pkey_flags, NULL,
705                                          NULL, ameth)
706                 || (pkey_flags & ASN1_PKEY_ALIAS) != 0)
707                 continue;
708
709             ERR_set_mark(); /* prevent flooding error queue */
710
711             tmp_pkey = d2i_KeyParams(pkey_id, NULL, &tmp_blob, len);
712
713             if (tmp_pkey != NULL) {
714                 if (pkey != NULL)
715                     EVP_PKEY_free(tmp_pkey);
716                 else
717                     pkey = tmp_pkey;
718                 (*matchcount)++;
719             }
720             ERR_pop_to_mark();
721         }
722
723         if (*matchcount > 1) {
724             EVP_PKEY_free(pkey);
725             pkey = NULL;
726         }
727     }
728     if (pkey == NULL)
729         /* No match */
730         return NULL;
731
732     store_info = OSSL_STORE_INFO_new_PARAMS(pkey);
733     if (store_info == NULL)
734         EVP_PKEY_free(pkey);
735
736     return store_info;
737 }
738
739 static FILE_HANDLER params_handler = {
740     "params",
741     try_decode_params
742 };
743
744 /*
745  * X.509 certificate decoder.
746  */
747 static OSSL_STORE_INFO *try_decode_X509Certificate(const char *pem_name,
748                                                    const char *pem_header,
749                                                    const unsigned char *blob,
750                                                    size_t len, void **pctx,
751                                                    int *matchcount,
752                                                    const UI_METHOD *ui_method,
753                                                    void *ui_data,
754                                                    const char *uri,
755                                                    OSSL_LIB_CTX *libctx,
756                                                    const char *propq)
757 {
758     OSSL_STORE_INFO *store_info = NULL;
759     X509 *cert = NULL;
760
761     /*
762      * In most cases, we can try to interpret the serialized data as a trusted
763      * cert (X509 + X509_AUX) and fall back to reading it as a normal cert
764      * (just X509), but if the PEM name specifically declares it as a trusted
765      * cert, then no fallback should be engaged.  |ignore_trusted| tells if
766      * the fallback can be used (1) or not (0).
767      */
768     int ignore_trusted = 1;
769
770     if (pem_name != NULL) {
771         if (strcmp(pem_name, PEM_STRING_X509_TRUSTED) == 0)
772             ignore_trusted = 0;
773         else if (strcmp(pem_name, PEM_STRING_X509_OLD) != 0
774                  && strcmp(pem_name, PEM_STRING_X509) != 0)
775             /* No match */
776             return NULL;
777         *matchcount = 1;
778     }
779
780     cert = X509_new_ex(libctx, propq);
781     if (cert == NULL)
782         return NULL;
783
784     if ((d2i_X509_AUX(&cert, &blob, len)) != NULL
785         || (ignore_trusted && (d2i_X509(&cert, &blob, len)) != NULL)) {
786         *matchcount = 1;
787         store_info = OSSL_STORE_INFO_new_CERT(cert);
788     }
789
790     if (store_info == NULL)
791         X509_free(cert);
792
793     return store_info;
794 }
795
796 static FILE_HANDLER X509Certificate_handler = {
797     "X509Certificate",
798     try_decode_X509Certificate
799 };
800
801 /*
802  * X.509 CRL decoder.
803  */
804 static OSSL_STORE_INFO *try_decode_X509CRL(const char *pem_name,
805                                            const char *pem_header,
806                                            const unsigned char *blob,
807                                            size_t len, void **pctx,
808                                            int *matchcount,
809                                            const UI_METHOD *ui_method,
810                                            void *ui_data, const char *uri,
811                                            OSSL_LIB_CTX *libctx,
812                                            const char *propq)
813 {
814     OSSL_STORE_INFO *store_info = NULL;
815     X509_CRL *crl = NULL;
816
817     if (pem_name != NULL) {
818         if (strcmp(pem_name, PEM_STRING_X509_CRL) != 0)
819             /* No match */
820             return NULL;
821         *matchcount = 1;
822     }
823
824     if ((crl = d2i_X509_CRL(NULL, &blob, len)) != NULL) {
825         *matchcount = 1;
826         store_info = OSSL_STORE_INFO_new_CRL(crl);
827     }
828
829     if (store_info == NULL)
830         X509_CRL_free(crl);
831
832     return store_info;
833 }
834
835 static FILE_HANDLER X509CRL_handler = {
836     "X509CRL",
837     try_decode_X509CRL
838 };
839
840 /*
841  * To finish it all off, we collect all the handlers.
842  */
843 static const FILE_HANDLER *file_handlers[] = {
844     &PKCS12_handler,
845     &PKCS8Encrypted_handler,
846     &X509Certificate_handler,
847     &X509CRL_handler,
848     &params_handler,
849     &PUBKEY_handler,
850     &PrivateKey_handler,
851 };
852
853
854 /*-
855  *  The loader itself
856  *  -----------------
857  */
858
859 struct ossl_store_loader_ctx_st {
860     char *uri;                   /* The URI we currently try to load */
861     enum {
862         is_raw = 0,
863         is_pem,
864         is_dir
865     } type;
866     int errcnt;
867 #define FILE_FLAG_SECMEM         (1<<0)
868 #define FILE_FLAG_ATTACHED       (1<<1)
869     unsigned int flags;
870     union {
871         struct { /* Used with is_raw and is_pem */
872             BIO *file;
873
874             /*
875              * The following are used when the handler is marked as
876              * repeatable
877              */
878             const FILE_HANDLER *last_handler;
879             void *last_handler_ctx;
880         } file;
881         struct { /* Used with is_dir */
882             OPENSSL_DIR_CTX *ctx;
883             int end_reached;
884
885             /*
886              * When a search expression is given, these are filled in.
887              * |search_name| contains the file basename to look for.
888              * The string is exactly 8 characters long.
889              */
890             char search_name[9];
891
892             /*
893              * The directory reading utility we have combines opening with
894              * reading the first name.  To make sure we can detect the end
895              * at the right time, we read early and cache the name.
896              */
897             const char *last_entry;
898             int last_errno;
899         } dir;
900     } _;
901
902     /* Expected object type.  May be unspecified */
903     int expected_type;
904
905     OSSL_LIB_CTX *libctx;
906     char *propq;
907 };
908
909 static void OSSL_STORE_LOADER_CTX_free(OSSL_STORE_LOADER_CTX *ctx)
910 {
911     if (ctx == NULL)
912         return;
913
914     OPENSSL_free(ctx->propq);
915     OPENSSL_free(ctx->uri);
916     if (ctx->type != is_dir) {
917         if (ctx->_.file.last_handler != NULL) {
918             ctx->_.file.last_handler->destroy_ctx(&ctx->_.file.last_handler_ctx);
919             ctx->_.file.last_handler_ctx = NULL;
920             ctx->_.file.last_handler = NULL;
921         }
922     }
923     OPENSSL_free(ctx);
924 }
925
926 static int file_find_type(OSSL_STORE_LOADER_CTX *ctx)
927 {
928     BIO *buff = NULL;
929     char peekbuf[4096] = { 0, };
930
931     if ((buff = BIO_new(BIO_f_buffer())) == NULL)
932         return 0;
933
934     ctx->_.file.file = BIO_push(buff, ctx->_.file.file);
935     if (BIO_buffer_peek(ctx->_.file.file, peekbuf, sizeof(peekbuf) - 1) > 0) {
936         peekbuf[sizeof(peekbuf) - 1] = '\0';
937         if (strstr(peekbuf, "-----BEGIN ") != NULL)
938             ctx->type = is_pem;
939     }
940     return 1;
941 }
942
943 /* This function has quite some overlap with providers/implementations/storemgmt/file_store.c */
944 static OSSL_STORE_LOADER_CTX *file_open_ex
945     (const OSSL_STORE_LOADER *loader, const char *uri,
946      OSSL_LIB_CTX *libctx, const char *propq,
947      const UI_METHOD *ui_method, void *ui_data)
948 {
949     OSSL_STORE_LOADER_CTX *ctx = NULL;
950     struct stat st;
951     struct {
952         const char *path;
953         unsigned int check_absolute:1;
954     } path_data[2];
955     size_t path_data_n = 0, i;
956     const char *path, *p = uri, *q;
957
958     /*
959      * First step, just take the URI as is.
960      */
961     path_data[path_data_n].check_absolute = 0;
962     path_data[path_data_n++].path = uri;
963
964     /*
965      * Second step, if the URI appears to start with the "file" scheme,
966      * extract the path and make that the second path to check.
967      * There's a special case if the URI also contains an authority, then
968      * the full URI shouldn't be used as a path anywhere.
969      */
970     if (CHECK_AND_SKIP_CASE_PREFIX(p, "file:")) {
971         q = p;
972         if (CHECK_AND_SKIP_PREFIX(q, "//")) {
973             path_data_n--;           /* Invalidate using the full URI */
974             if (CHECK_AND_SKIP_CASE_PREFIX(q, "localhost/")
975                     || CHECK_AND_SKIP_PREFIX(q, "/")) {
976                 p = q - 1;
977             } else {
978                 ATTICerr(0, ATTIC_R_URI_AUTHORITY_UNSUPPORTED);
979                 return NULL;
980             }
981         }
982
983         path_data[path_data_n].check_absolute = 1;
984 #ifdef _WIN32
985         /* Windows "file:" URIs with a drive letter start with a '/' */
986         if (p[0] == '/' && p[2] == ':' && p[3] == '/') {
987             char c = tolower(p[1]);
988
989             if (c >= 'a' && c <= 'z') {
990                 p++;
991                 /* We know it's absolute, so no need to check */
992                 path_data[path_data_n].check_absolute = 0;
993             }
994         }
995 #endif
996         path_data[path_data_n++].path = p;
997     }
998
999
1000     for (i = 0, path = NULL; path == NULL && i < path_data_n; i++) {
1001         /*
1002          * If the scheme "file" was an explicit part of the URI, the path must
1003          * be absolute.  So says RFC 8089
1004          */
1005         if (path_data[i].check_absolute && path_data[i].path[0] != '/') {
1006             ATTICerr(0, ATTIC_R_PATH_MUST_BE_ABSOLUTE);
1007             ERR_add_error_data(1, path_data[i].path);
1008             return NULL;
1009         }
1010
1011         if (stat(path_data[i].path, &st) < 0) {
1012             ERR_raise_data(ERR_LIB_SYS, errno,
1013                            "calling stat(%s)",
1014                            path_data[i].path);
1015         } else {
1016             path = path_data[i].path;
1017         }
1018     }
1019     if (path == NULL) {
1020         return NULL;
1021     }
1022
1023     /* Successfully found a working path */
1024
1025     ctx = OPENSSL_zalloc(sizeof(*ctx));
1026     if (ctx == NULL) {
1027         ATTICerr(0, ERR_R_MALLOC_FAILURE);
1028         return NULL;
1029     }
1030     ctx->uri = OPENSSL_strdup(uri);
1031     if (ctx->uri == NULL) {
1032         ATTICerr(0, ERR_R_MALLOC_FAILURE);
1033         goto err;
1034     }
1035
1036     if (S_ISDIR(st.st_mode)) {
1037         ctx->type = is_dir;
1038         ctx->_.dir.last_entry = OPENSSL_DIR_read(&ctx->_.dir.ctx, path);
1039         ctx->_.dir.last_errno = errno;
1040         if (ctx->_.dir.last_entry == NULL) {
1041             if (ctx->_.dir.last_errno != 0) {
1042                 ERR_raise(ERR_LIB_SYS, ctx->_.dir.last_errno);
1043                 goto err;
1044             }
1045             ctx->_.dir.end_reached = 1;
1046         }
1047     } else if ((ctx->_.file.file = BIO_new_file(path, "rb")) == NULL
1048                || !file_find_type(ctx)) {
1049         BIO_free_all(ctx->_.file.file);
1050         goto err;
1051     }
1052     if (propq != NULL) {
1053         ctx->propq = OPENSSL_strdup(propq);
1054         if (ctx->propq == NULL) {
1055             ATTICerr(0, ERR_R_MALLOC_FAILURE);
1056             goto err;
1057         }
1058     }
1059     ctx->libctx = libctx;
1060
1061     return ctx;
1062  err:
1063     OSSL_STORE_LOADER_CTX_free(ctx);
1064     return NULL;
1065 }
1066
1067 static OSSL_STORE_LOADER_CTX *file_open
1068     (const OSSL_STORE_LOADER *loader, const char *uri,
1069      const UI_METHOD *ui_method, void *ui_data)
1070 {
1071     return file_open_ex(loader, uri, NULL, NULL, ui_method, ui_data);
1072 }
1073
1074 static OSSL_STORE_LOADER_CTX *file_attach
1075     (const OSSL_STORE_LOADER *loader, BIO *bp,
1076      OSSL_LIB_CTX *libctx, const char *propq,
1077      const UI_METHOD *ui_method, void *ui_data)
1078 {
1079     OSSL_STORE_LOADER_CTX *ctx = NULL;
1080
1081     if ((ctx = OPENSSL_zalloc(sizeof(*ctx))) == NULL
1082         || (propq != NULL && (ctx->propq = OPENSSL_strdup(propq)) == NULL)) {
1083         ATTICerr(0, ERR_R_MALLOC_FAILURE);
1084         OSSL_STORE_LOADER_CTX_free(ctx);
1085         return NULL;
1086     }
1087     ctx->libctx = libctx;
1088     ctx->flags |= FILE_FLAG_ATTACHED;
1089     ctx->_.file.file = bp;
1090     if (!file_find_type(ctx)) {
1091         /* Safety measure */
1092         ctx->_.file.file = NULL;
1093         goto err;
1094     }
1095     return ctx;
1096 err:
1097     OSSL_STORE_LOADER_CTX_free(ctx);
1098     return NULL;
1099 }
1100
1101 static int file_ctrl(OSSL_STORE_LOADER_CTX *ctx, int cmd, va_list args)
1102 {
1103     int ret = 1;
1104
1105     switch (cmd) {
1106     case OSSL_STORE_C_USE_SECMEM:
1107         {
1108             int on = *(va_arg(args, int *));
1109
1110             switch (on) {
1111             case 0:
1112                 ctx->flags &= ~FILE_FLAG_SECMEM;
1113                 break;
1114             case 1:
1115                 ctx->flags |= FILE_FLAG_SECMEM;
1116                 break;
1117             default:
1118                 ATTICerr(0, ERR_R_PASSED_INVALID_ARGUMENT);
1119                 ret = 0;
1120                 break;
1121             }
1122         }
1123         break;
1124     default:
1125         break;
1126     }
1127
1128     return ret;
1129 }
1130
1131 static int file_expect(OSSL_STORE_LOADER_CTX *ctx, int expected)
1132 {
1133     ctx->expected_type = expected;
1134     return 1;
1135 }
1136
1137 static int file_find(OSSL_STORE_LOADER_CTX *ctx,
1138                      const OSSL_STORE_SEARCH *search)
1139 {
1140     /*
1141      * If ctx == NULL, the library is looking to know if this loader supports
1142      * the given search type.
1143      */
1144
1145     if (OSSL_STORE_SEARCH_get_type(search) == OSSL_STORE_SEARCH_BY_NAME) {
1146         unsigned long hash = 0;
1147
1148         if (ctx == NULL)
1149             return 1;
1150
1151         if (ctx->type != is_dir) {
1152             ATTICerr(0, ATTIC_R_SEARCH_ONLY_SUPPORTED_FOR_DIRECTORIES);
1153             return 0;
1154         }
1155
1156         hash = X509_NAME_hash_ex(OSSL_STORE_SEARCH_get0_name(search),
1157                                  NULL, NULL, NULL);
1158         BIO_snprintf(ctx->_.dir.search_name, sizeof(ctx->_.dir.search_name),
1159                      "%08lx", hash);
1160         return 1;
1161     }
1162
1163     if (ctx != NULL)
1164         ATTICerr(0, ATTIC_R_UNSUPPORTED_SEARCH_TYPE);
1165     return 0;
1166 }
1167
1168 static OSSL_STORE_INFO *file_load_try_decode(OSSL_STORE_LOADER_CTX *ctx,
1169                                              const char *pem_name,
1170                                              const char *pem_header,
1171                                              unsigned char *data, size_t len,
1172                                              const UI_METHOD *ui_method,
1173                                              void *ui_data, int *matchcount)
1174 {
1175     OSSL_STORE_INFO *result = NULL;
1176     BUF_MEM *new_mem = NULL;
1177     char *new_pem_name = NULL;
1178     int t = 0;
1179
1180  again:
1181     {
1182         size_t i = 0;
1183         void *handler_ctx = NULL;
1184         const FILE_HANDLER **matching_handlers =
1185             OPENSSL_zalloc(sizeof(*matching_handlers)
1186                            * OSSL_NELEM(file_handlers));
1187
1188         if (matching_handlers == NULL) {
1189             ATTICerr(0, ERR_R_MALLOC_FAILURE);
1190             goto err;
1191         }
1192
1193         *matchcount = 0;
1194         for (i = 0; i < OSSL_NELEM(file_handlers); i++) {
1195             const FILE_HANDLER *handler = file_handlers[i];
1196             int try_matchcount = 0;
1197             void *tmp_handler_ctx = NULL;
1198             OSSL_STORE_INFO *tmp_result;
1199             unsigned long err;
1200
1201             ERR_set_mark();
1202             tmp_result =
1203                 handler->try_decode(pem_name, pem_header, data, len,
1204                                     &tmp_handler_ctx, &try_matchcount,
1205                                     ui_method, ui_data, ctx->uri,
1206                                     ctx->libctx, ctx->propq);
1207             /* avoid flooding error queue with low-level ASN.1 parse errors */
1208             err = ERR_peek_last_error();
1209             if (ERR_GET_LIB(err) == ERR_LIB_ASN1
1210                     && ERR_GET_REASON(err) == ERR_R_NESTED_ASN1_ERROR)
1211                 ERR_pop_to_mark();
1212             else
1213                 ERR_clear_last_mark();
1214
1215             if (try_matchcount > 0) {
1216
1217                 matching_handlers[*matchcount] = handler;
1218
1219                 if (handler_ctx)
1220                     handler->destroy_ctx(&handler_ctx);
1221                 handler_ctx = tmp_handler_ctx;
1222
1223                 if ((*matchcount += try_matchcount) > 1) {
1224                     /* more than one match => ambiguous, kill any result */
1225                     store_info_free(result);
1226                     store_info_free(tmp_result);
1227                     if (handler->destroy_ctx != NULL)
1228                         handler->destroy_ctx(&handler_ctx);
1229                     handler_ctx = NULL;
1230                     tmp_result = NULL;
1231                     result = NULL;
1232                 }
1233                 if (result == NULL)
1234                     result = tmp_result;
1235                 if (result == NULL) /* e.g., PKCS#12 file decryption error */
1236                     break;
1237             }
1238         }
1239
1240         if (result != NULL
1241                 && *matchcount == 1 && matching_handlers[0]->repeatable) {
1242             ctx->_.file.last_handler = matching_handlers[0];
1243             ctx->_.file.last_handler_ctx = handler_ctx;
1244         }
1245
1246         OPENSSL_free(matching_handlers);
1247     }
1248
1249  err:
1250     OPENSSL_free(new_pem_name);
1251     BUF_MEM_free(new_mem);
1252
1253     if (result != NULL
1254         && (t = OSSL_STORE_INFO_get_type(result)) == STORE_INFO_EMBEDDED) {
1255         struct embedded_st *embedded = get0_EMBEDDED(result);
1256
1257         /* "steal" the embedded data */
1258         pem_name = new_pem_name = embedded->pem_name;
1259         new_mem = embedded->blob;
1260         data = (unsigned char *)new_mem->data;
1261         len = new_mem->length;
1262         embedded->pem_name = NULL;
1263         embedded->blob = NULL;
1264
1265         store_info_free(result);
1266         result = NULL;
1267         goto again;
1268     }
1269
1270     return result;
1271 }
1272
1273 static OSSL_STORE_INFO *file_load_try_repeat(OSSL_STORE_LOADER_CTX *ctx,
1274                                              const UI_METHOD *ui_method,
1275                                              void *ui_data)
1276 {
1277     OSSL_STORE_INFO *result = NULL;
1278     int try_matchcount = 0;
1279
1280     if (ctx->_.file.last_handler != NULL) {
1281         result =
1282             ctx->_.file.last_handler->try_decode(NULL, NULL, NULL, 0,
1283                                                  &ctx->_.file.last_handler_ctx,
1284                                                  &try_matchcount,
1285                                                  ui_method, ui_data, ctx->uri,
1286                                                  ctx->libctx, ctx->propq);
1287
1288         if (result == NULL) {
1289             ctx->_.file.last_handler->destroy_ctx(&ctx->_.file.last_handler_ctx);
1290             ctx->_.file.last_handler_ctx = NULL;
1291             ctx->_.file.last_handler = NULL;
1292         }
1293     }
1294     return result;
1295 }
1296
1297 static void pem_free_flag(void *pem_data, int secure, size_t num)
1298 {
1299     if (secure)
1300         OPENSSL_secure_clear_free(pem_data, num);
1301     else
1302         OPENSSL_free(pem_data);
1303 }
1304 static int file_read_pem(BIO *bp, char **pem_name, char **pem_header,
1305                          unsigned char **data, long *len,
1306                          const UI_METHOD *ui_method, void *ui_data,
1307                          const char *uri, int secure)
1308 {
1309     int i = secure
1310         ? PEM_read_bio_ex(bp, pem_name, pem_header, data, len,
1311                           PEM_FLAG_SECURE | PEM_FLAG_EAY_COMPATIBLE)
1312         : PEM_read_bio(bp, pem_name, pem_header, data, len);
1313
1314     if (i <= 0)
1315         return 0;
1316
1317     /*
1318      * 10 is the number of characters in "Proc-Type:", which
1319      * PEM_get_EVP_CIPHER_INFO() requires to be present.
1320      * If the PEM header has less characters than that, it's
1321      * not worth spending cycles on it.
1322      */
1323     if (strlen(*pem_header) > 10) {
1324         EVP_CIPHER_INFO cipher;
1325         struct pem_pass_data pass_data;
1326
1327         if (!PEM_get_EVP_CIPHER_INFO(*pem_header, &cipher)
1328             || !file_fill_pem_pass_data(&pass_data, "PEM pass phrase", uri,
1329                                         ui_method, ui_data)
1330             || !PEM_do_header(&cipher, *data, len, file_get_pem_pass,
1331                               &pass_data)) {
1332             return 0;
1333         }
1334     }
1335     return 1;
1336 }
1337
1338 static OSSL_STORE_INFO *file_try_read_msblob(BIO *bp, int *matchcount)
1339 {
1340     OSSL_STORE_INFO *result = NULL;
1341     int ispub = -1;
1342
1343     {
1344         unsigned int magic = 0, bitlen = 0;
1345         int isdss = 0;
1346         unsigned char peekbuf[16] = { 0, };
1347         const unsigned char *p = peekbuf;
1348
1349         if (BIO_buffer_peek(bp, peekbuf, sizeof(peekbuf)) <= 0)
1350             return 0;
1351         if (!ossl_do_blob_header(&p, sizeof(peekbuf), &magic, &bitlen,
1352                                  &isdss, &ispub))
1353             return 0;
1354     }
1355
1356     (*matchcount)++;
1357
1358     {
1359         EVP_PKEY *tmp = ispub
1360             ? b2i_PublicKey_bio(bp)
1361             : b2i_PrivateKey_bio(bp);
1362
1363         if (tmp == NULL
1364             || (result = OSSL_STORE_INFO_new_PKEY(tmp)) == NULL) {
1365             EVP_PKEY_free(tmp);
1366             return 0;
1367         }
1368     }
1369
1370     return result;
1371 }
1372
1373 static OSSL_STORE_INFO *file_try_read_PVK(BIO *bp, const UI_METHOD *ui_method,
1374                                           void *ui_data, const char *uri,
1375                                           int *matchcount)
1376 {
1377     OSSL_STORE_INFO *result = NULL;
1378
1379     {
1380         unsigned int saltlen = 0, keylen = 0;
1381         unsigned char peekbuf[24] = { 0, };
1382         const unsigned char *p = peekbuf;
1383
1384         if (BIO_buffer_peek(bp, peekbuf, sizeof(peekbuf)) <= 0)
1385             return 0;
1386         if (!ossl_do_PVK_header(&p, sizeof(peekbuf), 0, &saltlen, &keylen))
1387             return 0;
1388     }
1389
1390     (*matchcount)++;
1391
1392     {
1393         EVP_PKEY *tmp = NULL;
1394         struct pem_pass_data pass_data;
1395
1396         if (!file_fill_pem_pass_data(&pass_data, "PVK pass phrase", uri,
1397                                      ui_method, ui_data)
1398             || (tmp = b2i_PVK_bio(bp, file_get_pem_pass, &pass_data)) == NULL
1399             || (result = OSSL_STORE_INFO_new_PKEY(tmp)) == NULL) {
1400             EVP_PKEY_free(tmp);
1401             return 0;
1402         }
1403     }
1404
1405     return result;
1406 }
1407
1408 static int file_read_asn1(BIO *bp, unsigned char **data, long *len)
1409 {
1410     BUF_MEM *mem = NULL;
1411
1412     if (asn1_d2i_read_bio(bp, &mem) < 0)
1413         return 0;
1414
1415     *data = (unsigned char *)mem->data;
1416     *len = (long)mem->length;
1417     OPENSSL_free(mem);
1418
1419     return 1;
1420 }
1421
1422 static int file_name_to_uri(OSSL_STORE_LOADER_CTX *ctx, const char *name,
1423                             char **data)
1424 {
1425     assert(name != NULL);
1426     assert(data != NULL);
1427     {
1428         const char *pathsep = ossl_ends_with_dirsep(ctx->uri) ? "" : "/";
1429         long calculated_length = strlen(ctx->uri) + strlen(pathsep)
1430             + strlen(name) + 1 /* \0 */;
1431
1432         *data = OPENSSL_zalloc(calculated_length);
1433         if (*data == NULL) {
1434             ATTICerr(0, ERR_R_MALLOC_FAILURE);
1435             return 0;
1436         }
1437
1438         OPENSSL_strlcat(*data, ctx->uri, calculated_length);
1439         OPENSSL_strlcat(*data, pathsep, calculated_length);
1440         OPENSSL_strlcat(*data, name, calculated_length);
1441     }
1442     return 1;
1443 }
1444
1445 static int file_name_check(OSSL_STORE_LOADER_CTX *ctx, const char *name)
1446 {
1447     const char *p = NULL;
1448     size_t len = strlen(ctx->_.dir.search_name);
1449
1450     /* If there are no search criteria, all names are accepted */
1451     if (ctx->_.dir.search_name[0] == '\0')
1452         return 1;
1453
1454     /* If the expected type isn't supported, no name is accepted */
1455     if (ctx->expected_type != 0
1456         && ctx->expected_type != OSSL_STORE_INFO_CERT
1457         && ctx->expected_type != OSSL_STORE_INFO_CRL)
1458         return 0;
1459
1460     /*
1461      * First, check the basename
1462      */
1463     if (strncasecmp(name, ctx->_.dir.search_name, len) != 0 || name[len] != '.')
1464         return 0;
1465     p = &name[len + 1];
1466
1467     /*
1468      * Then, if the expected type is a CRL, check that the extension starts
1469      * with 'r'
1470      */
1471     if (*p == 'r') {
1472         p++;
1473         if (ctx->expected_type != 0
1474             && ctx->expected_type != OSSL_STORE_INFO_CRL)
1475             return 0;
1476     } else if (ctx->expected_type == OSSL_STORE_INFO_CRL) {
1477         return 0;
1478     }
1479
1480     /*
1481      * Last, check that the rest of the extension is a decimal number, at
1482      * least one digit long.
1483      */
1484     if (!isdigit(*p))
1485         return 0;
1486     while (isdigit(*p))
1487         p++;
1488
1489 #ifdef __VMS
1490     /*
1491      * One extra step here, check for a possible generation number.
1492      */
1493     if (*p == ';')
1494         for (p++; *p != '\0'; p++)
1495             if (!ossl_isdigit(*p))
1496                 break;
1497 #endif
1498
1499     /*
1500      * If we've reached the end of the string at this point, we've successfully
1501      * found a fitting file name.
1502      */
1503     return *p == '\0';
1504 }
1505
1506 static int file_eof(OSSL_STORE_LOADER_CTX *ctx);
1507 static int file_error(OSSL_STORE_LOADER_CTX *ctx);
1508 static OSSL_STORE_INFO *file_load(OSSL_STORE_LOADER_CTX *ctx,
1509                                   const UI_METHOD *ui_method,
1510                                   void *ui_data)
1511 {
1512     OSSL_STORE_INFO *result = NULL;
1513
1514     ctx->errcnt = 0;
1515
1516     if (ctx->type == is_dir) {
1517         do {
1518             char *newname = NULL;
1519
1520             if (ctx->_.dir.last_entry == NULL) {
1521                 if (!ctx->_.dir.end_reached) {
1522                     assert(ctx->_.dir.last_errno != 0);
1523                     ERR_raise(ERR_LIB_SYS, ctx->_.dir.last_errno);
1524                     ctx->errcnt++;
1525                 }
1526                 return NULL;
1527             }
1528
1529             if (ctx->_.dir.last_entry[0] != '.'
1530                 && file_name_check(ctx, ctx->_.dir.last_entry)
1531                 && !file_name_to_uri(ctx, ctx->_.dir.last_entry, &newname))
1532                 return NULL;
1533
1534             /*
1535              * On the first call (with a NULL context), OPENSSL_DIR_read()
1536              * cares about the second argument.  On the following calls, it
1537              * only cares that it isn't NULL.  Therefore, we can safely give
1538              * it our URI here.
1539              */
1540             ctx->_.dir.last_entry = OPENSSL_DIR_read(&ctx->_.dir.ctx, ctx->uri);
1541             ctx->_.dir.last_errno = errno;
1542             if (ctx->_.dir.last_entry == NULL && ctx->_.dir.last_errno == 0)
1543                 ctx->_.dir.end_reached = 1;
1544
1545             if (newname != NULL
1546                 && (result = OSSL_STORE_INFO_new_NAME(newname)) == NULL) {
1547                 OPENSSL_free(newname);
1548                 ATTICerr(0, ERR_R_OSSL_STORE_LIB);
1549                 return NULL;
1550             }
1551         } while (result == NULL && !file_eof(ctx));
1552     } else {
1553         int matchcount = -1;
1554
1555      again:
1556         result = file_load_try_repeat(ctx, ui_method, ui_data);
1557         if (result != NULL)
1558             return result;
1559
1560         if (file_eof(ctx))
1561             return NULL;
1562
1563         do {
1564             char *pem_name = NULL;      /* PEM record name */
1565             char *pem_header = NULL;    /* PEM record header */
1566             unsigned char *data = NULL; /* DER encoded data */
1567             long len = 0;               /* DER encoded data length */
1568
1569             matchcount = -1;
1570             if (ctx->type == is_pem) {
1571                 if (!file_read_pem(ctx->_.file.file, &pem_name, &pem_header,
1572                                    &data, &len, ui_method, ui_data, ctx->uri,
1573                                    (ctx->flags & FILE_FLAG_SECMEM) != 0)) {
1574                     ctx->errcnt++;
1575                     goto endloop;
1576                 }
1577             } else {
1578                 if ((result = file_try_read_msblob(ctx->_.file.file,
1579                                                    &matchcount)) != NULL
1580                     || (result = file_try_read_PVK(ctx->_.file.file,
1581                                                    ui_method, ui_data, ctx->uri,
1582                                                    &matchcount)) != NULL)
1583                     goto endloop;
1584
1585                 if (!file_read_asn1(ctx->_.file.file, &data, &len)) {
1586                     ctx->errcnt++;
1587                     goto endloop;
1588                 }
1589             }
1590
1591             result = file_load_try_decode(ctx, pem_name, pem_header, data, len,
1592                                           ui_method, ui_data, &matchcount);
1593
1594             if (result != NULL)
1595                 goto endloop;
1596
1597             /*
1598              * If a PEM name matches more than one handler, the handlers are
1599              * badly coded.
1600              */
1601             if (!ossl_assert(pem_name == NULL || matchcount <= 1)) {
1602                 ctx->errcnt++;
1603                 goto endloop;
1604             }
1605
1606             if (matchcount > 1) {
1607                 ATTICerr(0, ATTIC_R_AMBIGUOUS_CONTENT_TYPE);
1608             } else if (matchcount == 1) {
1609                 /*
1610                  * If there are other errors on the stack, they already show
1611                  * what the problem is.
1612                  */
1613                 if (ERR_peek_error() == 0) {
1614                     ATTICerr(0, ATTIC_R_UNSUPPORTED_CONTENT_TYPE);
1615                     if (pem_name != NULL)
1616                         ERR_add_error_data(3, "PEM type is '", pem_name, "'");
1617                 }
1618             }
1619             if (matchcount > 0)
1620                 ctx->errcnt++;
1621
1622          endloop:
1623             pem_free_flag(pem_name, (ctx->flags & FILE_FLAG_SECMEM) != 0, 0);
1624             pem_free_flag(pem_header, (ctx->flags & FILE_FLAG_SECMEM) != 0, 0);
1625             pem_free_flag(data, (ctx->flags & FILE_FLAG_SECMEM) != 0, len);
1626         } while (matchcount == 0 && !file_eof(ctx) && !file_error(ctx));
1627
1628         /* We bail out on ambiguity */
1629         if (matchcount > 1) {
1630             store_info_free(result);
1631             return NULL;
1632         }
1633
1634         if (result != NULL
1635             && ctx->expected_type != 0
1636             && ctx->expected_type != OSSL_STORE_INFO_get_type(result)) {
1637             store_info_free(result);
1638             goto again;
1639         }
1640     }
1641
1642     return result;
1643 }
1644
1645 static int file_error(OSSL_STORE_LOADER_CTX *ctx)
1646 {
1647     return ctx->errcnt > 0;
1648 }
1649
1650 static int file_eof(OSSL_STORE_LOADER_CTX *ctx)
1651 {
1652     if (ctx->type == is_dir)
1653         return ctx->_.dir.end_reached;
1654
1655     if (ctx->_.file.last_handler != NULL
1656         && !ctx->_.file.last_handler->eof(ctx->_.file.last_handler_ctx))
1657         return 0;
1658     return BIO_eof(ctx->_.file.file);
1659 }
1660
1661 static int file_close(OSSL_STORE_LOADER_CTX *ctx)
1662 {
1663     if ((ctx->flags & FILE_FLAG_ATTACHED) == 0) {
1664         if (ctx->type == is_dir)
1665             OPENSSL_DIR_end(&ctx->_.dir.ctx);
1666         else
1667             BIO_free_all(ctx->_.file.file);
1668     } else {
1669         /*
1670          * Because file_attach() called file_find_type(), we know that a
1671          * BIO_f_buffer() has been pushed on top of the regular BIO.
1672          */
1673         BIO *buff = ctx->_.file.file;
1674
1675         /* Detach buff */
1676         (void)BIO_pop(ctx->_.file.file);
1677         /* Safety measure */
1678         ctx->_.file.file = NULL;
1679
1680         BIO_free(buff);
1681     }
1682     OSSL_STORE_LOADER_CTX_free(ctx);
1683     return 1;
1684 }
1685
1686 /*-
1687  * ENGINE management
1688  */
1689
1690 static const char *loader_attic_id = "loader_attic";
1691 static const char *loader_attic_name = "'file:' loader";
1692
1693 static OSSL_STORE_LOADER *loader_attic = NULL;
1694
1695 static int loader_attic_init(ENGINE *e)
1696 {
1697     return 1;
1698 }
1699
1700
1701 static int loader_attic_finish(ENGINE *e)
1702 {
1703     return 1;
1704 }
1705
1706
1707 static int loader_attic_destroy(ENGINE *e)
1708 {
1709     OSSL_STORE_LOADER *loader = OSSL_STORE_unregister_loader("file");
1710
1711     if (loader == NULL)
1712         return 0;
1713
1714     ERR_unload_ATTIC_strings();
1715     OSSL_STORE_LOADER_free(loader);
1716     return 1;
1717 }
1718
1719 static int bind_loader_attic(ENGINE *e)
1720 {
1721
1722     /* Ensure the ATTIC error handling is set up on best effort basis */
1723     ERR_load_ATTIC_strings();
1724
1725     if (/* Create the OSSL_STORE_LOADER */
1726         (loader_attic = OSSL_STORE_LOADER_new(e, "file")) == NULL
1727         || !OSSL_STORE_LOADER_set_open_ex(loader_attic, file_open_ex)
1728         || !OSSL_STORE_LOADER_set_open(loader_attic, file_open)
1729         || !OSSL_STORE_LOADER_set_attach(loader_attic, file_attach)
1730         || !OSSL_STORE_LOADER_set_ctrl(loader_attic, file_ctrl)
1731         || !OSSL_STORE_LOADER_set_expect(loader_attic, file_expect)
1732         || !OSSL_STORE_LOADER_set_find(loader_attic, file_find)
1733         || !OSSL_STORE_LOADER_set_load(loader_attic, file_load)
1734         || !OSSL_STORE_LOADER_set_eof(loader_attic, file_eof)
1735         || !OSSL_STORE_LOADER_set_error(loader_attic, file_error)
1736         || !OSSL_STORE_LOADER_set_close(loader_attic, file_close)
1737         /* Init the engine itself */
1738         || !ENGINE_set_id(e, loader_attic_id)
1739         || !ENGINE_set_name(e, loader_attic_name)
1740         || !ENGINE_set_destroy_function(e, loader_attic_destroy)
1741         || !ENGINE_set_init_function(e, loader_attic_init)
1742         || !ENGINE_set_finish_function(e, loader_attic_finish)
1743         /* Finally, register the method with libcrypto */
1744         || !OSSL_STORE_register_loader(loader_attic)) {
1745         OSSL_STORE_LOADER_free(loader_attic);
1746         loader_attic = NULL;
1747         ATTICerr(0, ATTIC_R_INIT_FAILED);
1748         return 0;
1749     }
1750
1751     return 1;
1752 }
1753
1754 #ifdef OPENSSL_NO_DYNAMIC_ENGINE
1755 # error "Only allowed as dynamically shared object"
1756 #endif
1757
1758 static int bind_helper(ENGINE *e, const char *id)
1759 {
1760     if (id && (strcmp(id, loader_attic_id) != 0))
1761         return 0;
1762     if (!bind_loader_attic(e))
1763         return 0;
1764     return 1;
1765 }
1766
1767 IMPLEMENT_DYNAMIC_CHECK_FN()
1768     IMPLEMENT_DYNAMIC_BIND_FN(bind_helper)