450bbba0537b6a20adf923e0cae58254804b4f19
[openssl.git] / crypto / x509 / by_file.c
1 /*
2  * Copyright 1995-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 #include <stdio.h>
11 #include <time.h>
12 #include <errno.h>
13
14 #include "internal/cryptlib.h"
15 #include <openssl/buffer.h>
16 #include <openssl/x509.h>
17 #include <openssl/pem.h>
18 #include "x509_local.h"
19
20 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
21                         long argl, char **ret);
22 static int by_file_ctrl_ex(X509_LOOKUP *ctx, int cmd, const char *argc,
23                            long argl, char **ret, OSSL_LIB_CTX *libctx,
24                            const char *propq);
25
26
27 static X509_LOOKUP_METHOD x509_file_lookup = {
28     "Load file into cache",
29     NULL,                       /* new_item */
30     NULL,                       /* free */
31     NULL,                       /* init */
32     NULL,                       /* shutdown */
33     by_file_ctrl,               /* ctrl */
34     NULL,                       /* get_by_subject */
35     NULL,                       /* get_by_issuer_serial */
36     NULL,                       /* get_by_fingerprint */
37     NULL,                       /* get_by_alias */
38     NULL,                       /* get_by_subject_ex */
39     by_file_ctrl_ex,            /* ctrl_ex */
40 };
41
42 X509_LOOKUP_METHOD *X509_LOOKUP_file(void)
43 {
44     return &x509_file_lookup;
45 }
46
47 static int by_file_ctrl_ex(X509_LOOKUP *ctx, int cmd, const char *argp,
48                            long argl, char **ret, OSSL_LIB_CTX *libctx,
49                            const char *propq)
50 {
51     int ok = 0;
52     const char *file;
53
54     switch (cmd) {
55     case X509_L_FILE_LOAD:
56         if (argl == X509_FILETYPE_DEFAULT) {
57             file = ossl_safe_getenv(X509_get_default_cert_file_env());
58             if (file)
59                 ok = (X509_load_cert_crl_file_ex(ctx, file, X509_FILETYPE_PEM,
60                                                  libctx, propq) != 0);
61             else
62                 ok = (X509_load_cert_crl_file_ex(
63                          ctx, X509_get_default_cert_file(),
64                          X509_FILETYPE_PEM, libctx, propq) != 0);
65
66             if (!ok)
67                 ERR_raise(ERR_LIB_X509, X509_R_LOADING_DEFAULTS);
68         } else {
69             if (argl == X509_FILETYPE_PEM)
70                 ok = (X509_load_cert_crl_file_ex(ctx, argp, X509_FILETYPE_PEM,
71                                                  libctx, propq) != 0);
72             else
73                 ok = (X509_load_cert_file_ex(ctx, argp, (int)argl, libctx,
74                                              propq) != 0);
75         }
76         break;
77     }
78     return ok;
79 }
80
81 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd,
82                         const char *argp, long argl, char **ret)
83 {
84     return by_file_ctrl_ex(ctx, cmd, argp, argl, ret, NULL, NULL);
85 }
86
87 int X509_load_cert_file_ex(X509_LOOKUP *ctx, const char *file, int type,
88                            OSSL_LIB_CTX *libctx, const char *propq)
89 {
90     BIO *in = NULL;
91     int count = 0;
92     X509 *x = NULL;
93
94     in = BIO_new(BIO_s_file());
95
96     if ((in == NULL) || (BIO_read_filename(in, file) <= 0)) {
97         ERR_raise(ERR_LIB_X509, ERR_R_BIO_LIB);
98         goto err;
99     }
100
101     x = X509_new_ex(libctx, propq);
102     if (x == NULL) {
103         ERR_raise(ERR_LIB_X509, ERR_R_ASN1_LIB);
104         goto err;
105     }
106
107     if (type == X509_FILETYPE_PEM) {
108         for (;;) {
109             ERR_set_mark();
110             if (PEM_read_bio_X509_AUX(in, &x, NULL, "") == NULL) {
111                 if ((ERR_GET_REASON(ERR_peek_last_error()) ==
112                      PEM_R_NO_START_LINE) && (count > 0)) {
113                     ERR_pop_to_mark();
114                     break;
115                 } else {
116                     ERR_clear_last_mark();
117                     if (count == 0) {
118                         ERR_raise(ERR_LIB_X509, X509_R_NO_CERTIFICATE_FOUND);
119                     } else {
120                         ERR_raise(ERR_LIB_X509, ERR_R_PEM_LIB);
121                         count = 0;
122                     }
123                     goto err;
124                 }
125             }
126             ERR_clear_last_mark();
127             if (!X509_STORE_add_cert(ctx->store_ctx, x)) {
128                 count = 0;
129                 goto err;
130             }
131             count++;
132         }
133     } else if (type == X509_FILETYPE_ASN1) {
134         if (d2i_X509_bio(in, &x) == NULL) {
135             ERR_raise(ERR_LIB_X509, X509_R_NO_CERTIFICATE_FOUND);
136             goto err;
137         }
138         count = X509_STORE_add_cert(ctx->store_ctx, x);
139     } else {
140         ERR_raise(ERR_LIB_X509, X509_R_BAD_X509_FILETYPE);
141         goto err;
142     }
143  err:
144     X509_free(x);
145     BIO_free(in);
146     return count;
147 }
148
149 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type)
150 {
151     return X509_load_cert_file_ex(ctx, file, type, NULL, NULL);
152 }
153
154 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type)
155 {
156     BIO *in = NULL;
157     int count = 0;
158     X509_CRL *x = NULL;
159
160     in = BIO_new(BIO_s_file());
161
162     if ((in == NULL) || (BIO_read_filename(in, file) <= 0)) {
163         ERR_raise(ERR_LIB_X509, ERR_R_BIO_LIB);
164         goto err;
165     }
166
167     if (type == X509_FILETYPE_PEM) {
168         for (;;) {
169             x = PEM_read_bio_X509_CRL(in, NULL, NULL, "");
170             if (x == NULL) {
171                 if ((ERR_GET_REASON(ERR_peek_last_error()) ==
172                      PEM_R_NO_START_LINE) && (count > 0)) {
173                     ERR_clear_error();
174                     break;
175                 } else {
176                     if (count == 0) {
177                         ERR_raise(ERR_LIB_X509, X509_R_NO_CRL_FOUND);
178                     } else {
179                         ERR_raise(ERR_LIB_X509, ERR_R_PEM_LIB);
180                         count = 0;
181                     }
182                     goto err;
183                 }
184             }
185             if (!X509_STORE_add_crl(ctx->store_ctx, x)) {
186                 count = 0;
187                 goto err;
188             }
189             count++;
190         }
191     } else if (type == X509_FILETYPE_ASN1) {
192         x = d2i_X509_CRL_bio(in, NULL);
193         if (x == NULL) {
194             ERR_raise(ERR_LIB_X509, X509_R_NO_CRL_FOUND);
195             goto err;
196         }
197         count = X509_STORE_add_crl(ctx->store_ctx, x);
198     } else {
199         ERR_raise(ERR_LIB_X509, X509_R_BAD_X509_FILETYPE);
200         goto err;
201     }
202  err:
203     X509_CRL_free(x);
204     BIO_free(in);
205     return count;
206 }
207
208 int X509_load_cert_crl_file_ex(X509_LOOKUP *ctx, const char *file, int type,
209                                OSSL_LIB_CTX *libctx, const char *propq)
210 {
211     STACK_OF(X509_INFO) *inf = NULL;
212     X509_INFO *itmp = NULL;
213     BIO *in = NULL;
214     int i, count = 0;
215
216     if (type != X509_FILETYPE_PEM)
217         return X509_load_cert_file_ex(ctx, file, type, libctx, propq);
218     in = BIO_new_file(file, "r");
219     if (in == NULL) {
220         ERR_raise(ERR_LIB_X509, ERR_R_BIO_LIB);
221         return 0;
222     }
223     inf = PEM_X509_INFO_read_bio_ex(in, NULL, NULL, "", libctx, propq);
224     BIO_free(in);
225     if (inf == NULL) {
226         ERR_raise(ERR_LIB_X509, ERR_R_PEM_LIB);
227         return 0;
228     }
229     for (i = 0; i < sk_X509_INFO_num(inf); i++) {
230         itmp = sk_X509_INFO_value(inf, i);
231         if (itmp->x509) {
232             if (!X509_STORE_add_cert(ctx->store_ctx, itmp->x509)) {
233                 count = 0;
234                 goto err;
235             }
236             count++;
237         }
238         if (itmp->crl) {
239             if (!X509_STORE_add_crl(ctx->store_ctx, itmp->crl)) {
240                 count = 0;
241                 goto err;
242             }
243             count++;
244         }
245     }
246     if (count == 0)
247         ERR_raise(ERR_LIB_X509, X509_R_NO_CERTIFICATE_OR_CRL_FOUND);
248  err:
249     sk_X509_INFO_pop_free(inf, X509_INFO_free);
250     return count;
251 }
252
253 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type)
254 {
255     return X509_load_cert_crl_file_ex(ctx, file, type, NULL, NULL);
256 }
257