Coverage Report

Created: 2025-06-13 06:58

/src/openssl31/crypto/x509/x509_vpm.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2004-2023 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdio.h>
11
12
#include "internal/cryptlib.h"
13
#include <openssl/crypto.h>
14
#include <openssl/buffer.h>
15
#include <openssl/x509.h>
16
#include <openssl/x509v3.h>
17
#include "crypto/x509.h"
18
19
#include "x509_local.h"
20
21
/* X509_VERIFY_PARAM functions */
22
23
0
#define SET_HOST 0
24
0
#define ADD_HOST 1
25
26
static char *str_copy(const char *s)
27
0
{
28
0
    return OPENSSL_strdup(s);
29
0
}
30
31
static void str_free(char *s)
32
0
{
33
0
    OPENSSL_free(s);
34
0
}
35
36
static int int_x509_param_set_hosts(X509_VERIFY_PARAM *vpm, int mode,
37
                                    const char *name, size_t namelen)
38
0
{
39
0
    char *copy;
40
41
    /*
42
     * Refuse names with embedded NUL bytes, except perhaps as final byte.
43
     * XXX: Do we need to push an error onto the error stack?
44
     */
45
0
    if (namelen == 0 || name == NULL)
46
0
        namelen = name ? strlen(name) : 0;
47
0
    else if (name != NULL
48
0
             && memchr(name, '\0', namelen > 1 ? namelen - 1 : namelen) != NULL)
49
0
        return 0;
50
0
    if (namelen > 0 && name[namelen - 1] == '\0')
51
0
        --namelen;
52
53
0
    if (mode == SET_HOST) {
54
0
        sk_OPENSSL_STRING_pop_free(vpm->hosts, str_free);
55
0
        vpm->hosts = NULL;
56
0
    }
57
0
    if (name == NULL || namelen == 0)
58
0
        return 1;
59
60
0
    copy = OPENSSL_strndup(name, namelen);
61
0
    if (copy == NULL)
62
0
        return 0;
63
64
0
    if (vpm->hosts == NULL &&
65
0
        (vpm->hosts = sk_OPENSSL_STRING_new_null()) == NULL) {
66
0
        OPENSSL_free(copy);
67
0
        return 0;
68
0
    }
69
70
0
    if (!sk_OPENSSL_STRING_push(vpm->hosts, copy)) {
71
0
        OPENSSL_free(copy);
72
0
        if (sk_OPENSSL_STRING_num(vpm->hosts) == 0) {
73
0
            sk_OPENSSL_STRING_free(vpm->hosts);
74
0
            vpm->hosts = NULL;
75
0
        }
76
0
        return 0;
77
0
    }
78
79
0
    return 1;
80
0
}
81
82
X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void)
83
285k
{
84
285k
    X509_VERIFY_PARAM *param;
85
86
285k
    param = OPENSSL_zalloc(sizeof(*param));
87
285k
    if (param == NULL) {
88
0
        ERR_raise(ERR_LIB_X509, ERR_R_MALLOC_FAILURE);
89
0
        return NULL;
90
0
    }
91
285k
    param->trust = X509_TRUST_DEFAULT;
92
    /* param->inh_flags = X509_VP_FLAG_DEFAULT; */
93
285k
    param->depth = -1;
94
285k
    param->auth_level = -1; /* -1 means unset, 0 is explicit */
95
285k
    return param;
96
285k
}
97
98
void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param)
99
330k
{
100
330k
    if (param == NULL)
101
44.8k
        return;
102
285k
    sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free);
103
285k
    sk_OPENSSL_STRING_pop_free(param->hosts, str_free);
104
285k
    OPENSSL_free(param->peername);
105
285k
    OPENSSL_free(param->email);
106
285k
    OPENSSL_free(param->ip);
107
285k
    OPENSSL_free(param);
108
285k
}
109
110
/*-
111
 * This function determines how parameters are "inherited" from one structure
112
 * to another. There are several different ways this can happen.
113
 *
114
 * 1. If a child structure needs to have its values initialized from a parent
115
 *    they are simply copied across. For example SSL_CTX copied to SSL.
116
 * 2. If the structure should take on values only if they are currently unset.
117
 *    For example the values in an SSL structure will take appropriate value
118
 *    for SSL servers or clients but only if the application has not set new
119
 *    ones.
120
 *
121
 * The "inh_flags" field determines how this function behaves.
122
 *
123
 * Normally any values which are set in the default are not copied from the
124
 * destination and verify flags are ORed together.
125
 *
126
 * If X509_VP_FLAG_DEFAULT is set then anything set in the source is copied
127
 * to the destination. Effectively the values in "to" become default values
128
 * which will be used only if nothing new is set in "from".
129
 *
130
 * If X509_VP_FLAG_OVERWRITE is set then all value are copied across whether
131
 * they are set or not. Flags is still Ored though.
132
 *
133
 * If X509_VP_FLAG_RESET_FLAGS is set then the flags value is copied instead
134
 * of ORed.
135
 *
136
 * If X509_VP_FLAG_LOCKED is set then no values are copied.
137
 *
138
 * If X509_VP_FLAG_ONCE is set then the current inh_flags setting is zeroed
139
 * after the next call.
140
 */
141
142
/* Macro to test if a field should be copied from src to dest */
143
144
#define test_x509_verify_param_copy(field, def) \
145
1.64M
    (to_overwrite || (src->field != def && (to_default || dest->field == def)))
146
147
/* Macro to test and copy a field if necessary */
148
149
#define x509_verify_param_copy(field, def) \
150
916k
    if (test_x509_verify_param_copy(field, def)) \
151
916k
        dest->field = src->field;
152
153
int X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM *dest,
154
                              const X509_VERIFY_PARAM *src)
155
183k
{
156
183k
    unsigned long inh_flags;
157
183k
    int to_default, to_overwrite;
158
159
183k
    if (src == NULL)
160
0
        return 1;
161
183k
    inh_flags = dest->inh_flags | src->inh_flags;
162
163
183k
    if ((inh_flags & X509_VP_FLAG_ONCE) != 0)
164
0
        dest->inh_flags = 0;
165
166
183k
    if ((inh_flags & X509_VP_FLAG_LOCKED) != 0)
167
0
        return 1;
168
169
183k
    to_default = (inh_flags & X509_VP_FLAG_DEFAULT) != 0;
170
183k
    to_overwrite = (inh_flags & X509_VP_FLAG_OVERWRITE) != 0;
171
172
183k
    x509_verify_param_copy(purpose, 0);
173
183k
    x509_verify_param_copy(trust, X509_TRUST_DEFAULT);
174
183k
    x509_verify_param_copy(depth, -1);
175
183k
    x509_verify_param_copy(auth_level, -1);
176
177
    /* If overwrite or check time not set, copy across */
178
179
183k
    if (to_overwrite || (dest->flags & X509_V_FLAG_USE_CHECK_TIME) == 0) {
180
183k
        dest->check_time = src->check_time;
181
183k
        dest->flags &= ~X509_V_FLAG_USE_CHECK_TIME;
182
        /* Don't need to copy flag: that is done below */
183
183k
    }
184
185
183k
    if ((inh_flags & X509_VP_FLAG_RESET_FLAGS) != 0)
186
0
        dest->flags = 0;
187
188
183k
    dest->flags |= src->flags;
189
190
183k
    if (test_x509_verify_param_copy(policies, NULL)) {
191
0
        if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies))
192
0
            return 0;
193
0
    }
194
195
183k
    x509_verify_param_copy(hostflags, 0);
196
197
183k
    if (test_x509_verify_param_copy(hosts, NULL)) {
198
0
        sk_OPENSSL_STRING_pop_free(dest->hosts, str_free);
199
0
        dest->hosts = NULL;
200
0
        if (src->hosts != NULL) {
201
0
            dest->hosts =
202
0
                sk_OPENSSL_STRING_deep_copy(src->hosts, str_copy, str_free);
203
0
            if (dest->hosts == NULL)
204
0
                return 0;
205
0
        }
206
0
    }
207
208
183k
    if (test_x509_verify_param_copy(email, NULL)) {
209
0
        if (!X509_VERIFY_PARAM_set1_email(dest, src->email, src->emaillen))
210
0
            return 0;
211
0
    }
212
213
183k
    if (test_x509_verify_param_copy(ip, NULL)) {
214
0
        if (!X509_VERIFY_PARAM_set1_ip(dest, src->ip, src->iplen))
215
0
            return 0;
216
0
    }
217
218
183k
    return 1;
219
183k
}
220
221
int X509_VERIFY_PARAM_set1(X509_VERIFY_PARAM *to,
222
                           const X509_VERIFY_PARAM *from)
223
20.9k
{
224
20.9k
    unsigned long save_flags;
225
20.9k
    int ret;
226
227
20.9k
    if (to == NULL) {
228
0
        ERR_raise(ERR_LIB_X509, ERR_R_PASSED_NULL_PARAMETER);
229
0
        return 0;
230
0
    }
231
20.9k
    save_flags = to->inh_flags;
232
20.9k
    to->inh_flags |= X509_VP_FLAG_DEFAULT;
233
20.9k
    ret = X509_VERIFY_PARAM_inherit(to, from);
234
20.9k
    to->inh_flags = save_flags;
235
20.9k
    return ret;
236
20.9k
}
237
238
static int int_x509_param_set1(char **pdest, size_t *pdestlen,
239
                               const char *src, size_t srclen)
240
0
{
241
0
    char *tmp;
242
243
0
    if (src != NULL) {
244
0
        if (srclen == 0)
245
0
            srclen = strlen(src);
246
247
0
        tmp = OPENSSL_malloc(srclen + 1);
248
0
        if (tmp == NULL)
249
0
            return 0;
250
0
        memcpy(tmp, src, srclen);
251
0
        tmp[srclen] = '\0'; /* enforce NUL termination */
252
0
    } else {
253
0
        tmp = NULL;
254
0
        srclen = 0;
255
0
    }
256
0
    OPENSSL_free(*pdest);
257
0
    *pdest = tmp;
258
0
    if (pdestlen != NULL)
259
0
        *pdestlen = srclen;
260
0
    return 1;
261
0
}
262
263
int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name)
264
0
{
265
0
    OPENSSL_free(param->name);
266
0
    param->name = OPENSSL_strdup(name);
267
0
    return param->name != NULL;
268
0
}
269
270
int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags)
271
40.9k
{
272
40.9k
    param->flags |= flags;
273
40.9k
    if ((flags & X509_V_FLAG_POLICY_MASK) != 0)
274
0
        param->flags |= X509_V_FLAG_POLICY_CHECK;
275
40.9k
    return 1;
276
40.9k
}
277
278
int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *param,
279
                                  unsigned long flags)
280
0
{
281
0
    param->flags &= ~flags;
282
0
    return 1;
283
0
}
284
285
unsigned long X509_VERIFY_PARAM_get_flags(const X509_VERIFY_PARAM *param)
286
0
{
287
0
    return param->flags;
288
0
}
289
290
uint32_t X509_VERIFY_PARAM_get_inh_flags(const X509_VERIFY_PARAM *param)
291
0
{
292
0
    return param->inh_flags;
293
0
}
294
295
int X509_VERIFY_PARAM_set_inh_flags(X509_VERIFY_PARAM *param, uint32_t flags)
296
0
{
297
0
    param->inh_flags = flags;
298
0
    return 1;
299
0
}
300
301
int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose)
302
0
{
303
0
    return X509_PURPOSE_set(&param->purpose, purpose);
304
0
}
305
306
int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust)
307
0
{
308
0
    return X509_TRUST_set(&param->trust, trust);
309
0
}
310
311
void X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM *param, int depth)
312
0
{
313
0
    param->depth = depth;
314
0
}
315
316
void X509_VERIFY_PARAM_set_auth_level(X509_VERIFY_PARAM *param, int auth_level)
317
14.3k
{
318
14.3k
    param->auth_level = auth_level;
319
14.3k
}
320
321
time_t X509_VERIFY_PARAM_get_time(const X509_VERIFY_PARAM *param)
322
0
{
323
0
    return param->check_time;
324
0
}
325
326
void X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM *param, time_t t)
327
0
{
328
0
    param->check_time = t;
329
0
    param->flags |= X509_V_FLAG_USE_CHECK_TIME;
330
0
}
331
332
int X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM *param,
333
                                  ASN1_OBJECT *policy)
334
0
{
335
0
    if (param->policies == NULL) {
336
0
        param->policies = sk_ASN1_OBJECT_new_null();
337
0
        if (param->policies == NULL)
338
0
            return 0;
339
0
    }
340
341
0
    if (sk_ASN1_OBJECT_push(param->policies, policy) <= 0)
342
0
        return 0;
343
0
    return 1;
344
0
}
345
346
int X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM *param,
347
                                    STACK_OF(ASN1_OBJECT) *policies)
348
0
{
349
0
    int i;
350
0
    ASN1_OBJECT *oid, *doid;
351
352
0
    if (param == NULL) {
353
0
        ERR_raise(ERR_LIB_X509, ERR_R_PASSED_NULL_PARAMETER);
354
0
        return 0;
355
0
    }
356
0
    sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free);
357
358
0
    if (policies == NULL) {
359
0
        param->policies = NULL;
360
0
        return 1;
361
0
    }
362
363
0
    param->policies = sk_ASN1_OBJECT_new_null();
364
0
    if (param->policies == NULL)
365
0
        return 0;
366
367
0
    for (i = 0; i < sk_ASN1_OBJECT_num(policies); i++) {
368
0
        oid = sk_ASN1_OBJECT_value(policies, i);
369
0
        doid = OBJ_dup(oid);
370
0
        if (doid == NULL)
371
0
            return 0;
372
0
        if (!sk_ASN1_OBJECT_push(param->policies, doid)) {
373
0
            ASN1_OBJECT_free(doid);
374
0
            return 0;
375
0
        }
376
0
    }
377
0
    param->flags |= X509_V_FLAG_POLICY_CHECK;
378
0
    return 1;
379
0
}
380
381
char *X509_VERIFY_PARAM_get0_host(X509_VERIFY_PARAM *param, int idx)
382
0
{
383
0
    return sk_OPENSSL_STRING_value(param->hosts, idx);
384
0
}
385
386
int X509_VERIFY_PARAM_set1_host(X509_VERIFY_PARAM *param,
387
                                const char *name, size_t namelen)
388
0
{
389
0
    return int_x509_param_set_hosts(param, SET_HOST, name, namelen);
390
0
}
391
392
int X509_VERIFY_PARAM_add1_host(X509_VERIFY_PARAM *param,
393
                                const char *name, size_t namelen)
394
0
{
395
0
    return int_x509_param_set_hosts(param, ADD_HOST, name, namelen);
396
0
}
397
398
void X509_VERIFY_PARAM_set_hostflags(X509_VERIFY_PARAM *param,
399
                                     unsigned int flags)
400
0
{
401
0
    param->hostflags = flags;
402
0
}
403
404
unsigned int X509_VERIFY_PARAM_get_hostflags(const X509_VERIFY_PARAM *param)
405
0
{
406
0
    return param->hostflags;
407
0
}
408
409
char *X509_VERIFY_PARAM_get0_peername(const X509_VERIFY_PARAM *param)
410
0
{
411
0
    return param->peername;
412
0
}
413
414
/*
415
 * Move peername from one param structure to another, freeing any name present
416
 * at the target.  If the source is a NULL parameter structure, free and zero
417
 * the target peername.
418
 */
419
void X509_VERIFY_PARAM_move_peername(X509_VERIFY_PARAM *to,
420
                                     X509_VERIFY_PARAM *from)
421
172k
{
422
172k
    char *peername = (from != NULL) ? from->peername : NULL;
423
424
172k
    if (to->peername != peername) {
425
0
        OPENSSL_free(to->peername);
426
0
        to->peername = peername;
427
0
    }
428
172k
    if (from != NULL)
429
14.3k
        from->peername = NULL;
430
172k
}
431
432
char *X509_VERIFY_PARAM_get0_email(X509_VERIFY_PARAM *param)
433
0
{
434
0
    return param->email;
435
0
}
436
437
int X509_VERIFY_PARAM_set1_email(X509_VERIFY_PARAM *param,
438
                                 const char *email, size_t emaillen)
439
0
{
440
0
    return int_x509_param_set1(&param->email, &param->emaillen,
441
0
                               email, emaillen);
442
0
}
443
444
static unsigned char
445
*int_X509_VERIFY_PARAM_get0_ip(X509_VERIFY_PARAM *param, size_t *plen)
446
0
{
447
0
    if (param == NULL || param->ip == NULL) {
448
0
        ERR_raise(ERR_LIB_X509, ERR_R_PASSED_NULL_PARAMETER);
449
0
        return NULL;
450
0
    }
451
0
    if (plen != NULL)
452
0
        *plen = param->iplen;
453
0
    return param->ip;
454
0
}
455
456
char *X509_VERIFY_PARAM_get1_ip_asc(X509_VERIFY_PARAM *param)
457
0
{
458
0
    size_t iplen;
459
0
    unsigned char *ip = int_X509_VERIFY_PARAM_get0_ip(param, &iplen);
460
461
0
    return ip == NULL ? NULL : ossl_ipaddr_to_asc(ip, iplen);
462
0
}
463
464
int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param,
465
                              const unsigned char *ip, size_t iplen)
466
0
{
467
0
    if (iplen != 0 && iplen != 4 && iplen != 16) {
468
0
        ERR_raise(ERR_LIB_X509, ERR_R_PASSED_INVALID_ARGUMENT);
469
0
        return 0;
470
0
    }
471
0
    return int_x509_param_set1((char **)&param->ip, &param->iplen,
472
0
                               (char *)ip, iplen);
473
0
}
474
475
int X509_VERIFY_PARAM_set1_ip_asc(X509_VERIFY_PARAM *param, const char *ipasc)
476
0
{
477
0
    unsigned char ipout[16];
478
0
    size_t iplen = (size_t)ossl_a2i_ipadd(ipout, ipasc);
479
480
0
    if (iplen == 0)
481
0
        return 0;
482
0
    return X509_VERIFY_PARAM_set1_ip(param, ipout, iplen);
483
0
}
484
485
int X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM *param)
486
0
{
487
0
    return param->depth;
488
0
}
489
490
int X509_VERIFY_PARAM_get_auth_level(const X509_VERIFY_PARAM *param)
491
0
{
492
0
    return param->auth_level;
493
0
}
494
495
const char *X509_VERIFY_PARAM_get0_name(const X509_VERIFY_PARAM *param)
496
0
{
497
0
    return param->name;
498
0
}
499
500
#define vpm_empty_id NULL, 0U, NULL, NULL, 0, NULL, 0
501
502
/*
503
 * Default verify parameters: these are used for various applications and can
504
 * be overridden by the user specified table. NB: the 'name' field *must* be
505
 * in alphabetical order because it will be searched using OBJ_search.
506
 */
507
508
static const X509_VERIFY_PARAM default_table[] = {
509
    {
510
     "default",                 /* X509 default parameters */
511
     0,                         /* check time to use */
512
     0,                         /* inheritance flags */
513
     X509_V_FLAG_TRUSTED_FIRST, /* flags */
514
     0,                         /* purpose */
515
     0,                         /* trust */
516
     100,                       /* depth */
517
     -1,                        /* auth_level */
518
     NULL,                      /* policies */
519
     vpm_empty_id},
520
    {
521
     "pkcs7",                   /* S/MIME sign parameters */
522
     0,                         /* check time to use */
523
     0,                         /* inheritance flags */
524
     0,                         /* flags */
525
     X509_PURPOSE_SMIME_SIGN,   /* purpose */
526
     X509_TRUST_EMAIL,          /* trust */
527
     -1,                        /* depth */
528
     -1,                        /* auth_level */
529
     NULL,                      /* policies */
530
     vpm_empty_id},
531
    {
532
     "smime_sign",              /* S/MIME sign parameters */
533
     0,                         /* check time to use */
534
     0,                         /* inheritance flags */
535
     0,                         /* flags */
536
     X509_PURPOSE_SMIME_SIGN,   /* purpose */
537
     X509_TRUST_EMAIL,          /* trust */
538
     -1,                        /* depth */
539
     -1,                        /* auth_level */
540
     NULL,                      /* policies */
541
     vpm_empty_id},
542
    {
543
     "ssl_client",              /* SSL/TLS client parameters */
544
     0,                         /* check time to use */
545
     0,                         /* inheritance flags */
546
     0,                         /* flags */
547
     X509_PURPOSE_SSL_CLIENT,   /* purpose */
548
     X509_TRUST_SSL_CLIENT,     /* trust */
549
     -1,                        /* depth */
550
     -1,                        /* auth_level */
551
     NULL,                      /* policies */
552
     vpm_empty_id},
553
    {
554
     "ssl_server",              /* SSL/TLS server parameters */
555
     0,                         /* check time to use */
556
     0,                         /* inheritance flags */
557
     0,                         /* flags */
558
     X509_PURPOSE_SSL_SERVER,   /* purpose */
559
     X509_TRUST_SSL_SERVER,     /* trust */
560
     -1,                        /* depth */
561
     -1,                        /* auth_level */
562
     NULL,                      /* policies */
563
     vpm_empty_id}
564
};
565
566
static STACK_OF(X509_VERIFY_PARAM) *param_table = NULL;
567
568
static int table_cmp(const X509_VERIFY_PARAM *a, const X509_VERIFY_PARAM *b)
569
109k
{
570
109k
    return strcmp(a->name, b->name);
571
109k
}
572
573
DECLARE_OBJ_BSEARCH_CMP_FN(X509_VERIFY_PARAM, X509_VERIFY_PARAM, table);
574
IMPLEMENT_OBJ_BSEARCH_CMP_FN(X509_VERIFY_PARAM, X509_VERIFY_PARAM, table);
575
576
static int param_cmp(const X509_VERIFY_PARAM *const *a,
577
                     const X509_VERIFY_PARAM *const *b)
578
0
{
579
0
    return strcmp((*a)->name, (*b)->name);
580
0
}
581
582
int X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM *param)
583
0
{
584
0
    int idx;
585
0
    X509_VERIFY_PARAM *ptmp;
586
587
0
    if (param_table == NULL) {
588
0
        param_table = sk_X509_VERIFY_PARAM_new(param_cmp);
589
0
        if (param_table == NULL)
590
0
            return 0;
591
0
    } else {
592
0
        idx = sk_X509_VERIFY_PARAM_find(param_table, param);
593
0
        if (idx >= 0) {
594
0
            ptmp = sk_X509_VERIFY_PARAM_delete(param_table, idx);
595
0
            X509_VERIFY_PARAM_free(ptmp);
596
0
        }
597
0
    }
598
599
0
    if (sk_X509_VERIFY_PARAM_push(param_table, param) <= 0)
600
0
        return 0;
601
0
    return 1;
602
0
}
603
604
int X509_VERIFY_PARAM_get_count(void)
605
0
{
606
0
    int num = OSSL_NELEM(default_table);
607
608
0
    if (param_table != NULL)
609
0
        num += sk_X509_VERIFY_PARAM_num(param_table);
610
0
    return num;
611
0
}
612
613
const X509_VERIFY_PARAM *X509_VERIFY_PARAM_get0(int id)
614
0
{
615
0
    int num = OSSL_NELEM(default_table);
616
617
0
    if (id < num)
618
0
        return default_table + id;
619
0
    return sk_X509_VERIFY_PARAM_value(param_table, id - num);
620
0
}
621
622
const X509_VERIFY_PARAM *X509_VERIFY_PARAM_lookup(const char *name)
623
48.7k
{
624
48.7k
    int idx;
625
48.7k
    X509_VERIFY_PARAM pm;
626
627
48.7k
    pm.name = (char *)name;
628
48.7k
    if (param_table != NULL) {
629
0
        idx = sk_X509_VERIFY_PARAM_find(param_table, &pm);
630
0
        if (idx >= 0)
631
0
            return sk_X509_VERIFY_PARAM_value(param_table, idx);
632
0
    }
633
48.7k
    return OBJ_bsearch_table(&pm, default_table, OSSL_NELEM(default_table));
634
48.7k
}
635
636
void X509_VERIFY_PARAM_table_cleanup(void)
637
0
{
638
0
    sk_X509_VERIFY_PARAM_pop_free(param_table, X509_VERIFY_PARAM_free);
639
0
    param_table = NULL;
640
0
}