Coverage Report

Created: 2023-04-12 06:22

/src/openssl/crypto/x509/v3_lib.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1999-2020 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
/* X509 v3 extension utilities */
11
12
#include <stdio.h>
13
#include "internal/cryptlib.h"
14
#include <openssl/conf.h>
15
#include <openssl/x509v3.h>
16
17
#include "ext_dat.h"
18
19
static STACK_OF(X509V3_EXT_METHOD) *ext_list = NULL;
20
21
static int ext_cmp(const X509V3_EXT_METHOD *const *a,
22
                   const X509V3_EXT_METHOD *const *b);
23
static void ext_list_free(X509V3_EXT_METHOD *ext);
24
25
int X509V3_EXT_add(X509V3_EXT_METHOD *ext)
26
0
{
27
0
    if (ext_list == NULL
28
0
        && (ext_list = sk_X509V3_EXT_METHOD_new(ext_cmp)) == NULL) {
29
0
        ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB);
30
0
        return 0;
31
0
    }
32
0
    if (!sk_X509V3_EXT_METHOD_push(ext_list, ext)) {
33
0
        ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB);
34
0
        return 0;
35
0
    }
36
0
    return 1;
37
0
}
38
39
static int ext_cmp(const X509V3_EXT_METHOD *const *a,
40
                   const X509V3_EXT_METHOD *const *b)
41
0
{
42
0
    return ((*a)->ext_nid - (*b)->ext_nid);
43
0
}
44
45
DECLARE_OBJ_BSEARCH_CMP_FN(const X509V3_EXT_METHOD *,
46
                           const X509V3_EXT_METHOD *, ext);
47
IMPLEMENT_OBJ_BSEARCH_CMP_FN(const X509V3_EXT_METHOD *,
48
                             const X509V3_EXT_METHOD *, ext);
49
50
#include "standard_exts.h"
51
52
const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid)
53
0
{
54
0
    X509V3_EXT_METHOD tmp;
55
0
    const X509V3_EXT_METHOD *t = &tmp, *const *ret;
56
0
    int idx;
57
58
0
    if (nid < 0)
59
0
        return NULL;
60
0
    tmp.ext_nid = nid;
61
0
    ret = OBJ_bsearch_ext(&t, standard_exts, STANDARD_EXTENSION_COUNT);
62
0
    if (ret)
63
0
        return *ret;
64
0
    if (!ext_list)
65
0
        return NULL;
66
0
    idx = sk_X509V3_EXT_METHOD_find(ext_list, &tmp);
67
0
    return sk_X509V3_EXT_METHOD_value(ext_list, idx);
68
0
}
69
70
const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext)
71
0
{
72
0
    int nid;
73
0
    if ((nid = OBJ_obj2nid(X509_EXTENSION_get_object(ext))) == NID_undef)
74
0
        return NULL;
75
0
    return X509V3_EXT_get_nid(nid);
76
0
}
77
78
int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist)
79
0
{
80
0
    for (; extlist->ext_nid != -1; extlist++)
81
0
        if (!X509V3_EXT_add(extlist))
82
0
            return 0;
83
0
    return 1;
84
0
}
85
86
int X509V3_EXT_add_alias(int nid_to, int nid_from)
87
0
{
88
0
    const X509V3_EXT_METHOD *ext;
89
0
    X509V3_EXT_METHOD *tmpext;
90
91
0
    if ((ext = X509V3_EXT_get_nid(nid_from)) == NULL) {
92
0
        ERR_raise(ERR_LIB_X509V3, X509V3_R_EXTENSION_NOT_FOUND);
93
0
        return 0;
94
0
    }
95
0
    if ((tmpext = OPENSSL_malloc(sizeof(*tmpext))) == NULL)
96
0
        return 0;
97
0
    *tmpext = *ext;
98
0
    tmpext->ext_nid = nid_to;
99
0
    tmpext->ext_flags |= X509V3_EXT_DYNAMIC;
100
0
    return X509V3_EXT_add(tmpext);
101
0
}
102
103
void X509V3_EXT_cleanup(void)
104
0
{
105
0
    sk_X509V3_EXT_METHOD_pop_free(ext_list, ext_list_free);
106
0
    ext_list = NULL;
107
0
}
108
109
static void ext_list_free(X509V3_EXT_METHOD *ext)
110
0
{
111
0
    if (ext->ext_flags & X509V3_EXT_DYNAMIC)
112
0
        OPENSSL_free(ext);
113
0
}
114
115
/*
116
 * Legacy function: we don't need to add standard extensions any more because
117
 * they are now kept in ext_dat.h.
118
 */
119
120
int X509V3_add_standard_extensions(void)
121
0
{
122
0
    return 1;
123
0
}
124
125
/* Return an extension internal structure */
126
127
void *X509V3_EXT_d2i(X509_EXTENSION *ext)
128
0
{
129
0
    const X509V3_EXT_METHOD *method;
130
0
    const unsigned char *p;
131
0
    ASN1_STRING *extvalue;
132
0
    int extlen;
133
134
0
    if ((method = X509V3_EXT_get(ext)) == NULL)
135
0
        return NULL;
136
0
    extvalue = X509_EXTENSION_get_data(ext);
137
0
    p = ASN1_STRING_get0_data(extvalue);
138
0
    extlen = ASN1_STRING_length(extvalue);
139
0
    if (method->it)
140
0
        return ASN1_item_d2i(NULL, &p, extlen, ASN1_ITEM_ptr(method->it));
141
0
    return method->d2i(NULL, &p, extlen);
142
0
}
143
144
/*-
145
 * Get critical flag and decoded version of extension from a NID.
146
 * The "idx" variable returns the last found extension and can
147
 * be used to retrieve multiple extensions of the same NID.
148
 * However multiple extensions with the same NID is usually
149
 * due to a badly encoded certificate so if idx is NULL we
150
 * choke if multiple extensions exist.
151
 * The "crit" variable is set to the critical value.
152
 * The return value is the decoded extension or NULL on
153
 * error. The actual error can have several different causes,
154
 * the value of *crit reflects the cause:
155
 * >= 0, extension found but not decoded (reflects critical value).
156
 * -1 extension not found.
157
 * -2 extension occurs more than once.
158
 */
159
160
void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
161
                     int *idx)
162
0
{
163
0
    int lastpos, i;
164
0
    X509_EXTENSION *ex, *found_ex = NULL;
165
166
0
    if (!x) {
167
0
        if (idx)
168
0
            *idx = -1;
169
0
        if (crit)
170
0
            *crit = -1;
171
0
        return NULL;
172
0
    }
173
0
    if (idx)
174
0
        lastpos = *idx + 1;
175
0
    else
176
0
        lastpos = 0;
177
0
    if (lastpos < 0)
178
0
        lastpos = 0;
179
0
    for (i = lastpos; i < sk_X509_EXTENSION_num(x); i++) {
180
0
        ex = sk_X509_EXTENSION_value(x, i);
181
0
        if (OBJ_obj2nid(X509_EXTENSION_get_object(ex)) == nid) {
182
0
            if (idx) {
183
0
                *idx = i;
184
0
                found_ex = ex;
185
0
                break;
186
0
            } else if (found_ex) {
187
                /* Found more than one */
188
0
                if (crit)
189
0
                    *crit = -2;
190
0
                return NULL;
191
0
            }
192
0
            found_ex = ex;
193
0
        }
194
0
    }
195
0
    if (found_ex) {
196
        /* Found it */
197
0
        if (crit)
198
0
            *crit = X509_EXTENSION_get_critical(found_ex);
199
0
        return X509V3_EXT_d2i(found_ex);
200
0
    }
201
202
    /* Extension not found */
203
0
    if (idx)
204
0
        *idx = -1;
205
0
    if (crit)
206
0
        *crit = -1;
207
0
    return NULL;
208
0
}
209
210
/*
211
 * This function is a general extension append, replace and delete utility.
212
 * The precise operation is governed by the 'flags' value. The 'crit' and
213
 * 'value' arguments (if relevant) are the extensions internal structure.
214
 */
215
216
int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value,
217
                    int crit, unsigned long flags)
218
0
{
219
0
    int errcode, extidx = -1;
220
0
    X509_EXTENSION *ext = NULL, *extmp;
221
0
    STACK_OF(X509_EXTENSION) *ret = NULL;
222
0
    unsigned long ext_op = flags & X509V3_ADD_OP_MASK;
223
224
    /*
225
     * If appending we don't care if it exists, otherwise look for existing
226
     * extension.
227
     */
228
0
    if (ext_op != X509V3_ADD_APPEND)
229
0
        extidx = X509v3_get_ext_by_NID(*x, nid, -1);
230
231
    /* See if extension exists */
232
0
    if (extidx >= 0) {
233
        /* If keep existing, nothing to do */
234
0
        if (ext_op == X509V3_ADD_KEEP_EXISTING)
235
0
            return 1;
236
        /* If default then its an error */
237
0
        if (ext_op == X509V3_ADD_DEFAULT) {
238
0
            errcode = X509V3_R_EXTENSION_EXISTS;
239
0
            goto err;
240
0
        }
241
        /* If delete, just delete it */
242
0
        if (ext_op == X509V3_ADD_DELETE) {
243
0
            extmp = sk_X509_EXTENSION_delete(*x, extidx);
244
0
            if (extmp == NULL)
245
0
                return -1;
246
0
            X509_EXTENSION_free(extmp);
247
0
            return 1;
248
0
        }
249
0
    } else {
250
        /*
251
         * If replace existing or delete, error since extension must exist
252
         */
253
0
        if ((ext_op == X509V3_ADD_REPLACE_EXISTING) ||
254
0
            (ext_op == X509V3_ADD_DELETE)) {
255
0
            errcode = X509V3_R_EXTENSION_NOT_FOUND;
256
0
            goto err;
257
0
        }
258
0
    }
259
260
    /*
261
     * If we get this far then we have to create an extension: could have
262
     * some flags for alternative encoding schemes...
263
     */
264
265
0
    ext = X509V3_EXT_i2d(nid, crit, value);
266
267
0
    if (!ext) {
268
0
        ERR_raise(ERR_LIB_X509V3, X509V3_R_ERROR_CREATING_EXTENSION);
269
0
        return 0;
270
0
    }
271
272
    /* If extension exists replace it.. */
273
0
    if (extidx >= 0) {
274
0
        extmp = sk_X509_EXTENSION_value(*x, extidx);
275
0
        X509_EXTENSION_free(extmp);
276
0
        if (!sk_X509_EXTENSION_set(*x, extidx, ext))
277
0
            return -1;
278
0
        return 1;
279
0
    }
280
281
0
    ret = *x;
282
0
    if (*x == NULL
283
0
        && (ret = sk_X509_EXTENSION_new_null()) == NULL)
284
0
        goto m_fail;
285
0
    if (!sk_X509_EXTENSION_push(ret, ext))
286
0
        goto m_fail;
287
288
0
    *x = ret;
289
0
    return 1;
290
291
0
 m_fail:
292
    /* ERR_raise(ERR_LIB_X509V3, ERR_R_CRYPTO_LIB); */
293
0
    if (ret != *x)
294
0
        sk_X509_EXTENSION_free(ret);
295
0
    X509_EXTENSION_free(ext);
296
0
    return -1;
297
298
0
 err:
299
0
    if (!(flags & X509V3_ADD_SILENT))
300
0
        ERR_raise(ERR_LIB_X509V3, errcode);
301
0
    return 0;
302
0
}