Fix some VMS inconsistencies
[openssl.git] / crypto / x509 / x509_vfy.c
1 /*
2  * Copyright 1995-2016 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 <stdio.h>
11 #include <time.h>
12 #include <errno.h>
13 #include <limits.h>
14
15 #include "internal/cryptlib.h"
16 #include <openssl/crypto.h>
17 #include <openssl/lhash.h>
18 #include <openssl/buffer.h>
19 #include <openssl/evp.h>
20 #include <openssl/asn1.h>
21 #include <openssl/x509.h>
22 #include <openssl/x509v3.h>
23 #include <openssl/objects.h>
24 #include <internal/dane.h>
25 #include <internal/x509_int.h>
26 #include "x509_lcl.h"
27
28 /* CRL score values */
29
30 /* No unhandled critical extensions */
31
32 #define CRL_SCORE_NOCRITICAL    0x100
33
34 /* certificate is within CRL scope */
35
36 #define CRL_SCORE_SCOPE         0x080
37
38 /* CRL times valid */
39
40 #define CRL_SCORE_TIME          0x040
41
42 /* Issuer name matches certificate */
43
44 #define CRL_SCORE_ISSUER_NAME   0x020
45
46 /* If this score or above CRL is probably valid */
47
48 #define CRL_SCORE_VALID (CRL_SCORE_NOCRITICAL|CRL_SCORE_TIME|CRL_SCORE_SCOPE)
49
50 /* CRL issuer is certificate issuer */
51
52 #define CRL_SCORE_ISSUER_CERT   0x018
53
54 /* CRL issuer is on certificate path */
55
56 #define CRL_SCORE_SAME_PATH     0x008
57
58 /* CRL issuer matches CRL AKID */
59
60 #define CRL_SCORE_AKID          0x004
61
62 /* Have a delta CRL with valid times */
63
64 #define CRL_SCORE_TIME_DELTA    0x002
65
66 static int build_chain(X509_STORE_CTX *ctx);
67 static int verify_chain(X509_STORE_CTX *ctx);
68 static int dane_verify(X509_STORE_CTX *ctx);
69 static int null_callback(int ok, X509_STORE_CTX *e);
70 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
71 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
72 static int check_chain_extensions(X509_STORE_CTX *ctx);
73 static int check_name_constraints(X509_STORE_CTX *ctx);
74 static int check_id(X509_STORE_CTX *ctx);
75 static int check_trust(X509_STORE_CTX *ctx, int num_untrusted);
76 static int check_revocation(X509_STORE_CTX *ctx);
77 static int check_cert(X509_STORE_CTX *ctx);
78 static int check_policy(X509_STORE_CTX *ctx);
79 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x);
80 static int check_dane_issuer(X509_STORE_CTX *ctx, int depth);
81 static int check_key_level(X509_STORE_CTX *ctx, X509 *cert);
82 static int check_sig_level(X509_STORE_CTX *ctx, X509 *cert);
83
84 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
85                          unsigned int *preasons, X509_CRL *crl, X509 *x);
86 static int get_crl_delta(X509_STORE_CTX *ctx,
87                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x);
88 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl,
89                          int *pcrl_score, X509_CRL *base,
90                          STACK_OF(X509_CRL) *crls);
91 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl, X509 **pissuer,
92                            int *pcrl_score);
93 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
94                            unsigned int *preasons);
95 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x);
96 static int check_crl_chain(X509_STORE_CTX *ctx,
97                            STACK_OF(X509) *cert_path,
98                            STACK_OF(X509) *crl_path);
99
100 static int internal_verify(X509_STORE_CTX *ctx);
101
102 static int null_callback(int ok, X509_STORE_CTX *e)
103 {
104     return ok;
105 }
106
107 /* Return 1 is a certificate is self signed */
108 static int cert_self_signed(X509 *x)
109 {
110     /*
111      * FIXME: x509v3_cache_extensions() needs to detect more failures and not
112      * set EXFLAG_SET when that happens.  Especially, if the failures are
113      * parse errors, rather than memory pressure!
114      */
115     X509_check_purpose(x, -1, 0);
116     if (x->ex_flags & EXFLAG_SS)
117         return 1;
118     else
119         return 0;
120 }
121
122 /* Given a certificate try and find an exact match in the store */
123
124 static X509 *lookup_cert_match(X509_STORE_CTX *ctx, X509 *x)
125 {
126     STACK_OF(X509) *certs;
127     X509 *xtmp = NULL;
128     int i;
129     /* Lookup all certs with matching subject name */
130     certs = ctx->lookup_certs(ctx, X509_get_subject_name(x));
131     if (certs == NULL)
132         return NULL;
133     /* Look for exact match */
134     for (i = 0; i < sk_X509_num(certs); i++) {
135         xtmp = sk_X509_value(certs, i);
136         if (!X509_cmp(xtmp, x))
137             break;
138     }
139     if (i < sk_X509_num(certs))
140         X509_up_ref(xtmp);
141     else
142         xtmp = NULL;
143     sk_X509_pop_free(certs, X509_free);
144     return xtmp;
145 }
146
147 /*-
148  * Inform the verify callback of an error.
149  * If B<x> is not NULL it is the error cert, otherwise use the chain cert at
150  * B<depth>.
151  * If B<err> is not X509_V_OK, that's the error value, otherwise leave
152  * unchanged (presumably set by the caller).
153  *
154  * Returns 0 to abort verification with an error, non-zero to continue.
155  */
156 static int verify_cb_cert(X509_STORE_CTX *ctx, X509 *x, int depth, int err)
157 {
158     ctx->error_depth = depth;
159     ctx->current_cert = (x != NULL) ? x : sk_X509_value(ctx->chain, depth);
160     if (err != X509_V_OK)
161         ctx->error = err;
162     return ctx->verify_cb(0, ctx);
163 }
164
165 /*-
166  * Inform the verify callback of an error, CRL-specific variant.  Here, the
167  * error depth and certificate are already set, we just specify the error
168  * number.
169  *
170  * Returns 0 to abort verification with an error, non-zero to continue.
171  */
172 static int verify_cb_crl(X509_STORE_CTX *ctx, int err)
173 {
174     ctx->error = err;
175     return ctx->verify_cb(0, ctx);
176 }
177
178 static int check_auth_level(X509_STORE_CTX *ctx)
179 {
180     int i;
181     int num = sk_X509_num(ctx->chain);
182
183     if (ctx->param->auth_level <= 0)
184         return 1;
185
186     for (i = 0; i < num; ++i) {
187         X509 *cert = sk_X509_value(ctx->chain, i);
188
189         /*
190          * We've already checked the security of the leaf key, so here we only
191          * check the security of issuer keys.
192          */
193         if (i > 0 && !check_key_level(ctx, cert) &&
194             verify_cb_cert(ctx, cert, i, X509_V_ERR_CA_KEY_TOO_SMALL) == 0)
195             return 0;
196         /*
197          * We also check the signature algorithm security of all certificates
198          * except those of the trust anchor at index num-1.
199          */
200         if (i < num - 1 && !check_sig_level(ctx, cert) &&
201             verify_cb_cert(ctx, cert, i, X509_V_ERR_CA_MD_TOO_WEAK) == 0)
202             return 0;
203     }
204     return 1;
205 }
206
207 static int verify_chain(X509_STORE_CTX *ctx)
208 {
209     int err;
210     int ok;
211
212     /*
213      * Before either returning with an error, or continuing with CRL checks,
214      * instantiate chain public key parameters.
215      */
216     if ((ok = build_chain(ctx)) == 0 ||
217         (ok = check_chain_extensions(ctx)) == 0 ||
218         (ok = check_auth_level(ctx)) == 0 ||
219         (ok = check_name_constraints(ctx)) == 0 ||
220         (ok = check_id(ctx)) == 0 || 1)
221         X509_get_pubkey_parameters(NULL, ctx->chain);
222     if (ok == 0 || (ok = ctx->check_revocation(ctx)) == 0)
223         return ok;
224
225     err = X509_chain_check_suiteb(&ctx->error_depth, NULL, ctx->chain,
226                                   ctx->param->flags);
227     if (err != X509_V_OK) {
228         if ((ok = verify_cb_cert(ctx, NULL, ctx->error_depth, err)) == 0)
229             return ok;
230     }
231
232     /* Verify chain signatures and expiration times */
233     ok = (ctx->verify != NULL) ? ctx->verify(ctx) : internal_verify(ctx);
234     if (!ok)
235         return ok;
236
237 #ifndef OPENSSL_NO_RFC3779
238     /* RFC 3779 path validation, now that CRL check has been done */
239     if ((ok = X509v3_asid_validate_path(ctx)) == 0)
240         return ok;
241     if ((ok = X509v3_addr_validate_path(ctx)) == 0)
242         return ok;
243 #endif
244
245     /* If we get this far evaluate policies */
246     if (ctx->param->flags & X509_V_FLAG_POLICY_CHECK)
247         ok = ctx->check_policy(ctx);
248     return ok;
249 }
250
251 int X509_verify_cert(X509_STORE_CTX *ctx)
252 {
253     SSL_DANE *dane = ctx->dane;
254     int ret;
255
256     if (ctx->cert == NULL) {
257         X509err(X509_F_X509_VERIFY_CERT, X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
258         ctx->error = X509_V_ERR_INVALID_CALL;
259         return -1;
260     }
261
262     if (ctx->chain != NULL) {
263         /*
264          * This X509_STORE_CTX has already been used to verify a cert. We
265          * cannot do another one.
266          */
267         X509err(X509_F_X509_VERIFY_CERT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
268         ctx->error = X509_V_ERR_INVALID_CALL;
269         return -1;
270     }
271
272     /*
273      * first we make sure the chain we are going to build is present and that
274      * the first entry is in place
275      */
276     if (((ctx->chain = sk_X509_new_null()) == NULL) ||
277         (!sk_X509_push(ctx->chain, ctx->cert))) {
278         X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
279         ctx->error = X509_V_ERR_OUT_OF_MEM;
280         return -1;
281     }
282     X509_up_ref(ctx->cert);
283     ctx->num_untrusted = 1;
284
285     /* If the peer's public key is too weak, we can stop early. */
286     if (!check_key_level(ctx, ctx->cert) &&
287         !verify_cb_cert(ctx, ctx->cert, 0, X509_V_ERR_EE_KEY_TOO_SMALL))
288         return 0;
289
290     if (DANETLS_ENABLED(dane))
291         ret = dane_verify(ctx);
292     else
293         ret = verify_chain(ctx);
294
295     /*
296      * Safety-net.  If we are returning an error, we must also set ctx->error,
297      * so that the chain is not considered verified should the error be ignored
298      * (e.g. TLS with SSL_VERIFY_NONE).
299      */
300     if (ret <= 0 && ctx->error == X509_V_OK)
301         ctx->error = X509_V_ERR_UNSPECIFIED;
302     return ret;
303 }
304
305 /*
306  * Given a STACK_OF(X509) find the issuer of cert (if any)
307  */
308 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
309 {
310     int i;
311
312     for (i = 0; i < sk_X509_num(sk); i++) {
313         X509 *issuer = sk_X509_value(sk, i);
314
315         if (!ctx->check_issued(ctx, x, issuer))
316             continue;
317         if (x509_check_cert_time(ctx, issuer, -1))
318             return issuer;
319     }
320     return NULL;
321 }
322
323 /* Given a possible certificate and issuer check them */
324
325 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
326 {
327     int ret;
328     if (x == issuer)
329         return cert_self_signed(x);
330     ret = X509_check_issued(issuer, x);
331     if (ret == X509_V_OK) {
332         int i;
333         X509 *ch;
334         /* Special case: single self signed certificate */
335         if (cert_self_signed(x) && sk_X509_num(ctx->chain) == 1)
336             return 1;
337         for (i = 0; i < sk_X509_num(ctx->chain); i++) {
338             ch = sk_X509_value(ctx->chain, i);
339             if (ch == issuer || !X509_cmp(ch, issuer)) {
340                 ret = X509_V_ERR_PATH_LOOP;
341                 break;
342             }
343         }
344     }
345
346     return (ret == X509_V_OK);
347 }
348
349 /* Alternative lookup method: look from a STACK stored in other_ctx */
350
351 static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
352 {
353     *issuer = find_issuer(ctx, ctx->other_ctx, x);
354     if (*issuer) {
355         X509_up_ref(*issuer);
356         return 1;
357     } else
358         return 0;
359 }
360
361 static STACK_OF(X509) *lookup_certs_sk(X509_STORE_CTX *ctx, X509_NAME *nm)
362 {
363     STACK_OF(X509) *sk = NULL;
364     X509 *x;
365     int i;
366     for (i = 0; i < sk_X509_num(ctx->other_ctx); i++) {
367         x = sk_X509_value(ctx->other_ctx, i);
368         if (X509_NAME_cmp(nm, X509_get_subject_name(x)) == 0) {
369             if (sk == NULL)
370                 sk = sk_X509_new_null();
371             if (sk == NULL || sk_X509_push(sk, x) == 0) {
372                 sk_X509_pop_free(sk, X509_free);
373                 return NULL;
374             }
375             X509_up_ref(x);
376         }
377     }
378     return sk;
379 }
380
381 /*
382  * Check EE or CA certificate purpose.  For trusted certificates explicit local
383  * auxiliary trust can be used to override EKU-restrictions.
384  */
385 static int check_purpose(X509_STORE_CTX *ctx, X509 *x, int purpose, int depth,
386                          int must_be_ca)
387 {
388     int tr_ok = X509_TRUST_UNTRUSTED;
389
390     /*
391      * For trusted certificates we want to see whether any auxiliary trust
392      * settings trump the purpose constraints.
393      *
394      * This is complicated by the fact that the trust ordinals in
395      * ctx->param->trust are entirely independent of the purpose ordinals in
396      * ctx->param->purpose!
397      *
398      * What connects them is their mutual initialization via calls from
399      * X509_STORE_CTX_set_default() into X509_VERIFY_PARAM_lookup() which sets
400      * related values of both param->trust and param->purpose.  It is however
401      * typically possible to infer associated trust values from a purpose value
402      * via the X509_PURPOSE API.
403      *
404      * Therefore, we can only check for trust overrides when the purpose we're
405      * checking is the same as ctx->param->purpose and ctx->param->trust is
406      * also set.
407      */
408     if (depth >= ctx->num_untrusted && purpose == ctx->param->purpose)
409         tr_ok = X509_check_trust(x, ctx->param->trust, X509_TRUST_NO_SS_COMPAT);
410
411     switch (tr_ok) {
412     case X509_TRUST_TRUSTED:
413         return 1;
414     case X509_TRUST_REJECTED:
415         break;
416     default:
417         switch (X509_check_purpose(x, purpose, must_be_ca > 0)) {
418         case 1:
419             return 1;
420         case 0:
421             break;
422         default:
423             if ((ctx->param->flags & X509_V_FLAG_X509_STRICT) == 0)
424                 return 1;
425         }
426         break;
427     }
428
429     return verify_cb_cert(ctx, x, depth, X509_V_ERR_INVALID_PURPOSE);
430 }
431
432 /*
433  * Check a certificate chains extensions for consistency with the supplied
434  * purpose
435  */
436
437 static int check_chain_extensions(X509_STORE_CTX *ctx)
438 {
439     int i, must_be_ca, plen = 0;
440     X509 *x;
441     int proxy_path_length = 0;
442     int purpose;
443     int allow_proxy_certs;
444     int num = sk_X509_num(ctx->chain);
445
446     /*-
447      *  must_be_ca can have 1 of 3 values:
448      * -1: we accept both CA and non-CA certificates, to allow direct
449      *     use of self-signed certificates (which are marked as CA).
450      * 0:  we only accept non-CA certificates.  This is currently not
451      *     used, but the possibility is present for future extensions.
452      * 1:  we only accept CA certificates.  This is currently used for
453      *     all certificates in the chain except the leaf certificate.
454      */
455     must_be_ca = -1;
456
457     /* CRL path validation */
458     if (ctx->parent) {
459         allow_proxy_certs = 0;
460         purpose = X509_PURPOSE_CRL_SIGN;
461     } else {
462         allow_proxy_certs =
463             ! !(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
464         purpose = ctx->param->purpose;
465     }
466
467     for (i = 0; i < num; i++) {
468         int ret;
469         x = sk_X509_value(ctx->chain, i);
470         if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
471             && (x->ex_flags & EXFLAG_CRITICAL)) {
472             if (!verify_cb_cert(ctx, x, i,
473                                 X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION))
474                 return 0;
475         }
476         if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY)) {
477             if (!verify_cb_cert(ctx, x, i,
478                                 X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED))
479                 return 0;
480         }
481         ret = X509_check_ca(x);
482         switch (must_be_ca) {
483         case -1:
484             if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
485                 && (ret != 1) && (ret != 0)) {
486                 ret = 0;
487                 ctx->error = X509_V_ERR_INVALID_CA;
488             } else
489                 ret = 1;
490             break;
491         case 0:
492             if (ret != 0) {
493                 ret = 0;
494                 ctx->error = X509_V_ERR_INVALID_NON_CA;
495             } else
496                 ret = 1;
497             break;
498         default:
499             /* X509_V_FLAG_X509_STRICT is implicit for intermediate CAs */
500             if ((ret == 0)
501                 || ((i + 1 < num || ctx->param->flags & X509_V_FLAG_X509_STRICT)
502                     && (ret != 1))) {
503                 ret = 0;
504                 ctx->error = X509_V_ERR_INVALID_CA;
505             } else
506                 ret = 1;
507             break;
508         }
509         if (ret == 0 && !verify_cb_cert(ctx, x, i, X509_V_OK))
510             return 0;
511         /* check_purpose() makes the callback as needed */
512         if (purpose > 0 && !check_purpose(ctx, x, purpose, i, must_be_ca))
513             return 0;
514         /* Check pathlen if not self issued */
515         if ((i > 1) && !(x->ex_flags & EXFLAG_SI)
516             && (x->ex_pathlen != -1)
517             && (plen > (x->ex_pathlen + proxy_path_length + 1))) {
518             if (!verify_cb_cert(ctx, x, i, X509_V_ERR_PATH_LENGTH_EXCEEDED))
519                 return 0;
520         }
521         /* Increment path length if not self issued */
522         if (!(x->ex_flags & EXFLAG_SI))
523             plen++;
524         /*
525          * If this certificate is a proxy certificate, the next certificate
526          * must be another proxy certificate or a EE certificate.  If not,
527          * the next certificate must be a CA certificate.
528          */
529         if (x->ex_flags & EXFLAG_PROXY) {
530             /*
531              * RFC3820, 4.1.3 (b)(1) stipulates that if pCPathLengthConstraint
532              * is less than max_path_length, the former should be copied to
533              * the latter, and 4.1.4 (a) stipulates that max_path_length
534              * should be verified to be larger than zero and decrement it.
535              *
536              * Because we're checking the certs in the reverse order, we start
537              * with verifying that proxy_path_length isn't larger than pcPLC,
538              * and copy the latter to the former if it is, and finally,
539              * increment proxy_path_length.
540              */
541             if (x->ex_pcpathlen != -1) {
542                 if (proxy_path_length > x->ex_pcpathlen) {
543                     if (!verify_cb_cert(ctx, x, i,
544                                         X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED))
545                         return 0;
546                 }
547                 proxy_path_length = x->ex_pcpathlen;
548             }
549             proxy_path_length++;
550             must_be_ca = 0;
551         } else
552             must_be_ca = 1;
553     }
554     return 1;
555 }
556
557 static int check_name_constraints(X509_STORE_CTX *ctx)
558 {
559     int i;
560
561     /* Check name constraints for all certificates */
562     for (i = sk_X509_num(ctx->chain) - 1; i >= 0; i--) {
563         X509 *x = sk_X509_value(ctx->chain, i);
564         int j;
565
566         /* Ignore self issued certs unless last in chain */
567         if (i && (x->ex_flags & EXFLAG_SI))
568             continue;
569
570         /*
571          * Proxy certificates policy has an extra constraint, where the
572          * certificate subject MUST be the issuer with a single CN entry
573          * added.
574          * (RFC 3820: 3.4, 4.1.3 (a)(4))
575          */
576         if (x->ex_flags & EXFLAG_PROXY) {
577             X509_NAME *tmpsubject = X509_get_subject_name(x);
578             X509_NAME *tmpissuer = X509_get_issuer_name(x);
579             X509_NAME_ENTRY *tmpentry = NULL;
580             int last_object_nid = 0;
581             int err = X509_V_OK;
582             int last_object_loc = X509_NAME_entry_count(tmpsubject) - 1;
583
584             /* Check that there are at least two RDNs */
585             if (last_object_loc < 1) {
586                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
587                 goto proxy_name_done;
588             }
589
590             /*
591              * Check that there is exactly one more RDN in subject as
592              * there is in issuer.
593              */
594             if (X509_NAME_entry_count(tmpsubject)
595                 != X509_NAME_entry_count(tmpissuer) + 1) {
596                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
597                 goto proxy_name_done;
598             }
599
600             /*
601              * Check that the last subject component isn't part of a
602              * multivalued RDN
603              */
604             if (X509_NAME_ENTRY_set(X509_NAME_get_entry(tmpsubject,
605                                                         last_object_loc))
606                 == X509_NAME_ENTRY_set(X509_NAME_get_entry(tmpsubject,
607                                                            last_object_loc - 1))) {
608                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
609                 goto proxy_name_done;
610             }
611
612             /*
613              * Check that the last subject RDN is a commonName, and that
614              * all the previous RDNs match the issuer exactly
615              */
616             tmpsubject = X509_NAME_dup(tmpsubject);
617             if (tmpsubject == NULL) {
618                 X509err(X509_F_CHECK_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
619                 ctx->error = X509_V_ERR_OUT_OF_MEM;
620                 return 0;
621             }
622
623             tmpentry =
624                 X509_NAME_delete_entry(tmpsubject, last_object_loc);
625             last_object_nid =
626                 OBJ_obj2nid(X509_NAME_ENTRY_get_object(tmpentry));
627
628             if (last_object_nid != NID_commonName
629                 || X509_NAME_cmp(tmpsubject, tmpissuer) != 0) {
630                 err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
631             }
632
633             X509_NAME_ENTRY_free(tmpentry);
634             X509_NAME_free(tmpsubject);
635
636          proxy_name_done:
637             if (err != X509_V_OK
638                 && !verify_cb_cert(ctx, x, i, err))
639                 return 0;
640         }
641
642         /*
643          * Check against constraints for all certificates higher in chain
644          * including trust anchor. Trust anchor not strictly speaking needed
645          * but if it includes constraints it is to be assumed it expects them
646          * to be obeyed.
647          */
648         for (j = sk_X509_num(ctx->chain) - 1; j > i; j--) {
649             NAME_CONSTRAINTS *nc = sk_X509_value(ctx->chain, j)->nc;
650
651             if (nc) {
652                 int rv = NAME_CONSTRAINTS_check(x, nc);
653
654                 switch (rv) {
655                 case X509_V_OK:
656                     break;
657                 case X509_V_ERR_OUT_OF_MEM:
658                     return 0;
659                 default:
660                     if (!verify_cb_cert(ctx, x, i, rv))
661                         return 0;
662                     break;
663                 }
664             }
665         }
666     }
667     return 1;
668 }
669
670 static int check_id_error(X509_STORE_CTX *ctx, int errcode)
671 {
672     return verify_cb_cert(ctx, ctx->cert, 0, errcode);
673 }
674
675 static int check_hosts(X509 *x, X509_VERIFY_PARAM *vpm)
676 {
677     int i;
678     int n = sk_OPENSSL_STRING_num(vpm->hosts);
679     char *name;
680
681     if (vpm->peername != NULL) {
682         OPENSSL_free(vpm->peername);
683         vpm->peername = NULL;
684     }
685     for (i = 0; i < n; ++i) {
686         name = sk_OPENSSL_STRING_value(vpm->hosts, i);
687         if (X509_check_host(x, name, 0, vpm->hostflags, &vpm->peername) > 0)
688             return 1;
689     }
690     return n == 0;
691 }
692
693 static int check_id(X509_STORE_CTX *ctx)
694 {
695     X509_VERIFY_PARAM *vpm = ctx->param;
696     X509 *x = ctx->cert;
697     if (vpm->hosts && check_hosts(x, vpm) <= 0) {
698         if (!check_id_error(ctx, X509_V_ERR_HOSTNAME_MISMATCH))
699             return 0;
700     }
701     if (vpm->email && X509_check_email(x, vpm->email, vpm->emaillen, 0) <= 0) {
702         if (!check_id_error(ctx, X509_V_ERR_EMAIL_MISMATCH))
703             return 0;
704     }
705     if (vpm->ip && X509_check_ip(x, vpm->ip, vpm->iplen, 0) <= 0) {
706         if (!check_id_error(ctx, X509_V_ERR_IP_ADDRESS_MISMATCH))
707             return 0;
708     }
709     return 1;
710 }
711
712 static int check_trust(X509_STORE_CTX *ctx, int num_untrusted)
713 {
714     int i;
715     X509 *x = NULL;
716     X509 *mx;
717     SSL_DANE *dane = ctx->dane;
718     int num = sk_X509_num(ctx->chain);
719     int trust;
720
721     /*
722      * Check for a DANE issuer at depth 1 or greater, if it is a DANE-TA(2)
723      * match, we're done, otherwise we'll merely record the match depth.
724      */
725     if (DANETLS_HAS_TA(dane) && num_untrusted > 0 && num_untrusted < num) {
726         switch (trust = check_dane_issuer(ctx, num_untrusted)) {
727         case X509_TRUST_TRUSTED:
728         case X509_TRUST_REJECTED:
729             return trust;
730         }
731     }
732
733     /*
734      * Check trusted certificates in chain at depth num_untrusted and up.
735      * Note, that depths 0..num_untrusted-1 may also contain trusted
736      * certificates, but the caller is expected to have already checked those,
737      * and wants to incrementally check just any added since.
738      */
739     for (i = num_untrusted; i < num; i++) {
740         x = sk_X509_value(ctx->chain, i);
741         trust = X509_check_trust(x, ctx->param->trust, 0);
742         /* If explicitly trusted return trusted */
743         if (trust == X509_TRUST_TRUSTED)
744             goto trusted;
745         if (trust == X509_TRUST_REJECTED)
746             goto rejected;
747     }
748
749     /*
750      * If we are looking at a trusted certificate, and accept partial chains,
751      * the chain is PKIX trusted.
752      */
753     if (num_untrusted < num) {
754         if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN)
755             goto trusted;
756         return X509_TRUST_UNTRUSTED;
757     }
758
759     if (num_untrusted == num && ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
760         /*
761          * Last-resort call with no new trusted certificates, check the leaf
762          * for a direct trust store match.
763          */
764         i = 0;
765         x = sk_X509_value(ctx->chain, i);
766         mx = lookup_cert_match(ctx, x);
767         if (!mx)
768             return X509_TRUST_UNTRUSTED;
769
770         /*
771          * Check explicit auxiliary trust/reject settings.  If none are set,
772          * we'll accept X509_TRUST_UNTRUSTED when not self-signed.
773          */
774         trust = X509_check_trust(mx, ctx->param->trust, 0);
775         if (trust == X509_TRUST_REJECTED) {
776             X509_free(mx);
777             goto rejected;
778         }
779
780         /* Replace leaf with trusted match */
781         (void) sk_X509_set(ctx->chain, 0, mx);
782         X509_free(x);
783         ctx->num_untrusted = 0;
784         goto trusted;
785     }
786
787     /*
788      * If no trusted certs in chain at all return untrusted and allow
789      * standard (no issuer cert) etc errors to be indicated.
790      */
791     return X509_TRUST_UNTRUSTED;
792
793  rejected:
794     if (!verify_cb_cert(ctx, x, i, X509_V_ERR_CERT_REJECTED))
795         return X509_TRUST_REJECTED;
796     return X509_TRUST_UNTRUSTED;
797
798  trusted:
799     if (!DANETLS_ENABLED(dane))
800         return X509_TRUST_TRUSTED;
801     if (dane->pdpth < 0)
802         dane->pdpth = num_untrusted;
803     /* With DANE, PKIX alone is not trusted until we have both */
804     if (dane->mdpth >= 0)
805         return X509_TRUST_TRUSTED;
806     return X509_TRUST_UNTRUSTED;
807 }
808
809 static int check_revocation(X509_STORE_CTX *ctx)
810 {
811     int i = 0, last = 0, ok = 0;
812     if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
813         return 1;
814     if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
815         last = sk_X509_num(ctx->chain) - 1;
816     else {
817         /* If checking CRL paths this isn't the EE certificate */
818         if (ctx->parent)
819             return 1;
820         last = 0;
821     }
822     for (i = 0; i <= last; i++) {
823         ctx->error_depth = i;
824         ok = check_cert(ctx);
825         if (!ok)
826             return ok;
827     }
828     return 1;
829 }
830
831 static int check_cert(X509_STORE_CTX *ctx)
832 {
833     X509_CRL *crl = NULL, *dcrl = NULL;
834     int ok = 0;
835     int cnum = ctx->error_depth;
836     X509 *x = sk_X509_value(ctx->chain, cnum);
837
838     ctx->current_cert = x;
839     ctx->current_issuer = NULL;
840     ctx->current_crl_score = 0;
841     ctx->current_reasons = 0;
842
843     while (ctx->current_reasons != CRLDP_ALL_REASONS) {
844         unsigned int last_reasons = ctx->current_reasons;
845
846         /* Try to retrieve relevant CRL */
847         if (ctx->get_crl)
848             ok = ctx->get_crl(ctx, &crl, x);
849         else
850             ok = get_crl_delta(ctx, &crl, &dcrl, x);
851         /*
852          * If error looking up CRL, nothing we can do except notify callback
853          */
854         if (!ok) {
855             ok = verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL);
856             goto done;
857         }
858         ctx->current_crl = crl;
859         ok = ctx->check_crl(ctx, crl);
860         if (!ok)
861             goto done;
862
863         if (dcrl) {
864             ok = ctx->check_crl(ctx, dcrl);
865             if (!ok)
866                 goto done;
867             ok = ctx->cert_crl(ctx, dcrl, x);
868             if (!ok)
869                 goto done;
870         } else
871             ok = 1;
872
873         /* Don't look in full CRL if delta reason is removefromCRL */
874         if (ok != 2) {
875             ok = ctx->cert_crl(ctx, crl, x);
876             if (!ok)
877                 goto done;
878         }
879
880         X509_CRL_free(crl);
881         X509_CRL_free(dcrl);
882         crl = NULL;
883         dcrl = NULL;
884         /*
885          * If reasons not updated we wont get anywhere by another iteration,
886          * so exit loop.
887          */
888         if (last_reasons == ctx->current_reasons) {
889             ok = verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL);
890             goto done;
891         }
892     }
893  done:
894     X509_CRL_free(crl);
895     X509_CRL_free(dcrl);
896
897     ctx->current_crl = NULL;
898     return ok;
899 }
900
901 /* Check CRL times against values in X509_STORE_CTX */
902
903 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
904 {
905     time_t *ptime;
906     int i;
907
908     if (notify)
909         ctx->current_crl = crl;
910     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
911         ptime = &ctx->param->check_time;
912     else if (ctx->param->flags & X509_V_FLAG_NO_CHECK_TIME)
913         return 1;
914     else
915         ptime = NULL;
916
917     i = X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
918     if (i == 0) {
919         if (!notify)
920             return 0;
921         if (!verify_cb_crl(ctx, X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD))
922             return 0;
923     }
924
925     if (i > 0) {
926         if (!notify)
927             return 0;
928         if (!verify_cb_crl(ctx, X509_V_ERR_CRL_NOT_YET_VALID))
929             return 0;
930     }
931
932     if (X509_CRL_get_nextUpdate(crl)) {
933         i = X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
934
935         if (i == 0) {
936             if (!notify)
937                 return 0;
938             if (!verify_cb_crl(ctx, X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD))
939                 return 0;
940         }
941         /* Ignore expiry of base CRL is delta is valid */
942         if ((i < 0) && !(ctx->current_crl_score & CRL_SCORE_TIME_DELTA)) {
943             if (!notify)
944                 return 0;
945             if (!verify_cb_crl(ctx, X509_V_ERR_CRL_HAS_EXPIRED))
946                 return 0;
947         }
948     }
949
950     if (notify)
951         ctx->current_crl = NULL;
952
953     return 1;
954 }
955
956 static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
957                       X509 **pissuer, int *pscore, unsigned int *preasons,
958                       STACK_OF(X509_CRL) *crls)
959 {
960     int i, crl_score, best_score = *pscore;
961     unsigned int reasons, best_reasons = 0;
962     X509 *x = ctx->current_cert;
963     X509_CRL *crl, *best_crl = NULL;
964     X509 *crl_issuer = NULL, *best_crl_issuer = NULL;
965
966     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
967         crl = sk_X509_CRL_value(crls, i);
968         reasons = *preasons;
969         crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
970
971         if (crl_score > best_score) {
972             best_crl = crl;
973             best_crl_issuer = crl_issuer;
974             best_score = crl_score;
975             best_reasons = reasons;
976         }
977     }
978
979     if (best_crl) {
980         X509_CRL_free(*pcrl);
981         *pcrl = best_crl;
982         *pissuer = best_crl_issuer;
983         *pscore = best_score;
984         *preasons = best_reasons;
985         X509_CRL_up_ref(best_crl);
986         X509_CRL_free(*pdcrl);
987         *pdcrl = NULL;
988         get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
989     }
990
991     if (best_score >= CRL_SCORE_VALID)
992         return 1;
993
994     return 0;
995 }
996
997 /*
998  * Compare two CRL extensions for delta checking purposes. They should be
999  * both present or both absent. If both present all fields must be identical.
1000  */
1001
1002 static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
1003 {
1004     ASN1_OCTET_STRING *exta, *extb;
1005     int i;
1006     i = X509_CRL_get_ext_by_NID(a, nid, -1);
1007     if (i >= 0) {
1008         /* Can't have multiple occurrences */
1009         if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
1010             return 0;
1011         exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
1012     } else
1013         exta = NULL;
1014
1015     i = X509_CRL_get_ext_by_NID(b, nid, -1);
1016
1017     if (i >= 0) {
1018
1019         if (X509_CRL_get_ext_by_NID(b, nid, i) != -1)
1020             return 0;
1021         extb = X509_EXTENSION_get_data(X509_CRL_get_ext(b, i));
1022     } else
1023         extb = NULL;
1024
1025     if (!exta && !extb)
1026         return 1;
1027
1028     if (!exta || !extb)
1029         return 0;
1030
1031     if (ASN1_OCTET_STRING_cmp(exta, extb))
1032         return 0;
1033
1034     return 1;
1035 }
1036
1037 /* See if a base and delta are compatible */
1038
1039 static int check_delta_base(X509_CRL *delta, X509_CRL *base)
1040 {
1041     /* Delta CRL must be a delta */
1042     if (!delta->base_crl_number)
1043         return 0;
1044     /* Base must have a CRL number */
1045     if (!base->crl_number)
1046         return 0;
1047     /* Issuer names must match */
1048     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(delta)))
1049         return 0;
1050     /* AKID and IDP must match */
1051     if (!crl_extension_match(delta, base, NID_authority_key_identifier))
1052         return 0;
1053     if (!crl_extension_match(delta, base, NID_issuing_distribution_point))
1054         return 0;
1055     /* Delta CRL base number must not exceed Full CRL number. */
1056     if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
1057         return 0;
1058     /* Delta CRL number must exceed full CRL number */
1059     if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
1060         return 1;
1061     return 0;
1062 }
1063
1064 /*
1065  * For a given base CRL find a delta... maybe extend to delta scoring or
1066  * retrieve a chain of deltas...
1067  */
1068
1069 static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore,
1070                          X509_CRL *base, STACK_OF(X509_CRL) *crls)
1071 {
1072     X509_CRL *delta;
1073     int i;
1074     if (!(ctx->param->flags & X509_V_FLAG_USE_DELTAS))
1075         return;
1076     if (!((ctx->current_cert->ex_flags | base->flags) & EXFLAG_FRESHEST))
1077         return;
1078     for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1079         delta = sk_X509_CRL_value(crls, i);
1080         if (check_delta_base(delta, base)) {
1081             if (check_crl_time(ctx, delta, 0))
1082                 *pscore |= CRL_SCORE_TIME_DELTA;
1083             X509_CRL_up_ref(delta);
1084             *dcrl = delta;
1085             return;
1086         }
1087     }
1088     *dcrl = NULL;
1089 }
1090
1091 /*
1092  * For a given CRL return how suitable it is for the supplied certificate
1093  * 'x'. The return value is a mask of several criteria. If the issuer is not
1094  * the certificate issuer this is returned in *pissuer. The reasons mask is
1095  * also used to determine if the CRL is suitable: if no new reasons the CRL
1096  * is rejected, otherwise reasons is updated.
1097  */
1098
1099 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
1100                          unsigned int *preasons, X509_CRL *crl, X509 *x)
1101 {
1102
1103     int crl_score = 0;
1104     unsigned int tmp_reasons = *preasons, crl_reasons;
1105
1106     /* First see if we can reject CRL straight away */
1107
1108     /* Invalid IDP cannot be processed */
1109     if (crl->idp_flags & IDP_INVALID)
1110         return 0;
1111     /* Reason codes or indirect CRLs need extended CRL support */
1112     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT)) {
1113         if (crl->idp_flags & (IDP_INDIRECT | IDP_REASONS))
1114             return 0;
1115     } else if (crl->idp_flags & IDP_REASONS) {
1116         /* If no new reasons reject */
1117         if (!(crl->idp_reasons & ~tmp_reasons))
1118             return 0;
1119     }
1120     /* Don't process deltas at this stage */
1121     else if (crl->base_crl_number)
1122         return 0;
1123     /* If issuer name doesn't match certificate need indirect CRL */
1124     if (X509_NAME_cmp(X509_get_issuer_name(x), X509_CRL_get_issuer(crl))) {
1125         if (!(crl->idp_flags & IDP_INDIRECT))
1126             return 0;
1127     } else
1128         crl_score |= CRL_SCORE_ISSUER_NAME;
1129
1130     if (!(crl->flags & EXFLAG_CRITICAL))
1131         crl_score |= CRL_SCORE_NOCRITICAL;
1132
1133     /* Check expiry */
1134     if (check_crl_time(ctx, crl, 0))
1135         crl_score |= CRL_SCORE_TIME;
1136
1137     /* Check authority key ID and locate certificate issuer */
1138     crl_akid_check(ctx, crl, pissuer, &crl_score);
1139
1140     /* If we can't locate certificate issuer at this point forget it */
1141
1142     if (!(crl_score & CRL_SCORE_AKID))
1143         return 0;
1144
1145     /* Check cert for matching CRL distribution points */
1146
1147     if (crl_crldp_check(x, crl, crl_score, &crl_reasons)) {
1148         /* If no new reasons reject */
1149         if (!(crl_reasons & ~tmp_reasons))
1150             return 0;
1151         tmp_reasons |= crl_reasons;
1152         crl_score |= CRL_SCORE_SCOPE;
1153     }
1154
1155     *preasons = tmp_reasons;
1156
1157     return crl_score;
1158
1159 }
1160
1161 static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
1162                            X509 **pissuer, int *pcrl_score)
1163 {
1164     X509 *crl_issuer = NULL;
1165     X509_NAME *cnm = X509_CRL_get_issuer(crl);
1166     int cidx = ctx->error_depth;
1167     int i;
1168
1169     if (cidx != sk_X509_num(ctx->chain) - 1)
1170         cidx++;
1171
1172     crl_issuer = sk_X509_value(ctx->chain, cidx);
1173
1174     if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1175         if (*pcrl_score & CRL_SCORE_ISSUER_NAME) {
1176             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_ISSUER_CERT;
1177             *pissuer = crl_issuer;
1178             return;
1179         }
1180     }
1181
1182     for (cidx++; cidx < sk_X509_num(ctx->chain); cidx++) {
1183         crl_issuer = sk_X509_value(ctx->chain, cidx);
1184         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1185             continue;
1186         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1187             *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_SAME_PATH;
1188             *pissuer = crl_issuer;
1189             return;
1190         }
1191     }
1192
1193     /* Anything else needs extended CRL support */
1194
1195     if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1196         return;
1197
1198     /*
1199      * Otherwise the CRL issuer is not on the path. Look for it in the set of
1200      * untrusted certificates.
1201      */
1202     for (i = 0; i < sk_X509_num(ctx->untrusted); i++) {
1203         crl_issuer = sk_X509_value(ctx->untrusted, i);
1204         if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1205             continue;
1206         if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1207             *pissuer = crl_issuer;
1208             *pcrl_score |= CRL_SCORE_AKID;
1209             return;
1210         }
1211     }
1212 }
1213
1214 /*
1215  * Check the path of a CRL issuer certificate. This creates a new
1216  * X509_STORE_CTX and populates it with most of the parameters from the
1217  * parent. This could be optimised somewhat since a lot of path checking will
1218  * be duplicated by the parent, but this will rarely be used in practice.
1219  */
1220
1221 static int check_crl_path(X509_STORE_CTX *ctx, X509 *x)
1222 {
1223     X509_STORE_CTX crl_ctx;
1224     int ret;
1225
1226     /* Don't allow recursive CRL path validation */
1227     if (ctx->parent)
1228         return 0;
1229     if (!X509_STORE_CTX_init(&crl_ctx, ctx->ctx, x, ctx->untrusted))
1230         return -1;
1231
1232     crl_ctx.crls = ctx->crls;
1233     /* Copy verify params across */
1234     X509_STORE_CTX_set0_param(&crl_ctx, ctx->param);
1235
1236     crl_ctx.parent = ctx;
1237     crl_ctx.verify_cb = ctx->verify_cb;
1238
1239     /* Verify CRL issuer */
1240     ret = X509_verify_cert(&crl_ctx);
1241     if (ret <= 0)
1242         goto err;
1243
1244     /* Check chain is acceptable */
1245     ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain);
1246  err:
1247     X509_STORE_CTX_cleanup(&crl_ctx);
1248     return ret;
1249 }
1250
1251 /*
1252  * RFC3280 says nothing about the relationship between CRL path and
1253  * certificate path, which could lead to situations where a certificate could
1254  * be revoked or validated by a CA not authorised to do so. RFC5280 is more
1255  * strict and states that the two paths must end in the same trust anchor,
1256  * though some discussions remain... until this is resolved we use the
1257  * RFC5280 version
1258  */
1259
1260 static int check_crl_chain(X509_STORE_CTX *ctx,
1261                            STACK_OF(X509) *cert_path,
1262                            STACK_OF(X509) *crl_path)
1263 {
1264     X509 *cert_ta, *crl_ta;
1265     cert_ta = sk_X509_value(cert_path, sk_X509_num(cert_path) - 1);
1266     crl_ta = sk_X509_value(crl_path, sk_X509_num(crl_path) - 1);
1267     if (!X509_cmp(cert_ta, crl_ta))
1268         return 1;
1269     return 0;
1270 }
1271
1272 /*-
1273  * Check for match between two dist point names: three separate cases.
1274  * 1. Both are relative names and compare X509_NAME types.
1275  * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
1276  * 3. Both are full names and compare two GENERAL_NAMES.
1277  * 4. One is NULL: automatic match.
1278  */
1279
1280 static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
1281 {
1282     X509_NAME *nm = NULL;
1283     GENERAL_NAMES *gens = NULL;
1284     GENERAL_NAME *gena, *genb;
1285     int i, j;
1286     if (!a || !b)
1287         return 1;
1288     if (a->type == 1) {
1289         if (!a->dpname)
1290             return 0;
1291         /* Case 1: two X509_NAME */
1292         if (b->type == 1) {
1293             if (!b->dpname)
1294                 return 0;
1295             if (!X509_NAME_cmp(a->dpname, b->dpname))
1296                 return 1;
1297             else
1298                 return 0;
1299         }
1300         /* Case 2: set name and GENERAL_NAMES appropriately */
1301         nm = a->dpname;
1302         gens = b->name.fullname;
1303     } else if (b->type == 1) {
1304         if (!b->dpname)
1305             return 0;
1306         /* Case 2: set name and GENERAL_NAMES appropriately */
1307         gens = a->name.fullname;
1308         nm = b->dpname;
1309     }
1310
1311     /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
1312     if (nm) {
1313         for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
1314             gena = sk_GENERAL_NAME_value(gens, i);
1315             if (gena->type != GEN_DIRNAME)
1316                 continue;
1317             if (!X509_NAME_cmp(nm, gena->d.directoryName))
1318                 return 1;
1319         }
1320         return 0;
1321     }
1322
1323     /* Else case 3: two GENERAL_NAMES */
1324
1325     for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++) {
1326         gena = sk_GENERAL_NAME_value(a->name.fullname, i);
1327         for (j = 0; j < sk_GENERAL_NAME_num(b->name.fullname); j++) {
1328             genb = sk_GENERAL_NAME_value(b->name.fullname, j);
1329             if (!GENERAL_NAME_cmp(gena, genb))
1330                 return 1;
1331         }
1332     }
1333
1334     return 0;
1335
1336 }
1337
1338 static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
1339 {
1340     int i;
1341     X509_NAME *nm = X509_CRL_get_issuer(crl);
1342     /* If no CRLissuer return is successful iff don't need a match */
1343     if (!dp->CRLissuer)
1344         return ! !(crl_score & CRL_SCORE_ISSUER_NAME);
1345     for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
1346         GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
1347         if (gen->type != GEN_DIRNAME)
1348             continue;
1349         if (!X509_NAME_cmp(gen->d.directoryName, nm))
1350             return 1;
1351     }
1352     return 0;
1353 }
1354
1355 /* Check CRLDP and IDP */
1356
1357 static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
1358                            unsigned int *preasons)
1359 {
1360     int i;
1361     if (crl->idp_flags & IDP_ONLYATTR)
1362         return 0;
1363     if (x->ex_flags & EXFLAG_CA) {
1364         if (crl->idp_flags & IDP_ONLYUSER)
1365             return 0;
1366     } else {
1367         if (crl->idp_flags & IDP_ONLYCA)
1368             return 0;
1369     }
1370     *preasons = crl->idp_reasons;
1371     for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
1372         DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
1373         if (crldp_check_crlissuer(dp, crl, crl_score)) {
1374             if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) {
1375                 *preasons &= dp->dp_reasons;
1376                 return 1;
1377             }
1378         }
1379     }
1380     if ((!crl->idp || !crl->idp->distpoint)
1381         && (crl_score & CRL_SCORE_ISSUER_NAME))
1382         return 1;
1383     return 0;
1384 }
1385
1386 /*
1387  * Retrieve CRL corresponding to current certificate. If deltas enabled try
1388  * to find a delta CRL too
1389  */
1390
1391 static int get_crl_delta(X509_STORE_CTX *ctx,
1392                          X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x)
1393 {
1394     int ok;
1395     X509 *issuer = NULL;
1396     int crl_score = 0;
1397     unsigned int reasons;
1398     X509_CRL *crl = NULL, *dcrl = NULL;
1399     STACK_OF(X509_CRL) *skcrl;
1400     X509_NAME *nm = X509_get_issuer_name(x);
1401
1402     reasons = ctx->current_reasons;
1403     ok = get_crl_sk(ctx, &crl, &dcrl,
1404                     &issuer, &crl_score, &reasons, ctx->crls);
1405     if (ok)
1406         goto done;
1407
1408     /* Lookup CRLs from store */
1409
1410     skcrl = ctx->lookup_crls(ctx, nm);
1411
1412     /* If no CRLs found and a near match from get_crl_sk use that */
1413     if (!skcrl && crl)
1414         goto done;
1415
1416     get_crl_sk(ctx, &crl, &dcrl, &issuer, &crl_score, &reasons, skcrl);
1417
1418     sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
1419
1420  done:
1421     /* If we got any kind of CRL use it and return success */
1422     if (crl) {
1423         ctx->current_issuer = issuer;
1424         ctx->current_crl_score = crl_score;
1425         ctx->current_reasons = reasons;
1426         *pcrl = crl;
1427         *pdcrl = dcrl;
1428         return 1;
1429     }
1430     return 0;
1431 }
1432
1433 /* Check CRL validity */
1434 static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
1435 {
1436     X509 *issuer = NULL;
1437     EVP_PKEY *ikey = NULL;
1438     int cnum = ctx->error_depth;
1439     int chnum = sk_X509_num(ctx->chain) - 1;
1440
1441     /* if we have an alternative CRL issuer cert use that */
1442     if (ctx->current_issuer)
1443         issuer = ctx->current_issuer;
1444     /*
1445      * Else find CRL issuer: if not last certificate then issuer is next
1446      * certificate in chain.
1447      */
1448     else if (cnum < chnum)
1449         issuer = sk_X509_value(ctx->chain, cnum + 1);
1450     else {
1451         issuer = sk_X509_value(ctx->chain, chnum);
1452         /* If not self signed, can't check signature */
1453         if (!ctx->check_issued(ctx, issuer, issuer) &&
1454             !verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER))
1455             return 0;
1456     }
1457
1458     if (issuer == NULL)
1459         return 1;
1460
1461     /*
1462      * Skip most tests for deltas because they have already been done
1463      */
1464     if (!crl->base_crl_number) {
1465         /* Check for cRLSign bit if keyUsage present */
1466         if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
1467             !(issuer->ex_kusage & KU_CRL_SIGN) &&
1468             !verify_cb_crl(ctx, X509_V_ERR_KEYUSAGE_NO_CRL_SIGN))
1469             return 0;
1470
1471         if (!(ctx->current_crl_score & CRL_SCORE_SCOPE) &&
1472             !verify_cb_crl(ctx, X509_V_ERR_DIFFERENT_CRL_SCOPE))
1473             return 0;
1474
1475         if (!(ctx->current_crl_score & CRL_SCORE_SAME_PATH) &&
1476             check_crl_path(ctx, ctx->current_issuer) <= 0 &&
1477             !verify_cb_crl(ctx, X509_V_ERR_CRL_PATH_VALIDATION_ERROR))
1478             return 0;
1479
1480         if ((crl->idp_flags & IDP_INVALID) &&
1481             !verify_cb_crl(ctx, X509_V_ERR_INVALID_EXTENSION))
1482             return 0;
1483     }
1484
1485     if (!(ctx->current_crl_score & CRL_SCORE_TIME) &&
1486         !check_crl_time(ctx, crl, 1))
1487         return 0;
1488
1489     /* Attempt to get issuer certificate public key */
1490     ikey = X509_get0_pubkey(issuer);
1491
1492     if (!ikey &&
1493         !verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY))
1494         return 0;
1495
1496     if (ikey) {
1497         int rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags);
1498
1499         if (rv != X509_V_OK && !verify_cb_crl(ctx, rv))
1500             return 0;
1501         /* Verify CRL signature */
1502         if (X509_CRL_verify(crl, ikey) <= 0 &&
1503             !verify_cb_crl(ctx, X509_V_ERR_CRL_SIGNATURE_FAILURE))
1504             return 0;
1505     }
1506     return 1;
1507 }
1508
1509 /* Check certificate against CRL */
1510 static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
1511 {
1512     X509_REVOKED *rev;
1513
1514     /*
1515      * The rules changed for this... previously if a CRL contained unhandled
1516      * critical extensions it could still be used to indicate a certificate
1517      * was revoked. This has since been changed since critical extensions can
1518      * change the meaning of CRL entries.
1519      */
1520     if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
1521         && (crl->flags & EXFLAG_CRITICAL) &&
1522         !verify_cb_crl(ctx, X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION))
1523         return 0;
1524     /*
1525      * Look for serial number of certificate in CRL.  If found, make sure
1526      * reason is not removeFromCRL.
1527      */
1528     if (X509_CRL_get0_by_cert(crl, &rev, x)) {
1529         if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
1530             return 2;
1531         if (!verify_cb_crl(ctx, X509_V_ERR_CERT_REVOKED))
1532             return 0;
1533     }
1534
1535     return 1;
1536 }
1537
1538 static int check_policy(X509_STORE_CTX *ctx)
1539 {
1540     int ret;
1541
1542     if (ctx->parent)
1543         return 1;
1544     /*
1545      * With DANE, the trust anchor might be a bare public key, not a
1546      * certificate!  In that case our chain does not have the trust anchor
1547      * certificate as a top-most element.  This comports well with RFC5280
1548      * chain verification, since there too, the trust anchor is not part of the
1549      * chain to be verified.  In particular, X509_policy_check() does not look
1550      * at the TA cert, but assumes that it is present as the top-most chain
1551      * element.  We therefore temporarily push a NULL cert onto the chain if it
1552      * was verified via a bare public key, and pop it off right after the
1553      * X509_policy_check() call.
1554      */
1555     if (ctx->bare_ta_signed && !sk_X509_push(ctx->chain, NULL)) {
1556         X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1557         ctx->error = X509_V_ERR_OUT_OF_MEM;
1558         return 0;
1559     }
1560     ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
1561                             ctx->param->policies, ctx->param->flags);
1562     if (ctx->bare_ta_signed)
1563         sk_X509_pop(ctx->chain);
1564
1565     if (ret == X509_PCY_TREE_INTERNAL) {
1566         X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1567         ctx->error = X509_V_ERR_OUT_OF_MEM;
1568         return 0;
1569     }
1570     /* Invalid or inconsistent extensions */
1571     if (ret == X509_PCY_TREE_INVALID) {
1572         int i;
1573
1574         /* Locate certificates with bad extensions and notify callback. */
1575         for (i = 1; i < sk_X509_num(ctx->chain); i++) {
1576             X509 *x = sk_X509_value(ctx->chain, i);
1577
1578             if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1579                 continue;
1580             if (!verify_cb_cert(ctx, x, i,
1581                                 X509_V_ERR_INVALID_POLICY_EXTENSION))
1582                 return 0;
1583         }
1584         return 1;
1585     }
1586     if (ret == X509_PCY_TREE_FAILURE) {
1587         ctx->current_cert = NULL;
1588         ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1589         return ctx->verify_cb(0, ctx);
1590     }
1591     if (ret != X509_PCY_TREE_VALID) {
1592         X509err(X509_F_CHECK_POLICY, ERR_R_INTERNAL_ERROR);
1593         return 0;
1594     }
1595
1596     if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY) {
1597         ctx->current_cert = NULL;
1598         /*
1599          * Verification errors need to be "sticky", a callback may have allowed
1600          * an SSL handshake to continue despite an error, and we must then
1601          * remain in an error state.  Therefore, we MUST NOT clear earlier
1602          * verification errors by setting the error to X509_V_OK.
1603          */
1604         if (!ctx->verify_cb(2, ctx))
1605             return 0;
1606     }
1607
1608     return 1;
1609 }
1610
1611 /*-
1612  * Check certificate validity times.
1613  * If depth >= 0, invoke verification callbacks on error, otherwise just return
1614  * the validation status.
1615  *
1616  * Return 1 on success, 0 otherwise.
1617  */
1618 int x509_check_cert_time(X509_STORE_CTX *ctx, X509 *x, int depth)
1619 {
1620     time_t *ptime;
1621     int i;
1622
1623     if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1624         ptime = &ctx->param->check_time;
1625     else if (ctx->param->flags & X509_V_FLAG_NO_CHECK_TIME)
1626         return 1;
1627     else
1628         ptime = NULL;
1629
1630     i = X509_cmp_time(X509_get_notBefore(x), ptime);
1631     if (i >= 0 && depth < 0)
1632         return 0;
1633     if (i == 0 && !verify_cb_cert(ctx, x, depth,
1634                                   X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD))
1635         return 0;
1636     if (i > 0 && !verify_cb_cert(ctx, x, depth, X509_V_ERR_CERT_NOT_YET_VALID))
1637         return 0;
1638
1639     i = X509_cmp_time(X509_get_notAfter(x), ptime);
1640     if (i <= 0 && depth < 0)
1641         return 0;
1642     if (i == 0 && !verify_cb_cert(ctx, x, depth,
1643                                   X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD))
1644         return 0;
1645     if (i < 0 && !verify_cb_cert(ctx, x, depth, X509_V_ERR_CERT_HAS_EXPIRED))
1646         return 0;
1647     return 1;
1648 }
1649
1650 static int internal_verify(X509_STORE_CTX *ctx)
1651 {
1652     int n = sk_X509_num(ctx->chain) - 1;
1653     X509 *xi = sk_X509_value(ctx->chain, n);
1654     X509 *xs;
1655
1656     /*
1657      * With DANE-verified bare public key TA signatures, it remains only to
1658      * check the timestamps of the top certificate.  We report the issuer as
1659      * NULL, since all we have is a bare key.
1660      */
1661     if (ctx->bare_ta_signed) {
1662         xs = xi;
1663         xi = NULL;
1664         goto check_cert;
1665     }
1666
1667     if (ctx->check_issued(ctx, xi, xi))
1668         xs = xi;
1669     else {
1670         if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
1671             xs = xi;
1672             goto check_cert;
1673         }
1674         if (n <= 0)
1675             return verify_cb_cert(ctx, xi, 0,
1676                                   X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE);
1677         n--;
1678         ctx->error_depth = n;
1679         xs = sk_X509_value(ctx->chain, n);
1680     }
1681
1682     /*
1683      * Do not clear ctx->error=0, it must be "sticky", only the user's callback
1684      * is allowed to reset errors (at its own peril).
1685      */
1686     while (n >= 0) {
1687         EVP_PKEY *pkey;
1688
1689         /*
1690          * Skip signature check for self signed certificates unless explicitly
1691          * asked for.  It doesn't add any security and just wastes time.  If
1692          * the issuer's public key is unusable, report the issuer certificate
1693          * and its depth (rather than the depth of the subject).
1694          */
1695         if (xs != xi || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE)) {
1696             if ((pkey = X509_get0_pubkey(xi)) == NULL) {
1697                 if (!verify_cb_cert(ctx, xi, xi != xs ? n+1 : n,
1698                         X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY))
1699                     return 0;
1700             } else if (X509_verify(xs, pkey) <= 0) {
1701                 if (!verify_cb_cert(ctx, xs, n,
1702                                     X509_V_ERR_CERT_SIGNATURE_FAILURE))
1703                     return 0;
1704             }
1705         }
1706
1707  check_cert:
1708         /* Calls verify callback as needed */
1709         if (!x509_check_cert_time(ctx, xs, n))
1710             return 0;
1711
1712         /*
1713          * Signal success at this depth.  However, the previous error (if any)
1714          * is retained.
1715          */
1716         ctx->current_issuer = xi;
1717         ctx->current_cert = xs;
1718         ctx->error_depth = n;
1719         if (!ctx->verify_cb(1, ctx))
1720             return 0;
1721
1722         if (--n >= 0) {
1723             xi = xs;
1724             xs = sk_X509_value(ctx->chain, n);
1725         }
1726     }
1727     return 1;
1728 }
1729
1730 int X509_cmp_current_time(const ASN1_TIME *ctm)
1731 {
1732     return X509_cmp_time(ctm, NULL);
1733 }
1734
1735 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1736 {
1737     char *str;
1738     ASN1_TIME atm;
1739     long offset;
1740     char buff1[24], buff2[24], *p;
1741     int i, j, remaining;
1742
1743     p = buff1;
1744     remaining = ctm->length;
1745     str = (char *)ctm->data;
1746     /*
1747      * Note that the following (historical) code allows much more slack in the
1748      * time format than RFC5280. In RFC5280, the representation is fixed:
1749      * UTCTime: YYMMDDHHMMSSZ
1750      * GeneralizedTime: YYYYMMDDHHMMSSZ
1751      */
1752     if (ctm->type == V_ASN1_UTCTIME) {
1753         /* YYMMDDHHMM[SS]Z or YYMMDDHHMM[SS](+-)hhmm */
1754         int min_length = sizeof("YYMMDDHHMMZ") - 1;
1755         int max_length = sizeof("YYMMDDHHMMSS+hhmm") - 1;
1756         if (remaining < min_length || remaining > max_length)
1757             return 0;
1758         memcpy(p, str, 10);
1759         p += 10;
1760         str += 10;
1761         remaining -= 10;
1762     } else {
1763         /* YYYYMMDDHHMM[SS[.fff]]Z or YYYYMMDDHHMM[SS[.f[f[f]]]](+-)hhmm */
1764         int min_length = sizeof("YYYYMMDDHHMMZ") - 1;
1765         int max_length = sizeof("YYYYMMDDHHMMSS.fff+hhmm") - 1;
1766         if (remaining < min_length || remaining > max_length)
1767             return 0;
1768         memcpy(p, str, 12);
1769         p += 12;
1770         str += 12;
1771         remaining -= 12;
1772     }
1773
1774     if ((*str == 'Z') || (*str == '-') || (*str == '+')) {
1775         *(p++) = '0';
1776         *(p++) = '0';
1777     } else {
1778         /* SS (seconds) */
1779         if (remaining < 2)
1780             return 0;
1781         *(p++) = *(str++);
1782         *(p++) = *(str++);
1783         remaining -= 2;
1784         /*
1785          * Skip any (up to three) fractional seconds...
1786          * TODO(emilia): in RFC5280, fractional seconds are forbidden.
1787          * Can we just kill them altogether?
1788          */
1789         if (remaining && *str == '.') {
1790             str++;
1791             remaining--;
1792             for (i = 0; i < 3 && remaining; i++, str++, remaining--) {
1793                 if (*str < '0' || *str > '9')
1794                     break;
1795             }
1796         }
1797
1798     }
1799     *(p++) = 'Z';
1800     *(p++) = '\0';
1801
1802     /* We now need either a terminating 'Z' or an offset. */
1803     if (!remaining)
1804         return 0;
1805     if (*str == 'Z') {
1806         if (remaining != 1)
1807             return 0;
1808         offset = 0;
1809     } else {
1810         /* (+-)HHMM */
1811         if ((*str != '+') && (*str != '-'))
1812             return 0;
1813         /* Historical behaviour: the (+-)hhmm offset is forbidden in RFC5280. */
1814         if (remaining != 5)
1815             return 0;
1816         if (str[1] < '0' || str[1] > '9' || str[2] < '0' || str[2] > '9' ||
1817             str[3] < '0' || str[3] > '9' || str[4] < '0' || str[4] > '9')
1818             return 0;
1819         offset = ((str[1] - '0') * 10 + (str[2] - '0')) * 60;
1820         offset += (str[3] - '0') * 10 + (str[4] - '0');
1821         if (*str == '-')
1822             offset = -offset;
1823     }
1824     atm.type = ctm->type;
1825     atm.flags = 0;
1826     atm.length = sizeof(buff2);
1827     atm.data = (unsigned char *)buff2;
1828
1829     if (X509_time_adj(&atm, offset * 60, cmp_time) == NULL)
1830         return 0;
1831
1832     if (ctm->type == V_ASN1_UTCTIME) {
1833         i = (buff1[0] - '0') * 10 + (buff1[1] - '0');
1834         if (i < 50)
1835             i += 100;           /* cf. RFC 2459 */
1836         j = (buff2[0] - '0') * 10 + (buff2[1] - '0');
1837         if (j < 50)
1838             j += 100;
1839
1840         if (i < j)
1841             return -1;
1842         if (i > j)
1843             return 1;
1844     }
1845     i = strcmp(buff1, buff2);
1846     if (i == 0)                 /* wait a second then return younger :-) */
1847         return -1;
1848     else
1849         return i;
1850 }
1851
1852 ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
1853 {
1854     return X509_time_adj(s, adj, NULL);
1855 }
1856
1857 ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec, time_t *in_tm)
1858 {
1859     return X509_time_adj_ex(s, 0, offset_sec, in_tm);
1860 }
1861
1862 ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
1863                             int offset_day, long offset_sec, time_t *in_tm)
1864 {
1865     time_t t;
1866
1867     if (in_tm)
1868         t = *in_tm;
1869     else
1870         time(&t);
1871
1872     if (s && !(s->flags & ASN1_STRING_FLAG_MSTRING)) {
1873         if (s->type == V_ASN1_UTCTIME)
1874             return ASN1_UTCTIME_adj(s, t, offset_day, offset_sec);
1875         if (s->type == V_ASN1_GENERALIZEDTIME)
1876             return ASN1_GENERALIZEDTIME_adj(s, t, offset_day, offset_sec);
1877     }
1878     return ASN1_TIME_adj(s, t, offset_day, offset_sec);
1879 }
1880
1881 int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
1882 {
1883     EVP_PKEY *ktmp = NULL, *ktmp2;
1884     int i, j;
1885
1886     if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey))
1887         return 1;
1888
1889     for (i = 0; i < sk_X509_num(chain); i++) {
1890         ktmp = X509_get0_pubkey(sk_X509_value(chain, i));
1891         if (ktmp == NULL) {
1892             X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
1893                     X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
1894             return 0;
1895         }
1896         if (!EVP_PKEY_missing_parameters(ktmp))
1897             break;
1898     }
1899     if (ktmp == NULL) {
1900         X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
1901                 X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
1902         return 0;
1903     }
1904
1905     /* first, populate the other certs */
1906     for (j = i - 1; j >= 0; j--) {
1907         ktmp2 = X509_get0_pubkey(sk_X509_value(chain, j));
1908         EVP_PKEY_copy_parameters(ktmp2, ktmp);
1909     }
1910
1911     if (pkey != NULL)
1912         EVP_PKEY_copy_parameters(pkey, ktmp);
1913     return 1;
1914 }
1915
1916 /* Make a delta CRL as the diff between two full CRLs */
1917
1918 X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
1919                         EVP_PKEY *skey, const EVP_MD *md, unsigned int flags)
1920 {
1921     X509_CRL *crl = NULL;
1922     int i;
1923     STACK_OF(X509_REVOKED) *revs = NULL;
1924     /* CRLs can't be delta already */
1925     if (base->base_crl_number || newer->base_crl_number) {
1926         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_ALREADY_DELTA);
1927         return NULL;
1928     }
1929     /* Base and new CRL must have a CRL number */
1930     if (!base->crl_number || !newer->crl_number) {
1931         X509err(X509_F_X509_CRL_DIFF, X509_R_NO_CRL_NUMBER);
1932         return NULL;
1933     }
1934     /* Issuer names must match */
1935     if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(newer))) {
1936         X509err(X509_F_X509_CRL_DIFF, X509_R_ISSUER_MISMATCH);
1937         return NULL;
1938     }
1939     /* AKID and IDP must match */
1940     if (!crl_extension_match(base, newer, NID_authority_key_identifier)) {
1941         X509err(X509_F_X509_CRL_DIFF, X509_R_AKID_MISMATCH);
1942         return NULL;
1943     }
1944     if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) {
1945         X509err(X509_F_X509_CRL_DIFF, X509_R_IDP_MISMATCH);
1946         return NULL;
1947     }
1948     /* Newer CRL number must exceed full CRL number */
1949     if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) {
1950         X509err(X509_F_X509_CRL_DIFF, X509_R_NEWER_CRL_NOT_NEWER);
1951         return NULL;
1952     }
1953     /* CRLs must verify */
1954     if (skey && (X509_CRL_verify(base, skey) <= 0 ||
1955                  X509_CRL_verify(newer, skey) <= 0)) {
1956         X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_VERIFY_FAILURE);
1957         return NULL;
1958     }
1959     /* Create new CRL */
1960     crl = X509_CRL_new();
1961     if (crl == NULL || !X509_CRL_set_version(crl, 1))
1962         goto memerr;
1963     /* Set issuer name */
1964     if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer)))
1965         goto memerr;
1966
1967     if (!X509_CRL_set_lastUpdate(crl, X509_CRL_get_lastUpdate(newer)))
1968         goto memerr;
1969     if (!X509_CRL_set_nextUpdate(crl, X509_CRL_get_nextUpdate(newer)))
1970         goto memerr;
1971
1972     /* Set base CRL number: must be critical */
1973
1974     if (!X509_CRL_add1_ext_i2d(crl, NID_delta_crl, base->crl_number, 1, 0))
1975         goto memerr;
1976
1977     /*
1978      * Copy extensions across from newest CRL to delta: this will set CRL
1979      * number to correct value too.
1980      */
1981
1982     for (i = 0; i < X509_CRL_get_ext_count(newer); i++) {
1983         X509_EXTENSION *ext;
1984         ext = X509_CRL_get_ext(newer, i);
1985         if (!X509_CRL_add_ext(crl, ext, -1))
1986             goto memerr;
1987     }
1988
1989     /* Go through revoked entries, copying as needed */
1990
1991     revs = X509_CRL_get_REVOKED(newer);
1992
1993     for (i = 0; i < sk_X509_REVOKED_num(revs); i++) {
1994         X509_REVOKED *rvn, *rvtmp;
1995         rvn = sk_X509_REVOKED_value(revs, i);
1996         /*
1997          * Add only if not also in base. TODO: need something cleverer here
1998          * for some more complex CRLs covering multiple CAs.
1999          */
2000         if (!X509_CRL_get0_by_serial(base, &rvtmp, &rvn->serialNumber)) {
2001             rvtmp = X509_REVOKED_dup(rvn);
2002             if (!rvtmp)
2003                 goto memerr;
2004             if (!X509_CRL_add0_revoked(crl, rvtmp)) {
2005                 X509_REVOKED_free(rvtmp);
2006                 goto memerr;
2007             }
2008         }
2009     }
2010     /* TODO: optionally prune deleted entries */
2011
2012     if (skey && md && !X509_CRL_sign(crl, skey, md))
2013         goto memerr;
2014
2015     return crl;
2016
2017  memerr:
2018     X509err(X509_F_X509_CRL_DIFF, ERR_R_MALLOC_FAILURE);
2019     X509_CRL_free(crl);
2020     return NULL;
2021 }
2022
2023 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
2024 {
2025     return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
2026 }
2027
2028 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
2029 {
2030     return CRYPTO_get_ex_data(&ctx->ex_data, idx);
2031 }
2032
2033 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
2034 {
2035     return ctx->error;
2036 }
2037
2038 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
2039 {
2040     ctx->error = err;
2041 }
2042
2043 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
2044 {
2045     return ctx->error_depth;
2046 }
2047
2048 void X509_STORE_CTX_set_error_depth(X509_STORE_CTX *ctx, int depth)
2049 {
2050     ctx->error_depth = depth;
2051 }
2052
2053 X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
2054 {
2055     return ctx->current_cert;
2056 }
2057
2058 void X509_STORE_CTX_set_current_cert(X509_STORE_CTX *ctx, X509 *x)
2059 {
2060     ctx->current_cert = x;
2061 }
2062
2063 STACK_OF(X509) *X509_STORE_CTX_get0_chain(X509_STORE_CTX *ctx)
2064 {
2065     return ctx->chain;
2066 }
2067
2068 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
2069 {
2070     if (!ctx->chain)
2071         return NULL;
2072     return X509_chain_up_ref(ctx->chain);
2073 }
2074
2075 X509 *X509_STORE_CTX_get0_current_issuer(X509_STORE_CTX *ctx)
2076 {
2077     return ctx->current_issuer;
2078 }
2079
2080 X509_CRL *X509_STORE_CTX_get0_current_crl(X509_STORE_CTX *ctx)
2081 {
2082     return ctx->current_crl;
2083 }
2084
2085 X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(X509_STORE_CTX *ctx)
2086 {
2087     return ctx->parent;
2088 }
2089
2090 void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
2091 {
2092     ctx->cert = x;
2093 }
2094
2095 void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
2096 {
2097     ctx->crls = sk;
2098 }
2099
2100 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
2101 {
2102     /*
2103      * XXX: Why isn't this function always used to set the associated trust?
2104      * Should there even be a VPM->trust field at all?  Or should the trust
2105      * always be inferred from the purpose by X509_STORE_CTX_init().
2106      */
2107     return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
2108 }
2109
2110 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
2111 {
2112     /*
2113      * XXX: See above, this function would only be needed when the default
2114      * trust for the purpose needs an override in a corner case.
2115      */
2116     return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
2117 }
2118
2119 /*
2120  * This function is used to set the X509_STORE_CTX purpose and trust values.
2121  * This is intended to be used when another structure has its own trust and
2122  * purpose values which (if set) will be inherited by the ctx. If they aren't
2123  * set then we will usually have a default purpose in mind which should then
2124  * be used to set the trust value. An example of this is SSL use: an SSL
2125  * structure will have its own purpose and trust settings which the
2126  * application can set: if they aren't set then we use the default of SSL
2127  * client/server.
2128  */
2129
2130 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
2131                                    int purpose, int trust)
2132 {
2133     int idx;
2134     /* If purpose not set use default */
2135     if (!purpose)
2136         purpose = def_purpose;
2137     /* If we have a purpose then check it is valid */
2138     if (purpose) {
2139         X509_PURPOSE *ptmp;
2140         idx = X509_PURPOSE_get_by_id(purpose);
2141         if (idx == -1) {
2142             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2143                     X509_R_UNKNOWN_PURPOSE_ID);
2144             return 0;
2145         }
2146         ptmp = X509_PURPOSE_get0(idx);
2147         if (ptmp->trust == X509_TRUST_DEFAULT) {
2148             idx = X509_PURPOSE_get_by_id(def_purpose);
2149             /*
2150              * XXX: In the two callers above def_purpose is always 0, which is
2151              * not a known value, so idx will always be -1.  How is the
2152              * X509_TRUST_DEFAULT case actually supposed to be handled?
2153              */
2154             if (idx == -1) {
2155                 X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2156                         X509_R_UNKNOWN_PURPOSE_ID);
2157                 return 0;
2158             }
2159             ptmp = X509_PURPOSE_get0(idx);
2160         }
2161         /* If trust not set then get from purpose default */
2162         if (!trust)
2163             trust = ptmp->trust;
2164     }
2165     if (trust) {
2166         idx = X509_TRUST_get_by_id(trust);
2167         if (idx == -1) {
2168             X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2169                     X509_R_UNKNOWN_TRUST_ID);
2170             return 0;
2171         }
2172     }
2173
2174     if (purpose && !ctx->param->purpose)
2175         ctx->param->purpose = purpose;
2176     if (trust && !ctx->param->trust)
2177         ctx->param->trust = trust;
2178     return 1;
2179 }
2180
2181 X509_STORE_CTX *X509_STORE_CTX_new(void)
2182 {
2183     X509_STORE_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
2184
2185     if (ctx == NULL) {
2186         X509err(X509_F_X509_STORE_CTX_NEW, ERR_R_MALLOC_FAILURE);
2187         return NULL;
2188     }
2189     return ctx;
2190 }
2191
2192 void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
2193 {
2194     if (ctx == NULL)
2195         return;
2196
2197     X509_STORE_CTX_cleanup(ctx);
2198     OPENSSL_free(ctx);
2199 }
2200
2201 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2202                         STACK_OF(X509) *chain)
2203 {
2204     int ret = 1;
2205
2206     ctx->ctx = store;
2207     ctx->current_method = 0;
2208     ctx->cert = x509;
2209     ctx->untrusted = chain;
2210     ctx->crls = NULL;
2211     ctx->num_untrusted = 0;
2212     ctx->other_ctx = NULL;
2213     ctx->valid = 0;
2214     ctx->chain = NULL;
2215     ctx->error = 0;
2216     ctx->explicit_policy = 0;
2217     ctx->error_depth = 0;
2218     ctx->current_cert = NULL;
2219     ctx->current_issuer = NULL;
2220     ctx->current_crl = NULL;
2221     ctx->current_crl_score = 0;
2222     ctx->current_reasons = 0;
2223     ctx->tree = NULL;
2224     ctx->parent = NULL;
2225     ctx->dane = NULL;
2226     ctx->bare_ta_signed = 0;
2227     /* Zero ex_data to make sure we're cleanup-safe */
2228     memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2229
2230     /* store->cleanup is always 0 in OpenSSL, if set must be idempotent */
2231     if (store)
2232         ctx->cleanup = store->cleanup;
2233     else
2234         ctx->cleanup = 0;
2235
2236     if (store && store->check_issued)
2237         ctx->check_issued = store->check_issued;
2238     else
2239         ctx->check_issued = check_issued;
2240
2241     if (store && store->get_issuer)
2242         ctx->get_issuer = store->get_issuer;
2243     else
2244         ctx->get_issuer = X509_STORE_CTX_get1_issuer;
2245
2246     if (store && store->verify_cb)
2247         ctx->verify_cb = store->verify_cb;
2248     else
2249         ctx->verify_cb = null_callback;
2250
2251     if (store && store->verify)
2252         ctx->verify = store->verify;
2253     else
2254         ctx->verify = internal_verify;
2255
2256     if (store && store->check_revocation)
2257         ctx->check_revocation = store->check_revocation;
2258     else
2259         ctx->check_revocation = check_revocation;
2260
2261     if (store && store->get_crl)
2262         ctx->get_crl = store->get_crl;
2263     else
2264         ctx->get_crl = NULL;
2265
2266     if (store && store->check_crl)
2267         ctx->check_crl = store->check_crl;
2268     else
2269         ctx->check_crl = check_crl;
2270
2271     if (store && store->cert_crl)
2272         ctx->cert_crl = store->cert_crl;
2273     else
2274         ctx->cert_crl = cert_crl;
2275
2276     if (store && store->lookup_certs)
2277         ctx->lookup_certs = store->lookup_certs;
2278     else
2279         ctx->lookup_certs = X509_STORE_CTX_get1_certs;
2280
2281     if (store && store->lookup_crls)
2282         ctx->lookup_crls = store->lookup_crls;
2283     else
2284         ctx->lookup_crls = X509_STORE_CTX_get1_crls;
2285
2286     ctx->check_policy = check_policy;
2287
2288     ctx->param = X509_VERIFY_PARAM_new();
2289     if (ctx->param == NULL) {
2290         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2291         goto err;
2292     }
2293
2294     /*
2295      * Inherit callbacks and flags from X509_STORE if not set use defaults.
2296      */
2297     if (store)
2298         ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2299     else
2300         ctx->param->inh_flags |= X509_VP_FLAG_DEFAULT | X509_VP_FLAG_ONCE;
2301
2302     if (ret)
2303         ret = X509_VERIFY_PARAM_inherit(ctx->param,
2304                                         X509_VERIFY_PARAM_lookup("default"));
2305
2306     if (ret == 0) {
2307         X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2308         goto err;
2309     }
2310
2311     /*
2312      * XXX: For now, continue to inherit trust from VPM, but infer from the
2313      * purpose if this still yields the default value.
2314      */
2315     if (ctx->param->trust == X509_TRUST_DEFAULT) {
2316         int idx = X509_PURPOSE_get_by_id(ctx->param->purpose);
2317         X509_PURPOSE *xp = X509_PURPOSE_get0(idx);
2318
2319         if (xp != NULL)
2320             ctx->param->trust = X509_PURPOSE_get_trust(xp);
2321     }
2322
2323     if (CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
2324                            &ctx->ex_data))
2325         return 1;
2326     X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2327
2328  err:
2329     /*
2330      * On error clean up allocated storage, if the store context was not
2331      * allocated with X509_STORE_CTX_new() this is our last chance to do so.
2332      */
2333     X509_STORE_CTX_cleanup(ctx);
2334     return 0;
2335 }
2336
2337 /*
2338  * Set alternative lookup method: just a STACK of trusted certificates. This
2339  * avoids X509_STORE nastiness where it isn't needed.
2340  */
2341 void X509_STORE_CTX_set0_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2342 {
2343     ctx->other_ctx = sk;
2344     ctx->get_issuer = get_issuer_sk;
2345     ctx->lookup_certs = lookup_certs_sk;
2346 }
2347
2348 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
2349 {
2350     /*
2351      * We need to be idempotent because, unfortunately, free() also calls
2352      * cleanup(), so the natural call sequence new(), init(), cleanup(), free()
2353      * calls cleanup() for the same object twice!  Thus we must zero the
2354      * pointers below after they're freed!
2355      */
2356     /* Seems to always be 0 in OpenSSL, do this at most once. */
2357     if (ctx->cleanup != NULL) {
2358         ctx->cleanup(ctx);
2359         ctx->cleanup = NULL;
2360     }
2361     if (ctx->param != NULL) {
2362         if (ctx->parent == NULL)
2363             X509_VERIFY_PARAM_free(ctx->param);
2364         ctx->param = NULL;
2365     }
2366     X509_policy_tree_free(ctx->tree);
2367     ctx->tree = NULL;
2368     sk_X509_pop_free(ctx->chain, X509_free);
2369     ctx->chain = NULL;
2370     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
2371     memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2372 }
2373
2374 void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
2375 {
2376     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2377 }
2378
2379 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
2380 {
2381     X509_VERIFY_PARAM_set_flags(ctx->param, flags);
2382 }
2383
2384 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags,
2385                              time_t t)
2386 {
2387     X509_VERIFY_PARAM_set_time(ctx->param, t);
2388 }
2389
2390 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
2391                                   X509_STORE_CTX_verify_cb verify_cb)
2392 {
2393     ctx->verify_cb = verify_cb;
2394 }
2395
2396 X509_STORE_CTX_verify_cb X509_STORE_CTX_get_verify_cb(X509_STORE_CTX *ctx)
2397 {
2398     return ctx->verify_cb;
2399 }
2400
2401 X509 *X509_STORE_CTX_get0_cert(X509_STORE_CTX *ctx)
2402 {
2403     return ctx->cert;
2404 }
2405
2406 STACK_OF(X509) *X509_STORE_CTX_get0_untrusted(X509_STORE_CTX *ctx)
2407 {
2408     return ctx->untrusted;
2409 }
2410
2411 void X509_STORE_CTX_set0_untrusted(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2412 {
2413     ctx->untrusted = sk;
2414 }
2415
2416 void X509_STORE_CTX_set0_verified_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2417 {
2418     sk_X509_pop_free(ctx->chain, X509_free);
2419     ctx->chain = sk;
2420 }
2421
2422 void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx,
2423                                X509_STORE_CTX_verify verify)
2424 {
2425     ctx->verify = verify;
2426 }
2427
2428 X509_STORE_CTX_verify X509_STORE_CTX_get_verify(X509_STORE_CTX *ctx)
2429 {
2430     return ctx->verify;
2431 }
2432
2433 X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
2434 {
2435     return ctx->tree;
2436 }
2437
2438 int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
2439 {
2440     return ctx->explicit_policy;
2441 }
2442
2443 int X509_STORE_CTX_get_num_untrusted(X509_STORE_CTX *ctx)
2444 {
2445     return ctx->num_untrusted;
2446 }
2447
2448 int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
2449 {
2450     const X509_VERIFY_PARAM *param;
2451     param = X509_VERIFY_PARAM_lookup(name);
2452     if (!param)
2453         return 0;
2454     return X509_VERIFY_PARAM_inherit(ctx->param, param);
2455 }
2456
2457 X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
2458 {
2459     return ctx->param;
2460 }
2461
2462 void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
2463 {
2464     X509_VERIFY_PARAM_free(ctx->param);
2465     ctx->param = param;
2466 }
2467
2468 void X509_STORE_CTX_set0_dane(X509_STORE_CTX *ctx, SSL_DANE *dane)
2469 {
2470     ctx->dane = dane;
2471 }
2472
2473 static unsigned char *dane_i2d(
2474     X509 *cert,
2475     uint8_t selector,
2476     unsigned int *i2dlen)
2477 {
2478     unsigned char *buf = NULL;
2479     int len;
2480
2481     /*
2482      * Extract ASN.1 DER form of certificate or public key.
2483      */
2484     switch (selector) {
2485     case DANETLS_SELECTOR_CERT:
2486         len = i2d_X509(cert, &buf);
2487         break;
2488     case DANETLS_SELECTOR_SPKI:
2489         len = i2d_X509_PUBKEY(X509_get_X509_PUBKEY(cert), &buf);
2490         break;
2491     default:
2492         X509err(X509_F_DANE_I2D, X509_R_BAD_SELECTOR);
2493         return NULL;
2494     }
2495
2496     if (len < 0 || buf == NULL) {
2497         X509err(X509_F_DANE_I2D, ERR_R_MALLOC_FAILURE);
2498         return NULL;
2499     }
2500
2501     *i2dlen = (unsigned int)len;
2502     return buf;
2503 }
2504
2505 #define DANETLS_NONE 256        /* impossible uint8_t */
2506
2507 static int dane_match(X509_STORE_CTX *ctx, X509 *cert, int depth)
2508 {
2509     SSL_DANE *dane = ctx->dane;
2510     unsigned usage = DANETLS_NONE;
2511     unsigned selector = DANETLS_NONE;
2512     unsigned ordinal = DANETLS_NONE;
2513     unsigned mtype = DANETLS_NONE;
2514     unsigned char *i2dbuf = NULL;
2515     unsigned int i2dlen = 0;
2516     unsigned char mdbuf[EVP_MAX_MD_SIZE];
2517     unsigned char *cmpbuf = NULL;
2518     unsigned int cmplen = 0;
2519     int i;
2520     int recnum;
2521     int matched = 0;
2522     danetls_record *t = NULL;
2523     uint32_t mask;
2524
2525     mask = (depth == 0) ? DANETLS_EE_MASK : DANETLS_TA_MASK;
2526
2527     /*
2528      * The trust store is not applicable with DANE-TA(2)
2529      */
2530     if (depth >= ctx->num_untrusted)
2531         mask &= DANETLS_PKIX_MASK;
2532
2533     /*
2534      * If we've previously matched a PKIX-?? record, no need to test any
2535      * further PKIX-?? records, it remains to just build the PKIX chain.
2536      * Had the match been a DANE-?? record, we'd be done already.
2537      */
2538     if (dane->mdpth >= 0)
2539         mask &= ~DANETLS_PKIX_MASK;
2540
2541     /*-
2542      * https://tools.ietf.org/html/rfc7671#section-5.1
2543      * https://tools.ietf.org/html/rfc7671#section-5.2
2544      * https://tools.ietf.org/html/rfc7671#section-5.3
2545      * https://tools.ietf.org/html/rfc7671#section-5.4
2546      *
2547      * We handle DANE-EE(3) records first as they require no chain building
2548      * and no expiration or hostname checks.  We also process digests with
2549      * higher ordinals first and ignore lower priorities except Full(0) which
2550      * is always processed (last).  If none match, we then process PKIX-EE(1).
2551      *
2552      * NOTE: This relies on DANE usages sorting before the corresponding PKIX
2553      * usages in SSL_dane_tlsa_add(), and also on descending sorting of digest
2554      * priorities.  See twin comment in ssl/ssl_lib.c.
2555      *
2556      * We expect that most TLSA RRsets will have just a single usage, so we
2557      * don't go out of our way to cache multiple selector-specific i2d buffers
2558      * across usages, but if the selector happens to remain the same as switch
2559      * usages, that's OK.  Thus, a set of "3 1 1", "3 0 1", "1 1 1", "1 0 1",
2560      * records would result in us generating each of the certificate and public
2561      * key DER forms twice, but more typically we'd just see multiple "3 1 1"
2562      * or multiple "3 0 1" records.
2563      *
2564      * As soon as we find a match at any given depth, we stop, because either
2565      * we've matched a DANE-?? record and the peer is authenticated, or, after
2566      * exhausting all DANE-?? records, we've matched a PKIX-?? record, which is
2567      * sufficient for DANE, and what remains to do is ordinary PKIX validation.
2568      */
2569     recnum = (dane->umask & mask) ? sk_danetls_record_num(dane->trecs) : 0;
2570     for (i = 0; matched == 0 && i < recnum; ++i) {
2571         t = sk_danetls_record_value(dane->trecs, i);
2572         if ((DANETLS_USAGE_BIT(t->usage) & mask) == 0)
2573             continue;
2574         if (t->usage != usage) {
2575             usage = t->usage;
2576
2577             /* Reset digest agility for each usage/selector pair */
2578             mtype = DANETLS_NONE;
2579             ordinal = dane->dctx->mdord[t->mtype];
2580         }
2581         if (t->selector != selector) {
2582             selector = t->selector;
2583
2584             /* Update per-selector state */
2585             OPENSSL_free(i2dbuf);
2586             i2dbuf = dane_i2d(cert, selector, &i2dlen);
2587             if (i2dbuf == NULL)
2588                 return -1;
2589
2590             /* Reset digest agility for each usage/selector pair */
2591             mtype = DANETLS_NONE;
2592             ordinal = dane->dctx->mdord[t->mtype];
2593         } else if (t->mtype != DANETLS_MATCHING_FULL) {
2594             /*-
2595              * Digest agility:
2596              *
2597              *     <https://tools.ietf.org/html/rfc7671#section-9>
2598              *
2599              * For a fixed selector, after processing all records with the
2600              * highest mtype ordinal, ignore all mtypes with lower ordinals
2601              * other than "Full".
2602              */
2603             if (dane->dctx->mdord[t->mtype] < ordinal)
2604                 continue;
2605         }
2606
2607         /*
2608          * Each time we hit a (new selector or) mtype, re-compute the relevant
2609          * digest, more complex caching is not worth the code space.
2610          */
2611         if (t->mtype != mtype) {
2612             const EVP_MD *md = dane->dctx->mdevp[mtype = t->mtype];
2613             cmpbuf = i2dbuf;
2614             cmplen = i2dlen;
2615
2616             if (md != NULL) {
2617                 cmpbuf = mdbuf;
2618                 if (!EVP_Digest(i2dbuf, i2dlen, cmpbuf, &cmplen, md, 0)) {
2619                     matched = -1;
2620                     break;
2621                 }
2622             }
2623         }
2624
2625         /*
2626          * Squirrel away the certificate and depth if we have a match.  Any
2627          * DANE match is dispositive, but with PKIX we still need to build a
2628          * full chain.
2629          */
2630         if (cmplen == t->dlen &&
2631             memcmp(cmpbuf, t->data, cmplen) == 0) {
2632             if (DANETLS_USAGE_BIT(usage) & DANETLS_DANE_MASK)
2633                 matched = 1;
2634             if (matched || dane->mdpth < 0) {
2635                 dane->mdpth = depth;
2636                 dane->mtlsa = t;
2637                 OPENSSL_free(dane->mcert);
2638                 dane->mcert = cert;
2639                 X509_up_ref(cert);
2640             }
2641             break;
2642         }
2643     }
2644
2645     /* Clear the one-element DER cache */
2646     OPENSSL_free(i2dbuf);
2647     return matched;
2648 }
2649
2650 static int check_dane_issuer(X509_STORE_CTX *ctx, int depth)
2651 {
2652     SSL_DANE *dane = ctx->dane;
2653     int matched = 0;
2654     X509 *cert;
2655
2656     if (!DANETLS_HAS_TA(dane) || depth == 0)
2657         return  X509_TRUST_UNTRUSTED;
2658
2659     /*
2660      * Record any DANE trust-anchor matches, for the first depth to test, if
2661      * there's one at that depth. (This'll be false for length 1 chains looking
2662      * for an exact match for the leaf certificate).
2663      */
2664     cert = sk_X509_value(ctx->chain, depth);
2665     if (cert != NULL && (matched = dane_match(ctx, cert, depth)) < 0)
2666         return  X509_TRUST_REJECTED;
2667     if (matched > 0) {
2668         ctx->num_untrusted = depth - 1;
2669         return  X509_TRUST_TRUSTED;
2670     }
2671
2672     return  X509_TRUST_UNTRUSTED;
2673 }
2674
2675 static int check_dane_pkeys(X509_STORE_CTX *ctx)
2676 {
2677     SSL_DANE *dane = ctx->dane;
2678     danetls_record *t;
2679     int num = ctx->num_untrusted;
2680     X509 *cert = sk_X509_value(ctx->chain, num - 1);
2681     int recnum = sk_danetls_record_num(dane->trecs);
2682     int i;
2683
2684     for (i = 0; i < recnum; ++i) {
2685         t = sk_danetls_record_value(dane->trecs, i);
2686         if (t->usage != DANETLS_USAGE_DANE_TA ||
2687             t->selector != DANETLS_SELECTOR_SPKI ||
2688             t->mtype != DANETLS_MATCHING_FULL ||
2689             X509_verify(cert, t->spki) <= 0)
2690             continue;
2691
2692         /* Clear any PKIX-?? matches that failed to extend to a full chain */
2693         X509_free(dane->mcert);
2694         dane->mcert = NULL;
2695
2696         /* Record match via a bare TA public key */
2697         ctx->bare_ta_signed = 1;
2698         dane->mdpth = num - 1;
2699         dane->mtlsa = t;
2700
2701         /* Prune any excess chain certificates */
2702         num = sk_X509_num(ctx->chain);
2703         for (; num > ctx->num_untrusted; --num)
2704             X509_free(sk_X509_pop(ctx->chain));
2705
2706         return X509_TRUST_TRUSTED;
2707     }
2708
2709     return X509_TRUST_UNTRUSTED;
2710 }
2711
2712 static void dane_reset(SSL_DANE *dane)
2713 {
2714     /*
2715      * Reset state to verify another chain, or clear after failure.
2716      */
2717     X509_free(dane->mcert);
2718     dane->mcert = NULL;
2719     dane->mtlsa = NULL;
2720     dane->mdpth = -1;
2721     dane->pdpth = -1;
2722 }
2723
2724 static int check_leaf_suiteb(X509_STORE_CTX *ctx, X509 *cert)
2725 {
2726     int err = X509_chain_check_suiteb(NULL, cert, NULL, ctx->param->flags);
2727
2728     if (err == X509_V_OK)
2729         return 1;
2730     return verify_cb_cert(ctx, cert, 0, err);
2731 }
2732
2733 static int dane_verify(X509_STORE_CTX *ctx)
2734 {
2735     X509 *cert = ctx->cert;
2736     SSL_DANE *dane = ctx->dane;
2737     int matched;
2738     int done;
2739
2740     dane_reset(dane);
2741
2742     /*-
2743      * When testing the leaf certificate, if we match a DANE-EE(3) record,
2744      * dane_match() returns 1 and we're done.  If however we match a PKIX-EE(1)
2745      * record, the match depth and matching TLSA record are recorded, but the
2746      * return value is 0, because we still need to find a PKIX trust-anchor.
2747      * Therefore, when DANE authentication is enabled (required), we're done
2748      * if:
2749      *   + matched < 0, internal error.
2750      *   + matched == 1, we matched a DANE-EE(3) record
2751      *   + matched == 0, mdepth < 0 (no PKIX-EE match) and there are no
2752      *     DANE-TA(2) or PKIX-TA(0) to test.
2753      */
2754     matched = dane_match(ctx, ctx->cert, 0);
2755     done = matched != 0 || (!DANETLS_HAS_TA(dane) && dane->mdpth < 0);
2756
2757     if (done)
2758         X509_get_pubkey_parameters(NULL, ctx->chain);
2759
2760     if (matched > 0) {
2761         /* Callback invoked as needed */
2762         if (!check_leaf_suiteb(ctx, cert))
2763             return 0;
2764         /* Bypass internal_verify(), issue depth 0 success callback */
2765         ctx->error_depth = 0;
2766         ctx->current_cert = cert;
2767         return ctx->verify_cb(1, ctx);
2768     }
2769
2770     if (matched < 0) {
2771         ctx->error_depth = 0;
2772         ctx->current_cert = cert;
2773         ctx->error = X509_V_ERR_OUT_OF_MEM;
2774         return -1;
2775     }
2776
2777     if (done) {
2778         /* Fail early, TA-based success is not possible */
2779         if (!check_leaf_suiteb(ctx, cert))
2780             return 0;
2781         return verify_cb_cert(ctx, cert, 0, X509_V_ERR_DANE_NO_MATCH);
2782     }
2783
2784     /*
2785      * Chain verification for usages 0/1/2.  TLSA record matching of depth > 0
2786      * certificates happens in-line with building the rest of the chain.
2787      */
2788     return verify_chain(ctx);
2789 }
2790
2791 /* Get issuer, without duplicate suppression */
2792 static int get_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *cert)
2793 {
2794     STACK_OF(X509) *saved_chain = ctx->chain;
2795     int ok;
2796
2797     ctx->chain = NULL;
2798     ok = ctx->get_issuer(issuer, ctx, cert);
2799     ctx->chain = saved_chain;
2800
2801     return ok;
2802 }
2803
2804 static int build_chain(X509_STORE_CTX *ctx)
2805 {
2806     SSL_DANE *dane = ctx->dane;
2807     int num = sk_X509_num(ctx->chain);
2808     X509 *cert = sk_X509_value(ctx->chain, num - 1);
2809     int ss = cert_self_signed(cert);
2810     STACK_OF(X509) *sktmp = NULL;
2811     unsigned int search;
2812     int may_trusted = 0;
2813     int may_alternate = 0;
2814     int trust = X509_TRUST_UNTRUSTED;
2815     int alt_untrusted = 0;
2816     int depth;
2817     int ok = 0;
2818     int i;
2819
2820     /* Our chain starts with a single untrusted element. */
2821     OPENSSL_assert(num == 1 && ctx->num_untrusted == num);
2822
2823 #define S_DOUNTRUSTED      (1 << 0)     /* Search untrusted chain */
2824 #define S_DOTRUSTED        (1 << 1)     /* Search trusted store */
2825 #define S_DOALTERNATE      (1 << 2)     /* Retry with pruned alternate chain */
2826     /*
2827      * Set up search policy, untrusted if possible, trusted-first if enabled.
2828      * If we're doing DANE and not doing PKIX-TA/PKIX-EE, we never look in the
2829      * trust_store, otherwise we might look there first.  If not trusted-first,
2830      * and alternate chains are not disabled, try building an alternate chain
2831      * if no luck with untrusted first.
2832      */
2833     search = (ctx->untrusted != NULL) ? S_DOUNTRUSTED : 0;
2834     if (DANETLS_HAS_PKIX(dane) || !DANETLS_HAS_DANE(dane)) {
2835         if (search == 0 || ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST)
2836             search |= S_DOTRUSTED;
2837         else if (!(ctx->param->flags & X509_V_FLAG_NO_ALT_CHAINS))
2838             may_alternate = 1;
2839         may_trusted = 1;
2840     }
2841
2842     /*
2843      * Shallow-copy the stack of untrusted certificates (with TLS, this is
2844      * typically the content of the peer's certificate message) so can make
2845      * multiple passes over it, while free to remove elements as we go.
2846      */
2847     if (ctx->untrusted && (sktmp = sk_X509_dup(ctx->untrusted)) == NULL) {
2848         X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
2849         ctx->error = X509_V_ERR_OUT_OF_MEM;
2850         return 0;
2851     }
2852
2853     /*
2854      * If we got any "DANE-TA(2) Cert(0) Full(0)" trust-anchors from DNS, add
2855      * them to our working copy of the untrusted certificate stack.  Since the
2856      * caller of X509_STORE_CTX_init() may have provided only a leaf cert with
2857      * no corresponding stack of untrusted certificates, we may need to create
2858      * an empty stack first.  [ At present only the ssl library provides DANE
2859      * support, and ssl_verify_cert_chain() always provides a non-null stack
2860      * containing at least the leaf certificate, but we must be prepared for
2861      * this to change. ]
2862      */
2863     if (DANETLS_ENABLED(dane) && dane->certs != NULL) {
2864         if (sktmp == NULL && (sktmp = sk_X509_new_null()) == NULL) {
2865             X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
2866             ctx->error = X509_V_ERR_OUT_OF_MEM;
2867             return 0;
2868         }
2869         for (i = 0; i < sk_X509_num(dane->certs); ++i) {
2870             if (!sk_X509_push(sktmp, sk_X509_value(dane->certs, i))) {
2871                 sk_X509_free(sktmp);
2872                 X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
2873                 ctx->error = X509_V_ERR_OUT_OF_MEM;
2874                 return 0;
2875             }
2876         }
2877     }
2878
2879     /*
2880      * Still absurdly large, but arithmetically safe, a lower hard upper bound
2881      * might be reasonable.
2882      */
2883     if (ctx->param->depth > INT_MAX/2)
2884         ctx->param->depth = INT_MAX/2;
2885
2886     /*
2887      * Try to Extend the chain until we reach an ultimately trusted issuer.
2888      * Build chains up to one longer the limit, later fail if we hit the limit,
2889      * with an X509_V_ERR_CERT_CHAIN_TOO_LONG error code.
2890      */
2891     depth = ctx->param->depth + 1;
2892
2893     while (search != 0) {
2894         X509 *x;
2895         X509 *xtmp = NULL;
2896
2897         /*
2898          * Look in the trust store if enabled for first lookup, or we've run
2899          * out of untrusted issuers and search here is not disabled.  When we
2900          * reach the depth limit, we stop extending the chain, if by that point
2901          * we've not found a trust-anchor, any trusted chain would be too long.
2902          *
2903          * The error reported to the application verify callback is at the
2904          * maximal valid depth with the current certificate equal to the last
2905          * not ultimately-trusted issuer.  For example, with verify_depth = 0,
2906          * the callback will report errors at depth=1 when the immediate issuer
2907          * of the leaf certificate is not a trust anchor.  No attempt will be
2908          * made to locate an issuer for that certificate, since such a chain
2909          * would be a-priori too long.
2910          */
2911         if ((search & S_DOTRUSTED) != 0) {
2912             i = num = sk_X509_num(ctx->chain);
2913             if ((search & S_DOALTERNATE) != 0) {
2914                 /*
2915                  * As high up the chain as we can, look for an alternative
2916                  * trusted issuer of an untrusted certificate that currently
2917                  * has an untrusted issuer.  We use the alt_untrusted variable
2918                  * to track how far up the chain we find the first match.  It
2919                  * is only if and when we find a match, that we prune the chain
2920                  * and reset ctx->num_untrusted to the reduced count of
2921                  * untrusted certificates.  While we're searching for such a
2922                  * match (which may never be found), it is neither safe nor
2923                  * wise to preemptively modify either the chain or
2924                  * ctx->num_untrusted.
2925                  *
2926                  * Note, like ctx->num_untrusted, alt_untrusted is a count of
2927                  * untrusted certificates, not a "depth".
2928                  */
2929                 i = alt_untrusted;
2930             }
2931             x = sk_X509_value(ctx->chain, i-1);
2932
2933             ok = (depth < num) ? 0 : get_issuer(&xtmp, ctx, x);
2934
2935             if (ok < 0) {
2936                 trust = X509_TRUST_REJECTED;
2937                 ctx->error = X509_V_ERR_STORE_LOOKUP;
2938                 search = 0;
2939                 continue;
2940             }
2941
2942             if (ok > 0) {
2943                 /*
2944                  * Alternative trusted issuer for a mid-chain untrusted cert?
2945                  * Pop the untrusted cert's successors and retry.  We might now
2946                  * be able to complete a valid chain via the trust store.  Note
2947                  * that despite the current trust-store match we might still
2948                  * fail complete the chain to a suitable trust-anchor, in which
2949                  * case we may prune some more untrusted certificates and try
2950                  * again.  Thus the S_DOALTERNATE bit may yet be turned on
2951                  * again with an even shorter untrusted chain!
2952                  *
2953                  * If in the process we threw away our matching PKIX-TA trust
2954                  * anchor, reset DANE trust.  We might find a suitable trusted
2955                  * certificate among the ones from the trust store.
2956                  */
2957                 if ((search & S_DOALTERNATE) != 0) {
2958                     OPENSSL_assert(num > i && i > 0 && ss == 0);
2959                     search &= ~S_DOALTERNATE;
2960                     for (; num > i; --num)
2961                         X509_free(sk_X509_pop(ctx->chain));
2962                     ctx->num_untrusted = num;
2963
2964                     if (DANETLS_ENABLED(dane) &&
2965                         dane->mdpth >= ctx->num_untrusted) {
2966                         dane->mdpth = -1;
2967                         X509_free(dane->mcert);
2968                         dane->mcert = NULL;
2969                     }
2970                     if (DANETLS_ENABLED(dane) &&
2971                         dane->pdpth >= ctx->num_untrusted)
2972                         dane->pdpth = -1;
2973                 }
2974
2975                 /*
2976                  * Self-signed untrusted certificates get replaced by their
2977                  * trusted matching issuer.  Otherwise, grow the chain.
2978                  */
2979                 if (ss == 0) {
2980                     if (!sk_X509_push(ctx->chain, x = xtmp)) {
2981                         X509_free(xtmp);
2982                         X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
2983                         trust = X509_TRUST_REJECTED;
2984                         ctx->error = X509_V_ERR_OUT_OF_MEM;
2985                         search = 0;
2986                         continue;
2987                     }
2988                     ss = cert_self_signed(x);
2989                 } else if (num == ctx->num_untrusted) {
2990                     /*
2991                      * We have a self-signed certificate that has the same
2992                      * subject name (and perhaps keyid and/or serial number) as
2993                      * a trust-anchor.  We must have an exact match to avoid
2994                      * possible impersonation via key substitution etc.
2995                      */
2996                     if (X509_cmp(x, xtmp) != 0) {
2997                         /* Self-signed untrusted mimic. */
2998                         X509_free(xtmp);
2999                         ok = 0;
3000                     } else {
3001                         X509_free(x);
3002                         ctx->num_untrusted = --num;
3003                         (void) sk_X509_set(ctx->chain, num, x = xtmp);
3004                     }
3005                 }
3006
3007                 /*
3008                  * We've added a new trusted certificate to the chain, recheck
3009                  * trust.  If not done, and not self-signed look deeper.
3010                  * Whether or not we're doing "trusted first", we no longer
3011                  * look for untrusted certificates from the peer's chain.
3012                  *
3013                  * At this point ctx->num_trusted and num must reflect the
3014                  * correct number of untrusted certificates, since the DANE
3015                  * logic in check_trust() depends on distinguishing CAs from
3016                  * "the wire" from CAs from the trust store.  In particular, the
3017                  * certificate at depth "num" should be the new trusted
3018                  * certificate with ctx->num_untrusted <= num.
3019                  */
3020                 if (ok) {
3021                     OPENSSL_assert(ctx->num_untrusted <= num);
3022                     search &= ~S_DOUNTRUSTED;
3023                     switch (trust = check_trust(ctx, num)) {
3024                     case X509_TRUST_TRUSTED:
3025                     case X509_TRUST_REJECTED:
3026                         search = 0;
3027                         continue;
3028                     }
3029                     if (ss == 0)
3030                         continue;
3031                 }
3032             }
3033
3034             /*
3035              * No dispositive decision, and either self-signed or no match, if
3036              * we were doing untrusted-first, and alt-chains are not disabled,
3037              * do that, by repeatedly losing one untrusted element at a time,
3038              * and trying to extend the shorted chain.
3039              */
3040             if ((search & S_DOUNTRUSTED) == 0) {
3041                 /* Continue search for a trusted issuer of a shorter chain? */
3042                 if ((search & S_DOALTERNATE) != 0 && --alt_untrusted > 0)
3043                     continue;
3044                 /* Still no luck and no fallbacks left? */
3045                 if (!may_alternate || (search & S_DOALTERNATE) != 0 ||
3046                     ctx->num_untrusted < 2)
3047                     break;
3048                 /* Search for a trusted issuer of a shorter chain */
3049                 search |= S_DOALTERNATE;
3050                 alt_untrusted = ctx->num_untrusted - 1;
3051                 ss = 0;
3052             }
3053         }
3054
3055         /*
3056          * Extend chain with peer-provided certificates
3057          */
3058         if ((search & S_DOUNTRUSTED) != 0) {
3059             num = sk_X509_num(ctx->chain);
3060             OPENSSL_assert(num == ctx->num_untrusted);
3061             x = sk_X509_value(ctx->chain, num-1);
3062
3063             /*
3064              * Once we run out of untrusted issuers, we stop looking for more
3065              * and start looking only in the trust store if enabled.
3066              */
3067             xtmp = (ss || depth < num) ? NULL : find_issuer(ctx, sktmp, x);
3068             if (xtmp == NULL) {
3069                 search &= ~S_DOUNTRUSTED;
3070                 if (may_trusted)
3071                     search |= S_DOTRUSTED;
3072                 continue;
3073             }
3074
3075             /* Drop this issuer from future consideration */
3076             (void) sk_X509_delete_ptr(sktmp, xtmp);
3077
3078             if (!sk_X509_push(ctx->chain, xtmp)) {
3079                 X509err(X509_F_BUILD_CHAIN, ERR_R_MALLOC_FAILURE);
3080                 trust = X509_TRUST_REJECTED;
3081                 ctx->error = X509_V_ERR_OUT_OF_MEM;
3082                 search = 0;
3083                 continue;
3084             }
3085
3086             X509_up_ref(x = xtmp);
3087             ++ctx->num_untrusted;
3088             ss = cert_self_signed(xtmp);
3089
3090             /*
3091              * Check for DANE-TA trust of the topmost untrusted certificate.
3092              */
3093             switch (trust = check_dane_issuer(ctx, ctx->num_untrusted - 1)) {
3094             case X509_TRUST_TRUSTED:
3095             case X509_TRUST_REJECTED:
3096                 search = 0;
3097                 continue;
3098             }
3099         }
3100     }
3101     sk_X509_free(sktmp);
3102
3103     /*
3104      * Last chance to make a trusted chain, either bare DANE-TA public-key
3105      * signers, or else direct leaf PKIX trust.
3106      */
3107     num = sk_X509_num(ctx->chain);
3108     if (num <= depth) {
3109         if (trust == X509_TRUST_UNTRUSTED && DANETLS_HAS_DANE_TA(dane))
3110             trust = check_dane_pkeys(ctx);
3111         if (trust == X509_TRUST_UNTRUSTED && num == ctx->num_untrusted)
3112             trust = check_trust(ctx, num);
3113     }
3114
3115     switch (trust) {
3116     case X509_TRUST_TRUSTED:
3117         return 1;
3118     case X509_TRUST_REJECTED:
3119         /* Callback already issued */
3120         return 0;
3121     case X509_TRUST_UNTRUSTED:
3122     default:
3123         num = sk_X509_num(ctx->chain);
3124         if (num > depth)
3125             return verify_cb_cert(ctx, NULL, num-1,
3126                                   X509_V_ERR_CERT_CHAIN_TOO_LONG);
3127         if (DANETLS_ENABLED(dane) &&
3128             (!DANETLS_HAS_PKIX(dane) || dane->pdpth >= 0))
3129             return verify_cb_cert(ctx, NULL, num-1, X509_V_ERR_DANE_NO_MATCH);
3130         if (ss && sk_X509_num(ctx->chain) == 1)
3131             return verify_cb_cert(ctx, NULL, num-1,
3132                                   X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT);
3133         if (ss)
3134             return verify_cb_cert(ctx, NULL, num-1,
3135                                   X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN);
3136         if (ctx->num_untrusted < num)
3137             return verify_cb_cert(ctx, NULL, num-1,
3138                                   X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT);
3139         return verify_cb_cert(ctx, NULL, num-1,
3140                               X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY);
3141     }
3142 }
3143
3144 static const int minbits_table[] = { 80, 112, 128, 192, 256 };
3145 static const int NUM_AUTH_LEVELS = OSSL_NELEM(minbits_table);
3146
3147 /*
3148  * Check whether the public key of ``cert`` meets the security level of
3149  * ``ctx``.
3150  *
3151  * Returns 1 on success, 0 otherwise.
3152  */
3153 static int check_key_level(X509_STORE_CTX *ctx, X509 *cert)
3154 {
3155     EVP_PKEY *pkey = X509_get0_pubkey(cert);
3156     int level = ctx->param->auth_level;
3157
3158     /* Unsupported or malformed keys are not secure */
3159     if (pkey == NULL)
3160         return 0;
3161
3162     if (level <= 0)
3163         return 1;
3164     if (level > NUM_AUTH_LEVELS)
3165         level = NUM_AUTH_LEVELS;
3166
3167     return EVP_PKEY_security_bits(pkey) >= minbits_table[level - 1];
3168 }
3169
3170 /*
3171  * Check whether the signature digest algorithm of ``cert`` meets the security
3172  * level of ``ctx``.  Should not be checked for trust anchors (whether
3173  * self-signed or otherwise).
3174  *
3175  * Returns 1 on success, 0 otherwise.
3176  */
3177 static int check_sig_level(X509_STORE_CTX *ctx, X509 *cert)
3178 {
3179     int nid = X509_get_signature_nid(cert);
3180     int mdnid = NID_undef;
3181     int secbits = -1;
3182     int level = ctx->param->auth_level;
3183
3184     if (level <= 0)
3185         return 1;
3186     if (level > NUM_AUTH_LEVELS)
3187         level = NUM_AUTH_LEVELS;
3188
3189     /* Lookup signature algorithm digest */
3190     if (nid && OBJ_find_sigid_algs(nid, &mdnid, NULL)) {
3191         const EVP_MD *md;
3192
3193         /* Assume 4 bits of collision resistance for each hash octet */
3194         if (mdnid != NID_undef && (md = EVP_get_digestbynid(mdnid)) != NULL)
3195             secbits = EVP_MD_size(md) * 4;
3196     }
3197
3198     return secbits >= minbits_table[level - 1];
3199 }