blob: d8eb076a68f650bf06cb0271e1170152c469164b [file] [log] [blame]
Matt Caswell0f113f32015-01-22 03:40:55 +00001/*
Rich Salzb1322252016-05-17 14:52:22 -04002 * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
Richard Levitte5270e702000-10-26 21:07:28 +00008 */
Rich Salzb1322252016-05-17 14:52:22 -04009
Bodo Möllere172d602002-08-09 08:43:04 +000010/* ====================================================================
11 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
Matt Caswell0f113f32015-01-22 03:40:55 +000012 * ECDH support in OpenSSL originally developed by
Bodo Möllere172d602002-08-09 08:43:04 +000013 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
14 */
Richard Levitte5270e702000-10-26 21:07:28 +000015
Ulf Möller14cfde92001-09-07 04:14:48 +000016#include "eng_int.h"
Richard Levitte5270e702000-10-26 21:07:28 +000017
Matt Caswell0f113f32015-01-22 03:40:55 +000018/*
19 * The linked-list of pointers to engine types. engine_list_head incorporates
20 * an implicit structural reference but engine_list_tail does not - the
21 * latter is a computational niceity and only points to something that is
22 * already pointed to by its predecessor in the list (or engine_list_head
23 * itself). In the same way, the use of the "prev" pointer in each ENGINE is
24 * to save excessive list iteration, it doesn't correspond to an extra
25 * structural reference. Hence, engine_list_head, and each non-null "next"
26 * pointer account for the list itself assuming exactly 1 structural
27 * reference on each list member.
28 */
Richard Levitte5270e702000-10-26 21:07:28 +000029static ENGINE *engine_list_head = NULL;
30static ENGINE *engine_list_tail = NULL;
Geoff Thorpeb6d1e522001-09-25 20:00:51 +000031
Matt Caswell0f113f32015-01-22 03:40:55 +000032/*
33 * This cleanup function is only needed internally. If it should be called,
Matt Caswellb3599db2016-04-12 12:20:16 +010034 * we register it with the "engine_cleanup_int()" stack to be called during
Matt Caswell0f113f32015-01-22 03:40:55 +000035 * cleanup.
36 */
Geoff Thorpeb6d1e522001-09-25 20:00:51 +000037
38static void engine_list_cleanup(void)
Matt Caswell0f113f32015-01-22 03:40:55 +000039{
40 ENGINE *iterator = engine_list_head;
Geoff Thorpeb6d1e522001-09-25 20:00:51 +000041
Matt Caswell0f113f32015-01-22 03:40:55 +000042 while (iterator != NULL) {
43 ENGINE_remove(iterator);
44 iterator = engine_list_head;
45 }
46 return;
47}
Richard Levitte5270e702000-10-26 21:07:28 +000048
Matt Caswell0f113f32015-01-22 03:40:55 +000049/*
50 * These static functions starting with a lower case "engine_" always take
Matt Caswell40e068d2016-03-08 16:44:34 +000051 * place when global_engine_lock has been locked up.
Matt Caswell0f113f32015-01-22 03:40:55 +000052 */
Richard Levitte5270e702000-10-26 21:07:28 +000053static int engine_list_add(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +000054{
55 int conflict = 0;
56 ENGINE *iterator = NULL;
Richard Levitte5270e702000-10-26 21:07:28 +000057
Matt Caswell0f113f32015-01-22 03:40:55 +000058 if (e == NULL) {
59 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ERR_R_PASSED_NULL_PARAMETER);
60 return 0;
61 }
62 iterator = engine_list_head;
63 while (iterator && !conflict) {
64 conflict = (strcmp(iterator->id, e->id) == 0);
65 iterator = iterator->next;
66 }
67 if (conflict) {
68 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_CONFLICTING_ENGINE_ID);
69 return 0;
70 }
71 if (engine_list_head == NULL) {
72 /* We are adding to an empty list. */
73 if (engine_list_tail) {
74 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_INTERNAL_LIST_ERROR);
75 return 0;
76 }
77 engine_list_head = e;
78 e->prev = NULL;
79 /*
80 * The first time the list allocates, we should register the cleanup.
81 */
82 engine_cleanup_add_last(engine_list_cleanup);
83 } else {
84 /* We are adding to the tail of an existing list. */
85 if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) {
86 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD, ENGINE_R_INTERNAL_LIST_ERROR);
87 return 0;
88 }
89 engine_list_tail->next = e;
90 e->prev = engine_list_tail;
91 }
92 /*
93 * Having the engine in the list assumes a structural reference.
94 */
95 e->struct_ref++;
FdaSilvaYY43d67022016-01-31 19:49:39 +010096 engine_ref_debug(e, 0, 1);
97 /* However it came to be, e is the last item in the list. */
98 engine_list_tail = e;
Matt Caswell0f113f32015-01-22 03:40:55 +000099 e->next = NULL;
100 return 1;
101}
Richard Levitte5270e702000-10-26 21:07:28 +0000102
103static int engine_list_remove(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +0000104{
105 ENGINE *iterator;
Richard Levitte5270e702000-10-26 21:07:28 +0000106
Matt Caswell0f113f32015-01-22 03:40:55 +0000107 if (e == NULL) {
108 ENGINEerr(ENGINE_F_ENGINE_LIST_REMOVE, ERR_R_PASSED_NULL_PARAMETER);
109 return 0;
110 }
111 /* We need to check that e is in our linked list! */
112 iterator = engine_list_head;
113 while (iterator && (iterator != e))
114 iterator = iterator->next;
115 if (iterator == NULL) {
116 ENGINEerr(ENGINE_F_ENGINE_LIST_REMOVE,
117 ENGINE_R_ENGINE_IS_NOT_IN_LIST);
118 return 0;
119 }
120 /* un-link e from the chain. */
121 if (e->next)
122 e->next->prev = e->prev;
123 if (e->prev)
124 e->prev->next = e->next;
125 /* Correct our head/tail if necessary. */
126 if (engine_list_head == e)
127 engine_list_head = e->next;
128 if (engine_list_tail == e)
129 engine_list_tail = e->prev;
130 engine_free_util(e, 0);
131 return 1;
132}
Richard Levitte5270e702000-10-26 21:07:28 +0000133
134/* Get the first/last "ENGINE" type available. */
135ENGINE *ENGINE_get_first(void)
Matt Caswell0f113f32015-01-22 03:40:55 +0000136{
137 ENGINE *ret;
Richard Levitte5270e702000-10-26 21:07:28 +0000138
Richard Levittec2e4e5d2016-07-19 19:42:11 +0200139 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) {
140 ENGINEerr(ENGINE_F_ENGINE_GET_FIRST, ERR_R_MALLOC_FAILURE);
141 return NULL;
142 }
143
Matt Caswell40e068d2016-03-08 16:44:34 +0000144 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000145 ret = engine_list_head;
146 if (ret) {
147 ret->struct_ref++;
FdaSilvaYY43d67022016-01-31 19:49:39 +0100148 engine_ref_debug(ret, 0, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +0000149 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000150 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000151 return ret;
152}
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000153
Richard Levitte5270e702000-10-26 21:07:28 +0000154ENGINE *ENGINE_get_last(void)
Matt Caswell0f113f32015-01-22 03:40:55 +0000155{
156 ENGINE *ret;
Richard Levitte5270e702000-10-26 21:07:28 +0000157
Richard Levittec2e4e5d2016-07-19 19:42:11 +0200158 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) {
159 ENGINEerr(ENGINE_F_ENGINE_GET_LAST, ERR_R_MALLOC_FAILURE);
160 return NULL;
161 }
162
Matt Caswell40e068d2016-03-08 16:44:34 +0000163 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000164 ret = engine_list_tail;
165 if (ret) {
166 ret->struct_ref++;
FdaSilvaYY43d67022016-01-31 19:49:39 +0100167 engine_ref_debug(ret, 0, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +0000168 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000169 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000170 return ret;
171}
Richard Levitte5270e702000-10-26 21:07:28 +0000172
173/* Iterate to the next/previous "ENGINE" type (NULL = end of the list). */
174ENGINE *ENGINE_get_next(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +0000175{
176 ENGINE *ret = NULL;
177 if (e == NULL) {
178 ENGINEerr(ENGINE_F_ENGINE_GET_NEXT, ERR_R_PASSED_NULL_PARAMETER);
179 return 0;
180 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000181 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000182 ret = e->next;
183 if (ret) {
FdaSilvaYY0d4fb842016-02-05 15:23:54 -0500184 /* Return a valid structural reference to the next ENGINE */
Matt Caswell0f113f32015-01-22 03:40:55 +0000185 ret->struct_ref++;
FdaSilvaYY43d67022016-01-31 19:49:39 +0100186 engine_ref_debug(ret, 0, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +0000187 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000188 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000189 /* Release the structural reference to the previous ENGINE */
190 ENGINE_free(e);
191 return ret;
192}
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000193
Richard Levitte5270e702000-10-26 21:07:28 +0000194ENGINE *ENGINE_get_prev(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +0000195{
196 ENGINE *ret = NULL;
197 if (e == NULL) {
198 ENGINEerr(ENGINE_F_ENGINE_GET_PREV, ERR_R_PASSED_NULL_PARAMETER);
199 return 0;
200 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000201 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000202 ret = e->prev;
203 if (ret) {
204 /* Return a valid structural reference to the next ENGINE */
205 ret->struct_ref++;
FdaSilvaYY43d67022016-01-31 19:49:39 +0100206 engine_ref_debug(ret, 0, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +0000207 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000208 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000209 /* Release the structural reference to the previous ENGINE */
210 ENGINE_free(e);
211 return ret;
212}
Richard Levitte5270e702000-10-26 21:07:28 +0000213
214/* Add another "ENGINE" type into the list. */
215int ENGINE_add(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +0000216{
217 int to_return = 1;
218 if (e == NULL) {
219 ENGINEerr(ENGINE_F_ENGINE_ADD, ERR_R_PASSED_NULL_PARAMETER);
220 return 0;
221 }
222 if ((e->id == NULL) || (e->name == NULL)) {
223 ENGINEerr(ENGINE_F_ENGINE_ADD, ENGINE_R_ID_OR_NAME_MISSING);
Richard Levitte5850cc72015-10-08 11:53:07 +0200224 return 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000225 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000226 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000227 if (!engine_list_add(e)) {
228 ENGINEerr(ENGINE_F_ENGINE_ADD, ENGINE_R_INTERNAL_LIST_ERROR);
229 to_return = 0;
230 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000231 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000232 return to_return;
233}
Richard Levitte5270e702000-10-26 21:07:28 +0000234
235/* Remove an existing "ENGINE" type from the array. */
236int ENGINE_remove(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +0000237{
238 int to_return = 1;
239 if (e == NULL) {
240 ENGINEerr(ENGINE_F_ENGINE_REMOVE, ERR_R_PASSED_NULL_PARAMETER);
241 return 0;
242 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000243 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000244 if (!engine_list_remove(e)) {
245 ENGINEerr(ENGINE_F_ENGINE_REMOVE, ENGINE_R_INTERNAL_LIST_ERROR);
246 to_return = 0;
247 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000248 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000249 return to_return;
250}
Richard Levitte5270e702000-10-26 21:07:28 +0000251
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000252static void engine_cpy(ENGINE *dest, const ENGINE *src)
Matt Caswell0f113f32015-01-22 03:40:55 +0000253{
254 dest->id = src->id;
255 dest->name = src->name;
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000256#ifndef OPENSSL_NO_RSA
Matt Caswell0f113f32015-01-22 03:40:55 +0000257 dest->rsa_meth = src->rsa_meth;
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000258#endif
259#ifndef OPENSSL_NO_DSA
Matt Caswell0f113f32015-01-22 03:40:55 +0000260 dest->dsa_meth = src->dsa_meth;
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000261#endif
262#ifndef OPENSSL_NO_DH
Matt Caswell0f113f32015-01-22 03:40:55 +0000263 dest->dh_meth = src->dh_meth;
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000264#endif
Rich Salz10bf4fc2015-03-10 19:09:27 -0400265#ifndef OPENSSL_NO_EC
Dr. Stephen Henson7d711cb2015-10-28 12:29:43 +0000266 dest->ec_meth = src->ec_meth;
Bodo Möller4d94ae02002-02-13 18:21:51 +0000267#endif
Matt Caswell0f113f32015-01-22 03:40:55 +0000268 dest->rand_meth = src->rand_meth;
Matt Caswell0f113f32015-01-22 03:40:55 +0000269 dest->ciphers = src->ciphers;
270 dest->digests = src->digests;
271 dest->pkey_meths = src->pkey_meths;
272 dest->destroy = src->destroy;
273 dest->init = src->init;
274 dest->finish = src->finish;
275 dest->ctrl = src->ctrl;
276 dest->load_privkey = src->load_privkey;
277 dest->load_pubkey = src->load_pubkey;
278 dest->cmd_defns = src->cmd_defns;
279 dest->flags = src->flags;
280}
Geoff Thorpeb6d1e522001-09-25 20:00:51 +0000281
Richard Levitte5270e702000-10-26 21:07:28 +0000282ENGINE *ENGINE_by_id(const char *id)
Matt Caswell0f113f32015-01-22 03:40:55 +0000283{
284 ENGINE *iterator;
285 char *load_dir = NULL;
286 if (id == NULL) {
287 ENGINEerr(ENGINE_F_ENGINE_BY_ID, ERR_R_PASSED_NULL_PARAMETER);
288 return NULL;
289 }
Richard Levittec2e4e5d2016-07-19 19:42:11 +0200290 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)) {
291 ENGINEerr(ENGINE_F_ENGINE_BY_ID, ERR_R_MALLOC_FAILURE);
292 return NULL;
293 }
294
Matt Caswell40e068d2016-03-08 16:44:34 +0000295 CRYPTO_THREAD_write_lock(global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000296 iterator = engine_list_head;
297 while (iterator && (strcmp(id, iterator->id) != 0))
298 iterator = iterator->next;
Matt Caswell90945fa2015-10-30 11:12:26 +0000299 if (iterator != NULL) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000300 /*
301 * We need to return a structural reference. If this is an ENGINE
302 * type that returns copies, make a duplicate - otherwise increment
303 * the existing ENGINE's reference count.
304 */
305 if (iterator->flags & ENGINE_FLAGS_BY_ID_COPY) {
306 ENGINE *cp = ENGINE_new();
Matt Caswell90945fa2015-10-30 11:12:26 +0000307 if (cp == NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000308 iterator = NULL;
309 else {
310 engine_cpy(cp, iterator);
311 iterator = cp;
312 }
313 } else {
314 iterator->struct_ref++;
FdaSilvaYY43d67022016-01-31 19:49:39 +0100315 engine_ref_debug(iterator, 0, 1);
Matt Caswell0f113f32015-01-22 03:40:55 +0000316 }
317 }
Matt Caswell40e068d2016-03-08 16:44:34 +0000318 CRYPTO_THREAD_unlock(global_engine_lock);
Matt Caswell90945fa2015-10-30 11:12:26 +0000319 if (iterator != NULL)
Matt Caswell0f113f32015-01-22 03:40:55 +0000320 return iterator;
321 /*
FdaSilvaYY0d4fb842016-02-05 15:23:54 -0500322 * Prevent infinite recursion if we're looking for the dynamic engine.
Matt Caswell0f113f32015-01-22 03:40:55 +0000323 */
324 if (strcmp(id, "dynamic")) {
Matt Caswell0f113f32015-01-22 03:40:55 +0000325 if ((load_dir = getenv("OPENSSL_ENGINES")) == 0)
326 load_dir = ENGINESDIR;
Matt Caswell0f113f32015-01-22 03:40:55 +0000327 iterator = ENGINE_by_id("dynamic");
328 if (!iterator || !ENGINE_ctrl_cmd_string(iterator, "ID", id, 0) ||
329 !ENGINE_ctrl_cmd_string(iterator, "DIR_LOAD", "2", 0) ||
330 !ENGINE_ctrl_cmd_string(iterator, "DIR_ADD",
331 load_dir, 0) ||
332 !ENGINE_ctrl_cmd_string(iterator, "LIST_ADD", "1", 0) ||
333 !ENGINE_ctrl_cmd_string(iterator, "LOAD", NULL, 0))
334 goto notfound;
335 return iterator;
336 }
337 notfound:
338 ENGINE_free(iterator);
339 ENGINEerr(ENGINE_F_ENGINE_BY_ID, ENGINE_R_NO_SUCH_ENGINE);
340 ERR_add_error_data(2, "id=", id);
341 return NULL;
342 /* EEK! Experimental code ends */
Matt Caswell0f113f32015-01-22 03:40:55 +0000343}
Geoff Thorpe314c6672002-10-16 01:29:37 +0000344
345int ENGINE_up_ref(ENGINE *e)
Matt Caswell0f113f32015-01-22 03:40:55 +0000346{
Matt Caswell40e068d2016-03-08 16:44:34 +0000347 int i;
Matt Caswell0f113f32015-01-22 03:40:55 +0000348 if (e == NULL) {
349 ENGINEerr(ENGINE_F_ENGINE_UP_REF, ERR_R_PASSED_NULL_PARAMETER);
350 return 0;
351 }
Kurt Roeckx2f545ae2016-08-27 16:01:08 +0200352 CRYPTO_UP_REF(&e->struct_ref, &i, global_engine_lock);
Matt Caswell0f113f32015-01-22 03:40:55 +0000353 return 1;
354}