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