source: EcnlProtoTool/trunk/openssl-1.1.0e/crypto/ex_data.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc
File size: 10.6 KB
Line 
1/*
2 * Copyright 1995-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 "internal/cryptlib_int.h"
11#include "internal/thread_once.h"
12#include <openssl/lhash.h>
13
14/*
15 * Each structure type (sometimes called a class), that supports
16 * exdata has a stack of callbacks for each instance.
17 */
18struct ex_callback_st {
19 long argl; /* Arbitrary long */
20 void *argp; /* Arbitrary void * */
21 CRYPTO_EX_new *new_func;
22 CRYPTO_EX_free *free_func;
23 CRYPTO_EX_dup *dup_func;
24};
25
26/*
27 * The state for each class. This could just be a typedef, but
28 * a structure allows future changes.
29 */
30typedef struct ex_callbacks_st {
31 STACK_OF(EX_CALLBACK) *meth;
32} EX_CALLBACKS;
33
34static EX_CALLBACKS ex_data[CRYPTO_EX_INDEX__COUNT];
35
36static CRYPTO_RWLOCK *ex_data_lock = NULL;
37static CRYPTO_ONCE ex_data_init = CRYPTO_ONCE_STATIC_INIT;
38
39DEFINE_RUN_ONCE_STATIC(do_ex_data_init)
40{
41 OPENSSL_init_crypto(0, NULL);
42 ex_data_lock = CRYPTO_THREAD_lock_new();
43 return ex_data_lock != NULL;
44}
45
46/*
47 * Return the EX_CALLBACKS from the |ex_data| array that corresponds to
48 * a given class. On success, *holds the lock.*
49 */
50static EX_CALLBACKS *get_and_lock(int class_index)
51{
52 EX_CALLBACKS *ip;
53
54 if (class_index < 0 || class_index >= CRYPTO_EX_INDEX__COUNT) {
55 CRYPTOerr(CRYPTO_F_GET_AND_LOCK, ERR_R_PASSED_INVALID_ARGUMENT);
56 return NULL;
57 }
58
59 if (!RUN_ONCE(&ex_data_init, do_ex_data_init)) {
60 CRYPTOerr(CRYPTO_F_GET_AND_LOCK, ERR_R_MALLOC_FAILURE);
61 return NULL;
62 }
63
64 if (ex_data_lock == NULL) {
65 /*
66 * This can happen in normal operation when using CRYPTO_mem_leaks().
67 * The CRYPTO_mem_leaks() function calls OPENSSL_cleanup() which cleans
68 * up the locks. Subsequently the BIO that CRYPTO_mem_leaks() uses gets
69 * freed, which also attempts to free the ex_data. However
70 * CRYPTO_mem_leaks() ensures that the ex_data is freed early (i.e.
71 * before OPENSSL_cleanup() is called), so if we get here we can safely
72 * ignore this operation. We just treat it as an error.
73 */
74 return NULL;
75 }
76
77 ip = &ex_data[class_index];
78 CRYPTO_THREAD_write_lock(ex_data_lock);
79 return ip;
80}
81
82static void cleanup_cb(EX_CALLBACK *funcs)
83{
84 OPENSSL_free(funcs);
85}
86
87/*
88 * Release all "ex_data" state to prevent memory leaks. This can't be made
89 * thread-safe without overhauling a lot of stuff, and shouldn't really be
90 * called under potential race-conditions anyway (it's for program shutdown
91 * after all).
92 */
93void crypto_cleanup_all_ex_data_int(void)
94{
95 int i;
96
97 for (i = 0; i < CRYPTO_EX_INDEX__COUNT; ++i) {
98 EX_CALLBACKS *ip = &ex_data[i];
99
100 sk_EX_CALLBACK_pop_free(ip->meth, cleanup_cb);
101 ip->meth = NULL;
102 }
103
104 CRYPTO_THREAD_lock_free(ex_data_lock);
105 ex_data_lock = NULL;
106}
107
108
109/*
110 * Unregister a new index by replacing the callbacks with no-ops.
111 * Any in-use instances are leaked.
112 */
113static void dummy_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx,
114 long argl, void *argp)
115{
116}
117
118static void dummy_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx,
119 long argl, void *argp)
120{
121}
122
123static int dummy_dup(CRYPTO_EX_DATA *to, const CRYPTO_EX_DATA *from,
124 void *from_d, int idx,
125 long argl, void *argp)
126{
127 return 0;
128}
129
130int CRYPTO_free_ex_index(int class_index, int idx)
131{
132 EX_CALLBACKS *ip = get_and_lock(class_index);
133 EX_CALLBACK *a;
134 int toret = 0;
135
136 if (ip == NULL)
137 return 0;
138 if (idx < 0 || idx >= sk_EX_CALLBACK_num(ip->meth))
139 goto err;
140 a = sk_EX_CALLBACK_value(ip->meth, idx);
141 if (a == NULL)
142 goto err;
143 a->new_func = dummy_new;
144 a->dup_func = dummy_dup;
145 a->free_func = dummy_free;
146 toret = 1;
147err:
148 CRYPTO_THREAD_unlock(ex_data_lock);
149 return toret;
150}
151
152/*
153 * Register a new index.
154 */
155int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp,
156 CRYPTO_EX_new *new_func, CRYPTO_EX_dup *dup_func,
157 CRYPTO_EX_free *free_func)
158{
159 int toret = -1;
160 EX_CALLBACK *a;
161 EX_CALLBACKS *ip = get_and_lock(class_index);
162
163 if (ip == NULL)
164 return -1;
165
166 if (ip->meth == NULL) {
167 ip->meth = sk_EX_CALLBACK_new_null();
168 /* We push an initial value on the stack because the SSL
169 * "app_data" routines use ex_data index zero. See RT 3710. */
170 if (ip->meth == NULL
171 || !sk_EX_CALLBACK_push(ip->meth, NULL)) {
172 CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX, ERR_R_MALLOC_FAILURE);
173 goto err;
174 }
175 }
176
177 a = (EX_CALLBACK *)OPENSSL_malloc(sizeof(*a));
178 if (a == NULL) {
179 CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX, ERR_R_MALLOC_FAILURE);
180 goto err;
181 }
182 a->argl = argl;
183 a->argp = argp;
184 a->new_func = new_func;
185 a->dup_func = dup_func;
186 a->free_func = free_func;
187
188 if (!sk_EX_CALLBACK_push(ip->meth, NULL)) {
189 CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX, ERR_R_MALLOC_FAILURE);
190 OPENSSL_free(a);
191 goto err;
192 }
193 toret = sk_EX_CALLBACK_num(ip->meth) - 1;
194 (void)sk_EX_CALLBACK_set(ip->meth, toret, a);
195
196 err:
197 CRYPTO_THREAD_unlock(ex_data_lock);
198 return toret;
199}
200
201/*
202 * Initialise a new CRYPTO_EX_DATA for use in a particular class - including
203 * calling new() callbacks for each index in the class used by this variable
204 * Thread-safe by copying a class's array of "EX_CALLBACK" entries
205 * in the lock, then using them outside the lock. Note this only applies
206 * to the global "ex_data" state (ie. class definitions), not 'ad' itself.
207 */
208int CRYPTO_new_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad)
209{
210 int mx, i;
211 void *ptr;
212 EX_CALLBACK **storage = NULL;
213 EX_CALLBACK *stack[10];
214 EX_CALLBACKS *ip = get_and_lock(class_index);
215
216 if (ip == NULL)
217 return 0;
218
219 ad->sk = NULL;
220
221 mx = sk_EX_CALLBACK_num(ip->meth);
222 if (mx > 0) {
223 if (mx < (int)OSSL_NELEM(stack))
224 storage = stack;
225 else
226 storage = OPENSSL_malloc(sizeof(*storage) * mx);
227 if (storage != NULL)
228 for (i = 0; i < mx; i++)
229 storage[i] = sk_EX_CALLBACK_value(ip->meth, i);
230 }
231 CRYPTO_THREAD_unlock(ex_data_lock);
232
233 if (mx > 0 && storage == NULL) {
234 CRYPTOerr(CRYPTO_F_CRYPTO_NEW_EX_DATA, ERR_R_MALLOC_FAILURE);
235 return 0;
236 }
237 for (i = 0; i < mx; i++) {
238 if (storage[i] && storage[i]->new_func) {
239 ptr = CRYPTO_get_ex_data(ad, i);
240 storage[i]->new_func(obj, ptr, ad, i,
241 storage[i]->argl, storage[i]->argp);
242 }
243 }
244 if (storage != stack)
245 OPENSSL_free(storage);
246 return 1;
247}
248
249/*
250 * Duplicate a CRYPTO_EX_DATA variable - including calling dup() callbacks
251 * for each index in the class used by this variable
252 */
253int CRYPTO_dup_ex_data(int class_index, CRYPTO_EX_DATA *to,
254 const CRYPTO_EX_DATA *from)
255{
256 int mx, j, i;
257 char *ptr;
258 EX_CALLBACK *stack[10];
259 EX_CALLBACK **storage = NULL;
260 EX_CALLBACKS *ip;
261
262 if (from->sk == NULL)
263 /* Nothing to copy over */
264 return 1;
265 if ((ip = get_and_lock(class_index)) == NULL)
266 return 0;
267
268 mx = sk_EX_CALLBACK_num(ip->meth);
269 j = sk_void_num(from->sk);
270 if (j < mx)
271 mx = j;
272 if (mx > 0) {
273 if (mx < (int)OSSL_NELEM(stack))
274 storage = stack;
275 else
276 storage = OPENSSL_malloc(sizeof(*storage) * mx);
277 if (storage != NULL)
278 for (i = 0; i < mx; i++)
279 storage[i] = sk_EX_CALLBACK_value(ip->meth, i);
280 }
281 CRYPTO_THREAD_unlock(ex_data_lock);
282
283 if (mx > 0 && storage == NULL) {
284 CRYPTOerr(CRYPTO_F_CRYPTO_DUP_EX_DATA, ERR_R_MALLOC_FAILURE);
285 return 0;
286 }
287
288 for (i = 0; i < mx; i++) {
289 ptr = CRYPTO_get_ex_data(from, i);
290 if (storage[i] && storage[i]->dup_func)
291 storage[i]->dup_func(to, from, &ptr, i,
292 storage[i]->argl, storage[i]->argp);
293 CRYPTO_set_ex_data(to, i, ptr);
294 }
295 if (storage != stack)
296 OPENSSL_free(storage);
297 return 1;
298}
299
300
301/*
302 * Cleanup a CRYPTO_EX_DATA variable - including calling free() callbacks for
303 * each index in the class used by this variable
304 */
305void CRYPTO_free_ex_data(int class_index, void *obj, CRYPTO_EX_DATA *ad)
306{
307 int mx, i;
308 EX_CALLBACKS *ip;
309 void *ptr;
310 EX_CALLBACK *f;
311 EX_CALLBACK *stack[10];
312 EX_CALLBACK **storage = NULL;
313
314 if ((ip = get_and_lock(class_index)) == NULL)
315 goto err;
316
317 mx = sk_EX_CALLBACK_num(ip->meth);
318 if (mx > 0) {
319 if (mx < (int)OSSL_NELEM(stack))
320 storage = stack;
321 else
322 storage = OPENSSL_malloc(sizeof(*storage) * mx);
323 if (storage != NULL)
324 for (i = 0; i < mx; i++)
325 storage[i] = sk_EX_CALLBACK_value(ip->meth, i);
326 }
327 CRYPTO_THREAD_unlock(ex_data_lock);
328
329 for (i = 0; i < mx; i++) {
330 if (storage != NULL)
331 f = storage[i];
332 else {
333 CRYPTO_THREAD_write_lock(ex_data_lock);
334 f = sk_EX_CALLBACK_value(ip->meth, i);
335 CRYPTO_THREAD_unlock(ex_data_lock);
336 }
337 if (f != NULL && f->free_func != NULL) {
338 ptr = CRYPTO_get_ex_data(ad, i);
339 f->free_func(obj, ptr, ad, i, f->argl, f->argp);
340 }
341 }
342
343 if (storage != stack)
344 OPENSSL_free(storage);
345 err:
346 sk_void_free(ad->sk);
347 ad->sk = NULL;
348}
349
350/*
351 * For a given CRYPTO_EX_DATA variable, set the value corresponding to a
352 * particular index in the class used by this variable
353 */
354int CRYPTO_set_ex_data(CRYPTO_EX_DATA *ad, int idx, void *val)
355{
356 int i;
357
358 if (ad->sk == NULL) {
359 if ((ad->sk = sk_void_new_null()) == NULL) {
360 CRYPTOerr(CRYPTO_F_CRYPTO_SET_EX_DATA, ERR_R_MALLOC_FAILURE);
361 return 0;
362 }
363 }
364
365 for (i = sk_void_num(ad->sk); i <= idx; ++i) {
366 if (!sk_void_push(ad->sk, NULL)) {
367 CRYPTOerr(CRYPTO_F_CRYPTO_SET_EX_DATA, ERR_R_MALLOC_FAILURE);
368 return 0;
369 }
370 }
371 sk_void_set(ad->sk, idx, val);
372 return 1;
373}
374
375/*
376 * For a given CRYPTO_EX_DATA_ variable, get the value corresponding to a
377 * particular index in the class used by this variable
378 */
379void *CRYPTO_get_ex_data(const CRYPTO_EX_DATA *ad, int idx)
380{
381 if (ad->sk == NULL || idx >= sk_void_num(ad->sk))
382 return NULL;
383 return sk_void_value(ad->sk, idx);
384}
Note: See TracBrowser for help on using the repository browser.