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