sl@0
|
1 |
/* ====================================================================
|
sl@0
|
2 |
* Copyright (c) 2001 The OpenSSL Project. All rights reserved.
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
5 |
* modification, are permitted provided that the following conditions
|
sl@0
|
6 |
* are met:
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
9 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
12 |
* notice, this list of conditions and the following disclaimer in
|
sl@0
|
13 |
* the documentation and/or other materials provided with the
|
sl@0
|
14 |
* distribution.
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* 3. All advertising materials mentioning features or use of this
|
sl@0
|
17 |
* software must display the following acknowledgment:
|
sl@0
|
18 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
19 |
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
sl@0
|
20 |
*
|
sl@0
|
21 |
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
sl@0
|
22 |
* endorse or promote products derived from this software without
|
sl@0
|
23 |
* prior written permission. For written permission, please contact
|
sl@0
|
24 |
* licensing@OpenSSL.org.
|
sl@0
|
25 |
*
|
sl@0
|
26 |
* 5. Products derived from this software may not be called "OpenSSL"
|
sl@0
|
27 |
* nor may "OpenSSL" appear in their names without prior written
|
sl@0
|
28 |
* permission of the OpenSSL Project.
|
sl@0
|
29 |
*
|
sl@0
|
30 |
* 6. Redistributions of any form whatsoever must retain the following
|
sl@0
|
31 |
* acknowledgment:
|
sl@0
|
32 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
33 |
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
sl@0
|
34 |
*
|
sl@0
|
35 |
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
sl@0
|
36 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
37 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
sl@0
|
38 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
sl@0
|
39 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
sl@0
|
40 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
sl@0
|
41 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
sl@0
|
42 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
43 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
44 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
sl@0
|
45 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
sl@0
|
46 |
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
47 |
* ====================================================================
|
sl@0
|
48 |
*
|
sl@0
|
49 |
* This product includes cryptographic software written by Eric Young
|
sl@0
|
50 |
* (eay@cryptsoft.com). This product includes software written by Tim
|
sl@0
|
51 |
* Hudson (tjh@cryptsoft.com).
|
sl@0
|
52 |
*
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
/*
|
sl@0
|
55 |
© Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
#include "cryptlib.h"
|
sl@0
|
60 |
#include <openssl/evp.h>
|
sl@0
|
61 |
#include <openssl/lhash.h>
|
sl@0
|
62 |
#include "eng_int.h"
|
sl@0
|
63 |
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
64 |
#include "libcrypto_wsd_macros.h"
|
sl@0
|
65 |
#include "libcrypto_wsd.h"
|
sl@0
|
66 |
#endif
|
sl@0
|
67 |
|
sl@0
|
68 |
/* The type of the items in the table */
|
sl@0
|
69 |
typedef struct st_engine_pile
|
sl@0
|
70 |
{
|
sl@0
|
71 |
/* The 'nid' of this algorithm/mode */
|
sl@0
|
72 |
int nid;
|
sl@0
|
73 |
/* ENGINEs that implement this algorithm/mode. */
|
sl@0
|
74 |
STACK_OF(ENGINE) *sk;
|
sl@0
|
75 |
/* The default ENGINE to perform this algorithm/mode. */
|
sl@0
|
76 |
ENGINE *funct;
|
sl@0
|
77 |
/* Zero if 'sk' is newer than the cached 'funct', non-zero otherwise */
|
sl@0
|
78 |
int uptodate;
|
sl@0
|
79 |
} ENGINE_PILE;
|
sl@0
|
80 |
|
sl@0
|
81 |
/* The type exposed in eng_int.h */
|
sl@0
|
82 |
struct st_engine_table
|
sl@0
|
83 |
{
|
sl@0
|
84 |
LHASH piles;
|
sl@0
|
85 |
}; /* ENGINE_TABLE */
|
sl@0
|
86 |
|
sl@0
|
87 |
/* Global flags (ENGINE_TABLE_FLAG_***). */
|
sl@0
|
88 |
#ifndef EMULATOR
|
sl@0
|
89 |
static unsigned int table_flags = 0;
|
sl@0
|
90 |
#else
|
sl@0
|
91 |
GET_STATIC_VAR_FROM_TLS(table_flags,eng_table,unsigned int)
|
sl@0
|
92 |
#define table_flags (*GET_WSD_VAR_NAME(table_flags,eng_table, s)())
|
sl@0
|
93 |
#endif
|
sl@0
|
94 |
|
sl@0
|
95 |
/* API function manipulating 'table_flags' */
|
sl@0
|
96 |
EXPORT_C unsigned int ENGINE_get_table_flags(void)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return table_flags;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
EXPORT_C void ENGINE_set_table_flags(unsigned int flags)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
table_flags = flags;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
/* Internal functions for the "piles" hash table */
|
sl@0
|
106 |
static unsigned long engine_pile_hash(const ENGINE_PILE *c)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
return c->nid;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
static int engine_pile_cmp(const ENGINE_PILE *a, const ENGINE_PILE *b)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
return a->nid - b->nid;
|
sl@0
|
113 |
}
|
sl@0
|
114 |
static IMPLEMENT_LHASH_HASH_FN(engine_pile_hash, const ENGINE_PILE *)
|
sl@0
|
115 |
static IMPLEMENT_LHASH_COMP_FN(engine_pile_cmp, const ENGINE_PILE *)
|
sl@0
|
116 |
static int int_table_check(ENGINE_TABLE **t, int create)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
LHASH *lh;
|
sl@0
|
119 |
if(*t) return 1;
|
sl@0
|
120 |
if(!create) return 0;
|
sl@0
|
121 |
if((lh = lh_new(LHASH_HASH_FN(engine_pile_hash),
|
sl@0
|
122 |
LHASH_COMP_FN(engine_pile_cmp))) == NULL)
|
sl@0
|
123 |
return 0;
|
sl@0
|
124 |
*t = (ENGINE_TABLE *)lh;
|
sl@0
|
125 |
return 1;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
/* Privately exposed (via eng_int.h) functions for adding and/or removing
|
sl@0
|
129 |
* ENGINEs from the implementation table */
|
sl@0
|
130 |
EXPORT_C int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
|
sl@0
|
131 |
ENGINE *e, const int *nids, int num_nids, int setdefault)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
int ret = 0, added = 0;
|
sl@0
|
134 |
ENGINE_PILE tmplate, *fnd;
|
sl@0
|
135 |
CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
136 |
if(!(*table))
|
sl@0
|
137 |
added = 1;
|
sl@0
|
138 |
if(!int_table_check(table, 1))
|
sl@0
|
139 |
goto end;
|
sl@0
|
140 |
if(added)
|
sl@0
|
141 |
/* The cleanup callback needs to be added */
|
sl@0
|
142 |
engine_cleanup_add_first(cleanup);
|
sl@0
|
143 |
while(num_nids--)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
tmplate.nid = *nids;
|
sl@0
|
146 |
fnd = lh_retrieve(&(*table)->piles, &tmplate);
|
sl@0
|
147 |
if(!fnd)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
fnd = OPENSSL_malloc(sizeof(ENGINE_PILE));
|
sl@0
|
150 |
if(!fnd) goto end;
|
sl@0
|
151 |
fnd->uptodate = 0;
|
sl@0
|
152 |
fnd->nid = *nids;
|
sl@0
|
153 |
fnd->sk = sk_ENGINE_new_null();
|
sl@0
|
154 |
if(!fnd->sk)
|
sl@0
|
155 |
{
|
sl@0
|
156 |
OPENSSL_free(fnd);
|
sl@0
|
157 |
goto end;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
fnd->funct = NULL;
|
sl@0
|
160 |
lh_insert(&(*table)->piles, fnd);
|
sl@0
|
161 |
}
|
sl@0
|
162 |
/* A registration shouldn't add duplciate entries */
|
sl@0
|
163 |
(void)sk_ENGINE_delete_ptr(fnd->sk, e);
|
sl@0
|
164 |
/* if 'setdefault', this ENGINE goes to the head of the list */
|
sl@0
|
165 |
if(!sk_ENGINE_push(fnd->sk, e))
|
sl@0
|
166 |
goto end;
|
sl@0
|
167 |
/* "touch" this ENGINE_PILE */
|
sl@0
|
168 |
fnd->uptodate = 1;
|
sl@0
|
169 |
if(setdefault)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
if(!engine_unlocked_init(e))
|
sl@0
|
172 |
{
|
sl@0
|
173 |
ENGINEerr(ENGINE_F_ENGINE_TABLE_REGISTER,
|
sl@0
|
174 |
ENGINE_R_INIT_FAILED);
|
sl@0
|
175 |
goto end;
|
sl@0
|
176 |
}
|
sl@0
|
177 |
if(fnd->funct)
|
sl@0
|
178 |
engine_unlocked_finish(fnd->funct, 0);
|
sl@0
|
179 |
fnd->funct = e;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
nids++;
|
sl@0
|
182 |
}
|
sl@0
|
183 |
ret = 1;
|
sl@0
|
184 |
end:
|
sl@0
|
185 |
CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
186 |
return ret;
|
sl@0
|
187 |
}
|
sl@0
|
188 |
static void int_unregister_cb(ENGINE_PILE *pile, ENGINE *e)
|
sl@0
|
189 |
{
|
sl@0
|
190 |
int n;
|
sl@0
|
191 |
/* Iterate the 'c->sk' stack removing any occurance of 'e' */
|
sl@0
|
192 |
while((n = sk_ENGINE_find(pile->sk, e)) >= 0)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
(void)sk_ENGINE_delete(pile->sk, n);
|
sl@0
|
195 |
/* "touch" this ENGINE_CIPHER */
|
sl@0
|
196 |
pile->uptodate = 1;
|
sl@0
|
197 |
}
|
sl@0
|
198 |
if(pile->funct == e)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
engine_unlocked_finish(e, 0);
|
sl@0
|
201 |
pile->funct = NULL;
|
sl@0
|
202 |
}
|
sl@0
|
203 |
}
|
sl@0
|
204 |
static IMPLEMENT_LHASH_DOALL_ARG_FN(int_unregister_cb,ENGINE_PILE *,ENGINE *)
|
sl@0
|
205 |
EXPORT_C void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e)
|
sl@0
|
206 |
{
|
sl@0
|
207 |
CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
208 |
if(int_table_check(table, 0))
|
sl@0
|
209 |
lh_doall_arg(&(*table)->piles,
|
sl@0
|
210 |
LHASH_DOALL_ARG_FN(int_unregister_cb), e);
|
sl@0
|
211 |
CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
static void int_cleanup_cb(ENGINE_PILE *p)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
sk_ENGINE_free(p->sk);
|
sl@0
|
217 |
if(p->funct)
|
sl@0
|
218 |
engine_unlocked_finish(p->funct, 0);
|
sl@0
|
219 |
OPENSSL_free(p);
|
sl@0
|
220 |
}
|
sl@0
|
221 |
static IMPLEMENT_LHASH_DOALL_FN(int_cleanup_cb,ENGINE_PILE *)
|
sl@0
|
222 |
EXPORT_C void engine_table_cleanup(ENGINE_TABLE **table)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
225 |
if(*table)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
lh_doall(&(*table)->piles, LHASH_DOALL_FN(int_cleanup_cb));
|
sl@0
|
228 |
lh_free(&(*table)->piles);
|
sl@0
|
229 |
*table = NULL;
|
sl@0
|
230 |
}
|
sl@0
|
231 |
CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
/* return a functional reference for a given 'nid' */
|
sl@0
|
235 |
#ifndef ENGINE_TABLE_DEBUG
|
sl@0
|
236 |
EXPORT_C ENGINE *engine_table_select(ENGINE_TABLE **table, int nid)
|
sl@0
|
237 |
#else
|
sl@0
|
238 |
EXPORT_C ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l)
|
sl@0
|
239 |
#endif
|
sl@0
|
240 |
{
|
sl@0
|
241 |
ENGINE *ret = NULL;
|
sl@0
|
242 |
ENGINE_PILE tmplate, *fnd=NULL;
|
sl@0
|
243 |
int initres, loop = 0;
|
sl@0
|
244 |
|
sl@0
|
245 |
if(!(*table))
|
sl@0
|
246 |
{
|
sl@0
|
247 |
#ifdef ENGINE_TABLE_DEBUG
|
sl@0
|
248 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, nothing "
|
sl@0
|
249 |
"registered!\n", f, l, nid);
|
sl@0
|
250 |
#endif
|
sl@0
|
251 |
return NULL;
|
sl@0
|
252 |
}
|
sl@0
|
253 |
CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
254 |
/* Check again inside the lock otherwise we could race against cleanup
|
sl@0
|
255 |
* operations. But don't worry about a fprintf(stderr). */
|
sl@0
|
256 |
if(!int_table_check(table, 0)) goto end;
|
sl@0
|
257 |
tmplate.nid = nid;
|
sl@0
|
258 |
fnd = lh_retrieve(&(*table)->piles, &tmplate);
|
sl@0
|
259 |
if(!fnd) goto end;
|
sl@0
|
260 |
if(fnd->funct && engine_unlocked_init(fnd->funct))
|
sl@0
|
261 |
{
|
sl@0
|
262 |
#ifdef ENGINE_TABLE_DEBUG
|
sl@0
|
263 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, using "
|
sl@0
|
264 |
"ENGINE '%s' cached\n", f, l, nid, fnd->funct->id);
|
sl@0
|
265 |
#endif
|
sl@0
|
266 |
ret = fnd->funct;
|
sl@0
|
267 |
goto end;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
if(fnd->uptodate)
|
sl@0
|
270 |
{
|
sl@0
|
271 |
ret = fnd->funct;
|
sl@0
|
272 |
goto end;
|
sl@0
|
273 |
}
|
sl@0
|
274 |
trynext:
|
sl@0
|
275 |
ret = sk_ENGINE_value(fnd->sk, loop++);
|
sl@0
|
276 |
if(!ret)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
#ifdef ENGINE_TABLE_DEBUG
|
sl@0
|
279 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, no "
|
sl@0
|
280 |
"registered implementations would initialise\n",
|
sl@0
|
281 |
f, l, nid);
|
sl@0
|
282 |
#endif
|
sl@0
|
283 |
goto end;
|
sl@0
|
284 |
}
|
sl@0
|
285 |
/* Try to initialise the ENGINE? */
|
sl@0
|
286 |
if((ret->funct_ref > 0) || !(table_flags & ENGINE_TABLE_FLAG_NOINIT))
|
sl@0
|
287 |
initres = engine_unlocked_init(ret);
|
sl@0
|
288 |
else
|
sl@0
|
289 |
initres = 0;
|
sl@0
|
290 |
if(initres)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
/* Update 'funct' */
|
sl@0
|
293 |
if((fnd->funct != ret) && engine_unlocked_init(ret))
|
sl@0
|
294 |
{
|
sl@0
|
295 |
/* If there was a previous default we release it. */
|
sl@0
|
296 |
if(fnd->funct)
|
sl@0
|
297 |
engine_unlocked_finish(fnd->funct, 0);
|
sl@0
|
298 |
fnd->funct = ret;
|
sl@0
|
299 |
#ifdef ENGINE_TABLE_DEBUG
|
sl@0
|
300 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, "
|
sl@0
|
301 |
"setting default to '%s'\n", f, l, nid, ret->id);
|
sl@0
|
302 |
#endif
|
sl@0
|
303 |
}
|
sl@0
|
304 |
#ifdef ENGINE_TABLE_DEBUG
|
sl@0
|
305 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, using "
|
sl@0
|
306 |
"newly initialised '%s'\n", f, l, nid, ret->id);
|
sl@0
|
307 |
#endif
|
sl@0
|
308 |
goto end;
|
sl@0
|
309 |
}
|
sl@0
|
310 |
goto trynext;
|
sl@0
|
311 |
end:
|
sl@0
|
312 |
/* If it failed, it is unlikely to succeed again until some future
|
sl@0
|
313 |
* registrations have taken place. In all cases, we cache. */
|
sl@0
|
314 |
if(fnd) fnd->uptodate = 1;
|
sl@0
|
315 |
#ifdef ENGINE_TABLE_DEBUG
|
sl@0
|
316 |
if(ret)
|
sl@0
|
317 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, caching "
|
sl@0
|
318 |
"ENGINE '%s'\n", f, l, nid, ret->id);
|
sl@0
|
319 |
else
|
sl@0
|
320 |
fprintf(stderr, "engine_table_dbg: %s:%d, nid=%d, caching "
|
sl@0
|
321 |
"'no matching ENGINE'\n", f, l, nid);
|
sl@0
|
322 |
#endif
|
sl@0
|
323 |
CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
|
sl@0
|
324 |
/* Whatever happened, any failed init()s are not failures in this
|
sl@0
|
325 |
* context, so clear our error state. */
|
sl@0
|
326 |
ERR_clear_error();
|
sl@0
|
327 |
return ret;
|
sl@0
|
328 |
}
|