b83a473017341f2dc07576044195aeb9e1779ada
[openssl.git] / crypto / x509 / by_dir.c
1 /*
2  * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 "internal/cryptlib.h"
12 #include <stdio.h>
13 #include <time.h>
14 #include <errno.h>
15 #include <sys/types.h>
16
17 #ifndef OPENSSL_NO_POSIX_IO
18 # include <sys/stat.h>
19 #endif
20
21
22 #include <openssl/lhash.h>
23 #include <openssl/x509.h>
24 #include "internal/x509_int.h"
25 #include "x509_lcl.h"
26
27 struct lookup_dir_hashes_st {
28     unsigned long hash;
29     int suffix;
30 };
31
32 struct lookup_dir_entry_st {
33     char *dir;
34     int dir_type;
35     STACK_OF(BY_DIR_HASH) *hashes;
36 };
37
38 typedef struct lookup_dir_st {
39     BUF_MEM *buffer;
40     STACK_OF(BY_DIR_ENTRY) *dirs;
41     CRYPTO_RWLOCK *lock;
42 } BY_DIR;
43
44 static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl,
45                     char **ret);
46 static int new_dir(X509_LOOKUP *lu);
47 static void free_dir(X509_LOOKUP *lu);
48 static int add_cert_dir(BY_DIR *ctx, const char *dir, int type);
49 static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type,
50                                X509_NAME *name, X509_OBJECT *ret);
51 static X509_LOOKUP_METHOD x509_dir_lookup = {
52     "Load certs from files in a directory",
53     new_dir,                    /* new */
54     free_dir,                   /* free */
55     NULL,                       /* init */
56     NULL,                       /* shutdown */
57     dir_ctrl,                   /* ctrl */
58     get_cert_by_subject,        /* get_by_subject */
59     NULL,                       /* get_by_issuer_serial */
60     NULL,                       /* get_by_fingerprint */
61     NULL,                       /* get_by_alias */
62 };
63
64 X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void)
65 {
66     return (&x509_dir_lookup);
67 }
68
69 static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl,
70                     char **retp)
71 {
72     int ret = 0;
73     BY_DIR *ld;
74     char *dir = NULL;
75
76     ld = (BY_DIR *)ctx->method_data;
77
78     switch (cmd) {
79     case X509_L_ADD_DIR:
80         if (argl == X509_FILETYPE_DEFAULT) {
81             dir = (char *)getenv(X509_get_default_cert_dir_env());
82             if (dir)
83                 ret = add_cert_dir(ld, dir, X509_FILETYPE_PEM);
84             else
85                 ret = add_cert_dir(ld, X509_get_default_cert_dir(),
86                                    X509_FILETYPE_PEM);
87             if (!ret) {
88                 X509err(X509_F_DIR_CTRL, X509_R_LOADING_CERT_DIR);
89             }
90         } else
91             ret = add_cert_dir(ld, argp, (int)argl);
92         break;
93     }
94     return (ret);
95 }
96
97 static int new_dir(X509_LOOKUP *lu)
98 {
99     BY_DIR *a;
100
101     if ((a = OPENSSL_malloc(sizeof(*a))) == NULL)
102         return 0;
103     if ((a->buffer = BUF_MEM_new()) == NULL) {
104         OPENSSL_free(a);
105         return 0;
106     }
107     a->dirs = NULL;
108     a->lock = CRYPTO_THREAD_lock_new();
109     if (a->lock == NULL) {
110         BUF_MEM_free(a->buffer);
111         OPENSSL_free(a);
112         return 0;
113     }
114     lu->method_data = (char *)a;
115     return 1;
116 }
117
118 static void by_dir_hash_free(BY_DIR_HASH *hash)
119 {
120     OPENSSL_free(hash);
121 }
122
123 static int by_dir_hash_cmp(const BY_DIR_HASH *const *a,
124                            const BY_DIR_HASH *const *b)
125 {
126     if ((*a)->hash > (*b)->hash)
127         return 1;
128     if ((*a)->hash < (*b)->hash)
129         return -1;
130     return 0;
131 }
132
133 static void by_dir_entry_free(BY_DIR_ENTRY *ent)
134 {
135     OPENSSL_free(ent->dir);
136     sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
137     OPENSSL_free(ent);
138 }
139
140 static void free_dir(X509_LOOKUP *lu)
141 {
142     BY_DIR *a;
143
144     a = (BY_DIR *)lu->method_data;
145     sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
146     BUF_MEM_free(a->buffer);
147     CRYPTO_THREAD_lock_free(a->lock);
148     OPENSSL_free(a);
149 }
150
151 static int add_cert_dir(BY_DIR *ctx, const char *dir, int type)
152 {
153     int j;
154     size_t len;
155     const char *s, *ss, *p;
156
157     if (dir == NULL || !*dir) {
158         X509err(X509_F_ADD_CERT_DIR, X509_R_INVALID_DIRECTORY);
159         return 0;
160     }
161
162     s = dir;
163     p = s;
164     do {
165         if ((*p == LIST_SEPARATOR_CHAR) || (*p == '\0')) {
166             BY_DIR_ENTRY *ent;
167             ss = s;
168             s = p + 1;
169             len = p - ss;
170             if (len == 0)
171                 continue;
172             for (j = 0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++) {
173                 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
174                 if (strlen(ent->dir) == len && strncmp(ent->dir, ss, len) == 0)
175                     break;
176             }
177             if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
178                 continue;
179             if (ctx->dirs == NULL) {
180                 ctx->dirs = sk_BY_DIR_ENTRY_new_null();
181                 if (!ctx->dirs) {
182                     X509err(X509_F_ADD_CERT_DIR, ERR_R_MALLOC_FAILURE);
183                     return 0;
184                 }
185             }
186             ent = OPENSSL_malloc(sizeof(*ent));
187             if (ent == NULL)
188                 return 0;
189             ent->dir_type = type;
190             ent->hashes = sk_BY_DIR_HASH_new(by_dir_hash_cmp);
191             ent->dir = OPENSSL_strndup(ss, len);
192             if (ent->dir == NULL || ent->hashes == NULL) {
193                 by_dir_entry_free(ent);
194                 return 0;
195             }
196             if (!sk_BY_DIR_ENTRY_push(ctx->dirs, ent)) {
197                 by_dir_entry_free(ent);
198                 return 0;
199             }
200         }
201     } while (*p++ != '\0');
202     return 1;
203 }
204
205 static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type,
206                                X509_NAME *name, X509_OBJECT *ret)
207 {
208     BY_DIR *ctx;
209     union {
210         X509 st_x509;
211         X509_CRL crl;
212     } data;
213     int ok = 0;
214     int i, j, k;
215     unsigned long h;
216     BUF_MEM *b = NULL;
217     X509_OBJECT stmp, *tmp;
218     const char *postfix = "";
219
220     if (name == NULL)
221         return (0);
222
223     stmp.type = type;
224     if (type == X509_LU_X509) {
225         data.st_x509.cert_info.subject = name;
226         stmp.data.x509 = &data.st_x509;
227         postfix = "";
228     } else if (type == X509_LU_CRL) {
229         data.crl.crl.issuer = name;
230         stmp.data.crl = &data.crl;
231         postfix = "r";
232     } else {
233         X509err(X509_F_GET_CERT_BY_SUBJECT, X509_R_WRONG_LOOKUP_TYPE);
234         goto finish;
235     }
236
237     if ((b = BUF_MEM_new()) == NULL) {
238         X509err(X509_F_GET_CERT_BY_SUBJECT, ERR_R_BUF_LIB);
239         goto finish;
240     }
241
242     ctx = (BY_DIR *)xl->method_data;
243
244     h = X509_NAME_hash(name);
245     for (i = 0; i < sk_BY_DIR_ENTRY_num(ctx->dirs); i++) {
246         BY_DIR_ENTRY *ent;
247         int idx;
248         BY_DIR_HASH htmp, *hent;
249         ent = sk_BY_DIR_ENTRY_value(ctx->dirs, i);
250         j = strlen(ent->dir) + 1 + 8 + 6 + 1 + 1;
251         if (!BUF_MEM_grow(b, j)) {
252             X509err(X509_F_GET_CERT_BY_SUBJECT, ERR_R_MALLOC_FAILURE);
253             goto finish;
254         }
255         if (type == X509_LU_CRL && ent->hashes) {
256             htmp.hash = h;
257             CRYPTO_THREAD_read_lock(ctx->lock);
258             idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
259             if (idx >= 0) {
260                 hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
261                 k = hent->suffix;
262             } else {
263                 hent = NULL;
264                 k = 0;
265             }
266             CRYPTO_THREAD_unlock(ctx->lock);
267         } else {
268             k = 0;
269             hent = NULL;
270         }
271         for (;;) {
272             char c = '/';
273 #ifdef OPENSSL_SYS_VMS
274             c = ent->dir[strlen(ent->dir) - 1];
275             if (c != ':' && c != '>' && c != ']') {
276                 /*
277                  * If no separator is present, we assume the directory
278                  * specifier is a logical name, and add a colon.  We really
279                  * should use better VMS routines for merging things like
280                  * this, but this will do for now... -- Richard Levitte
281                  */
282                 c = ':';
283             } else {
284                 c = '\0';
285             }
286 #endif
287             if (c == '\0') {
288                 /*
289                  * This is special.  When c == '\0', no directory separator
290                  * should be added.
291                  */
292                 BIO_snprintf(b->data, b->max,
293                              "%s%08lx.%s%d", ent->dir, h, postfix, k);
294             } else {
295                 BIO_snprintf(b->data, b->max,
296                              "%s%c%08lx.%s%d", ent->dir, c, h, postfix, k);
297             }
298 #ifndef OPENSSL_NO_POSIX_IO
299 # ifdef _WIN32
300 #  define stat _stat
301 # endif
302             {
303                 struct stat st;
304                 if (stat(b->data, &st) < 0)
305                     break;
306             }
307 #endif
308             /* found one. */
309             if (type == X509_LU_X509) {
310                 if ((X509_load_cert_file(xl, b->data, ent->dir_type)) == 0)
311                     break;
312             } else if (type == X509_LU_CRL) {
313                 if ((X509_load_crl_file(xl, b->data, ent->dir_type)) == 0)
314                     break;
315             }
316             /* else case will caught higher up */
317             k++;
318         }
319
320         /*
321          * we have added it to the cache so now pull it out again
322          */
323         CRYPTO_THREAD_write_lock(ctx->lock);
324         j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp);
325         if (j != -1)
326             tmp = sk_X509_OBJECT_value(xl->store_ctx->objs, j);
327         else
328             tmp = NULL;
329         CRYPTO_THREAD_unlock(ctx->lock);
330
331         /* If a CRL, update the last file suffix added for this */
332
333         if (type == X509_LU_CRL) {
334             CRYPTO_THREAD_write_lock(ctx->lock);
335             /*
336              * Look for entry again in case another thread added an entry
337              * first.
338              */
339             if (!hent) {
340                 htmp.hash = h;
341                 idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
342                 if (idx >= 0)
343                     hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
344             }
345             if (!hent) {
346                 hent = OPENSSL_malloc(sizeof(*hent));
347                 if (hent == NULL) {
348                     CRYPTO_THREAD_unlock(ctx->lock);
349                     X509err(X509_F_GET_CERT_BY_SUBJECT, ERR_R_MALLOC_FAILURE);
350                     ok = 0;
351                     goto finish;
352                 }
353                 hent->hash = h;
354                 hent->suffix = k;
355                 if (!sk_BY_DIR_HASH_push(ent->hashes, hent)) {
356                     CRYPTO_THREAD_unlock(ctx->lock);
357                     OPENSSL_free(hent);
358                     ok = 0;
359                     goto finish;
360                 }
361             } else if (hent->suffix < k) {
362                 hent->suffix = k;
363             }
364
365             CRYPTO_THREAD_unlock(ctx->lock);
366
367         }
368
369         if (tmp != NULL) {
370             ok = 1;
371             ret->type = tmp->type;
372             memcpy(&ret->data, &tmp->data, sizeof(ret->data));
373
374             /*
375              * Clear any errors that might have been raised processing empty
376              * or malformed files.
377              */
378             ERR_clear_error();
379
380             /*
381              * If we were going to up the reference count, we would need to
382              * do it on a perl 'type' basis
383              */
384         /*- CRYPTO_add(&tmp->data.x509->references,1,
385                     CRYPTO_LOCK_X509);*/
386             goto finish;
387         }
388     }
389  finish:
390     BUF_MEM_free(b);
391     return (ok);
392 }