Coverage Report

Created: 2025-12-10 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/x509/x_x509.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdio.h>
11
#include "internal/cryptlib.h"
12
#include <openssl/evp.h>
13
#include <openssl/asn1t.h>
14
#include <openssl/x509.h>
15
#include <openssl/x509v3.h>
16
#include "crypto/x509.h"
17
18
ASN1_SEQUENCE_enc(X509_CINF, enc, 0) = {
19
    ASN1_EXP_OPT(X509_CINF, version, ASN1_INTEGER, 0),
20
    ASN1_EMBED(X509_CINF, serialNumber, ASN1_INTEGER),
21
    ASN1_EMBED(X509_CINF, signature, X509_ALGOR),
22
    ASN1_SIMPLE(X509_CINF, issuer, X509_NAME),
23
    ASN1_EMBED(X509_CINF, validity, X509_VAL),
24
    ASN1_SIMPLE(X509_CINF, subject, X509_NAME),
25
    ASN1_SIMPLE(X509_CINF, key, X509_PUBKEY),
26
    ASN1_IMP_OPT(X509_CINF, issuerUID, ASN1_BIT_STRING, 1),
27
    ASN1_IMP_OPT(X509_CINF, subjectUID, ASN1_BIT_STRING, 2),
28
    ASN1_EXP_SEQUENCE_OF_OPT(X509_CINF, extensions, X509_EXTENSION, 3)
29
} ASN1_SEQUENCE_END_enc(X509_CINF, X509_CINF)
30
31
IMPLEMENT_ASN1_FUNCTIONS(X509_CINF)
32
/* X509 top level structure needs a bit of customisation */
33
34
extern void ossl_policy_cache_free(X509_POLICY_CACHE *cache);
35
36
static int x509_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
37
    void *exarg)
38
0
{
39
0
    X509 *ret = (X509 *)*pval;
40
41
0
    switch (operation) {
42
43
0
    case ASN1_OP_D2I_PRE:
44
0
        CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data);
45
0
        X509_CERT_AUX_free(ret->aux);
46
0
        ASN1_OCTET_STRING_free(ret->skid);
47
0
        AUTHORITY_KEYID_free(ret->akid);
48
0
        CRL_DIST_POINTS_free(ret->crldp);
49
0
        ossl_policy_cache_free(ret->policy_cache);
50
0
        GENERAL_NAMES_free(ret->altname);
51
0
        NAME_CONSTRAINTS_free(ret->nc);
52
0
#ifndef OPENSSL_NO_RFC3779
53
0
        sk_IPAddressFamily_pop_free(ret->rfc3779_addr, IPAddressFamily_free);
54
0
        ASIdentifiers_free(ret->rfc3779_asid);
55
0
#endif
56
0
        ASN1_OCTET_STRING_free(ret->distinguishing_id);
57
58
        /* fall through */
59
60
0
    case ASN1_OP_NEW_POST:
61
0
        ret->ex_cached = 0;
62
0
        ret->ex_kusage = 0;
63
0
        ret->ex_xkusage = 0;
64
0
        ret->ex_nscert = 0;
65
0
        ret->ex_flags = 0;
66
0
        ret->ex_pathlen = -1;
67
0
        ret->ex_pcpathlen = -1;
68
0
        ret->skid = NULL;
69
0
        ret->akid = NULL;
70
0
        ret->policy_cache = NULL;
71
0
        ret->altname = NULL;
72
0
        ret->nc = NULL;
73
0
#ifndef OPENSSL_NO_RFC3779
74
0
        ret->rfc3779_addr = NULL;
75
0
        ret->rfc3779_asid = NULL;
76
0
#endif
77
0
        ret->distinguishing_id = NULL;
78
0
        ret->aux = NULL;
79
0
        ret->crldp = NULL;
80
0
        if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data))
81
0
            return 0;
82
0
        break;
83
84
0
    case ASN1_OP_FREE_POST:
85
0
        CRYPTO_free_ex_data(CRYPTO_EX_INDEX_X509, ret, &ret->ex_data);
86
0
        X509_CERT_AUX_free(ret->aux);
87
0
        ASN1_OCTET_STRING_free(ret->skid);
88
0
        AUTHORITY_KEYID_free(ret->akid);
89
0
        CRL_DIST_POINTS_free(ret->crldp);
90
0
        ossl_policy_cache_free(ret->policy_cache);
91
0
        GENERAL_NAMES_free(ret->altname);
92
0
        NAME_CONSTRAINTS_free(ret->nc);
93
0
#ifndef OPENSSL_NO_RFC3779
94
0
        sk_IPAddressFamily_pop_free(ret->rfc3779_addr, IPAddressFamily_free);
95
0
        ASIdentifiers_free(ret->rfc3779_asid);
96
0
#endif
97
0
        ASN1_OCTET_STRING_free(ret->distinguishing_id);
98
0
        OPENSSL_free(ret->propq);
99
0
        break;
100
101
0
    case ASN1_OP_DUP_POST: {
102
0
        X509 *old = exarg;
103
104
0
        if (!ossl_x509_set0_libctx(ret, old->libctx, old->propq))
105
0
            return 0;
106
0
    } break;
107
0
    case ASN1_OP_GET0_LIBCTX: {
108
0
        OSSL_LIB_CTX **libctx = exarg;
109
110
0
        *libctx = ret->libctx;
111
0
    } break;
112
113
0
    case ASN1_OP_GET0_PROPQ: {
114
0
        const char **propq = exarg;
115
116
0
        *propq = ret->propq;
117
0
    } break;
118
119
0
    default:
120
0
        break;
121
0
    }
122
123
0
    return 1;
124
0
}
125
126
ASN1_SEQUENCE_ref(X509, x509_cb) = {
127
    ASN1_EMBED(X509, cert_info, X509_CINF),
128
    ASN1_EMBED(X509, sig_alg, X509_ALGOR),
129
    ASN1_EMBED(X509, signature, ASN1_BIT_STRING)
130
} ASN1_SEQUENCE_END_ref(X509, X509)
131
132
IMPLEMENT_ASN1_FUNCTIONS(X509)
133
IMPLEMENT_ASN1_DUP_FUNCTION(X509)
134
135
/*
136
 * This should only be used if the X509 object was embedded inside another
137
 * asn1 object and it needs a libctx to operate.
138
 * Use X509_new_ex() instead if possible.
139
 */
140
int ossl_x509_set0_libctx(X509 *x, OSSL_LIB_CTX *libctx, const char *propq)
141
0
{
142
0
    if (x != NULL) {
143
0
        x->libctx = libctx;
144
0
        OPENSSL_free(x->propq);
145
0
        x->propq = NULL;
146
0
        if (propq != NULL) {
147
0
            x->propq = OPENSSL_strdup(propq);
148
0
            if (x->propq == NULL)
149
0
                return 0;
150
0
        }
151
0
    }
152
0
    return 1;
153
0
}
154
155
X509 *X509_new_ex(OSSL_LIB_CTX *libctx, const char *propq)
156
0
{
157
0
    X509 *cert = NULL;
158
159
0
    cert = (X509 *)ASN1_item_new_ex(X509_it(), libctx, propq);
160
0
    if (!ossl_x509_set0_libctx(cert, libctx, propq)) {
161
0
        X509_free(cert);
162
0
        cert = NULL;
163
0
    }
164
0
    return cert;
165
0
}
166
167
int X509_set_ex_data(X509 *r, int idx, void *arg)
168
0
{
169
0
    return CRYPTO_set_ex_data(&r->ex_data, idx, arg);
170
0
}
171
172
void *X509_get_ex_data(const X509 *r, int idx)
173
0
{
174
0
    return CRYPTO_get_ex_data(&r->ex_data, idx);
175
0
}
176
177
/*
178
 * X509_AUX ASN1 routines. X509_AUX is the name given to a certificate with
179
 * extra info tagged on the end. Since these functions set how a certificate
180
 * is trusted they should only be used when the certificate comes from a
181
 * reliable source such as local storage.
182
 */
183
184
X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
185
0
{
186
0
    const unsigned char *q;
187
0
    X509 *ret;
188
0
    int freeret = 0;
189
190
    /* Save start position */
191
0
    q = *pp;
192
193
0
    if (a == NULL || *a == NULL)
194
0
        freeret = 1;
195
0
    ret = d2i_X509(a, &q, length);
196
    /* If certificate unreadable then forget it */
197
0
    if (ret == NULL)
198
0
        return NULL;
199
    /* update length */
200
0
    length -= (long)(q - *pp);
201
0
    if (length > 0 && !d2i_X509_CERT_AUX(&ret->aux, &q, length))
202
0
        goto err;
203
0
    *pp = q;
204
0
    return ret;
205
0
err:
206
0
    if (freeret) {
207
0
        X509_free(ret);
208
0
        if (a)
209
0
            *a = NULL;
210
0
    }
211
0
    return NULL;
212
0
}
213
214
/*
215
 * Serialize trusted certificate to *pp or just return the required buffer
216
 * length if pp == NULL.  We ultimately want to avoid modifying *pp in the
217
 * error path, but that depends on similar hygiene in lower-level functions.
218
 * Here we avoid compounding the problem.
219
 */
220
static int i2d_x509_aux_internal(const X509 *a, unsigned char **pp)
221
0
{
222
0
    int length, tmplen;
223
0
    unsigned char *start = pp != NULL ? *pp : NULL;
224
225
    /*
226
     * This might perturb *pp on error, but fixing that belongs in i2d_X509()
227
     * not here.  It should be that if a == NULL length is zero, but we check
228
     * both just in case.
229
     */
230
0
    length = i2d_X509(a, pp);
231
0
    if (length <= 0 || a == NULL)
232
0
        return length;
233
234
0
    tmplen = i2d_X509_CERT_AUX(a->aux, pp);
235
0
    if (tmplen < 0) {
236
0
        if (start != NULL)
237
0
            *pp = start;
238
0
        return tmplen;
239
0
    }
240
0
    length += tmplen;
241
242
0
    return length;
243
0
}
244
245
/*
246
 * Serialize trusted certificate to *pp, or just return the required buffer
247
 * length if pp == NULL.
248
 *
249
 * When pp is not NULL, but *pp == NULL, we allocate the buffer, but since
250
 * we're writing two ASN.1 objects back to back, we can't have i2d_X509() do
251
 * the allocation, nor can we allow i2d_X509_CERT_AUX() to increment the
252
 * allocated buffer.
253
 */
254
int i2d_X509_AUX(const X509 *a, unsigned char **pp)
255
0
{
256
0
    int length;
257
0
    unsigned char *tmp;
258
259
    /* Buffer provided by caller */
260
0
    if (pp == NULL || *pp != NULL)
261
0
        return i2d_x509_aux_internal(a, pp);
262
263
    /* Obtain the combined length */
264
0
    if ((length = i2d_x509_aux_internal(a, NULL)) <= 0)
265
0
        return length;
266
267
    /* Allocate requisite combined storage */
268
0
    *pp = tmp = OPENSSL_malloc(length);
269
0
    if (tmp == NULL)
270
0
        return -1;
271
272
    /* Encode, but keep *pp at the originally malloced pointer */
273
0
    length = i2d_x509_aux_internal(a, &tmp);
274
0
    if (length <= 0) {
275
0
        OPENSSL_free(*pp);
276
0
        *pp = NULL;
277
0
    }
278
0
    return length;
279
0
}
280
281
int i2d_re_X509_tbs(X509 *x, unsigned char **pp)
282
0
{
283
0
    x->cert_info.enc.modified = 1;
284
0
    return i2d_X509_CINF(&x->cert_info, pp);
285
0
}
286
287
void X509_get0_signature(const ASN1_BIT_STRING **psig,
288
    const X509_ALGOR **palg, const X509 *x)
289
0
{
290
0
    if (psig)
291
0
        *psig = &x->signature;
292
0
    if (palg)
293
0
        *palg = &x->sig_alg;
294
0
}
295
296
int X509_get_signature_nid(const X509 *x)
297
0
{
298
0
    return OBJ_obj2nid(x->sig_alg.algorithm);
299
0
}
300
301
void X509_set0_distinguishing_id(X509 *x, ASN1_OCTET_STRING *d_id)
302
0
{
303
0
    ASN1_OCTET_STRING_free(x->distinguishing_id);
304
0
    x->distinguishing_id = d_id;
305
0
}
306
307
ASN1_OCTET_STRING *X509_get0_distinguishing_id(X509 *x)
308
0
{
309
0
    return x->distinguishing_id;
310
0
}