BIO_s_connect(): Enable BIO_gets()
[openssl.git] / crypto / context.c
1 /*
2  * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (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 "crypto/cryptlib.h"
11 #include <openssl/conf.h>
12 #include "internal/thread_once.h"
13 #include "internal/property.h"
14 #include "internal/core.h"
15 #include "internal/bio.h"
16 #include "internal/provider.h"
17
18 struct ossl_lib_ctx_onfree_list_st {
19     ossl_lib_ctx_onfree_fn *fn;
20     struct ossl_lib_ctx_onfree_list_st *next;
21 };
22
23 struct ossl_lib_ctx_st {
24     CRYPTO_RWLOCK *lock;
25     CRYPTO_EX_DATA data;
26
27     /*
28      * For most data in the OSSL_LIB_CTX we just use ex_data to store it. But
29      * that doesn't work for ex_data itself - so we store that directly.
30      */
31     OSSL_EX_DATA_GLOBAL global;
32
33     /* Map internal static indexes to dynamically created indexes */
34     int dyn_indexes[OSSL_LIB_CTX_MAX_INDEXES];
35
36     /* Keep a separate lock for each index */
37     CRYPTO_RWLOCK *index_locks[OSSL_LIB_CTX_MAX_INDEXES];
38
39     CRYPTO_RWLOCK *oncelock;
40     int run_once_done[OSSL_LIB_CTX_MAX_RUN_ONCE];
41     int run_once_ret[OSSL_LIB_CTX_MAX_RUN_ONCE];
42     struct ossl_lib_ctx_onfree_list_st *onfreelist;
43     unsigned int ischild:1;
44 };
45
46 int ossl_lib_ctx_write_lock(OSSL_LIB_CTX *ctx)
47 {
48     return CRYPTO_THREAD_write_lock(ossl_lib_ctx_get_concrete(ctx)->lock);
49 }
50
51 int ossl_lib_ctx_read_lock(OSSL_LIB_CTX *ctx)
52 {
53     return CRYPTO_THREAD_read_lock(ossl_lib_ctx_get_concrete(ctx)->lock);
54 }
55
56 int ossl_lib_ctx_unlock(OSSL_LIB_CTX *ctx)
57 {
58     return CRYPTO_THREAD_unlock(ossl_lib_ctx_get_concrete(ctx)->lock);
59 }
60
61 int ossl_lib_ctx_is_child(OSSL_LIB_CTX *ctx)
62 {
63     ctx = ossl_lib_ctx_get_concrete(ctx);
64
65     if (ctx == NULL)
66         return 0;
67     return ctx->ischild;
68 }
69
70 static int context_init(OSSL_LIB_CTX *ctx)
71 {
72     size_t i;
73     int exdata_done = 0;
74
75     ctx->lock = CRYPTO_THREAD_lock_new();
76     if (ctx->lock == NULL)
77         return 0;
78
79     ctx->oncelock = CRYPTO_THREAD_lock_new();
80     if (ctx->oncelock == NULL)
81         goto err;
82
83     for (i = 0; i < OSSL_LIB_CTX_MAX_INDEXES; i++) {
84         ctx->index_locks[i] = CRYPTO_THREAD_lock_new();
85         ctx->dyn_indexes[i] = -1;
86         if (ctx->index_locks[i] == NULL)
87             goto err;
88     }
89
90     /* OSSL_LIB_CTX is built on top of ex_data so we initialise that directly */
91     if (!ossl_do_ex_data_init(ctx))
92         goto err;
93     exdata_done = 1;
94
95     if (!ossl_crypto_new_ex_data_ex(ctx, CRYPTO_EX_INDEX_OSSL_LIB_CTX, NULL,
96                                     &ctx->data)) {
97         ossl_crypto_cleanup_all_ex_data_int(ctx);
98         goto err;
99     }
100
101     /* Everything depends on properties, so we also pre-initialise that */
102     if (!ossl_property_parse_init(ctx))
103         goto err;
104
105     return 1;
106  err:
107     if (exdata_done)
108         ossl_crypto_cleanup_all_ex_data_int(ctx);
109     CRYPTO_THREAD_lock_free(ctx->oncelock);
110     CRYPTO_THREAD_lock_free(ctx->lock);
111     ctx->lock = NULL;
112     return 0;
113 }
114
115 static int context_deinit(OSSL_LIB_CTX *ctx)
116 {
117     struct ossl_lib_ctx_onfree_list_st *tmp, *onfree;
118     int i;
119
120     if (ctx == NULL)
121         return 1;
122
123     ossl_ctx_thread_stop(ctx);
124
125     onfree = ctx->onfreelist;
126     while (onfree != NULL) {
127         onfree->fn(ctx);
128         tmp = onfree;
129         onfree = onfree->next;
130         OPENSSL_free(tmp);
131     }
132     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_OSSL_LIB_CTX, NULL, &ctx->data);
133     ossl_crypto_cleanup_all_ex_data_int(ctx);
134     for (i = 0; i < OSSL_LIB_CTX_MAX_INDEXES; i++)
135         CRYPTO_THREAD_lock_free(ctx->index_locks[i]);
136
137     CRYPTO_THREAD_lock_free(ctx->oncelock);
138     CRYPTO_THREAD_lock_free(ctx->lock);
139     ctx->lock = NULL;
140     return 1;
141 }
142
143 #ifndef FIPS_MODULE
144 /* The default default context */
145 static OSSL_LIB_CTX default_context_int;
146
147 static CRYPTO_ONCE default_context_init = CRYPTO_ONCE_STATIC_INIT;
148 static CRYPTO_THREAD_LOCAL default_context_thread_local;
149
150 DEFINE_RUN_ONCE_STATIC(default_context_do_init)
151 {
152     return CRYPTO_THREAD_init_local(&default_context_thread_local, NULL)
153         && context_init(&default_context_int);
154 }
155
156 void ossl_lib_ctx_default_deinit(void)
157 {
158     context_deinit(&default_context_int);
159 }
160
161 static OSSL_LIB_CTX *get_thread_default_context(void)
162 {
163     if (!RUN_ONCE(&default_context_init, default_context_do_init))
164         return NULL;
165
166     return CRYPTO_THREAD_get_local(&default_context_thread_local);
167 }
168
169 static OSSL_LIB_CTX *get_default_context(void)
170 {
171     OSSL_LIB_CTX *current_defctx = get_thread_default_context();
172
173     if (current_defctx == NULL)
174         current_defctx = &default_context_int;
175     return current_defctx;
176 }
177
178 static int set_default_context(OSSL_LIB_CTX *defctx)
179 {
180     if (defctx == &default_context_int)
181         defctx = NULL;
182
183     return CRYPTO_THREAD_set_local(&default_context_thread_local, defctx);
184 }
185 #endif
186
187 OSSL_LIB_CTX *OSSL_LIB_CTX_new(void)
188 {
189     OSSL_LIB_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
190
191     if (ctx != NULL && !context_init(ctx)) {
192         OSSL_LIB_CTX_free(ctx);
193         ctx = NULL;
194     }
195     return ctx;
196 }
197
198 #ifndef FIPS_MODULE
199 OSSL_LIB_CTX *OSSL_LIB_CTX_new_from_dispatch(const OSSL_CORE_HANDLE *handle,
200                                              const OSSL_DISPATCH *in)
201 {
202     OSSL_LIB_CTX *ctx = OSSL_LIB_CTX_new();
203
204     if (ctx == NULL)
205         return NULL;
206
207     if (!ossl_bio_init_core(ctx, in)) {
208         OSSL_LIB_CTX_free(ctx);
209         return NULL;
210     }
211
212     return ctx;
213 }
214
215 OSSL_LIB_CTX *OSSL_LIB_CTX_new_child(const OSSL_CORE_HANDLE *handle,
216                                      const OSSL_DISPATCH *in)
217 {
218     OSSL_LIB_CTX *ctx = OSSL_LIB_CTX_new_from_dispatch(handle, in);
219
220     if (ctx == NULL)
221         return NULL;
222
223     if (!ossl_provider_init_as_child(ctx, handle, in)) {
224         OSSL_LIB_CTX_free(ctx);
225         return NULL;
226     }
227     ctx->ischild = 1;
228
229     return ctx;
230 }
231
232 int OSSL_LIB_CTX_load_config(OSSL_LIB_CTX *ctx, const char *config_file)
233 {
234     return CONF_modules_load_file_ex(ctx, config_file, NULL, 0) > 0;
235 }
236 #endif
237
238 void OSSL_LIB_CTX_free(OSSL_LIB_CTX *ctx)
239 {
240     if (ossl_lib_ctx_is_default(ctx))
241         return;
242
243 #ifndef FIPS_MODULE
244     if (ctx->ischild)
245         ossl_provider_deinit_child(ctx);
246 #endif
247     context_deinit(ctx);
248     OPENSSL_free(ctx);
249 }
250
251 #ifndef FIPS_MODULE
252 OSSL_LIB_CTX *OSSL_LIB_CTX_get0_global_default(void)
253 {
254     if (!RUN_ONCE(&default_context_init, default_context_do_init))
255         return NULL;
256
257     return &default_context_int;
258 }
259
260 OSSL_LIB_CTX *OSSL_LIB_CTX_set0_default(OSSL_LIB_CTX *libctx)
261 {
262     OSSL_LIB_CTX *current_defctx;
263
264     if ((current_defctx = get_default_context()) != NULL) {
265         if (libctx != NULL)
266             set_default_context(libctx);
267         return current_defctx;
268     }
269
270     return NULL;
271 }
272 #endif
273
274 OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx)
275 {
276 #ifndef FIPS_MODULE
277     if (ctx == NULL)
278         return get_default_context();
279 #endif
280     return ctx;
281 }
282
283 int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx)
284 {
285 #ifndef FIPS_MODULE
286     if (ctx == NULL || ctx == get_default_context())
287         return 1;
288 #endif
289     return 0;
290 }
291
292 int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx)
293 {
294 #ifndef FIPS_MODULE
295     if (ossl_lib_ctx_get_concrete(ctx) == &default_context_int)
296         return 1;
297 #endif
298     return 0;
299 }
300
301 static void ossl_lib_ctx_generic_new(void *parent_ign, void *ptr_ign,
302                                      CRYPTO_EX_DATA *ad, int index,
303                                      long argl_ign, void *argp)
304 {
305     const OSSL_LIB_CTX_METHOD *meth = argp;
306     OSSL_LIB_CTX *ctx = ossl_crypto_ex_data_get_ossl_lib_ctx(ad);
307     void *ptr = meth->new_func(ctx);
308
309     if (ptr != NULL) {
310         if (!CRYPTO_THREAD_write_lock(ctx->lock))
311             /*
312              * Can't return something, so best to hope that something will
313              * fail later. :(
314              */
315             return;
316         CRYPTO_set_ex_data(ad, index, ptr);
317         CRYPTO_THREAD_unlock(ctx->lock);
318     }
319 }
320 static void ossl_lib_ctx_generic_free(void *parent_ign, void *ptr,
321                                       CRYPTO_EX_DATA *ad, int index,
322                                       long argl_ign, void *argp)
323 {
324     const OSSL_LIB_CTX_METHOD *meth = argp;
325
326     meth->free_func(ptr);
327 }
328
329 static int ossl_lib_ctx_init_index(OSSL_LIB_CTX *ctx, int static_index,
330                                    const OSSL_LIB_CTX_METHOD *meth)
331 {
332     int idx;
333
334     ctx = ossl_lib_ctx_get_concrete(ctx);
335     if (ctx == NULL)
336         return 0;
337
338     idx = ossl_crypto_get_ex_new_index_ex(ctx, CRYPTO_EX_INDEX_OSSL_LIB_CTX, 0,
339                                           (void *)meth,
340                                           ossl_lib_ctx_generic_new,
341                                           NULL, ossl_lib_ctx_generic_free,
342                                           meth->priority);
343     if (idx < 0)
344         return 0;
345
346     ctx->dyn_indexes[static_index] = idx;
347     return 1;
348 }
349
350 void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index,
351                             const OSSL_LIB_CTX_METHOD *meth)
352 {
353     void *data = NULL;
354     int dynidx;
355
356     ctx = ossl_lib_ctx_get_concrete(ctx);
357     if (ctx == NULL)
358         return NULL;
359
360     if (!CRYPTO_THREAD_read_lock(ctx->lock))
361         return NULL;
362     dynidx = ctx->dyn_indexes[index];
363     CRYPTO_THREAD_unlock(ctx->lock);
364
365     if (dynidx != -1) {
366         if (!CRYPTO_THREAD_read_lock(ctx->index_locks[index]))
367             return NULL;
368         if (!CRYPTO_THREAD_read_lock(ctx->lock)) {
369             CRYPTO_THREAD_unlock(ctx->index_locks[index]);
370             return NULL;
371         }
372         data = CRYPTO_get_ex_data(&ctx->data, dynidx);
373         CRYPTO_THREAD_unlock(ctx->lock);
374         CRYPTO_THREAD_unlock(ctx->index_locks[index]);
375         return data;
376     }
377
378     if (!CRYPTO_THREAD_write_lock(ctx->index_locks[index]))
379         return NULL;
380     if (!CRYPTO_THREAD_write_lock(ctx->lock)) {
381         CRYPTO_THREAD_unlock(ctx->index_locks[index]);
382         return NULL;
383     }
384
385     dynidx = ctx->dyn_indexes[index];
386     if (dynidx != -1) {
387         data = CRYPTO_get_ex_data(&ctx->data, dynidx);
388         CRYPTO_THREAD_unlock(ctx->lock);
389         CRYPTO_THREAD_unlock(ctx->index_locks[index]);
390         return data;
391     }
392
393     if (!ossl_lib_ctx_init_index(ctx, index, meth)) {
394         CRYPTO_THREAD_unlock(ctx->lock);
395         CRYPTO_THREAD_unlock(ctx->index_locks[index]);
396         return NULL;
397     }
398
399     CRYPTO_THREAD_unlock(ctx->lock);
400
401     /*
402      * The alloc call ensures there's a value there. We release the ctx->lock
403      * for this, because the allocation itself may recursively call
404      * ossl_lib_ctx_get_data for other indexes (never this one). The allocation
405      * will itself aquire the ctx->lock when it actually comes to store the
406      * allocated data (see ossl_lib_ctx_generic_new() above). We call
407      * ossl_crypto_alloc_ex_data_intern() here instead of CRYPTO_alloc_ex_data().
408      * They do the same thing except that the latter calls CRYPTO_get_ex_data()
409      * as well - which we must not do without holding the ctx->lock.
410      */
411     if (ossl_crypto_alloc_ex_data_intern(CRYPTO_EX_INDEX_OSSL_LIB_CTX, NULL,
412                                          &ctx->data, ctx->dyn_indexes[index])) {
413         if (!CRYPTO_THREAD_read_lock(ctx->lock))
414             goto end;
415         data = CRYPTO_get_ex_data(&ctx->data, ctx->dyn_indexes[index]);
416         CRYPTO_THREAD_unlock(ctx->lock);
417     }
418
419 end:
420     CRYPTO_THREAD_unlock(ctx->index_locks[index]);
421     return data;
422 }
423
424 OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx)
425 {
426     ctx = ossl_lib_ctx_get_concrete(ctx);
427     if (ctx == NULL)
428         return NULL;
429     return &ctx->global;
430 }
431
432 int ossl_lib_ctx_run_once(OSSL_LIB_CTX *ctx, unsigned int idx,
433                           ossl_lib_ctx_run_once_fn run_once_fn)
434 {
435     int done = 0, ret = 0;
436
437     ctx = ossl_lib_ctx_get_concrete(ctx);
438     if (ctx == NULL)
439         return 0;
440
441     if (!CRYPTO_THREAD_read_lock(ctx->oncelock))
442         return 0;
443     done = ctx->run_once_done[idx];
444     if (done)
445         ret = ctx->run_once_ret[idx];
446     CRYPTO_THREAD_unlock(ctx->oncelock);
447
448     if (done)
449         return ret;
450
451     if (!CRYPTO_THREAD_write_lock(ctx->oncelock))
452         return 0;
453     if (ctx->run_once_done[idx]) {
454         ret = ctx->run_once_ret[idx];
455         CRYPTO_THREAD_unlock(ctx->oncelock);
456         return ret;
457     }
458
459     ret = run_once_fn(ctx);
460     ctx->run_once_done[idx] = 1;
461     ctx->run_once_ret[idx] = ret;
462     CRYPTO_THREAD_unlock(ctx->oncelock);
463
464     return ret;
465 }
466
467 int ossl_lib_ctx_onfree(OSSL_LIB_CTX *ctx, ossl_lib_ctx_onfree_fn onfreefn)
468 {
469     struct ossl_lib_ctx_onfree_list_st *newonfree
470         = OPENSSL_malloc(sizeof(*newonfree));
471
472     if (newonfree == NULL)
473         return 0;
474
475     newonfree->fn = onfreefn;
476     newonfree->next = ctx->onfreelist;
477     ctx->onfreelist = newonfree;
478
479     return 1;
480 }
481
482 const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx)
483 {
484 #ifdef FIPS_MODULE
485     return "FIPS internal library context";
486 #else
487     if (ossl_lib_ctx_is_global_default(libctx))
488         return "Global default library context";
489     if (ossl_lib_ctx_is_default(libctx))
490         return "Thread-local default library context";
491     return "Non-default library context";
492 #endif
493 }