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