Move to REF_DEBUG, for consistency.
[openssl.git] / crypto / x509 / x509_lu.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include "internal/cryptlib.h"
60 #include <openssl/lhash.h>
61 #include <openssl/x509.h>
62 #include "internal/x509_int.h"
63 #include <openssl/x509v3.h>
64 #include "x509_lcl.h"
65
66 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method)
67 {
68     X509_LOOKUP *ret;
69
70     ret = OPENSSL_zalloc(sizeof(*ret));
71     if (ret == NULL)
72         return NULL;
73
74     ret->method = method;
75     if ((method->new_item != NULL) && !method->new_item(ret)) {
76         OPENSSL_free(ret);
77         return NULL;
78     }
79     return ret;
80 }
81
82 void X509_LOOKUP_free(X509_LOOKUP *ctx)
83 {
84     if (ctx == NULL)
85         return;
86     if ((ctx->method != NULL) && (ctx->method->free != NULL))
87         (*ctx->method->free) (ctx);
88     OPENSSL_free(ctx);
89 }
90
91 int X509_LOOKUP_init(X509_LOOKUP *ctx)
92 {
93     if (ctx->method == NULL)
94         return 0;
95     if (ctx->method->init != NULL)
96         return ctx->method->init(ctx);
97     else
98         return 1;
99 }
100
101 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx)
102 {
103     if (ctx->method == NULL)
104         return 0;
105     if (ctx->method->shutdown != NULL)
106         return ctx->method->shutdown(ctx);
107     else
108         return 1;
109 }
110
111 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl,
112                      char **ret)
113 {
114     if (ctx->method == NULL)
115         return -1;
116     if (ctx->method->ctrl != NULL)
117         return ctx->method->ctrl(ctx, cmd, argc, argl, ret);
118     else
119         return 1;
120 }
121
122 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,
123                            X509_OBJECT *ret)
124 {
125     if ((ctx->method == NULL) || (ctx->method->get_by_subject == NULL))
126         return X509_LU_FAIL;
127     if (ctx->skip)
128         return 0;
129     return ctx->method->get_by_subject(ctx, type, name, ret);
130 }
131
132 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,
133                                  ASN1_INTEGER *serial, X509_OBJECT *ret)
134 {
135     if ((ctx->method == NULL) || (ctx->method->get_by_issuer_serial == NULL))
136         return X509_LU_FAIL;
137     return ctx->method->get_by_issuer_serial(ctx, type, name, serial, ret);
138 }
139
140 int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type,
141                                unsigned char *bytes, int len,
142                                X509_OBJECT *ret)
143 {
144     if ((ctx->method == NULL) || (ctx->method->get_by_fingerprint == NULL))
145         return X509_LU_FAIL;
146     return ctx->method->get_by_fingerprint(ctx, type, bytes, len, ret);
147 }
148
149 int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, int len,
150                          X509_OBJECT *ret)
151 {
152     if ((ctx->method == NULL) || (ctx->method->get_by_alias == NULL))
153         return X509_LU_FAIL;
154     return ctx->method->get_by_alias(ctx, type, str, len, ret);
155 }
156
157 static int x509_object_cmp(const X509_OBJECT *const *a,
158                            const X509_OBJECT *const *b)
159 {
160     int ret;
161
162     ret = ((*a)->type - (*b)->type);
163     if (ret)
164         return ret;
165     switch ((*a)->type) {
166     case X509_LU_X509:
167         ret = X509_subject_name_cmp((*a)->data.x509, (*b)->data.x509);
168         break;
169     case X509_LU_CRL:
170         ret = X509_CRL_cmp((*a)->data.crl, (*b)->data.crl);
171         break;
172     default:
173         /* abort(); */
174         return 0;
175     }
176     return ret;
177 }
178
179 X509_STORE *X509_STORE_new(void)
180 {
181     X509_STORE *ret;
182
183     if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL)
184         return NULL;
185     if ((ret->objs = sk_X509_OBJECT_new(x509_object_cmp)) == NULL)
186         goto err;
187     ret->cache = 1;
188     if ((ret->get_cert_methods = sk_X509_LOOKUP_new_null()) == NULL)
189         goto err;
190
191     if ((ret->param = X509_VERIFY_PARAM_new()) == NULL)
192         goto err;
193
194     if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE, ret, &ret->ex_data))
195         goto err;
196
197     ret->references = 1;
198     return ret;
199 err:
200     X509_VERIFY_PARAM_free(ret->param);
201     sk_X509_OBJECT_free(ret->objs);
202     sk_X509_LOOKUP_free(ret->get_cert_methods);
203     OPENSSL_free(ret);
204     return NULL;
205 }
206
207 static void cleanup(X509_OBJECT *a)
208 {
209     if (!a)
210         return;
211     if (a->type == X509_LU_X509) {
212         X509_free(a->data.x509);
213     } else if (a->type == X509_LU_CRL) {
214         X509_CRL_free(a->data.crl);
215     } else {
216         /* abort(); */
217     }
218
219     OPENSSL_free(a);
220 }
221
222 void X509_STORE_free(X509_STORE *vfy)
223 {
224     int i;
225     STACK_OF(X509_LOOKUP) *sk;
226     X509_LOOKUP *lu;
227
228     if (vfy == NULL)
229         return;
230
231     i = CRYPTO_add(&vfy->references, -1, CRYPTO_LOCK_X509_STORE);
232     REF_PRINT_COUNT("X509_STORE", vfy);
233     if (i > 0)
234         return;
235     REF_ASSERT_ISNT(i < 0);
236
237     sk = vfy->get_cert_methods;
238     for (i = 0; i < sk_X509_LOOKUP_num(sk); i++) {
239         lu = sk_X509_LOOKUP_value(sk, i);
240         X509_LOOKUP_shutdown(lu);
241         X509_LOOKUP_free(lu);
242     }
243     sk_X509_LOOKUP_free(sk);
244     sk_X509_OBJECT_pop_free(vfy->objs, cleanup);
245
246     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE, vfy, &vfy->ex_data);
247     X509_VERIFY_PARAM_free(vfy->param);
248     OPENSSL_free(vfy);
249 }
250
251 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m)
252 {
253     int i;
254     STACK_OF(X509_LOOKUP) *sk;
255     X509_LOOKUP *lu;
256
257     sk = v->get_cert_methods;
258     for (i = 0; i < sk_X509_LOOKUP_num(sk); i++) {
259         lu = sk_X509_LOOKUP_value(sk, i);
260         if (m == lu->method) {
261             return lu;
262         }
263     }
264     /* a new one */
265     lu = X509_LOOKUP_new(m);
266     if (lu == NULL)
267         return NULL;
268     else {
269         lu->store_ctx = v;
270         if (sk_X509_LOOKUP_push(v->get_cert_methods, lu))
271             return lu;
272         else {
273             X509_LOOKUP_free(lu);
274             return NULL;
275         }
276     }
277 }
278
279 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, X509_LOOKUP_TYPE type,
280                               X509_NAME *name, X509_OBJECT *ret)
281 {
282     X509_STORE *ctx = vs->ctx;
283     X509_LOOKUP *lu;
284     X509_OBJECT stmp, *tmp;
285     int i, j;
286
287     CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
288     tmp = X509_OBJECT_retrieve_by_subject(ctx->objs, type, name);
289     CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
290
291     if (tmp == NULL || type == X509_LU_CRL) {
292         for (i = vs->current_method;
293              i < sk_X509_LOOKUP_num(ctx->get_cert_methods); i++) {
294             lu = sk_X509_LOOKUP_value(ctx->get_cert_methods, i);
295             j = X509_LOOKUP_by_subject(lu, type, name, &stmp);
296             if (j < 0) {
297                 vs->current_method = j;
298                 return j;
299             } else if (j) {
300                 tmp = &stmp;
301                 break;
302             }
303         }
304         vs->current_method = 0;
305         if (tmp == NULL)
306             return 0;
307     }
308
309 /*- if (ret->data.ptr != NULL)
310             X509_OBJECT_free_contents(ret); */
311
312     ret->type = tmp->type;
313     ret->data.ptr = tmp->data.ptr;
314
315     X509_OBJECT_up_ref_count(ret);
316
317     return 1;
318 }
319
320 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x)
321 {
322     X509_OBJECT *obj;
323     int ret = 1;
324
325     if (x == NULL)
326         return 0;
327     obj = OPENSSL_malloc(sizeof(*obj));
328     if (obj == NULL) {
329         X509err(X509_F_X509_STORE_ADD_CERT, ERR_R_MALLOC_FAILURE);
330         return 0;
331     }
332     obj->type = X509_LU_X509;
333     obj->data.x509 = x;
334
335     CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
336
337     X509_OBJECT_up_ref_count(obj);
338
339     if (X509_OBJECT_retrieve_match(ctx->objs, obj)) {
340         X509_OBJECT_free_contents(obj);
341         OPENSSL_free(obj);
342         X509err(X509_F_X509_STORE_ADD_CERT,
343                 X509_R_CERT_ALREADY_IN_HASH_TABLE);
344         ret = 0;
345     } else
346         sk_X509_OBJECT_push(ctx->objs, obj);
347
348     CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
349
350     return ret;
351 }
352
353 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x)
354 {
355     X509_OBJECT *obj;
356     int ret = 1;
357
358     if (x == NULL)
359         return 0;
360     obj = OPENSSL_malloc(sizeof(*obj));
361     if (obj == NULL) {
362         X509err(X509_F_X509_STORE_ADD_CRL, ERR_R_MALLOC_FAILURE);
363         return 0;
364     }
365     obj->type = X509_LU_CRL;
366     obj->data.crl = x;
367
368     CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
369
370     X509_OBJECT_up_ref_count(obj);
371
372     if (X509_OBJECT_retrieve_match(ctx->objs, obj)) {
373         X509_OBJECT_free_contents(obj);
374         OPENSSL_free(obj);
375         X509err(X509_F_X509_STORE_ADD_CRL, X509_R_CERT_ALREADY_IN_HASH_TABLE);
376         ret = 0;
377     } else
378         sk_X509_OBJECT_push(ctx->objs, obj);
379
380     CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
381
382     return ret;
383 }
384
385 void X509_OBJECT_up_ref_count(X509_OBJECT *a)
386 {
387     switch (a->type) {
388     default:
389         break;
390     case X509_LU_X509:
391         X509_up_ref(a->data.x509);
392         break;
393     case X509_LU_CRL:
394         X509_CRL_up_ref(a->data.crl);
395         break;
396     }
397 }
398
399 void X509_OBJECT_free_contents(X509_OBJECT *a)
400 {
401     if (!a)
402         return;
403     switch (a->type) {
404     default:
405         break;
406     case X509_LU_X509:
407         X509_free(a->data.x509);
408         break;
409     case X509_LU_CRL:
410         X509_CRL_free(a->data.crl);
411         break;
412     }
413 }
414
415 static int x509_object_idx_cnt(STACK_OF(X509_OBJECT) *h, int type,
416                                X509_NAME *name, int *pnmatch)
417 {
418     X509_OBJECT stmp;
419     X509 x509_s;
420     X509_CRL crl_s;
421     int idx;
422
423     stmp.type = type;
424     switch (type) {
425     case X509_LU_X509:
426         stmp.data.x509 = &x509_s;
427         x509_s.cert_info.subject = name;
428         break;
429     case X509_LU_CRL:
430         stmp.data.crl = &crl_s;
431         crl_s.crl.issuer = name;
432         break;
433     default:
434         /* abort(); */
435         return -1;
436     }
437
438     idx = sk_X509_OBJECT_find(h, &stmp);
439     if (idx >= 0 && pnmatch) {
440         int tidx;
441         const X509_OBJECT *tobj, *pstmp;
442         *pnmatch = 1;
443         pstmp = &stmp;
444         for (tidx = idx + 1; tidx < sk_X509_OBJECT_num(h); tidx++) {
445             tobj = sk_X509_OBJECT_value(h, tidx);
446             if (x509_object_cmp(&tobj, &pstmp))
447                 break;
448             (*pnmatch)++;
449         }
450     }
451     return idx;
452 }
453
454 int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type,
455                                X509_NAME *name)
456 {
457     return x509_object_idx_cnt(h, type, name, NULL);
458 }
459
460 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,
461                                              int type, X509_NAME *name)
462 {
463     int idx;
464     idx = X509_OBJECT_idx_by_subject(h, type, name);
465     if (idx == -1)
466         return NULL;
467     return sk_X509_OBJECT_value(h, idx);
468 }
469
470 STACK_OF(X509) *X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
471 {
472     int i, idx, cnt;
473     STACK_OF(X509) *sk;
474     X509 *x;
475     X509_OBJECT *obj;
476     sk = sk_X509_new_null();
477     CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
478     idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
479     if (idx < 0) {
480         /*
481          * Nothing found in cache: do lookup to possibly add new objects to
482          * cache
483          */
484         X509_OBJECT xobj;
485         CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
486         if (!X509_STORE_get_by_subject(ctx, X509_LU_X509, nm, &xobj)) {
487             sk_X509_free(sk);
488             return NULL;
489         }
490         X509_OBJECT_free_contents(&xobj);
491         CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
492         idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
493         if (idx < 0) {
494             CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
495             sk_X509_free(sk);
496             return NULL;
497         }
498     }
499     for (i = 0; i < cnt; i++, idx++) {
500         obj = sk_X509_OBJECT_value(ctx->ctx->objs, idx);
501         x = obj->data.x509;
502         X509_up_ref(x);
503         if (!sk_X509_push(sk, x)) {
504             CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
505             X509_free(x);
506             sk_X509_pop_free(sk, X509_free);
507             return NULL;
508         }
509     }
510     CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
511     return sk;
512
513 }
514
515 STACK_OF(X509_CRL) *X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm)
516 {
517     int i, idx, cnt;
518     STACK_OF(X509_CRL) *sk;
519     X509_CRL *x;
520     X509_OBJECT *obj, xobj;
521     sk = sk_X509_CRL_new_null();
522
523     /*
524      * Always do lookup to possibly add new CRLs to cache
525      */
526     if (!X509_STORE_get_by_subject(ctx, X509_LU_CRL, nm, &xobj)) {
527         sk_X509_CRL_free(sk);
528         return NULL;
529     }
530     X509_OBJECT_free_contents(&xobj);
531     CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
532     idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_CRL, nm, &cnt);
533     if (idx < 0) {
534         CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
535         sk_X509_CRL_free(sk);
536         return NULL;
537     }
538
539     for (i = 0; i < cnt; i++, idx++) {
540         obj = sk_X509_OBJECT_value(ctx->ctx->objs, idx);
541         x = obj->data.crl;
542         X509_CRL_up_ref(x);
543         if (!sk_X509_CRL_push(sk, x)) {
544             CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
545             X509_CRL_free(x);
546             sk_X509_CRL_pop_free(sk, X509_CRL_free);
547             return NULL;
548         }
549     }
550     CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
551     return sk;
552 }
553
554 X509_OBJECT *X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h,
555                                         X509_OBJECT *x)
556 {
557     int idx, i;
558     X509_OBJECT *obj;
559     idx = sk_X509_OBJECT_find(h, x);
560     if (idx == -1)
561         return NULL;
562     if ((x->type != X509_LU_X509) && (x->type != X509_LU_CRL))
563         return sk_X509_OBJECT_value(h, idx);
564     for (i = idx; i < sk_X509_OBJECT_num(h); i++) {
565         obj = sk_X509_OBJECT_value(h, i);
566         if (x509_object_cmp
567             ((const X509_OBJECT **)&obj, (const X509_OBJECT **)&x))
568             return NULL;
569         if (x->type == X509_LU_X509) {
570             if (!X509_cmp(obj->data.x509, x->data.x509))
571                 return obj;
572         } else if (x->type == X509_LU_CRL) {
573             if (!X509_CRL_match(obj->data.crl, x->data.crl))
574                 return obj;
575         } else
576             return obj;
577     }
578     return NULL;
579 }
580
581 /*-
582  * Try to get issuer certificate from store. Due to limitations
583  * of the API this can only retrieve a single certificate matching
584  * a given subject name. However it will fill the cache with all
585  * matching certificates, so we can examine the cache for all
586  * matches.
587  *
588  * Return values are:
589  *  1 lookup successful.
590  *  0 certificate not found.
591  * -1 some other error.
592  */
593 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
594 {
595     X509_NAME *xn;
596     X509_OBJECT obj, *pobj;
597     int i, ok, idx, ret;
598     *issuer = NULL;
599     xn = X509_get_issuer_name(x);
600     ok = X509_STORE_get_by_subject(ctx, X509_LU_X509, xn, &obj);
601     if (ok != X509_LU_X509) {
602         if (ok == X509_LU_RETRY) {
603             X509_OBJECT_free_contents(&obj);
604             X509err(X509_F_X509_STORE_CTX_GET1_ISSUER, X509_R_SHOULD_RETRY);
605             return -1;
606         } else if (ok != X509_LU_FAIL) {
607             X509_OBJECT_free_contents(&obj);
608             /* not good :-(, break anyway */
609             return -1;
610         }
611         return 0;
612     }
613     /* If certificate matches all OK */
614     if (ctx->check_issued(ctx, x, obj.data.x509)) {
615         if (x509_check_cert_time(ctx, obj.data.x509, 1)) {
616             *issuer = obj.data.x509;
617             return 1;
618         }
619     }
620     X509_OBJECT_free_contents(&obj);
621
622     /* Else find index of first cert accepted by 'check_issued' */
623     ret = 0;
624     CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
625     idx = X509_OBJECT_idx_by_subject(ctx->ctx->objs, X509_LU_X509, xn);
626     if (idx != -1) {            /* should be true as we've had at least one
627                                  * match */
628         /* Look through all matching certs for suitable issuer */
629         for (i = idx; i < sk_X509_OBJECT_num(ctx->ctx->objs); i++) {
630             pobj = sk_X509_OBJECT_value(ctx->ctx->objs, i);
631             /* See if we've run past the matches */
632             if (pobj->type != X509_LU_X509)
633                 break;
634             if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509)))
635                 break;
636             if (ctx->check_issued(ctx, x, pobj->data.x509)) {
637                 *issuer = pobj->data.x509;
638                 ret = 1;
639                 /*
640                  * If times check, exit with match,
641                  * otherwise keep looking. Leave last
642                  * match in issuer so we return nearest
643                  * match if no certificate time is OK.
644                  */
645
646                 if (x509_check_cert_time(ctx, *issuer, 1))
647                     break;
648             }
649         }
650     }
651     CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
652     if (*issuer)
653         X509_up_ref(*issuer);
654     return ret;
655 }
656
657 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags)
658 {
659     return X509_VERIFY_PARAM_set_flags(ctx->param, flags);
660 }
661
662 int X509_STORE_set_depth(X509_STORE *ctx, int depth)
663 {
664     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
665     return 1;
666 }
667
668 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose)
669 {
670     return X509_VERIFY_PARAM_set_purpose(ctx->param, purpose);
671 }
672
673 int X509_STORE_set_trust(X509_STORE *ctx, int trust)
674 {
675     return X509_VERIFY_PARAM_set_trust(ctx->param, trust);
676 }
677
678 int X509_STORE_set1_param(X509_STORE *ctx, X509_VERIFY_PARAM *param)
679 {
680     return X509_VERIFY_PARAM_set1(ctx->param, param);
681 }
682
683 void X509_STORE_set_verify_cb(X509_STORE *ctx,
684                               int (*verify_cb) (int, X509_STORE_CTX *))
685 {
686     ctx->verify_cb = verify_cb;
687 }
688
689 void X509_STORE_set_lookup_crls_cb(X509_STORE *ctx,
690                                    STACK_OF(X509_CRL) *(*cb) (X509_STORE_CTX
691                                                               *ctx,
692                                                               X509_NAME *nm))
693 {
694     ctx->lookup_crls = cb;
695 }
696
697 X509_STORE *X509_STORE_CTX_get0_store(X509_STORE_CTX *ctx)
698 {
699     return ctx->ctx;
700 }