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