]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/evp/evp_fetch.c
Use the right NID when putting a method in the store
[thirdparty/openssl.git] / crypto / evp / evp_fetch.c
1 /*
2 * Copyright 2019 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 <stddef.h>
11 #include <openssl/ossl_typ.h>
12 #include <openssl/evp.h>
13 #include <openssl/core.h>
14 #include "internal/cryptlib.h"
15 #include "internal/thread_once.h"
16 #include "internal/asn1_int.h"
17 #include "internal/property.h"
18 #include "internal/core.h"
19 #include "internal/evp_int.h" /* evp_locl.h needs it */
20 #include "evp_locl.h"
21
22 /* The OpenSSL library context index for the default method store */
23 static int default_method_store_index = -1;
24
25 static void default_method_store_free(void *vstore)
26 {
27 ossl_method_store_free(vstore);
28 }
29
30 static void *default_method_store_new(void)
31 {
32 return ossl_method_store_new();
33 }
34
35
36 static const OPENSSL_CTX_METHOD default_method_store_method = {
37 default_method_store_new,
38 default_method_store_free,
39 };
40
41 static int default_method_store_init(void)
42 {
43 default_method_store_index =
44 openssl_ctx_new_index(&default_method_store_method);
45
46 return default_method_store_index != -1;
47 }
48
49 static CRYPTO_ONCE default_method_store_init_flag = CRYPTO_ONCE_STATIC_INIT;
50 DEFINE_RUN_ONCE_STATIC(do_default_method_store_init)
51 {
52 return OPENSSL_init_crypto(0, NULL)
53 && default_method_store_init();
54 }
55
56 /* Data to be passed through ossl_method_construct() */
57 struct method_data_st {
58 const char *name;
59 int nid;
60 OSSL_METHOD_CONSTRUCT_METHOD *mcm;
61 void *(*method_from_dispatch)(int nid, const OSSL_DISPATCH *,
62 OSSL_PROVIDER *);
63 int (*refcnt_up_method)(void *method);
64 void (*destruct_method)(void *method);
65 int (*nid_method)(void *method);
66 };
67
68 /*
69 * Generic routines to fetch / create EVP methods with ossl_method_construct()
70 */
71 static void *alloc_tmp_method_store(void)
72 {
73 return ossl_method_store_new();
74 }
75
76 static void dealloc_tmp_method_store(void *store)
77 {
78 if (store != NULL)
79 ossl_method_store_free(store);
80 }
81
82 static OSSL_METHOD_STORE *get_default_method_store(OPENSSL_CTX *libctx)
83 {
84 if (!RUN_ONCE(&default_method_store_init_flag,
85 do_default_method_store_init))
86 return NULL;
87 return openssl_ctx_get_data(libctx, default_method_store_index);
88 }
89
90 static void *get_method_from_store(OPENSSL_CTX *libctx, void *store,
91 const char *propquery, void *data)
92 {
93 struct method_data_st *methdata = data;
94 void *method = NULL;
95
96 if (store == NULL
97 && (store = get_default_method_store(libctx)) == NULL)
98 return NULL;
99
100 (void)ossl_method_store_fetch(store, methdata->nid, propquery, &method);
101
102 if (method != NULL
103 && !methdata->refcnt_up_method(method)) {
104 method = NULL;
105 }
106 return method;
107 }
108
109 static int put_method_in_store(OPENSSL_CTX *libctx, void *store,
110 const char *propdef,
111 void *method, void *data)
112 {
113 struct method_data_st *methdata = data;
114 int nid = methdata->nid_method(method);
115
116 if (nid == NID_undef)
117 return 0;
118
119 if (store == NULL
120 && (store = get_default_method_store(libctx)) == NULL)
121 return 0;
122
123 if (methdata->refcnt_up_method(method)
124 && ossl_method_store_add(store, nid, propdef, method,
125 methdata->destruct_method))
126 return 1;
127 return 0;
128 }
129
130 static void *construct_method(const char *algorithm_name,
131 const OSSL_DISPATCH *fns, OSSL_PROVIDER *prov,
132 void *data)
133 {
134 struct method_data_st *methdata = data;
135 void *method = NULL;
136 int nid = OBJ_sn2nid(algorithm_name);
137
138 if (nid == NID_undef) {
139 /* Create a new NID for that name on the fly */
140 ASN1_OBJECT tmpobj;
141
142 /* This is the same as OBJ_create() but without requiring a OID */
143 tmpobj.nid = OBJ_new_nid(1);
144 tmpobj.sn = tmpobj.ln = methdata->name;
145 tmpobj.flags = ASN1_OBJECT_FLAG_DYNAMIC;
146 tmpobj.length = 0;
147 tmpobj.data = NULL;
148
149 nid = OBJ_add_object(&tmpobj);
150 }
151
152 if (nid == NID_undef)
153 return NULL;
154
155 method = methdata->method_from_dispatch(nid, fns, prov);
156 if (method == NULL)
157 return NULL;
158 return method;
159 }
160
161 static void destruct_method(void *method, void *data)
162 {
163 struct method_data_st *methdata = data;
164
165 methdata->destruct_method(method);
166 }
167
168 void *evp_generic_fetch(OPENSSL_CTX *libctx, int operation_id,
169 const char *algorithm, const char *properties,
170 void *(*new_method)(int nid, const OSSL_DISPATCH *fns,
171 OSSL_PROVIDER *prov),
172 int (*upref_method)(void *),
173 void (*free_method)(void *),
174 int (*nid_method)(void *))
175 {
176 int nid = OBJ_sn2nid(algorithm);
177 void *method = NULL;
178
179 if (nid == NID_undef
180 || !ossl_method_store_cache_get(NULL, nid, properties, &method)) {
181 OSSL_METHOD_CONSTRUCT_METHOD mcm = {
182 alloc_tmp_method_store,
183 dealloc_tmp_method_store,
184 get_method_from_store,
185 put_method_in_store,
186 construct_method,
187 destruct_method
188 };
189 struct method_data_st mcmdata;
190
191 mcmdata.nid = nid;
192 mcmdata.mcm = &mcm;
193 mcmdata.method_from_dispatch = new_method;
194 mcmdata.destruct_method = free_method;
195 mcmdata.refcnt_up_method = upref_method;
196 mcmdata.destruct_method = free_method;
197 mcmdata.nid_method = nid_method;
198 method = ossl_method_construct(libctx, operation_id, algorithm,
199 properties, 0 /* !force_cache */,
200 &mcm, &mcmdata);
201 ossl_method_store_cache_set(NULL, nid, properties, method);
202 }
203
204 return method;
205 }
206
207 int EVP_set_default_properties(OPENSSL_CTX *libctx, const char *propq)
208 {
209 OSSL_METHOD_STORE *store = get_default_method_store(libctx);
210
211 if (store != NULL)
212 return ossl_method_store_set_global_properties(store, propq);
213 EVPerr(EVP_F_EVP_SET_DEFAULT_PROPERTIES, ERR_R_INTERNAL_ERROR);
214 return 0;
215 }