VirtualBox

source: vbox/trunk/src/libs/openssl-1.1.0g/crypto/engine/eng_lib.c@ 69881

Last change on this file since 69881 was 69881, checked in by vboxsync, 7 years ago

Update OpenSSL to 1.1.0g.
bugref:8070: src/libs maintenance

  • Property svn:eol-style set to native
File size: 6.4 KB
Line 
1/*
2 * 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
8 */
9
10#include "eng_int.h"
11#include <openssl/rand.h>
12
13CRYPTO_RWLOCK *global_engine_lock;
14
15CRYPTO_ONCE engine_lock_init = CRYPTO_ONCE_STATIC_INIT;
16
17/* The "new"/"free" stuff first */
18
19DEFINE_RUN_ONCE(do_engine_lock_init)
20{
21 OPENSSL_init_crypto(0, NULL);
22 global_engine_lock = CRYPTO_THREAD_lock_new();
23 return global_engine_lock != NULL;
24}
25
26ENGINE *ENGINE_new(void)
27{
28 ENGINE *ret;
29
30 if (!RUN_ONCE(&engine_lock_init, do_engine_lock_init)
31 || (ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) {
32 ENGINEerr(ENGINE_F_ENGINE_NEW, ERR_R_MALLOC_FAILURE);
33 return NULL;
34 }
35 ret->struct_ref = 1;
36 engine_ref_debug(ret, 0, 1);
37 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data)) {
38 OPENSSL_free(ret);
39 return NULL;
40 }
41 return ret;
42}
43
44/*
45 * Placed here (close proximity to ENGINE_new) so that modifications to the
46 * elements of the ENGINE structure are more likely to be caught and changed
47 * here.
48 */
49void engine_set_all_null(ENGINE *e)
50{
51 e->id = NULL;
52 e->name = NULL;
53 e->rsa_meth = NULL;
54 e->dsa_meth = NULL;
55 e->dh_meth = NULL;
56 e->rand_meth = NULL;
57 e->ciphers = NULL;
58 e->digests = NULL;
59 e->destroy = NULL;
60 e->init = NULL;
61 e->finish = NULL;
62 e->ctrl = NULL;
63 e->load_privkey = NULL;
64 e->load_pubkey = NULL;
65 e->cmd_defns = NULL;
66 e->flags = 0;
67}
68
69int engine_free_util(ENGINE *e, int locked)
70{
71 int i;
72
73 if (e == NULL)
74 return 1;
75 if (locked)
76 CRYPTO_atomic_add(&e->struct_ref, -1, &i, global_engine_lock);
77 else
78 i = --e->struct_ref;
79 engine_ref_debug(e, 0, -1)
80 if (i > 0)
81 return 1;
82 REF_ASSERT_ISNT(i < 0);
83 /* Free up any dynamically allocated public key methods */
84 engine_pkey_meths_free(e);
85 engine_pkey_asn1_meths_free(e);
86 /*
87 * Give the ENGINE a chance to do any structural cleanup corresponding to
88 * allocation it did in its constructor (eg. unload error strings)
89 */
90 if (e->destroy)
91 e->destroy(e);
92 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ENGINE, e, &e->ex_data);
93 OPENSSL_free(e);
94 return 1;
95}
96
97int ENGINE_free(ENGINE *e)
98{
99 return engine_free_util(e, 1);
100}
101
102/* Cleanup stuff */
103
104/*
105 * engine_cleanup_int() is coded such that anything that does work that will
106 * need cleanup can register a "cleanup" callback here. That way we don't get
107 * linker bloat by referring to all *possible* cleanups, but any linker bloat
108 * into code "X" will cause X's cleanup function to end up here.
109 */
110static STACK_OF(ENGINE_CLEANUP_ITEM) *cleanup_stack = NULL;
111static int int_cleanup_check(int create)
112{
113 if (cleanup_stack)
114 return 1;
115 if (!create)
116 return 0;
117 cleanup_stack = sk_ENGINE_CLEANUP_ITEM_new_null();
118 return (cleanup_stack ? 1 : 0);
119}
120
121static ENGINE_CLEANUP_ITEM *int_cleanup_item(ENGINE_CLEANUP_CB *cb)
122{
123 ENGINE_CLEANUP_ITEM *item = OPENSSL_malloc(sizeof(*item));
124 if (item == NULL)
125 return NULL;
126 item->cb = cb;
127 return item;
128}
129
130void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb)
131{
132 ENGINE_CLEANUP_ITEM *item;
133 if (!int_cleanup_check(1))
134 return;
135 item = int_cleanup_item(cb);
136 if (item)
137 sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0);
138}
139
140void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb)
141{
142 ENGINE_CLEANUP_ITEM *item;
143 if (!int_cleanup_check(1))
144 return;
145 item = int_cleanup_item(cb);
146 if (item)
147 sk_ENGINE_CLEANUP_ITEM_push(cleanup_stack, item);
148}
149
150/* The API function that performs all cleanup */
151static void engine_cleanup_cb_free(ENGINE_CLEANUP_ITEM *item)
152{
153 (*(item->cb)) ();
154 OPENSSL_free(item);
155}
156
157void engine_cleanup_int(void)
158{
159 if (int_cleanup_check(0)) {
160 sk_ENGINE_CLEANUP_ITEM_pop_free(cleanup_stack,
161 engine_cleanup_cb_free);
162 cleanup_stack = NULL;
163 }
164 CRYPTO_THREAD_lock_free(global_engine_lock);
165}
166
167/* Now the "ex_data" support */
168
169int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg)
170{
171 return (CRYPTO_set_ex_data(&e->ex_data, idx, arg));
172}
173
174void *ENGINE_get_ex_data(const ENGINE *e, int idx)
175{
176 return (CRYPTO_get_ex_data(&e->ex_data, idx));
177}
178
179/*
180 * Functions to get/set an ENGINE's elements - mainly to avoid exposing the
181 * ENGINE structure itself.
182 */
183
184int ENGINE_set_id(ENGINE *e, const char *id)
185{
186 if (id == NULL) {
187 ENGINEerr(ENGINE_F_ENGINE_SET_ID, ERR_R_PASSED_NULL_PARAMETER);
188 return 0;
189 }
190 e->id = id;
191 return 1;
192}
193
194int ENGINE_set_name(ENGINE *e, const char *name)
195{
196 if (name == NULL) {
197 ENGINEerr(ENGINE_F_ENGINE_SET_NAME, ERR_R_PASSED_NULL_PARAMETER);
198 return 0;
199 }
200 e->name = name;
201 return 1;
202}
203
204int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f)
205{
206 e->destroy = destroy_f;
207 return 1;
208}
209
210int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f)
211{
212 e->init = init_f;
213 return 1;
214}
215
216int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f)
217{
218 e->finish = finish_f;
219 return 1;
220}
221
222int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f)
223{
224 e->ctrl = ctrl_f;
225 return 1;
226}
227
228int ENGINE_set_flags(ENGINE *e, int flags)
229{
230 e->flags = flags;
231 return 1;
232}
233
234int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns)
235{
236 e->cmd_defns = defns;
237 return 1;
238}
239
240const char *ENGINE_get_id(const ENGINE *e)
241{
242 return e->id;
243}
244
245const char *ENGINE_get_name(const ENGINE *e)
246{
247 return e->name;
248}
249
250ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e)
251{
252 return e->destroy;
253}
254
255ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e)
256{
257 return e->init;
258}
259
260ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e)
261{
262 return e->finish;
263}
264
265ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e)
266{
267 return e->ctrl;
268}
269
270int ENGINE_get_flags(const ENGINE *e)
271{
272 return e->flags;
273}
274
275const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e)
276{
277 return e->cmd_defns;
278}
279
280/*
281 * eng_lib.o is pretty much linked into anything that touches ENGINE already,
282 * so put the "static_state" hack here.
283 */
284
285static int internal_static_hack = 0;
286
287void *ENGINE_get_static_state(void)
288{
289 return &internal_static_hack;
290}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette