/src/openssl/crypto/x509/x509_vpm.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* x509_vpm.c */ |
2 | | /* |
3 | | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project |
4 | | * 2004. |
5 | | */ |
6 | | /* ==================================================================== |
7 | | * Copyright (c) 2004 The OpenSSL Project. All rights reserved. |
8 | | * |
9 | | * Redistribution and use in source and binary forms, with or without |
10 | | * modification, are permitted provided that the following conditions |
11 | | * are met: |
12 | | * |
13 | | * 1. Redistributions of source code must retain the above copyright |
14 | | * notice, this list of conditions and the following disclaimer. |
15 | | * |
16 | | * 2. Redistributions in binary form must reproduce the above copyright |
17 | | * notice, this list of conditions and the following disclaimer in |
18 | | * the documentation and/or other materials provided with the |
19 | | * distribution. |
20 | | * |
21 | | * 3. All advertising materials mentioning features or use of this |
22 | | * software must display the following acknowledgment: |
23 | | * "This product includes software developed by the OpenSSL Project |
24 | | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" |
25 | | * |
26 | | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
27 | | * endorse or promote products derived from this software without |
28 | | * prior written permission. For written permission, please contact |
29 | | * licensing@OpenSSL.org. |
30 | | * |
31 | | * 5. Products derived from this software may not be called "OpenSSL" |
32 | | * nor may "OpenSSL" appear in their names without prior written |
33 | | * permission of the OpenSSL Project. |
34 | | * |
35 | | * 6. Redistributions of any form whatsoever must retain the following |
36 | | * acknowledgment: |
37 | | * "This product includes software developed by the OpenSSL Project |
38 | | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" |
39 | | * |
40 | | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
41 | | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
42 | | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
43 | | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
44 | | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
45 | | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
46 | | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
47 | | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
48 | | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
49 | | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
50 | | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
51 | | * OF THE POSSIBILITY OF SUCH DAMAGE. |
52 | | * ==================================================================== |
53 | | * |
54 | | * This product includes cryptographic software written by Eric Young |
55 | | * (eay@cryptsoft.com). This product includes software written by Tim |
56 | | * Hudson (tjh@cryptsoft.com). |
57 | | * |
58 | | */ |
59 | | |
60 | | #include <stdio.h> |
61 | | |
62 | | #include "cryptlib.h" |
63 | | #include <openssl/crypto.h> |
64 | | #include <openssl/lhash.h> |
65 | | #include <openssl/buffer.h> |
66 | | #include <openssl/x509.h> |
67 | | #include <openssl/x509v3.h> |
68 | | |
69 | | #include "vpm_int.h" |
70 | | |
71 | | /* X509_VERIFY_PARAM functions */ |
72 | | |
73 | 0 | #define SET_HOST 0 |
74 | 0 | #define ADD_HOST 1 |
75 | | |
76 | | static char *str_copy(const char *s) |
77 | 0 | { |
78 | 0 | return OPENSSL_strdup(s); |
79 | 0 | } |
80 | | |
81 | | static void str_free(char *s) |
82 | 0 | { |
83 | 0 | OPENSSL_free(s); |
84 | 0 | } |
85 | | |
86 | 0 | #define string_stack_free(sk) sk_OPENSSL_STRING_pop_free(sk, str_free) |
87 | | |
88 | | static int int_x509_param_set_hosts(X509_VERIFY_PARAM_ID *id, int mode, |
89 | | const char *name, size_t namelen) |
90 | 0 | { |
91 | 0 | char *copy; |
92 | | |
93 | | /* |
94 | | * Refuse names with embedded NUL bytes, except perhaps as final byte. |
95 | | * XXX: Do we need to push an error onto the error stack? |
96 | | */ |
97 | 0 | if (namelen == 0 || name == NULL) |
98 | 0 | namelen = name ? strlen(name) : 0; |
99 | 0 | else if (name && memchr(name, '\0', namelen > 1 ? namelen - 1 : namelen)) |
100 | 0 | return 0; |
101 | 0 | if (namelen > 0 && name[namelen - 1] == '\0') |
102 | 0 | --namelen; |
103 | |
|
104 | 0 | if (mode == SET_HOST && id->hosts) { |
105 | 0 | string_stack_free(id->hosts); |
106 | 0 | id->hosts = NULL; |
107 | 0 | } |
108 | 0 | if (name == NULL || namelen == 0) |
109 | 0 | return 1; |
110 | | |
111 | 0 | copy = BUF_strndup(name, namelen); |
112 | 0 | if (copy == NULL) |
113 | 0 | return 0; |
114 | | |
115 | 0 | if (id->hosts == NULL && |
116 | 0 | (id->hosts = sk_OPENSSL_STRING_new_null()) == NULL) { |
117 | 0 | OPENSSL_free(copy); |
118 | 0 | return 0; |
119 | 0 | } |
120 | | |
121 | 0 | if (!sk_OPENSSL_STRING_push(id->hosts, copy)) { |
122 | 0 | OPENSSL_free(copy); |
123 | 0 | if (sk_OPENSSL_STRING_num(id->hosts) == 0) { |
124 | 0 | sk_OPENSSL_STRING_free(id->hosts); |
125 | 0 | id->hosts = NULL; |
126 | 0 | } |
127 | 0 | return 0; |
128 | 0 | } |
129 | | |
130 | 0 | return 1; |
131 | 0 | } |
132 | | |
133 | | static void x509_verify_param_zero(X509_VERIFY_PARAM *param) |
134 | 4.97k | { |
135 | 4.97k | X509_VERIFY_PARAM_ID *paramid; |
136 | 4.97k | if (!param) |
137 | 0 | return; |
138 | 4.97k | param->name = NULL; |
139 | 4.97k | param->purpose = 0; |
140 | 4.97k | param->trust = 0; |
141 | | /* |
142 | | * param->inh_flags = X509_VP_FLAG_DEFAULT; |
143 | | */ |
144 | 4.97k | param->inh_flags = 0; |
145 | 4.97k | param->flags = 0; |
146 | 4.97k | param->depth = -1; |
147 | 4.97k | if (param->policies) { |
148 | 0 | sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free); |
149 | 0 | param->policies = NULL; |
150 | 0 | } |
151 | 4.97k | paramid = param->id; |
152 | 4.97k | if (paramid->hosts) { |
153 | 0 | string_stack_free(paramid->hosts); |
154 | 0 | paramid->hosts = NULL; |
155 | 0 | } |
156 | 4.97k | if (paramid->peername) |
157 | 0 | OPENSSL_free(paramid->peername); |
158 | 4.97k | paramid->peername = NULL; |
159 | 4.97k | if (paramid->email) { |
160 | 0 | OPENSSL_free(paramid->email); |
161 | 0 | paramid->email = NULL; |
162 | 0 | paramid->emaillen = 0; |
163 | 0 | } |
164 | 4.97k | if (paramid->ip) { |
165 | 0 | OPENSSL_free(paramid->ip); |
166 | 0 | paramid->ip = NULL; |
167 | 0 | paramid->iplen = 0; |
168 | 0 | } |
169 | 4.97k | } |
170 | | |
171 | | X509_VERIFY_PARAM *X509_VERIFY_PARAM_new(void) |
172 | 2.48k | { |
173 | 2.48k | X509_VERIFY_PARAM *param; |
174 | 2.48k | X509_VERIFY_PARAM_ID *paramid; |
175 | | |
176 | 2.48k | param = OPENSSL_malloc(sizeof *param); |
177 | 2.48k | if (!param) |
178 | 0 | return NULL; |
179 | 2.48k | memset(param, 0, sizeof(*param)); |
180 | | |
181 | 2.48k | paramid = OPENSSL_malloc(sizeof(*paramid)); |
182 | 2.48k | if (!paramid) { |
183 | 0 | OPENSSL_free(param); |
184 | 0 | return NULL; |
185 | 0 | } |
186 | 2.48k | memset(paramid, 0, sizeof(*paramid)); |
187 | | /* Exotic platforms may have non-zero bit representation of NULL */ |
188 | 2.48k | paramid->hosts = NULL; |
189 | 2.48k | paramid->peername = NULL; |
190 | 2.48k | paramid->email = NULL; |
191 | 2.48k | paramid->ip = NULL; |
192 | | |
193 | 2.48k | param->id = paramid; |
194 | 2.48k | x509_verify_param_zero(param); |
195 | 2.48k | return param; |
196 | 2.48k | } |
197 | | |
198 | | void X509_VERIFY_PARAM_free(X509_VERIFY_PARAM *param) |
199 | 2.48k | { |
200 | 2.48k | if (param == NULL) |
201 | 0 | return; |
202 | 2.48k | x509_verify_param_zero(param); |
203 | 2.48k | OPENSSL_free(param->id); |
204 | 2.48k | OPENSSL_free(param); |
205 | 2.48k | } |
206 | | |
207 | | /*- |
208 | | * This function determines how parameters are "inherited" from one structure |
209 | | * to another. There are several different ways this can happen. |
210 | | * |
211 | | * 1. If a child structure needs to have its values initialized from a parent |
212 | | * they are simply copied across. For example SSL_CTX copied to SSL. |
213 | | * 2. If the structure should take on values only if they are currently unset. |
214 | | * For example the values in an SSL structure will take appropriate value |
215 | | * for SSL servers or clients but only if the application has not set new |
216 | | * ones. |
217 | | * |
218 | | * The "inh_flags" field determines how this function behaves. |
219 | | * |
220 | | * Normally any values which are set in the default are not copied from the |
221 | | * destination and verify flags are ORed together. |
222 | | * |
223 | | * If X509_VP_FLAG_DEFAULT is set then anything set in the source is copied |
224 | | * to the destination. Effectively the values in "to" become default values |
225 | | * which will be used only if nothing new is set in "from". |
226 | | * |
227 | | * If X509_VP_FLAG_OVERWRITE is set then all value are copied across whether |
228 | | * they are set or not. Flags is still Ored though. |
229 | | * |
230 | | * If X509_VP_FLAG_RESET_FLAGS is set then the flags value is copied instead |
231 | | * of ORed. |
232 | | * |
233 | | * If X509_VP_FLAG_LOCKED is set then no values are copied. |
234 | | * |
235 | | * If X509_VP_FLAG_ONCE is set then the current inh_flags setting is zeroed |
236 | | * after the next call. |
237 | | */ |
238 | | |
239 | | /* Macro to test if a field should be copied from src to dest */ |
240 | | |
241 | | #define test_x509_verify_param_copy(field, def) \ |
242 | 0 | (to_overwrite || \ |
243 | 0 | ((src->field != def) && (to_default || (dest->field == def)))) |
244 | | |
245 | | /* As above but for ID fields */ |
246 | | |
247 | | #define test_x509_verify_param_copy_id(idf, def) \ |
248 | 0 | test_x509_verify_param_copy(id->idf, def) |
249 | | |
250 | | /* Macro to test and copy a field if necessary */ |
251 | | |
252 | | #define x509_verify_param_copy(field, def) \ |
253 | 0 | if (test_x509_verify_param_copy(field, def)) \ |
254 | 0 | dest->field = src->field |
255 | | |
256 | | int X509_VERIFY_PARAM_inherit(X509_VERIFY_PARAM *dest, |
257 | | const X509_VERIFY_PARAM *src) |
258 | 0 | { |
259 | 0 | unsigned long inh_flags; |
260 | 0 | int to_default, to_overwrite; |
261 | 0 | X509_VERIFY_PARAM_ID *id; |
262 | 0 | if (!src) |
263 | 0 | return 1; |
264 | 0 | id = src->id; |
265 | 0 | inh_flags = dest->inh_flags | src->inh_flags; |
266 | |
|
267 | 0 | if (inh_flags & X509_VP_FLAG_ONCE) |
268 | 0 | dest->inh_flags = 0; |
269 | |
|
270 | 0 | if (inh_flags & X509_VP_FLAG_LOCKED) |
271 | 0 | return 1; |
272 | | |
273 | 0 | if (inh_flags & X509_VP_FLAG_DEFAULT) |
274 | 0 | to_default = 1; |
275 | 0 | else |
276 | 0 | to_default = 0; |
277 | |
|
278 | 0 | if (inh_flags & X509_VP_FLAG_OVERWRITE) |
279 | 0 | to_overwrite = 1; |
280 | 0 | else |
281 | 0 | to_overwrite = 0; |
282 | |
|
283 | 0 | x509_verify_param_copy(purpose, 0); |
284 | 0 | x509_verify_param_copy(trust, 0); |
285 | 0 | x509_verify_param_copy(depth, -1); |
286 | | |
287 | | /* If overwrite or check time not set, copy across */ |
288 | |
|
289 | 0 | if (to_overwrite || !(dest->flags & X509_V_FLAG_USE_CHECK_TIME)) { |
290 | 0 | dest->check_time = src->check_time; |
291 | 0 | dest->flags &= ~X509_V_FLAG_USE_CHECK_TIME; |
292 | | /* Don't need to copy flag: that is done below */ |
293 | 0 | } |
294 | |
|
295 | 0 | if (inh_flags & X509_VP_FLAG_RESET_FLAGS) |
296 | 0 | dest->flags = 0; |
297 | |
|
298 | 0 | dest->flags |= src->flags; |
299 | |
|
300 | 0 | if (test_x509_verify_param_copy(policies, NULL)) { |
301 | 0 | if (!X509_VERIFY_PARAM_set1_policies(dest, src->policies)) |
302 | 0 | return 0; |
303 | 0 | } |
304 | | |
305 | | /* Copy the host flags if and only if we're copying the host list */ |
306 | 0 | if (test_x509_verify_param_copy_id(hosts, NULL)) { |
307 | 0 | if (dest->id->hosts) { |
308 | 0 | string_stack_free(dest->id->hosts); |
309 | 0 | dest->id->hosts = NULL; |
310 | 0 | } |
311 | 0 | if (id->hosts) { |
312 | 0 | dest->id->hosts = |
313 | 0 | sk_OPENSSL_STRING_deep_copy(id->hosts, str_copy, str_free); |
314 | 0 | if (dest->id->hosts == NULL) |
315 | 0 | return 0; |
316 | 0 | dest->id->hostflags = id->hostflags; |
317 | 0 | } |
318 | 0 | } |
319 | | |
320 | 0 | if (test_x509_verify_param_copy_id(email, NULL)) { |
321 | 0 | if (!X509_VERIFY_PARAM_set1_email(dest, id->email, id->emaillen)) |
322 | 0 | return 0; |
323 | 0 | } |
324 | | |
325 | 0 | if (test_x509_verify_param_copy_id(ip, NULL)) { |
326 | 0 | if (!X509_VERIFY_PARAM_set1_ip(dest, id->ip, id->iplen)) |
327 | 0 | return 0; |
328 | 0 | } |
329 | | |
330 | 0 | return 1; |
331 | 0 | } |
332 | | |
333 | | int X509_VERIFY_PARAM_set1(X509_VERIFY_PARAM *to, |
334 | | const X509_VERIFY_PARAM *from) |
335 | 0 | { |
336 | 0 | unsigned long save_flags = to->inh_flags; |
337 | 0 | int ret; |
338 | 0 | to->inh_flags |= X509_VP_FLAG_DEFAULT; |
339 | 0 | ret = X509_VERIFY_PARAM_inherit(to, from); |
340 | 0 | to->inh_flags = save_flags; |
341 | 0 | return ret; |
342 | 0 | } |
343 | | |
344 | | static int int_x509_param_set1(char **pdest, size_t *pdestlen, |
345 | | const char *src, size_t srclen) |
346 | 0 | { |
347 | 0 | void *tmp; |
348 | 0 | if (src) { |
349 | 0 | if (srclen == 0) { |
350 | 0 | tmp = BUF_strdup(src); |
351 | 0 | srclen = strlen(src); |
352 | 0 | } else |
353 | 0 | tmp = BUF_memdup(src, srclen); |
354 | 0 | if (!tmp) |
355 | 0 | return 0; |
356 | 0 | } else { |
357 | 0 | tmp = NULL; |
358 | 0 | srclen = 0; |
359 | 0 | } |
360 | 0 | if (*pdest) |
361 | 0 | OPENSSL_free(*pdest); |
362 | 0 | *pdest = tmp; |
363 | 0 | if (pdestlen) |
364 | 0 | *pdestlen = srclen; |
365 | 0 | return 1; |
366 | 0 | } |
367 | | |
368 | | int X509_VERIFY_PARAM_set1_name(X509_VERIFY_PARAM *param, const char *name) |
369 | 0 | { |
370 | 0 | if (param->name) |
371 | 0 | OPENSSL_free(param->name); |
372 | 0 | param->name = BUF_strdup(name); |
373 | 0 | if (param->name) |
374 | 0 | return 1; |
375 | 0 | return 0; |
376 | 0 | } |
377 | | |
378 | | int X509_VERIFY_PARAM_set_flags(X509_VERIFY_PARAM *param, unsigned long flags) |
379 | 0 | { |
380 | 0 | param->flags |= flags; |
381 | 0 | if (flags & X509_V_FLAG_POLICY_MASK) |
382 | 0 | param->flags |= X509_V_FLAG_POLICY_CHECK; |
383 | 0 | return 1; |
384 | 0 | } |
385 | | |
386 | | int X509_VERIFY_PARAM_clear_flags(X509_VERIFY_PARAM *param, |
387 | | unsigned long flags) |
388 | 0 | { |
389 | 0 | param->flags &= ~flags; |
390 | 0 | return 1; |
391 | 0 | } |
392 | | |
393 | | unsigned long X509_VERIFY_PARAM_get_flags(X509_VERIFY_PARAM *param) |
394 | 0 | { |
395 | 0 | return param->flags; |
396 | 0 | } |
397 | | |
398 | | int X509_VERIFY_PARAM_set_purpose(X509_VERIFY_PARAM *param, int purpose) |
399 | 0 | { |
400 | 0 | return X509_PURPOSE_set(¶m->purpose, purpose); |
401 | 0 | } |
402 | | |
403 | | int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust) |
404 | 0 | { |
405 | 0 | return X509_TRUST_set(¶m->trust, trust); |
406 | 0 | } |
407 | | |
408 | | void X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM *param, int depth) |
409 | 0 | { |
410 | 0 | param->depth = depth; |
411 | 0 | } |
412 | | |
413 | | void X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM *param, time_t t) |
414 | 0 | { |
415 | 0 | param->check_time = t; |
416 | 0 | param->flags |= X509_V_FLAG_USE_CHECK_TIME; |
417 | 0 | } |
418 | | |
419 | | int X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM *param, |
420 | | ASN1_OBJECT *policy) |
421 | 0 | { |
422 | 0 | if (!param->policies) { |
423 | 0 | param->policies = sk_ASN1_OBJECT_new_null(); |
424 | 0 | if (!param->policies) |
425 | 0 | return 0; |
426 | 0 | } |
427 | 0 | if (!sk_ASN1_OBJECT_push(param->policies, policy)) |
428 | 0 | return 0; |
429 | 0 | return 1; |
430 | 0 | } |
431 | | |
432 | | int X509_VERIFY_PARAM_set1_policies(X509_VERIFY_PARAM *param, |
433 | | STACK_OF(ASN1_OBJECT) *policies) |
434 | 0 | { |
435 | 0 | int i; |
436 | 0 | ASN1_OBJECT *oid, *doid; |
437 | 0 | if (!param) |
438 | 0 | return 0; |
439 | 0 | if (param->policies) |
440 | 0 | sk_ASN1_OBJECT_pop_free(param->policies, ASN1_OBJECT_free); |
441 | |
|
442 | 0 | if (!policies) { |
443 | 0 | param->policies = NULL; |
444 | 0 | return 1; |
445 | 0 | } |
446 | | |
447 | 0 | param->policies = sk_ASN1_OBJECT_new_null(); |
448 | 0 | if (!param->policies) |
449 | 0 | return 0; |
450 | | |
451 | 0 | for (i = 0; i < sk_ASN1_OBJECT_num(policies); i++) { |
452 | 0 | oid = sk_ASN1_OBJECT_value(policies, i); |
453 | 0 | doid = OBJ_dup(oid); |
454 | 0 | if (!doid) |
455 | 0 | return 0; |
456 | 0 | if (!sk_ASN1_OBJECT_push(param->policies, doid)) { |
457 | 0 | ASN1_OBJECT_free(doid); |
458 | 0 | return 0; |
459 | 0 | } |
460 | 0 | } |
461 | 0 | param->flags |= X509_V_FLAG_POLICY_CHECK; |
462 | 0 | return 1; |
463 | 0 | } |
464 | | |
465 | | int X509_VERIFY_PARAM_set1_host(X509_VERIFY_PARAM *param, |
466 | | const char *name, size_t namelen) |
467 | 0 | { |
468 | 0 | return int_x509_param_set_hosts(param->id, SET_HOST, name, namelen); |
469 | 0 | } |
470 | | |
471 | | int X509_VERIFY_PARAM_add1_host(X509_VERIFY_PARAM *param, |
472 | | const char *name, size_t namelen) |
473 | 0 | { |
474 | 0 | return int_x509_param_set_hosts(param->id, ADD_HOST, name, namelen); |
475 | 0 | } |
476 | | |
477 | | void X509_VERIFY_PARAM_set_hostflags(X509_VERIFY_PARAM *param, |
478 | | unsigned int flags) |
479 | 0 | { |
480 | 0 | param->id->hostflags = flags; |
481 | 0 | } |
482 | | |
483 | | char *X509_VERIFY_PARAM_get0_peername(X509_VERIFY_PARAM *param) |
484 | 0 | { |
485 | 0 | return param->id->peername; |
486 | 0 | } |
487 | | |
488 | | int X509_VERIFY_PARAM_set1_email(X509_VERIFY_PARAM *param, |
489 | | const char *email, size_t emaillen) |
490 | 0 | { |
491 | 0 | return int_x509_param_set1(¶m->id->email, ¶m->id->emaillen, |
492 | 0 | email, emaillen); |
493 | 0 | } |
494 | | |
495 | | int X509_VERIFY_PARAM_set1_ip(X509_VERIFY_PARAM *param, |
496 | | const unsigned char *ip, size_t iplen) |
497 | 0 | { |
498 | 0 | if (iplen != 0 && iplen != 4 && iplen != 16) |
499 | 0 | return 0; |
500 | 0 | return int_x509_param_set1((char **)¶m->id->ip, ¶m->id->iplen, |
501 | 0 | (char *)ip, iplen); |
502 | 0 | } |
503 | | |
504 | | int X509_VERIFY_PARAM_set1_ip_asc(X509_VERIFY_PARAM *param, const char *ipasc) |
505 | 0 | { |
506 | 0 | unsigned char ipout[16]; |
507 | 0 | size_t iplen; |
508 | |
|
509 | 0 | iplen = (size_t)a2i_ipadd(ipout, ipasc); |
510 | 0 | if (iplen == 0) |
511 | 0 | return 0; |
512 | 0 | return X509_VERIFY_PARAM_set1_ip(param, ipout, iplen); |
513 | 0 | } |
514 | | |
515 | | int X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM *param) |
516 | 0 | { |
517 | 0 | return param->depth; |
518 | 0 | } |
519 | | |
520 | | const char *X509_VERIFY_PARAM_get0_name(const X509_VERIFY_PARAM *param) |
521 | 0 | { |
522 | 0 | return param->name; |
523 | 0 | } |
524 | | |
525 | | static X509_VERIFY_PARAM_ID _empty_id = { NULL, 0U, NULL, NULL, 0, NULL, 0 }; |
526 | | |
527 | | #define vpm_empty_id (X509_VERIFY_PARAM_ID *)&_empty_id |
528 | | |
529 | | /* |
530 | | * Default verify parameters: these are used for various applications and can |
531 | | * be overridden by the user specified table. NB: the 'name' field *must* be |
532 | | * in alphabetical order because it will be searched using OBJ_search. |
533 | | */ |
534 | | |
535 | | static const X509_VERIFY_PARAM default_table[] = { |
536 | | { |
537 | | "default", /* X509 default parameters */ |
538 | | 0, /* Check time */ |
539 | | 0, /* internal flags */ |
540 | | 0, /* flags */ |
541 | | 0, /* purpose */ |
542 | | 0, /* trust */ |
543 | | 100, /* depth */ |
544 | | NULL, /* policies */ |
545 | | vpm_empty_id}, |
546 | | { |
547 | | "pkcs7", /* S/MIME sign parameters */ |
548 | | 0, /* Check time */ |
549 | | 0, /* internal flags */ |
550 | | 0, /* flags */ |
551 | | X509_PURPOSE_SMIME_SIGN, /* purpose */ |
552 | | X509_TRUST_EMAIL, /* trust */ |
553 | | -1, /* depth */ |
554 | | NULL, /* policies */ |
555 | | vpm_empty_id}, |
556 | | { |
557 | | "smime_sign", /* S/MIME sign parameters */ |
558 | | 0, /* Check time */ |
559 | | 0, /* internal flags */ |
560 | | 0, /* flags */ |
561 | | X509_PURPOSE_SMIME_SIGN, /* purpose */ |
562 | | X509_TRUST_EMAIL, /* trust */ |
563 | | -1, /* depth */ |
564 | | NULL, /* policies */ |
565 | | vpm_empty_id}, |
566 | | { |
567 | | "ssl_client", /* SSL/TLS client parameters */ |
568 | | 0, /* Check time */ |
569 | | 0, /* internal flags */ |
570 | | 0, /* flags */ |
571 | | X509_PURPOSE_SSL_CLIENT, /* purpose */ |
572 | | X509_TRUST_SSL_CLIENT, /* trust */ |
573 | | -1, /* depth */ |
574 | | NULL, /* policies */ |
575 | | vpm_empty_id}, |
576 | | { |
577 | | "ssl_server", /* SSL/TLS server parameters */ |
578 | | 0, /* Check time */ |
579 | | 0, /* internal flags */ |
580 | | 0, /* flags */ |
581 | | X509_PURPOSE_SSL_SERVER, /* purpose */ |
582 | | X509_TRUST_SSL_SERVER, /* trust */ |
583 | | -1, /* depth */ |
584 | | NULL, /* policies */ |
585 | | vpm_empty_id} |
586 | | }; |
587 | | |
588 | | static STACK_OF(X509_VERIFY_PARAM) *param_table = NULL; |
589 | | |
590 | | static int table_cmp(const X509_VERIFY_PARAM *a, const X509_VERIFY_PARAM *b) |
591 | 0 | { |
592 | 0 | return strcmp(a->name, b->name); |
593 | 0 | } |
594 | | |
595 | | DECLARE_OBJ_BSEARCH_CMP_FN(X509_VERIFY_PARAM, X509_VERIFY_PARAM, table); |
596 | | IMPLEMENT_OBJ_BSEARCH_CMP_FN(X509_VERIFY_PARAM, X509_VERIFY_PARAM, table); |
597 | | |
598 | | static int param_cmp(const X509_VERIFY_PARAM *const *a, |
599 | | const X509_VERIFY_PARAM *const *b) |
600 | 0 | { |
601 | 0 | return strcmp((*a)->name, (*b)->name); |
602 | 0 | } |
603 | | |
604 | | int X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM *param) |
605 | 0 | { |
606 | 0 | int idx; |
607 | 0 | X509_VERIFY_PARAM *ptmp; |
608 | 0 | if (!param_table) { |
609 | 0 | param_table = sk_X509_VERIFY_PARAM_new(param_cmp); |
610 | 0 | if (!param_table) |
611 | 0 | return 0; |
612 | 0 | } else { |
613 | 0 | idx = sk_X509_VERIFY_PARAM_find(param_table, param); |
614 | 0 | if (idx != -1) { |
615 | 0 | ptmp = sk_X509_VERIFY_PARAM_value(param_table, idx); |
616 | 0 | X509_VERIFY_PARAM_free(ptmp); |
617 | 0 | (void)sk_X509_VERIFY_PARAM_delete(param_table, idx); |
618 | 0 | } |
619 | 0 | } |
620 | 0 | if (!sk_X509_VERIFY_PARAM_push(param_table, param)) |
621 | 0 | return 0; |
622 | 0 | return 1; |
623 | 0 | } |
624 | | |
625 | | int X509_VERIFY_PARAM_get_count(void) |
626 | 0 | { |
627 | 0 | int num = sizeof(default_table) / sizeof(X509_VERIFY_PARAM); |
628 | 0 | if (param_table) |
629 | 0 | num += sk_X509_VERIFY_PARAM_num(param_table); |
630 | 0 | return num; |
631 | 0 | } |
632 | | |
633 | | const X509_VERIFY_PARAM *X509_VERIFY_PARAM_get0(int id) |
634 | 0 | { |
635 | 0 | int num = sizeof(default_table) / sizeof(X509_VERIFY_PARAM); |
636 | 0 | if (id < num) |
637 | 0 | return default_table + id; |
638 | 0 | return sk_X509_VERIFY_PARAM_value(param_table, id - num); |
639 | 0 | } |
640 | | |
641 | | const X509_VERIFY_PARAM *X509_VERIFY_PARAM_lookup(const char *name) |
642 | 0 | { |
643 | 0 | int idx; |
644 | 0 | X509_VERIFY_PARAM pm; |
645 | |
|
646 | 0 | pm.name = (char *)name; |
647 | 0 | if (param_table) { |
648 | 0 | idx = sk_X509_VERIFY_PARAM_find(param_table, &pm); |
649 | 0 | if (idx != -1) |
650 | 0 | return sk_X509_VERIFY_PARAM_value(param_table, idx); |
651 | 0 | } |
652 | 0 | return OBJ_bsearch_table(&pm, default_table, |
653 | 0 | sizeof(default_table) / |
654 | 0 | sizeof(X509_VERIFY_PARAM)); |
655 | 0 | } |
656 | | |
657 | | void X509_VERIFY_PARAM_table_cleanup(void) |
658 | 0 | { |
659 | 0 | if (param_table) |
660 | 0 | sk_X509_VERIFY_PARAM_pop_free(param_table, X509_VERIFY_PARAM_free); |
661 | 0 | param_table = NULL; |
662 | 0 | } |