blob: a82c838ac6b4dfc3d9e9595465029f59a3ee7057 [file] [log] [blame]
Kinson Chika8fa74c2011-07-29 11:33:41 -07001/* conf_lib.c */
2/* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 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
59#include <stdio.h>
60#include <openssl/crypto.h>
61#include <openssl/err.h>
62#include <openssl/conf.h>
63#include <openssl/conf_api.h>
64#include <openssl/lhash.h>
Unnati Gandhia7e1fe02014-07-17 14:45:43 +053065#include <bio.h>
Kinson Chika8fa74c2011-07-29 11:33:41 -070066
67const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;
68
69static CONF_METHOD *default_CONF_method=NULL;
70
71/* Init a 'CONF' structure from an old LHASH */
72
73void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
74 {
75 if (default_CONF_method == NULL)
76 default_CONF_method = NCONF_default();
77
78 default_CONF_method->init(conf);
79 conf->data = hash;
80 }
81
82/* The following section contains the "CONF classic" functions,
83 rewritten in terms of the new CONF interface. */
84
85int CONF_set_default_method(CONF_METHOD *meth)
86 {
87 default_CONF_method = meth;
88 return 1;
89 }
90
91LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
92 long *eline)
93 {
94 LHASH_OF(CONF_VALUE) *ltmp;
95 BIO *in=NULL;
96
97#ifdef OPENSSL_SYS_VMS
Unnati Gandhia7e1fe02014-07-17 14:45:43 +053098 in= (BIO *)BIO_new_file(file, "r");
Kinson Chika8fa74c2011-07-29 11:33:41 -070099#else
Unnati Gandhia7e1fe02014-07-17 14:45:43 +0530100 in= (BIO *)BIO_new_file(file, "rb");
Kinson Chika8fa74c2011-07-29 11:33:41 -0700101#endif
102 if (in == NULL)
103 {
104 CONFerr(CONF_F_CONF_LOAD,ERR_R_SYS_LIB);
105 return NULL;
106 }
107
108 ltmp = CONF_load_bio(conf, in, eline);
109 BIO_free(in);
110
111 return ltmp;
112 }
113
114#ifndef OPENSSL_NO_FP_API
115LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
116 long *eline)
117 {
118 BIO *btmp;
119 LHASH_OF(CONF_VALUE) *ltmp;
120 if(!(btmp = BIO_new_fp(fp, BIO_NOCLOSE))) {
121 CONFerr(CONF_F_CONF_LOAD_FP,ERR_R_BUF_LIB);
122 return NULL;
123 }
124 ltmp = CONF_load_bio(conf, btmp, eline);
125 BIO_free(btmp);
126 return ltmp;
127 }
128#endif
129
130LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
131 long *eline)
132 {
133 CONF ctmp;
134 int ret;
135
136 CONF_set_nconf(&ctmp, conf);
137
138 ret = NCONF_load_bio(&ctmp, bp, eline);
139 if (ret)
140 return ctmp.data;
141 return NULL;
142 }
143
144STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
145 const char *section)
146 {
147 if (conf == NULL)
148 {
149 return NULL;
150 }
151 else
152 {
153 CONF ctmp;
154 CONF_set_nconf(&ctmp, conf);
155 return NCONF_get_section(&ctmp, section);
156 }
157 }
158
159char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf,const char *group,
160 const char *name)
161 {
162 if (conf == NULL)
163 {
164 return NCONF_get_string(NULL, group, name);
165 }
166 else
167 {
168 CONF ctmp;
169 CONF_set_nconf(&ctmp, conf);
170 return NCONF_get_string(&ctmp, group, name);
171 }
172 }
173
174long CONF_get_number(LHASH_OF(CONF_VALUE) *conf,const char *group,
175 const char *name)
176 {
177 int status;
178 long result = 0;
179
180 if (conf == NULL)
181 {
182 status = NCONF_get_number_e(NULL, group, name, &result);
183 }
184 else
185 {
186 CONF ctmp;
187 CONF_set_nconf(&ctmp, conf);
188 status = NCONF_get_number_e(&ctmp, group, name, &result);
189 }
190
191 if (status == 0)
192 {
193 /* This function does not believe in errors... */
194 ERR_clear_error();
195 }
196 return result;
197 }
198
199void CONF_free(LHASH_OF(CONF_VALUE) *conf)
200 {
201 CONF ctmp;
202 CONF_set_nconf(&ctmp, conf);
203 NCONF_free_data(&ctmp);
204 }
205
206#ifndef OPENSSL_NO_FP_API
207int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out)
208 {
209 BIO *btmp;
210 int ret;
211
212 if(!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) {
213 CONFerr(CONF_F_CONF_DUMP_FP,ERR_R_BUF_LIB);
214 return 0;
215 }
216 ret = CONF_dump_bio(conf, btmp);
217 BIO_free(btmp);
218 return ret;
219 }
220#endif
221
222int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out)
223 {
224 CONF ctmp;
225 CONF_set_nconf(&ctmp, conf);
226 return NCONF_dump_bio(&ctmp, out);
227 }
228
229/* The following section contains the "New CONF" functions. They are
230 completely centralised around a new CONF structure that may contain
231 basically anything, but at least a method pointer and a table of data.
232 These functions are also written in terms of the bridge functions used
233 by the "CONF classic" functions, for consistency. */
234
235CONF *NCONF_new(CONF_METHOD *meth)
236 {
237 CONF *ret;
238
239 if (meth == NULL)
240 meth = NCONF_default();
241
242 ret = meth->create(meth);
243 if (ret == NULL)
244 {
245 CONFerr(CONF_F_NCONF_NEW,ERR_R_MALLOC_FAILURE);
246 return(NULL);
247 }
248
249 return ret;
250 }
251
252void NCONF_free(CONF *conf)
253 {
254 if (conf == NULL)
255 return;
256 conf->meth->destroy(conf);
257 }
258
259void NCONF_free_data(CONF *conf)
260 {
261 if (conf == NULL)
262 return;
263 conf->meth->destroy_data(conf);
264 }
265
266int NCONF_load(CONF *conf, const char *file, long *eline)
267 {
268 if (conf == NULL)
269 {
270 CONFerr(CONF_F_NCONF_LOAD,CONF_R_NO_CONF);
271 return 0;
272 }
273
274 return conf->meth->load(conf, file, eline);
275 }
276
277#ifndef OPENSSL_NO_FP_API
278int NCONF_load_fp(CONF *conf, FILE *fp,long *eline)
279 {
280 BIO *btmp;
281 int ret;
282 if(!(btmp = BIO_new_fp(fp, BIO_NOCLOSE)))
283 {
284 CONFerr(CONF_F_NCONF_LOAD_FP,ERR_R_BUF_LIB);
285 return 0;
286 }
287 ret = NCONF_load_bio(conf, btmp, eline);
288 BIO_free(btmp);
289 return ret;
290 }
291#endif
292
293int NCONF_load_bio(CONF *conf, BIO *bp,long *eline)
294 {
295 if (conf == NULL)
296 {
297 CONFerr(CONF_F_NCONF_LOAD_BIO,CONF_R_NO_CONF);
298 return 0;
299 }
300
301 return conf->meth->load_bio(conf, bp, eline);
302 }
303
304STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,const char *section)
305 {
306 if (conf == NULL)
307 {
308 CONFerr(CONF_F_NCONF_GET_SECTION,CONF_R_NO_CONF);
309 return NULL;
310 }
311
312 if (section == NULL)
313 {
314 CONFerr(CONF_F_NCONF_GET_SECTION,CONF_R_NO_SECTION);
315 return NULL;
316 }
317
318 return _CONF_get_section_values(conf, section);
319 }
320
321char *NCONF_get_string(const CONF *conf,const char *group,const char *name)
322 {
323 char *s = _CONF_get_string(conf, group, name);
324
325 /* Since we may get a value from an environment variable even
326 if conf is NULL, let's check the value first */
327 if (s) return s;
328
329 if (conf == NULL)
330 {
331 CONFerr(CONF_F_NCONF_GET_STRING,
332 CONF_R_NO_CONF_OR_ENVIRONMENT_VARIABLE);
333 return NULL;
334 }
335 CONFerr(CONF_F_NCONF_GET_STRING,
336 CONF_R_NO_VALUE);
337 ERR_add_error_data(4,"group=",group," name=",name);
338 return NULL;
339 }
340
341int NCONF_get_number_e(const CONF *conf,const char *group,const char *name,
342 long *result)
343 {
344 char *str;
345
346 if (result == NULL)
347 {
348 CONFerr(CONF_F_NCONF_GET_NUMBER_E,ERR_R_PASSED_NULL_PARAMETER);
349 return 0;
350 }
351
352 str = NCONF_get_string(conf,group,name);
353
354 if (str == NULL)
355 return 0;
356
357 for (*result = 0;conf->meth->is_number(conf, *str);)
358 {
359 *result = (*result)*10 + conf->meth->to_int(conf, *str);
360 str++;
361 }
362
363 return 1;
364 }
365
366#ifndef OPENSSL_NO_FP_API
367int NCONF_dump_fp(const CONF *conf, FILE *out)
368 {
369 BIO *btmp;
370 int ret;
371 if(!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) {
372 CONFerr(CONF_F_NCONF_DUMP_FP,ERR_R_BUF_LIB);
373 return 0;
374 }
375 ret = NCONF_dump_bio(conf, btmp);
376 BIO_free(btmp);
377 return ret;
378 }
379#endif
380
381int NCONF_dump_bio(const CONF *conf, BIO *out)
382 {
383 if (conf == NULL)
384 {
385 CONFerr(CONF_F_NCONF_DUMP_BIO,CONF_R_NO_CONF);
386 return 0;
387 }
388
389 return conf->meth->dump(conf, out);
390 }
391
392
393/* This function should be avoided */
394#if 0
395long NCONF_get_number(CONF *conf,char *group,char *name)
396 {
397 int status;
398 long ret=0;
399
400 status = NCONF_get_number_e(conf, group, name, &ret);
401 if (status == 0)
402 {
403 /* This function does not believe in errors... */
404 ERR_get_error();
405 }
406 return ret;
407 }
408#endif