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