/src/openssl/crypto/evp/names.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-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 <stdio.h> |
11 | | #include <openssl/evp.h> |
12 | | #include <openssl/kdf.h> |
13 | | #include <openssl/x509.h> |
14 | | #include "internal/cryptlib.h" |
15 | | #include "internal/namemap.h" |
16 | | #include "crypto/objects.h" |
17 | | #include "crypto/evp.h" |
18 | | |
19 | | int EVP_add_cipher(const EVP_CIPHER *c) |
20 | 0 | { |
21 | 0 | int r; |
22 | |
|
23 | 0 | if (c == NULL) |
24 | 0 | return 0; |
25 | | |
26 | 0 | r = OBJ_NAME_add(OBJ_nid2sn(c->nid), OBJ_NAME_TYPE_CIPHER_METH, |
27 | 0 | (const char *)c); |
28 | 0 | if (r == 0) |
29 | 0 | return 0; |
30 | 0 | r = OBJ_NAME_add(OBJ_nid2ln(c->nid), OBJ_NAME_TYPE_CIPHER_METH, |
31 | 0 | (const char *)c); |
32 | 0 | return r; |
33 | 0 | } |
34 | | |
35 | | int EVP_add_digest(const EVP_MD *md) |
36 | 0 | { |
37 | 0 | int r; |
38 | 0 | const char *name; |
39 | |
|
40 | 0 | name = OBJ_nid2sn(md->type); |
41 | 0 | r = OBJ_NAME_add(name, OBJ_NAME_TYPE_MD_METH, (const char *)md); |
42 | 0 | if (r == 0) |
43 | 0 | return 0; |
44 | 0 | r = OBJ_NAME_add(OBJ_nid2ln(md->type), OBJ_NAME_TYPE_MD_METH, |
45 | 0 | (const char *)md); |
46 | 0 | if (r == 0) |
47 | 0 | return 0; |
48 | | |
49 | 0 | if (md->pkey_type && md->type != md->pkey_type) { |
50 | 0 | r = OBJ_NAME_add(OBJ_nid2sn(md->pkey_type), |
51 | 0 | OBJ_NAME_TYPE_MD_METH | OBJ_NAME_ALIAS, name); |
52 | 0 | if (r == 0) |
53 | 0 | return 0; |
54 | 0 | r = OBJ_NAME_add(OBJ_nid2ln(md->pkey_type), |
55 | 0 | OBJ_NAME_TYPE_MD_METH | OBJ_NAME_ALIAS, name); |
56 | 0 | } |
57 | 0 | return r; |
58 | 0 | } |
59 | | |
60 | | static void cipher_from_name(const char *name, void *data) |
61 | 0 | { |
62 | 0 | const EVP_CIPHER **cipher = data; |
63 | |
|
64 | 0 | if (*cipher != NULL) |
65 | 0 | return; |
66 | | |
67 | 0 | *cipher = (const EVP_CIPHER *)OBJ_NAME_get(name, OBJ_NAME_TYPE_CIPHER_METH); |
68 | 0 | } |
69 | | |
70 | | const EVP_CIPHER *EVP_get_cipherbyname(const char *name) |
71 | 0 | { |
72 | 0 | return evp_get_cipherbyname_ex(NULL, name); |
73 | 0 | } |
74 | | |
75 | | const EVP_CIPHER *evp_get_cipherbyname_ex(OSSL_LIB_CTX *libctx, |
76 | | const char *name) |
77 | 0 | { |
78 | 0 | const EVP_CIPHER *cp; |
79 | 0 | OSSL_NAMEMAP *namemap; |
80 | 0 | int id; |
81 | |
|
82 | 0 | if (!OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL)) |
83 | 0 | return NULL; |
84 | | |
85 | 0 | cp = (const EVP_CIPHER *)OBJ_NAME_get(name, OBJ_NAME_TYPE_CIPHER_METH); |
86 | |
|
87 | 0 | if (cp != NULL) |
88 | 0 | return cp; |
89 | | |
90 | | /* |
91 | | * It's not in the method database, but it might be there under a different |
92 | | * name. So we check for aliases in the EVP namemap and try all of those |
93 | | * in turn. |
94 | | */ |
95 | | |
96 | 0 | namemap = ossl_namemap_stored(libctx); |
97 | 0 | id = ossl_namemap_name2num(namemap, name); |
98 | 0 | if (id == 0) |
99 | 0 | return NULL; |
100 | | |
101 | 0 | if (!ossl_namemap_doall_names(namemap, id, cipher_from_name, &cp)) |
102 | 0 | return NULL; |
103 | | |
104 | 0 | return cp; |
105 | 0 | } |
106 | | |
107 | | static void digest_from_name(const char *name, void *data) |
108 | 0 | { |
109 | 0 | const EVP_MD **md = data; |
110 | |
|
111 | 0 | if (*md != NULL) |
112 | 0 | return; |
113 | | |
114 | 0 | *md = (const EVP_MD *)OBJ_NAME_get(name, OBJ_NAME_TYPE_MD_METH); |
115 | 0 | } |
116 | | |
117 | | const EVP_MD *EVP_get_digestbyname(const char *name) |
118 | 0 | { |
119 | 0 | return evp_get_digestbyname_ex(NULL, name); |
120 | 0 | } |
121 | | |
122 | | const EVP_MD *evp_get_digestbyname_ex(OSSL_LIB_CTX *libctx, const char *name) |
123 | 0 | { |
124 | 0 | const EVP_MD *dp; |
125 | 0 | OSSL_NAMEMAP *namemap; |
126 | 0 | int id; |
127 | |
|
128 | 0 | if (!OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL)) |
129 | 0 | return NULL; |
130 | | |
131 | 0 | dp = (const EVP_MD *)OBJ_NAME_get(name, OBJ_NAME_TYPE_MD_METH); |
132 | |
|
133 | 0 | if (dp != NULL) |
134 | 0 | return dp; |
135 | | |
136 | | /* |
137 | | * It's not in the method database, but it might be there under a different |
138 | | * name. So we check for aliases in the EVP namemap and try all of those |
139 | | * in turn. |
140 | | */ |
141 | | |
142 | 0 | namemap = ossl_namemap_stored(libctx); |
143 | 0 | id = ossl_namemap_name2num(namemap, name); |
144 | 0 | if (id == 0) |
145 | 0 | return NULL; |
146 | | |
147 | 0 | if (!ossl_namemap_doall_names(namemap, id, digest_from_name, &dp)) |
148 | 0 | return NULL; |
149 | | |
150 | 0 | return dp; |
151 | 0 | } |
152 | | |
153 | | void evp_cleanup_int(void) |
154 | 2 | { |
155 | 2 | OBJ_NAME_cleanup(OBJ_NAME_TYPE_KDF_METH); |
156 | 2 | OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH); |
157 | 2 | OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH); |
158 | | /* |
159 | | * The above calls will only clean out the contents of the name hash |
160 | | * table, but not the hash table itself. The following line does that |
161 | | * part. -- Richard Levitte |
162 | | */ |
163 | 2 | OBJ_NAME_cleanup(-1); |
164 | | |
165 | 2 | EVP_PBE_cleanup(); |
166 | 2 | OBJ_sigid_free(); |
167 | | |
168 | 2 | evp_app_cleanup_int(); |
169 | 2 | } |
170 | | |
171 | | struct doall_cipher { |
172 | | void *arg; |
173 | | void (*fn) (const EVP_CIPHER *ciph, |
174 | | const char *from, const char *to, void *arg); |
175 | | }; |
176 | | |
177 | | static void do_all_cipher_fn(const OBJ_NAME *nm, void *arg) |
178 | 0 | { |
179 | 0 | struct doall_cipher *dc = arg; |
180 | 0 | if (nm->alias) |
181 | 0 | dc->fn(NULL, nm->name, nm->data, dc->arg); |
182 | 0 | else |
183 | 0 | dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg); |
184 | 0 | } |
185 | | |
186 | | void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph, |
187 | | const char *from, const char *to, void *x), |
188 | | void *arg) |
189 | 0 | { |
190 | 0 | struct doall_cipher dc; |
191 | | |
192 | | /* Ignore errors */ |
193 | 0 | OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL); |
194 | |
|
195 | 0 | dc.fn = fn; |
196 | 0 | dc.arg = arg; |
197 | 0 | OBJ_NAME_do_all(OBJ_NAME_TYPE_CIPHER_METH, do_all_cipher_fn, &dc); |
198 | 0 | } |
199 | | |
200 | | void EVP_CIPHER_do_all_sorted(void (*fn) (const EVP_CIPHER *ciph, |
201 | | const char *from, const char *to, |
202 | | void *x), void *arg) |
203 | 0 | { |
204 | 0 | struct doall_cipher dc; |
205 | | |
206 | | /* Ignore errors */ |
207 | 0 | OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL); |
208 | |
|
209 | 0 | dc.fn = fn; |
210 | 0 | dc.arg = arg; |
211 | 0 | OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH, do_all_cipher_fn, &dc); |
212 | 0 | } |
213 | | |
214 | | struct doall_md { |
215 | | void *arg; |
216 | | void (*fn) (const EVP_MD *ciph, |
217 | | const char *from, const char *to, void *arg); |
218 | | }; |
219 | | |
220 | | static void do_all_md_fn(const OBJ_NAME *nm, void *arg) |
221 | 0 | { |
222 | 0 | struct doall_md *dc = arg; |
223 | 0 | if (nm->alias) |
224 | 0 | dc->fn(NULL, nm->name, nm->data, dc->arg); |
225 | 0 | else |
226 | 0 | dc->fn((const EVP_MD *)nm->data, nm->name, NULL, dc->arg); |
227 | 0 | } |
228 | | |
229 | | void EVP_MD_do_all(void (*fn) (const EVP_MD *md, |
230 | | const char *from, const char *to, void *x), |
231 | | void *arg) |
232 | 0 | { |
233 | 0 | struct doall_md dc; |
234 | | |
235 | | /* Ignore errors */ |
236 | 0 | OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL); |
237 | |
|
238 | 0 | dc.fn = fn; |
239 | 0 | dc.arg = arg; |
240 | 0 | OBJ_NAME_do_all(OBJ_NAME_TYPE_MD_METH, do_all_md_fn, &dc); |
241 | 0 | } |
242 | | |
243 | | void EVP_MD_do_all_sorted(void (*fn) (const EVP_MD *md, |
244 | | const char *from, const char *to, |
245 | | void *x), void *arg) |
246 | 0 | { |
247 | 0 | struct doall_md dc; |
248 | |
|
249 | 0 | OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL); |
250 | |
|
251 | 0 | dc.fn = fn; |
252 | 0 | dc.arg = arg; |
253 | 0 | OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_MD_METH, do_all_md_fn, &dc); |
254 | 0 | } |