]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/engine/eng_cnf.c
Use "==0" instead of "!strcmp" etc
[thirdparty/openssl.git] / crypto / engine / eng_cnf.c
CommitLineData
c9501c22 1/* eng_cnf.c */
0f113f3e
MC
2/*
3 * Written by Stephen Henson (steve@openssl.org) for the OpenSSL project
4 * 2001.
c9501c22
DSH
5 */
6/* ====================================================================
7 * Copyright (c) 2001 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
0f113f3e 14 * notice, this list of conditions and the following disclaimer.
c9501c22
DSH
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
60a938c6 60#include "eng_int.h"
c9501c22 61#include <openssl/conf.h>
c9501c22
DSH
62
63/* #define ENGINE_CONF_DEBUG */
64
65/* ENGINE config module */
66
67static char *skip_dot(char *name)
0f113f3e
MC
68{
69 char *p;
70 p = strchr(name, '.');
71 if (p)
72 return p + 1;
73 return name;
74}
c9501c22 75
0dc09233
DSH
76static STACK_OF(ENGINE) *initialized_engines = NULL;
77
78static int int_engine_init(ENGINE *e)
0f113f3e
MC
79{
80 if (!ENGINE_init(e))
81 return 0;
82 if (!initialized_engines)
83 initialized_engines = sk_ENGINE_new_null();
84 if (!initialized_engines || !sk_ENGINE_push(initialized_engines, e)) {
85 ENGINE_finish(e);
86 return 0;
87 }
88 return 1;
89}
0dc09233 90
40889b9c 91static int int_engine_configure(char *name, char *value, const CONF *cnf)
0f113f3e
MC
92{
93 int i;
94 int ret = 0;
95 long do_init = -1;
96 STACK_OF(CONF_VALUE) *ecmds;
97 CONF_VALUE *ecmd = NULL;
98 char *ctrlname, *ctrlvalue;
99 ENGINE *e = NULL;
100 int soft = 0;
101
102 name = skip_dot(name);
c9501c22 103#ifdef ENGINE_CONF_DEBUG
0f113f3e 104 fprintf(stderr, "Configuring engine %s\n", name);
c9501c22 105#endif
0f113f3e
MC
106 /* Value is a section containing ENGINE commands */
107 ecmds = NCONF_get_section(cnf, value);
108
109 if (!ecmds) {
110 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE,
111 ENGINE_R_ENGINE_SECTION_ERROR);
112 return 0;
113 }
114
115 for (i = 0; i < sk_CONF_VALUE_num(ecmds); i++) {
116 ecmd = sk_CONF_VALUE_value(ecmds, i);
117 ctrlname = skip_dot(ecmd->name);
118 ctrlvalue = ecmd->value;
c9501c22 119#ifdef ENGINE_CONF_DEBUG
0f113f3e
MC
120 fprintf(stderr, "ENGINE conf: doing ctrl(%s,%s)\n", ctrlname,
121 ctrlvalue);
c9501c22
DSH
122#endif
123
0f113f3e
MC
124 /* First handle some special pseudo ctrls */
125
126 /* Override engine name to use */
86885c28 127 if (strcmp(ctrlname, "engine_id") == 0)
0f113f3e 128 name = ctrlvalue;
86885c28 129 else if (strcmp(ctrlname, "soft_load") == 0)
0f113f3e
MC
130 soft = 1;
131 /* Load a dynamic ENGINE */
86885c28 132 else if (strcmp(ctrlname, "dynamic_path") == 0) {
0f113f3e
MC
133 e = ENGINE_by_id("dynamic");
134 if (!e)
135 goto err;
136 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", ctrlvalue, 0))
137 goto err;
138 if (!ENGINE_ctrl_cmd_string(e, "LIST_ADD", "2", 0))
139 goto err;
140 if (!ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0))
141 goto err;
142 }
143 /* ... add other pseudos here ... */
144 else {
145 /*
146 * At this point we need an ENGINE structural reference if we
147 * don't already have one.
148 */
149 if (!e) {
150 e = ENGINE_by_id(name);
151 if (!e && soft) {
152 ERR_clear_error();
153 return 1;
154 }
155 if (!e)
156 goto err;
157 }
158 /*
159 * Allow "EMPTY" to mean no value: this allows a valid "value" to
160 * be passed to ctrls of type NO_INPUT
161 */
86885c28 162 if (strcmp(ctrlvalue, "EMPTY") == 0)
0f113f3e 163 ctrlvalue = NULL;
86885c28 164 if (strcmp(ctrlname, "init") == 0) {
0f113f3e
MC
165 if (!NCONF_get_number_e(cnf, value, "init", &do_init))
166 goto err;
167 if (do_init == 1) {
168 if (!int_engine_init(e))
169 goto err;
170 } else if (do_init != 0) {
171 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE,
172 ENGINE_R_INVALID_INIT_VALUE);
173 goto err;
174 }
86885c28 175 } else if (strcmp(ctrlname, "default_algorithms") == 0) {
0f113f3e
MC
176 if (!ENGINE_set_default_string(e, ctrlvalue))
177 goto err;
178 } else if (!ENGINE_ctrl_cmd_string(e, ctrlname, ctrlvalue, 0))
179 goto err;
180 }
181
182 }
183 if (e && (do_init == -1) && !int_engine_init(e)) {
184 ecmd = NULL;
185 goto err;
186 }
187 ret = 1;
188 err:
189 if (ret != 1) {
190 ENGINEerr(ENGINE_F_INT_ENGINE_CONFIGURE,
191 ENGINE_R_ENGINE_CONFIGURATION_ERROR);
192 if (ecmd)
193 ERR_add_error_data(6, "section=", ecmd->section,
194 ", name=", ecmd->name,
195 ", value=", ecmd->value);
196 }
efa7dd64 197 ENGINE_free(e);
0f113f3e
MC
198 return ret;
199}
c9501c22
DSH
200
201static int int_engine_module_init(CONF_IMODULE *md, const CONF *cnf)
0f113f3e
MC
202{
203 STACK_OF(CONF_VALUE) *elist;
204 CONF_VALUE *cval;
205 int i;
c9501c22 206#ifdef ENGINE_CONF_DEBUG
0f113f3e
MC
207 fprintf(stderr, "Called engine module: name %s, value %s\n",
208 CONF_imodule_get_name(md), CONF_imodule_get_value(md));
c9501c22 209#endif
0f113f3e
MC
210 /* Value is a section containing ENGINEs to configure */
211 elist = NCONF_get_section(cnf, CONF_imodule_get_value(md));
c9501c22 212
0f113f3e
MC
213 if (!elist) {
214 ENGINEerr(ENGINE_F_INT_ENGINE_MODULE_INIT,
215 ENGINE_R_ENGINES_SECTION_ERROR);
216 return 0;
217 }
c9501c22 218
0f113f3e
MC
219 for (i = 0; i < sk_CONF_VALUE_num(elist); i++) {
220 cval = sk_CONF_VALUE_value(elist, i);
221 if (!int_engine_configure(cval->name, cval->value, cnf))
222 return 0;
223 }
c9501c22 224
0f113f3e
MC
225 return 1;
226}
c9501c22 227
0dc09233 228static void int_engine_module_finish(CONF_IMODULE *md)
0f113f3e
MC
229{
230 ENGINE *e;
231 while ((e = sk_ENGINE_pop(initialized_engines)))
232 ENGINE_finish(e);
233 sk_ENGINE_free(initialized_engines);
234 initialized_engines = NULL;
235}
0dc09233 236
c9501c22 237void ENGINE_add_conf_module(void)
0f113f3e
MC
238{
239 CONF_module_add("engines",
240 int_engine_module_init, int_engine_module_finish);
241}