1 /* $OpenBSD: by_dir.c,v 1.38 2017/01/29 17:49:23 beck Exp $ */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
59 #include <sys/types.h>
67 #include <openssl/opensslconf.h>
69 #include <openssl/err.h>
70 #include <openssl/lhash.h>
71 #include <openssl/x509.h>
73 # include <sys/stat.h>
75 typedef struct lookup_dir_hashes_st
{
80 typedef struct lookup_dir_entry_st
{
83 STACK_OF(BY_DIR_HASH
) *hashes
;
86 typedef struct lookup_dir_st
{
88 STACK_OF(BY_DIR_ENTRY
) *dirs
;
91 DECLARE_STACK_OF(BY_DIR_HASH
)
92 DECLARE_STACK_OF(BY_DIR_ENTRY
)
94 static int dir_ctrl(X509_LOOKUP
*ctx
, int cmd
, const char *argp
, long argl
,
96 static int new_dir(X509_LOOKUP
*lu
);
97 static void free_dir(X509_LOOKUP
*lu
);
98 static int add_cert_dir(BY_DIR
*ctx
, const char *dir
, int type
);
99 static int get_cert_by_subject(X509_LOOKUP
*xl
, int type
, X509_NAME
*name
,
102 static X509_LOOKUP_METHOD x509_dir_lookup
= {
103 .name
= "Load certs from files in a directory",
109 .get_by_subject
= get_cert_by_subject
,
110 .get_by_issuer_serial
= NULL
,
111 .get_by_fingerprint
= NULL
,
112 .get_by_alias
= NULL
,
116 X509_LOOKUP_hash_dir(void)
118 return (&x509_dir_lookup
);
122 dir_ctrl(X509_LOOKUP
*ctx
, int cmd
, const char *argp
, long argl
,
128 ld
= (BY_DIR
*)ctx
->method_data
;
132 if (argl
== X509_FILETYPE_DEFAULT
) {
133 ret
= add_cert_dir(ld
, X509_get_default_cert_dir(),
136 X509error(X509_R_LOADING_CERT_DIR
);
139 ret
= add_cert_dir(ld
, argp
, (int)argl
);
146 new_dir(X509_LOOKUP
*lu
)
150 if ((a
= malloc(sizeof(BY_DIR
))) == NULL
)
152 if ((a
->buffer
= BUF_MEM_new()) == NULL
) {
157 lu
->method_data
= (char *)a
;
162 by_dir_hash_free(BY_DIR_HASH
*hash
)
168 by_dir_hash_cmp(const BY_DIR_HASH
* const *a
,
169 const BY_DIR_HASH
* const *b
)
171 if ((*a
)->hash
> (*b
)->hash
)
173 if ((*a
)->hash
< (*b
)->hash
)
179 by_dir_entry_free(BY_DIR_ENTRY
*ent
)
183 sk_BY_DIR_HASH_pop_free(ent
->hashes
, by_dir_hash_free
);
188 free_dir(X509_LOOKUP
*lu
)
192 a
= (BY_DIR
*)lu
->method_data
;
194 sk_BY_DIR_ENTRY_pop_free(a
->dirs
, by_dir_entry_free
);
195 if (a
->buffer
!= NULL
)
196 BUF_MEM_free(a
->buffer
);
201 add_cert_dir(BY_DIR
*ctx
, const char *dir
, int type
)
204 const char *s
, *ss
, *p
;
207 if (dir
== NULL
|| !*dir
) {
208 X509error(X509_R_INVALID_DIRECTORY
);
215 if ((*p
== ':') || (*p
== '\0')) {
222 for (j
= 0; j
< sk_BY_DIR_ENTRY_num(ctx
->dirs
); j
++) {
223 ent
= sk_BY_DIR_ENTRY_value(ctx
->dirs
, j
);
224 if (strlen(ent
->dir
) == (size_t)len
&&
225 strncmp(ent
->dir
, ss
, (size_t)len
) == 0)
228 if (j
< sk_BY_DIR_ENTRY_num(ctx
->dirs
))
230 if (ctx
->dirs
== NULL
) {
231 ctx
->dirs
= sk_BY_DIR_ENTRY_new_null();
233 X509error(ERR_R_MALLOC_FAILURE
);
237 ent
= malloc(sizeof(BY_DIR_ENTRY
));
239 X509error(ERR_R_MALLOC_FAILURE
);
242 ent
->dir_type
= type
;
243 ent
->hashes
= sk_BY_DIR_HASH_new(by_dir_hash_cmp
);
244 ent
->dir
= strndup(ss
, (size_t)len
);
245 if (!ent
->dir
|| !ent
->hashes
) {
246 X509error(ERR_R_MALLOC_FAILURE
);
247 by_dir_entry_free(ent
);
250 if (!sk_BY_DIR_ENTRY_push(ctx
->dirs
, ent
)) {
251 X509error(ERR_R_MALLOC_FAILURE
);
252 by_dir_entry_free(ent
);
256 } while (*p
++ != '\0');
261 get_cert_by_subject(X509_LOOKUP
*xl
, int type
, X509_NAME
*name
,
268 X509_CINF st_x509_cinf
;
272 X509_CRL_INFO st_crl_info
;
279 X509_OBJECT stmp
, *tmp
;
280 const char *postfix
="";
286 if (type
== X509_LU_X509
) {
287 data
.x509
.st_x509
.cert_info
= &data
.x509
.st_x509_cinf
;
288 data
.x509
.st_x509_cinf
.subject
= name
;
289 stmp
.data
.x509
= &data
.x509
.st_x509
;
291 } else if (type
== X509_LU_CRL
) {
292 data
.crl
.st_crl
.crl
= &data
.crl
.st_crl_info
;
293 data
.crl
.st_crl_info
.issuer
= name
;
294 stmp
.data
.crl
= &data
.crl
.st_crl
;
297 X509error(X509_R_WRONG_LOOKUP_TYPE
);
301 if ((b
= BUF_MEM_new()) == NULL
) {
302 X509error(ERR_R_BUF_LIB
);
306 ctx
= (BY_DIR
*)xl
->method_data
;
308 h
= X509_NAME_hash(name
);
309 for (i
= 0; i
< sk_BY_DIR_ENTRY_num(ctx
->dirs
); i
++) {
312 BY_DIR_HASH htmp
, *hent
;
313 ent
= sk_BY_DIR_ENTRY_value(ctx
->dirs
, i
);
314 j
= strlen(ent
->dir
) + 1 + 8 + 6 + 1 + 1;
315 if (!BUF_MEM_grow(b
, j
)) {
316 X509error(ERR_R_MALLOC_FAILURE
);
319 if (type
== X509_LU_CRL
&& ent
->hashes
) {
321 CRYPTO_r_lock(CRYPTO_LOCK_X509_STORE
);
322 idx
= sk_BY_DIR_HASH_find(ent
->hashes
, &htmp
);
324 hent
= sk_BY_DIR_HASH_value(ent
->hashes
, idx
);
330 CRYPTO_r_unlock(CRYPTO_LOCK_X509_STORE
);
336 (void) snprintf(b
->data
, b
->max
, "%s/%08lx.%s%d",
337 ent
->dir
, h
, postfix
, k
);
341 if (stat(b
->data
, &st
) < 0)
345 if (type
== X509_LU_X509
) {
346 if ((X509_load_cert_file(xl
, b
->data
,
347 ent
->dir_type
)) == 0)
349 } else if (type
== X509_LU_CRL
) {
350 if ((X509_load_crl_file(xl
, b
->data
,
351 ent
->dir_type
)) == 0)
354 /* else case will caught higher up */
358 /* we have added it to the cache so now pull it out again */
359 CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE
);
360 j
= sk_X509_OBJECT_find(xl
->store_ctx
->objs
, &stmp
);
362 tmp
= sk_X509_OBJECT_value(xl
->store_ctx
->objs
, j
);
365 CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE
);
367 /* If a CRL, update the last file suffix added for this */
368 if (type
== X509_LU_CRL
) {
369 CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE
);
371 * Look for entry again in case another thread added
376 idx
= sk_BY_DIR_HASH_find(ent
->hashes
, &htmp
);
378 hent
= sk_BY_DIR_HASH_value(
382 hent
= malloc(sizeof(BY_DIR_HASH
));
384 X509error(ERR_R_MALLOC_FAILURE
);
385 CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE
);
391 if (!sk_BY_DIR_HASH_push(ent
->hashes
, hent
)) {
392 X509error(ERR_R_MALLOC_FAILURE
);
393 CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE
);
398 } else if (hent
->suffix
< k
)
401 CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE
);
407 ret
->type
= tmp
->type
;
408 memcpy(&ret
->data
, &tmp
->data
, sizeof(ret
->data
));
410 * If we were going to up the reference count,
411 * we would need to do it on a perl 'type' basis
413 /* CRYPTO_add(&tmp->data.x509->references,1,