Tidy up x509_vfy callback handling
[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->lock = CRYPTO_THREAD_lock_new();
198     if (ret->lock == NULL)
199         goto err;
200
201     ret->references = 1;
202     return ret;
203
204 err:
205     X509_VERIFY_PARAM_free(ret->param);
206     sk_X509_OBJECT_free(ret->objs);
207     sk_X509_LOOKUP_free(ret->get_cert_methods);
208     OPENSSL_free(ret);
209     return NULL;
210 }
211
212 static void cleanup(X509_OBJECT *a)
213 {
214     if (!a)
215         return;
216     if (a->type == X509_LU_X509) {
217         X509_free(a->data.x509);
218     } else if (a->type == X509_LU_CRL) {
219         X509_CRL_free(a->data.crl);
220     } else {
221         /* abort(); */
222     }
223
224     OPENSSL_free(a);
225 }
226
227 void X509_STORE_free(X509_STORE *vfy)
228 {
229     int i;
230     STACK_OF(X509_LOOKUP) *sk;
231     X509_LOOKUP *lu;
232
233     if (vfy == NULL)
234         return;
235
236     CRYPTO_atomic_add(&vfy->references, -1, &i, vfy->lock);
237     REF_PRINT_COUNT("X509_STORE", vfy);
238     if (i > 0)
239         return;
240     REF_ASSERT_ISNT(i < 0);
241
242     sk = vfy->get_cert_methods;
243     for (i = 0; i < sk_X509_LOOKUP_num(sk); i++) {
244         lu = sk_X509_LOOKUP_value(sk, i);
245         X509_LOOKUP_shutdown(lu);
246         X509_LOOKUP_free(lu);
247     }
248     sk_X509_LOOKUP_free(sk);
249     sk_X509_OBJECT_pop_free(vfy->objs, cleanup);
250
251     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE, vfy, &vfy->ex_data);
252     X509_VERIFY_PARAM_free(vfy->param);
253     CRYPTO_THREAD_lock_free(vfy->lock);
254     OPENSSL_free(vfy);
255 }
256
257 int X509_STORE_up_ref(X509_STORE *vfy)
258 {
259     int i;
260
261     if (CRYPTO_atomic_add(&vfy->references, 1, &i, vfy->lock) <= 0)
262         return 0;
263
264     REF_PRINT_COUNT("X509_STORE", a);
265     REF_ASSERT_ISNT(i < 2);
266     return ((i > 1) ? 1 : 0);
267 }
268
269 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m)
270 {
271     int i;
272     STACK_OF(X509_LOOKUP) *sk;
273     X509_LOOKUP *lu;
274
275     sk = v->get_cert_methods;
276     for (i = 0; i < sk_X509_LOOKUP_num(sk); i++) {
277         lu = sk_X509_LOOKUP_value(sk, i);
278         if (m == lu->method) {
279             return lu;
280         }
281     }
282     /* a new one */
283     lu = X509_LOOKUP_new(m);
284     if (lu == NULL)
285         return NULL;
286     else {
287         lu->store_ctx = v;
288         if (sk_X509_LOOKUP_push(v->get_cert_methods, lu))
289             return lu;
290         else {
291             X509_LOOKUP_free(lu);
292             return NULL;
293         }
294     }
295 }
296
297 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, X509_LOOKUP_TYPE type,
298                               X509_NAME *name, X509_OBJECT *ret)
299 {
300     X509_STORE *ctx = vs->ctx;
301     X509_LOOKUP *lu;
302     X509_OBJECT stmp, *tmp;
303     int i, j;
304
305     CRYPTO_THREAD_write_lock(ctx->lock);
306     tmp = X509_OBJECT_retrieve_by_subject(ctx->objs, type, name);
307     CRYPTO_THREAD_unlock(ctx->lock);
308
309     if (tmp == NULL || type == X509_LU_CRL) {
310         for (i = vs->current_method;
311              i < sk_X509_LOOKUP_num(ctx->get_cert_methods); i++) {
312             lu = sk_X509_LOOKUP_value(ctx->get_cert_methods, i);
313             j = X509_LOOKUP_by_subject(lu, type, name, &stmp);
314             if (j < 0) {
315                 vs->current_method = j;
316                 return j;
317             } else if (j) {
318                 tmp = &stmp;
319                 break;
320             }
321         }
322         vs->current_method = 0;
323         if (tmp == NULL)
324             return 0;
325     }
326
327 /*- if (ret->data.ptr != NULL)
328             X509_OBJECT_free_contents(ret); */
329
330     ret->type = tmp->type;
331     ret->data.ptr = tmp->data.ptr;
332
333     X509_OBJECT_up_ref_count(ret);
334
335     return 1;
336 }
337
338 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x)
339 {
340     X509_OBJECT *obj;
341     int ret = 1;
342
343     if (x == NULL)
344         return 0;
345     obj = OPENSSL_malloc(sizeof(*obj));
346     if (obj == NULL) {
347         X509err(X509_F_X509_STORE_ADD_CERT, ERR_R_MALLOC_FAILURE);
348         return 0;
349     }
350     obj->type = X509_LU_X509;
351     obj->data.x509 = x;
352
353     CRYPTO_THREAD_write_lock(ctx->lock);
354
355     X509_OBJECT_up_ref_count(obj);
356
357     if (X509_OBJECT_retrieve_match(ctx->objs, obj)) {
358         X509_OBJECT_free_contents(obj);
359         OPENSSL_free(obj);
360         X509err(X509_F_X509_STORE_ADD_CERT,
361                 X509_R_CERT_ALREADY_IN_HASH_TABLE);
362         ret = 0;
363     } else
364         sk_X509_OBJECT_push(ctx->objs, obj);
365
366     CRYPTO_THREAD_unlock(ctx->lock);
367
368     return ret;
369 }
370
371 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x)
372 {
373     X509_OBJECT *obj;
374     int ret = 1;
375
376     if (x == NULL)
377         return 0;
378     obj = OPENSSL_malloc(sizeof(*obj));
379     if (obj == NULL) {
380         X509err(X509_F_X509_STORE_ADD_CRL, ERR_R_MALLOC_FAILURE);
381         return 0;
382     }
383     obj->type = X509_LU_CRL;
384     obj->data.crl = x;
385
386     CRYPTO_THREAD_write_lock(ctx->lock);
387
388     X509_OBJECT_up_ref_count(obj);
389
390     if (X509_OBJECT_retrieve_match(ctx->objs, obj)) {
391         X509_OBJECT_free_contents(obj);
392         OPENSSL_free(obj);
393         X509err(X509_F_X509_STORE_ADD_CRL, X509_R_CERT_ALREADY_IN_HASH_TABLE);
394         ret = 0;
395     } else
396         sk_X509_OBJECT_push(ctx->objs, obj);
397
398     CRYPTO_THREAD_unlock(ctx->lock);
399
400     return ret;
401 }
402
403 void X509_OBJECT_up_ref_count(X509_OBJECT *a)
404 {
405     switch (a->type) {
406     default:
407         break;
408     case X509_LU_X509:
409         X509_up_ref(a->data.x509);
410         break;
411     case X509_LU_CRL:
412         X509_CRL_up_ref(a->data.crl);
413         break;
414     }
415 }
416
417 void X509_OBJECT_free_contents(X509_OBJECT *a)
418 {
419     if (!a)
420         return;
421     switch (a->type) {
422     default:
423         break;
424     case X509_LU_X509:
425         X509_free(a->data.x509);
426         break;
427     case X509_LU_CRL:
428         X509_CRL_free(a->data.crl);
429         break;
430     }
431 }
432
433 static int x509_object_idx_cnt(STACK_OF(X509_OBJECT) *h, int type,
434                                X509_NAME *name, int *pnmatch)
435 {
436     X509_OBJECT stmp;
437     X509 x509_s;
438     X509_CRL crl_s;
439     int idx;
440
441     stmp.type = type;
442     switch (type) {
443     case X509_LU_X509:
444         stmp.data.x509 = &x509_s;
445         x509_s.cert_info.subject = name;
446         break;
447     case X509_LU_CRL:
448         stmp.data.crl = &crl_s;
449         crl_s.crl.issuer = name;
450         break;
451     default:
452         /* abort(); */
453         return -1;
454     }
455
456     idx = sk_X509_OBJECT_find(h, &stmp);
457     if (idx >= 0 && pnmatch) {
458         int tidx;
459         const X509_OBJECT *tobj, *pstmp;
460         *pnmatch = 1;
461         pstmp = &stmp;
462         for (tidx = idx + 1; tidx < sk_X509_OBJECT_num(h); tidx++) {
463             tobj = sk_X509_OBJECT_value(h, tidx);
464             if (x509_object_cmp(&tobj, &pstmp))
465                 break;
466             (*pnmatch)++;
467         }
468     }
469     return idx;
470 }
471
472 int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type,
473                                X509_NAME *name)
474 {
475     return x509_object_idx_cnt(h, type, name, NULL);
476 }
477
478 X509_OBJECT *X509_OBJECT_retrieve_by_subject(STACK_OF(X509_OBJECT) *h,
479                                              int type, X509_NAME *name)
480 {
481     int idx;
482     idx = X509_OBJECT_idx_by_subject(h, type, name);
483     if (idx == -1)
484         return NULL;
485     return sk_X509_OBJECT_value(h, idx);
486 }
487
488 STACK_OF(X509) *X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm)
489 {
490     int i, idx, cnt;
491     STACK_OF(X509) *sk;
492     X509 *x;
493     X509_OBJECT *obj;
494     sk = sk_X509_new_null();
495     CRYPTO_THREAD_write_lock(ctx->ctx->lock);
496     idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
497     if (idx < 0) {
498         /*
499          * Nothing found in cache: do lookup to possibly add new objects to
500          * cache
501          */
502         X509_OBJECT xobj;
503         CRYPTO_THREAD_unlock(ctx->ctx->lock);
504         if (!X509_STORE_get_by_subject(ctx, X509_LU_X509, nm, &xobj)) {
505             sk_X509_free(sk);
506             return NULL;
507         }
508         X509_OBJECT_free_contents(&xobj);
509         CRYPTO_THREAD_write_lock(ctx->ctx->lock);
510         idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_X509, nm, &cnt);
511         if (idx < 0) {
512             CRYPTO_THREAD_unlock(ctx->ctx->lock);
513             sk_X509_free(sk);
514             return NULL;
515         }
516     }
517     for (i = 0; i < cnt; i++, idx++) {
518         obj = sk_X509_OBJECT_value(ctx->ctx->objs, idx);
519         x = obj->data.x509;
520         X509_up_ref(x);
521         if (!sk_X509_push(sk, x)) {
522             CRYPTO_THREAD_unlock(ctx->ctx->lock);
523             X509_free(x);
524             sk_X509_pop_free(sk, X509_free);
525             return NULL;
526         }
527     }
528     CRYPTO_THREAD_unlock(ctx->ctx->lock);
529     return sk;
530
531 }
532
533 STACK_OF(X509_CRL) *X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm)
534 {
535     int i, idx, cnt;
536     STACK_OF(X509_CRL) *sk;
537     X509_CRL *x;
538     X509_OBJECT *obj, xobj;
539     sk = sk_X509_CRL_new_null();
540
541     /*
542      * Always do lookup to possibly add new CRLs to cache
543      */
544     if (!X509_STORE_get_by_subject(ctx, X509_LU_CRL, nm, &xobj)) {
545         sk_X509_CRL_free(sk);
546         return NULL;
547     }
548     X509_OBJECT_free_contents(&xobj);
549     CRYPTO_THREAD_write_lock(ctx->ctx->lock);
550     idx = x509_object_idx_cnt(ctx->ctx->objs, X509_LU_CRL, nm, &cnt);
551     if (idx < 0) {
552         CRYPTO_THREAD_unlock(ctx->ctx->lock);
553         sk_X509_CRL_free(sk);
554         return NULL;
555     }
556
557     for (i = 0; i < cnt; i++, idx++) {
558         obj = sk_X509_OBJECT_value(ctx->ctx->objs, idx);
559         x = obj->data.crl;
560         X509_CRL_up_ref(x);
561         if (!sk_X509_CRL_push(sk, x)) {
562             CRYPTO_THREAD_unlock(ctx->ctx->lock);
563             X509_CRL_free(x);
564             sk_X509_CRL_pop_free(sk, X509_CRL_free);
565             return NULL;
566         }
567     }
568     CRYPTO_THREAD_unlock(ctx->ctx->lock);
569     return sk;
570 }
571
572 X509_OBJECT *X509_OBJECT_retrieve_match(STACK_OF(X509_OBJECT) *h,
573                                         X509_OBJECT *x)
574 {
575     int idx, i;
576     X509_OBJECT *obj;
577     idx = sk_X509_OBJECT_find(h, x);
578     if (idx == -1)
579         return NULL;
580     if ((x->type != X509_LU_X509) && (x->type != X509_LU_CRL))
581         return sk_X509_OBJECT_value(h, idx);
582     for (i = idx; i < sk_X509_OBJECT_num(h); i++) {
583         obj = sk_X509_OBJECT_value(h, i);
584         if (x509_object_cmp
585             ((const X509_OBJECT **)&obj, (const X509_OBJECT **)&x))
586             return NULL;
587         if (x->type == X509_LU_X509) {
588             if (!X509_cmp(obj->data.x509, x->data.x509))
589                 return obj;
590         } else if (x->type == X509_LU_CRL) {
591             if (!X509_CRL_match(obj->data.crl, x->data.crl))
592                 return obj;
593         } else
594             return obj;
595     }
596     return NULL;
597 }
598
599 /*-
600  * Try to get issuer certificate from store. Due to limitations
601  * of the API this can only retrieve a single certificate matching
602  * a given subject name. However it will fill the cache with all
603  * matching certificates, so we can examine the cache for all
604  * matches.
605  *
606  * Return values are:
607  *  1 lookup successful.
608  *  0 certificate not found.
609  * -1 some other error.
610  */
611 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
612 {
613     X509_NAME *xn;
614     X509_OBJECT obj, *pobj;
615     int i, ok, idx, ret;
616     *issuer = NULL;
617     xn = X509_get_issuer_name(x);
618     ok = X509_STORE_get_by_subject(ctx, X509_LU_X509, xn, &obj);
619     if (ok != X509_LU_X509) {
620         if (ok == X509_LU_RETRY) {
621             X509_OBJECT_free_contents(&obj);
622             X509err(X509_F_X509_STORE_CTX_GET1_ISSUER, X509_R_SHOULD_RETRY);
623             return -1;
624         } else if (ok != X509_LU_FAIL) {
625             X509_OBJECT_free_contents(&obj);
626             /* not good :-(, break anyway */
627             return -1;
628         }
629         return 0;
630     }
631     /* If certificate matches all OK */
632     if (ctx->check_issued(ctx, x, obj.data.x509)) {
633         if (x509_check_cert_time(ctx, obj.data.x509, -1)) {
634             *issuer = obj.data.x509;
635             return 1;
636         }
637     }
638     X509_OBJECT_free_contents(&obj);
639
640     /* Else find index of first cert accepted by 'check_issued' */
641     ret = 0;
642     CRYPTO_THREAD_write_lock(ctx->ctx->lock);
643     idx = X509_OBJECT_idx_by_subject(ctx->ctx->objs, X509_LU_X509, xn);
644     if (idx != -1) {            /* should be true as we've had at least one
645                                  * match */
646         /* Look through all matching certs for suitable issuer */
647         for (i = idx; i < sk_X509_OBJECT_num(ctx->ctx->objs); i++) {
648             pobj = sk_X509_OBJECT_value(ctx->ctx->objs, i);
649             /* See if we've run past the matches */
650             if (pobj->type != X509_LU_X509)
651                 break;
652             if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509)))
653                 break;
654             if (ctx->check_issued(ctx, x, pobj->data.x509)) {
655                 *issuer = pobj->data.x509;
656                 ret = 1;
657                 /*
658                  * If times check, exit with match,
659                  * otherwise keep looking. Leave last
660                  * match in issuer so we return nearest
661                  * match if no certificate time is OK.
662                  */
663
664                 if (x509_check_cert_time(ctx, *issuer, -1))
665                     break;
666             }
667         }
668     }
669     CRYPTO_THREAD_unlock(ctx->ctx->lock);
670     if (*issuer)
671         X509_up_ref(*issuer);
672     return ret;
673 }
674
675 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags)
676 {
677     return X509_VERIFY_PARAM_set_flags(ctx->param, flags);
678 }
679
680 int X509_STORE_set_depth(X509_STORE *ctx, int depth)
681 {
682     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
683     return 1;
684 }
685
686 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose)
687 {
688     return X509_VERIFY_PARAM_set_purpose(ctx->param, purpose);
689 }
690
691 int X509_STORE_set_trust(X509_STORE *ctx, int trust)
692 {
693     return X509_VERIFY_PARAM_set_trust(ctx->param, trust);
694 }
695
696 int X509_STORE_set1_param(X509_STORE *ctx, X509_VERIFY_PARAM *param)
697 {
698     return X509_VERIFY_PARAM_set1(ctx->param, param);
699 }
700
701 void X509_STORE_set_verify_cb(X509_STORE *ctx,
702                               int (*verify_cb) (int, X509_STORE_CTX *))
703 {
704     ctx->verify_cb = verify_cb;
705 }
706
707 void X509_STORE_set_lookup_crls_cb(X509_STORE *ctx,
708                                    STACK_OF(X509_CRL) *(*cb) (X509_STORE_CTX
709                                                               *ctx,
710                                                               X509_NAME *nm))
711 {
712     ctx->lookup_crls = cb;
713 }
714
715 X509_STORE *X509_STORE_CTX_get0_store(X509_STORE_CTX *ctx)
716 {
717     return ctx->ctx;
718 }