Branch data Line data Source code
1 : : /* v3_conf.c */
2 : : /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 : : * project 1999.
4 : : */
5 : : /* ====================================================================
6 : : * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved.
7 : : *
8 : : * Redistribution and use in source and binary forms, with or without
9 : : * modification, are permitted provided that the following conditions
10 : : * are met:
11 : : *
12 : : * 1. Redistributions of source code must retain the above copyright
13 : : * notice, this list of conditions and the following disclaimer.
14 : : *
15 : : * 2. Redistributions in binary form must reproduce the above copyright
16 : : * notice, this list of conditions and the following disclaimer in
17 : : * the documentation and/or other materials provided with the
18 : : * distribution.
19 : : *
20 : : * 3. All advertising materials mentioning features or use of this
21 : : * software must display the following acknowledgment:
22 : : * "This product includes software developed by the OpenSSL Project
23 : : * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 : : *
25 : : * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 : : * endorse or promote products derived from this software without
27 : : * prior written permission. For written permission, please contact
28 : : * licensing@OpenSSL.org.
29 : : *
30 : : * 5. Products derived from this software may not be called "OpenSSL"
31 : : * nor may "OpenSSL" appear in their names without prior written
32 : : * permission of the OpenSSL Project.
33 : : *
34 : : * 6. Redistributions of any form whatsoever must retain the following
35 : : * acknowledgment:
36 : : * "This product includes software developed by the OpenSSL Project
37 : : * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 : : *
39 : : * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 : : * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 : : * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 : : * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 : : * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 : : * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 : : * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 : : * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 : : * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 : : * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 : : * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 : : * OF THE POSSIBILITY OF SUCH DAMAGE.
51 : : * ====================================================================
52 : : *
53 : : * This product includes cryptographic software written by Eric Young
54 : : * (eay@cryptsoft.com). This product includes software written by Tim
55 : : * Hudson (tjh@cryptsoft.com).
56 : : *
57 : : */
58 : : /* extension creation utilities */
59 : :
60 : :
61 : :
62 : : #include <stdio.h>
63 : : #include <ctype.h>
64 : : #include "cryptlib.h"
65 : : #include <openssl/conf.h>
66 : : #include <openssl/x509.h>
67 : : #include <openssl/x509v3.h>
68 : :
69 : : static int v3_check_critical(char **value);
70 : : static int v3_check_generic(char **value);
71 : : static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
72 : : static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type, X509V3_CTX *ctx);
73 : : static char *conf_lhash_get_string(void *db, char *section, char *value);
74 : : static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section);
75 : : static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid,
76 : : int crit, void *ext_struc);
77 : : static unsigned char *generic_asn1(char *value, X509V3_CTX *ctx, long *ext_len);
78 : : /* CONF *conf: Config file */
79 : : /* char *name: Name */
80 : : /* char *value: Value */
81 : 136 : X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
82 : : char *value)
83 : : {
84 : : int crit;
85 : : int ext_type;
86 : : X509_EXTENSION *ret;
87 : 136 : crit = v3_check_critical(&value);
88 [ - + ]: 136 : if ((ext_type = v3_check_generic(&value)))
89 : 0 : return v3_generic_extension(name, value, crit, ext_type, ctx);
90 : 136 : ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
91 [ - + ]: 136 : if (!ret)
92 : : {
93 : 0 : X509V3err(X509V3_F_X509V3_EXT_NCONF,X509V3_R_ERROR_IN_EXTENSION);
94 : 0 : ERR_add_error_data(4,"name=", name, ", value=", value);
95 : : }
96 : 136 : return ret;
97 : : }
98 : :
99 : : /* CONF *conf: Config file */
100 : : /* char *value: Value */
101 : 0 : X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
102 : : char *value)
103 : : {
104 : : int crit;
105 : : int ext_type;
106 : 0 : crit = v3_check_critical(&value);
107 [ # # ]: 0 : if ((ext_type = v3_check_generic(&value)))
108 : 0 : return v3_generic_extension(OBJ_nid2sn(ext_nid),
109 : : value, crit, ext_type, ctx);
110 : 0 : return do_ext_nconf(conf, ctx, ext_nid, crit, value);
111 : : }
112 : :
113 : : /* CONF *conf: Config file */
114 : : /* char *value: Value */
115 : 136 : static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
116 : : int crit, char *value)
117 : : {
118 : 136 : const X509V3_EXT_METHOD *method;
119 : : X509_EXTENSION *ext;
120 : : STACK_OF(CONF_VALUE) *nval;
121 : : void *ext_struc;
122 [ - + ]: 136 : if (ext_nid == NID_undef)
123 : : {
124 : 0 : X509V3err(X509V3_F_DO_EXT_NCONF,X509V3_R_UNKNOWN_EXTENSION_NAME);
125 : 0 : return NULL;
126 : : }
127 [ - + ]: 136 : if (!(method = X509V3_EXT_get_nid(ext_nid)))
128 : : {
129 : 0 : X509V3err(X509V3_F_DO_EXT_NCONF,X509V3_R_UNKNOWN_EXTENSION);
130 : 0 : return NULL;
131 : : }
132 : : /* Now get internal extension representation based on type */
133 [ + + ]: 136 : if (method->v2i)
134 : : {
135 [ - + ]: 94 : if(*value == '@') nval = NCONF_get_section(conf, value + 1);
136 : 94 : else nval = X509V3_parse_list(value);
137 [ - + ]: 94 : if(sk_CONF_VALUE_num(nval) <= 0)
138 : : {
139 : 0 : X509V3err(X509V3_F_DO_EXT_NCONF,X509V3_R_INVALID_EXTENSION_STRING);
140 : 0 : ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
141 : 0 : return NULL;
142 : : }
143 : 94 : ext_struc = method->v2i(method, ctx, nval);
144 [ + - ]: 94 : if(*value != '@') sk_CONF_VALUE_pop_free(nval,
145 : : X509V3_conf_free);
146 [ + - ]: 94 : if(!ext_struc) return NULL;
147 : : }
148 [ + + ]: 42 : else if(method->s2i)
149 : : {
150 [ + - ]: 38 : if(!(ext_struc = method->s2i(method, ctx, value))) return NULL;
151 : : }
152 [ + - ]: 4 : else if(method->r2i)
153 : : {
154 [ + - ][ - + ]: 4 : if(!ctx->db || !ctx->db_meth)
155 : : {
156 : 0 : X509V3err(X509V3_F_DO_EXT_NCONF,X509V3_R_NO_CONFIG_DATABASE);
157 : 0 : return NULL;
158 : : }
159 [ + - ]: 4 : if(!(ext_struc = method->r2i(method, ctx, value))) return NULL;
160 : : }
161 : : else
162 : : {
163 : 0 : X509V3err(X509V3_F_DO_EXT_NCONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED);
164 : 0 : ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid));
165 : 0 : return NULL;
166 : : }
167 : :
168 : 136 : ext = do_ext_i2d(method, ext_nid, crit, ext_struc);
169 [ + - ]: 136 : if(method->it) ASN1_item_free(ext_struc, ASN1_ITEM_ptr(method->it));
170 : 0 : else method->ext_free(ext_struc);
171 : 136 : return ext;
172 : :
173 : : }
174 : :
175 : 444 : static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid,
176 : : int crit, void *ext_struc)
177 : : {
178 : : unsigned char *ext_der;
179 : : int ext_len;
180 : : ASN1_OCTET_STRING *ext_oct;
181 : : X509_EXTENSION *ext;
182 : : /* Convert internal representation to DER */
183 [ + - ]: 222 : if (method->it)
184 : : {
185 : 222 : ext_der = NULL;
186 : 222 : ext_len = ASN1_item_i2d(ext_struc, &ext_der, ASN1_ITEM_ptr(method->it));
187 [ + - ]: 222 : if (ext_len < 0) goto merr;
188 : : }
189 : : else
190 : : {
191 : : unsigned char *p;
192 : 0 : ext_len = method->i2d(ext_struc, NULL);
193 [ # # ]: 0 : if(!(ext_der = OPENSSL_malloc(ext_len))) goto merr;
194 : 0 : p = ext_der;
195 : 0 : method->i2d(ext_struc, &p);
196 : : }
197 [ + - ]: 222 : if (!(ext_oct = M_ASN1_OCTET_STRING_new())) goto merr;
198 : 222 : ext_oct->data = ext_der;
199 : 222 : ext_oct->length = ext_len;
200 : :
201 : 222 : ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
202 [ + - ]: 222 : if (!ext) goto merr;
203 : 222 : M_ASN1_OCTET_STRING_free(ext_oct);
204 : :
205 : : return ext;
206 : :
207 : : merr:
208 : 0 : X509V3err(X509V3_F_DO_EXT_I2D,ERR_R_MALLOC_FAILURE);
209 : : return NULL;
210 : :
211 : : }
212 : :
213 : : /* Given an internal structure, nid and critical flag create an extension */
214 : :
215 : 86 : X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc)
216 : : {
217 : 86 : const X509V3_EXT_METHOD *method;
218 [ - + ]: 86 : if (!(method = X509V3_EXT_get_nid(ext_nid))) {
219 : 0 : X509V3err(X509V3_F_X509V3_EXT_I2D,X509V3_R_UNKNOWN_EXTENSION);
220 : 0 : return NULL;
221 : : }
222 : 86 : return do_ext_i2d(method, ext_nid, crit, ext_struc);
223 : : }
224 : :
225 : : /* Check the extension string for critical flag */
226 : 136 : static int v3_check_critical(char **value)
227 : : {
228 : 136 : char *p = *value;
229 [ + + ][ + + ]: 136 : if ((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0;
230 : 10 : p+=9;
231 [ - + ]: 10 : while(isspace((unsigned char)*p)) p++;
232 : 10 : *value = p;
233 : 10 : return 1;
234 : : }
235 : :
236 : : /* Check extension string for generic extension and return the type */
237 : 136 : static int v3_check_generic(char **value)
238 : : {
239 : 136 : int gen_type = 0;
240 : 136 : char *p = *value;
241 [ + - ][ - + ]: 136 : if ((strlen(p) >= 4) && !strncmp(p, "DER:", 4))
242 : : {
243 : 0 : p+=4;
244 : 0 : gen_type = 1;
245 : : }
246 [ + + ][ - + ]: 136 : else if ((strlen(p) >= 5) && !strncmp(p, "ASN1:", 5))
247 : : {
248 : 0 : p+=5;
249 : 0 : gen_type = 2;
250 : : }
251 : : else
252 : : return 0;
253 : :
254 [ # # ]: 0 : while (isspace((unsigned char)*p)) p++;
255 : 0 : *value = p;
256 : 0 : return gen_type;
257 : : }
258 : :
259 : : /* Create a generic extension: for now just handle DER type */
260 : 0 : static X509_EXTENSION *v3_generic_extension(const char *ext, char *value,
261 : : int crit, int gen_type,
262 : : X509V3_CTX *ctx)
263 : : {
264 : 0 : unsigned char *ext_der=NULL;
265 : : long ext_len;
266 : 0 : ASN1_OBJECT *obj=NULL;
267 : 0 : ASN1_OCTET_STRING *oct=NULL;
268 : 0 : X509_EXTENSION *extension=NULL;
269 [ # # ]: 0 : if (!(obj = OBJ_txt2obj(ext, 0)))
270 : : {
271 : 0 : X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR);
272 : 0 : ERR_add_error_data(2, "name=", ext);
273 : 0 : goto err;
274 : : }
275 : :
276 [ # # ]: 0 : if (gen_type == 1)
277 : 0 : ext_der = string_to_hex(value, &ext_len);
278 [ # # ]: 0 : else if (gen_type == 2)
279 : 0 : ext_der = generic_asn1(value, ctx, &ext_len);
280 : :
281 [ # # ]: 0 : if (ext_der == NULL)
282 : : {
283 : 0 : X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR);
284 : 0 : ERR_add_error_data(2, "value=", value);
285 : 0 : goto err;
286 : : }
287 : :
288 [ # # ]: 0 : if (!(oct = M_ASN1_OCTET_STRING_new()))
289 : : {
290 : 0 : X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE);
291 : 0 : goto err;
292 : : }
293 : :
294 : 0 : oct->data = ext_der;
295 : 0 : oct->length = ext_len;
296 : 0 : ext_der = NULL;
297 : :
298 : 0 : extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct);
299 : :
300 : : err:
301 : 0 : ASN1_OBJECT_free(obj);
302 : 0 : M_ASN1_OCTET_STRING_free(oct);
303 [ # # ]: 0 : if(ext_der) OPENSSL_free(ext_der);
304 : 0 : return extension;
305 : :
306 : : }
307 : :
308 : 0 : static unsigned char *generic_asn1(char *value, X509V3_CTX *ctx, long *ext_len)
309 : : {
310 : : ASN1_TYPE *typ;
311 : 0 : unsigned char *ext_der = NULL;
312 : 0 : typ = ASN1_generate_v3(value, ctx);
313 [ # # ]: 0 : if (typ == NULL)
314 : : return NULL;
315 : 0 : *ext_len = i2d_ASN1_TYPE(typ, &ext_der);
316 : 0 : ASN1_TYPE_free(typ);
317 : 0 : return ext_der;
318 : : }
319 : :
320 : 0 : static void delete_ext(STACK_OF(X509_EXTENSION) *sk, X509_EXTENSION *dext)
321 : : {
322 : : int idx;
323 : : ASN1_OBJECT *obj;
324 : 0 : obj = X509_EXTENSION_get_object(dext);
325 [ # # ]: 0 : while ((idx = X509v3_get_ext_by_OBJ(sk, obj, -1)) >= 0)
326 : : {
327 : 0 : X509_EXTENSION *tmpext = X509v3_get_ext(sk, idx);
328 : 0 : X509v3_delete_ext(sk, idx);
329 : 0 : X509_EXTENSION_free(tmpext);
330 : : }
331 : 0 : }
332 : :
333 : : /* This is the main function: add a bunch of extensions based on a config file
334 : : * section to an extension STACK.
335 : : */
336 : :
337 : :
338 : 36 : int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
339 : : STACK_OF(X509_EXTENSION) **sk)
340 : : {
341 : : X509_EXTENSION *ext;
342 : : STACK_OF(CONF_VALUE) *nval;
343 : : CONF_VALUE *val;
344 : : int i;
345 [ + - ]: 36 : if (!(nval = NCONF_get_section(conf, section))) return 0;
346 [ + + ]: 172 : for (i = 0; i < sk_CONF_VALUE_num(nval); i++)
347 : : {
348 : 136 : val = sk_CONF_VALUE_value(nval, i);
349 [ + - ]: 136 : if (!(ext = X509V3_EXT_nconf(conf, ctx, val->name, val->value)))
350 : : return 0;
351 [ - + ]: 136 : if (ctx->flags == X509V3_CTX_REPLACE)
352 : 0 : delete_ext(*sk, ext);
353 [ + + ]: 136 : if (sk) X509v3_add_ext(sk, ext, -1);
354 : 136 : X509_EXTENSION_free(ext);
355 : : }
356 : : return 1;
357 : : }
358 : :
359 : : /* Convenience functions to add extensions to a certificate, CRL and request */
360 : :
361 : 36 : int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
362 : : X509 *cert)
363 : : {
364 : 36 : STACK_OF(X509_EXTENSION) **sk = NULL;
365 [ + + ]: 36 : if (cert)
366 : 9 : sk = &cert->cert_info->extensions;
367 : 36 : return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
368 : : }
369 : :
370 : : /* Same as above but for a CRL */
371 : :
372 : 0 : int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
373 : : X509_CRL *crl)
374 : : {
375 : 0 : STACK_OF(X509_EXTENSION) **sk = NULL;
376 [ # # ]: 0 : if (crl)
377 : 0 : sk = &crl->crl->extensions;
378 : 0 : return X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
379 : : }
380 : :
381 : : /* Add extensions to certificate request */
382 : :
383 : 0 : int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
384 : : X509_REQ *req)
385 : : {
386 : 0 : STACK_OF(X509_EXTENSION) *extlist = NULL, **sk = NULL;
387 : : int i;
388 [ # # ]: 0 : if (req)
389 : 0 : sk = &extlist;
390 : 0 : i = X509V3_EXT_add_nconf_sk(conf, ctx, section, sk);
391 [ # # ]: 0 : if (!i || !sk)
392 : : return i;
393 : 0 : i = X509_REQ_add_extensions(req, extlist);
394 : 0 : sk_X509_EXTENSION_pop_free(extlist, X509_EXTENSION_free);
395 : 0 : return i;
396 : : }
397 : :
398 : : /* Config database functions */
399 : :
400 : 0 : char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section)
401 : : {
402 [ # # ][ # # ]: 0 : if(!ctx->db || !ctx->db_meth || !ctx->db_meth->get_string)
[ # # ]
403 : : {
404 : 0 : X509V3err(X509V3_F_X509V3_GET_STRING,X509V3_R_OPERATION_NOT_DEFINED);
405 : 0 : return NULL;
406 : : }
407 [ # # ]: 0 : if (ctx->db_meth->get_string)
408 : 0 : return ctx->db_meth->get_string(ctx->db, name, section);
409 : : return NULL;
410 : : }
411 : :
412 : 2 : STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section)
413 : : {
414 [ + - ][ + - ]: 2 : if(!ctx->db || !ctx->db_meth || !ctx->db_meth->get_section)
[ - + ]
415 : : {
416 : 0 : X509V3err(X509V3_F_X509V3_GET_SECTION,X509V3_R_OPERATION_NOT_DEFINED);
417 : 0 : return NULL;
418 : : }
419 [ + - ]: 2 : if (ctx->db_meth->get_section)
420 : 2 : return ctx->db_meth->get_section(ctx->db, section);
421 : : return NULL;
422 : : }
423 : :
424 : 0 : void X509V3_string_free(X509V3_CTX *ctx, char *str)
425 : : {
426 [ # # ]: 0 : if (!str) return;
427 [ # # ]: 0 : if (ctx->db_meth->free_string)
428 : 0 : ctx->db_meth->free_string(ctx->db, str);
429 : : }
430 : :
431 : 2 : void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section)
432 : : {
433 [ + - ]: 2 : if (!section) return;
434 [ - + ]: 2 : if (ctx->db_meth->free_section)
435 : 0 : ctx->db_meth->free_section(ctx->db, section);
436 : : }
437 : :
438 : 0 : static char *nconf_get_string(void *db, char *section, char *value)
439 : : {
440 : 0 : return NCONF_get_string(db, section, value);
441 : : }
442 : :
443 : 2 : static STACK_OF(CONF_VALUE) *nconf_get_section(void *db, char *section)
444 : : {
445 : 2 : return NCONF_get_section(db, section);
446 : : }
447 : :
448 : : static X509V3_CONF_METHOD nconf_method = {
449 : : nconf_get_string,
450 : : nconf_get_section,
451 : : NULL,
452 : : NULL
453 : : };
454 : :
455 : 45 : void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf)
456 : : {
457 : 45 : ctx->db_meth = &nconf_method;
458 : 45 : ctx->db = conf;
459 : 45 : }
460 : :
461 : 45 : void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req,
462 : : X509_CRL *crl, int flags)
463 : : {
464 : 45 : ctx->issuer_cert = issuer;
465 : 45 : ctx->subject_cert = subj;
466 : 45 : ctx->crl = crl;
467 : 45 : ctx->subject_req = req;
468 : 45 : ctx->flags = flags;
469 : 45 : }
470 : :
471 : : /* Old conf compatibility functions */
472 : :
473 : 0 : X509_EXTENSION *X509V3_EXT_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
474 : : char *name, char *value)
475 : : {
476 : : CONF ctmp;
477 : 0 : CONF_set_nconf(&ctmp, conf);
478 : 0 : return X509V3_EXT_nconf(&ctmp, ctx, name, value);
479 : : }
480 : :
481 : : /* LHASH *conf: Config file */
482 : : /* char *value: Value */
483 : 0 : X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
484 : : int ext_nid, char *value)
485 : : {
486 : : CONF ctmp;
487 : 0 : CONF_set_nconf(&ctmp, conf);
488 : 0 : return X509V3_EXT_nconf_nid(&ctmp, ctx, ext_nid, value);
489 : : }
490 : :
491 : 0 : static char *conf_lhash_get_string(void *db, char *section, char *value)
492 : : {
493 : 0 : return CONF_get_string(db, section, value);
494 : : }
495 : :
496 : 0 : static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section)
497 : : {
498 : 0 : return CONF_get_section(db, section);
499 : : }
500 : :
501 : : static X509V3_CONF_METHOD conf_lhash_method = {
502 : : conf_lhash_get_string,
503 : : conf_lhash_get_section,
504 : : NULL,
505 : : NULL
506 : : };
507 : :
508 : 0 : void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash)
509 : : {
510 : 0 : ctx->db_meth = &conf_lhash_method;
511 : 0 : ctx->db = lhash;
512 : 0 : }
513 : :
514 : 0 : int X509V3_EXT_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
515 : : char *section, X509 *cert)
516 : : {
517 : : CONF ctmp;
518 : 0 : CONF_set_nconf(&ctmp, conf);
519 : 0 : return X509V3_EXT_add_nconf(&ctmp, ctx, section, cert);
520 : : }
521 : :
522 : : /* Same as above but for a CRL */
523 : :
524 : 0 : int X509V3_EXT_CRL_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
525 : : char *section, X509_CRL *crl)
526 : : {
527 : : CONF ctmp;
528 : 0 : CONF_set_nconf(&ctmp, conf);
529 : 0 : return X509V3_EXT_CRL_add_nconf(&ctmp, ctx, section, crl);
530 : : }
531 : :
532 : : /* Add extensions to certificate request */
533 : :
534 : 0 : int X509V3_EXT_REQ_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
535 : : char *section, X509_REQ *req)
536 : : {
537 : : CONF ctmp;
538 : 0 : CONF_set_nconf(&ctmp, conf);
539 : 0 : return X509V3_EXT_REQ_add_nconf(&ctmp, ctx, section, req);
540 : : }
|