Coverage Report

Created: 2023-06-08 06:41

/src/openssl111/crypto/x509v3/v3_purp.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdio.h>
11
#include "internal/cryptlib.h"
12
#include "internal/numbers.h"
13
#include <openssl/x509v3.h>
14
#include <openssl/x509_vfy.h>
15
#include "crypto/x509.h"
16
#include "../x509/x509_local.h" /* for x509_signing_allowed() */
17
#include "internal/tsan_assist.h"
18
19
static void x509v3_cache_extensions(X509 *x);
20
21
static int check_ssl_ca(const X509 *x);
22
static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
23
                                    int ca);
24
static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
25
                                    int ca);
26
static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
27
                                       int ca);
28
static int purpose_smime(const X509 *x, int ca);
29
static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
30
                                    int ca);
31
static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
32
                                       int ca);
33
static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
34
                                  int ca);
35
static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
36
                                        int ca);
37
static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
38
static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
39
40
static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b);
41
static void xptable_free(X509_PURPOSE *p);
42
43
static X509_PURPOSE xstandard[] = {
44
    {X509_PURPOSE_SSL_CLIENT, X509_TRUST_SSL_CLIENT, 0,
45
     check_purpose_ssl_client, "SSL client", "sslclient", NULL},
46
    {X509_PURPOSE_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
47
     check_purpose_ssl_server, "SSL server", "sslserver", NULL},
48
    {X509_PURPOSE_NS_SSL_SERVER, X509_TRUST_SSL_SERVER, 0,
49
     check_purpose_ns_ssl_server, "Netscape SSL server", "nssslserver", NULL},
50
    {X509_PURPOSE_SMIME_SIGN, X509_TRUST_EMAIL, 0, check_purpose_smime_sign,
51
     "S/MIME signing", "smimesign", NULL},
52
    {X509_PURPOSE_SMIME_ENCRYPT, X509_TRUST_EMAIL, 0,
53
     check_purpose_smime_encrypt, "S/MIME encryption", "smimeencrypt", NULL},
54
    {X509_PURPOSE_CRL_SIGN, X509_TRUST_COMPAT, 0, check_purpose_crl_sign,
55
     "CRL signing", "crlsign", NULL},
56
    {X509_PURPOSE_ANY, X509_TRUST_DEFAULT, 0, no_check, "Any Purpose", "any",
57
     NULL},
58
    {X509_PURPOSE_OCSP_HELPER, X509_TRUST_COMPAT, 0, ocsp_helper,
59
     "OCSP helper", "ocsphelper", NULL},
60
    {X509_PURPOSE_TIMESTAMP_SIGN, X509_TRUST_TSA, 0,
61
     check_purpose_timestamp_sign, "Time Stamp signing", "timestampsign",
62
     NULL},
63
};
64
65
0
#define X509_PURPOSE_COUNT OSSL_NELEM(xstandard)
66
67
static STACK_OF(X509_PURPOSE) *xptable = NULL;
68
69
static int xp_cmp(const X509_PURPOSE *const *a, const X509_PURPOSE *const *b)
70
0
{
71
0
    return (*a)->purpose - (*b)->purpose;
72
0
}
73
74
/*
75
 * As much as I'd like to make X509_check_purpose use a "const" X509* I
76
 * really can't because it does recalculate hashes and do other non-const
77
 * things.
78
 */
79
int X509_check_purpose(X509 *x, int id, int ca)
80
28.6k
{
81
28.6k
    int idx;
82
28.6k
    const X509_PURPOSE *pt;
83
84
28.6k
    x509v3_cache_extensions(x);
85
28.6k
    if (x->ex_flags & EXFLAG_INVALID)
86
0
        return -1;
87
88
    /* Return if side-effect only call */
89
28.6k
    if (id == -1)
90
28.6k
        return 1;
91
0
    idx = X509_PURPOSE_get_by_id(id);
92
0
    if (idx == -1)
93
0
        return -1;
94
0
    pt = X509_PURPOSE_get0(idx);
95
0
    return pt->check_purpose(pt, x, ca);
96
0
}
97
98
int X509_PURPOSE_set(int *p, int purpose)
99
0
{
100
0
    if (X509_PURPOSE_get_by_id(purpose) == -1) {
101
0
        X509V3err(X509V3_F_X509_PURPOSE_SET, X509V3_R_INVALID_PURPOSE);
102
0
        return 0;
103
0
    }
104
0
    *p = purpose;
105
0
    return 1;
106
0
}
107
108
int X509_PURPOSE_get_count(void)
109
0
{
110
0
    if (!xptable)
111
0
        return X509_PURPOSE_COUNT;
112
0
    return sk_X509_PURPOSE_num(xptable) + X509_PURPOSE_COUNT;
113
0
}
114
115
X509_PURPOSE *X509_PURPOSE_get0(int idx)
116
3.24k
{
117
3.24k
    if (idx < 0)
118
3.24k
        return NULL;
119
0
    if (idx < (int)X509_PURPOSE_COUNT)
120
0
        return xstandard + idx;
121
0
    return sk_X509_PURPOSE_value(xptable, idx - X509_PURPOSE_COUNT);
122
0
}
123
124
int X509_PURPOSE_get_by_sname(const char *sname)
125
0
{
126
0
    int i;
127
0
    X509_PURPOSE *xptmp;
128
0
    for (i = 0; i < X509_PURPOSE_get_count(); i++) {
129
0
        xptmp = X509_PURPOSE_get0(i);
130
0
        if (strcmp(xptmp->sname, sname) == 0)
131
0
            return i;
132
0
    }
133
0
    return -1;
134
0
}
135
136
int X509_PURPOSE_get_by_id(int purpose)
137
3.24k
{
138
3.24k
    X509_PURPOSE tmp;
139
3.24k
    int idx;
140
141
3.24k
    if ((purpose >= X509_PURPOSE_MIN) && (purpose <= X509_PURPOSE_MAX))
142
0
        return purpose - X509_PURPOSE_MIN;
143
3.24k
    if (xptable == NULL)
144
3.24k
        return -1;
145
0
    tmp.purpose = purpose;
146
0
    idx = sk_X509_PURPOSE_find(xptable, &tmp);
147
0
    if (idx < 0)
148
0
        return -1;
149
0
    return idx + X509_PURPOSE_COUNT;
150
0
}
151
152
int X509_PURPOSE_add(int id, int trust, int flags,
153
                     int (*ck) (const X509_PURPOSE *, const X509 *, int),
154
                     const char *name, const char *sname, void *arg)
155
0
{
156
0
    int idx;
157
0
    X509_PURPOSE *ptmp;
158
    /*
159
     * This is set according to what we change: application can't set it
160
     */
161
0
    flags &= ~X509_PURPOSE_DYNAMIC;
162
    /* This will always be set for application modified trust entries */
163
0
    flags |= X509_PURPOSE_DYNAMIC_NAME;
164
    /* Get existing entry if any */
165
0
    idx = X509_PURPOSE_get_by_id(id);
166
    /* Need a new entry */
167
0
    if (idx == -1) {
168
0
        if ((ptmp = OPENSSL_malloc(sizeof(*ptmp))) == NULL) {
169
0
            X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
170
0
            return 0;
171
0
        }
172
0
        ptmp->flags = X509_PURPOSE_DYNAMIC;
173
0
    } else
174
0
        ptmp = X509_PURPOSE_get0(idx);
175
176
    /* OPENSSL_free existing name if dynamic */
177
0
    if (ptmp->flags & X509_PURPOSE_DYNAMIC_NAME) {
178
0
        OPENSSL_free(ptmp->name);
179
0
        OPENSSL_free(ptmp->sname);
180
0
    }
181
    /* dup supplied name */
182
0
    ptmp->name = OPENSSL_strdup(name);
183
0
    ptmp->sname = OPENSSL_strdup(sname);
184
0
    if (!ptmp->name || !ptmp->sname) {
185
0
        X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
186
0
        goto err;
187
0
    }
188
    /* Keep the dynamic flag of existing entry */
189
0
    ptmp->flags &= X509_PURPOSE_DYNAMIC;
190
    /* Set all other flags */
191
0
    ptmp->flags |= flags;
192
193
0
    ptmp->purpose = id;
194
0
    ptmp->trust = trust;
195
0
    ptmp->check_purpose = ck;
196
0
    ptmp->usr_data = arg;
197
198
    /* If its a new entry manage the dynamic table */
199
0
    if (idx == -1) {
200
0
        if (xptable == NULL
201
0
            && (xptable = sk_X509_PURPOSE_new(xp_cmp)) == NULL) {
202
0
            X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
203
0
            goto err;
204
0
        }
205
0
        if (!sk_X509_PURPOSE_push(xptable, ptmp)) {
206
0
            X509V3err(X509V3_F_X509_PURPOSE_ADD, ERR_R_MALLOC_FAILURE);
207
0
            goto err;
208
0
        }
209
0
    }
210
0
    return 1;
211
0
 err:
212
0
    if (idx == -1) {
213
0
        OPENSSL_free(ptmp->name);
214
0
        OPENSSL_free(ptmp->sname);
215
0
        OPENSSL_free(ptmp);
216
0
    }
217
0
    return 0;
218
0
}
219
220
static void xptable_free(X509_PURPOSE *p)
221
0
{
222
0
    if (!p)
223
0
        return;
224
0
    if (p->flags & X509_PURPOSE_DYNAMIC) {
225
0
        if (p->flags & X509_PURPOSE_DYNAMIC_NAME) {
226
0
            OPENSSL_free(p->name);
227
0
            OPENSSL_free(p->sname);
228
0
        }
229
0
        OPENSSL_free(p);
230
0
    }
231
0
}
232
233
void X509_PURPOSE_cleanup(void)
234
0
{
235
0
    sk_X509_PURPOSE_pop_free(xptable, xptable_free);
236
0
    xptable = NULL;
237
0
}
238
239
int X509_PURPOSE_get_id(const X509_PURPOSE *xp)
240
0
{
241
0
    return xp->purpose;
242
0
}
243
244
char *X509_PURPOSE_get0_name(const X509_PURPOSE *xp)
245
0
{
246
0
    return xp->name;
247
0
}
248
249
char *X509_PURPOSE_get0_sname(const X509_PURPOSE *xp)
250
0
{
251
0
    return xp->sname;
252
0
}
253
254
int X509_PURPOSE_get_trust(const X509_PURPOSE *xp)
255
0
{
256
0
    return xp->trust;
257
0
}
258
259
static int nid_cmp(const int *a, const int *b)
260
31.2k
{
261
31.2k
    return *a - *b;
262
31.2k
}
263
264
DECLARE_OBJ_BSEARCH_CMP_FN(int, int, nid);
265
IMPLEMENT_OBJ_BSEARCH_CMP_FN(int, int, nid);
266
267
int X509_supported_extension(X509_EXTENSION *ex)
268
12.4k
{
269
    /*
270
     * This table is a list of the NIDs of supported extensions: that is
271
     * those which are used by the verify process. If an extension is
272
     * critical and doesn't appear in this list then the verify process will
273
     * normally reject the certificate. The list must be kept in numerical
274
     * order because it will be searched using bsearch.
275
     */
276
277
12.4k
    static const int supported_nids[] = {
278
12.4k
        NID_netscape_cert_type, /* 71 */
279
12.4k
        NID_key_usage,          /* 83 */
280
12.4k
        NID_subject_alt_name,   /* 85 */
281
12.4k
        NID_basic_constraints,  /* 87 */
282
12.4k
        NID_certificate_policies, /* 89 */
283
12.4k
        NID_crl_distribution_points, /* 103 */
284
12.4k
        NID_ext_key_usage,      /* 126 */
285
12.4k
#ifndef OPENSSL_NO_RFC3779
286
12.4k
        NID_sbgp_ipAddrBlock,   /* 290 */
287
12.4k
        NID_sbgp_autonomousSysNum, /* 291 */
288
12.4k
#endif
289
12.4k
        NID_policy_constraints, /* 401 */
290
12.4k
        NID_proxyCertInfo,      /* 663 */
291
12.4k
        NID_name_constraints,   /* 666 */
292
12.4k
        NID_policy_mappings,    /* 747 */
293
        NID_inhibit_any_policy  /* 748 */
294
12.4k
    };
295
296
12.4k
    int ex_nid = OBJ_obj2nid(X509_EXTENSION_get_object(ex));
297
298
12.4k
    if (ex_nid == NID_undef)
299
0
        return 0;
300
301
12.4k
    if (OBJ_bsearch_nid(&ex_nid, supported_nids, OSSL_NELEM(supported_nids)))
302
12.4k
        return 1;
303
0
    return 0;
304
12.4k
}
305
306
static int setup_dp(X509 *x, DIST_POINT *dp)
307
0
{
308
0
    X509_NAME *iname = NULL;
309
0
    int i;
310
311
0
    if (dp->reasons) {
312
0
        if (dp->reasons->length > 0)
313
0
            dp->dp_reasons = dp->reasons->data[0];
314
0
        if (dp->reasons->length > 1)
315
0
            dp->dp_reasons |= (dp->reasons->data[1] << 8);
316
0
        dp->dp_reasons &= CRLDP_ALL_REASONS;
317
0
    } else
318
0
        dp->dp_reasons = CRLDP_ALL_REASONS;
319
0
    if (!dp->distpoint || (dp->distpoint->type != 1))
320
0
        return 1;
321
0
    for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++) {
322
0
        GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
323
0
        if (gen->type == GEN_DIRNAME) {
324
0
            iname = gen->d.directoryName;
325
0
            break;
326
0
        }
327
0
    }
328
0
    if (!iname)
329
0
        iname = X509_get_issuer_name(x);
330
331
0
    return DIST_POINT_set_dpname(dp->distpoint, iname);
332
0
}
333
334
static int setup_crldp(X509 *x)
335
18.7k
{
336
18.7k
    int i;
337
338
18.7k
    x->crldp = X509_get_ext_d2i(x, NID_crl_distribution_points, &i, NULL);
339
18.7k
    if (x->crldp == NULL && i != -1)
340
0
        return 0;
341
18.7k
    for (i = 0; i < sk_DIST_POINT_num(x->crldp); i++) {
342
0
        if (!setup_dp(x, sk_DIST_POINT_value(x->crldp, i)))
343
0
            return 0;
344
0
    }
345
18.7k
    return 1;
346
18.7k
}
347
348
/* Check that issuer public key algorithm matches subject signature algorithm */
349
static int check_sig_alg_match(const EVP_PKEY *pkey, const X509 *subject)
350
18.7k
{
351
18.7k
    int pkey_sig_nid, subj_sig_nid;
352
353
18.7k
    if (pkey == NULL)
354
0
        return X509_V_ERR_NO_ISSUER_PUBLIC_KEY;
355
18.7k
    if (OBJ_find_sigid_algs(EVP_PKEY_base_id(pkey),
356
18.7k
                            NULL, &pkey_sig_nid) == 0)
357
18.7k
        pkey_sig_nid = EVP_PKEY_base_id(pkey);
358
18.7k
    if (OBJ_find_sigid_algs(OBJ_obj2nid(subject->cert_info.signature.algorithm),
359
18.7k
                            NULL, &subj_sig_nid) == 0)
360
0
        return X509_V_ERR_UNSUPPORTED_SIGNATURE_ALGORITHM;
361
18.7k
    if (pkey_sig_nid != EVP_PKEY_type(subj_sig_nid))
362
0
        return X509_V_ERR_SIGNATURE_ALGORITHM_MISMATCH;
363
18.7k
    return X509_V_OK;
364
18.7k
}
365
366
0
#define V1_ROOT (EXFLAG_V1|EXFLAG_SS)
367
#define ku_reject(x, usage) \
368
0
        (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
369
#define xku_reject(x, usage) \
370
0
        (((x)->ex_flags & EXFLAG_XKUSAGE) && !((x)->ex_xkusage & (usage)))
371
#define ns_reject(x, usage) \
372
0
        (((x)->ex_flags & EXFLAG_NSCERT) && !((x)->ex_nscert & (usage)))
373
374
static void x509v3_cache_extensions(X509 *x)
375
28.6k
{
376
28.6k
    BASIC_CONSTRAINTS *bs;
377
28.6k
    PROXY_CERT_INFO_EXTENSION *pci;
378
28.6k
    ASN1_BIT_STRING *usage;
379
28.6k
    ASN1_BIT_STRING *ns;
380
28.6k
    EXTENDED_KEY_USAGE *extusage;
381
28.6k
    X509_EXTENSION *ex;
382
28.6k
    int i;
383
384
28.6k
#ifdef tsan_ld_acq
385
    /* fast lock-free check, see end of the function for details. */
386
28.6k
    if (tsan_ld_acq((TSAN_QUALIFIER int *)&x->ex_cached))
387
9.88k
        return;
388
18.7k
#endif
389
390
18.7k
    CRYPTO_THREAD_write_lock(x->lock);
391
18.7k
    if (x->ex_flags & EXFLAG_SET) {
392
0
        CRYPTO_THREAD_unlock(x->lock);
393
0
        return;
394
0
    }
395
396
18.7k
    if (!X509_digest(x, EVP_sha1(), x->sha1_hash, NULL))
397
0
        x->ex_flags |= (EXFLAG_NO_FINGERPRINT | EXFLAG_INVALID);
398
399
    /* V1 should mean no extensions ... */
400
18.7k
    if (!X509_get_version(x))
401
0
        x->ex_flags |= EXFLAG_V1;
402
    /* Handle basic constraints */
403
18.7k
    if ((bs = X509_get_ext_d2i(x, NID_basic_constraints, &i, NULL))) {
404
18.7k
        if (bs->ca)
405
0
            x->ex_flags |= EXFLAG_CA;
406
18.7k
        if (bs->pathlen) {
407
0
            if (bs->pathlen->type == V_ASN1_NEG_INTEGER) {
408
0
                x->ex_flags |= EXFLAG_INVALID;
409
0
                x->ex_pathlen = 0;
410
0
            } else {
411
0
                x->ex_pathlen = ASN1_INTEGER_get(bs->pathlen);
412
0
                if (!bs->ca && x->ex_pathlen != 0) {
413
0
                    x->ex_flags |= EXFLAG_INVALID;
414
0
                    x->ex_pathlen = 0;
415
0
                }
416
0
            }
417
0
        } else
418
18.7k
            x->ex_pathlen = -1;
419
18.7k
        BASIC_CONSTRAINTS_free(bs);
420
18.7k
        x->ex_flags |= EXFLAG_BCONS;
421
18.7k
    } else if (i != -1) {
422
0
        x->ex_flags |= EXFLAG_INVALID;
423
0
    }
424
    /* Handle proxy certificates */
425
18.7k
    if ((pci = X509_get_ext_d2i(x, NID_proxyCertInfo, &i, NULL))) {
426
0
        if (x->ex_flags & EXFLAG_CA
427
0
            || X509_get_ext_by_NID(x, NID_subject_alt_name, -1) >= 0
428
0
            || X509_get_ext_by_NID(x, NID_issuer_alt_name, -1) >= 0) {
429
0
            x->ex_flags |= EXFLAG_INVALID;
430
0
        }
431
0
        if (pci->pcPathLengthConstraint) {
432
0
            x->ex_pcpathlen = ASN1_INTEGER_get(pci->pcPathLengthConstraint);
433
0
        } else
434
0
            x->ex_pcpathlen = -1;
435
0
        PROXY_CERT_INFO_EXTENSION_free(pci);
436
0
        x->ex_flags |= EXFLAG_PROXY;
437
18.7k
    } else if (i != -1) {
438
0
        x->ex_flags |= EXFLAG_INVALID;
439
0
    }
440
    /* Handle key usage */
441
18.7k
    if ((usage = X509_get_ext_d2i(x, NID_key_usage, &i, NULL))) {
442
18.7k
        if (usage->length > 0) {
443
18.7k
            x->ex_kusage = usage->data[0];
444
18.7k
            if (usage->length > 1)
445
0
                x->ex_kusage |= usage->data[1] << 8;
446
18.7k
        } else
447
0
            x->ex_kusage = 0;
448
18.7k
        x->ex_flags |= EXFLAG_KUSAGE;
449
18.7k
        ASN1_BIT_STRING_free(usage);
450
18.7k
    } else if (i != -1) {
451
0
        x->ex_flags |= EXFLAG_INVALID;
452
0
    }
453
18.7k
    x->ex_xkusage = 0;
454
18.7k
    if ((extusage = X509_get_ext_d2i(x, NID_ext_key_usage, &i, NULL))) {
455
18.7k
        x->ex_flags |= EXFLAG_XKUSAGE;
456
37.4k
        for (i = 0; i < sk_ASN1_OBJECT_num(extusage); i++) {
457
18.7k
            switch (OBJ_obj2nid(sk_ASN1_OBJECT_value(extusage, i))) {
458
18.7k
            case NID_server_auth:
459
18.7k
                x->ex_xkusage |= XKU_SSL_SERVER;
460
18.7k
                break;
461
462
0
            case NID_client_auth:
463
0
                x->ex_xkusage |= XKU_SSL_CLIENT;
464
0
                break;
465
466
0
            case NID_email_protect:
467
0
                x->ex_xkusage |= XKU_SMIME;
468
0
                break;
469
470
0
            case NID_code_sign:
471
0
                x->ex_xkusage |= XKU_CODE_SIGN;
472
0
                break;
473
474
0
            case NID_ms_sgc:
475
0
            case NID_ns_sgc:
476
0
                x->ex_xkusage |= XKU_SGC;
477
0
                break;
478
479
0
            case NID_OCSP_sign:
480
0
                x->ex_xkusage |= XKU_OCSP_SIGN;
481
0
                break;
482
483
0
            case NID_time_stamp:
484
0
                x->ex_xkusage |= XKU_TIMESTAMP;
485
0
                break;
486
487
0
            case NID_dvcs:
488
0
                x->ex_xkusage |= XKU_DVCS;
489
0
                break;
490
491
0
            case NID_anyExtendedKeyUsage:
492
0
                x->ex_xkusage |= XKU_ANYEKU;
493
0
                break;
494
18.7k
            }
495
18.7k
        }
496
18.7k
        sk_ASN1_OBJECT_pop_free(extusage, ASN1_OBJECT_free);
497
18.7k
    } else if (i != -1) {
498
0
        x->ex_flags |= EXFLAG_INVALID;
499
0
    }
500
501
18.7k
    if ((ns = X509_get_ext_d2i(x, NID_netscape_cert_type, &i, NULL))) {
502
0
        if (ns->length > 0)
503
0
            x->ex_nscert = ns->data[0];
504
0
        else
505
0
            x->ex_nscert = 0;
506
0
        x->ex_flags |= EXFLAG_NSCERT;
507
0
        ASN1_BIT_STRING_free(ns);
508
18.7k
    } else if (i != -1) {
509
0
        x->ex_flags |= EXFLAG_INVALID;
510
0
    }
511
18.7k
    x->skid = X509_get_ext_d2i(x, NID_subject_key_identifier, &i, NULL);
512
18.7k
    if (x->skid == NULL && i != -1)
513
0
        x->ex_flags |= EXFLAG_INVALID;
514
18.7k
    x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, &i, NULL);
515
18.7k
    if (x->akid == NULL && i != -1)
516
0
        x->ex_flags |= EXFLAG_INVALID;
517
    /* Does subject name match issuer ? */
518
18.7k
    if (!X509_NAME_cmp(X509_get_subject_name(x), X509_get_issuer_name(x))) {
519
18.7k
        x->ex_flags |= EXFLAG_SI; /* cert is self-issued */
520
        if (X509_check_akid(x, x->akid) == X509_V_OK /* SKID matches AKID */
521
                /* .. and the signature alg matches the PUBKEY alg: */
522
18.7k
                && check_sig_alg_match(X509_get0_pubkey(x), x) == X509_V_OK)
523
18.7k
            x->ex_flags |= EXFLAG_SS; /* indicate self-signed */
524
18.7k
    }
525
18.7k
    x->altname = X509_get_ext_d2i(x, NID_subject_alt_name, &i, NULL);
526
18.7k
    if (x->altname == NULL && i != -1)
527
0
        x->ex_flags |= EXFLAG_INVALID;
528
18.7k
    x->nc = X509_get_ext_d2i(x, NID_name_constraints, &i, NULL);
529
18.7k
    if (x->nc == NULL && i != -1)
530
0
        x->ex_flags |= EXFLAG_INVALID;
531
18.7k
    if (!setup_crldp(x))
532
0
        x->ex_flags |= EXFLAG_INVALID;
533
534
18.7k
#ifndef OPENSSL_NO_RFC3779
535
18.7k
    x->rfc3779_addr = X509_get_ext_d2i(x, NID_sbgp_ipAddrBlock, &i, NULL);
536
18.7k
    if (x->rfc3779_addr == NULL && i != -1)
537
0
        x->ex_flags |= EXFLAG_INVALID;
538
18.7k
    x->rfc3779_asid = X509_get_ext_d2i(x, NID_sbgp_autonomousSysNum, &i, NULL);
539
18.7k
    if (x->rfc3779_asid == NULL && i != -1)
540
0
        x->ex_flags |= EXFLAG_INVALID;
541
18.7k
#endif
542
93.6k
    for (i = 0; i < X509_get_ext_count(x); i++) {
543
74.8k
        ex = X509_get_ext(x, i);
544
74.8k
        if (OBJ_obj2nid(X509_EXTENSION_get_object(ex))
545
74.8k
            == NID_freshest_crl)
546
0
            x->ex_flags |= EXFLAG_FRESHEST;
547
74.8k
        if (!X509_EXTENSION_get_critical(ex))
548
62.4k
            continue;
549
12.4k
        if (!X509_supported_extension(ex)) {
550
0
            x->ex_flags |= EXFLAG_CRITICAL;
551
0
            break;
552
0
        }
553
12.4k
    }
554
18.7k
    x509_init_sig_info(x);
555
18.7k
    x->ex_flags |= EXFLAG_SET;
556
18.7k
#ifdef tsan_st_rel
557
18.7k
    tsan_st_rel((TSAN_QUALIFIER int *)&x->ex_cached, 1);
558
    /*
559
     * Above store triggers fast lock-free check in the beginning of the
560
     * function. But one has to ensure that the structure is "stable", i.e.
561
     * all stores are visible on all processors. Hence the release fence.
562
     */
563
18.7k
#endif
564
18.7k
    CRYPTO_THREAD_unlock(x->lock);
565
18.7k
}
566
567
/*-
568
 * CA checks common to all purposes
569
 * return codes:
570
 * 0 not a CA
571
 * 1 is a CA
572
 * 2 Only possible in older versions of openSSL when basicConstraints are absent
573
 *   new versions will not return this value. May be a CA
574
 * 3 basicConstraints absent but self signed V1.
575
 * 4 basicConstraints absent but keyUsage present and keyCertSign asserted.
576
 * 5 Netscape specific CA Flags present
577
 */
578
579
static int check_ca(const X509 *x)
580
0
{
581
    /* keyUsage if present should allow cert signing */
582
0
    if (ku_reject(x, KU_KEY_CERT_SIGN))
583
0
        return 0;
584
0
    if (x->ex_flags & EXFLAG_BCONS) {
585
0
        if (x->ex_flags & EXFLAG_CA)
586
0
            return 1;
587
        /* If basicConstraints says not a CA then say so */
588
0
        else
589
0
            return 0;
590
0
    } else {
591
        /* we support V1 roots for...  uh, I don't really know why. */
592
0
        if ((x->ex_flags & V1_ROOT) == V1_ROOT)
593
0
            return 3;
594
        /*
595
         * If key usage present it must have certSign so tolerate it
596
         */
597
0
        else if (x->ex_flags & EXFLAG_KUSAGE)
598
0
            return 4;
599
        /* Older certificates could have Netscape-specific CA types */
600
0
        else if (x->ex_flags & EXFLAG_NSCERT && x->ex_nscert & NS_ANY_CA)
601
0
            return 5;
602
        /* can this still be regarded a CA certificate?  I doubt it */
603
0
        return 0;
604
0
    }
605
0
}
606
607
void X509_set_proxy_flag(X509 *x)
608
0
{
609
0
    x->ex_flags |= EXFLAG_PROXY;
610
0
}
611
612
void X509_set_proxy_pathlen(X509 *x, long l)
613
0
{
614
0
    x->ex_pcpathlen = l;
615
0
}
616
617
int X509_check_ca(X509 *x)
618
0
{
619
0
    x509v3_cache_extensions(x);
620
621
0
    return check_ca(x);
622
0
}
623
624
/* Check SSL CA: common checks for SSL client and server */
625
static int check_ssl_ca(const X509 *x)
626
0
{
627
0
    int ca_ret;
628
0
    ca_ret = check_ca(x);
629
0
    if (!ca_ret)
630
0
        return 0;
631
    /* check nsCertType if present */
632
0
    if (ca_ret != 5 || x->ex_nscert & NS_SSL_CA)
633
0
        return ca_ret;
634
0
    else
635
0
        return 0;
636
0
}
637
638
static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
639
                                    int ca)
640
0
{
641
0
    if (xku_reject(x, XKU_SSL_CLIENT))
642
0
        return 0;
643
0
    if (ca)
644
0
        return check_ssl_ca(x);
645
    /* We need to do digital signatures or key agreement */
646
0
    if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_KEY_AGREEMENT))
647
0
        return 0;
648
    /* nsCertType if present should allow SSL client use */
649
0
    if (ns_reject(x, NS_SSL_CLIENT))
650
0
        return 0;
651
0
    return 1;
652
0
}
653
654
/*
655
 * Key usage needed for TLS/SSL server: digital signature, encipherment or
656
 * key agreement. The ssl code can check this more thoroughly for individual
657
 * key types.
658
 */
659
#define KU_TLS \
660
        KU_DIGITAL_SIGNATURE|KU_KEY_ENCIPHERMENT|KU_KEY_AGREEMENT
661
662
static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x,
663
                                    int ca)
664
0
{
665
0
    if (xku_reject(x, XKU_SSL_SERVER | XKU_SGC))
666
0
        return 0;
667
0
    if (ca)
668
0
        return check_ssl_ca(x);
669
670
0
    if (ns_reject(x, NS_SSL_SERVER))
671
0
        return 0;
672
0
    if (ku_reject(x, KU_TLS))
673
0
        return 0;
674
675
0
    return 1;
676
677
0
}
678
679
static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x,
680
                                       int ca)
681
0
{
682
0
    int ret;
683
0
    ret = check_purpose_ssl_server(xp, x, ca);
684
0
    if (!ret || ca)
685
0
        return ret;
686
    /* We need to encipher or Netscape complains */
687
0
    if (ku_reject(x, KU_KEY_ENCIPHERMENT))
688
0
        return 0;
689
0
    return ret;
690
0
}
691
692
/* common S/MIME checks */
693
static int purpose_smime(const X509 *x, int ca)
694
0
{
695
0
    if (xku_reject(x, XKU_SMIME))
696
0
        return 0;
697
0
    if (ca) {
698
0
        int ca_ret;
699
0
        ca_ret = check_ca(x);
700
0
        if (!ca_ret)
701
0
            return 0;
702
        /* check nsCertType if present */
703
0
        if (ca_ret != 5 || x->ex_nscert & NS_SMIME_CA)
704
0
            return ca_ret;
705
0
        else
706
0
            return 0;
707
0
    }
708
0
    if (x->ex_flags & EXFLAG_NSCERT) {
709
0
        if (x->ex_nscert & NS_SMIME)
710
0
            return 1;
711
        /* Workaround for some buggy certificates */
712
0
        if (x->ex_nscert & NS_SSL_CLIENT)
713
0
            return 2;
714
0
        return 0;
715
0
    }
716
0
    return 1;
717
0
}
718
719
static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x,
720
                                    int ca)
721
0
{
722
0
    int ret;
723
0
    ret = purpose_smime(x, ca);
724
0
    if (!ret || ca)
725
0
        return ret;
726
0
    if (ku_reject(x, KU_DIGITAL_SIGNATURE | KU_NON_REPUDIATION))
727
0
        return 0;
728
0
    return ret;
729
0
}
730
731
static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x,
732
                                       int ca)
733
0
{
734
0
    int ret;
735
0
    ret = purpose_smime(x, ca);
736
0
    if (!ret || ca)
737
0
        return ret;
738
0
    if (ku_reject(x, KU_KEY_ENCIPHERMENT))
739
0
        return 0;
740
0
    return ret;
741
0
}
742
743
static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x,
744
                                  int ca)
745
0
{
746
0
    if (ca) {
747
0
        int ca_ret;
748
0
        if ((ca_ret = check_ca(x)) != 2)
749
0
            return ca_ret;
750
0
        else
751
0
            return 0;
752
0
    }
753
0
    if (ku_reject(x, KU_CRL_SIGN))
754
0
        return 0;
755
0
    return 1;
756
0
}
757
758
/*
759
 * OCSP helper: this is *not* a full OCSP check. It just checks that each CA
760
 * is valid. Additional checks must be made on the chain.
761
 */
762
763
static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca)
764
0
{
765
    /*
766
     * Must be a valid CA.  Should we really support the "I don't know" value
767
     * (2)?
768
     */
769
0
    if (ca)
770
0
        return check_ca(x);
771
    /* leaf certificate is checked in OCSP_verify() */
772
0
    return 1;
773
0
}
774
775
static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x,
776
                                        int ca)
777
0
{
778
0
    int i_ext;
779
780
    /* If ca is true we must return if this is a valid CA certificate. */
781
0
    if (ca)
782
0
        return check_ca(x);
783
784
    /*
785
     * Check the optional key usage field:
786
     * if Key Usage is present, it must be one of digitalSignature
787
     * and/or nonRepudiation (other values are not consistent and shall
788
     * be rejected).
789
     */
790
0
    if ((x->ex_flags & EXFLAG_KUSAGE)
791
0
        && ((x->ex_kusage & ~(KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE)) ||
792
0
            !(x->ex_kusage & (KU_NON_REPUDIATION | KU_DIGITAL_SIGNATURE))))
793
0
        return 0;
794
795
    /* Only time stamp key usage is permitted and it's required. */
796
0
    if (!(x->ex_flags & EXFLAG_XKUSAGE) || x->ex_xkusage != XKU_TIMESTAMP)
797
0
        return 0;
798
799
    /* Extended Key Usage MUST be critical */
800
0
    i_ext = X509_get_ext_by_NID(x, NID_ext_key_usage, -1);
801
0
    if (i_ext >= 0) {
802
0
        X509_EXTENSION *ext = X509_get_ext((X509 *)x, i_ext);
803
0
        if (!X509_EXTENSION_get_critical(ext))
804
0
            return 0;
805
0
    }
806
807
0
    return 1;
808
0
}
809
810
static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca)
811
0
{
812
0
    return 1;
813
0
}
814
815
/*-
816
 * Check if certificate I<issuer> is allowed to issue certificate I<subject>
817
 * according to the B<keyUsage> field of I<issuer> if present
818
 * depending on any proxyCertInfo extension of I<subject>.
819
 * Returns 0 for OK, or positive for reason for rejection
820
 * where reason codes match those for X509_verify_cert().
821
 */
822
int x509_signing_allowed(const X509 *issuer, const X509 *subject)
823
0
{
824
0
    if (subject->ex_flags & EXFLAG_PROXY) {
825
0
        if (ku_reject(issuer, KU_DIGITAL_SIGNATURE))
826
0
            return X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE;
827
0
    } else if (ku_reject(issuer, KU_KEY_CERT_SIGN))
828
0
        return X509_V_ERR_KEYUSAGE_NO_CERTSIGN;
829
0
    return X509_V_OK;
830
0
}
831
832
/*-
833
 * Various checks to see if one certificate issued the second.
834
 * This can be used to prune a set of possible issuer certificates
835
 * which have been looked up using some simple method such as by
836
 * subject name.
837
 * These are:
838
 * 1. Check issuer_name(subject) == subject_name(issuer)
839
 * 2. If akid(subject) exists check it matches issuer
840
 * 3. Check that issuer public key algorithm matches subject signature algorithm
841
 * 4. If key_usage(issuer) exists check it supports certificate signing
842
 * returns 0 for OK, positive for reason for mismatch, reasons match
843
 * codes for X509_verify_cert()
844
 */
845
846
int X509_check_issued(X509 *issuer, X509 *subject)
847
0
{
848
0
    int ret;
849
850
0
    if ((ret = x509_likely_issued(issuer, subject)) != X509_V_OK)
851
0
        return ret;
852
0
    return x509_signing_allowed(issuer, subject);
853
0
}
854
855
/* do the checks 1., 2., and 3. as described above for X509_check_issued() */
856
int x509_likely_issued(X509 *issuer, X509 *subject)
857
0
{
858
0
    if (X509_NAME_cmp(X509_get_subject_name(issuer),
859
0
                      X509_get_issuer_name(subject)))
860
0
        return X509_V_ERR_SUBJECT_ISSUER_MISMATCH;
861
862
0
    x509v3_cache_extensions(issuer);
863
0
    if (issuer->ex_flags & EXFLAG_INVALID)
864
0
        return X509_V_ERR_UNSPECIFIED;
865
0
    x509v3_cache_extensions(subject);
866
0
    if (subject->ex_flags & EXFLAG_INVALID)
867
0
        return X509_V_ERR_UNSPECIFIED;
868
869
0
    if (subject->akid) {
870
0
        int ret = X509_check_akid(issuer, subject->akid);
871
0
        if (ret != X509_V_OK)
872
0
            return ret;
873
0
    }
874
875
    /* check if the subject signature alg matches the issuer's PUBKEY alg */
876
0
    return check_sig_alg_match(X509_get0_pubkey(issuer), subject);
877
0
}
878
879
int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid)
880
18.7k
{
881
882
18.7k
    if (!akid)
883
18.7k
        return X509_V_OK;
884
885
    /* Check key ids (if present) */
886
0
    if (akid->keyid && issuer->skid &&
887
0
        ASN1_OCTET_STRING_cmp(akid->keyid, issuer->skid))
888
0
        return X509_V_ERR_AKID_SKID_MISMATCH;
889
    /* Check serial number */
890
0
    if (akid->serial &&
891
0
        ASN1_INTEGER_cmp(X509_get_serialNumber(issuer), akid->serial))
892
0
        return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
893
    /* Check issuer name */
894
0
    if (akid->issuer) {
895
        /*
896
         * Ugh, for some peculiar reason AKID includes SEQUENCE OF
897
         * GeneralName. So look for a DirName. There may be more than one but
898
         * we only take any notice of the first.
899
         */
900
0
        GENERAL_NAMES *gens;
901
0
        GENERAL_NAME *gen;
902
0
        X509_NAME *nm = NULL;
903
0
        int i;
904
0
        gens = akid->issuer;
905
0
        for (i = 0; i < sk_GENERAL_NAME_num(gens); i++) {
906
0
            gen = sk_GENERAL_NAME_value(gens, i);
907
0
            if (gen->type == GEN_DIRNAME) {
908
0
                nm = gen->d.dirn;
909
0
                break;
910
0
            }
911
0
        }
912
0
        if (nm && X509_NAME_cmp(nm, X509_get_issuer_name(issuer)))
913
0
            return X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH;
914
0
    }
915
0
    return X509_V_OK;
916
0
}
917
918
uint32_t X509_get_extension_flags(X509 *x)
919
21.9k
{
920
    /* Call for side-effect of computing hash and caching extensions */
921
21.9k
    X509_check_purpose(x, -1, -1);
922
21.9k
    return x->ex_flags;
923
21.9k
}
924
925
uint32_t X509_get_key_usage(X509 *x)
926
2.79k
{
927
    /* Call for side-effect of computing hash and caching extensions */
928
2.79k
    if (X509_check_purpose(x, -1, -1) != 1)
929
0
        return 0;
930
2.79k
    if (x->ex_flags & EXFLAG_KUSAGE)
931
2.79k
        return x->ex_kusage;
932
0
    return UINT32_MAX;
933
2.79k
}
934
935
uint32_t X509_get_extended_key_usage(X509 *x)
936
0
{
937
    /* Call for side-effect of computing hash and caching extensions */
938
0
    if (X509_check_purpose(x, -1, -1) != 1)
939
0
        return 0;
940
0
    if (x->ex_flags & EXFLAG_XKUSAGE)
941
0
        return x->ex_xkusage;
942
0
    return UINT32_MAX;
943
0
}
944
945
const ASN1_OCTET_STRING *X509_get0_subject_key_id(X509 *x)
946
0
{
947
    /* Call for side-effect of computing hash and caching extensions */
948
0
    if (X509_check_purpose(x, -1, -1) != 1)
949
0
        return NULL;
950
0
    return x->skid;
951
0
}
952
953
const ASN1_OCTET_STRING *X509_get0_authority_key_id(X509 *x)
954
0
{
955
    /* Call for side-effect of computing hash and caching extensions */
956
0
    if (X509_check_purpose(x, -1, -1) != 1)
957
0
        return NULL;
958
0
    return (x->akid != NULL ? x->akid->keyid : NULL);
959
0
}
960
961
const GENERAL_NAMES *X509_get0_authority_issuer(X509 *x)
962
0
{
963
    /* Call for side-effect of computing hash and caching extensions */
964
0
    if (X509_check_purpose(x, -1, -1) != 1)
965
0
        return NULL;
966
0
    return (x->akid != NULL ? x->akid->issuer : NULL);
967
0
}
968
969
const ASN1_INTEGER *X509_get0_authority_serial(X509 *x)
970
0
{
971
    /* Call for side-effect of computing hash and caching extensions */
972
0
    if (X509_check_purpose(x, -1, -1) != 1)
973
0
        return NULL;
974
0
    return (x->akid != NULL ? x->akid->serial : NULL);
975
0
}
976
977
long X509_get_pathlen(X509 *x)
978
0
{
979
    /* Called for side effect of caching extensions */
980
0
    if (X509_check_purpose(x, -1, -1) != 1
981
0
            || (x->ex_flags & EXFLAG_BCONS) == 0)
982
0
        return -1;
983
0
    return x->ex_pathlen;
984
0
}
985
986
long X509_get_proxy_pathlen(X509 *x)
987
0
{
988
    /* Called for side effect of caching extensions */
989
0
    if (X509_check_purpose(x, -1, -1) != 1
990
0
            || (x->ex_flags & EXFLAG_PROXY) == 0)
991
0
        return -1;
992
0
    return x->ex_pcpathlen;
993
0
}