2 * Copyright (c) 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 __RCSID("$Heimdal: engine.c 20828 2007-06-03 05:10:20Z lha $"
58 void (*destroy
)(ENGINE
*);
59 const RSA_METHOD
*rsa
;
61 const RAND_METHOD
*rand
;
65 ENGINE_finish(ENGINE
*engine
)
67 if (engine
->references
-- <= 0)
69 if (engine
->references
> 0)
77 (*engine
->destroy
)(engine
);
79 memset(engine
, 0, sizeof(engine
));
80 engine
->references
= -1;
88 ENGINE_up_ref(ENGINE
*engine
)
90 if (engine
->references
< 0)
97 ENGINE_set_id(ENGINE
*engine
, const char *id
)
99 engine
->id
= strdup(id
);
100 return (engine
->id
== NULL
) ? 0 : 1;
104 ENGINE_set_name(ENGINE
*engine
, const char *name
)
106 engine
->name
= strdup(name
);
107 return (engine
->name
== NULL
) ? 0 : 1;
111 ENGINE_set_RSA(ENGINE
*engine
, const RSA_METHOD
*method
)
113 engine
->rsa
= method
;
118 ENGINE_set_DH(ENGINE
*engine
, const DH_METHOD
*method
)
125 ENGINE_set_destroy_function(ENGINE
*e
, void (*destroy
)(ENGINE
*))
127 e
->destroy
= destroy
;
132 ENGINE_get_id(const ENGINE
*engine
)
138 ENGINE_get_name(const ENGINE
*engine
)
144 ENGINE_get_RSA(const ENGINE
*engine
)
150 ENGINE_get_DH(const ENGINE
*engine
)
156 ENGINE_get_RAND(const ENGINE
*engine
)
165 #define SG_default_engine(type) \
166 static ENGINE *type##_engine; \
168 ENGINE_set_default_##type(ENGINE *engine) \
171 ENGINE_finish(type##_engine); \
172 type##_engine = engine; \
174 ENGINE_up_ref(type##_engine); \
178 ENGINE_get_default_##type(void) \
181 ENGINE_up_ref(type##_engine); \
182 return type##_engine; \
185 SG_default_engine(RSA
)
186 SG_default_engine(DH
)
188 #undef SG_default_engine
194 static ENGINE
**engines
;
195 static unsigned int num_engines
;
198 add_engine(ENGINE
*engine
)
202 dup
= ENGINE_by_id(engine
->id
);
208 d
= realloc(engines
, (num_engines
+ 1) * sizeof(*engines
));
212 engines
[num_engines
++] = engine
;
218 ENGINE_load_builtin_engines(void)
223 engine
= calloc(1, sizeof(*engine
));
227 ENGINE_set_id(engine
, "builtin");
228 ENGINE_set_name(engine
,
229 "Heimdal crypto builtin engine version " PACKAGE_VERSION
);
230 ENGINE_set_RSA(engine
, RSA_imath_method());
231 ENGINE_set_DH(engine
, DH_imath_method());
233 ret
= add_engine(engine
);
235 ENGINE_finish(engine
);
239 ENGINE_by_dso(const char *path
, const char *id
)
246 engine
= calloc(1, sizeof(*engine
));
250 handle
= dlopen(path
, RTLD_NOW
);
251 if (handle
== NULL
) {
252 /* printf("error: %s\n", dlerror()); */
258 unsigned long version
;
259 openssl_v_check v_check
;
261 v_check
= (openssl_v_check
)dlsym(handle
, "v_check");
262 if (v_check
== NULL
) {
268 version
= (*v_check
)(OPENSSL_DYNAMIC_VERSION
);
277 openssl_bind_engine bind_engine
;
279 bind_engine
= (openssl_bind_engine
)dlsym(handle
, "bind_engine");
280 if (bind_engine
== NULL
) {
286 ret
= (*bind_engine
)(engine
, id
, NULL
); /* XXX fix third arg */
294 ENGINE_up_ref(engine
);
296 ret
= add_engine(engine
);
299 ENGINE_finish(engine
);
310 ENGINE_by_id(const char *id
)
314 for (i
= 0; i
< num_engines
; i
++) {
315 if (strcmp(id
, engines
[i
]->id
) == 0) {
316 ENGINE_up_ref(engines
[i
]);
324 ENGINE_add_conf_module(void)