STORE: Add the possibility to specify an expected info type
[oweals/openssl.git] / crypto / store / store_register.c
1 /*
2  * Copyright 2016-2018 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 <string.h>
11 #include "internal/ctype.h"
12 #include <assert.h>
13
14 #include <openssl/err.h>
15 #include <openssl/lhash.h>
16 #include "store_locl.h"
17
18 static CRYPTO_RWLOCK *registry_lock;
19 static CRYPTO_ONCE registry_init = CRYPTO_ONCE_STATIC_INIT;
20
21 DEFINE_RUN_ONCE_STATIC(do_registry_init)
22 {
23     registry_lock = CRYPTO_THREAD_lock_new();
24     return registry_lock != NULL;
25 }
26
27 /*
28  *  Functions for manipulating OSSL_STORE_LOADERs
29  */
30
31 OSSL_STORE_LOADER *OSSL_STORE_LOADER_new(ENGINE *e, const char *scheme)
32 {
33     OSSL_STORE_LOADER *res = NULL;
34
35     /*
36      * We usually don't check NULL arguments.  For loaders, though, the
37      * scheme is crucial and must never be NULL, or the user will get
38      * mysterious errors when trying to register the created loader
39      * later on.
40      */
41     if (scheme == NULL) {
42         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_LOADER_NEW,
43                       OSSL_STORE_R_INVALID_SCHEME);
44         return NULL;
45     }
46
47     if ((res = OPENSSL_zalloc(sizeof(*res))) == NULL) {
48         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_LOADER_NEW, ERR_R_MALLOC_FAILURE);
49         return NULL;
50     }
51
52     res->engine = e;
53     res->scheme = scheme;
54     return res;
55 }
56
57 const ENGINE *OSSL_STORE_LOADER_get0_engine(const OSSL_STORE_LOADER *loader)
58 {
59     return loader->engine;
60 }
61
62 const char *OSSL_STORE_LOADER_get0_scheme(const OSSL_STORE_LOADER *loader)
63 {
64     return loader->scheme;
65 }
66
67 int OSSL_STORE_LOADER_set_open(OSSL_STORE_LOADER *loader,
68                                OSSL_STORE_open_fn open_function)
69 {
70     loader->open = open_function;
71     return 1;
72 }
73
74 int OSSL_STORE_LOADER_set_ctrl(OSSL_STORE_LOADER *loader,
75                                OSSL_STORE_ctrl_fn ctrl_function)
76 {
77     loader->ctrl = ctrl_function;
78     return 1;
79 }
80
81 int OSSL_STORE_LOADER_set_expect(OSSL_STORE_LOADER *loader,
82                                  OSSL_STORE_expect_fn expect_function)
83 {
84     loader->expect = expect_function;
85     return 1;
86 }
87
88 int OSSL_STORE_LOADER_set_load(OSSL_STORE_LOADER *loader,
89                                OSSL_STORE_load_fn load_function)
90 {
91     loader->load = load_function;
92     return 1;
93 }
94
95 int OSSL_STORE_LOADER_set_eof(OSSL_STORE_LOADER *loader,
96                               OSSL_STORE_eof_fn eof_function)
97 {
98     loader->eof = eof_function;
99     return 1;
100 }
101
102 int OSSL_STORE_LOADER_set_error(OSSL_STORE_LOADER *loader,
103                                 OSSL_STORE_error_fn error_function)
104 {
105     loader->error = error_function;
106     return 1;
107 }
108
109 int OSSL_STORE_LOADER_set_close(OSSL_STORE_LOADER *loader,
110                                 OSSL_STORE_close_fn close_function)
111 {
112     loader->close = close_function;
113     return 1;
114 }
115
116 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader)
117 {
118     OPENSSL_free(loader);
119 }
120
121 /*
122  *  Functions for registering OSSL_STORE_LOADERs
123  */
124
125 static unsigned long store_loader_hash(const OSSL_STORE_LOADER *v)
126 {
127     return OPENSSL_LH_strhash(v->scheme);
128 }
129
130 static int store_loader_cmp(const OSSL_STORE_LOADER *a,
131                             const OSSL_STORE_LOADER *b)
132 {
133     assert(a->scheme != NULL && b->scheme != NULL);
134     return strcmp(a->scheme, b->scheme);
135 }
136
137 static LHASH_OF(OSSL_STORE_LOADER) *loader_register = NULL;
138
139 int ossl_store_register_loader_int(OSSL_STORE_LOADER *loader)
140 {
141     const char *scheme = loader->scheme;
142     int ok = 0;
143
144     /*
145      * Check that the given scheme conforms to correct scheme syntax as per
146      * RFC 3986:
147      *
148      * scheme        = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
149      */
150     if (ossl_isalpha(*scheme))
151         while (*scheme != '\0'
152                && (ossl_isalpha(*scheme)
153                    || ossl_isdigit(*scheme)
154                    || strchr("+-.", *scheme) != NULL))
155             scheme++;
156     if (*scheme != '\0') {
157         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_REGISTER_LOADER_INT,
158                       OSSL_STORE_R_INVALID_SCHEME);
159         ERR_add_error_data(2, "scheme=", loader->scheme);
160         return 0;
161     }
162
163     /* Check that functions we absolutely require are present */
164     if (loader->open == NULL || loader->load == NULL || loader->eof == NULL
165         || loader->error == NULL || loader->close == NULL) {
166         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_REGISTER_LOADER_INT,
167                       OSSL_STORE_R_LOADER_INCOMPLETE);
168         return 0;
169     }
170
171     if (!RUN_ONCE(&registry_init, do_registry_init)) {
172         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_REGISTER_LOADER_INT,
173                       ERR_R_MALLOC_FAILURE);
174         return 0;
175     }
176     CRYPTO_THREAD_write_lock(registry_lock);
177
178     if (loader_register == NULL) {
179         loader_register = lh_OSSL_STORE_LOADER_new(store_loader_hash,
180                                                    store_loader_cmp);
181     }
182
183     if (loader_register != NULL
184         && (lh_OSSL_STORE_LOADER_insert(loader_register, loader) != NULL
185             || lh_OSSL_STORE_LOADER_error(loader_register) == 0))
186         ok = 1;
187
188     CRYPTO_THREAD_unlock(registry_lock);
189
190     return ok;
191 }
192 int OSSL_STORE_register_loader(OSSL_STORE_LOADER *loader)
193 {
194     if (!ossl_store_init_once())
195         return 0;
196     return ossl_store_register_loader_int(loader);
197 }
198
199 const OSSL_STORE_LOADER *ossl_store_get0_loader_int(const char *scheme)
200 {
201     OSSL_STORE_LOADER template;
202     OSSL_STORE_LOADER *loader = NULL;
203
204     template.scheme = scheme;
205     template.open = NULL;
206     template.load = NULL;
207     template.eof = NULL;
208     template.close = NULL;
209
210     if (!ossl_store_init_once())
211         return NULL;
212
213     if (!RUN_ONCE(&registry_init, do_registry_init)) {
214         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_GET0_LOADER_INT,
215                       ERR_R_MALLOC_FAILURE);
216         return NULL;
217     }
218     CRYPTO_THREAD_write_lock(registry_lock);
219
220     loader = lh_OSSL_STORE_LOADER_retrieve(loader_register, &template);
221
222     if (loader == NULL) {
223         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_GET0_LOADER_INT,
224                       OSSL_STORE_R_UNREGISTERED_SCHEME);
225         ERR_add_error_data(2, "scheme=", scheme);
226     }
227
228     CRYPTO_THREAD_unlock(registry_lock);
229
230     return loader;
231 }
232
233 OSSL_STORE_LOADER *ossl_store_unregister_loader_int(const char *scheme)
234 {
235     OSSL_STORE_LOADER template;
236     OSSL_STORE_LOADER *loader = NULL;
237
238     template.scheme = scheme;
239     template.open = NULL;
240     template.load = NULL;
241     template.eof = NULL;
242     template.close = NULL;
243
244     if (!RUN_ONCE(&registry_init, do_registry_init)) {
245         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_UNREGISTER_LOADER_INT,
246                       ERR_R_MALLOC_FAILURE);
247         return NULL;
248     }
249     CRYPTO_THREAD_write_lock(registry_lock);
250
251     loader = lh_OSSL_STORE_LOADER_delete(loader_register, &template);
252
253     if (loader == NULL) {
254         OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_UNREGISTER_LOADER_INT,
255                       OSSL_STORE_R_UNREGISTERED_SCHEME);
256         ERR_add_error_data(2, "scheme=", scheme);
257     }
258
259     CRYPTO_THREAD_unlock(registry_lock);
260
261     return loader;
262 }
263 OSSL_STORE_LOADER *OSSL_STORE_unregister_loader(const char *scheme)
264 {
265     if (!ossl_store_init_once())
266         return 0;
267     return ossl_store_unregister_loader_int(scheme);
268 }
269
270 void ossl_store_destroy_loaders_int(void)
271 {
272     assert(lh_OSSL_STORE_LOADER_num_items(loader_register) == 0);
273     lh_OSSL_STORE_LOADER_free(loader_register);
274     loader_register = NULL;
275     CRYPTO_THREAD_lock_free(registry_lock);
276     registry_lock = NULL;
277 }
278
279 /*
280  *  Functions to list OSSL_STORE loaders
281  */
282
283 IMPLEMENT_LHASH_DOALL_ARG_CONST(OSSL_STORE_LOADER, void);
284 int OSSL_STORE_do_all_loaders(void (*do_function) (const OSSL_STORE_LOADER
285                                                    *loader, void *do_arg),
286                               void *do_arg)
287 {
288     lh_OSSL_STORE_LOADER_doall_void(loader_register, do_function, do_arg);
289     return 1;
290 }