]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/store/store_register.c
STORE: simplify store_loader_cmp()
[thirdparty/openssl.git] / crypto / store / store_register.c
1 /*
2 * Copyright 2016-2017 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 <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 = OPENSSL_zalloc(sizeof(*res));
34
35 if (res == NULL) {
36 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_LOADER_NEW, ERR_R_MALLOC_FAILURE);
37 return NULL;
38 }
39
40 /*
41 * We usually don't check NULL arguments. For loaders, though, the
42 * scheme is crucial and must never be NULL, or the user will get
43 * mysterious errors when trying to register the created loader
44 * later on.
45 */
46 if (scheme == NULL) {
47 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_LOADER_NEW,
48 OSSL_STORE_R_INVALID_SCHEME);
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_load(OSSL_STORE_LOADER *loader,
82 OSSL_STORE_load_fn load_function)
83 {
84 loader->load = load_function;
85 return 1;
86 }
87
88 int OSSL_STORE_LOADER_set_eof(OSSL_STORE_LOADER *loader,
89 OSSL_STORE_eof_fn eof_function)
90 {
91 loader->eof = eof_function;
92 return 1;
93 }
94
95 int OSSL_STORE_LOADER_set_error(OSSL_STORE_LOADER *loader,
96 OSSL_STORE_error_fn error_function)
97 {
98 loader->error = error_function;
99 return 1;
100 }
101
102 int OSSL_STORE_LOADER_set_close(OSSL_STORE_LOADER *loader,
103 OSSL_STORE_close_fn close_function)
104 {
105 loader->close = close_function;
106 return 1;
107 }
108
109 void OSSL_STORE_LOADER_free(OSSL_STORE_LOADER *loader)
110 {
111 OPENSSL_free(loader);
112 }
113
114 /*
115 * Functions for registering OSSL_STORE_LOADERs
116 */
117
118 static unsigned long store_loader_hash(const OSSL_STORE_LOADER *v)
119 {
120 return OPENSSL_LH_strhash(v->scheme);
121 }
122
123 static int store_loader_cmp(const OSSL_STORE_LOADER *a,
124 const OSSL_STORE_LOADER *b)
125 {
126 assert(a->scheme != NULL && b->scheme != NULL);
127 return strcmp(a->scheme, b->scheme);
128 }
129
130 static LHASH_OF(OSSL_STORE_LOADER) *loader_register = NULL;
131
132 int ossl_store_register_loader_int(OSSL_STORE_LOADER *loader)
133 {
134 const char *scheme = loader->scheme;
135 int ok = 0;
136
137 /*
138 * Check that the given scheme conforms to correct scheme syntax as per
139 * RFC 3986:
140 *
141 * scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
142 */
143 if (isalpha(*scheme))
144 while (*scheme != '\0'
145 && (isalpha(*scheme)
146 || isdigit(*scheme)
147 || strchr("+-.", *scheme) != NULL))
148 scheme++;
149 if (*scheme != '\0') {
150 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_REGISTER_LOADER_INT,
151 OSSL_STORE_R_INVALID_SCHEME);
152 ERR_add_error_data(4, "scheme=", loader->scheme);
153 return 0;
154 }
155
156 if (!RUN_ONCE(&registry_init, do_registry_init)) {
157 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_REGISTER_LOADER_INT,
158 ERR_R_MALLOC_FAILURE);
159 return 0;
160 }
161 CRYPTO_THREAD_write_lock(registry_lock);
162
163 if (loader_register == NULL) {
164 loader_register = lh_OSSL_STORE_LOADER_new(store_loader_hash,
165 store_loader_cmp);
166 }
167
168 if (loader_register != NULL
169 && (lh_OSSL_STORE_LOADER_insert(loader_register, loader) != NULL
170 || lh_OSSL_STORE_LOADER_error(loader_register) == 0))
171 ok = 1;
172
173 CRYPTO_THREAD_unlock(registry_lock);
174
175 return ok;
176 }
177 int OSSL_STORE_register_loader(OSSL_STORE_LOADER *loader)
178 {
179 if (!ossl_store_init_once())
180 return 0;
181 return ossl_store_register_loader_int(loader);
182 }
183
184 const OSSL_STORE_LOADER *ossl_store_get0_loader_int(const char *scheme)
185 {
186 OSSL_STORE_LOADER template;
187 OSSL_STORE_LOADER *loader = NULL;
188
189 template.scheme = scheme;
190 template.open = NULL;
191 template.load = NULL;
192 template.eof = NULL;
193 template.close = NULL;
194
195 if (!ossl_store_init_once())
196 return NULL;
197
198 if (!RUN_ONCE(&registry_init, do_registry_init)) {
199 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_GET0_LOADER_INT,
200 ERR_R_MALLOC_FAILURE);
201 return NULL;
202 }
203 CRYPTO_THREAD_write_lock(registry_lock);
204
205 loader = lh_OSSL_STORE_LOADER_retrieve(loader_register, &template);
206
207 if (loader == NULL) {
208 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_GET0_LOADER_INT,
209 OSSL_STORE_R_UNREGISTERED_SCHEME);
210 ERR_add_error_data(2, "scheme=", scheme);
211 }
212
213 CRYPTO_THREAD_unlock(registry_lock);
214
215 return loader;
216 }
217
218 OSSL_STORE_LOADER *ossl_store_unregister_loader_int(const char *scheme)
219 {
220 OSSL_STORE_LOADER template;
221 OSSL_STORE_LOADER *loader = NULL;
222
223 template.scheme = scheme;
224 template.open = NULL;
225 template.load = NULL;
226 template.eof = NULL;
227 template.close = NULL;
228
229 if (!RUN_ONCE(&registry_init, do_registry_init)) {
230 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_UNREGISTER_LOADER_INT,
231 ERR_R_MALLOC_FAILURE);
232 return NULL;
233 }
234 CRYPTO_THREAD_write_lock(registry_lock);
235
236 loader = lh_OSSL_STORE_LOADER_delete(loader_register, &template);
237
238 if (loader == NULL) {
239 OSSL_STOREerr(OSSL_STORE_F_OSSL_STORE_UNREGISTER_LOADER_INT,
240 OSSL_STORE_R_UNREGISTERED_SCHEME);
241 ERR_add_error_data(2, "scheme=", scheme);
242 }
243
244 CRYPTO_THREAD_unlock(registry_lock);
245
246 return loader;
247 }
248 OSSL_STORE_LOADER *OSSL_STORE_unregister_loader(const char *scheme)
249 {
250 if (!ossl_store_init_once())
251 return 0;
252 return ossl_store_unregister_loader_int(scheme);
253 }
254
255 void ossl_store_destroy_loaders_int(void)
256 {
257 assert(lh_OSSL_STORE_LOADER_num_items(loader_register) == 0);
258 lh_OSSL_STORE_LOADER_free(loader_register);
259 loader_register = NULL;
260 CRYPTO_THREAD_lock_free(registry_lock);
261 registry_lock = NULL;
262 }
263
264 /*
265 * Functions to list OSSL_STORE loaders
266 */
267
268 IMPLEMENT_LHASH_DOALL_ARG_CONST(OSSL_STORE_LOADER, void);
269 int OSSL_STORE_do_all_loaders(void (*do_function) (const OSSL_STORE_LOADER
270 *loader, void *do_arg),
271 void *do_arg)
272 {
273 lh_OSSL_STORE_LOADER_doall_void(loader_register, do_function, do_arg);
274 return 1;
275 }