Coverage Report

Created: 2022-11-30 06:20

/src/openssl/crypto/x509/x509_vfy.c
Line
Count
Source (jump to first uncovered line)
1
/* crypto/x509/x509_vfy.c */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3
 * All rights reserved.
4
 *
5
 * This package is an SSL implementation written
6
 * by Eric Young (eay@cryptsoft.com).
7
 * The implementation was written so as to conform with Netscapes SSL.
8
 *
9
 * This library is free for commercial and non-commercial use as long as
10
 * the following conditions are aheared to.  The following conditions
11
 * apply to all code found in this distribution, be it the RC4, RSA,
12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13
 * included with this distribution is covered by the same copyright terms
14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15
 *
16
 * Copyright remains Eric Young's, and as such any Copyright notices in
17
 * the code are not to be removed.
18
 * If this package is used in a product, Eric Young should be given attribution
19
 * as the author of the parts of the library used.
20
 * This can be in the form of a textual message at program startup or
21
 * in documentation (online or textual) provided with the package.
22
 *
23
 * Redistribution and use in source and binary forms, with or without
24
 * modification, are permitted provided that the following conditions
25
 * are met:
26
 * 1. Redistributions of source code must retain the copyright
27
 *    notice, this list of conditions and the following disclaimer.
28
 * 2. Redistributions in binary form must reproduce the above copyright
29
 *    notice, this list of conditions and the following disclaimer in the
30
 *    documentation and/or other materials provided with the distribution.
31
 * 3. All advertising materials mentioning features or use of this software
32
 *    must display the following acknowledgement:
33
 *    "This product includes cryptographic software written by
34
 *     Eric Young (eay@cryptsoft.com)"
35
 *    The word 'cryptographic' can be left out if the rouines from the library
36
 *    being used are not cryptographic related :-).
37
 * 4. If you include any Windows specific code (or a derivative thereof) from
38
 *    the apps directory (application code) you must include an acknowledgement:
39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40
 *
41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51
 * SUCH DAMAGE.
52
 *
53
 * The licence and distribution terms for any publically available version or
54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
55
 * copied and put under another distribution licence
56
 * [including the GNU Public Licence.]
57
 */
58
59
#include <stdio.h>
60
#include <time.h>
61
#include <errno.h>
62
63
#include "cryptlib.h"
64
#include <openssl/crypto.h>
65
#include <openssl/lhash.h>
66
#include <openssl/buffer.h>
67
#include <openssl/evp.h>
68
#include <openssl/asn1.h>
69
#include <openssl/x509.h>
70
#include <openssl/x509v3.h>
71
#include <openssl/objects.h>
72
#include "vpm_int.h"
73
74
/* CRL score values */
75
76
/* No unhandled critical extensions */
77
78
0
#define CRL_SCORE_NOCRITICAL    0x100
79
80
/* certificate is within CRL scope */
81
82
0
#define CRL_SCORE_SCOPE         0x080
83
84
/* CRL times valid */
85
86
0
#define CRL_SCORE_TIME          0x040
87
88
/* Issuer name matches certificate */
89
90
0
#define CRL_SCORE_ISSUER_NAME   0x020
91
92
/* If this score or above CRL is probably valid */
93
94
0
#define CRL_SCORE_VALID (CRL_SCORE_NOCRITICAL|CRL_SCORE_TIME|CRL_SCORE_SCOPE)
95
96
/* CRL issuer is certificate issuer */
97
98
0
#define CRL_SCORE_ISSUER_CERT   0x018
99
100
/* CRL issuer is on certificate path */
101
102
0
#define CRL_SCORE_SAME_PATH     0x008
103
104
/* CRL issuer matches CRL AKID */
105
106
0
#define CRL_SCORE_AKID          0x004
107
108
/* Have a delta CRL with valid times */
109
110
0
#define CRL_SCORE_TIME_DELTA    0x002
111
112
static int null_callback(int ok, X509_STORE_CTX *e);
113
static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
114
static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
115
static int check_chain_extensions(X509_STORE_CTX *ctx);
116
static int check_name_constraints(X509_STORE_CTX *ctx);
117
static int check_id(X509_STORE_CTX *ctx);
118
static int check_trust(X509_STORE_CTX *ctx);
119
static int check_revocation(X509_STORE_CTX *ctx);
120
static int check_cert(X509_STORE_CTX *ctx);
121
static int check_policy(X509_STORE_CTX *ctx);
122
123
static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
124
                         unsigned int *preasons, X509_CRL *crl, X509 *x);
125
static int get_crl_delta(X509_STORE_CTX *ctx,
126
                         X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x);
127
static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl,
128
                         int *pcrl_score, X509_CRL *base,
129
                         STACK_OF(X509_CRL) *crls);
130
static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl, X509 **pissuer,
131
                           int *pcrl_score);
132
static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
133
                           unsigned int *preasons);
134
static int check_crl_path(X509_STORE_CTX *ctx, X509 *x);
135
static int check_crl_chain(X509_STORE_CTX *ctx,
136
                           STACK_OF(X509) *cert_path,
137
                           STACK_OF(X509) *crl_path);
138
139
static int internal_verify(X509_STORE_CTX *ctx);
140
const char X509_version[] = "X.509" OPENSSL_VERSION_PTEXT;
141
142
static int null_callback(int ok, X509_STORE_CTX *e)
143
0
{
144
0
    return ok;
145
0
}
146
147
#if 0
148
static int x509_subject_cmp(X509 **a, X509 **b)
149
{
150
    return X509_subject_name_cmp(*a, *b);
151
}
152
#endif
153
/* Return 1 is a certificate is self signed */
154
static int cert_self_signed(X509 *x)
155
0
{
156
0
    X509_check_purpose(x, -1, 0);
157
0
    if (x->ex_flags & EXFLAG_SS)
158
0
        return 1;
159
0
    else
160
0
        return 0;
161
0
}
162
163
/* Given a certificate try and find an exact match in the store */
164
165
static X509 *lookup_cert_match(X509_STORE_CTX *ctx, X509 *x)
166
0
{
167
0
    STACK_OF(X509) *certs;
168
0
    X509 *xtmp = NULL;
169
0
    int i;
170
    /* Lookup all certs with matching subject name */
171
0
    certs = ctx->lookup_certs(ctx, X509_get_subject_name(x));
172
0
    if (certs == NULL)
173
0
        return NULL;
174
    /* Look for exact match */
175
0
    for (i = 0; i < sk_X509_num(certs); i++) {
176
0
        xtmp = sk_X509_value(certs, i);
177
0
        if (!X509_cmp(xtmp, x))
178
0
            break;
179
0
    }
180
0
    if (i < sk_X509_num(certs))
181
0
        CRYPTO_add(&xtmp->references, 1, CRYPTO_LOCK_X509);
182
0
    else
183
0
        xtmp = NULL;
184
0
    sk_X509_pop_free(certs, X509_free);
185
0
    return xtmp;
186
0
}
187
188
int X509_verify_cert(X509_STORE_CTX *ctx)
189
0
{
190
0
    X509 *x, *xtmp, *xtmp2, *chain_ss = NULL;
191
0
    int bad_chain = 0;
192
0
    X509_VERIFY_PARAM *param = ctx->param;
193
0
    int depth, i, ok = 0;
194
0
    int num, j, retry;
195
0
    int (*cb) (int xok, X509_STORE_CTX *xctx);
196
0
    STACK_OF(X509) *sktmp = NULL;
197
0
    int trust = X509_TRUST_UNTRUSTED;
198
0
    int err;
199
200
0
    if (ctx->cert == NULL) {
201
0
        X509err(X509_F_X509_VERIFY_CERT, X509_R_NO_CERT_SET_FOR_US_TO_VERIFY);
202
0
        ctx->error = X509_V_ERR_INVALID_CALL;
203
0
        return -1;
204
0
    }
205
0
    if (ctx->chain != NULL) {
206
        /*
207
         * This X509_STORE_CTX has already been used to verify a cert. We
208
         * cannot do another one.
209
         */
210
0
        X509err(X509_F_X509_VERIFY_CERT, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
211
0
        ctx->error = X509_V_ERR_INVALID_CALL;
212
0
        return -1;
213
0
    }
214
215
0
    cb = ctx->verify_cb;
216
217
    /*
218
     * first we make sure the chain we are going to build is present and that
219
     * the first entry is in place
220
     */
221
0
    if (((ctx->chain = sk_X509_new_null()) == NULL) ||
222
0
        (!sk_X509_push(ctx->chain, ctx->cert))) {
223
0
        X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
224
0
        ctx->error = X509_V_ERR_OUT_OF_MEM;
225
0
        ok = -1;
226
0
        goto err;
227
0
    }
228
0
    CRYPTO_add(&ctx->cert->references, 1, CRYPTO_LOCK_X509);
229
0
    ctx->last_untrusted = 1;
230
231
    /* We use a temporary STACK so we can chop and hack at it */
232
0
    if (ctx->untrusted != NULL
233
0
        && (sktmp = sk_X509_dup(ctx->untrusted)) == NULL) {
234
0
        X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
235
0
        ctx->error = X509_V_ERR_OUT_OF_MEM;
236
0
        ok = -1;
237
0
        goto err;
238
0
    }
239
240
0
    num = sk_X509_num(ctx->chain);
241
0
    x = sk_X509_value(ctx->chain, num - 1);
242
0
    depth = param->depth;
243
244
0
    for (;;) {
245
        /* If we have enough, we break */
246
0
        if (depth < num)
247
0
            break;              /* FIXME: If this happens, we should take
248
                                 * note of it and, if appropriate, use the
249
                                 * X509_V_ERR_CERT_CHAIN_TOO_LONG error code
250
                                 * later. */
251
252
        /* If we are self signed, we break */
253
0
        if (cert_self_signed(x))
254
0
            break;
255
        /*
256
         * If asked see if we can find issuer in trusted store first
257
         */
258
0
        if (ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST) {
259
0
            ok = ctx->get_issuer(&xtmp, ctx, x);
260
0
            if (ok < 0) {
261
0
                ctx->error = X509_V_ERR_STORE_LOOKUP;
262
0
                goto err;
263
0
            }
264
            /*
265
             * If successful for now free up cert so it will be picked up
266
             * again later.
267
             */
268
0
            if (ok > 0) {
269
0
                X509_free(xtmp);
270
0
                break;
271
0
            }
272
0
        }
273
274
        /* If we were passed a cert chain, use it first */
275
0
        if (ctx->untrusted != NULL) {
276
0
            xtmp = find_issuer(ctx, sktmp, x);
277
0
            if (xtmp != NULL) {
278
0
                if (!sk_X509_push(ctx->chain, xtmp)) {
279
0
                    X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
280
0
                    ctx->error = X509_V_ERR_OUT_OF_MEM;
281
0
                    ok = -1;
282
0
                    goto err;
283
0
                }
284
0
                CRYPTO_add(&xtmp->references, 1, CRYPTO_LOCK_X509);
285
0
                (void)sk_X509_delete_ptr(sktmp, xtmp);
286
0
                ctx->last_untrusted++;
287
0
                x = xtmp;
288
0
                num++;
289
                /*
290
                 * reparse the full chain for the next one
291
                 */
292
0
                continue;
293
0
            }
294
0
        }
295
0
        break;
296
0
    }
297
298
    /* Remember how many untrusted certs we have */
299
0
    j = num;
300
    /*
301
     * at this point, chain should contain a list of untrusted certificates.
302
     * We now need to add at least one trusted one, if possible, otherwise we
303
     * complain.
304
     */
305
306
0
    do {
307
        /*
308
         * Examine last certificate in chain and see if it is self signed.
309
         */
310
0
        i = sk_X509_num(ctx->chain);
311
0
        x = sk_X509_value(ctx->chain, i - 1);
312
0
        if (cert_self_signed(x)) {
313
            /* we have a self signed certificate */
314
0
            if (sk_X509_num(ctx->chain) == 1) {
315
                /*
316
                 * We have a single self signed certificate: see if we can
317
                 * find it in the store. We must have an exact match to avoid
318
                 * possible impersonation.
319
                 */
320
0
                ok = ctx->get_issuer(&xtmp, ctx, x);
321
0
                if ((ok <= 0) || X509_cmp(x, xtmp)) {
322
0
                    ctx->error = X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT;
323
0
                    ctx->current_cert = x;
324
0
                    ctx->error_depth = i - 1;
325
0
                    if (ok == 1)
326
0
                        X509_free(xtmp);
327
0
                    bad_chain = 1;
328
0
                    ok = cb(0, ctx);
329
0
                    if (!ok)
330
0
                        goto err;
331
0
                } else {
332
                    /*
333
                     * We have a match: replace certificate with store
334
                     * version so we get any trust settings.
335
                     */
336
0
                    X509_free(x);
337
0
                    x = xtmp;
338
0
                    (void)sk_X509_set(ctx->chain, i - 1, x);
339
0
                    ctx->last_untrusted = 0;
340
0
                }
341
0
            } else {
342
                /*
343
                 * extract and save self signed certificate for later use
344
                 */
345
0
                chain_ss = sk_X509_pop(ctx->chain);
346
0
                ctx->last_untrusted--;
347
0
                num--;
348
0
                j--;
349
0
                x = sk_X509_value(ctx->chain, num - 1);
350
0
            }
351
0
        }
352
        /* We now lookup certs from the certificate store */
353
0
        for (;;) {
354
            /* If we have enough, we break */
355
0
            if (depth < num)
356
0
                break;
357
            /* If we are self signed, we break */
358
0
            if (cert_self_signed(x))
359
0
                break;
360
0
            ok = ctx->get_issuer(&xtmp, ctx, x);
361
362
0
            if (ok < 0) {
363
0
                ctx->error = X509_V_ERR_STORE_LOOKUP;
364
0
                goto err;
365
0
            }
366
0
            if (ok == 0)
367
0
                break;
368
0
            x = xtmp;
369
0
            if (!sk_X509_push(ctx->chain, x)) {
370
0
                X509_free(xtmp);
371
0
                X509err(X509_F_X509_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
372
0
                ctx->error = X509_V_ERR_OUT_OF_MEM;
373
0
                ok = -1;
374
0
                goto err;
375
0
            }
376
0
            num++;
377
0
        }
378
379
        /* we now have our chain, lets check it... */
380
0
        if ((trust = check_trust(ctx)) == X509_TRUST_REJECTED) {
381
            /* Callback already issued */
382
0
            ok = 0;
383
0
            goto err;
384
0
        }
385
386
        /*
387
         * If it's not explicitly trusted then check if there is an alternative
388
         * chain that could be used. We only do this if we haven't already
389
         * checked via TRUSTED_FIRST and the user hasn't switched off alternate
390
         * chain checking
391
         */
392
0
        retry = 0;
393
0
        if (trust != X509_TRUST_TRUSTED
394
0
            && !(ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST)
395
0
            && !(ctx->param->flags & X509_V_FLAG_NO_ALT_CHAINS)) {
396
0
            while (j-- > 1) {
397
0
                xtmp2 = sk_X509_value(ctx->chain, j - 1);
398
0
                ok = ctx->get_issuer(&xtmp, ctx, xtmp2);
399
0
                if (ok < 0) {
400
0
                    ctx->error = X509_V_ERR_STORE_LOOKUP;
401
0
                    goto err;
402
0
                }
403
                /* Check if we found an alternate chain */
404
0
                if (ok > 0) {
405
                    /*
406
                     * Free up the found cert we'll add it again later
407
                     */
408
0
                    X509_free(xtmp);
409
410
                    /*
411
                     * Dump all the certs above this point - we've found an
412
                     * alternate chain
413
                     */
414
0
                    while (num > j) {
415
0
                        xtmp = sk_X509_pop(ctx->chain);
416
0
                        X509_free(xtmp);
417
0
                        num--;
418
0
                    }
419
0
                    ctx->last_untrusted = sk_X509_num(ctx->chain);
420
0
                    retry = 1;
421
0
                    break;
422
0
                }
423
0
            }
424
0
        }
425
0
    } while (retry);
426
427
    /*
428
     * If not explicitly trusted then indicate error unless it's a single
429
     * self signed certificate in which case we've indicated an error already
430
     * and set bad_chain == 1
431
     */
432
0
    if (trust != X509_TRUST_TRUSTED && !bad_chain) {
433
0
        if ((chain_ss == NULL) || !ctx->check_issued(ctx, x, chain_ss)) {
434
0
            if (ctx->last_untrusted >= num)
435
0
                ctx->error = X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY;
436
0
            else
437
0
                ctx->error = X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT;
438
0
            ctx->current_cert = x;
439
0
        } else {
440
441
0
            sk_X509_push(ctx->chain, chain_ss);
442
0
            num++;
443
0
            ctx->last_untrusted = num;
444
0
            ctx->current_cert = chain_ss;
445
0
            ctx->error = X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN;
446
0
            chain_ss = NULL;
447
0
        }
448
449
0
        ctx->error_depth = num - 1;
450
0
        bad_chain = 1;
451
0
        ok = cb(0, ctx);
452
0
        if (!ok)
453
0
            goto err;
454
0
    }
455
456
    /* We have the chain complete: now we need to check its purpose */
457
0
    ok = check_chain_extensions(ctx);
458
459
0
    if (!ok)
460
0
        goto err;
461
462
    /* Check name constraints */
463
464
0
    ok = check_name_constraints(ctx);
465
466
0
    if (!ok)
467
0
        goto err;
468
469
0
    ok = check_id(ctx);
470
471
0
    if (!ok)
472
0
        goto err;
473
474
    /* We may as well copy down any DSA parameters that are required */
475
0
    X509_get_pubkey_parameters(NULL, ctx->chain);
476
477
    /*
478
     * Check revocation status: we do this after copying parameters because
479
     * they may be needed for CRL signature verification.
480
     */
481
482
0
    ok = ctx->check_revocation(ctx);
483
0
    if (!ok)
484
0
        goto err;
485
486
0
    err = X509_chain_check_suiteb(&ctx->error_depth, NULL, ctx->chain,
487
0
                                  ctx->param->flags);
488
0
    if (err != X509_V_OK) {
489
0
        ctx->error = err;
490
0
        ctx->current_cert = sk_X509_value(ctx->chain, ctx->error_depth);
491
0
        ok = cb(0, ctx);
492
0
        if (!ok)
493
0
            goto err;
494
0
    }
495
496
    /* At this point, we have a chain and need to verify it */
497
0
    if (ctx->verify != NULL)
498
0
        ok = ctx->verify(ctx);
499
0
    else
500
0
        ok = internal_verify(ctx);
501
0
    if (!ok)
502
0
        goto err;
503
504
#ifndef OPENSSL_NO_RFC3779
505
    /* RFC 3779 path validation, now that CRL check has been done */
506
    ok = v3_asid_validate_path(ctx);
507
    if (!ok)
508
        goto err;
509
    ok = v3_addr_validate_path(ctx);
510
    if (!ok)
511
        goto err;
512
#endif
513
514
    /* If we get this far evaluate policies */
515
0
    if (!bad_chain && (ctx->param->flags & X509_V_FLAG_POLICY_CHECK))
516
0
        ok = ctx->check_policy(ctx);
517
0
    if (!ok)
518
0
        goto err;
519
0
    if (0) {
520
0
 err:
521
        /* Ensure we return an error */
522
0
        if (ok > 0)
523
0
            ok = 0;
524
0
        X509_get_pubkey_parameters(NULL, ctx->chain);
525
0
    }
526
0
    if (sktmp != NULL)
527
0
        sk_X509_free(sktmp);
528
0
    if (chain_ss != NULL)
529
0
        X509_free(chain_ss);
530
531
    /* Safety net, error returns must set ctx->error */
532
0
    if (ok <= 0 && ctx->error == X509_V_OK)
533
0
        ctx->error = X509_V_ERR_UNSPECIFIED;
534
0
    return ok;
535
0
}
536
537
/*
538
 * Given a STACK_OF(X509) find the issuer of cert (if any)
539
 */
540
541
static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x)
542
0
{
543
0
    int i;
544
0
    X509 *issuer;
545
0
    for (i = 0; i < sk_X509_num(sk); i++) {
546
0
        issuer = sk_X509_value(sk, i);
547
0
        if (ctx->check_issued(ctx, x, issuer))
548
0
            return issuer;
549
0
    }
550
0
    return NULL;
551
0
}
552
553
/* Given a possible certificate and issuer check them */
554
555
static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer)
556
0
{
557
0
    int ret;
558
0
    ret = X509_check_issued(issuer, x);
559
0
    if (ret == X509_V_OK)
560
0
        return 1;
561
    /* If we haven't asked for issuer errors don't set ctx */
562
0
    if (!(ctx->param->flags & X509_V_FLAG_CB_ISSUER_CHECK))
563
0
        return 0;
564
565
0
    ctx->error = ret;
566
0
    ctx->current_cert = x;
567
0
    ctx->current_issuer = issuer;
568
0
    return ctx->verify_cb(0, ctx);
569
0
}
570
571
/* Alternative lookup method: look from a STACK stored in other_ctx */
572
573
static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
574
0
{
575
0
    *issuer = find_issuer(ctx, ctx->other_ctx, x);
576
0
    if (*issuer) {
577
0
        CRYPTO_add(&(*issuer)->references, 1, CRYPTO_LOCK_X509);
578
0
        return 1;
579
0
    } else
580
0
        return 0;
581
0
}
582
583
/*
584
 * Check a certificate chains extensions for consistency with the supplied
585
 * purpose
586
 */
587
588
static int check_chain_extensions(X509_STORE_CTX *ctx)
589
0
{
590
#ifdef OPENSSL_NO_CHAIN_VERIFY
591
    return 1;
592
#else
593
0
    int i, ok = 0, must_be_ca, plen = 0;
594
0
    X509 *x;
595
0
    int (*cb) (int xok, X509_STORE_CTX *xctx);
596
0
    int proxy_path_length = 0;
597
0
    int purpose;
598
0
    int allow_proxy_certs;
599
0
    cb = ctx->verify_cb;
600
601
    /*-
602
     *  must_be_ca can have 1 of 3 values:
603
     * -1: we accept both CA and non-CA certificates, to allow direct
604
     *     use of self-signed certificates (which are marked as CA).
605
     * 0:  we only accept non-CA certificates.  This is currently not
606
     *     used, but the possibility is present for future extensions.
607
     * 1:  we only accept CA certificates.  This is currently used for
608
     *     all certificates in the chain except the leaf certificate.
609
     */
610
0
    must_be_ca = -1;
611
612
    /* CRL path validation */
613
0
    if (ctx->parent) {
614
0
        allow_proxy_certs = 0;
615
0
        purpose = X509_PURPOSE_CRL_SIGN;
616
0
    } else {
617
0
        allow_proxy_certs =
618
0
            ! !(ctx->param->flags & X509_V_FLAG_ALLOW_PROXY_CERTS);
619
        /*
620
         * A hack to keep people who don't want to modify their software
621
         * happy
622
         */
623
0
        if (getenv("OPENSSL_ALLOW_PROXY_CERTS"))
624
0
            allow_proxy_certs = 1;
625
0
        purpose = ctx->param->purpose;
626
0
    }
627
628
    /* Check all untrusted certificates */
629
0
    for (i = 0; i < ctx->last_untrusted; i++) {
630
0
        int ret;
631
0
        x = sk_X509_value(ctx->chain, i);
632
0
        if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
633
0
            && (x->ex_flags & EXFLAG_CRITICAL)) {
634
0
            ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION;
635
0
            ctx->error_depth = i;
636
0
            ctx->current_cert = x;
637
0
            ok = cb(0, ctx);
638
0
            if (!ok)
639
0
                goto end;
640
0
        }
641
0
        if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY)) {
642
0
            ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED;
643
0
            ctx->error_depth = i;
644
0
            ctx->current_cert = x;
645
0
            ok = cb(0, ctx);
646
0
            if (!ok)
647
0
                goto end;
648
0
        }
649
0
        ret = X509_check_ca(x);
650
0
        switch (must_be_ca) {
651
0
        case -1:
652
0
            if ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
653
0
                && (ret != 1) && (ret != 0)) {
654
0
                ret = 0;
655
0
                ctx->error = X509_V_ERR_INVALID_CA;
656
0
            } else
657
0
                ret = 1;
658
0
            break;
659
0
        case 0:
660
0
            if (ret != 0) {
661
0
                ret = 0;
662
0
                ctx->error = X509_V_ERR_INVALID_NON_CA;
663
0
            } else
664
0
                ret = 1;
665
0
            break;
666
0
        default:
667
0
            if ((ret == 0)
668
0
                || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
669
0
                    && (ret != 1))) {
670
0
                ret = 0;
671
0
                ctx->error = X509_V_ERR_INVALID_CA;
672
0
            } else
673
0
                ret = 1;
674
0
            break;
675
0
        }
676
0
        if (ret == 0) {
677
0
            ctx->error_depth = i;
678
0
            ctx->current_cert = x;
679
0
            ok = cb(0, ctx);
680
0
            if (!ok)
681
0
                goto end;
682
0
        }
683
0
        if (ctx->param->purpose > 0) {
684
0
            ret = X509_check_purpose(x, purpose, must_be_ca > 0);
685
0
            if ((ret == 0)
686
0
                || ((ctx->param->flags & X509_V_FLAG_X509_STRICT)
687
0
                    && (ret != 1))) {
688
0
                ctx->error = X509_V_ERR_INVALID_PURPOSE;
689
0
                ctx->error_depth = i;
690
0
                ctx->current_cert = x;
691
0
                ok = cb(0, ctx);
692
0
                if (!ok)
693
0
                    goto end;
694
0
            }
695
0
        }
696
        /* Check pathlen if not self issued */
697
0
        if ((i > 1) && !(x->ex_flags & EXFLAG_SI)
698
0
            && (x->ex_pathlen != -1)
699
0
            && (plen > (x->ex_pathlen + proxy_path_length + 1))) {
700
0
            ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED;
701
0
            ctx->error_depth = i;
702
0
            ctx->current_cert = x;
703
0
            ok = cb(0, ctx);
704
0
            if (!ok)
705
0
                goto end;
706
0
        }
707
        /* Increment path length if not self issued */
708
0
        if (!(x->ex_flags & EXFLAG_SI))
709
0
            plen++;
710
        /*
711
         * If this certificate is a proxy certificate, the next certificate
712
         * must be another proxy certificate or a EE certificate.  If not,
713
         * the next certificate must be a CA certificate.
714
         */
715
0
        if (x->ex_flags & EXFLAG_PROXY) {
716
            /*
717
             * RFC3820, 4.1.3 (b)(1) stipulates that if pCPathLengthConstraint
718
             * is less than max_path_length, the former should be copied to
719
             * the latter, and 4.1.4 (a) stipulates that max_path_length
720
             * should be verified to be larger than zero and decrement it.
721
             *
722
             * Because we're checking the certs in the reverse order, we start
723
             * with verifying that proxy_path_length isn't larger than pcPLC,
724
             * and copy the latter to the former if it is, and finally,
725
             * increment proxy_path_length.
726
             */
727
0
            if (x->ex_pcpathlen != -1) {
728
0
                if (proxy_path_length > x->ex_pcpathlen) {
729
0
                    ctx->error = X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED;
730
0
                    ctx->error_depth = i;
731
0
                    ctx->current_cert = x;
732
0
                    ok = cb(0, ctx);
733
0
                    if (!ok)
734
0
                        goto end;
735
0
                }
736
0
                proxy_path_length = x->ex_pcpathlen;
737
0
            }
738
0
            proxy_path_length++;
739
0
            must_be_ca = 0;
740
0
        } else
741
0
            must_be_ca = 1;
742
0
    }
743
0
    ok = 1;
744
0
 end:
745
0
    return ok;
746
0
#endif
747
0
}
748
749
static int check_name_constraints(X509_STORE_CTX *ctx)
750
0
{
751
0
    X509 *x;
752
0
    int i, j, rv;
753
    /* Check name constraints for all certificates */
754
0
    for (i = sk_X509_num(ctx->chain) - 1; i >= 0; i--) {
755
0
        x = sk_X509_value(ctx->chain, i);
756
        /* Ignore self issued certs unless last in chain */
757
0
        if (i && (x->ex_flags & EXFLAG_SI))
758
0
            continue;
759
760
        /*
761
         * Proxy certificates policy has an extra constraint, where the
762
         * certificate subject MUST be the issuer with a single CN entry
763
         * added.
764
         * (RFC 3820: 3.4, 4.1.3 (a)(4))
765
         */
766
0
        if (x->ex_flags & EXFLAG_PROXY) {
767
0
            X509_NAME *tmpsubject = X509_get_subject_name(x);
768
0
            X509_NAME *tmpissuer = X509_get_issuer_name(x);
769
0
            X509_NAME_ENTRY *tmpentry = NULL;
770
0
            int last_object_nid = 0;
771
0
            int err = X509_V_OK;
772
0
            int last_object_loc = X509_NAME_entry_count(tmpsubject) - 1;
773
774
            /* Check that there are at least two RDNs */
775
0
            if (last_object_loc < 1) {
776
0
                err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
777
0
                goto proxy_name_done;
778
0
            }
779
780
            /*
781
             * Check that there is exactly one more RDN in subject as
782
             * there is in issuer.
783
             */
784
0
            if (X509_NAME_entry_count(tmpsubject)
785
0
                != X509_NAME_entry_count(tmpissuer) + 1) {
786
0
                err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
787
0
                goto proxy_name_done;
788
0
            }
789
790
            /*
791
             * Check that the last subject component isn't part of a
792
             * multivalued RDN
793
             */
794
0
            if (X509_NAME_get_entry(tmpsubject, last_object_loc)->set
795
0
                == X509_NAME_get_entry(tmpsubject, last_object_loc - 1)->set) {
796
0
                err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
797
0
                goto proxy_name_done;
798
0
            }
799
800
            /*
801
             * Check that the last subject RDN is a commonName, and that
802
             * all the previous RDNs match the issuer exactly
803
             */
804
0
            tmpsubject = X509_NAME_dup(tmpsubject);
805
0
            if (tmpsubject == NULL) {
806
0
                X509err(X509_F_CHECK_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE);
807
0
                ctx->error = X509_V_ERR_OUT_OF_MEM;
808
0
                return 0;
809
0
            }
810
811
0
            tmpentry =
812
0
                X509_NAME_delete_entry(tmpsubject, last_object_loc);
813
0
            last_object_nid =
814
0
                OBJ_obj2nid(X509_NAME_ENTRY_get_object(tmpentry));
815
816
0
            if (last_object_nid != NID_commonName
817
0
                || X509_NAME_cmp(tmpsubject, tmpissuer) != 0) {
818
0
                err = X509_V_ERR_PROXY_SUBJECT_NAME_VIOLATION;
819
0
            }
820
821
0
            X509_NAME_ENTRY_free(tmpentry);
822
0
            X509_NAME_free(tmpsubject);
823
824
0
         proxy_name_done:
825
0
            if (err != X509_V_OK) {
826
0
                ctx->error = err;
827
0
                ctx->error_depth = i;
828
0
                ctx->current_cert = x;
829
0
                if (!ctx->verify_cb(0, ctx))
830
0
                    return 0;
831
0
            }
832
0
        }
833
834
        /*
835
         * Check against constraints for all certificates higher in chain
836
         * including trust anchor. Trust anchor not strictly speaking needed
837
         * but if it includes constraints it is to be assumed it expects them
838
         * to be obeyed.
839
         */
840
0
        for (j = sk_X509_num(ctx->chain) - 1; j > i; j--) {
841
0
            NAME_CONSTRAINTS *nc = sk_X509_value(ctx->chain, j)->nc;
842
0
            if (nc) {
843
0
                rv = NAME_CONSTRAINTS_check(x, nc);
844
0
                switch (rv) {
845
0
                case X509_V_OK:
846
0
                    continue;
847
0
                case X509_V_ERR_OUT_OF_MEM:
848
0
                    ctx->error = rv;
849
0
                    return 0;
850
0
                default:
851
0
                    ctx->error = rv;
852
0
                    ctx->error_depth = i;
853
0
                    ctx->current_cert = x;
854
0
                    if (!ctx->verify_cb(0, ctx))
855
0
                        return 0;
856
0
                    break;
857
0
                }
858
0
            }
859
0
        }
860
0
    }
861
0
    return 1;
862
0
}
863
864
static int check_id_error(X509_STORE_CTX *ctx, int errcode)
865
0
{
866
0
    ctx->error = errcode;
867
0
    ctx->current_cert = ctx->cert;
868
0
    ctx->error_depth = 0;
869
0
    return ctx->verify_cb(0, ctx);
870
0
}
871
872
static int check_hosts(X509 *x, X509_VERIFY_PARAM_ID *id)
873
0
{
874
0
    int i;
875
0
    int n = sk_OPENSSL_STRING_num(id->hosts);
876
0
    char *name;
877
878
0
    if (id->peername != NULL) {
879
0
        OPENSSL_free(id->peername);
880
0
        id->peername = NULL;
881
0
    }
882
0
    for (i = 0; i < n; ++i) {
883
0
        name = sk_OPENSSL_STRING_value(id->hosts, i);
884
0
        if (X509_check_host(x, name, 0, id->hostflags, &id->peername) > 0)
885
0
            return 1;
886
0
    }
887
0
    return n == 0;
888
0
}
889
890
static int check_id(X509_STORE_CTX *ctx)
891
0
{
892
0
    X509_VERIFY_PARAM *vpm = ctx->param;
893
0
    X509_VERIFY_PARAM_ID *id = vpm->id;
894
0
    X509 *x = ctx->cert;
895
0
    if (id->hosts && check_hosts(x, id) <= 0) {
896
0
        if (!check_id_error(ctx, X509_V_ERR_HOSTNAME_MISMATCH))
897
0
            return 0;
898
0
    }
899
0
    if (id->email && X509_check_email(x, id->email, id->emaillen, 0) <= 0) {
900
0
        if (!check_id_error(ctx, X509_V_ERR_EMAIL_MISMATCH))
901
0
            return 0;
902
0
    }
903
0
    if (id->ip && X509_check_ip(x, id->ip, id->iplen, 0) <= 0) {
904
0
        if (!check_id_error(ctx, X509_V_ERR_IP_ADDRESS_MISMATCH))
905
0
            return 0;
906
0
    }
907
0
    return 1;
908
0
}
909
910
static int check_trust(X509_STORE_CTX *ctx)
911
0
{
912
0
    int i, ok;
913
0
    X509 *x = NULL;
914
0
    int (*cb) (int xok, X509_STORE_CTX *xctx);
915
0
    cb = ctx->verify_cb;
916
    /* Check all trusted certificates in chain */
917
0
    for (i = ctx->last_untrusted; i < sk_X509_num(ctx->chain); i++) {
918
0
        x = sk_X509_value(ctx->chain, i);
919
0
        ok = X509_check_trust(x, ctx->param->trust, 0);
920
        /* If explicitly trusted return trusted */
921
0
        if (ok == X509_TRUST_TRUSTED)
922
0
            return X509_TRUST_TRUSTED;
923
        /*
924
         * If explicitly rejected notify callback and reject if not
925
         * overridden.
926
         */
927
0
        if (ok == X509_TRUST_REJECTED) {
928
0
            ctx->error_depth = i;
929
0
            ctx->current_cert = x;
930
0
            ctx->error = X509_V_ERR_CERT_REJECTED;
931
0
            ok = cb(0, ctx);
932
0
            if (!ok)
933
0
                return X509_TRUST_REJECTED;
934
0
        }
935
0
    }
936
    /*
937
     * If we accept partial chains and have at least one trusted certificate
938
     * return success.
939
     */
940
0
    if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
941
0
        X509 *mx;
942
0
        if (ctx->last_untrusted < sk_X509_num(ctx->chain))
943
0
            return X509_TRUST_TRUSTED;
944
0
        x = sk_X509_value(ctx->chain, 0);
945
0
        mx = lookup_cert_match(ctx, x);
946
0
        if (mx) {
947
0
            (void)sk_X509_set(ctx->chain, 0, mx);
948
0
            X509_free(x);
949
0
            ctx->last_untrusted = 0;
950
0
            return X509_TRUST_TRUSTED;
951
0
        }
952
0
    }
953
954
    /*
955
     * If no trusted certs in chain at all return untrusted and allow
956
     * standard (no issuer cert) etc errors to be indicated.
957
     */
958
0
    return X509_TRUST_UNTRUSTED;
959
0
}
960
961
static int check_revocation(X509_STORE_CTX *ctx)
962
0
{
963
0
    int i, last, ok;
964
0
    if (!(ctx->param->flags & X509_V_FLAG_CRL_CHECK))
965
0
        return 1;
966
0
    if (ctx->param->flags & X509_V_FLAG_CRL_CHECK_ALL)
967
0
        last = sk_X509_num(ctx->chain) - 1;
968
0
    else {
969
        /* If checking CRL paths this isn't the EE certificate */
970
0
        if (ctx->parent)
971
0
            return 1;
972
0
        last = 0;
973
0
    }
974
0
    for (i = 0; i <= last; i++) {
975
0
        ctx->error_depth = i;
976
0
        ok = check_cert(ctx);
977
0
        if (!ok)
978
0
            return ok;
979
0
    }
980
0
    return 1;
981
0
}
982
983
static int check_cert(X509_STORE_CTX *ctx)
984
0
{
985
0
    X509_CRL *crl = NULL, *dcrl = NULL;
986
0
    X509 *x;
987
0
    int ok, cnum;
988
0
    unsigned int last_reasons;
989
0
    cnum = ctx->error_depth;
990
0
    x = sk_X509_value(ctx->chain, cnum);
991
0
    ctx->current_cert = x;
992
0
    ctx->current_issuer = NULL;
993
0
    ctx->current_crl_score = 0;
994
0
    ctx->current_reasons = 0;
995
0
    if (x->ex_flags & EXFLAG_PROXY)
996
0
        return 1;
997
0
    while (ctx->current_reasons != CRLDP_ALL_REASONS) {
998
0
        last_reasons = ctx->current_reasons;
999
        /* Try to retrieve relevant CRL */
1000
0
        if (ctx->get_crl)
1001
0
            ok = ctx->get_crl(ctx, &crl, x);
1002
0
        else
1003
0
            ok = get_crl_delta(ctx, &crl, &dcrl, x);
1004
        /*
1005
         * If error looking up CRL, nothing we can do except notify callback
1006
         */
1007
0
        if (!ok) {
1008
0
            ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
1009
0
            ok = ctx->verify_cb(0, ctx);
1010
0
            goto err;
1011
0
        }
1012
0
        ctx->current_crl = crl;
1013
0
        ok = ctx->check_crl(ctx, crl);
1014
0
        if (!ok)
1015
0
            goto err;
1016
1017
0
        if (dcrl) {
1018
0
            ok = ctx->check_crl(ctx, dcrl);
1019
0
            if (!ok)
1020
0
                goto err;
1021
0
            ok = ctx->cert_crl(ctx, dcrl, x);
1022
0
            if (!ok)
1023
0
                goto err;
1024
0
        } else
1025
0
            ok = 1;
1026
1027
        /* Don't look in full CRL if delta reason is removefromCRL */
1028
0
        if (ok != 2) {
1029
0
            ok = ctx->cert_crl(ctx, crl, x);
1030
0
            if (!ok)
1031
0
                goto err;
1032
0
        }
1033
1034
0
        X509_CRL_free(crl);
1035
0
        X509_CRL_free(dcrl);
1036
0
        crl = NULL;
1037
0
        dcrl = NULL;
1038
        /*
1039
         * If reasons not updated we wont get anywhere by another iteration,
1040
         * so exit loop.
1041
         */
1042
0
        if (last_reasons == ctx->current_reasons) {
1043
0
            ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL;
1044
0
            ok = ctx->verify_cb(0, ctx);
1045
0
            goto err;
1046
0
        }
1047
0
    }
1048
0
 err:
1049
0
    X509_CRL_free(crl);
1050
0
    X509_CRL_free(dcrl);
1051
1052
0
    ctx->current_crl = NULL;
1053
0
    return ok;
1054
1055
0
}
1056
1057
/* Check CRL times against values in X509_STORE_CTX */
1058
1059
static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify)
1060
0
{
1061
0
    time_t *ptime;
1062
0
    int i;
1063
0
    if (notify)
1064
0
        ctx->current_crl = crl;
1065
0
    if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1066
0
        ptime = &ctx->param->check_time;
1067
0
    else
1068
0
        ptime = NULL;
1069
1070
0
    i = X509_cmp_time(X509_CRL_get_lastUpdate(crl), ptime);
1071
0
    if (i == 0) {
1072
0
        if (!notify)
1073
0
            return 0;
1074
0
        ctx->error = X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD;
1075
0
        if (!ctx->verify_cb(0, ctx))
1076
0
            return 0;
1077
0
    }
1078
1079
0
    if (i > 0) {
1080
0
        if (!notify)
1081
0
            return 0;
1082
0
        ctx->error = X509_V_ERR_CRL_NOT_YET_VALID;
1083
0
        if (!ctx->verify_cb(0, ctx))
1084
0
            return 0;
1085
0
    }
1086
1087
0
    if (X509_CRL_get_nextUpdate(crl)) {
1088
0
        i = X509_cmp_time(X509_CRL_get_nextUpdate(crl), ptime);
1089
1090
0
        if (i == 0) {
1091
0
            if (!notify)
1092
0
                return 0;
1093
0
            ctx->error = X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD;
1094
0
            if (!ctx->verify_cb(0, ctx))
1095
0
                return 0;
1096
0
        }
1097
        /* Ignore expiry of base CRL is delta is valid */
1098
0
        if ((i < 0) && !(ctx->current_crl_score & CRL_SCORE_TIME_DELTA)) {
1099
0
            if (!notify)
1100
0
                return 0;
1101
0
            ctx->error = X509_V_ERR_CRL_HAS_EXPIRED;
1102
0
            if (!ctx->verify_cb(0, ctx))
1103
0
                return 0;
1104
0
        }
1105
0
    }
1106
1107
0
    if (notify)
1108
0
        ctx->current_crl = NULL;
1109
1110
0
    return 1;
1111
0
}
1112
1113
static int get_crl_sk(X509_STORE_CTX *ctx, X509_CRL **pcrl, X509_CRL **pdcrl,
1114
                      X509 **pissuer, int *pscore, unsigned int *preasons,
1115
                      STACK_OF(X509_CRL) *crls)
1116
0
{
1117
0
    int i, crl_score, best_score = *pscore;
1118
0
    unsigned int reasons, best_reasons = 0;
1119
0
    X509 *x = ctx->current_cert;
1120
0
    X509_CRL *crl, *best_crl = NULL;
1121
0
    X509 *crl_issuer = NULL, *best_crl_issuer = NULL;
1122
1123
0
    for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1124
0
        crl = sk_X509_CRL_value(crls, i);
1125
0
        reasons = *preasons;
1126
0
        crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
1127
0
        if (crl_score < best_score || crl_score == 0)
1128
0
            continue;
1129
        /* If current CRL is equivalent use it if it is newer */
1130
0
        if (crl_score == best_score && best_crl != NULL) {
1131
0
            int day, sec;
1132
0
            if (ASN1_TIME_diff(&day, &sec, X509_CRL_get_lastUpdate(best_crl),
1133
0
                               X509_CRL_get_lastUpdate(crl)) == 0)
1134
0
                continue;
1135
            /*
1136
             * ASN1_TIME_diff never returns inconsistent signs for |day|
1137
             * and |sec|.
1138
             */
1139
0
            if (day <= 0 && sec <= 0)
1140
0
                continue;
1141
0
        }
1142
0
        best_crl = crl;
1143
0
        best_crl_issuer = crl_issuer;
1144
0
        best_score = crl_score;
1145
0
        best_reasons = reasons;
1146
0
    }
1147
1148
0
    if (best_crl) {
1149
0
        if (*pcrl)
1150
0
            X509_CRL_free(*pcrl);
1151
0
        *pcrl = best_crl;
1152
0
        *pissuer = best_crl_issuer;
1153
0
        *pscore = best_score;
1154
0
        *preasons = best_reasons;
1155
0
        CRYPTO_add(&best_crl->references, 1, CRYPTO_LOCK_X509_CRL);
1156
0
        if (*pdcrl) {
1157
0
            X509_CRL_free(*pdcrl);
1158
0
            *pdcrl = NULL;
1159
0
        }
1160
0
        get_delta_sk(ctx, pdcrl, pscore, best_crl, crls);
1161
0
    }
1162
1163
0
    if (best_score >= CRL_SCORE_VALID)
1164
0
        return 1;
1165
1166
0
    return 0;
1167
0
}
1168
1169
/*
1170
 * Compare two CRL extensions for delta checking purposes. They should be
1171
 * both present or both absent. If both present all fields must be identical.
1172
 */
1173
1174
static int crl_extension_match(X509_CRL *a, X509_CRL *b, int nid)
1175
0
{
1176
0
    ASN1_OCTET_STRING *exta, *extb;
1177
0
    int i;
1178
0
    i = X509_CRL_get_ext_by_NID(a, nid, -1);
1179
0
    if (i >= 0) {
1180
        /* Can't have multiple occurrences */
1181
0
        if (X509_CRL_get_ext_by_NID(a, nid, i) != -1)
1182
0
            return 0;
1183
0
        exta = X509_EXTENSION_get_data(X509_CRL_get_ext(a, i));
1184
0
    } else
1185
0
        exta = NULL;
1186
1187
0
    i = X509_CRL_get_ext_by_NID(b, nid, -1);
1188
1189
0
    if (i >= 0) {
1190
1191
0
        if (X509_CRL_get_ext_by_NID(b, nid, i) != -1)
1192
0
            return 0;
1193
0
        extb = X509_EXTENSION_get_data(X509_CRL_get_ext(b, i));
1194
0
    } else
1195
0
        extb = NULL;
1196
1197
0
    if (!exta && !extb)
1198
0
        return 1;
1199
1200
0
    if (!exta || !extb)
1201
0
        return 0;
1202
1203
0
    if (ASN1_OCTET_STRING_cmp(exta, extb))
1204
0
        return 0;
1205
1206
0
    return 1;
1207
0
}
1208
1209
/* See if a base and delta are compatible */
1210
1211
static int check_delta_base(X509_CRL *delta, X509_CRL *base)
1212
0
{
1213
    /* Delta CRL must be a delta */
1214
0
    if (!delta->base_crl_number)
1215
0
        return 0;
1216
    /* Base must have a CRL number */
1217
0
    if (!base->crl_number)
1218
0
        return 0;
1219
    /* Issuer names must match */
1220
0
    if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(delta)))
1221
0
        return 0;
1222
    /* AKID and IDP must match */
1223
0
    if (!crl_extension_match(delta, base, NID_authority_key_identifier))
1224
0
        return 0;
1225
0
    if (!crl_extension_match(delta, base, NID_issuing_distribution_point))
1226
0
        return 0;
1227
    /* Delta CRL base number must not exceed Full CRL number. */
1228
0
    if (ASN1_INTEGER_cmp(delta->base_crl_number, base->crl_number) > 0)
1229
0
        return 0;
1230
    /* Delta CRL number must exceed full CRL number */
1231
0
    if (ASN1_INTEGER_cmp(delta->crl_number, base->crl_number) > 0)
1232
0
        return 1;
1233
0
    return 0;
1234
0
}
1235
1236
/*
1237
 * For a given base CRL find a delta... maybe extend to delta scoring or
1238
 * retrieve a chain of deltas...
1239
 */
1240
1241
static void get_delta_sk(X509_STORE_CTX *ctx, X509_CRL **dcrl, int *pscore,
1242
                         X509_CRL *base, STACK_OF(X509_CRL) *crls)
1243
0
{
1244
0
    X509_CRL *delta;
1245
0
    int i;
1246
0
    if (!(ctx->param->flags & X509_V_FLAG_USE_DELTAS))
1247
0
        return;
1248
0
    if (!((ctx->current_cert->ex_flags | base->flags) & EXFLAG_FRESHEST))
1249
0
        return;
1250
0
    for (i = 0; i < sk_X509_CRL_num(crls); i++) {
1251
0
        delta = sk_X509_CRL_value(crls, i);
1252
0
        if (check_delta_base(delta, base)) {
1253
0
            if (check_crl_time(ctx, delta, 0))
1254
0
                *pscore |= CRL_SCORE_TIME_DELTA;
1255
0
            CRYPTO_add(&delta->references, 1, CRYPTO_LOCK_X509_CRL);
1256
0
            *dcrl = delta;
1257
0
            return;
1258
0
        }
1259
0
    }
1260
0
    *dcrl = NULL;
1261
0
}
1262
1263
/*
1264
 * For a given CRL return how suitable it is for the supplied certificate
1265
 * 'x'. The return value is a mask of several criteria. If the issuer is not
1266
 * the certificate issuer this is returned in *pissuer. The reasons mask is
1267
 * also used to determine if the CRL is suitable: if no new reasons the CRL
1268
 * is rejected, otherwise reasons is updated.
1269
 */
1270
1271
static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer,
1272
                         unsigned int *preasons, X509_CRL *crl, X509 *x)
1273
0
{
1274
1275
0
    int crl_score = 0;
1276
0
    unsigned int tmp_reasons = *preasons, crl_reasons;
1277
1278
    /* First see if we can reject CRL straight away */
1279
1280
    /* Invalid IDP cannot be processed */
1281
0
    if (crl->idp_flags & IDP_INVALID)
1282
0
        return 0;
1283
    /* Reason codes or indirect CRLs need extended CRL support */
1284
0
    if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT)) {
1285
0
        if (crl->idp_flags & (IDP_INDIRECT | IDP_REASONS))
1286
0
            return 0;
1287
0
    } else if (crl->idp_flags & IDP_REASONS) {
1288
        /* If no new reasons reject */
1289
0
        if (!(crl->idp_reasons & ~tmp_reasons))
1290
0
            return 0;
1291
0
    }
1292
    /* Don't process deltas at this stage */
1293
0
    else if (crl->base_crl_number)
1294
0
        return 0;
1295
    /* If issuer name doesn't match certificate need indirect CRL */
1296
0
    if (X509_NAME_cmp(X509_get_issuer_name(x), X509_CRL_get_issuer(crl))) {
1297
0
        if (!(crl->idp_flags & IDP_INDIRECT))
1298
0
            return 0;
1299
0
    } else
1300
0
        crl_score |= CRL_SCORE_ISSUER_NAME;
1301
1302
0
    if (!(crl->flags & EXFLAG_CRITICAL))
1303
0
        crl_score |= CRL_SCORE_NOCRITICAL;
1304
1305
    /* Check expiry */
1306
0
    if (check_crl_time(ctx, crl, 0))
1307
0
        crl_score |= CRL_SCORE_TIME;
1308
1309
    /* Check authority key ID and locate certificate issuer */
1310
0
    crl_akid_check(ctx, crl, pissuer, &crl_score);
1311
1312
    /* If we can't locate certificate issuer at this point forget it */
1313
1314
0
    if (!(crl_score & CRL_SCORE_AKID))
1315
0
        return 0;
1316
1317
    /* Check cert for matching CRL distribution points */
1318
1319
0
    if (crl_crldp_check(x, crl, crl_score, &crl_reasons)) {
1320
        /* If no new reasons reject */
1321
0
        if (!(crl_reasons & ~tmp_reasons))
1322
0
            return 0;
1323
0
        tmp_reasons |= crl_reasons;
1324
0
        crl_score |= CRL_SCORE_SCOPE;
1325
0
    }
1326
1327
0
    *preasons = tmp_reasons;
1328
1329
0
    return crl_score;
1330
1331
0
}
1332
1333
static void crl_akid_check(X509_STORE_CTX *ctx, X509_CRL *crl,
1334
                           X509 **pissuer, int *pcrl_score)
1335
0
{
1336
0
    X509 *crl_issuer = NULL;
1337
0
    X509_NAME *cnm = X509_CRL_get_issuer(crl);
1338
0
    int cidx = ctx->error_depth;
1339
0
    int i;
1340
1341
0
    if (cidx != sk_X509_num(ctx->chain) - 1)
1342
0
        cidx++;
1343
1344
0
    crl_issuer = sk_X509_value(ctx->chain, cidx);
1345
1346
0
    if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1347
0
        if (*pcrl_score & CRL_SCORE_ISSUER_NAME) {
1348
0
            *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_ISSUER_CERT;
1349
0
            *pissuer = crl_issuer;
1350
0
            return;
1351
0
        }
1352
0
    }
1353
1354
0
    for (cidx++; cidx < sk_X509_num(ctx->chain); cidx++) {
1355
0
        crl_issuer = sk_X509_value(ctx->chain, cidx);
1356
0
        if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1357
0
            continue;
1358
0
        if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1359
0
            *pcrl_score |= CRL_SCORE_AKID | CRL_SCORE_SAME_PATH;
1360
0
            *pissuer = crl_issuer;
1361
0
            return;
1362
0
        }
1363
0
    }
1364
1365
    /* Anything else needs extended CRL support */
1366
1367
0
    if (!(ctx->param->flags & X509_V_FLAG_EXTENDED_CRL_SUPPORT))
1368
0
        return;
1369
1370
    /*
1371
     * Otherwise the CRL issuer is not on the path. Look for it in the set of
1372
     * untrusted certificates.
1373
     */
1374
0
    for (i = 0; i < sk_X509_num(ctx->untrusted); i++) {
1375
0
        crl_issuer = sk_X509_value(ctx->untrusted, i);
1376
0
        if (X509_NAME_cmp(X509_get_subject_name(crl_issuer), cnm))
1377
0
            continue;
1378
0
        if (X509_check_akid(crl_issuer, crl->akid) == X509_V_OK) {
1379
0
            *pissuer = crl_issuer;
1380
0
            *pcrl_score |= CRL_SCORE_AKID;
1381
0
            return;
1382
0
        }
1383
0
    }
1384
0
}
1385
1386
/*
1387
 * Check the path of a CRL issuer certificate. This creates a new
1388
 * X509_STORE_CTX and populates it with most of the parameters from the
1389
 * parent. This could be optimised somewhat since a lot of path checking will
1390
 * be duplicated by the parent, but this will rarely be used in practice.
1391
 */
1392
1393
static int check_crl_path(X509_STORE_CTX *ctx, X509 *x)
1394
0
{
1395
0
    X509_STORE_CTX crl_ctx;
1396
0
    int ret;
1397
    /* Don't allow recursive CRL path validation */
1398
0
    if (ctx->parent)
1399
0
        return 0;
1400
0
    if (!X509_STORE_CTX_init(&crl_ctx, ctx->ctx, x, ctx->untrusted))
1401
0
        return -1;
1402
1403
0
    crl_ctx.crls = ctx->crls;
1404
    /* Copy verify params across */
1405
0
    X509_STORE_CTX_set0_param(&crl_ctx, ctx->param);
1406
1407
0
    crl_ctx.parent = ctx;
1408
0
    crl_ctx.verify_cb = ctx->verify_cb;
1409
1410
    /* Verify CRL issuer */
1411
0
    ret = X509_verify_cert(&crl_ctx);
1412
1413
0
    if (ret <= 0)
1414
0
        goto err;
1415
1416
    /* Check chain is acceptable */
1417
1418
0
    ret = check_crl_chain(ctx, ctx->chain, crl_ctx.chain);
1419
0
 err:
1420
0
    X509_STORE_CTX_cleanup(&crl_ctx);
1421
0
    return ret;
1422
0
}
1423
1424
/*
1425
 * RFC3280 says nothing about the relationship between CRL path and
1426
 * certificate path, which could lead to situations where a certificate could
1427
 * be revoked or validated by a CA not authorised to do so. RFC5280 is more
1428
 * strict and states that the two paths must end in the same trust anchor,
1429
 * though some discussions remain... until this is resolved we use the
1430
 * RFC5280 version
1431
 */
1432
1433
static int check_crl_chain(X509_STORE_CTX *ctx,
1434
                           STACK_OF(X509) *cert_path,
1435
                           STACK_OF(X509) *crl_path)
1436
0
{
1437
0
    X509 *cert_ta, *crl_ta;
1438
0
    cert_ta = sk_X509_value(cert_path, sk_X509_num(cert_path) - 1);
1439
0
    crl_ta = sk_X509_value(crl_path, sk_X509_num(crl_path) - 1);
1440
0
    if (!X509_cmp(cert_ta, crl_ta))
1441
0
        return 1;
1442
0
    return 0;
1443
0
}
1444
1445
/*-
1446
 * Check for match between two dist point names: three separate cases.
1447
 * 1. Both are relative names and compare X509_NAME types.
1448
 * 2. One full, one relative. Compare X509_NAME to GENERAL_NAMES.
1449
 * 3. Both are full names and compare two GENERAL_NAMES.
1450
 * 4. One is NULL: automatic match.
1451
 */
1452
1453
static int idp_check_dp(DIST_POINT_NAME *a, DIST_POINT_NAME *b)
1454
0
{
1455
0
    X509_NAME *nm = NULL;
1456
0
    GENERAL_NAMES *gens = NULL;
1457
0
    GENERAL_NAME *gena, *genb;
1458
0
    int i, j;
1459
0
    if (!a || !b)
1460
0
        return 1;
1461
0
    if (a->type == 1) {
1462
0
        if (!a->dpname)
1463
0
            return 0;
1464
        /* Case 1: two X509_NAME */
1465
0
        if (b->type == 1) {
1466
0
            if (!b->dpname)
1467
0
                return 0;
1468
0
            if (!X509_NAME_cmp(a->dpname, b->dpname))
1469
0
                return 1;
1470
0
            else
1471
0
                return 0;
1472
0
        }
1473
        /* Case 2: set name and GENERAL_NAMES appropriately */
1474
0
        nm = a->dpname;
1475
0
        gens = b->name.fullname;
1476
0
    } else if (b->type == 1) {
1477
0
        if (!b->dpname)
1478
0
            return 0;
1479
        /* Case 2: set name and GENERAL_NAMES appropriately */
1480
0
        gens = a->name.fullname;
1481
0
        nm = b->dpname;
1482
0
    }
1483
1484
    /* Handle case 2 with one GENERAL_NAMES and one X509_NAME */
1485
0
    if (nm) {
1486
0
        for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
1487
0
            gena = sk_GENERAL_NAME_value(gens, i);
1488
0
            if (gena->type != GEN_DIRNAME)
1489
0
                continue;
1490
0
            if (!X509_NAME_cmp(nm, gena->d.directoryName))
1491
0
                return 1;
1492
0
        }
1493
0
        return 0;
1494
0
    }
1495
1496
    /* Else case 3: two GENERAL_NAMES */
1497
1498
0
    for (i = 0; i < sk_GENERAL_NAME_num(a->name.fullname); i++) {
1499
0
        gena = sk_GENERAL_NAME_value(a->name.fullname, i);
1500
0
        for (j = 0; j < sk_GENERAL_NAME_num(b->name.fullname); j++) {
1501
0
            genb = sk_GENERAL_NAME_value(b->name.fullname, j);
1502
0
            if (!GENERAL_NAME_cmp(gena, genb))
1503
0
                return 1;
1504
0
        }
1505
0
    }
1506
1507
0
    return 0;
1508
1509
0
}
1510
1511
static int crldp_check_crlissuer(DIST_POINT *dp, X509_CRL *crl, int crl_score)
1512
0
{
1513
0
    int i;
1514
0
    X509_NAME *nm = X509_CRL_get_issuer(crl);
1515
    /* If no CRLissuer return is successful iff don't need a match */
1516
0
    if (!dp->CRLissuer)
1517
0
        return ! !(crl_score & CRL_SCORE_ISSUER_NAME);
1518
0
    for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
1519
0
        GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
1520
0
        if (gen->type != GEN_DIRNAME)
1521
0
            continue;
1522
0
        if (!X509_NAME_cmp(gen->d.directoryName, nm))
1523
0
            return 1;
1524
0
    }
1525
0
    return 0;
1526
0
}
1527
1528
/* Check CRLDP and IDP */
1529
1530
static int crl_crldp_check(X509 *x, X509_CRL *crl, int crl_score,
1531
                           unsigned int *preasons)
1532
0
{
1533
0
    int i;
1534
0
    if (crl->idp_flags & IDP_ONLYATTR)
1535
0
        return 0;
1536
0
    if (x->ex_flags & EXFLAG_CA) {
1537
0
        if (crl->idp_flags & IDP_ONLYUSER)
1538
0
            return 0;
1539
0
    } else {
1540
0
        if (crl->idp_flags & IDP_ONLYCA)
1541
0
            return 0;
1542
0
    }
1543
0
    *preasons = crl->idp_reasons;
1544
0
    for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
1545
0
        DIST_POINT *dp = sk_DIST_POINT_value(x->crldp, i);
1546
0
        if (crldp_check_crlissuer(dp, crl, crl_score)) {
1547
0
            if (!crl->idp || idp_check_dp(dp->distpoint, crl->idp->distpoint)) {
1548
0
                *preasons &= dp->dp_reasons;
1549
0
                return 1;
1550
0
            }
1551
0
        }
1552
0
    }
1553
0
    if ((!crl->idp || !crl->idp->distpoint)
1554
0
        && (crl_score & CRL_SCORE_ISSUER_NAME))
1555
0
        return 1;
1556
0
    return 0;
1557
0
}
1558
1559
/*
1560
 * Retrieve CRL corresponding to current certificate. If deltas enabled try
1561
 * to find a delta CRL too
1562
 */
1563
1564
static int get_crl_delta(X509_STORE_CTX *ctx,
1565
                         X509_CRL **pcrl, X509_CRL **pdcrl, X509 *x)
1566
0
{
1567
0
    int ok;
1568
0
    X509 *issuer = NULL;
1569
0
    int crl_score = 0;
1570
0
    unsigned int reasons;
1571
0
    X509_CRL *crl = NULL, *dcrl = NULL;
1572
0
    STACK_OF(X509_CRL) *skcrl;
1573
0
    X509_NAME *nm = X509_get_issuer_name(x);
1574
0
    reasons = ctx->current_reasons;
1575
0
    ok = get_crl_sk(ctx, &crl, &dcrl,
1576
0
                    &issuer, &crl_score, &reasons, ctx->crls);
1577
1578
0
    if (ok)
1579
0
        goto done;
1580
1581
    /* Lookup CRLs from store */
1582
1583
0
    skcrl = ctx->lookup_crls(ctx, nm);
1584
1585
    /* If no CRLs found and a near match from get_crl_sk use that */
1586
0
    if (!skcrl && crl)
1587
0
        goto done;
1588
1589
0
    get_crl_sk(ctx, &crl, &dcrl, &issuer, &crl_score, &reasons, skcrl);
1590
1591
0
    sk_X509_CRL_pop_free(skcrl, X509_CRL_free);
1592
1593
0
 done:
1594
1595
    /* If we got any kind of CRL use it and return success */
1596
0
    if (crl) {
1597
0
        ctx->current_issuer = issuer;
1598
0
        ctx->current_crl_score = crl_score;
1599
0
        ctx->current_reasons = reasons;
1600
0
        *pcrl = crl;
1601
0
        *pdcrl = dcrl;
1602
0
        return 1;
1603
0
    }
1604
1605
0
    return 0;
1606
0
}
1607
1608
/* Check CRL validity */
1609
static int check_crl(X509_STORE_CTX *ctx, X509_CRL *crl)
1610
0
{
1611
0
    X509 *issuer = NULL;
1612
0
    EVP_PKEY *ikey = NULL;
1613
0
    int ok = 0, chnum, cnum;
1614
0
    cnum = ctx->error_depth;
1615
0
    chnum = sk_X509_num(ctx->chain) - 1;
1616
    /* if we have an alternative CRL issuer cert use that */
1617
0
    if (ctx->current_issuer)
1618
0
        issuer = ctx->current_issuer;
1619
1620
    /*
1621
     * Else find CRL issuer: if not last certificate then issuer is next
1622
     * certificate in chain.
1623
     */
1624
0
    else if (cnum < chnum)
1625
0
        issuer = sk_X509_value(ctx->chain, cnum + 1);
1626
0
    else {
1627
0
        issuer = sk_X509_value(ctx->chain, chnum);
1628
        /* If not self signed, can't check signature */
1629
0
        if (!ctx->check_issued(ctx, issuer, issuer)) {
1630
0
            ctx->error = X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER;
1631
0
            ok = ctx->verify_cb(0, ctx);
1632
0
            if (!ok)
1633
0
                goto err;
1634
0
        }
1635
0
    }
1636
1637
0
    if (issuer) {
1638
        /*
1639
         * Skip most tests for deltas because they have already been done
1640
         */
1641
0
        if (!crl->base_crl_number) {
1642
            /* Check for cRLSign bit if keyUsage present */
1643
0
            if ((issuer->ex_flags & EXFLAG_KUSAGE) &&
1644
0
                !(issuer->ex_kusage & KU_CRL_SIGN)) {
1645
0
                ctx->error = X509_V_ERR_KEYUSAGE_NO_CRL_SIGN;
1646
0
                ok = ctx->verify_cb(0, ctx);
1647
0
                if (!ok)
1648
0
                    goto err;
1649
0
            }
1650
1651
0
            if (!(ctx->current_crl_score & CRL_SCORE_SCOPE)) {
1652
0
                ctx->error = X509_V_ERR_DIFFERENT_CRL_SCOPE;
1653
0
                ok = ctx->verify_cb(0, ctx);
1654
0
                if (!ok)
1655
0
                    goto err;
1656
0
            }
1657
1658
0
            if (!(ctx->current_crl_score & CRL_SCORE_SAME_PATH)) {
1659
0
                if (check_crl_path(ctx, ctx->current_issuer) <= 0) {
1660
0
                    ctx->error = X509_V_ERR_CRL_PATH_VALIDATION_ERROR;
1661
0
                    ok = ctx->verify_cb(0, ctx);
1662
0
                    if (!ok)
1663
0
                        goto err;
1664
0
                }
1665
0
            }
1666
1667
0
            if (crl->idp_flags & IDP_INVALID) {
1668
0
                ctx->error = X509_V_ERR_INVALID_EXTENSION;
1669
0
                ok = ctx->verify_cb(0, ctx);
1670
0
                if (!ok)
1671
0
                    goto err;
1672
0
            }
1673
1674
0
        }
1675
1676
0
        if (!(ctx->current_crl_score & CRL_SCORE_TIME)) {
1677
0
            ok = check_crl_time(ctx, crl, 1);
1678
0
            if (!ok)
1679
0
                goto err;
1680
0
        }
1681
1682
        /* Attempt to get issuer certificate public key */
1683
0
        ikey = X509_get_pubkey(issuer);
1684
1685
0
        if (!ikey) {
1686
0
            ctx->error = X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1687
0
            ok = ctx->verify_cb(0, ctx);
1688
0
            if (!ok)
1689
0
                goto err;
1690
0
        } else {
1691
0
            int rv;
1692
0
            rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags);
1693
0
            if (rv != X509_V_OK) {
1694
0
                ctx->error = rv;
1695
0
                ok = ctx->verify_cb(0, ctx);
1696
0
                if (!ok)
1697
0
                    goto err;
1698
0
            }
1699
            /* Verify CRL signature */
1700
0
            if (X509_CRL_verify(crl, ikey) <= 0) {
1701
0
                ctx->error = X509_V_ERR_CRL_SIGNATURE_FAILURE;
1702
0
                ok = ctx->verify_cb(0, ctx);
1703
0
                if (!ok)
1704
0
                    goto err;
1705
0
            }
1706
0
        }
1707
0
    }
1708
1709
0
    ok = 1;
1710
1711
0
 err:
1712
0
    EVP_PKEY_free(ikey);
1713
0
    return ok;
1714
0
}
1715
1716
/* Check certificate against CRL */
1717
static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x)
1718
0
{
1719
0
    int ok;
1720
0
    X509_REVOKED *rev;
1721
    /*
1722
     * The rules changed for this... previously if a CRL contained unhandled
1723
     * critical extensions it could still be used to indicate a certificate
1724
     * was revoked. This has since been changed since critical extension can
1725
     * change the meaning of CRL entries.
1726
     */
1727
0
    if (!(ctx->param->flags & X509_V_FLAG_IGNORE_CRITICAL)
1728
0
        && (crl->flags & EXFLAG_CRITICAL)) {
1729
0
        ctx->error = X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION;
1730
0
        ok = ctx->verify_cb(0, ctx);
1731
0
        if (!ok)
1732
0
            return 0;
1733
0
    }
1734
    /*
1735
     * Look for serial number of certificate in CRL If found make sure reason
1736
     * is not removeFromCRL.
1737
     */
1738
0
    if (X509_CRL_get0_by_cert(crl, &rev, x)) {
1739
0
        if (rev->reason == CRL_REASON_REMOVE_FROM_CRL)
1740
0
            return 2;
1741
0
        ctx->error = X509_V_ERR_CERT_REVOKED;
1742
0
        ok = ctx->verify_cb(0, ctx);
1743
0
        if (!ok)
1744
0
            return 0;
1745
0
    }
1746
1747
0
    return 1;
1748
0
}
1749
1750
static int check_policy(X509_STORE_CTX *ctx)
1751
0
{
1752
0
    int ret;
1753
0
    if (ctx->parent)
1754
0
        return 1;
1755
0
    ret = X509_policy_check(&ctx->tree, &ctx->explicit_policy, ctx->chain,
1756
0
                            ctx->param->policies, ctx->param->flags);
1757
0
    if (ret == 0) {
1758
0
        X509err(X509_F_CHECK_POLICY, ERR_R_MALLOC_FAILURE);
1759
0
        ctx->error = X509_V_ERR_OUT_OF_MEM;
1760
0
        return 0;
1761
0
    }
1762
    /* Invalid or inconsistent extensions */
1763
0
    if (ret == -1) {
1764
        /*
1765
         * Locate certificates with bad extensions and notify callback.
1766
         */
1767
0
        X509 *x;
1768
0
        int i;
1769
0
        for (i = 1; i < sk_X509_num(ctx->chain); i++) {
1770
0
            x = sk_X509_value(ctx->chain, i);
1771
0
            if (!(x->ex_flags & EXFLAG_INVALID_POLICY))
1772
0
                continue;
1773
0
            ctx->current_cert = x;
1774
0
            ctx->error = X509_V_ERR_INVALID_POLICY_EXTENSION;
1775
0
            if (!ctx->verify_cb(0, ctx))
1776
0
                return 0;
1777
0
        }
1778
0
        return 1;
1779
0
    }
1780
0
    if (ret == -2) {
1781
0
        ctx->current_cert = NULL;
1782
0
        ctx->error = X509_V_ERR_NO_EXPLICIT_POLICY;
1783
0
        return ctx->verify_cb(0, ctx);
1784
0
    }
1785
1786
0
    if (ctx->param->flags & X509_V_FLAG_NOTIFY_POLICY) {
1787
0
        ctx->current_cert = NULL;
1788
        /*
1789
         * Verification errors need to be "sticky", a callback may have allowed
1790
         * an SSL handshake to continue despite an error, and we must then
1791
         * remain in an error state.  Therefore, we MUST NOT clear earlier
1792
         * verification errors by setting the error to X509_V_OK.
1793
         */
1794
0
        if (!ctx->verify_cb(2, ctx))
1795
0
            return 0;
1796
0
    }
1797
1798
0
    return 1;
1799
0
}
1800
1801
static int check_cert_time(X509_STORE_CTX *ctx, X509 *x)
1802
0
{
1803
0
    time_t *ptime;
1804
0
    int i;
1805
1806
0
    if (ctx->param->flags & X509_V_FLAG_USE_CHECK_TIME)
1807
0
        ptime = &ctx->param->check_time;
1808
0
    else
1809
0
        ptime = NULL;
1810
1811
0
    i = X509_cmp_time(X509_get_notBefore(x), ptime);
1812
0
    if (i == 0) {
1813
0
        ctx->error = X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD;
1814
0
        ctx->current_cert = x;
1815
0
        if (!ctx->verify_cb(0, ctx))
1816
0
            return 0;
1817
0
    }
1818
1819
0
    if (i > 0) {
1820
0
        ctx->error = X509_V_ERR_CERT_NOT_YET_VALID;
1821
0
        ctx->current_cert = x;
1822
0
        if (!ctx->verify_cb(0, ctx))
1823
0
            return 0;
1824
0
    }
1825
1826
0
    i = X509_cmp_time(X509_get_notAfter(x), ptime);
1827
0
    if (i == 0) {
1828
0
        ctx->error = X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD;
1829
0
        ctx->current_cert = x;
1830
0
        if (!ctx->verify_cb(0, ctx))
1831
0
            return 0;
1832
0
    }
1833
1834
0
    if (i < 0) {
1835
0
        ctx->error = X509_V_ERR_CERT_HAS_EXPIRED;
1836
0
        ctx->current_cert = x;
1837
0
        if (!ctx->verify_cb(0, ctx))
1838
0
            return 0;
1839
0
    }
1840
1841
0
    return 1;
1842
0
}
1843
1844
static int internal_verify(X509_STORE_CTX *ctx)
1845
0
{
1846
0
    int ok = 0, n;
1847
0
    X509 *xs, *xi;
1848
0
    EVP_PKEY *pkey = NULL;
1849
0
    int (*cb) (int xok, X509_STORE_CTX *xctx);
1850
1851
0
    cb = ctx->verify_cb;
1852
1853
0
    n = sk_X509_num(ctx->chain);
1854
0
    ctx->error_depth = n - 1;
1855
0
    n--;
1856
0
    xi = sk_X509_value(ctx->chain, n);
1857
1858
0
    if (ctx->check_issued(ctx, xi, xi))
1859
0
        xs = xi;
1860
0
    else {
1861
0
        if (ctx->param->flags & X509_V_FLAG_PARTIAL_CHAIN) {
1862
0
            xs = xi;
1863
0
            goto check_cert;
1864
0
        }
1865
0
        if (n <= 0) {
1866
0
            ctx->error = X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE;
1867
0
            ctx->current_cert = xi;
1868
0
            ok = cb(0, ctx);
1869
0
            goto end;
1870
0
        } else {
1871
0
            n--;
1872
0
            ctx->error_depth = n;
1873
0
            xs = sk_X509_value(ctx->chain, n);
1874
0
        }
1875
0
    }
1876
1877
/*      ctx->error=0;  not needed */
1878
0
    while (n >= 0) {
1879
0
        ctx->error_depth = n;
1880
1881
        /*
1882
         * Skip signature check for self signed certificates unless
1883
         * explicitly asked for. It doesn't add any security and just wastes
1884
         * time.
1885
         */
1886
0
        if (!xs->valid
1887
0
            && (xs != xi
1888
0
                || (ctx->param->flags & X509_V_FLAG_CHECK_SS_SIGNATURE))) {
1889
0
            if ((pkey = X509_get_pubkey(xi)) == NULL) {
1890
0
                ctx->error = X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY;
1891
0
                ctx->current_cert = xi;
1892
0
                ok = (*cb) (0, ctx);
1893
0
                if (!ok)
1894
0
                    goto end;
1895
0
            } else if (X509_verify(xs, pkey) <= 0) {
1896
0
                ctx->error = X509_V_ERR_CERT_SIGNATURE_FAILURE;
1897
0
                ctx->current_cert = xs;
1898
0
                ok = (*cb) (0, ctx);
1899
0
                if (!ok) {
1900
0
                    EVP_PKEY_free(pkey);
1901
0
                    goto end;
1902
0
                }
1903
0
            }
1904
0
            EVP_PKEY_free(pkey);
1905
0
            pkey = NULL;
1906
0
        }
1907
1908
0
        xs->valid = 1;
1909
1910
0
 check_cert:
1911
0
        ok = check_cert_time(ctx, xs);
1912
0
        if (!ok)
1913
0
            goto end;
1914
1915
        /* The last error (if any) is still in the error value */
1916
0
        ctx->current_issuer = xi;
1917
0
        ctx->current_cert = xs;
1918
0
        ok = (*cb) (1, ctx);
1919
0
        if (!ok)
1920
0
            goto end;
1921
1922
0
        n--;
1923
0
        if (n >= 0) {
1924
0
            xi = xs;
1925
0
            xs = sk_X509_value(ctx->chain, n);
1926
0
        }
1927
0
    }
1928
0
    ok = 1;
1929
0
 end:
1930
0
    return ok;
1931
0
}
1932
1933
int X509_cmp_current_time(const ASN1_TIME *ctm)
1934
0
{
1935
0
    return X509_cmp_time(ctm, NULL);
1936
0
}
1937
1938
int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time)
1939
0
{
1940
0
    char *str;
1941
0
    ASN1_TIME atm;
1942
0
    long offset;
1943
0
    char buff1[24], buff2[24], *p;
1944
0
    int i, j, remaining;
1945
1946
0
    p = buff1;
1947
0
    remaining = ctm->length;
1948
0
    str = (char *)ctm->data;
1949
    /*
1950
     * Note that the following (historical) code allows much more slack in the
1951
     * time format than RFC5280. In RFC5280, the representation is fixed:
1952
     * UTCTime: YYMMDDHHMMSSZ
1953
     * GeneralizedTime: YYYYMMDDHHMMSSZ
1954
     */
1955
0
    if (ctm->type == V_ASN1_UTCTIME) {
1956
        /* YYMMDDHHMM[SS]Z or YYMMDDHHMM[SS](+-)hhmm */
1957
0
        int min_length = sizeof("YYMMDDHHMMZ") - 1;
1958
0
        int max_length = sizeof("YYMMDDHHMMSS+hhmm") - 1;
1959
0
        if (remaining < min_length || remaining > max_length)
1960
0
            return 0;
1961
0
        memcpy(p, str, 10);
1962
0
        p += 10;
1963
0
        str += 10;
1964
0
        remaining -= 10;
1965
0
    } else {
1966
        /* YYYYMMDDHHMM[SS[.fff]]Z or YYYYMMDDHHMM[SS[.f[f[f]]]](+-)hhmm */
1967
0
        int min_length = sizeof("YYYYMMDDHHMMZ") - 1;
1968
0
        int max_length = sizeof("YYYYMMDDHHMMSS.fff+hhmm") - 1;
1969
0
        if (remaining < min_length || remaining > max_length)
1970
0
            return 0;
1971
0
        memcpy(p, str, 12);
1972
0
        p += 12;
1973
0
        str += 12;
1974
0
        remaining -= 12;
1975
0
    }
1976
1977
0
    if ((*str == 'Z') || (*str == '-') || (*str == '+')) {
1978
0
        *(p++) = '0';
1979
0
        *(p++) = '0';
1980
0
    } else {
1981
        /* SS (seconds) */
1982
0
        if (remaining < 2)
1983
0
            return 0;
1984
0
        *(p++) = *(str++);
1985
0
        *(p++) = *(str++);
1986
0
        remaining -= 2;
1987
        /*
1988
         * Skip any (up to three) fractional seconds...
1989
         * TODO(emilia): in RFC5280, fractional seconds are forbidden.
1990
         * Can we just kill them altogether?
1991
         */
1992
0
        if (remaining && *str == '.') {
1993
0
            str++;
1994
0
            remaining--;
1995
0
            for (i = 0; i < 3 && remaining; i++, str++, remaining--) {
1996
0
                if (*str < '0' || *str > '9')
1997
0
                    break;
1998
0
            }
1999
0
        }
2000
2001
0
    }
2002
0
    *(p++) = 'Z';
2003
0
    *(p++) = '\0';
2004
2005
    /* We now need either a terminating 'Z' or an offset. */
2006
0
    if (!remaining)
2007
0
        return 0;
2008
0
    if (*str == 'Z') {
2009
0
        if (remaining != 1)
2010
0
            return 0;
2011
0
        offset = 0;
2012
0
    } else {
2013
        /* (+-)HHMM */
2014
0
        if ((*str != '+') && (*str != '-'))
2015
0
            return 0;
2016
        /* Historical behaviour: the (+-)hhmm offset is forbidden in RFC5280. */
2017
0
        if (remaining != 5)
2018
0
            return 0;
2019
0
        if (str[1] < '0' || str[1] > '9' || str[2] < '0' || str[2] > '9' ||
2020
0
            str[3] < '0' || str[3] > '9' || str[4] < '0' || str[4] > '9')
2021
0
            return 0;
2022
0
        offset = ((str[1] - '0') * 10 + (str[2] - '0')) * 60;
2023
0
        offset += (str[3] - '0') * 10 + (str[4] - '0');
2024
0
        if (*str == '-')
2025
0
            offset = -offset;
2026
0
    }
2027
0
    atm.type = ctm->type;
2028
0
    atm.flags = 0;
2029
0
    atm.length = sizeof(buff2);
2030
0
    atm.data = (unsigned char *)buff2;
2031
2032
0
    if (X509_time_adj(&atm, offset * 60, cmp_time) == NULL)
2033
0
        return 0;
2034
2035
0
    if (ctm->type == V_ASN1_UTCTIME) {
2036
0
        i = (buff1[0] - '0') * 10 + (buff1[1] - '0');
2037
0
        if (i < 50)
2038
0
            i += 100;           /* cf. RFC 2459 */
2039
0
        j = (buff2[0] - '0') * 10 + (buff2[1] - '0');
2040
0
        if (j < 50)
2041
0
            j += 100;
2042
2043
0
        if (i < j)
2044
0
            return -1;
2045
0
        if (i > j)
2046
0
            return 1;
2047
0
    }
2048
0
    i = strcmp(buff1, buff2);
2049
0
    if (i == 0)                 /* wait a second then return younger :-) */
2050
0
        return -1;
2051
0
    else
2052
0
        return i;
2053
0
}
2054
2055
ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long adj)
2056
0
{
2057
0
    return X509_time_adj(s, adj, NULL);
2058
0
}
2059
2060
ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec, time_t *in_tm)
2061
0
{
2062
0
    return X509_time_adj_ex(s, 0, offset_sec, in_tm);
2063
0
}
2064
2065
ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s,
2066
                            int offset_day, long offset_sec, time_t *in_tm)
2067
0
{
2068
0
    time_t t;
2069
2070
0
    if (in_tm)
2071
0
        t = *in_tm;
2072
0
    else
2073
0
        time(&t);
2074
2075
0
    if (s && !(s->flags & ASN1_STRING_FLAG_MSTRING)) {
2076
0
        if (s->type == V_ASN1_UTCTIME)
2077
0
            return ASN1_UTCTIME_adj(s, t, offset_day, offset_sec);
2078
0
        if (s->type == V_ASN1_GENERALIZEDTIME)
2079
0
            return ASN1_GENERALIZEDTIME_adj(s, t, offset_day, offset_sec);
2080
0
    }
2081
0
    return ASN1_TIME_adj(s, t, offset_day, offset_sec);
2082
0
}
2083
2084
int X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK_OF(X509) *chain)
2085
0
{
2086
0
    EVP_PKEY *ktmp = NULL, *ktmp2;
2087
0
    int i, j;
2088
2089
0
    if ((pkey != NULL) && !EVP_PKEY_missing_parameters(pkey))
2090
0
        return 1;
2091
2092
0
    for (i = 0; i < sk_X509_num(chain); i++) {
2093
0
        ktmp = X509_get_pubkey(sk_X509_value(chain, i));
2094
0
        if (ktmp == NULL) {
2095
0
            X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
2096
0
                    X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY);
2097
0
            return 0;
2098
0
        }
2099
0
        if (!EVP_PKEY_missing_parameters(ktmp))
2100
0
            break;
2101
0
        else {
2102
0
            EVP_PKEY_free(ktmp);
2103
0
            ktmp = NULL;
2104
0
        }
2105
0
    }
2106
0
    if (ktmp == NULL) {
2107
0
        X509err(X509_F_X509_GET_PUBKEY_PARAMETERS,
2108
0
                X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN);
2109
0
        return 0;
2110
0
    }
2111
2112
    /* first, populate the other certs */
2113
0
    for (j = i - 1; j >= 0; j--) {
2114
0
        ktmp2 = X509_get_pubkey(sk_X509_value(chain, j));
2115
0
        EVP_PKEY_copy_parameters(ktmp2, ktmp);
2116
0
        EVP_PKEY_free(ktmp2);
2117
0
    }
2118
2119
0
    if (pkey != NULL)
2120
0
        EVP_PKEY_copy_parameters(pkey, ktmp);
2121
0
    EVP_PKEY_free(ktmp);
2122
0
    return 1;
2123
0
}
2124
2125
/* Make a delta CRL as the diff between two full CRLs */
2126
2127
X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
2128
                        EVP_PKEY *skey, const EVP_MD *md, unsigned int flags)
2129
0
{
2130
0
    X509_CRL *crl = NULL;
2131
0
    int i;
2132
0
    STACK_OF(X509_REVOKED) *revs = NULL;
2133
    /* CRLs can't be delta already */
2134
0
    if (base->base_crl_number || newer->base_crl_number) {
2135
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_ALREADY_DELTA);
2136
0
        return NULL;
2137
0
    }
2138
    /* Base and new CRL must have a CRL number */
2139
0
    if (!base->crl_number || !newer->crl_number) {
2140
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_NO_CRL_NUMBER);
2141
0
        return NULL;
2142
0
    }
2143
    /* Issuer names must match */
2144
0
    if (X509_NAME_cmp(X509_CRL_get_issuer(base), X509_CRL_get_issuer(newer))) {
2145
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_ISSUER_MISMATCH);
2146
0
        return NULL;
2147
0
    }
2148
    /* AKID and IDP must match */
2149
0
    if (!crl_extension_match(base, newer, NID_authority_key_identifier)) {
2150
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_AKID_MISMATCH);
2151
0
        return NULL;
2152
0
    }
2153
0
    if (!crl_extension_match(base, newer, NID_issuing_distribution_point)) {
2154
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_IDP_MISMATCH);
2155
0
        return NULL;
2156
0
    }
2157
    /* Newer CRL number must exceed full CRL number */
2158
0
    if (ASN1_INTEGER_cmp(newer->crl_number, base->crl_number) <= 0) {
2159
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_NEWER_CRL_NOT_NEWER);
2160
0
        return NULL;
2161
0
    }
2162
    /* CRLs must verify */
2163
0
    if (skey && (X509_CRL_verify(base, skey) <= 0 ||
2164
0
                 X509_CRL_verify(newer, skey) <= 0)) {
2165
0
        X509err(X509_F_X509_CRL_DIFF, X509_R_CRL_VERIFY_FAILURE);
2166
0
        return NULL;
2167
0
    }
2168
    /* Create new CRL */
2169
0
    crl = X509_CRL_new();
2170
0
    if (!crl || !X509_CRL_set_version(crl, 1))
2171
0
        goto memerr;
2172
    /* Set issuer name */
2173
0
    if (!X509_CRL_set_issuer_name(crl, X509_CRL_get_issuer(newer)))
2174
0
        goto memerr;
2175
2176
0
    if (!X509_CRL_set_lastUpdate(crl, X509_CRL_get_lastUpdate(newer)))
2177
0
        goto memerr;
2178
0
    if (!X509_CRL_set_nextUpdate(crl, X509_CRL_get_nextUpdate(newer)))
2179
0
        goto memerr;
2180
2181
    /* Set base CRL number: must be critical */
2182
2183
0
    if (!X509_CRL_add1_ext_i2d(crl, NID_delta_crl, base->crl_number, 1, 0))
2184
0
        goto memerr;
2185
2186
    /*
2187
     * Copy extensions across from newest CRL to delta: this will set CRL
2188
     * number to correct value too.
2189
     */
2190
2191
0
    for (i = 0; i < X509_CRL_get_ext_count(newer); i++) {
2192
0
        X509_EXTENSION *ext;
2193
0
        ext = X509_CRL_get_ext(newer, i);
2194
0
        if (!X509_CRL_add_ext(crl, ext, -1))
2195
0
            goto memerr;
2196
0
    }
2197
2198
    /* Go through revoked entries, copying as needed */
2199
2200
0
    revs = X509_CRL_get_REVOKED(newer);
2201
2202
0
    for (i = 0; i < sk_X509_REVOKED_num(revs); i++) {
2203
0
        X509_REVOKED *rvn, *rvtmp;
2204
0
        rvn = sk_X509_REVOKED_value(revs, i);
2205
        /*
2206
         * Add only if not also in base. TODO: need something cleverer here
2207
         * for some more complex CRLs covering multiple CAs.
2208
         */
2209
0
        if (!X509_CRL_get0_by_serial(base, &rvtmp, rvn->serialNumber)) {
2210
0
            rvtmp = X509_REVOKED_dup(rvn);
2211
0
            if (!rvtmp)
2212
0
                goto memerr;
2213
0
            if (!X509_CRL_add0_revoked(crl, rvtmp)) {
2214
0
                X509_REVOKED_free(rvtmp);
2215
0
                goto memerr;
2216
0
            }
2217
0
        }
2218
0
    }
2219
    /* TODO: optionally prune deleted entries */
2220
2221
0
    if (skey && md && !X509_CRL_sign(crl, skey, md))
2222
0
        goto memerr;
2223
2224
0
    return crl;
2225
2226
0
 memerr:
2227
0
    X509err(X509_F_X509_CRL_DIFF, ERR_R_MALLOC_FAILURE);
2228
0
    if (crl)
2229
0
        X509_CRL_free(crl);
2230
0
    return NULL;
2231
0
}
2232
2233
int X509_STORE_CTX_get_ex_new_index(long argl, void *argp,
2234
                                    CRYPTO_EX_new *new_func,
2235
                                    CRYPTO_EX_dup *dup_func,
2236
                                    CRYPTO_EX_free *free_func)
2237
8
{
2238
    /*
2239
     * This function is (usually) called only once, by
2240
     * SSL_get_ex_data_X509_STORE_CTX_idx (ssl/ssl_cert.c).
2241
     */
2242
8
    return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509_STORE_CTX, argl, argp,
2243
8
                                   new_func, dup_func, free_func);
2244
8
}
2245
2246
int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
2247
0
{
2248
0
    return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
2249
0
}
2250
2251
void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx)
2252
0
{
2253
0
    return CRYPTO_get_ex_data(&ctx->ex_data, idx);
2254
0
}
2255
2256
int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx)
2257
0
{
2258
0
    return ctx->error;
2259
0
}
2260
2261
void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int err)
2262
0
{
2263
0
    ctx->error = err;
2264
0
}
2265
2266
int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx)
2267
0
{
2268
0
    return ctx->error_depth;
2269
0
}
2270
2271
X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx)
2272
0
{
2273
0
    return ctx->current_cert;
2274
0
}
2275
2276
STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx)
2277
0
{
2278
0
    return ctx->chain;
2279
0
}
2280
2281
STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx)
2282
0
{
2283
0
    if (!ctx->chain)
2284
0
        return NULL;
2285
0
    return X509_chain_up_ref(ctx->chain);
2286
0
}
2287
2288
X509 *X509_STORE_CTX_get0_current_issuer(X509_STORE_CTX *ctx)
2289
0
{
2290
0
    return ctx->current_issuer;
2291
0
}
2292
2293
X509_CRL *X509_STORE_CTX_get0_current_crl(X509_STORE_CTX *ctx)
2294
0
{
2295
0
    return ctx->current_crl;
2296
0
}
2297
2298
X509_STORE_CTX *X509_STORE_CTX_get0_parent_ctx(X509_STORE_CTX *ctx)
2299
0
{
2300
0
    return ctx->parent;
2301
0
}
2302
2303
void X509_STORE_CTX_set_cert(X509_STORE_CTX *ctx, X509 *x)
2304
0
{
2305
0
    ctx->cert = x;
2306
0
}
2307
2308
void X509_STORE_CTX_set_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2309
0
{
2310
0
    ctx->untrusted = sk;
2311
0
}
2312
2313
void X509_STORE_CTX_set0_crls(X509_STORE_CTX *ctx, STACK_OF(X509_CRL) *sk)
2314
0
{
2315
0
    ctx->crls = sk;
2316
0
}
2317
2318
int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose)
2319
0
{
2320
0
    return X509_STORE_CTX_purpose_inherit(ctx, 0, purpose, 0);
2321
0
}
2322
2323
int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust)
2324
0
{
2325
0
    return X509_STORE_CTX_purpose_inherit(ctx, 0, 0, trust);
2326
0
}
2327
2328
/*
2329
 * This function is used to set the X509_STORE_CTX purpose and trust values.
2330
 * This is intended to be used when another structure has its own trust and
2331
 * purpose values which (if set) will be inherited by the ctx. If they aren't
2332
 * set then we will usually have a default purpose in mind which should then
2333
 * be used to set the trust value. An example of this is SSL use: an SSL
2334
 * structure will have its own purpose and trust settings which the
2335
 * application can set: if they aren't set then we use the default of SSL
2336
 * client/server.
2337
 */
2338
2339
int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
2340
                                   int purpose, int trust)
2341
0
{
2342
0
    int idx;
2343
    /* If purpose not set use default */
2344
0
    if (!purpose)
2345
0
        purpose = def_purpose;
2346
    /* If we have a purpose then check it is valid */
2347
0
    if (purpose) {
2348
0
        X509_PURPOSE *ptmp;
2349
0
        idx = X509_PURPOSE_get_by_id(purpose);
2350
0
        if (idx == -1) {
2351
0
            X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2352
0
                    X509_R_UNKNOWN_PURPOSE_ID);
2353
0
            return 0;
2354
0
        }
2355
0
        ptmp = X509_PURPOSE_get0(idx);
2356
0
        if (ptmp->trust == X509_TRUST_DEFAULT) {
2357
0
            idx = X509_PURPOSE_get_by_id(def_purpose);
2358
0
            if (idx == -1) {
2359
0
                X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2360
0
                        X509_R_UNKNOWN_PURPOSE_ID);
2361
0
                return 0;
2362
0
            }
2363
0
            ptmp = X509_PURPOSE_get0(idx);
2364
0
        }
2365
        /* If trust not set then get from purpose default */
2366
0
        if (!trust)
2367
0
            trust = ptmp->trust;
2368
0
    }
2369
0
    if (trust) {
2370
0
        idx = X509_TRUST_get_by_id(trust);
2371
0
        if (idx == -1) {
2372
0
            X509err(X509_F_X509_STORE_CTX_PURPOSE_INHERIT,
2373
0
                    X509_R_UNKNOWN_TRUST_ID);
2374
0
            return 0;
2375
0
        }
2376
0
    }
2377
2378
0
    if (purpose && !ctx->param->purpose)
2379
0
        ctx->param->purpose = purpose;
2380
0
    if (trust && !ctx->param->trust)
2381
0
        ctx->param->trust = trust;
2382
0
    return 1;
2383
0
}
2384
2385
X509_STORE_CTX *X509_STORE_CTX_new(void)
2386
0
{
2387
0
    X509_STORE_CTX *ctx;
2388
0
    ctx = (X509_STORE_CTX *)OPENSSL_malloc(sizeof(X509_STORE_CTX));
2389
0
    if (!ctx) {
2390
0
        X509err(X509_F_X509_STORE_CTX_NEW, ERR_R_MALLOC_FAILURE);
2391
0
        return NULL;
2392
0
    }
2393
0
    memset(ctx, 0, sizeof(X509_STORE_CTX));
2394
0
    return ctx;
2395
0
}
2396
2397
void X509_STORE_CTX_free(X509_STORE_CTX *ctx)
2398
0
{
2399
0
    if (!ctx)
2400
0
        return;
2401
0
    X509_STORE_CTX_cleanup(ctx);
2402
0
    OPENSSL_free(ctx);
2403
0
}
2404
2405
int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, X509 *x509,
2406
                        STACK_OF(X509) *chain)
2407
0
{
2408
0
    int ret = 1;
2409
0
    ctx->ctx = store;
2410
0
    ctx->current_method = 0;
2411
0
    ctx->cert = x509;
2412
0
    ctx->untrusted = chain;
2413
0
    ctx->crls = NULL;
2414
0
    ctx->last_untrusted = 0;
2415
0
    ctx->other_ctx = NULL;
2416
0
    ctx->valid = 0;
2417
0
    ctx->chain = NULL;
2418
0
    ctx->error = 0;
2419
0
    ctx->explicit_policy = 0;
2420
0
    ctx->error_depth = 0;
2421
0
    ctx->current_cert = NULL;
2422
0
    ctx->current_issuer = NULL;
2423
0
    ctx->current_crl = NULL;
2424
0
    ctx->current_crl_score = 0;
2425
0
    ctx->current_reasons = 0;
2426
0
    ctx->tree = NULL;
2427
0
    ctx->parent = NULL;
2428
    /* Zero ex_data to make sure we're cleanup-safe */
2429
0
    memset(&ctx->ex_data, 0, sizeof(ctx->ex_data));
2430
2431
0
    ctx->param = X509_VERIFY_PARAM_new();
2432
0
    if (!ctx->param) {
2433
0
        X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2434
0
        return 0;
2435
0
    }
2436
2437
    /*
2438
     * Inherit callbacks and flags from X509_STORE if not set use defaults.
2439
     */
2440
0
    if (store)
2441
0
        ret = X509_VERIFY_PARAM_inherit(ctx->param, store->param);
2442
0
    else
2443
0
        ctx->param->inh_flags |= X509_VP_FLAG_DEFAULT | X509_VP_FLAG_ONCE;
2444
2445
0
    if (store) {
2446
0
        ctx->verify_cb = store->verify_cb;
2447
        /* Seems to always be 0 in OpenSSL, else must be idempotent */
2448
0
        ctx->cleanup = store->cleanup;
2449
0
    } else
2450
0
        ctx->cleanup = 0;
2451
2452
0
    if (ret)
2453
0
        ret = X509_VERIFY_PARAM_inherit(ctx->param,
2454
0
                                        X509_VERIFY_PARAM_lookup("default"));
2455
2456
0
    if (ret == 0) {
2457
0
        X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2458
0
        goto err;
2459
0
    }
2460
2461
0
    if (store && store->check_issued)
2462
0
        ctx->check_issued = store->check_issued;
2463
0
    else
2464
0
        ctx->check_issued = check_issued;
2465
2466
0
    if (store && store->get_issuer)
2467
0
        ctx->get_issuer = store->get_issuer;
2468
0
    else
2469
0
        ctx->get_issuer = X509_STORE_CTX_get1_issuer;
2470
2471
0
    if (store && store->verify_cb)
2472
0
        ctx->verify_cb = store->verify_cb;
2473
0
    else
2474
0
        ctx->verify_cb = null_callback;
2475
2476
0
    if (store && store->verify)
2477
0
        ctx->verify = store->verify;
2478
0
    else
2479
0
        ctx->verify = internal_verify;
2480
2481
0
    if (store && store->check_revocation)
2482
0
        ctx->check_revocation = store->check_revocation;
2483
0
    else
2484
0
        ctx->check_revocation = check_revocation;
2485
2486
0
    if (store && store->get_crl)
2487
0
        ctx->get_crl = store->get_crl;
2488
0
    else
2489
0
        ctx->get_crl = NULL;
2490
2491
0
    if (store && store->check_crl)
2492
0
        ctx->check_crl = store->check_crl;
2493
0
    else
2494
0
        ctx->check_crl = check_crl;
2495
2496
0
    if (store && store->cert_crl)
2497
0
        ctx->cert_crl = store->cert_crl;
2498
0
    else
2499
0
        ctx->cert_crl = cert_crl;
2500
2501
0
    if (store && store->lookup_certs)
2502
0
        ctx->lookup_certs = store->lookup_certs;
2503
0
    else
2504
0
        ctx->lookup_certs = X509_STORE_get1_certs;
2505
2506
0
    if (store && store->lookup_crls)
2507
0
        ctx->lookup_crls = store->lookup_crls;
2508
0
    else
2509
0
        ctx->lookup_crls = X509_STORE_get1_crls;
2510
2511
0
    ctx->check_policy = check_policy;
2512
2513
0
    if (CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx,
2514
0
                           &ctx->ex_data))
2515
0
        return 1;
2516
0
    X509err(X509_F_X509_STORE_CTX_INIT, ERR_R_MALLOC_FAILURE);
2517
2518
0
 err:
2519
    /*
2520
     * On error clean up allocated storage, if the store context was not
2521
     * allocated with X509_STORE_CTX_new() this is our last chance to do so.
2522
     */
2523
0
    X509_STORE_CTX_cleanup(ctx);
2524
0
    return 0;
2525
0
}
2526
2527
/*
2528
 * Set alternative lookup method: just a STACK of trusted certificates. This
2529
 * avoids X509_STORE nastiness where it isn't needed.
2530
 */
2531
2532
void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk)
2533
0
{
2534
0
    ctx->other_ctx = sk;
2535
0
    ctx->get_issuer = get_issuer_sk;
2536
0
}
2537
2538
void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx)
2539
0
{
2540
    /*
2541
     * We need to be idempotent because, unfortunately, free() also calls
2542
     * cleanup(), so the natural call sequence new(), init(), cleanup(), free()
2543
     * calls cleanup() for the same object twice!  Thus we must zero the
2544
     * pointers below after they're freed!
2545
     */
2546
    /* Seems to always be 0 in OpenSSL, do this at most once. */
2547
0
    if (ctx->cleanup != NULL) {
2548
0
        ctx->cleanup(ctx);
2549
0
        ctx->cleanup = NULL;
2550
0
    }
2551
0
    if (ctx->param != NULL) {
2552
0
        if (ctx->parent == NULL)
2553
0
            X509_VERIFY_PARAM_free(ctx->param);
2554
0
        ctx->param = NULL;
2555
0
    }
2556
0
    if (ctx->tree != NULL) {
2557
0
        X509_policy_tree_free(ctx->tree);
2558
0
        ctx->tree = NULL;
2559
0
    }
2560
0
    if (ctx->chain != NULL) {
2561
0
        sk_X509_pop_free(ctx->chain, X509_free);
2562
0
        ctx->chain = NULL;
2563
0
    }
2564
0
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509_STORE_CTX, ctx, &(ctx->ex_data));
2565
0
    memset(&ctx->ex_data, 0, sizeof(CRYPTO_EX_DATA));
2566
0
}
2567
2568
void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth)
2569
0
{
2570
0
    X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2571
0
}
2572
2573
void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, unsigned long flags)
2574
0
{
2575
0
    X509_VERIFY_PARAM_set_flags(ctx->param, flags);
2576
0
}
2577
2578
void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, unsigned long flags,
2579
                             time_t t)
2580
0
{
2581
0
    X509_VERIFY_PARAM_set_time(ctx->param, t);
2582
0
}
2583
2584
void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
2585
                                  int (*verify_cb) (int, X509_STORE_CTX *))
2586
0
{
2587
0
    ctx->verify_cb = verify_cb;
2588
0
}
2589
2590
X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(X509_STORE_CTX *ctx)
2591
0
{
2592
0
    return ctx->tree;
2593
0
}
2594
2595
int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx)
2596
0
{
2597
0
    return ctx->explicit_policy;
2598
0
}
2599
2600
int X509_STORE_CTX_set_default(X509_STORE_CTX *ctx, const char *name)
2601
0
{
2602
0
    const X509_VERIFY_PARAM *param;
2603
0
    param = X509_VERIFY_PARAM_lookup(name);
2604
0
    if (!param)
2605
0
        return 0;
2606
0
    return X509_VERIFY_PARAM_inherit(ctx->param, param);
2607
0
}
2608
2609
X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(X509_STORE_CTX *ctx)
2610
0
{
2611
0
    return ctx->param;
2612
0
}
2613
2614
void X509_STORE_CTX_set0_param(X509_STORE_CTX *ctx, X509_VERIFY_PARAM *param)
2615
0
{
2616
0
    if (ctx->param)
2617
0
        X509_VERIFY_PARAM_free(ctx->param);
2618
0
    ctx->param = param;
2619
0
}
2620
2621
IMPLEMENT_STACK_OF(X509)
2622
2623
IMPLEMENT_ASN1_SET_OF(X509)
2624
2625
IMPLEMENT_STACK_OF(X509_NAME)
2626
2627
IMPLEMENT_STACK_OF(X509_ATTRIBUTE)
2628
2629
IMPLEMENT_ASN1_SET_OF(X509_ATTRIBUTE)