Fix memory leaks in ASN.1
[openssl.git] / crypto / conf / conf_api.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 /* Part of the code in here was originally in conf.c, which is now removed */
59
60 #include <stdlib.h>
61 #include <string.h>
62 #include <openssl/conf.h>
63 #include <openssl/conf_api.h>
64 #include "e_os.h"
65
66 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf);
67 static void value_free_stack_doall(CONF_VALUE *a);
68
69 /* Up until OpenSSL 0.9.5a, this was get_section */
70 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
71 {
72     CONF_VALUE *v, vv;
73
74     if ((conf == NULL) || (section == NULL))
75         return (NULL);
76     vv.name = NULL;
77     vv.section = (char *)section;
78     v = lh_CONF_VALUE_retrieve(conf->data, &vv);
79     return (v);
80 }
81
82 /* Up until OpenSSL 0.9.5a, this was CONF_get_section */
83 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
84                                                const char *section)
85 {
86     CONF_VALUE *v;
87
88     v = _CONF_get_section(conf, section);
89     if (v != NULL)
90         return ((STACK_OF(CONF_VALUE) *)v->value);
91     else
92         return (NULL);
93 }
94
95 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
96 {
97     CONF_VALUE *v = NULL;
98     STACK_OF(CONF_VALUE) *ts;
99
100     ts = (STACK_OF(CONF_VALUE) *)section->value;
101
102     value->section = section->section;
103     if (!sk_CONF_VALUE_push(ts, value)) {
104         return 0;
105     }
106
107     v = lh_CONF_VALUE_insert(conf->data, value);
108     if (v != NULL) {
109         (void)sk_CONF_VALUE_delete_ptr(ts, v);
110         OPENSSL_free(v->name);
111         OPENSSL_free(v->value);
112         OPENSSL_free(v);
113     }
114     return 1;
115 }
116
117 char *_CONF_get_string(const CONF *conf, const char *section,
118                        const char *name)
119 {
120     CONF_VALUE *v, vv;
121     char *p;
122
123     if (name == NULL)
124         return (NULL);
125     if (conf != NULL) {
126         if (section != NULL) {
127             vv.name = (char *)name;
128             vv.section = (char *)section;
129             v = lh_CONF_VALUE_retrieve(conf->data, &vv);
130             if (v != NULL)
131                 return (v->value);
132             if (strcmp(section, "ENV") == 0) {
133                 p = getenv(name);
134                 if (p != NULL)
135                     return (p);
136             }
137         }
138         vv.section = "default";
139         vv.name = (char *)name;
140         v = lh_CONF_VALUE_retrieve(conf->data, &vv);
141         if (v != NULL)
142             return (v->value);
143         else
144             return (NULL);
145     } else
146         return (getenv(name));
147 }
148
149 static unsigned long conf_value_hash(const CONF_VALUE *v)
150 {
151     return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name);
152 }
153
154 static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b)
155 {
156     int i;
157
158     if (a->section != b->section) {
159         i = strcmp(a->section, b->section);
160         if (i)
161             return (i);
162     }
163
164     if ((a->name != NULL) && (b->name != NULL)) {
165         i = strcmp(a->name, b->name);
166         return (i);
167     } else if (a->name == b->name)
168         return (0);
169     else
170         return ((a->name == NULL) ? -1 : 1);
171 }
172
173 int _CONF_new_data(CONF *conf)
174 {
175     if (conf == NULL) {
176         return 0;
177     }
178     if (conf->data == NULL) {
179         conf->data = lh_CONF_VALUE_new(conf_value_hash, conf_value_cmp);
180         if (conf->data == NULL)
181             return 0;
182     }
183     return 1;
184 }
185
186 typedef LHASH_OF(CONF_VALUE) LH_CONF_VALUE;
187
188 IMPLEMENT_LHASH_DOALL_ARG_CONST(CONF_VALUE, LH_CONF_VALUE);
189
190 void _CONF_free_data(CONF *conf)
191 {
192     if (conf == NULL || conf->data == NULL)
193         return;
194
195     /* evil thing to make sure the 'OPENSSL_free()' works as expected */
196     lh_CONF_VALUE_set_down_load(conf->data, 0);
197     lh_CONF_VALUE_doall_LH_CONF_VALUE(conf->data, value_free_hash, conf->data);
198
199     /*
200      * We now have only 'section' entries in the hash table. Due to problems
201      * with
202      */
203
204     lh_CONF_VALUE_doall(conf->data, value_free_stack_doall);
205     lh_CONF_VALUE_free(conf->data);
206 }
207
208 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf)
209 {
210     if (a->name != NULL)
211         (void)lh_CONF_VALUE_delete(conf, a);
212 }
213
214 static void value_free_stack_doall(CONF_VALUE *a)
215 {
216     CONF_VALUE *vv;
217     STACK_OF(CONF_VALUE) *sk;
218     int i;
219
220     if (a->name != NULL)
221         return;
222
223     sk = (STACK_OF(CONF_VALUE) *)a->value;
224     for (i = sk_CONF_VALUE_num(sk) - 1; i >= 0; i--) {
225         vv = sk_CONF_VALUE_value(sk, i);
226         OPENSSL_free(vv->value);
227         OPENSSL_free(vv->name);
228         OPENSSL_free(vv);
229     }
230     sk_CONF_VALUE_free(sk);
231     OPENSSL_free(a->section);
232     OPENSSL_free(a);
233 }
234
235 /* Up until OpenSSL 0.9.5a, this was new_section */
236 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
237 {
238     STACK_OF(CONF_VALUE) *sk = NULL;
239     int i;
240     CONF_VALUE *v = NULL, *vv;
241
242     if ((sk = sk_CONF_VALUE_new_null()) == NULL)
243         goto err;
244     if ((v = OPENSSL_malloc(sizeof(*v))) == NULL)
245         goto err;
246     i = strlen(section) + 1;
247     if ((v->section = OPENSSL_malloc(i)) == NULL)
248         goto err;
249
250     memcpy(v->section, section, i);
251     v->name = NULL;
252     v->value = (char *)sk;
253
254     vv = lh_CONF_VALUE_insert(conf->data, v);
255     OPENSSL_assert(vv == NULL);
256     return v;
257
258  err:
259     sk_CONF_VALUE_free(sk);
260     OPENSSL_free(v);
261     return NULL;
262 }